* [PATCH v2 0/2] Support for pmic-glink in SM8475
@ 2026-07-31 5:00 Esteban Urrutia via B4 Relay
2026-07-31 5:00 ` [PATCH v2 1/2] dt-bindings: soc: qcom: qcom,pmic-glink: Add compatible string for SM8475 Esteban Urrutia via B4 Relay
` (2 more replies)
0 siblings, 3 replies; 15+ messages in thread
From: Esteban Urrutia via B4 Relay @ 2026-07-31 5:00 UTC (permalink / raw)
To: Bjorn Andersson, Konrad Dybcio, Rob Herring, Krzysztof Kozlowski,
Conor Dooley, Heikki Krogerus, Greg Kroah-Hartman
Cc: linux-arm-msm, devicetree, linux-kernel, linux-usb, phone-devel,
Esteban Urrutia
This series adds a compatible string for SM8475 for supporting
pmic-glink.
This way, confusion is avoided, because SM8475 takes most
(CPU/GPU/reserved-memory/etc.) things from SM8450 and some (PHY/eUSB)
from SM8550.
Instead of using one or the other, add a different compatible string.
Signed-off-by: Esteban Urrutia <esteuwu@proton.me>
---
Changes in v2:
- Apply suggestions from Krzysztof
- Link to v1: https://patch.msgid.link/20260729-sm8475-pmic-glink-v1-0-c2e1967c04de@proton.me
---
Esteban Urrutia (2):
dt-bindings: soc: qcom: qcom,pmic-glink: Add compatible string for SM8475
usb: typec: ucsi: ucsi_glink: Add compatible string for SM8475
Documentation/devicetree/bindings/soc/qcom/qcom,pmic-glink.yaml | 1 +
drivers/usb/typec/ucsi/ucsi_glink.c | 1 +
2 files changed, 2 insertions(+)
---
base-commit: 95d6a9ccef99117115e41e9adb271243bd5e985b
change-id: 20260729-sm8475-pmic-glink-57e56f98d2b3
Best regards,
--
Esteban Urrutia <esteuwu@proton.me>
^ permalink raw reply [flat|nested] 15+ messages in thread* [PATCH v2 1/2] dt-bindings: soc: qcom: qcom,pmic-glink: Add compatible string for SM8475 2026-07-31 5:00 [PATCH v2 0/2] Support for pmic-glink in SM8475 Esteban Urrutia via B4 Relay @ 2026-07-31 5:00 ` Esteban Urrutia via B4 Relay 2026-07-31 9:58 ` Krzysztof Kozlowski 2026-07-31 5:00 ` [PATCH v2 2/2] usb: typec: ucsi: ucsi_glink: " Esteban Urrutia via B4 Relay 2026-07-31 10:00 ` [PATCH v2 0/2] Support for pmic-glink in SM8475 Krzysztof Kozlowski 2 siblings, 1 reply; 15+ messages in thread From: Esteban Urrutia via B4 Relay @ 2026-07-31 5:00 UTC (permalink / raw) To: Bjorn Andersson, Konrad Dybcio, Rob Herring, Krzysztof Kozlowski, Conor Dooley, Heikki Krogerus, Greg Kroah-Hartman Cc: linux-arm-msm, devicetree, linux-kernel, linux-usb, phone-devel, Esteban Urrutia From: Esteban Urrutia <esteuwu@proton.me> Due to a different process design, SM8475 (4 nm) SoC takes things from both SM8450 (4 LPX) and SM8550 (4 nm) SoCs. Add a separate compatible string for this SoC to avoid possible confusions. Signed-off-by: Esteban Urrutia <esteuwu@proton.me> --- Documentation/devicetree/bindings/soc/qcom/qcom,pmic-glink.yaml | 1 + 1 file changed, 1 insertion(+) diff --git a/Documentation/devicetree/bindings/soc/qcom/qcom,pmic-glink.yaml b/Documentation/devicetree/bindings/soc/qcom/qcom,pmic-glink.yaml index 16ad4f5698fc..c80c72411381 100644 --- a/Documentation/devicetree/bindings/soc/qcom/qcom,pmic-glink.yaml +++ b/Documentation/devicetree/bindings/soc/qcom/qcom,pmic-glink.yaml @@ -30,6 +30,7 @@ properties: - qcom,sc8280xp-pmic-glink - qcom,sm8350-pmic-glink - qcom,sm8450-pmic-glink + - qcom,sm8475-pmic-glink - qcom,sm8550-pmic-glink - const: qcom,pmic-glink - items: -- 2.55.0 ^ permalink raw reply [flat|nested] 15+ messages in thread
* Re: [PATCH v2 1/2] dt-bindings: soc: qcom: qcom,pmic-glink: Add compatible string for SM8475 2026-07-31 5:00 ` [PATCH v2 1/2] dt-bindings: soc: qcom: qcom,pmic-glink: Add compatible string for SM8475 Esteban Urrutia via B4 Relay @ 2026-07-31 9:58 ` Krzysztof Kozlowski 2026-07-31 14:44 ` Esteban Urrutia 0 siblings, 1 reply; 15+ messages in thread From: Krzysztof Kozlowski @ 2026-07-31 9:58 UTC (permalink / raw) To: Esteban Urrutia Cc: Bjorn Andersson, Konrad Dybcio, Rob Herring, Krzysztof Kozlowski, Conor Dooley, Heikki Krogerus, Greg Kroah-Hartman, linux-arm-msm, devicetree, linux-kernel, linux-usb, phone-devel On Fri, Jul 31, 2026 at 01:00:08AM -0400, Esteban Urrutia wrote: > Due to a different process design, SM8475 (4 nm) SoC takes things from both > SM8450 (4 LPX) and SM8550 (4 nm) SoCs. What things? This is just unspecific and not useful. And I doubt that it is even "different process design", because how one would know that? > Add a separate compatible string for this SoC to avoid possible confusions. No, explain the hardware compatibility. Add foo bar, which is not compatible with baz because it uses bam bam in different setup (difference in registers, e.g. XYZ and ABC), Best regards, Krzysztof ^ permalink raw reply [flat|nested] 15+ messages in thread
* Re: [PATCH v2 1/2] dt-bindings: soc: qcom: qcom,pmic-glink: Add compatible string for SM8475 2026-07-31 9:58 ` Krzysztof Kozlowski @ 2026-07-31 14:44 ` Esteban Urrutia 2026-07-31 15:30 ` Konrad Dybcio 0 siblings, 1 reply; 15+ messages in thread From: Esteban Urrutia @ 2026-07-31 14:44 UTC (permalink / raw) To: Krzysztof Kozlowski Cc: Bjorn Andersson, Konrad Dybcio, Rob Herring, Krzysztof Kozlowski, Conor Dooley, Heikki Krogerus, Greg Kroah-Hartman, linux-arm-msm, devicetree, linux-kernel, linux-usb, phone-devel On 7/31/26 5:58 AM, Krzysztof Kozlowski wrote: > On Fri, Jul 31, 2026 at 01:00:08AM -0400, Esteban Urrutia wrote: >> Due to a different process design, SM8475 (4 nm) SoC takes things from both >> SM8450 (4 LPX) and SM8550 (4 nm) SoCs. > > What things? This is just unspecific and not useful. And I doubt that it > is even "different process design", because how one would know that? The process design is specified on the corresponding datasheets for these SoCs, which are flying somewhere around the internet. Also [1]. >> Add a separate compatible string for this SoC to avoid possible confusions. > > No, explain the hardware compatibility. > > Add foo bar, which is not compatible with baz because it uses bam bam in > different setup (difference in registers, e.g. XYZ and ABC), How does this commit message based on what was said in [1] sound to you? SM8475 is a respin of SM8450 on a different process node, which probably forced some electrical changes. Document the SM8475 compatible used to describe the PMIC GLINK on this platform. Regards, Esteban [1] https://lore.kernel.org/linux-arm-msm/afcbb668-ab9e-4f97-9014-ecbd5170ab92@linaro.org/ ^ permalink raw reply [flat|nested] 15+ messages in thread
* Re: [PATCH v2 1/2] dt-bindings: soc: qcom: qcom,pmic-glink: Add compatible string for SM8475 2026-07-31 14:44 ` Esteban Urrutia @ 2026-07-31 15:30 ` Konrad Dybcio 2026-07-31 15:54 ` Esteban Urrutia 0 siblings, 1 reply; 15+ messages in thread From: Konrad Dybcio @ 2026-07-31 15:30 UTC (permalink / raw) To: Esteban Urrutia, Krzysztof Kozlowski Cc: Bjorn Andersson, Konrad Dybcio, Rob Herring, Krzysztof Kozlowski, Conor Dooley, Heikki Krogerus, Greg Kroah-Hartman, linux-arm-msm, devicetree, linux-kernel, linux-usb, phone-devel On 7/31/26 4:44 PM, Esteban Urrutia wrote: > On 7/31/26 5:58 AM, Krzysztof Kozlowski wrote: >> On Fri, Jul 31, 2026 at 01:00:08AM -0400, Esteban Urrutia wrote: >>> Due to a different process design, SM8475 (4 nm) SoC takes things from both >>> SM8450 (4 LPX) and SM8550 (4 nm) SoCs. >> >> What things? This is just unspecific and not useful. And I doubt that it >> is even "different process design", because how one would know that? > > > The process design is specified on the corresponding datasheets for > these SoCs, which are flying somewhere around the internet. > Also [1]. > >>> Add a separate compatible string for this SoC to avoid possible confusions. >> >> No, explain the hardware compatibility. >> >> Add foo bar, which is not compatible with baz because it uses bam bam in >> different setup (difference in registers, e.g. XYZ and ABC), > > How does this commit message based on what was said in [1] sound to you? That made more sense because the electrical differences are what made the PHY init sequence changes necessary. Here, Krzysztof is trying to express that the pmic-glink interface found on SM8475 is likely no different than the one found on SM8450 (and SM8350 and so on) Then, since it's the same, it can reuse the same driver match data, so patch 2 is unnecessary, since the driver binds said match data on the fallback "qcom,pmic-glink" compatible Konrad ^ permalink raw reply [flat|nested] 15+ messages in thread
* Re: [PATCH v2 1/2] dt-bindings: soc: qcom: qcom,pmic-glink: Add compatible string for SM8475 2026-07-31 15:30 ` Konrad Dybcio @ 2026-07-31 15:54 ` Esteban Urrutia 2026-07-31 16:28 ` Konrad Dybcio 0 siblings, 1 reply; 15+ messages in thread From: Esteban Urrutia @ 2026-07-31 15:54 UTC (permalink / raw) To: Konrad Dybcio, Krzysztof Kozlowski Cc: Bjorn Andersson, Konrad Dybcio, Rob Herring, Krzysztof Kozlowski, Conor Dooley, Heikki Krogerus, Greg Kroah-Hartman, linux-arm-msm, devicetree, linux-kernel, linux-usb, phone-devel On 7/31/26 11:30 AM, Konrad Dybcio wrote: > On 7/31/26 4:44 PM, Esteban Urrutia wrote: >> On 7/31/26 5:58 AM, Krzysztof Kozlowski wrote: >>> On Fri, Jul 31, 2026 at 01:00:08AM -0400, Esteban Urrutia wrote: >>>> Due to a different process design, SM8475 (4 nm) SoC takes things from both >>>> SM8450 (4 LPX) and SM8550 (4 nm) SoCs. >>> >>> What things? This is just unspecific and not useful. And I doubt that it >>> is even "different process design", because how one would know that? >> >> >> The process design is specified on the corresponding datasheets for >> these SoCs, which are flying somewhere around the internet. >> Also [1]. >> >>>> Add a separate compatible string for this SoC to avoid possible confusions. >>> >>> No, explain the hardware compatibility. >>> >>> Add foo bar, which is not compatible with baz because it uses bam bam in >>> different setup (difference in registers, e.g. XYZ and ABC), >> >> How does this commit message based on what was said in [1] sound to you? > > That made more sense because the electrical differences are what made > the PHY init sequence changes necessary. Here, Krzysztof is trying to > express that the pmic-glink interface found on SM8475 is likely no > different than the one found on SM8450 (and SM8350 and so on) > > Then, since it's the same, it can reuse the same driver match data, > so patch 2 is unnecessary, since the driver binds said match data > on the fallback "qcom,pmic-glink" compatible I don't understand. You're implying that the pmic-glink interface found on SM8350 and SM8450 is not that different but they both have different quirks on ucsi_glink.c. No quirks would be applied on SM8475 if patch 2 is not in place either. Regards, Esteban ^ permalink raw reply [flat|nested] 15+ messages in thread
* Re: [PATCH v2 1/2] dt-bindings: soc: qcom: qcom,pmic-glink: Add compatible string for SM8475 2026-07-31 15:54 ` Esteban Urrutia @ 2026-07-31 16:28 ` Konrad Dybcio 2026-07-31 16:40 ` Esteban Urrutia 0 siblings, 1 reply; 15+ messages in thread From: Konrad Dybcio @ 2026-07-31 16:28 UTC (permalink / raw) To: Esteban Urrutia, Krzysztof Kozlowski Cc: Bjorn Andersson, Konrad Dybcio, Rob Herring, Krzysztof Kozlowski, Conor Dooley, Heikki Krogerus, Greg Kroah-Hartman, linux-arm-msm, devicetree, linux-kernel, linux-usb, phone-devel On 7/31/26 5:54 PM, Esteban Urrutia wrote: > On 7/31/26 11:30 AM, Konrad Dybcio wrote: >> On 7/31/26 4:44 PM, Esteban Urrutia wrote: >>> On 7/31/26 5:58 AM, Krzysztof Kozlowski wrote: >>>> On Fri, Jul 31, 2026 at 01:00:08AM -0400, Esteban Urrutia wrote: >>>>> Due to a different process design, SM8475 (4 nm) SoC takes things from both >>>>> SM8450 (4 LPX) and SM8550 (4 nm) SoCs. >>>> >>>> What things? This is just unspecific and not useful. And I doubt that it >>>> is even "different process design", because how one would know that? >>> >>> >>> The process design is specified on the corresponding datasheets for >>> these SoCs, which are flying somewhere around the internet. >>> Also [1]. >>> >>>>> Add a separate compatible string for this SoC to avoid possible confusions. >>>> >>>> No, explain the hardware compatibility. >>>> >>>> Add foo bar, which is not compatible with baz because it uses bam bam in >>>> different setup (difference in registers, e.g. XYZ and ABC), >>> >>> How does this commit message based on what was said in [1] sound to you? >> >> That made more sense because the electrical differences are what made >> the PHY init sequence changes necessary. Here, Krzysztof is trying to >> express that the pmic-glink interface found on SM8475 is likely no >> different than the one found on SM8450 (and SM8350 and so on) >> >> Then, since it's the same, it can reuse the same driver match data, >> so patch 2 is unnecessary, since the driver binds said match data >> on the fallback "qcom,pmic-glink" compatible > > > I don't understand. You're implying that the pmic-glink interface found > on SM8350 and SM8450 is not that different but they both have different > quirks on ucsi_glink.c. > No quirks would be applied on SM8475 if patch 2 is not in place either. Somehow I confabulated the generic compatible being present in the driver... I was trying to explain that And yes I didn't notice the 8350/8450 difference. But anyway, the resolution will be one of: // 8450 is fully compatible "qcom,sm8475-pmic-glink", "qcom,sm8450-pmic-glink", "qcom,pmic-glink" or // 8475 is special "qcom,sm8475-pmic-glink", "qcom,pmic-glink" depending on what you believe is more correct. I think the first one fits better. Konrad ^ permalink raw reply [flat|nested] 15+ messages in thread
* Re: [PATCH v2 1/2] dt-bindings: soc: qcom: qcom,pmic-glink: Add compatible string for SM8475 2026-07-31 16:28 ` Konrad Dybcio @ 2026-07-31 16:40 ` Esteban Urrutia 2026-07-31 16:42 ` Konrad Dybcio 0 siblings, 1 reply; 15+ messages in thread From: Esteban Urrutia @ 2026-07-31 16:40 UTC (permalink / raw) To: Konrad Dybcio, Krzysztof Kozlowski Cc: Bjorn Andersson, Konrad Dybcio, Rob Herring, Krzysztof Kozlowski, Conor Dooley, Heikki Krogerus, Greg Kroah-Hartman, linux-arm-msm, devicetree, linux-kernel, linux-usb, phone-devel On 7/31/26 12:28 PM, Konrad Dybcio wrote: > Somehow I confabulated the generic compatible being present in the > driver... I was trying to explain that > > And yes I didn't notice the 8350/8450 difference. But anyway, the > resolution will be one of: > > // 8450 is fully compatible > "qcom,sm8475-pmic-glink", > "qcom,sm8450-pmic-glink", > "qcom,pmic-glink" > > or > > // 8475 is special > "qcom,sm8475-pmic-glink", > "qcom,pmic-glink" > > depending on what you believe is more correct. I think the first > one fits better. Yes, I agree the first case fits better, but I believe there is also a possible third case: // 8550 is fully compatible "qcom,sm8475-pmic-glink", "qcom,sm8550-pmic-glink", "qcom,pmic-glink" The reason why I believe this is that I've found SM8475 to include some elements such as eUSB or PHY sequences found in more recent SoCs such as SM8550. I guess that's the case since SM8475 is a respin, but I'm not sure. Regards, Esteban ^ permalink raw reply [flat|nested] 15+ messages in thread
* Re: [PATCH v2 1/2] dt-bindings: soc: qcom: qcom,pmic-glink: Add compatible string for SM8475 2026-07-31 16:40 ` Esteban Urrutia @ 2026-07-31 16:42 ` Konrad Dybcio 2026-07-31 16:56 ` Esteban Urrutia 0 siblings, 1 reply; 15+ messages in thread From: Konrad Dybcio @ 2026-07-31 16:42 UTC (permalink / raw) To: Esteban Urrutia, Krzysztof Kozlowski Cc: Bjorn Andersson, Konrad Dybcio, Rob Herring, Krzysztof Kozlowski, Conor Dooley, Heikki Krogerus, Greg Kroah-Hartman, linux-arm-msm, devicetree, linux-kernel, linux-usb, phone-devel On 7/31/26 6:40 PM, Esteban Urrutia wrote: > On 7/31/26 12:28 PM, Konrad Dybcio wrote: >> Somehow I confabulated the generic compatible being present in the >> driver... I was trying to explain that >> >> And yes I didn't notice the 8350/8450 difference. But anyway, the >> resolution will be one of: >> >> // 8450 is fully compatible >> "qcom,sm8475-pmic-glink", >> "qcom,sm8450-pmic-glink", >> "qcom,pmic-glink" >> >> or >> >> // 8475 is special >> "qcom,sm8475-pmic-glink", >> "qcom,pmic-glink" >> >> depending on what you believe is more correct. I think the first >> one fits better. > > Yes, I agree the first case fits better, but I believe there is also a > possible third case: > > // 8550 is fully compatible > "qcom,sm8475-pmic-glink", > "qcom,sm8550-pmic-glink", > "qcom,pmic-glink" > > The reason why I believe this is that I've found SM8475 to include some > elements such as eUSB or PHY sequences found in more recent SoCs such as > SM8550. > I guess that's the case since SM8475 is a respin, but I'm not sure. pmic-glink provides three main services: - UCSI (Type-C) - altmode pin assignment notifications (also Type-C) - battmgr (battery/power supply) In that scope, I believe it's no different to 8450 Konrad ^ permalink raw reply [flat|nested] 15+ messages in thread
* Re: [PATCH v2 1/2] dt-bindings: soc: qcom: qcom,pmic-glink: Add compatible string for SM8475 2026-07-31 16:42 ` Konrad Dybcio @ 2026-07-31 16:56 ` Esteban Urrutia 0 siblings, 0 replies; 15+ messages in thread From: Esteban Urrutia @ 2026-07-31 16:56 UTC (permalink / raw) To: Konrad Dybcio, Krzysztof Kozlowski Cc: Bjorn Andersson, Konrad Dybcio, Rob Herring, Krzysztof Kozlowski, Conor Dooley, Heikki Krogerus, Greg Kroah-Hartman, linux-arm-msm, devicetree, linux-kernel, linux-usb, phone-devel On 7/31/26 12:42 PM, Konrad Dybcio wrote: > pmic-glink provides three main services: > > - UCSI (Type-C) > - altmode pin assignment notifications (also Type-C) > - battmgr (battery/power supply) > > In that scope, I believe it's no different to 8450 Alright then. I guess I'll just go for the first resolution in v3. Thanks for your input, Konrad. Regards, Esteban ^ permalink raw reply [flat|nested] 15+ messages in thread
* [PATCH v2 2/2] usb: typec: ucsi: ucsi_glink: Add compatible string for SM8475 2026-07-31 5:00 [PATCH v2 0/2] Support for pmic-glink in SM8475 Esteban Urrutia via B4 Relay 2026-07-31 5:00 ` [PATCH v2 1/2] dt-bindings: soc: qcom: qcom,pmic-glink: Add compatible string for SM8475 Esteban Urrutia via B4 Relay @ 2026-07-31 5:00 ` Esteban Urrutia via B4 Relay 2026-07-31 5:40 ` Esteban Urrutia 2026-07-31 9:59 ` Krzysztof Kozlowski 2026-07-31 10:00 ` [PATCH v2 0/2] Support for pmic-glink in SM8475 Krzysztof Kozlowski 2 siblings, 2 replies; 15+ messages in thread From: Esteban Urrutia via B4 Relay @ 2026-07-31 5:00 UTC (permalink / raw) To: Bjorn Andersson, Konrad Dybcio, Rob Herring, Krzysztof Kozlowski, Conor Dooley, Heikki Krogerus, Greg Kroah-Hartman Cc: linux-arm-msm, devicetree, linux-kernel, linux-usb, phone-devel, Esteban Urrutia From: Esteban Urrutia <esteuwu@proton.me> Add compatible string for the PMIC GLINK service running on the coprocessor found in the SM8475 SoC. Signed-off-by: Esteban Urrutia <esteuwu@proton.me> --- drivers/usb/typec/ucsi/ucsi_glink.c | 1 + 1 file changed, 1 insertion(+) diff --git a/drivers/usb/typec/ucsi/ucsi_glink.c b/drivers/usb/typec/ucsi/ucsi_glink.c index 12e07b9fe622..78a0ea349ed4 100644 --- a/drivers/usb/typec/ucsi/ucsi_glink.c +++ b/drivers/usb/typec/ucsi/ucsi_glink.c @@ -381,6 +381,7 @@ static const struct of_device_id pmic_glink_ucsi_of_quirks[] = { { .compatible = "qcom,sc8280xp-pmic-glink", .data = &quirk_sc8280xp, }, { .compatible = "qcom,sm8350-pmic-glink", .data = &quirk_sc8180x, }, { .compatible = "qcom,sm8450-pmic-glink", .data = &quirk_sm8450, }, + { .compatible = "qcom,sm8475-pmic-glink", .data = &quirk_sm8450, }, { .compatible = "qcom,sm8550-pmic-glink", .data = &quirk_sm8450, }, { .compatible = "qcom,x1e80100-pmic-glink", .data = &quirk_x1e80100, }, {} -- 2.55.0 ^ permalink raw reply [flat|nested] 15+ messages in thread
* Re: [PATCH v2 2/2] usb: typec: ucsi: ucsi_glink: Add compatible string for SM8475 2026-07-31 5:00 ` [PATCH v2 2/2] usb: typec: ucsi: ucsi_glink: " Esteban Urrutia via B4 Relay @ 2026-07-31 5:40 ` Esteban Urrutia 2026-07-31 9:59 ` Krzysztof Kozlowski 1 sibling, 0 replies; 15+ messages in thread From: Esteban Urrutia @ 2026-07-31 5:40 UTC (permalink / raw) To: Bjorn Andersson, Konrad Dybcio, Rob Herring, Krzysztof Kozlowski, Conor Dooley, Heikki Krogerus, Greg Kroah-Hartman Cc: linux-arm-msm, devicetree, linux-kernel, linux-usb, phone-devel On 7/31/26 1:00 AM, Esteban Urrutia via B4 Relay wrote: > Add compatible string for the PMIC GLINK service running on the coprocessor > found in the SM8475 SoC. Just realized I forgot to change the commit title... Will fix in v3. Regards, Esteban ^ permalink raw reply [flat|nested] 15+ messages in thread
* Re: [PATCH v2 2/2] usb: typec: ucsi: ucsi_glink: Add compatible string for SM8475 2026-07-31 5:00 ` [PATCH v2 2/2] usb: typec: ucsi: ucsi_glink: " Esteban Urrutia via B4 Relay 2026-07-31 5:40 ` Esteban Urrutia @ 2026-07-31 9:59 ` Krzysztof Kozlowski 2026-07-31 14:48 ` Esteban Urrutia 1 sibling, 1 reply; 15+ messages in thread From: Krzysztof Kozlowski @ 2026-07-31 9:59 UTC (permalink / raw) To: Esteban Urrutia Cc: Bjorn Andersson, Konrad Dybcio, Rob Herring, Krzysztof Kozlowski, Conor Dooley, Heikki Krogerus, Greg Kroah-Hartman, linux-arm-msm, devicetree, linux-kernel, linux-usb, phone-devel On Fri, Jul 31, 2026 at 01:00:09AM -0400, Esteban Urrutia wrote: > Add compatible string for the PMIC GLINK service running on the coprocessor > found in the SM8475 SoC. > > Signed-off-by: Esteban Urrutia <esteuwu@proton.me> > --- > drivers/usb/typec/ucsi/ucsi_glink.c | 1 + > 1 file changed, 1 insertion(+) > > diff --git a/drivers/usb/typec/ucsi/ucsi_glink.c b/drivers/usb/typec/ucsi/ucsi_glink.c > index 12e07b9fe622..78a0ea349ed4 100644 > --- a/drivers/usb/typec/ucsi/ucsi_glink.c > +++ b/drivers/usb/typec/ucsi/ucsi_glink.c > @@ -381,6 +381,7 @@ static const struct of_device_id pmic_glink_ucsi_of_quirks[] = { > { .compatible = "qcom,sc8280xp-pmic-glink", .data = &quirk_sc8280xp, }, > { .compatible = "qcom,sm8350-pmic-glink", .data = &quirk_sc8180x, }, > { .compatible = "qcom,sm8450-pmic-glink", .data = &quirk_sm8450, }, > + { .compatible = "qcom,sm8475-pmic-glink", .data = &quirk_sm8450, }, Really, you just wrote IT IS DIFFERENT in the bindings, so how can it be the same data? Best regards, Krzysztof ^ permalink raw reply [flat|nested] 15+ messages in thread
* Re: [PATCH v2 2/2] usb: typec: ucsi: ucsi_glink: Add compatible string for SM8475 2026-07-31 9:59 ` Krzysztof Kozlowski @ 2026-07-31 14:48 ` Esteban Urrutia 0 siblings, 0 replies; 15+ messages in thread From: Esteban Urrutia @ 2026-07-31 14:48 UTC (permalink / raw) To: Krzysztof Kozlowski Cc: Bjorn Andersson, Konrad Dybcio, Rob Herring, Krzysztof Kozlowski, Conor Dooley, Heikki Krogerus, Greg Kroah-Hartman, linux-arm-msm, devicetree, linux-kernel, linux-usb, phone-devel On 7/31/26 5:59 AM, Krzysztof Kozlowski wrote: > Really, you just wrote IT IS DIFFERENT in the bindings, so how can it be the same data? No. I said "different process design", not that they were different. Other SoCs also use older data despite being newer, such as QCM6490 which uses SC8280XP data. Regards, Esteban ^ permalink raw reply [flat|nested] 15+ messages in thread
* Re: [PATCH v2 0/2] Support for pmic-glink in SM8475 2026-07-31 5:00 [PATCH v2 0/2] Support for pmic-glink in SM8475 Esteban Urrutia via B4 Relay 2026-07-31 5:00 ` [PATCH v2 1/2] dt-bindings: soc: qcom: qcom,pmic-glink: Add compatible string for SM8475 Esteban Urrutia via B4 Relay 2026-07-31 5:00 ` [PATCH v2 2/2] usb: typec: ucsi: ucsi_glink: " Esteban Urrutia via B4 Relay @ 2026-07-31 10:00 ` Krzysztof Kozlowski 2 siblings, 0 replies; 15+ messages in thread From: Krzysztof Kozlowski @ 2026-07-31 10:00 UTC (permalink / raw) To: esteuwu, Bjorn Andersson, Konrad Dybcio, Rob Herring, Krzysztof Kozlowski, Conor Dooley, Heikki Krogerus, Greg Kroah-Hartman Cc: linux-arm-msm, devicetree, linux-kernel, linux-usb, phone-devel On 31/07/2026 07:00, Esteban Urrutia via B4 Relay wrote: > This series adds a compatible string for SM8475 for supporting > pmic-glink. > This way, confusion is avoided, because SM8475 takes most > (CPU/GPU/reserved-memory/etc.) things from SM8450 and some (PHY/eUSB) > from SM8550. > Instead of using one or the other, add a different compatible string. > > Signed-off-by: Esteban Urrutia <esteuwu@proton.me> > --- > Changes in v2: > - Apply suggestions from Krzysztof Which ones? I did not see any improvements. This has to be specific. Best regards, Krzysztof ^ permalink raw reply [flat|nested] 15+ messages in thread
end of thread, other threads:[~2026-07-31 16:56 UTC | newest] Thread overview: 15+ messages (download: mbox.gz / follow: Atom feed) -- links below jump to the message on this page -- 2026-07-31 5:00 [PATCH v2 0/2] Support for pmic-glink in SM8475 Esteban Urrutia via B4 Relay 2026-07-31 5:00 ` [PATCH v2 1/2] dt-bindings: soc: qcom: qcom,pmic-glink: Add compatible string for SM8475 Esteban Urrutia via B4 Relay 2026-07-31 9:58 ` Krzysztof Kozlowski 2026-07-31 14:44 ` Esteban Urrutia 2026-07-31 15:30 ` Konrad Dybcio 2026-07-31 15:54 ` Esteban Urrutia 2026-07-31 16:28 ` Konrad Dybcio 2026-07-31 16:40 ` Esteban Urrutia 2026-07-31 16:42 ` Konrad Dybcio 2026-07-31 16:56 ` Esteban Urrutia 2026-07-31 5:00 ` [PATCH v2 2/2] usb: typec: ucsi: ucsi_glink: " Esteban Urrutia via B4 Relay 2026-07-31 5:40 ` Esteban Urrutia 2026-07-31 9:59 ` Krzysztof Kozlowski 2026-07-31 14:48 ` Esteban Urrutia 2026-07-31 10:00 ` [PATCH v2 0/2] Support for pmic-glink in SM8475 Krzysztof Kozlowski
This is a public inbox, see mirroring instructions for how to clone and mirror all data and code used for this inbox
all inboxes | Powered by JetHome®