* [PATCH 1/2] dt-bindings: display/msm: Add SM6375 DSI PHY
@ 2023-01-16 11:40 Konrad Dybcio
2023-01-16 11:40 ` [PATCH 2/2] drm/msm/dsi: Add phy configuration for SM6375 Konrad Dybcio
` (2 more replies)
0 siblings, 3 replies; 7+ messages in thread
From: Konrad Dybcio @ 2023-01-16 11:40 UTC (permalink / raw)
To: linux-arm-msm, andersson, agross, krzysztof.kozlowski
Cc: marijn.suijten, Konrad Dybcio, Rob Clark, Abhinav Kumar,
Dmitry Baryshkov, Sean Paul, David Airlie, Daniel Vetter,
Rob Herring, Krzysztof Kozlowski, Jonathan Marek, dri-devel,
freedreno, devicetree, linux-kernel
SM6375 has a single 7nm DSI PHY. Document it.
Signed-off-by: Konrad Dybcio <konrad.dybcio@linaro.org>
---
Documentation/devicetree/bindings/display/msm/dsi-phy-7nm.yaml | 1 +
1 file changed, 1 insertion(+)
diff --git a/Documentation/devicetree/bindings/display/msm/dsi-phy-7nm.yaml b/Documentation/devicetree/bindings/display/msm/dsi-phy-7nm.yaml
index 78ab8c410ccd..9c9184f94c44 100644
--- a/Documentation/devicetree/bindings/display/msm/dsi-phy-7nm.yaml
+++ b/Documentation/devicetree/bindings/display/msm/dsi-phy-7nm.yaml
@@ -18,6 +18,7 @@ properties:
- qcom,dsi-phy-7nm
- qcom,dsi-phy-7nm-8150
- qcom,sc7280-dsi-phy-7nm
+ - qcom,sm6375-dsi-phy-7nm
- qcom,sm8350-dsi-phy-5nm
- qcom,sm8450-dsi-phy-5nm
- qcom,sm8550-dsi-phy-4nm
--
2.39.0
^ permalink raw reply related [flat|nested] 7+ messages in thread* [PATCH 2/2] drm/msm/dsi: Add phy configuration for SM6375 2023-01-16 11:40 [PATCH 1/2] dt-bindings: display/msm: Add SM6375 DSI PHY Konrad Dybcio @ 2023-01-16 11:40 ` Konrad Dybcio 2023-01-16 11:42 ` Konrad Dybcio 2023-01-16 19:20 ` [PATCH 1/2] dt-bindings: display/msm: Add SM6375 DSI PHY Krzysztof Kozlowski 2023-01-18 2:06 ` Dmitry Baryshkov 2 siblings, 1 reply; 7+ messages in thread From: Konrad Dybcio @ 2023-01-16 11:40 UTC (permalink / raw) To: linux-arm-msm, andersson, agross, krzysztof.kozlowski Cc: marijn.suijten, Konrad Dybcio, Rob Clark, Abhinav Kumar, Dmitry Baryshkov, Sean Paul, David Airlie, Daniel Vetter, Rob Herring, Krzysztof Kozlowski, Jonathan Marek, dri-devel, freedreno, devicetree, linux-kernel, Konrad Dybcio, Douglas Anderson, sunliming, Neil Armstrong, José Expósito, Rajeev Nandan, Loic Poulain From: Konrad Dybcio <konrad.dybcio@somainline.org> SM6375 uses a boring standard 7nm PHY. Add a configuration entry for it. Signed-off-by: Konrad Dybcio <konrad.dybcio@somainline.org> --- Depends on [1] to work properly, but won't hurt for it to land separately.. [1] https://patchwork.kernel.org/project/linux-arm-msm/patch/1642586079-12472-1-git-send-email-loic.poulain@linaro.org/ drivers/gpu/drm/msm/dsi/phy/dsi_phy.c | 2 ++ drivers/gpu/drm/msm/dsi/phy/dsi_phy.h | 1 + drivers/gpu/drm/msm/dsi/phy/dsi_phy_7nm.c | 20 ++++++++++++++++++++ 3 files changed, 23 insertions(+) diff --git a/drivers/gpu/drm/msm/dsi/phy/dsi_phy.c b/drivers/gpu/drm/msm/dsi/phy/dsi_phy.c index cbe669fca26d..57445a5dc816 100644 --- a/drivers/gpu/drm/msm/dsi/phy/dsi_phy.c +++ b/drivers/gpu/drm/msm/dsi/phy/dsi_phy.c @@ -569,6 +569,8 @@ static const struct of_device_id dsi_phy_dt_match[] = { .data = &dsi_phy_7nm_8150_cfgs }, { .compatible = "qcom,sc7280-dsi-phy-7nm", .data = &dsi_phy_7nm_7280_cfgs }, + { .compatible = "qcom,sm6375-dsi-phy-7nm", + .data = &dsi_phy_7nm_6375_cfgs }, { .compatible = "qcom,sm8350-dsi-phy-5nm", .data = &dsi_phy_5nm_8350_cfgs }, { .compatible = "qcom,sm8450-dsi-phy-5nm", diff --git a/drivers/gpu/drm/msm/dsi/phy/dsi_phy.h b/drivers/gpu/drm/msm/dsi/phy/dsi_phy.h index 5f0b1c9b09ef..c849bfd7494e 100644 --- a/drivers/gpu/drm/msm/dsi/phy/dsi_phy.h +++ b/drivers/gpu/drm/msm/dsi/phy/dsi_phy.h @@ -55,6 +55,7 @@ extern const struct msm_dsi_phy_cfg dsi_phy_14nm_8953_cfgs; extern const struct msm_dsi_phy_cfg dsi_phy_10nm_cfgs; extern const struct msm_dsi_phy_cfg dsi_phy_10nm_8998_cfgs; extern const struct msm_dsi_phy_cfg dsi_phy_7nm_cfgs; +extern const struct msm_dsi_phy_cfg dsi_phy_7nm_6375_cfgs; extern const struct msm_dsi_phy_cfg dsi_phy_7nm_8150_cfgs; extern const struct msm_dsi_phy_cfg dsi_phy_7nm_7280_cfgs; extern const struct msm_dsi_phy_cfg dsi_phy_5nm_8350_cfgs; diff --git a/drivers/gpu/drm/msm/dsi/phy/dsi_phy_7nm.c b/drivers/gpu/drm/msm/dsi/phy/dsi_phy_7nm.c index af5c952c6ad0..3b1ed02f644d 100644 --- a/drivers/gpu/drm/msm/dsi/phy/dsi_phy_7nm.c +++ b/drivers/gpu/drm/msm/dsi/phy/dsi_phy_7nm.c @@ -1152,6 +1152,26 @@ const struct msm_dsi_phy_cfg dsi_phy_7nm_cfgs = { .quirks = DSI_PHY_7NM_QUIRK_V4_1, }; +const struct msm_dsi_phy_cfg dsi_phy_7nm_6375_cfgs = { + .has_phy_lane = true, + .ops = { + .enable = dsi_7nm_phy_enable, + .disable = dsi_7nm_phy_disable, + .pll_init = dsi_pll_7nm_init, + .save_pll_state = dsi_7nm_pll_save_state, + .restore_pll_state = dsi_7nm_pll_restore_state, + }, + .min_pll_rate = 600000000UL, +#ifdef CONFIG_64BIT + .max_pll_rate = 5000000000ULL, +#else + .max_pll_rate = ULONG_MAX, +#endif + .io_start = { 0x5e94400 }, + .num_dsi_phy = 1, + .quirks = DSI_PHY_7NM_QUIRK_V4_1, +}; + const struct msm_dsi_phy_cfg dsi_phy_7nm_8150_cfgs = { .has_phy_lane = true, .regulator_data = dsi_phy_7nm_36mA_regulators, -- 2.39.0 ^ permalink raw reply related [flat|nested] 7+ messages in thread
* Re: [PATCH 2/2] drm/msm/dsi: Add phy configuration for SM6375 2023-01-16 11:40 ` [PATCH 2/2] drm/msm/dsi: Add phy configuration for SM6375 Konrad Dybcio @ 2023-01-16 11:42 ` Konrad Dybcio 2023-01-16 11:47 ` Dmitry Baryshkov 0 siblings, 1 reply; 7+ messages in thread From: Konrad Dybcio @ 2023-01-16 11:42 UTC (permalink / raw) To: linux-arm-msm, andersson, agross, krzysztof.kozlowski Cc: marijn.suijten, Rob Clark, Abhinav Kumar, Dmitry Baryshkov, Sean Paul, David Airlie, Daniel Vetter, Rob Herring, Krzysztof Kozlowski, Jonathan Marek, dri-devel, freedreno, devicetree, linux-kernel, Konrad Dybcio, Douglas Anderson, sunliming, Neil Armstrong, José Expósito, Rajeev Nandan, Loic Poulain On 16.01.2023 12:40, Konrad Dybcio wrote: > From: Konrad Dybcio <konrad.dybcio@somainline.org> > > SM6375 uses a boring standard 7nm PHY. Add a configuration entry for it. > > Signed-off-by: Konrad Dybcio <konrad.dybcio@somainline.org> > --- Signed-off-by: Konrad Dybcio <konrad.dybcio@linaro.org> Sorry, bit messy revisiting old patches before the email change.. Konrad > Depends on [1] to work properly, but won't hurt for it to land > separately.. > > [1] https://patchwork.kernel.org/project/linux-arm-msm/patch/1642586079-12472-1-git-send-email-loic.poulain@linaro.org/ > > drivers/gpu/drm/msm/dsi/phy/dsi_phy.c | 2 ++ > drivers/gpu/drm/msm/dsi/phy/dsi_phy.h | 1 + > drivers/gpu/drm/msm/dsi/phy/dsi_phy_7nm.c | 20 ++++++++++++++++++++ > 3 files changed, 23 insertions(+) > > diff --git a/drivers/gpu/drm/msm/dsi/phy/dsi_phy.c b/drivers/gpu/drm/msm/dsi/phy/dsi_phy.c > index cbe669fca26d..57445a5dc816 100644 > --- a/drivers/gpu/drm/msm/dsi/phy/dsi_phy.c > +++ b/drivers/gpu/drm/msm/dsi/phy/dsi_phy.c > @@ -569,6 +569,8 @@ static const struct of_device_id dsi_phy_dt_match[] = { > .data = &dsi_phy_7nm_8150_cfgs }, > { .compatible = "qcom,sc7280-dsi-phy-7nm", > .data = &dsi_phy_7nm_7280_cfgs }, > + { .compatible = "qcom,sm6375-dsi-phy-7nm", > + .data = &dsi_phy_7nm_6375_cfgs }, > { .compatible = "qcom,sm8350-dsi-phy-5nm", > .data = &dsi_phy_5nm_8350_cfgs }, > { .compatible = "qcom,sm8450-dsi-phy-5nm", > diff --git a/drivers/gpu/drm/msm/dsi/phy/dsi_phy.h b/drivers/gpu/drm/msm/dsi/phy/dsi_phy.h > index 5f0b1c9b09ef..c849bfd7494e 100644 > --- a/drivers/gpu/drm/msm/dsi/phy/dsi_phy.h > +++ b/drivers/gpu/drm/msm/dsi/phy/dsi_phy.h > @@ -55,6 +55,7 @@ extern const struct msm_dsi_phy_cfg dsi_phy_14nm_8953_cfgs; > extern const struct msm_dsi_phy_cfg dsi_phy_10nm_cfgs; > extern const struct msm_dsi_phy_cfg dsi_phy_10nm_8998_cfgs; > extern const struct msm_dsi_phy_cfg dsi_phy_7nm_cfgs; > +extern const struct msm_dsi_phy_cfg dsi_phy_7nm_6375_cfgs; > extern const struct msm_dsi_phy_cfg dsi_phy_7nm_8150_cfgs; > extern const struct msm_dsi_phy_cfg dsi_phy_7nm_7280_cfgs; > extern const struct msm_dsi_phy_cfg dsi_phy_5nm_8350_cfgs; > diff --git a/drivers/gpu/drm/msm/dsi/phy/dsi_phy_7nm.c b/drivers/gpu/drm/msm/dsi/phy/dsi_phy_7nm.c > index af5c952c6ad0..3b1ed02f644d 100644 > --- a/drivers/gpu/drm/msm/dsi/phy/dsi_phy_7nm.c > +++ b/drivers/gpu/drm/msm/dsi/phy/dsi_phy_7nm.c > @@ -1152,6 +1152,26 @@ const struct msm_dsi_phy_cfg dsi_phy_7nm_cfgs = { > .quirks = DSI_PHY_7NM_QUIRK_V4_1, > }; > > +const struct msm_dsi_phy_cfg dsi_phy_7nm_6375_cfgs = { > + .has_phy_lane = true, > + .ops = { > + .enable = dsi_7nm_phy_enable, > + .disable = dsi_7nm_phy_disable, > + .pll_init = dsi_pll_7nm_init, > + .save_pll_state = dsi_7nm_pll_save_state, > + .restore_pll_state = dsi_7nm_pll_restore_state, > + }, > + .min_pll_rate = 600000000UL, > +#ifdef CONFIG_64BIT > + .max_pll_rate = 5000000000ULL, > +#else > + .max_pll_rate = ULONG_MAX, > +#endif > + .io_start = { 0x5e94400 }, > + .num_dsi_phy = 1, > + .quirks = DSI_PHY_7NM_QUIRK_V4_1, > +}; > + > const struct msm_dsi_phy_cfg dsi_phy_7nm_8150_cfgs = { > .has_phy_lane = true, > .regulator_data = dsi_phy_7nm_36mA_regulators, ^ permalink raw reply [flat|nested] 7+ messages in thread
* Re: [PATCH 2/2] drm/msm/dsi: Add phy configuration for SM6375 2023-01-16 11:42 ` Konrad Dybcio @ 2023-01-16 11:47 ` Dmitry Baryshkov 2023-01-16 11:49 ` Konrad Dybcio 0 siblings, 1 reply; 7+ messages in thread From: Dmitry Baryshkov @ 2023-01-16 11:47 UTC (permalink / raw) To: Konrad Dybcio Cc: linux-arm-msm, andersson, agross, krzysztof.kozlowski, marijn.suijten, Rob Clark, Abhinav Kumar, Sean Paul, David Airlie, Daniel Vetter, Rob Herring, Krzysztof Kozlowski, Jonathan Marek, dri-devel, freedreno, devicetree, linux-kernel, Konrad Dybcio, Douglas Anderson, sunliming, Neil Armstrong, José Expósito, Rajeev Nandan, Loic Poulain On Mon, 16 Jan 2023 at 13:42, Konrad Dybcio <konrad.dybcio@linaro.org> wrote: > > > > On 16.01.2023 12:40, Konrad Dybcio wrote: > > From: Konrad Dybcio <konrad.dybcio@somainline.org> > > > > SM6375 uses a boring standard 7nm PHY. Add a configuration entry for it. > > > > Signed-off-by: Konrad Dybcio <konrad.dybcio@somainline.org> > > --- > Signed-off-by: Konrad Dybcio <konrad.dybcio@linaro.org> > > Sorry, bit messy revisiting old patches before the email change.. > > Konrad > > Depends on [1] to work properly, but won't hurt for it to land > > separately.. > > > > [1] https://patchwork.kernel.org/project/linux-arm-msm/patch/1642586079-12472-1-git-send-email-loic.poulain@linaro.org/ > > > > drivers/gpu/drm/msm/dsi/phy/dsi_phy.c | 2 ++ > > drivers/gpu/drm/msm/dsi/phy/dsi_phy.h | 1 + > > drivers/gpu/drm/msm/dsi/phy/dsi_phy_7nm.c | 20 ++++++++++++++++++++ > > 3 files changed, 23 insertions(+) > > > > diff --git a/drivers/gpu/drm/msm/dsi/phy/dsi_phy.c b/drivers/gpu/drm/msm/dsi/phy/dsi_phy.c > > index cbe669fca26d..57445a5dc816 100644 > > --- a/drivers/gpu/drm/msm/dsi/phy/dsi_phy.c > > +++ b/drivers/gpu/drm/msm/dsi/phy/dsi_phy.c > > @@ -569,6 +569,8 @@ static const struct of_device_id dsi_phy_dt_match[] = { > > .data = &dsi_phy_7nm_8150_cfgs }, > > { .compatible = "qcom,sc7280-dsi-phy-7nm", > > .data = &dsi_phy_7nm_7280_cfgs }, > > + { .compatible = "qcom,sm6375-dsi-phy-7nm", > > + .data = &dsi_phy_7nm_6375_cfgs }, > > { .compatible = "qcom,sm8350-dsi-phy-5nm", > > .data = &dsi_phy_5nm_8350_cfgs }, > > { .compatible = "qcom,sm8450-dsi-phy-5nm", > > diff --git a/drivers/gpu/drm/msm/dsi/phy/dsi_phy.h b/drivers/gpu/drm/msm/dsi/phy/dsi_phy.h > > index 5f0b1c9b09ef..c849bfd7494e 100644 > > --- a/drivers/gpu/drm/msm/dsi/phy/dsi_phy.h > > +++ b/drivers/gpu/drm/msm/dsi/phy/dsi_phy.h > > @@ -55,6 +55,7 @@ extern const struct msm_dsi_phy_cfg dsi_phy_14nm_8953_cfgs; > > extern const struct msm_dsi_phy_cfg dsi_phy_10nm_cfgs; > > extern const struct msm_dsi_phy_cfg dsi_phy_10nm_8998_cfgs; > > extern const struct msm_dsi_phy_cfg dsi_phy_7nm_cfgs; > > +extern const struct msm_dsi_phy_cfg dsi_phy_7nm_6375_cfgs; > > extern const struct msm_dsi_phy_cfg dsi_phy_7nm_8150_cfgs; > > extern const struct msm_dsi_phy_cfg dsi_phy_7nm_7280_cfgs; > > extern const struct msm_dsi_phy_cfg dsi_phy_5nm_8350_cfgs; > > diff --git a/drivers/gpu/drm/msm/dsi/phy/dsi_phy_7nm.c b/drivers/gpu/drm/msm/dsi/phy/dsi_phy_7nm.c > > index af5c952c6ad0..3b1ed02f644d 100644 > > --- a/drivers/gpu/drm/msm/dsi/phy/dsi_phy_7nm.c > > +++ b/drivers/gpu/drm/msm/dsi/phy/dsi_phy_7nm.c > > @@ -1152,6 +1152,26 @@ const struct msm_dsi_phy_cfg dsi_phy_7nm_cfgs = { > > .quirks = DSI_PHY_7NM_QUIRK_V4_1, > > }; > > > > +const struct msm_dsi_phy_cfg dsi_phy_7nm_6375_cfgs = { > > + .has_phy_lane = true, Any regulators here? > > + .ops = { > > + .enable = dsi_7nm_phy_enable, > > + .disable = dsi_7nm_phy_disable, > > + .pll_init = dsi_pll_7nm_init, > > + .save_pll_state = dsi_7nm_pll_save_state, > > + .restore_pll_state = dsi_7nm_pll_restore_state, > > + }, > > + .min_pll_rate = 600000000UL, > > +#ifdef CONFIG_64BIT > > + .max_pll_rate = 5000000000ULL, > > +#else > > + .max_pll_rate = ULONG_MAX, > > +#endif > > + .io_start = { 0x5e94400 }, > > + .num_dsi_phy = 1, > > + .quirks = DSI_PHY_7NM_QUIRK_V4_1, > > +}; > > + > > const struct msm_dsi_phy_cfg dsi_phy_7nm_8150_cfgs = { > > .has_phy_lane = true, > > .regulator_data = dsi_phy_7nm_36mA_regulators, -- With best wishes Dmitry ^ permalink raw reply [flat|nested] 7+ messages in thread
* Re: [PATCH 2/2] drm/msm/dsi: Add phy configuration for SM6375 2023-01-16 11:47 ` Dmitry Baryshkov @ 2023-01-16 11:49 ` Konrad Dybcio 0 siblings, 0 replies; 7+ messages in thread From: Konrad Dybcio @ 2023-01-16 11:49 UTC (permalink / raw) To: Dmitry Baryshkov Cc: linux-arm-msm, andersson, agross, krzysztof.kozlowski, marijn.suijten, Rob Clark, Abhinav Kumar, Sean Paul, David Airlie, Daniel Vetter, Rob Herring, Krzysztof Kozlowski, Jonathan Marek, dri-devel, freedreno, devicetree, linux-kernel, Konrad Dybcio, Douglas Anderson, sunliming, Neil Armstrong, José Expósito, Rajeev Nandan, Loic Poulain On 16.01.2023 12:47, Dmitry Baryshkov wrote: > On Mon, 16 Jan 2023 at 13:42, Konrad Dybcio <konrad.dybcio@linaro.org> wrote: >> >> >> >> On 16.01.2023 12:40, Konrad Dybcio wrote: >>> From: Konrad Dybcio <konrad.dybcio@somainline.org> >>> >>> SM6375 uses a boring standard 7nm PHY. Add a configuration entry for it. >>> >>> Signed-off-by: Konrad Dybcio <konrad.dybcio@somainline.org> >>> --- >> Signed-off-by: Konrad Dybcio <konrad.dybcio@linaro.org> >> >> Sorry, bit messy revisiting old patches before the email change.. >> >> Konrad >>> Depends on [1] to work properly, but won't hurt for it to land >>> separately.. >>> >>> [1] https://patchwork.kernel.org/project/linux-arm-msm/patch/1642586079-12472-1-git-send-email-loic.poulain@linaro.org/ >>> >>> drivers/gpu/drm/msm/dsi/phy/dsi_phy.c | 2 ++ >>> drivers/gpu/drm/msm/dsi/phy/dsi_phy.h | 1 + >>> drivers/gpu/drm/msm/dsi/phy/dsi_phy_7nm.c | 20 ++++++++++++++++++++ >>> 3 files changed, 23 insertions(+) >>> >>> diff --git a/drivers/gpu/drm/msm/dsi/phy/dsi_phy.c b/drivers/gpu/drm/msm/dsi/phy/dsi_phy.c >>> index cbe669fca26d..57445a5dc816 100644 >>> --- a/drivers/gpu/drm/msm/dsi/phy/dsi_phy.c >>> +++ b/drivers/gpu/drm/msm/dsi/phy/dsi_phy.c >>> @@ -569,6 +569,8 @@ static const struct of_device_id dsi_phy_dt_match[] = { >>> .data = &dsi_phy_7nm_8150_cfgs }, >>> { .compatible = "qcom,sc7280-dsi-phy-7nm", >>> .data = &dsi_phy_7nm_7280_cfgs }, >>> + { .compatible = "qcom,sm6375-dsi-phy-7nm", >>> + .data = &dsi_phy_7nm_6375_cfgs }, >>> { .compatible = "qcom,sm8350-dsi-phy-5nm", >>> .data = &dsi_phy_5nm_8350_cfgs }, >>> { .compatible = "qcom,sm8450-dsi-phy-5nm", >>> diff --git a/drivers/gpu/drm/msm/dsi/phy/dsi_phy.h b/drivers/gpu/drm/msm/dsi/phy/dsi_phy.h >>> index 5f0b1c9b09ef..c849bfd7494e 100644 >>> --- a/drivers/gpu/drm/msm/dsi/phy/dsi_phy.h >>> +++ b/drivers/gpu/drm/msm/dsi/phy/dsi_phy.h >>> @@ -55,6 +55,7 @@ extern const struct msm_dsi_phy_cfg dsi_phy_14nm_8953_cfgs; >>> extern const struct msm_dsi_phy_cfg dsi_phy_10nm_cfgs; >>> extern const struct msm_dsi_phy_cfg dsi_phy_10nm_8998_cfgs; >>> extern const struct msm_dsi_phy_cfg dsi_phy_7nm_cfgs; >>> +extern const struct msm_dsi_phy_cfg dsi_phy_7nm_6375_cfgs; >>> extern const struct msm_dsi_phy_cfg dsi_phy_7nm_8150_cfgs; >>> extern const struct msm_dsi_phy_cfg dsi_phy_7nm_7280_cfgs; >>> extern const struct msm_dsi_phy_cfg dsi_phy_5nm_8350_cfgs; >>> diff --git a/drivers/gpu/drm/msm/dsi/phy/dsi_phy_7nm.c b/drivers/gpu/drm/msm/dsi/phy/dsi_phy_7nm.c >>> index af5c952c6ad0..3b1ed02f644d 100644 >>> --- a/drivers/gpu/drm/msm/dsi/phy/dsi_phy_7nm.c >>> +++ b/drivers/gpu/drm/msm/dsi/phy/dsi_phy_7nm.c >>> @@ -1152,6 +1152,26 @@ const struct msm_dsi_phy_cfg dsi_phy_7nm_cfgs = { >>> .quirks = DSI_PHY_7NM_QUIRK_V4_1, >>> }; >>> >>> +const struct msm_dsi_phy_cfg dsi_phy_7nm_6375_cfgs = { >>> + .has_phy_lane = true, > > Any regulators here? Nope, looks like 7nm also deserves a "don't require vdds-supply" patch, gonna send it right away.. Konrad > >>> + .ops = { >>> + .enable = dsi_7nm_phy_enable, >>> + .disable = dsi_7nm_phy_disable, >>> + .pll_init = dsi_pll_7nm_init, >>> + .save_pll_state = dsi_7nm_pll_save_state, >>> + .restore_pll_state = dsi_7nm_pll_restore_state, >>> + }, >>> + .min_pll_rate = 600000000UL, >>> +#ifdef CONFIG_64BIT >>> + .max_pll_rate = 5000000000ULL, >>> +#else >>> + .max_pll_rate = ULONG_MAX, >>> +#endif >>> + .io_start = { 0x5e94400 }, >>> + .num_dsi_phy = 1, >>> + .quirks = DSI_PHY_7NM_QUIRK_V4_1, >>> +}; >>> + >>> const struct msm_dsi_phy_cfg dsi_phy_7nm_8150_cfgs = { >>> .has_phy_lane = true, >>> .regulator_data = dsi_phy_7nm_36mA_regulators, > > > ^ permalink raw reply [flat|nested] 7+ messages in thread
* Re: [PATCH 1/2] dt-bindings: display/msm: Add SM6375 DSI PHY 2023-01-16 11:40 [PATCH 1/2] dt-bindings: display/msm: Add SM6375 DSI PHY Konrad Dybcio 2023-01-16 11:40 ` [PATCH 2/2] drm/msm/dsi: Add phy configuration for SM6375 Konrad Dybcio @ 2023-01-16 19:20 ` Krzysztof Kozlowski 2023-01-18 2:06 ` Dmitry Baryshkov 2 siblings, 0 replies; 7+ messages in thread From: Krzysztof Kozlowski @ 2023-01-16 19:20 UTC (permalink / raw) To: Konrad Dybcio, linux-arm-msm, andersson, agross Cc: marijn.suijten, Rob Clark, Abhinav Kumar, Dmitry Baryshkov, Sean Paul, David Airlie, Daniel Vetter, Rob Herring, Krzysztof Kozlowski, Jonathan Marek, dri-devel, freedreno, devicetree, linux-kernel On 16/01/2023 12:40, Konrad Dybcio wrote: > SM6375 has a single 7nm DSI PHY. Document it. > > Signed-off-by: Konrad Dybcio <konrad.dybcio@linaro.org> > --- Acked-by: Krzysztof Kozlowski <krzysztof.kozlowski@linaro.org> Best regards, Krzysztof ^ permalink raw reply [flat|nested] 7+ messages in thread
* Re: [PATCH 1/2] dt-bindings: display/msm: Add SM6375 DSI PHY 2023-01-16 11:40 [PATCH 1/2] dt-bindings: display/msm: Add SM6375 DSI PHY Konrad Dybcio 2023-01-16 11:40 ` [PATCH 2/2] drm/msm/dsi: Add phy configuration for SM6375 Konrad Dybcio 2023-01-16 19:20 ` [PATCH 1/2] dt-bindings: display/msm: Add SM6375 DSI PHY Krzysztof Kozlowski @ 2023-01-18 2:06 ` Dmitry Baryshkov 2 siblings, 0 replies; 7+ messages in thread From: Dmitry Baryshkov @ 2023-01-18 2:06 UTC (permalink / raw) To: linux-arm-msm, andersson, agross, krzysztof.kozlowski, Konrad Dybcio Cc: marijn.suijten, Rob Clark, Abhinav Kumar, Sean Paul, David Airlie, Daniel Vetter, Rob Herring, Krzysztof Kozlowski, Jonathan Marek, dri-devel, freedreno, devicetree, linux-kernel On Mon, 16 Jan 2023 12:40:58 +0100, Konrad Dybcio wrote: > SM6375 has a single 7nm DSI PHY. Document it. > > Applied, thanks! [1/2] dt-bindings: display/msm: Add SM6375 DSI PHY https://gitlab.freedesktop.org/lumag/msm/-/commit/f8e6d45c8152 [2/2] drm/msm/dsi: Add phy configuration for SM6375 https://gitlab.freedesktop.org/lumag/msm/-/commit/88f46d2ccdf0 Best regards, -- Dmitry Baryshkov <dmitry.baryshkov@linaro.org> ^ permalink raw reply [flat|nested] 7+ messages in thread
end of thread, other threads:[~2023-01-18 2:06 UTC | newest] Thread overview: 7+ messages (download: mbox.gz follow: Atom feed -- links below jump to the message on this page -- 2023-01-16 11:40 [PATCH 1/2] dt-bindings: display/msm: Add SM6375 DSI PHY Konrad Dybcio 2023-01-16 11:40 ` [PATCH 2/2] drm/msm/dsi: Add phy configuration for SM6375 Konrad Dybcio 2023-01-16 11:42 ` Konrad Dybcio 2023-01-16 11:47 ` Dmitry Baryshkov 2023-01-16 11:49 ` Konrad Dybcio 2023-01-16 19:20 ` [PATCH 1/2] dt-bindings: display/msm: Add SM6375 DSI PHY Krzysztof Kozlowski 2023-01-18 2:06 ` Dmitry Baryshkov
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).