From: Ivaylo Ivanov <ivo.ivanov.ivanov1@gmail.com>
To: Dmitry Baryshkov <dmitry.baryshkov@linaro.org>
Cc: Vinod Koul <vkoul@kernel.org>,
Kishon Vijay Abraham I <kishon@kernel.org>,
Rob Herring <robh@kernel.org>,
Krzysztof Kozlowski <krzk+dt@kernel.org>,
Conor Dooley <conor+dt@kernel.org>,
Alim Akhtar <alim.akhtar@samsung.com>,
Philipp Zabel <p.zabel@pengutronix.de>,
Abel Vesa <abel.vesa@linaro.org>,
linux-arm-msm@vger.kernel.org,
linux-arm-kernel@lists.infradead.org,
linux-samsung-soc@vger.kernel.org, linux-phy@lists.infradead.org,
devicetree@vger.kernel.org, linux-kernel@vger.kernel.org
Subject: Re: [PATCH v2 7/8] phy: phy-snps-eusb2: add support for exynos2200
Date: Mon, 24 Feb 2025 09:30:57 +0200 [thread overview]
Message-ID: <7426ef0e-c0ae-4a4a-8678-c1a3a4ead250@gmail.com> (raw)
In-Reply-To: <ac7bq3toicuoppmspqvohiss5wkhgw4v6aozzstd5pr66bfcse@k7tqijab4csq>
On 2/24/25 01:51, Dmitry Baryshkov wrote:
> On Sun, Feb 23, 2025 at 02:22:26PM +0200, Ivaylo Ivanov wrote:
>> The Exynos2200 SoC reuses the Synopsis eUSB2 PHY IP, alongside an
>> external repeater, for USB 2.0. Add support for it to the existing
>> driver.
>>
>> Signed-off-by: Ivaylo Ivanov <ivo.ivanov.ivanov1@gmail.com>
>> ---
>> drivers/phy/Kconfig | 2 +-
>> drivers/phy/phy-snps-eusb2.c | 172 +++++++++++++++++++++++++++++++++++
>> 2 files changed, 173 insertions(+), 1 deletion(-)
>>
>> diff --git a/drivers/phy/Kconfig b/drivers/phy/Kconfig
>> index 11c166204..58c911e1b 100644
>> --- a/drivers/phy/Kconfig
>> +++ b/drivers/phy/Kconfig
>> @@ -45,7 +45,7 @@ config PHY_PISTACHIO_USB
>>
>> config PHY_SNPS_EUSB2
>> tristate "SNPS eUSB2 PHY Driver"
>> - depends on OF && (ARCH_QCOM || COMPILE_TEST)
>> + depends on OF && (ARCH_EXYNOS || ARCH_QCOM || COMPILE_TEST)
>> select GENERIC_PHY
>> help
>> Enable support for the USB high-speed SNPS eUSB2 phy on select
>> diff --git a/drivers/phy/phy-snps-eusb2.c b/drivers/phy/phy-snps-eusb2.c
>> index 7a242fe32..67a19d671 100644
>> --- a/drivers/phy/phy-snps-eusb2.c
>> +++ b/drivers/phy/phy-snps-eusb2.c
>> @@ -13,6 +13,39 @@
>> #include <linux/regulator/consumer.h>
>> #include <linux/reset.h>
>>
>> +#define EXYNOS_USB_PHY_HS_PHY_CTRL_RST (0x0)
>> +#define USB_PHY_RST_MASK GENMASK(1, 0)
>> +#define UTMI_PORT_RST_MASK GENMASK(5, 4)
>> +
>> +#define EXYNOS_USB_PHY_HS_PHY_CTRL_COMMON (0x4)
>> +#define RPTR_MODE BIT(10)
>> +#define FSEL_20_MHZ_VAL (0x1)
>> +#define FSEL_24_MHZ_VAL (0x2)
>> +#define FSEL_26_MHZ_VAL (0x3)
>> +#define FSEL_48_MHZ_VAL (0x2)
>> +
>> +#define EXYNOS_USB_PHY_CFG_PLLCFG0 (0x8)
>> +#define PHY_CFG_PLL_FB_DIV_19_8_MASK GENMASK(19, 8)
>> +#define DIV_19_8_19_2_MHZ_VAL (0x170)
>> +#define DIV_19_8_20_MHZ_VAL (0x160)
>> +#define DIV_19_8_24_MHZ_VAL (0x120)
>> +#define DIV_19_8_26_MHZ_VAL (0x107)
>> +#define DIV_19_8_48_MHZ_VAL (0x120)
>> +
>> +#define EXYNOS_USB_PHY_CFG_PLLCFG1 (0xc)
>> +#define EXYNOS_PHY_CFG_PLL_FB_DIV_11_8_MASK GENMASK(11, 8)
>> +#define EXYNOS_DIV_11_8_19_2_MHZ_VAL (0x0)
>> +#define EXYNOS_DIV_11_8_20_MHZ_VAL (0x0)
>> +#define EXYNOS_DIV_11_8_24_MHZ_VAL (0x0)
>> +#define EXYNOS_DIV_11_8_26_MHZ_VAL (0x0)
>> +#define EXYNOS_DIV_11_8_48_MHZ_VAL (0x1)
>> +
>> +#define EXYNOS_PHY_CFG_TX (0x14)
>> +#define EXYNOS_PHY_CFG_TX_FSLS_VREF_TUNE_MASK GENMASK(2, 1)
>> +
>> +#define EXYNOS_USB_PHY_UTMI_TESTSE (0x20)
>> +#define TEST_IDDQ BIT(6)
>> +
>> #define QCOM_USB_PHY_UTMI_CTRL0 (0x3c)
>> #define SLEEPM BIT(0)
>> #define OPMODE_MASK GENMASK(4, 3)
>> @@ -196,6 +229,93 @@ static void qcom_eusb2_default_parameters(struct snps_eusb2_hsphy *phy)
>> FIELD_PREP(PHY_CFG_TX_HS_XV_TUNE_MASK, 0x0));
>> }
>>
>> +static int exynos_eusb2_ref_clk_init(struct snps_eusb2_hsphy *phy)
>> +{
>> + unsigned long ref_clk_freq = clk_get_rate(phy->ref_clk);
>> +
>> + switch (ref_clk_freq) {
>> + case 19200000:
>> + snps_eusb2_hsphy_write_mask(phy->base, EXYNOS_USB_PHY_HS_PHY_CTRL_COMMON,
>> + FSEL_MASK,
>> + FIELD_PREP(FSEL_MASK, FSEL_19_2_MHZ_VAL));
>> +
> Could you please unify the switchcase? assign the values to temp
> variables, then program them from a single code stream. Or maybe even
> replace switch-case with a table-based lookup.
>
> (we probably should implement the similar change for qcom part. Maybe
> you can refactor it too?)
Alright. I'll do it for the Qualcomm part too in a separate commit.
Thanks for the feedback!
Best regards,
Ivaylo
> Other than that LGTM.
>
>> + snps_eusb2_hsphy_write_mask(phy->base, EXYNOS_USB_PHY_CFG_PLLCFG0,
>> + PHY_CFG_PLL_FB_DIV_19_8_MASK,
>> + FIELD_PREP(PHY_CFG_PLL_FB_DIV_19_8_MASK,
>> + DIV_19_8_19_2_MHZ_VAL));
>> +
>> + snps_eusb2_hsphy_write_mask(phy->base, EXYNOS_USB_PHY_CFG_PLLCFG1,
>> + EXYNOS_PHY_CFG_PLL_FB_DIV_11_8_MASK,
>> + EXYNOS_DIV_11_8_19_2_MHZ_VAL);
>> + break;
>> +
>> + case 20000000:
>> + snps_eusb2_hsphy_write_mask(phy->base, EXYNOS_USB_PHY_HS_PHY_CTRL_COMMON,
>> + FSEL_MASK,
>> + FIELD_PREP(FSEL_MASK, FSEL_20_MHZ_VAL));
>> +
>> + snps_eusb2_hsphy_write_mask(phy->base, EXYNOS_USB_PHY_CFG_PLLCFG0,
>> + PHY_CFG_PLL_FB_DIV_19_8_MASK,
>> + FIELD_PREP(PHY_CFG_PLL_FB_DIV_19_8_MASK,
>> + DIV_19_8_20_MHZ_VAL));
>> +
>> + snps_eusb2_hsphy_write_mask(phy->base, EXYNOS_USB_PHY_CFG_PLLCFG1,
>> + EXYNOS_PHY_CFG_PLL_FB_DIV_11_8_MASK,
>> + EXYNOS_DIV_11_8_20_MHZ_VAL);
>> + break;
>> +
next prev parent reply other threads:[~2025-02-24 7:32 UTC|newest]
Thread overview: 36+ messages / expand[flat|nested] mbox.gz Atom feed top
2025-02-23 12:22 [PATCH v2 0/8] phy: samsung: add Exynos2200 SNPS eUSB2 driver Ivaylo Ivanov
2025-02-23 12:22 ` [PATCH v2 1/8] dt-bindings: phy: rename qcom,snps-eusb2-phy binding to snps,eusb2-phy Ivaylo Ivanov
2025-02-25 11:47 ` Krzysztof Kozlowski
2025-02-23 12:22 ` [PATCH v2 2/8] dt-bindings: phy: snps-eusb2: add exynos2200 support Ivaylo Ivanov
2025-02-23 23:43 ` Dmitry Baryshkov
2025-02-24 7:14 ` Ivaylo Ivanov
2025-02-25 11:46 ` Krzysztof Kozlowski
2025-02-23 12:22 ` [PATCH v2 3/8] dt-bindings: phy: add samsung,exynos2200-usbcon-phy schema file Ivaylo Ivanov
2025-02-23 13:42 ` Rob Herring (Arm)
2025-02-24 8:56 ` Krzysztof Kozlowski
2025-02-24 10:48 ` Ivaylo Ivanov
2025-02-25 8:11 ` Krzysztof Kozlowski
2025-03-02 9:16 ` Ivaylo Ivanov
2025-03-03 7:24 ` Krzysztof Kozlowski
2025-03-03 17:18 ` Ivaylo Ivanov
2025-03-04 7:21 ` Krzysztof Kozlowski
2025-03-04 9:09 ` Ivaylo Ivanov
2025-03-04 10:03 ` Krzysztof Kozlowski
2025-03-04 10:37 ` Ivaylo Ivanov
2025-02-23 12:22 ` [PATCH v2 4/8] phy: move phy-qcom-snps-eusb2 out of its vendor sub-directory Ivaylo Ivanov
2025-02-24 10:59 ` neil.armstrong
2025-03-07 17:38 ` Dan Carpenter
2025-02-23 12:22 ` [PATCH v2 5/8] phy: phy-snps-eusb2: make repeater optional Ivaylo Ivanov
2025-02-24 10:11 ` Abel Vesa
2025-02-24 10:55 ` neil.armstrong
2025-03-02 2:08 ` kernel test robot
2025-03-19 11:08 ` Dmitry Baryshkov
2025-03-19 11:39 ` Ivaylo Ivanov
2025-02-23 12:22 ` [PATCH v2 6/8] phy: phy-snps-eusb2: make reset control optional Ivaylo Ivanov
2025-02-23 23:48 ` Dmitry Baryshkov
2025-02-24 7:28 ` Ivaylo Ivanov
2025-02-23 12:22 ` [PATCH v2 7/8] phy: phy-snps-eusb2: add support for exynos2200 Ivaylo Ivanov
2025-02-23 23:51 ` Dmitry Baryshkov
2025-02-24 7:30 ` Ivaylo Ivanov [this message]
2025-02-23 12:22 ` [PATCH v2 8/8] phy: samsung: add Exynos2200 usb phy controller Ivaylo Ivanov
2025-02-23 23:54 ` Dmitry Baryshkov
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=7426ef0e-c0ae-4a4a-8678-c1a3a4ead250@gmail.com \
--to=ivo.ivanov.ivanov1@gmail.com \
--cc=abel.vesa@linaro.org \
--cc=alim.akhtar@samsung.com \
--cc=conor+dt@kernel.org \
--cc=devicetree@vger.kernel.org \
--cc=dmitry.baryshkov@linaro.org \
--cc=kishon@kernel.org \
--cc=krzk+dt@kernel.org \
--cc=linux-arm-kernel@lists.infradead.org \
--cc=linux-arm-msm@vger.kernel.org \
--cc=linux-kernel@vger.kernel.org \
--cc=linux-phy@lists.infradead.org \
--cc=linux-samsung-soc@vger.kernel.org \
--cc=p.zabel@pengutronix.de \
--cc=robh@kernel.org \
--cc=vkoul@kernel.org \
/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;
as well as URLs for NNTP newsgroup(s).