Re: [PATCH v3 4/4] phy: qcom: edp: Add Glymur platform support
From: Abel Vesa <hidden>
Date: 2025-09-12 07:43:31
Also in:
linux-arm-msm, linux-devicetree, lkml
On 25-09-11 22:28:24, Alexey Klimov wrote:
On Thu Sep 11, 2025 at 3:45 PM BST, Abel Vesa wrote:quoted
The Qualcomm Glymur platform has the new v8 version of the eDP/DP PHY. So rework the driver to support this new version and add the platform specific configuration data.It is a bit confusing. Subject suggests that it is an addition of a new platform but patch itself and description looks more like a rework rather than new platform addition.
The larger part of this patch is actually the addition of v8 specific bits, which is only used on Glymur, AFAICT. So here, new platform means new init sequence (at least), but new init sequence requires addition of v8 bits. The rework is rather minor in comparison with the v8 addition.
The ->aux_cfg_size() rework here reminds me 913463587d52 phy: qcom: edp: Introduce aux_cfg array for version specific aux settings Ideally this should be split into rework and adding support for a new platform. Or please update the commit desc and subject to explain why this is the way.
Splitting out the rework could be an option, however, it would not add any value. Seeing the changes needed by the new v8 version alongside with the addition of the v8 version makes the patch more intuitive to read, IMO, specially since, again, the rework pretty is minor. If anything, maybe I could add to the existing commit what exactly needs to be reworked for the v8 version addition, but IMHO the rework code is quite self-explanatory, and we should only describe in the commit message what the patch does not how the code works.
quoted
Signed-off-by: Abel Vesa <redacted> --- drivers/phy/qualcomm/phy-qcom-edp.c | 240 +++++++++++++++++++++++++++++++++++- 1 file changed, 234 insertions(+), 6 deletions(-)diff --git a/drivers/phy/qualcomm/phy-qcom-edp.c b/drivers/phy/qualcomm/phy-qcom-edp.c index 7b642742412e63149442e4befeb095307ec38173..b670cda0fa066d3ff45c66b73cc67e165e55b79a 100644 --- a/drivers/phy/qualcomm/phy-qcom-edp.c +++ b/drivers/phy/qualcomm/phy-qcom-edp.c[..]quoted
static int qcom_edp_phy_init(struct phy *phy) { struct qcom_edp *edp = phy_get_drvdata(phy);@@ -224,7 +241,11 @@ static int qcom_edp_phy_init(struct phy *phy) if (ret) goto out_disable_supplies; - memcpy(aux_cfg, edp->cfg->aux_cfg, sizeof(aux_cfg)); + memcpy(aux_cfg, edp->cfg->aux_cfg, edp->cfg->aux_cfg_size);So, if I understand this correctly, when or if init sequence will span beyond DP_PHY_AUX_CFG9 and DP_AUX_CFG_SIZE won't be updated, then we might end up doing something fishy here?
So, usually you get an init sequence that gives you register names and registers value. This means will never get anything beyond the AUX_CFG12 as part of the AUX_CFG array. At least not on the currently available platforms. In case a new platform will come around with AUX_CFG13 and beyond, then this whole thing will need to be reworked heavily due to variation in size of the AUX_CFG register layout, not because of the variation in size of the AUX CFG init sequence, as it is the case now. But this fits into the 'future problem' bucket.
Maybe add an if-check or even BUILD_BUG_ON(edp->cfg->aux_cfg_size > sizeof(aux_cfg)) or something like this? Or kmalloc aux_cfg eventually at least, however it seems to overcomplicate things.
Definitely not BUILD_BUG_ON ! And adding a check for the size it's pretty pointless since we currently hardcode the size of the array when defining it. But maybe I'll outvoted here ...
[..]quoted
+static int qcom_edp_com_configure_ssc_v8(const struct qcom_edp *edp) +{ + const struct phy_configure_opts_dp *dp_opts = &edp->dp_opts; + u32 step1; + u32 step2; + + switch (dp_opts->link_rate) { + case 1620: + case 2700: + case 8100: + step1 = 0x5b; + step2 = 0x02; + break; + + case 5400: + step1 = 0x5b; + step2 = 0x02; + break; + + default: + /* Other link rates aren't supported */ + return -EINVAL; + } + + writel(0x01, edp->pll + DP_QSERDES_V8_COM_SSC_EN_CENTER); + writel(0x00, edp->pll + DP_QSERDES_V8_COM_SSC_ADJ_PER1); + writel(0x6b, edp->pll + DP_QSERDES_V8_COM_SSC_PER1); + writel(0x02, edp->pll + DP_QSERDES_V8_COM_SSC_PER2); + writel(step1, edp->pll + DP_QSERDES_V8_COM_SSC_STEP_SIZE1_MODE0); + writel(step2, edp->pll + DP_QSERDES_V8_COM_SSC_STEP_SIZE2_MODE0); + + return 0; +} + +static int qcom_edp_com_configure_pll_v8(const struct qcom_edp *edp) +{ + const struct phy_configure_opts_dp *dp_opts = &edp->dp_opts; + u32 div_frac_start2_mode0; + u32 div_frac_start3_mode0; + u32 dec_start_mode0; + u32 lock_cmp1_mode0; + u32 lock_cmp2_mode0; + u32 code1_mode0; + u32 code2_mode0; + u32 hsclk_sel; + + switch (dp_opts->link_rate) { + case 1620: + hsclk_sel = 0x5; + dec_start_mode0 = 0x34; + div_frac_start2_mode0 = 0xc0; + div_frac_start3_mode0 = 0x0b; + lock_cmp1_mode0 = 0x37; + lock_cmp2_mode0 = 0x04; + code1_mode0 = 0x71; + code2_mode0 = 0x0c; + break; + + case 2700: + hsclk_sel = 0x3; + dec_start_mode0 = 0x34; + div_frac_start2_mode0 = 0xc0; + div_frac_start3_mode0 = 0x0b; + lock_cmp1_mode0 = 0x07; + lock_cmp2_mode0 = 0x07; + code1_mode0 = 0x71; + code2_mode0 = 0x0c; + break; + + case 5400: + hsclk_sel = 0x2; + dec_start_mode0 = 0x4f; + div_frac_start2_mode0 = 0xa0; + div_frac_start3_mode0 = 0x01; + lock_cmp1_mode0 = 0x18; + lock_cmp2_mode0 = 0x15; + code1_mode0 = 0x14; + code2_mode0 = 0x25; + break; + + case 8100: + hsclk_sel = 0x2; + dec_start_mode0 = 0x4f; + div_frac_start2_mode0 = 0xa0; + div_frac_start3_mode0 = 0x01; + lock_cmp1_mode0 = 0x18; + lock_cmp2_mode0 = 0x15; + code1_mode0 = 0x14; + code2_mode0 = 0x25; + break;These sections for 5400 and 8100 rates seem to be the same. Is it correct? If yes, then maybe join them together and drop duplicating lines? There is probably similar thingy in qcom_edp_com_configure_ssc_v8() above.
I agree. This is a good point. I'll do fallthrough instead. In the _configure_ssc_v8() above as well.
Best regards, Alexey
Thanks for reviewing. -- linux-phy mailing list linux-phy@lists.infradead.org https://lists.infradead.org/mailman/listinfo/linux-phy