From: Kever Yang <kever.yang@rock-chips.com>
To: heiko@sntech.de
Cc: linux-rockchip@lists.infradead.org,
"Kever Yang" <kever.yang@rock-chips.com>,
"Simon Xue" <xxm@rock-chips.com>,
"Guenter Roeck" <linux@roeck-us.net>,
"Frank Wang" <frank.wang@rock-chips.com>,
"Jamie Iles" <jamie@jamieiles.com>,
"Bjorn Helgaas" <bhelgaas@google.com>,
linux-pci@vger.kernel.org, "Jonas Karlman" <jonas@kwiboo.se>,
"Johan Jonker" <jbx6244@gmail.com>,
ulf.hansson@linaro.org, "Shawn Lin" <shawn.lin@rock-chips.com>,
"Elaine Zhang" <zhangqing@rock-chips.com>,
"Conor Dooley" <conor+dt@kernel.org>,
"Finley Xiao" <finley.xiao@rock-chips.com>,
"Jianfeng Liu" <liujianfeng1994@gmail.com>,
"Krzysztof Wilczyński" <kw@linux.com>,
"Yao Zi" <ziyao@disroot.org>,
"Krzysztof Kozlowski" <krzk+dt@kernel.org>,
"Quentin Schulz" <quentin.schulz@cherry.de>,
devicetree@vger.kernel.org,
"Diederik de Haas" <didi.debian@cknow.org>,
linux-watchdog@vger.kernel.org, "Rob Herring" <robh@kernel.org>,
"Wim Van Sebroeck" <wim@linux-watchdog.org>,
"Shresth Prasad" <shresthprasad7@gmail.com>,
"Lorenzo Pieralisi" <lpieralisi@kernel.org>,
linux-arm-kernel@lists.infradead.org,
"Cristian Ciocaltea" <cristian.ciocaltea@collabora.com>,
"Detlev Casanova" <detlev.casanova@collabora.com>,
"Dragan Simic" <dsimic@manjaro.org>,
linux-kernel@vger.kernel.org, "Jimmy Hon" <honyuenkwun@gmail.com>,
"FUKAUMI Naoki" <naoki@radxa.com>,
"Andy Yan" <andy.yan@rock-chips.com>,
"Manivannan Sadhasivam" <manivannan.sadhasivam@linaro.org>
Subject: [PATCH v4 0/7] rockchip: Add rk3562 SoC and evb support
Date: Tue, 15 Apr 2025 13:18:48 +0800 [thread overview]
Message-ID: <20250415051855.59740-1-kever.yang@rock-chips.com> (raw)
Patch series V4 remove patches already landed, and remove dts nodes for
modules still under review.
This patch set adds rk3562 SoC and its evb support.
I have split out patches need driver change for different subsystem.
And all the modules with dt-binding document update in this patch set
do not need any driver change. I put them together to make it clear we
have a new SoC and board to use the new compatible. Please pick up the
patch for your subsystem, or please let me know if the patch has to
send separate.
Test with USB, PCIe, EMMC, SD Card.
This patch set is base on the patch set for rk3576 evb1 support.
V3:
https://lore.kernel.org/linux-rockchip/20250227111913.2344207-1-kever.yang@rock-chips.com/
V2:
https://lore.kernel.org/linux-rockchip/b4df8a73-58a2-4765-a9e4-3513cb2bc720@rock-chips.com/T/
Changes in v4:
- Collect ack tag
- remove gmac and otp nodes
- remove gmac nodes
Changes in v3:
- Rebase the change base on rk3576 pcie patches
- Collect reveiw tag
- Collect the Acked-by tag
- remove i2c/serial/spi alias
- add soc node
Changes in v2:
- Update in sort order
- remove grf in cru
- Update some properties order
Finley Xiao (2):
arm64: dts: rockchip: add core dtsi for RK3562 Soc
arm64: dts: rockchip: Add RK3562 evb2 devicetree
Kever Yang (5):
dt-bindings: PCI: dwc: rockchip: Add rk3562 support
dt-bindings: watchdog: Add rk3562 compatible
dt-bindings: rockchip: pmu: Add rk3562 compatible
dt-bindings: soc: rockchip: Add rk3562 syscon compatibles
dt-bindings: arm: rockchip: Add rk3562 evb2 board
.../devicetree/bindings/arm/rockchip.yaml | 5 +
.../devicetree/bindings/arm/rockchip/pmu.yaml | 2 +
.../bindings/pci/rockchip-dw-pcie.yaml | 9 +-
.../devicetree/bindings/soc/rockchip/grf.yaml | 7 +
.../bindings/watchdog/snps,dw-wdt.yaml | 1 +
arch/arm64/boot/dts/rockchip/Makefile | 1 +
.../boot/dts/rockchip/rk3562-evb2-v10.dts | 488 ++++
.../boot/dts/rockchip/rk3562-pinctrl.dtsi | 2352 +++++++++++++++++
arch/arm64/boot/dts/rockchip/rk3562.dtsi | 1263 +++++++++
9 files changed, 4126 insertions(+), 2 deletions(-)
create mode 100644 arch/arm64/boot/dts/rockchip/rk3562-evb2-v10.dts
create mode 100644 arch/arm64/boot/dts/rockchip/rk3562-pinctrl.dtsi
create mode 100644 arch/arm64/boot/dts/rockchip/rk3562.dtsi
--
2.25.1
next reply other threads:[~2025-04-15 5:34 UTC|newest]
Thread overview: 9+ messages / expand[flat|nested] mbox.gz Atom feed top
2025-04-15 5:18 Kever Yang [this message]
2025-04-15 5:18 ` [PATCH v4 1/7] dt-bindings: PCI: dwc: rockchip: Add rk3562 support Kever Yang
2025-04-19 9:53 ` Manivannan Sadhasivam
2025-04-15 5:18 ` [PATCH v4 3/7] dt-bindings: rockchip: pmu: Add rk3562 compatible Kever Yang
2025-04-15 5:18 ` [PATCH v4 4/7] dt-bindings: soc: rockchip: Add rk3562 syscon compatibles Kever Yang
2025-04-15 5:18 ` [PATCH v4 5/7] dt-bindings: arm: rockchip: Add rk3562 evb2 board Kever Yang
2025-04-15 5:18 ` [PATCH v4 6/7] arm64: dts: rockchip: add core dtsi for RK3562 Soc Kever Yang
2025-05-01 13:28 ` Heiko Stübner
2025-04-15 5:18 ` [PATCH v4 7/7] arm64: dts: rockchip: Add RK3562 evb2 devicetree Kever Yang
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20250415051855.59740-1-kever.yang@rock-chips.com \
--to=kever.yang@rock-chips.com \
--cc=andy.yan@rock-chips.com \
--cc=bhelgaas@google.com \
--cc=conor+dt@kernel.org \
--cc=cristian.ciocaltea@collabora.com \
--cc=detlev.casanova@collabora.com \
--cc=devicetree@vger.kernel.org \
--cc=didi.debian@cknow.org \
--cc=dsimic@manjaro.org \
--cc=finley.xiao@rock-chips.com \
--cc=frank.wang@rock-chips.com \
--cc=heiko@sntech.de \
--cc=honyuenkwun@gmail.com \
--cc=jamie@jamieiles.com \
--cc=jbx6244@gmail.com \
--cc=jonas@kwiboo.se \
--cc=krzk+dt@kernel.org \
--cc=kw@linux.com \
--cc=linux-arm-kernel@lists.infradead.org \
--cc=linux-kernel@vger.kernel.org \
--cc=linux-pci@vger.kernel.org \
--cc=linux-rockchip@lists.infradead.org \
--cc=linux-watchdog@vger.kernel.org \
--cc=linux@roeck-us.net \
--cc=liujianfeng1994@gmail.com \
--cc=lpieralisi@kernel.org \
--cc=manivannan.sadhasivam@linaro.org \
--cc=naoki@radxa.com \
--cc=quentin.schulz@cherry.de \
--cc=robh@kernel.org \
--cc=shawn.lin@rock-chips.com \
--cc=shresthprasad7@gmail.com \
--cc=ulf.hansson@linaro.org \
--cc=wim@linux-watchdog.org \
--cc=xxm@rock-chips.com \
--cc=zhangqing@rock-chips.com \
--cc=ziyao@disroot.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox