From: Jagan Teki <jagan@amarulasolutions.com>
To: Kever Yang <kever.yang@rock-chips.com>,
Philipp Tomsich <philipp.tomsich@vrull.eu>,
Simon Glass <sjg@chromium.org>
Cc: u-boot@lists.denx.de, linux-amarula@amarulasolutions.com,
Jagan Teki <jagan@edgeble.ai>
Subject: [PATCH v4 00/12] rockchip: Add Radxa CM3 support
Date: Fri, 17 Feb 2023 17:28:33 +0530 [thread overview]
Message-ID: <20230217115845.75303-1-jagan@amarulasolutions.com> (raw)
From: Jagan Teki <jagan@edgeble.ai>
This series support Radxa CM3 with USB2.0 and USB3.0.
Changes for v4:
- drop BINMAN_FDT unset
- usb3.0
- config additions
changes for v3:
- linux-next dts tags
Changes for v2:
- collect RB from kever
Jagan Teki (9):
rockchip: rk3568: Move DM_RESET in arch kconfig
dt-bindings: rockchip: Sync rockchip, vop2.h from Linux
arm64: dts: rockchip: rk3566: Add Radxa Compute Module 3
arm64: dts: rockchip: rk3566: Add Radxa Compute Module 3 IO
board: rockchip: Add Radxa Compute Module 3 IO Board
phy: rockchip: inno-usb2: Add support #address_cells = 2
drivers: phy: add naneng combphy for rk3568
arm64: dts: rk356x-u-boot: Drop combphy1 assigned-clocks/rates
rockchip: rk3568: add rk3568 pinctrl driver
Manoj Sai (3):
phy: rockchip-inno-usb2: Add USB2 PHY for rk3568
rockchip: rk3568: Select DM_REGULATOR_FIXED
rk3566: radxa-cm3: Enable USB2.0, USB3.0 support
arch/arm/dts/Makefile | 1 +
arch/arm/dts/rk3566-radxa-cm3-io-u-boot.dtsi | 18 +
arch/arm/dts/rk3566-radxa-cm3-io.dts | 272 +++++++++++
arch/arm/dts/rk3566-radxa-cm3.dtsi | 425 +++++++++++++++++
arch/arm/dts/rk356x-u-boot.dtsi | 5 +
arch/arm/mach-rockchip/Kconfig | 2 +
board/rockchip/evb_rk3568/MAINTAINERS | 5 +
configs/evb-rk3568_defconfig | 1 -
configs/radxa-cm3-io-rk3566_defconfig | 77 +++
drivers/phy/rockchip/Kconfig | 7 +
drivers/phy/rockchip/Makefile | 1 +
drivers/phy/rockchip/phy-rockchip-inno-usb2.c | 65 ++-
.../rockchip/phy-rockchip-naneng-combphy.c | 441 ++++++++++++++++++
drivers/pinctrl/rockchip/Makefile | 1 +
drivers/pinctrl/rockchip/pinctrl-rk3568.c | 362 ++++++++++++++
include/dt-bindings/soc/rockchip,vop2.h | 14 +
16 files changed, 1695 insertions(+), 2 deletions(-)
create mode 100644 arch/arm/dts/rk3566-radxa-cm3-io-u-boot.dtsi
create mode 100644 arch/arm/dts/rk3566-radxa-cm3-io.dts
create mode 100644 arch/arm/dts/rk3566-radxa-cm3.dtsi
create mode 100644 configs/radxa-cm3-io-rk3566_defconfig
create mode 100644 drivers/phy/rockchip/phy-rockchip-naneng-combphy.c
create mode 100644 drivers/pinctrl/rockchip/pinctrl-rk3568.c
create mode 100644 include/dt-bindings/soc/rockchip,vop2.h
--
2.25.1
next reply other threads:[~2023-02-17 11:59 UTC|newest]
Thread overview: 22+ messages / expand[flat|nested] mbox.gz Atom feed top
2023-02-17 11:58 Jagan Teki [this message]
2023-02-17 11:58 ` [PATCH v4 01/12] rockchip: rk3568: Move DM_RESET in arch kconfig Jagan Teki
2023-02-21 9:28 ` Kever Yang
2023-02-17 11:58 ` [PATCH v4 02/12] dt-bindings: rockchip: Sync rockchip, vop2.h from Linux Jagan Teki
2023-02-17 11:58 ` [PATCH v4 03/12] arm64: dts: rockchip: rk3566: Add Radxa Compute Module 3 Jagan Teki
2023-02-17 11:58 ` [PATCH v4 04/12] arm64: dts: rockchip: rk3566: Add Radxa Compute Module 3 IO Jagan Teki
2023-02-21 9:29 ` Kever Yang
2023-02-17 11:58 ` [PATCH v4 05/12] board: rockchip: Add Radxa Compute Module 3 IO Board Jagan Teki
2023-02-17 11:58 ` [PATCH v4 06/12] phy: rockchip: inno-usb2: Add support #address_cells = 2 Jagan Teki
2023-02-21 9:29 ` Kever Yang
2023-02-17 11:58 ` [PATCH v4 07/12] phy: rockchip-inno-usb2: Add USB2 PHY for rk3568 Jagan Teki
2023-02-21 9:30 ` Kever Yang
2023-02-17 11:58 ` [PATCH v4 08/12] drivers: phy: add naneng combphy " Jagan Teki
2023-02-21 9:31 ` Kever Yang
2023-02-17 11:58 ` [PATCH v4 09/12] arm64: dts: rk356x-u-boot: Drop combphy1 assigned-clocks/rates Jagan Teki
2023-02-21 9:32 ` Kever Yang
2023-02-17 11:58 ` [PATCH v4 10/12] rockchip: rk3568: add rk3568 pinctrl driver Jagan Teki
2023-02-21 9:32 ` Kever Yang
2023-02-17 11:58 ` [PATCH v4 11/12] rockchip: rk3568: Select DM_REGULATOR_FIXED Jagan Teki
2023-02-21 9:33 ` Kever Yang
2023-02-17 11:58 ` [PATCH v4 12/12] rk3566: radxa-cm3: Enable USB2.0, USB3.0 support Jagan Teki
2023-02-21 9:33 ` 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=20230217115845.75303-1-jagan@amarulasolutions.com \
--to=jagan@amarulasolutions.com \
--cc=jagan@edgeble.ai \
--cc=kever.yang@rock-chips.com \
--cc=linux-amarula@amarulasolutions.com \
--cc=philipp.tomsich@vrull.eu \
--cc=sjg@chromium.org \
--cc=u-boot@lists.denx.de \
/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