From: Johan Jonker <jbx6244@gmail.com>
To: kever.yang@rock-chips.com
Cc: sjg@chromium.org, philipp.tomsich@vrull.eu, trini@konsulko.com,
hl@rock-chips.com, jernej.skrabec@gmail.com, w.egorov@phytec.de,
jagan@amarulasolutions.com, heiko@sntech.de, jonas@kwiboo.se,
michael@amarulasolutions.com, marex@denx.de,
u-boot@lists.denx.de, upstream@lists.phytec.de
Subject: [PATCH v5 03/10] phy: rockchip: sort Makefile and Kconfig
Date: Mon, 15 Jun 2026 23:07:26 +0200 [thread overview]
Message-ID: <fe8f401b-142e-487d-9b3e-6cda88dd9cff@gmail.com> (raw)
In-Reply-To: <9e688aba-c88f-404a-adc7-cf9472699d66@gmail.com>
Sort Makefile and Kconfig, so that new phy drivers entries
insert in a clean proper orderly way.
Signed-off-by: Johan Jonker <jbx6244@gmail.com>
---
drivers/phy/rockchip/Kconfig | 27 ++++++++++++++-------------
drivers/phy/rockchip/Makefile | 6 +++---
2 files changed, 17 insertions(+), 16 deletions(-)
diff --git a/drivers/phy/rockchip/Kconfig b/drivers/phy/rockchip/Kconfig
index 80128335d52f..1662aef0b8fe 100644
--- a/drivers/phy/rockchip/Kconfig
+++ b/drivers/phy/rockchip/Kconfig
@@ -17,7 +17,7 @@ config PHY_ROCKCHIP_INNO_HDMI
depends on ARCH_ROCKCHIP
select PHY
help
- Enable this to support the Rockchip Innosilicon HDMI PHY.
+ Support for Rockchip Innosilicon HDMI PHY.
config PHY_ROCKCHIP_INNO_USB2
bool "Rockchip INNO USB2PHY Driver"
@@ -27,40 +27,41 @@ config PHY_ROCKCHIP_INNO_USB2
Support for Rockchip USB2.0 PHY with Innosilicon IP block.
config PHY_ROCKCHIP_NANENG_COMBOPHY
- bool "Support Rockchip NANENG combo PHY Driver"
+ bool "Rockchip NANENG combo PHY Driver"
depends on ARCH_ROCKCHIP
select PHY
help
- Enable this to support the Rockchip NANENG combo PHY.
+ Support for Rockchip NANENG combo PHY.
config PHY_ROCKCHIP_PCIE
bool "Rockchip PCIe PHY Driver"
depends on ARCH_ROCKCHIP
select PHY
help
- Enable this to support the Rockchip PCIe PHY.
+ Support for Rockchip PCIe PHY.
config PHY_ROCKCHIP_SNPS_PCIE3
- bool "Rockchip Snps PCIe3 PHY Driver"
- depends on PHY && ARCH_ROCKCHIP
+ bool "Rockchip SNPS PCIe3 PHY Driver"
+ depends on ARCH_ROCKCHIP
+ select PHY
help
Support for Rockchip PCIe3 PHY with Synopsys IP block.
It could support PCIe Gen3 single root complex, and could
also be able splited into multiple combinations of lanes.
-config PHY_ROCKCHIP_USBDP
- tristate "Rockchip USBDP COMBO PHY Driver"
+config PHY_ROCKCHIP_TYPEC
+ bool "Rockchip TYPEC PHY Driver"
depends on ARCH_ROCKCHIP
select PHY
help
- Enable this to support the Rockchip USB3.0/DP
- combo PHY with Samsung IP block.
+ Support for Rockchip USB TYPEC PHY.
-config PHY_ROCKCHIP_TYPEC
- bool "Rockchip TYPEC PHY Driver"
+config PHY_ROCKCHIP_USBDP
+ bool "Rockchip USBDP COMBO PHY Driver"
depends on ARCH_ROCKCHIP
select PHY
help
- Enable this to support the Rockchip USB TYPEC PHY.
+ Support for Rockchip USB3.0/DP
+ combo PHY with Samsung IP block.
endmenu
diff --git a/drivers/phy/rockchip/Makefile b/drivers/phy/rockchip/Makefile
index 04200174254e..b5e4763572bb 100644
--- a/drivers/phy/rockchip/Makefile
+++ b/drivers/phy/rockchip/Makefile
@@ -3,11 +3,11 @@
# Copyright (C) 2020 Amarula Solutions(India)
#
+obj-$(CONFIG_PHY_ROCKCHIP_INNO_DSIDPHY) += phy-rockchip-inno-dsidphy.o
obj-$(CONFIG_PHY_ROCKCHIP_INNO_HDMI) += phy-rockchip-inno-hdmi.o
obj-$(CONFIG_PHY_ROCKCHIP_INNO_USB2) += phy-rockchip-inno-usb2.o
-obj-$(CONFIG_PHY_ROCKCHIP_NANENG_COMBOPHY) += phy-rockchip-naneng-combphy.o
+obj-$(CONFIG_PHY_ROCKCHIP_NANENG_COMBOPHY) += phy-rockchip-naneng-combphy.o
obj-$(CONFIG_PHY_ROCKCHIP_PCIE) += phy-rockchip-pcie.o
obj-$(CONFIG_PHY_ROCKCHIP_SNPS_PCIE3) += phy-rockchip-snps-pcie3.o
obj-$(CONFIG_PHY_ROCKCHIP_TYPEC) += phy-rockchip-typec.o
-obj-$(CONFIG_PHY_ROCKCHIP_INNO_DSIDPHY) += phy-rockchip-inno-dsidphy.o
-obj-$(CONFIG_PHY_ROCKCHIP_USBDP) += phy-rockchip-usbdp.o
+obj-$(CONFIG_PHY_ROCKCHIP_USBDP) += phy-rockchip-usbdp.o
--
2.39.5
next prev parent reply other threads:[~2026-06-15 21:07 UTC|newest]
Thread overview: 11+ messages / expand[flat|nested] mbox.gz Atom feed top
2026-06-15 21:05 [PATCH v5 00/10] Add Rockchip USBPHY DM driver Johan Jonker
2026-06-15 21:06 ` [PATCH v5 01/10] rockchip: configs: compile rk3066 SPL with SPL_OF_REAL Johan Jonker
2026-06-15 21:07 ` [PATCH v5 02/10] usb: Kconfig: add SPL_USB_DWC2 Johan Jonker
2026-06-15 21:07 ` Johan Jonker [this message]
2026-06-15 21:07 ` [PATCH v5 04/10] rockchip: bind grf syscon usbphy subnode Johan Jonker
2026-06-15 21:07 ` [PATCH v5 05/10] phy: rockchip: add phy-rockchip-usb2.c Johan Jonker
2026-06-15 21:08 ` [PATCH v5 06/10] rockchip: configs: use phy-rockchip-usb2 DM driver Johan Jonker
2026-06-15 21:08 ` [PATCH v5 07/10] usb: phy: remove rockchip_usb2_phy.c Johan Jonker
2026-06-15 21:08 ` [PATCH v5 08/10] rockchip: spl-boot-order: add usb boot option Johan Jonker
2026-06-15 21:08 ` [PATCH v5 09/10] arm: dts: rockchip: add USB required properties in SPL for mk808 Johan Jonker
2026-06-15 21:09 ` [PATCH v5 10/10] rockchip: configs: enable USB " Johan Jonker
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=fe8f401b-142e-487d-9b3e-6cda88dd9cff@gmail.com \
--to=jbx6244@gmail.com \
--cc=heiko@sntech.de \
--cc=hl@rock-chips.com \
--cc=jagan@amarulasolutions.com \
--cc=jernej.skrabec@gmail.com \
--cc=jonas@kwiboo.se \
--cc=kever.yang@rock-chips.com \
--cc=marex@denx.de \
--cc=michael@amarulasolutions.com \
--cc=philipp.tomsich@vrull.eu \
--cc=sjg@chromium.org \
--cc=trini@konsulko.com \
--cc=u-boot@lists.denx.de \
--cc=upstream@lists.phytec.de \
--cc=w.egorov@phytec.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 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.