* [PATCH 0/6] Rockchip: add Rockchip rk3576 EVB1 board
@ 2024-12-05 10:36 Kever Yang
2024-12-05 10:36 ` [PATCH 1/6] dt-bindings: PCI: dwc: rockchip: Add rk3576 support Kever Yang
0 siblings, 1 reply; 4+ messages in thread
From: Kever Yang @ 2024-12-05 10:36 UTC (permalink / raw)
To: heiko
Cc: linux-rockchip, Kever Yang, Alexey Charkov, Andy Yan,
Bjorn Helgaas, Chris Morgan, Conor Dooley, Detlev Casanova,
Dragan Simic, Elaine Zhang, FUKAUMI Naoki, Finley Xiao,
Jonas Karlman, Krzysztof Kozlowski, Krzysztof Wilczyński,
Liang Chen, Lorenzo Pieralisi, Manivannan Sadhasivam,
Michael Riesch, Rob Herring, Shawn Lin, Simon Xue, Tim Lunn,
Yifeng Zhao, devicetree, linux-arm-kernel, linux-kernel,
linux-pci
This patch set is for rockchip rk3576 evb1.
Based on the naneng combphy patch from Frank Wang.
Kever Yang (6):
dt-bindings: PCI: dwc: rockchip: Add rk3576 support
dts: arm64: rockchip: Add rk3576 naneng combphy nodes
dts: arm64: rockchip: Add rk3576 pcie nodes
dt-bindings: arm: rockchip: Sort for rk3568 evb
dt-bindings: arm: rockchip: Add rk3576 evb1 board
arm64: dts: rockchip: Add rk3576 evb1 board
.../devicetree/bindings/arm/rockchip.yaml | 25 +-
.../bindings/pci/rockchip-dw-pcie.yaml | 1 +
arch/arm64/boot/dts/rockchip/Makefile | 1 +
.../boot/dts/rockchip/rk3576-evb1-v10.dts | 699 ++++++++++++++++++
arch/arm64/boot/dts/rockchip/rk3576.dtsi | 147 ++++
5 files changed, 863 insertions(+), 10 deletions(-)
create mode 100644 arch/arm64/boot/dts/rockchip/rk3576-evb1-v10.dts
--
2.25.1
^ permalink raw reply [flat|nested] 4+ messages in thread
* [PATCH 1/6] dt-bindings: PCI: dwc: rockchip: Add rk3576 support
2024-12-05 10:36 [PATCH 0/6] Rockchip: add Rockchip rk3576 EVB1 board Kever Yang
@ 2024-12-05 10:36 ` Kever Yang
2024-12-05 11:30 ` Heiko Stübner
2024-12-05 17:05 ` Conor Dooley
0 siblings, 2 replies; 4+ messages in thread
From: Kever Yang @ 2024-12-05 10:36 UTC (permalink / raw)
To: heiko
Cc: linux-rockchip, Kever Yang, Bjorn Helgaas, Conor Dooley,
Krzysztof Kozlowski, Krzysztof Wilczyński, Lorenzo Pieralisi,
Manivannan Sadhasivam, Rob Herring, Shawn Lin, Simon Xue,
devicetree, linux-arm-kernel, linux-kernel, linux-pci
rk3576 is using the same controller as rk3568.
Signed-off-by: Kever Yang <kever.yang@rock-chips.com>
---
Documentation/devicetree/bindings/pci/rockchip-dw-pcie.yaml | 1 +
1 file changed, 1 insertion(+)
diff --git a/Documentation/devicetree/bindings/pci/rockchip-dw-pcie.yaml b/Documentation/devicetree/bindings/pci/rockchip-dw-pcie.yaml
index 550d8a684af3..5328ccad7130 100644
--- a/Documentation/devicetree/bindings/pci/rockchip-dw-pcie.yaml
+++ b/Documentation/devicetree/bindings/pci/rockchip-dw-pcie.yaml
@@ -26,6 +26,7 @@ properties:
- const: rockchip,rk3568-pcie
- items:
- enum:
+ - rockchip,rk3576-pcie
- rockchip,rk3588-pcie
- const: rockchip,rk3568-pcie
--
2.25.1
^ permalink raw reply related [flat|nested] 4+ messages in thread
* Re: [PATCH 1/6] dt-bindings: PCI: dwc: rockchip: Add rk3576 support
2024-12-05 10:36 ` [PATCH 1/6] dt-bindings: PCI: dwc: rockchip: Add rk3576 support Kever Yang
@ 2024-12-05 11:30 ` Heiko Stübner
2024-12-05 17:05 ` Conor Dooley
1 sibling, 0 replies; 4+ messages in thread
From: Heiko Stübner @ 2024-12-05 11:30 UTC (permalink / raw)
To: Kever Yang
Cc: linux-rockchip, Kever Yang, Bjorn Helgaas, Conor Dooley,
Krzysztof Kozlowski, Krzysztof Wilczyński, Lorenzo Pieralisi,
Manivannan Sadhasivam, Rob Herring, Shawn Lin, Simon Xue,
devicetree, linux-arm-kernel, linux-kernel, linux-pci
Am Donnerstag, 5. Dezember 2024, 11:36:18 CET schrieb Kever Yang:
> rk3576 is using the same controller as rk3568.
>
> Signed-off-by: Kever Yang <kever.yang@rock-chips.com>
Reviewed-by: Heiko Stuebner <heiko@sntech.de>
> ---
>
> Documentation/devicetree/bindings/pci/rockchip-dw-pcie.yaml | 1 +
> 1 file changed, 1 insertion(+)
>
> diff --git a/Documentation/devicetree/bindings/pci/rockchip-dw-pcie.yaml b/Documentation/devicetree/bindings/pci/rockchip-dw-pcie.yaml
> index 550d8a684af3..5328ccad7130 100644
> --- a/Documentation/devicetree/bindings/pci/rockchip-dw-pcie.yaml
> +++ b/Documentation/devicetree/bindings/pci/rockchip-dw-pcie.yaml
> @@ -26,6 +26,7 @@ properties:
> - const: rockchip,rk3568-pcie
> - items:
> - enum:
> + - rockchip,rk3576-pcie
> - rockchip,rk3588-pcie
> - const: rockchip,rk3568-pcie
>
>
^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: [PATCH 1/6] dt-bindings: PCI: dwc: rockchip: Add rk3576 support
2024-12-05 10:36 ` [PATCH 1/6] dt-bindings: PCI: dwc: rockchip: Add rk3576 support Kever Yang
2024-12-05 11:30 ` Heiko Stübner
@ 2024-12-05 17:05 ` Conor Dooley
1 sibling, 0 replies; 4+ messages in thread
From: Conor Dooley @ 2024-12-05 17:05 UTC (permalink / raw)
To: Kever Yang
Cc: heiko, linux-rockchip, Bjorn Helgaas, Conor Dooley,
Krzysztof Kozlowski, Krzysztof Wilczyński, Lorenzo Pieralisi,
Manivannan Sadhasivam, Rob Herring, Shawn Lin, Simon Xue,
devicetree, linux-arm-kernel, linux-kernel, linux-pci
[-- Attachment #1: Type: text/plain, Size: 227 bytes --]
On Thu, Dec 05, 2024 at 06:36:18PM +0800, Kever Yang wrote:
> rk3576 is using the same controller as rk3568.
>
> Signed-off-by: Kever Yang <kever.yang@rock-chips.com>
Acked-by: Conor Dooley <conor.dooley@microchip.com>
[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 228 bytes --]
^ permalink raw reply [flat|nested] 4+ messages in thread
end of thread, other threads:[~2024-12-05 17:05 UTC | newest]
Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2024-12-05 10:36 [PATCH 0/6] Rockchip: add Rockchip rk3576 EVB1 board Kever Yang
2024-12-05 10:36 ` [PATCH 1/6] dt-bindings: PCI: dwc: rockchip: Add rk3576 support Kever Yang
2024-12-05 11:30 ` Heiko Stübner
2024-12-05 17:05 ` Conor Dooley
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox