* [PATCH 0/2] initial usbdrd phy support for Exynosautov920 soc
[not found] <CGME20250514133841epcas5p1993cdc39779e2e67790c84bdcb95a161@epcas5p1.samsung.com>
@ 2025-05-14 13:48 ` Pritam Manohar Sutar
[not found] ` <CGME20250514133844epcas5p3bd8053eba9fb3b64fb0d5989b791d950@epcas5p3.samsung.com>
[not found] ` <CGME20250514133847epcas5p41a1c413aecefa2fab32357c6c69e999c@epcas5p4.samsung.com>
0 siblings, 2 replies; 4+ messages in thread
From: Pritam Manohar Sutar @ 2025-05-14 13:48 UTC (permalink / raw)
To: vkoul, kishon, robh, krzk+dt, conor+dt, alim.akhtar,
andre.draszik, peter.griffin, kauschluss, m.szyprowski,
s.nawrocki
Cc: linux-phy, devicetree, linux-kernel, linux-arm-kernel,
linux-samsung-soc, rosa.pila, dev.tailor, faraz.ata, muhammed.ali,
selvarasu.g, Pritam Manohar Sutar
This SoC has a single USB 3.1 DRD combo phy and three USB2.0
DRD phy controllers that only support the UTMI+ interface.
This SoC is very similar to the existing Exynos850 support
in this driver. We have supported only UTMI+ in this patchset.
The difference is that combo phy supports both UTMI+(HS) and
PIPE3(SS) and is out of scope in this patchset.
Pritam Manohar Sutar (2):
dt-bindings: phy: samsung,usb3-drd-phy: add dt-schema for
ExynosAutov920
phy: exyons5-usbdrd: support HS phy for ExynosAutov920
.../bindings/phy/samsung,usb3-drd-phy.yaml | 27 ++++++
drivers/phy/samsung/phy-exynos5-usbdrd.c | 85 +++++++++++++++++++
2 files changed, 112 insertions(+)
--
2.34.1
^ permalink raw reply [flat|nested] 4+ messages in thread
* [PATCH 1/2] dt-bindings: phy: samsung,usb3-drd-phy: add dt-schema for ExynosAutov920
[not found] ` <CGME20250514133844epcas5p3bd8053eba9fb3b64fb0d5989b791d950@epcas5p3.samsung.com>
@ 2025-05-14 13:48 ` Pritam Manohar Sutar
0 siblings, 0 replies; 4+ messages in thread
From: Pritam Manohar Sutar @ 2025-05-14 13:48 UTC (permalink / raw)
To: vkoul, kishon, robh, krzk+dt, conor+dt, alim.akhtar,
andre.draszik, peter.griffin, kauschluss, m.szyprowski,
s.nawrocki
Cc: linux-phy, devicetree, linux-kernel, linux-arm-kernel,
linux-samsung-soc, rosa.pila, dev.tailor, faraz.ata, muhammed.ali,
selvarasu.g, Pritam Manohar Sutar
Add a dedicated compatible for USB phy found in this SoC
Signed-off-by: Pritam Manohar Sutar <pritam.sutar@samsung.com>
---
.../bindings/phy/samsung,usb3-drd-phy.yaml | 27 +++++++++++++++++++
1 file changed, 27 insertions(+)
diff --git a/Documentation/devicetree/bindings/phy/samsung,usb3-drd-phy.yaml b/Documentation/devicetree/bindings/phy/samsung,usb3-drd-phy.yaml
index fdddddc7d611..c50f4218ded9 100644
--- a/Documentation/devicetree/bindings/phy/samsung,usb3-drd-phy.yaml
+++ b/Documentation/devicetree/bindings/phy/samsung,usb3-drd-phy.yaml
@@ -32,6 +32,7 @@ properties:
- samsung,exynos7-usbdrd-phy
- samsung,exynos7870-usbdrd-phy
- samsung,exynos850-usbdrd-phy
+ - samsung,exynosautov920-usb31drd-phy
clocks:
minItems: 2
@@ -204,6 +205,32 @@ allOf:
reg-names:
maxItems: 1
+ - if:
+ properties:
+ compatible:
+ contains:
+ const: samsung,exynosautov920-usb31drd-phy
+ then:
+ $ref: /schemas/usb/usb-switch.yaml#
+
+ properties:
+ clocks:
+ items:
+ - description: ext_xtal clock
+ - description: reference clock
+
+ clock-names:
+ items:
+ - const: ext_xtal
+ - const: ref
+
+ reg:
+ minItems: 1
+ maxItems: 1
+
+ reg-names:
+ minItems: 1
+
unevaluatedProperties: false
examples:
--
2.34.1
^ permalink raw reply related [flat|nested] 4+ messages in thread
* [PATCH 2/2] phy: exyons5-usbdrd: support HS phy for ExynosAutov920
[not found] ` <CGME20250514133847epcas5p41a1c413aecefa2fab32357c6c69e999c@epcas5p4.samsung.com>
@ 2025-05-14 13:48 ` Pritam Manohar Sutar
2025-05-15 11:24 ` André Draszik
0 siblings, 1 reply; 4+ messages in thread
From: Pritam Manohar Sutar @ 2025-05-14 13:48 UTC (permalink / raw)
To: vkoul, kishon, robh, krzk+dt, conor+dt, alim.akhtar,
andre.draszik, peter.griffin, kauschluss, m.szyprowski,
s.nawrocki
Cc: linux-phy, devicetree, linux-kernel, linux-arm-kernel,
linux-samsung-soc, rosa.pila, dev.tailor, faraz.ata, muhammed.ali,
selvarasu.g, Pritam Manohar Sutar
This SoC has a single USB 3.1 DRD combo phy and three USB2.0
DRD HS phy controllers those only support the UTMI+ interface.
Support only UTMI+ for this SoC which is very similar to what
the existing Exynos850 supports.
The combo phy supports both UTMI+ (HS) and PIPE3 (SS) and is
out of scope of this commit.
Add required change in phy driver to support HS phy for this SoC.
Signed-off-by: Pritam Manohar Sutar <pritam.sutar@samsung.com>
---
drivers/phy/samsung/phy-exynos5-usbdrd.c | 85 ++++++++++++++++++++++++
1 file changed, 85 insertions(+)
diff --git a/drivers/phy/samsung/phy-exynos5-usbdrd.c b/drivers/phy/samsung/phy-exynos5-usbdrd.c
index 634c4310c660..7b4b80319c5c 100644
--- a/drivers/phy/samsung/phy-exynos5-usbdrd.c
+++ b/drivers/phy/samsung/phy-exynos5-usbdrd.c
@@ -177,6 +177,9 @@
#define HSPHYPLLTUNE_PLL_P_TUNE GENMASK(3, 0)
/* Exynos850: USB DRD PHY registers */
+#define EXYNOSAUTOv920_DRD_CTRL_VER 0x00
+#define GET_CTRL_MAJOR_VERSION(_x) (((_x) >> 24) & 0xff)
+
#define EXYNOS850_DRD_LINKCTRL 0x04
#define LINKCTRL_FORCE_RXELECIDLE BIT(18)
#define LINKCTRL_FORCE_PHYSTATUS BIT(17)
@@ -1772,6 +1775,10 @@ static const char * const exynos5_regulator_names[] = {
"vbus", "vbus-boost",
};
+static const char * const exynosautov920_clk_names[] = {
+ "ext_xtal",
+};
+
static const struct exynos5_usbdrd_phy_drvdata exynos5420_usbdrd_phy = {
.phy_cfg = phy_cfg_exynos5,
.phy_ops = &exynos5_usbdrd_phy_ops,
@@ -1847,6 +1854,81 @@ static const struct exynos5_usbdrd_phy_drvdata exynos850_usbdrd_phy = {
.n_regulators = ARRAY_SIZE(exynos5_regulator_names),
};
+static void exynosautov920_usbdrd_utmi_init(struct exynos5_usbdrd_phy *phy_drd)
+{
+ u32 version;
+
+ version = readl(phy_drd->reg_phy + EXYNOSAUTOv920_DRD_CTRL_VER);
+ dev_info(phy_drd->dev, "usbphy: version:0x%x\n", version);
+
+ if (GET_CTRL_MAJOR_VERSION(version) == 0x3)
+ /* utmi init for exynosautov920 HS phy */
+ exynos850_usbdrd_utmi_init(phy_drd);
+}
+
+static int exynosautov920_usbdrd_phy_init(struct phy *phy)
+{
+ struct phy_usb_instance *inst = phy_get_drvdata(phy);
+ struct exynos5_usbdrd_phy *phy_drd = to_usbdrd_phy(inst);
+ int ret = 0;
+
+ ret = clk_bulk_prepare_enable(phy_drd->drv_data->n_clks, phy_drd->clks);
+ if (ret)
+ return ret;
+
+ /* UTMI or PIPE3 specific init */
+ inst->phy_cfg->phy_init(phy_drd);
+
+ clk_bulk_disable_unprepare(phy_drd->drv_data->n_clks, phy_drd->clks);
+
+ return 0;
+}
+
+static void exynosautov920_v3p1_phy_dis(struct phy *phy)
+{
+ struct phy_usb_instance *inst = phy_get_drvdata(phy);
+ struct exynos5_usbdrd_phy *phy_drd = to_usbdrd_phy(inst);
+ void __iomem *reg_phy = phy_drd->reg_phy;
+ u32 version;
+
+ version = readl(reg_phy + EXYNOSAUTOv920_DRD_CTRL_VER);
+
+ if (GET_CTRL_MAJOR_VERSION(version) == 0x3)
+ exynos850_usbdrd_phy_exit(phy);
+}
+
+static int exynosautov920_usbdrd_phy_exit(struct phy *phy)
+{
+ struct phy_usb_instance *inst = phy_get_drvdata(phy);
+
+ if (inst->phy_cfg->id == EXYNOS5_DRDPHY_UTMI)
+ exynosautov920_v3p1_phy_dis(phy);
+
+ return 0;
+}
+
+static const struct phy_ops exynosautov920_usbdrd_phy_ops = {
+ .init = exynosautov920_usbdrd_phy_init,
+ .exit = exynosautov920_usbdrd_phy_exit,
+ .owner = THIS_MODULE,
+};
+
+static const struct exynos5_usbdrd_phy_config phy_cfg_exynosautov920[] = {
+ {
+ .id = EXYNOS5_DRDPHY_UTMI,
+ .phy_init = exynosautov920_usbdrd_utmi_init,
+ },
+};
+
+static const struct exynos5_usbdrd_phy_drvdata exynosautov920_usb31drd_phy = {
+ .phy_cfg = phy_cfg_exynosautov920,
+ .phy_ops = &exynosautov920_usbdrd_phy_ops,
+ .clk_names = exynosautov920_clk_names,
+ .n_clks = ARRAY_SIZE(exynosautov920_clk_names),
+ .core_clk_names = exynos5_core_clk_names,
+ .n_core_clks = ARRAY_SIZE(exynos5_core_clk_names),
+};
+
static const struct exynos5_usbdrd_phy_config phy_cfg_gs101[] = {
{
.id = EXYNOS5_DRDPHY_UTMI,
@@ -2047,6 +2129,9 @@ static const struct of_device_id exynos5_usbdrd_phy_of_match[] = {
}, {
.compatible = "samsung,exynos850-usbdrd-phy",
.data = &exynos850_usbdrd_phy
+ }, {
+ .compatible = "samsung,exynosautov920-usb31drd-phy",
+ .data = &exynosautov920_usb31drd_phy
},
{ },
};
--
2.34.1
^ permalink raw reply related [flat|nested] 4+ messages in thread
* Re: [PATCH 2/2] phy: exyons5-usbdrd: support HS phy for ExynosAutov920
2025-05-14 13:48 ` [PATCH 2/2] phy: exyons5-usbdrd: support HS phy " Pritam Manohar Sutar
@ 2025-05-15 11:24 ` André Draszik
0 siblings, 0 replies; 4+ messages in thread
From: André Draszik @ 2025-05-15 11:24 UTC (permalink / raw)
To: Pritam Manohar Sutar, vkoul, kishon, robh, krzk+dt, conor+dt,
alim.akhtar, peter.griffin, kauschluss, m.szyprowski, s.nawrocki
Cc: linux-phy, devicetree, linux-kernel, linux-arm-kernel,
linux-samsung-soc, rosa.pila, dev.tailor, faraz.ata, muhammed.ali,
selvarasu.g
Hi,
On Wed, 2025-05-14 at 19:18 +0530, Pritam Manohar Sutar wrote:
> This SoC has a single USB 3.1 DRD combo phy and three USB2.0
> DRD HS phy controllers those only support the UTMI+ interface.
>
> Support only UTMI+ for this SoC which is very similar to what
> the existing Exynos850 supports.
>
> The combo phy supports both UTMI+ (HS) and PIPE3 (SS) and is
> out of scope of this commit.
>
> Add required change in phy driver to support HS phy for this SoC.
>
> Signed-off-by: Pritam Manohar Sutar <pritam.sutar@samsung.com>
> ---
> drivers/phy/samsung/phy-exynos5-usbdrd.c | 85 ++++++++++++++++++++++++
> 1 file changed, 85 insertions(+)
>
> diff --git a/drivers/phy/samsung/phy-exynos5-usbdrd.c b/drivers/phy/samsung/phy-exynos5-usbdrd.c
> index 634c4310c660..7b4b80319c5c 100644
> --- a/drivers/phy/samsung/phy-exynos5-usbdrd.c
> +++ b/drivers/phy/samsung/phy-exynos5-usbdrd.c
> @@ -177,6 +177,9 @@
> #define HSPHYPLLTUNE_PLL_P_TUNE GENMASK(3, 0)
>
> /* Exynos850: USB DRD PHY registers */
> +#define EXYNOSAUTOv920_DRD_CTRL_VER 0x00
> +#define GET_CTRL_MAJOR_VERSION(_x) (((_x) >> 24) & 0xff)
I suggest using standard GENMASK() and FIELD_GET() for the version bits instead.
Cheers,
A.
> +
> #define EXYNOS850_DRD_LINKCTRL 0x04
> #define LINKCTRL_FORCE_RXELECIDLE BIT(18)
> #define LINKCTRL_FORCE_PHYSTATUS BIT(17)
> @@ -1772,6 +1775,10 @@ static const char * const exynos5_regulator_names[] = {
> "vbus", "vbus-boost",
> };
>
> +static const char * const exynosautov920_clk_names[] = {
> + "ext_xtal",
> +};
> +
> static const struct exynos5_usbdrd_phy_drvdata exynos5420_usbdrd_phy = {
> .phy_cfg = phy_cfg_exynos5,
> .phy_ops = &exynos5_usbdrd_phy_ops,
> @@ -1847,6 +1854,81 @@ static const struct exynos5_usbdrd_phy_drvdata exynos850_usbdrd_phy = {
> .n_regulators = ARRAY_SIZE(exynos5_regulator_names),
> };
>
> +static void exynosautov920_usbdrd_utmi_init(struct exynos5_usbdrd_phy *phy_drd)
> +{
> + u32 version;
> +
> + version = readl(phy_drd->reg_phy + EXYNOSAUTOv920_DRD_CTRL_VER);
> + dev_info(phy_drd->dev, "usbphy: version:0x%x\n", version);
> +
> + if (GET_CTRL_MAJOR_VERSION(version) == 0x3)
> + /* utmi init for exynosautov920 HS phy */
> + exynos850_usbdrd_utmi_init(phy_drd);
> +}
> +
> +static int exynosautov920_usbdrd_phy_init(struct phy *phy)
> +{
> + struct phy_usb_instance *inst = phy_get_drvdata(phy);
> + struct exynos5_usbdrd_phy *phy_drd = to_usbdrd_phy(inst);
> + int ret = 0;
> +
> + ret = clk_bulk_prepare_enable(phy_drd->drv_data->n_clks, phy_drd->clks);
> + if (ret)
> + return ret;
> +
> + /* UTMI or PIPE3 specific init */
> + inst->phy_cfg->phy_init(phy_drd);
> +
> + clk_bulk_disable_unprepare(phy_drd->drv_data->n_clks, phy_drd->clks);
> +
> + return 0;
> +}
> +
> +static void exynosautov920_v3p1_phy_dis(struct phy *phy)
> +{
> + struct phy_usb_instance *inst = phy_get_drvdata(phy);
> + struct exynos5_usbdrd_phy *phy_drd = to_usbdrd_phy(inst);
> + void __iomem *reg_phy = phy_drd->reg_phy;
> + u32 version;
> +
> + version = readl(reg_phy + EXYNOSAUTOv920_DRD_CTRL_VER);
> +
> + if (GET_CTRL_MAJOR_VERSION(version) == 0x3)
> + exynos850_usbdrd_phy_exit(phy);
> +}
> +
> +static int exynosautov920_usbdrd_phy_exit(struct phy *phy)
> +{
> + struct phy_usb_instance *inst = phy_get_drvdata(phy);
> +
> + if (inst->phy_cfg->id == EXYNOS5_DRDPHY_UTMI)
> + exynosautov920_v3p1_phy_dis(phy);
> +
> + return 0;
> +}
> +
> +static const struct phy_ops exynosautov920_usbdrd_phy_ops = {
> + .init = exynosautov920_usbdrd_phy_init,
> + .exit = exynosautov920_usbdrd_phy_exit,
> + .owner = THIS_MODULE,
> +};
> +
> +static const struct exynos5_usbdrd_phy_config phy_cfg_exynosautov920[] = {
> + {
> + .id = EXYNOS5_DRDPHY_UTMI,
> + .phy_init = exynosautov920_usbdrd_utmi_init,
> + },
> +};
> +
> +static const struct exynos5_usbdrd_phy_drvdata exynosautov920_usb31drd_phy = {
> + .phy_cfg = phy_cfg_exynosautov920,
> + .phy_ops = &exynosautov920_usbdrd_phy_ops,
> + .clk_names = exynosautov920_clk_names,
> + .n_clks = ARRAY_SIZE(exynosautov920_clk_names),
> + .core_clk_names = exynos5_core_clk_names,
> + .n_core_clks = ARRAY_SIZE(exynos5_core_clk_names),
> +};
> +
> static const struct exynos5_usbdrd_phy_config phy_cfg_gs101[] = {
> {
> .id = EXYNOS5_DRDPHY_UTMI,
> @@ -2047,6 +2129,9 @@ static const struct of_device_id exynos5_usbdrd_phy_of_match[] = {
> }, {
> .compatible = "samsung,exynos850-usbdrd-phy",
> .data = &exynos850_usbdrd_phy
> + }, {
> + .compatible = "samsung,exynosautov920-usb31drd-phy",
> + .data = &exynosautov920_usb31drd_phy
> },
> { },
> };
^ permalink raw reply [flat|nested] 4+ messages in thread
end of thread, other threads:[~2025-05-15 11:24 UTC | newest]
Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
[not found] <CGME20250514133841epcas5p1993cdc39779e2e67790c84bdcb95a161@epcas5p1.samsung.com>
2025-05-14 13:48 ` [PATCH 0/2] initial usbdrd phy support for Exynosautov920 soc Pritam Manohar Sutar
[not found] ` <CGME20250514133844epcas5p3bd8053eba9fb3b64fb0d5989b791d950@epcas5p3.samsung.com>
2025-05-14 13:48 ` [PATCH 1/2] dt-bindings: phy: samsung,usb3-drd-phy: add dt-schema for ExynosAutov920 Pritam Manohar Sutar
[not found] ` <CGME20250514133847epcas5p41a1c413aecefa2fab32357c6c69e999c@epcas5p4.samsung.com>
2025-05-14 13:48 ` [PATCH 2/2] phy: exyons5-usbdrd: support HS phy " Pritam Manohar Sutar
2025-05-15 11:24 ` André Draszik
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).