All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH v3 0/7] arm64: dts: rockchip: rk3568-evb1-v10: add sd card support
@ 2021-08-05 12:01 ` Michael Riesch
  0 siblings, 0 replies; 49+ messages in thread
From: Michael Riesch @ 2021-08-05 12:01 UTC (permalink / raw)
  To: devicetree, linux-arm-kernel, linux-rockchip, linux-kernel
  Cc: Rob Herring, Heiko Stuebner, Liang Chen, Peter Geis,
	Sascha Hauer, Michael Riesch, Simon Xue, Jianqun Xu,
	Rafael J . Wysocki, Lee Jones, Ulf Hansson, Zhang Changzhong,
	Tobias Schramm, Johan Jonker

Hi all,

This series enables the SD card reader on the RK3568 EVB1
and completes the support for the on-board eMMC.

As the PMU IO domains are required, the patch series that
introduces support for the RK3568 PMU IO domains [1] has been
revised and integrated in this series.
Additionally, the required voltage regulators of the RK809
PMIC are enabled.

Best regards,
Michael

[1] https://patchwork.kernel.org/project/linux-rockchip/list/?series=489383

v3:
- clean up device tree properties and sort alphabetically

v2:
- rename alias to match convention
- add support for rk3568 io domains

Jianqun Xu (1):
  soc: rockchip: io-domain: add rk3568 support

Michael Riesch (6):
  dt-bindings: power: add rk3568-pmu-io-domain support
  arm64: dts: rockchip: enable io domains for rk356x
  arm64: dts: rockchip: rk3568-evb1-v10: enable io domains
  arm64: dts: rockchip: rk3568-evb1-v10: add regulators of rk809 pmic
  arm64: dts: rockchip: rk3568-evb1-v10: add node for sd card
  arm64: dts: rockchip: rk3568-evb1-v10: add pinctrl and alias to emmc
    node

 .../bindings/power/rockchip-io-domain.yaml    |  30 +++
 .../devicetree/bindings/soc/rockchip/grf.yaml |   1 +
 .../boot/dts/rockchip/rk3568-evb1-v10.dts     | 251 ++++++++++++++++++
 arch/arm64/boot/dts/rockchip/rk356x.dtsi      |   5 +
 drivers/soc/rockchip/io-domain.c              |  88 +++++-
 5 files changed, 367 insertions(+), 8 deletions(-)

-- 
2.17.1


^ permalink raw reply	[flat|nested] 49+ messages in thread

end of thread, other threads:[~2021-08-16  6:28 UTC | newest]

Thread overview: 49+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2021-08-05 12:01 [PATCH v3 0/7] arm64: dts: rockchip: rk3568-evb1-v10: add sd card support Michael Riesch
2021-08-05 12:01 ` Michael Riesch
2021-08-05 12:01 ` Michael Riesch
2021-08-05 12:01 ` [PATCH v3 1/7] dt-bindings: power: add rk3568-pmu-io-domain support Michael Riesch
2021-08-05 12:01   ` Michael Riesch
2021-08-05 12:01   ` Michael Riesch
2021-08-13 18:54   ` Rob Herring
2021-08-13 18:54     ` Rob Herring
2021-08-13 18:54     ` Rob Herring
2021-08-05 12:01 ` [PATCH v3 2/7] soc: rockchip: io-domain: add rk3568 support Michael Riesch
2021-08-05 12:01   ` Michael Riesch
2021-08-05 12:01   ` Michael Riesch
2021-08-05 13:05   ` Peter Geis
2021-08-05 13:05     ` Peter Geis
2021-08-05 13:05     ` Peter Geis
2021-08-05 16:27   ` Robin Murphy
2021-08-05 16:27     ` Robin Murphy
2021-08-05 16:27     ` Robin Murphy
2021-08-06  9:18     ` Heiko Stübner
2021-08-06  9:18       ` Heiko Stübner
2021-08-06  9:18       ` Heiko Stübner
2021-08-06  9:46       ` jay.xu
2021-08-06  9:46         ` jay.xu
2021-08-06 10:27         ` Robin Murphy
2021-08-06 10:27           ` Robin Murphy
2021-08-06 10:27           ` Robin Murphy
2021-08-06 10:57           ` Peter Geis
2021-08-06 10:57             ` Peter Geis
2021-08-06 10:57             ` Peter Geis
2021-08-16  6:26             ` jay.xu
2021-08-16  6:26               ` jay.xu
2021-08-05 12:01 ` [PATCH v3 3/7] arm64: dts: rockchip: enable io domains for rk356x Michael Riesch
2021-08-05 12:01   ` Michael Riesch
2021-08-05 12:01   ` Michael Riesch
2021-08-05 12:01 ` [PATCH v3 4/7] arm64: dts: rockchip: rk3568-evb1-v10: enable io domains Michael Riesch
2021-08-05 12:01   ` Michael Riesch
2021-08-05 12:01   ` Michael Riesch
2021-08-05 12:01 ` [PATCH v3 5/7] arm64: dts: rockchip: rk3568-evb1-v10: add regulators of rk809 pmic Michael Riesch
2021-08-05 12:01   ` Michael Riesch
2021-08-05 12:01   ` Michael Riesch
2021-08-05 12:01 ` [PATCH v3 6/7] arm64: dts: rockchip: rk3568-evb1-v10: add node for sd card Michael Riesch
2021-08-05 12:01   ` Michael Riesch
2021-08-05 12:01   ` Michael Riesch
2021-08-05 12:01 ` [PATCH v3 7/7] arm64: dts: rockchip: rk3568-evb1-v10: add pinctrl and alias to emmc node Michael Riesch
2021-08-05 12:01   ` Michael Riesch
2021-08-05 12:01   ` Michael Riesch
2021-08-14  7:33 ` [PATCH v3 0/7] arm64: dts: rockchip: rk3568-evb1-v10: add sd card support Heiko Stuebner
2021-08-14  7:33   ` Heiko Stuebner
2021-08-14  7:33   ` Heiko Stuebner

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.