* [PATCH 1/2] dt-bindings: arm: qcom,ids: Add IDs for IPQ8174 family
@ 2023-09-01 18:10 Robert Marko
2023-09-01 18:10 ` [PATCH 2/2] soc: qcom: socinfo: " Robert Marko
` (3 more replies)
0 siblings, 4 replies; 8+ messages in thread
From: Robert Marko @ 2023-09-01 18:10 UTC (permalink / raw)
To: agross, andersson, konrad.dybcio, robh+dt, krzysztof.kozlowski+dt,
conor+dt, linux-arm-msm, linux-kernel, devicetree
Cc: Robert Marko
IPQ8174 (Oak) family is part of the IPQ8074 family, but the ID-s for it
are missing so lets add them.
Signed-off-by: Robert Marko <robimarko@gmail.com>
---
include/dt-bindings/arm/qcom,ids.h | 3 +++
1 file changed, 3 insertions(+)
diff --git a/include/dt-bindings/arm/qcom,ids.h b/include/dt-bindings/arm/qcom,ids.h
index be12e1dd1f38..d2b84a308fde 100644
--- a/include/dt-bindings/arm/qcom,ids.h
+++ b/include/dt-bindings/arm/qcom,ids.h
@@ -203,6 +203,9 @@
#define QCOM_ID_SM6125 394
#define QCOM_ID_IPQ8070A 395
#define QCOM_ID_IPQ8071A 396
+#define QCOM_ID_IPQ8172 397
+#define QCOM_ID_IPQ8173 398
+#define QCOM_ID_IPQ8174 399
#define QCOM_ID_IPQ6018 402
#define QCOM_ID_IPQ6028 403
#define QCOM_ID_SDM429W 416
--
2.41.0
^ permalink raw reply related [flat|nested] 8+ messages in thread
* [PATCH 2/2] soc: qcom: socinfo: Add IDs for IPQ8174 family
2023-09-01 18:10 [PATCH 1/2] dt-bindings: arm: qcom,ids: Add IDs for IPQ8174 family Robert Marko
@ 2023-09-01 18:10 ` Robert Marko
2023-09-02 14:43 ` Kathiravan T
2023-09-02 10:41 ` [PATCH 1/2] dt-bindings: arm: qcom,ids: " Conor Dooley
` (2 subsequent siblings)
3 siblings, 1 reply; 8+ messages in thread
From: Robert Marko @ 2023-09-01 18:10 UTC (permalink / raw)
To: agross, andersson, konrad.dybcio, robh+dt, krzysztof.kozlowski+dt,
conor+dt, linux-arm-msm, linux-kernel, devicetree
Cc: Robert Marko
IPQ8174 (Oak) family is part of the IPQ8074 family, but the ID-s for it
are missing so lets add them.
Signed-off-by: Robert Marko <robimarko@gmail.com>
---
drivers/soc/qcom/socinfo.c | 3 +++
1 file changed, 3 insertions(+)
diff --git a/drivers/soc/qcom/socinfo.c b/drivers/soc/qcom/socinfo.c
index 497cfb720fcb..345f0b002eb5 100644
--- a/drivers/soc/qcom/socinfo.c
+++ b/drivers/soc/qcom/socinfo.c
@@ -359,6 +359,9 @@ static const struct soc_id soc_id[] = {
{ qcom_board_id(SM6125) },
{ qcom_board_id(IPQ8070A) },
{ qcom_board_id(IPQ8071A) },
+ { qcom_board_id(IPQ8172) },
+ { qcom_board_id(IPQ8173) },
+ { qcom_board_id(IPQ8174) },
{ qcom_board_id(IPQ6018) },
{ qcom_board_id(IPQ6028) },
{ qcom_board_id(SDM429W) },
--
2.41.0
^ permalink raw reply related [flat|nested] 8+ messages in thread
* Re: [PATCH 1/2] dt-bindings: arm: qcom,ids: Add IDs for IPQ8174 family
2023-09-01 18:10 [PATCH 1/2] dt-bindings: arm: qcom,ids: Add IDs for IPQ8174 family Robert Marko
2023-09-01 18:10 ` [PATCH 2/2] soc: qcom: socinfo: " Robert Marko
@ 2023-09-02 10:41 ` Conor Dooley
2023-09-02 14:42 ` Kathiravan T
2023-09-14 16:04 ` (subset) " Bjorn Andersson
3 siblings, 0 replies; 8+ messages in thread
From: Conor Dooley @ 2023-09-02 10:41 UTC (permalink / raw)
To: Robert Marko
Cc: agross, andersson, konrad.dybcio, robh+dt, krzysztof.kozlowski+dt,
conor+dt, linux-arm-msm, linux-kernel, devicetree
[-- Attachment #1: Type: text/plain, Size: 947 bytes --]
On Fri, Sep 01, 2023 at 08:10:04PM +0200, Robert Marko wrote:
> IPQ8174 (Oak) family is part of the IPQ8074 family, but the ID-s for it
> are missing so lets add them.
>
> Signed-off-by: Robert Marko <robimarko@gmail.com>
Acked-by: Conor Dooley <conor.dooley@microchip.com>
> ---
> include/dt-bindings/arm/qcom,ids.h | 3 +++
> 1 file changed, 3 insertions(+)
>
> diff --git a/include/dt-bindings/arm/qcom,ids.h b/include/dt-bindings/arm/qcom,ids.h
> index be12e1dd1f38..d2b84a308fde 100644
> --- a/include/dt-bindings/arm/qcom,ids.h
> +++ b/include/dt-bindings/arm/qcom,ids.h
> @@ -203,6 +203,9 @@
> #define QCOM_ID_SM6125 394
> #define QCOM_ID_IPQ8070A 395
> #define QCOM_ID_IPQ8071A 396
> +#define QCOM_ID_IPQ8172 397
> +#define QCOM_ID_IPQ8173 398
> +#define QCOM_ID_IPQ8174 399
> #define QCOM_ID_IPQ6018 402
> #define QCOM_ID_IPQ6028 403
> #define QCOM_ID_SDM429W 416
> --
> 2.41.0
>
[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 228 bytes --]
^ permalink raw reply [flat|nested] 8+ messages in thread
* Re: [PATCH 1/2] dt-bindings: arm: qcom,ids: Add IDs for IPQ8174 family
2023-09-01 18:10 [PATCH 1/2] dt-bindings: arm: qcom,ids: Add IDs for IPQ8174 family Robert Marko
2023-09-01 18:10 ` [PATCH 2/2] soc: qcom: socinfo: " Robert Marko
2023-09-02 10:41 ` [PATCH 1/2] dt-bindings: arm: qcom,ids: " Conor Dooley
@ 2023-09-02 14:42 ` Kathiravan T
2023-09-02 15:35 ` Dmitry Baryshkov
2023-09-14 16:04 ` (subset) " Bjorn Andersson
3 siblings, 1 reply; 8+ messages in thread
From: Kathiravan T @ 2023-09-02 14:42 UTC (permalink / raw)
To: Robert Marko, agross, andersson, konrad.dybcio, robh+dt,
krzysztof.kozlowski+dt, conor+dt, linux-arm-msm, linux-kernel,
devicetree
On 9/1/2023 11:40 PM, Robert Marko wrote:
> IPQ8174 (Oak) family is part of the IPQ8074 family, but the ID-s for it
> are missing so lets add them.
>
> Signed-off-by: Robert Marko <robimarko@gmail.com>
> ---
> include/dt-bindings/arm/qcom,ids.h | 3 +++
> 1 file changed, 3 insertions(+)
Reviewed-by: Kathiravan T <quic_kathirav@quicinc.com>
>
> diff --git a/include/dt-bindings/arm/qcom,ids.h b/include/dt-bindings/arm/qcom,ids.h
> index be12e1dd1f38..d2b84a308fde 100644
> --- a/include/dt-bindings/arm/qcom,ids.h
> +++ b/include/dt-bindings/arm/qcom,ids.h
> @@ -203,6 +203,9 @@
> #define QCOM_ID_SM6125 394
> #define QCOM_ID_IPQ8070A 395
> #define QCOM_ID_IPQ8071A 396
> +#define QCOM_ID_IPQ8172 397
> +#define QCOM_ID_IPQ8173 398
> +#define QCOM_ID_IPQ8174 399
> #define QCOM_ID_IPQ6018 402
> #define QCOM_ID_IPQ6028 403
> #define QCOM_ID_SDM429W 416
^ permalink raw reply [flat|nested] 8+ messages in thread
* Re: [PATCH 2/2] soc: qcom: socinfo: Add IDs for IPQ8174 family
2023-09-01 18:10 ` [PATCH 2/2] soc: qcom: socinfo: " Robert Marko
@ 2023-09-02 14:43 ` Kathiravan T
0 siblings, 0 replies; 8+ messages in thread
From: Kathiravan T @ 2023-09-02 14:43 UTC (permalink / raw)
To: Robert Marko, agross, andersson, konrad.dybcio, robh+dt,
krzysztof.kozlowski+dt, conor+dt, linux-arm-msm, linux-kernel,
devicetree
On 9/1/2023 11:40 PM, Robert Marko wrote:
> IPQ8174 (Oak) family is part of the IPQ8074 family, but the ID-s for it
> are missing so lets add them.
>
> Signed-off-by: Robert Marko <robimarko@gmail.com>
> ---
> drivers/soc/qcom/socinfo.c | 3 +++
> 1 file changed, 3 insertions(+)
Reviewed-by: Kathiravan T <quic_kathirav@quicinc.com>
>
> diff --git a/drivers/soc/qcom/socinfo.c b/drivers/soc/qcom/socinfo.c
> index 497cfb720fcb..345f0b002eb5 100644
> --- a/drivers/soc/qcom/socinfo.c
> +++ b/drivers/soc/qcom/socinfo.c
> @@ -359,6 +359,9 @@ static const struct soc_id soc_id[] = {
> { qcom_board_id(SM6125) },
> { qcom_board_id(IPQ8070A) },
> { qcom_board_id(IPQ8071A) },
> + { qcom_board_id(IPQ8172) },
> + { qcom_board_id(IPQ8173) },
> + { qcom_board_id(IPQ8174) },
> { qcom_board_id(IPQ6018) },
> { qcom_board_id(IPQ6028) },
> { qcom_board_id(SDM429W) },
^ permalink raw reply [flat|nested] 8+ messages in thread
* Re: [PATCH 1/2] dt-bindings: arm: qcom,ids: Add IDs for IPQ8174 family
2023-09-02 14:42 ` Kathiravan T
@ 2023-09-02 15:35 ` Dmitry Baryshkov
2023-09-04 3:42 ` Kathiravan T
0 siblings, 1 reply; 8+ messages in thread
From: Dmitry Baryshkov @ 2023-09-02 15:35 UTC (permalink / raw)
To: Kathiravan T
Cc: Robert Marko, agross, andersson, konrad.dybcio, robh+dt,
krzysztof.kozlowski+dt, conor+dt, linux-arm-msm, linux-kernel,
devicetree
On Sat, 2 Sept 2023 at 17:43, Kathiravan T <quic_kathirav@quicinc.com> wrote:
>
>
> On 9/1/2023 11:40 PM, Robert Marko wrote:
> > IPQ8174 (Oak) family is part of the IPQ8074 family, but the ID-s for it
> > are missing so lets add them.
> >
> > Signed-off-by: Robert Marko <robimarko@gmail.com>
> > ---
> > include/dt-bindings/arm/qcom,ids.h | 3 +++
> > 1 file changed, 3 insertions(+)
>
>
> Reviewed-by: Kathiravan T <quic_kathirav@quicinc.com>
Is there a chance of you using the full family name in your git tags?
> > diff --git a/include/dt-bindings/arm/qcom,ids.h b/include/dt-bindings/arm/qcom,ids.h
> > index be12e1dd1f38..d2b84a308fde 100644
> > --- a/include/dt-bindings/arm/qcom,ids.h
> > +++ b/include/dt-bindings/arm/qcom,ids.h
> > @@ -203,6 +203,9 @@
> > #define QCOM_ID_SM6125 394
> > #define QCOM_ID_IPQ8070A 395
> > #define QCOM_ID_IPQ8071A 396
> > +#define QCOM_ID_IPQ8172 397
> > +#define QCOM_ID_IPQ8173 398
> > +#define QCOM_ID_IPQ8174 399
> > #define QCOM_ID_IPQ6018 402
> > #define QCOM_ID_IPQ6028 403
> > #define QCOM_ID_SDM429W 416
--
With best wishes
Dmitry
^ permalink raw reply [flat|nested] 8+ messages in thread
* Re: [PATCH 1/2] dt-bindings: arm: qcom,ids: Add IDs for IPQ8174 family
2023-09-02 15:35 ` Dmitry Baryshkov
@ 2023-09-04 3:42 ` Kathiravan T
0 siblings, 0 replies; 8+ messages in thread
From: Kathiravan T @ 2023-09-04 3:42 UTC (permalink / raw)
To: Dmitry Baryshkov
Cc: Robert Marko, agross, andersson, konrad.dybcio, robh+dt,
krzysztof.kozlowski+dt, conor+dt, linux-arm-msm, linux-kernel,
devicetree
On 9/2/2023 9:05 PM, Dmitry Baryshkov wrote:
> On Sat, 2 Sept 2023 at 17:43, Kathiravan T <quic_kathirav@quicinc.com> wrote:
>>
>> On 9/1/2023 11:40 PM, Robert Marko wrote:
>>> IPQ8174 (Oak) family is part of the IPQ8074 family, but the ID-s for it
>>> are missing so lets add them.
>>>
>>> Signed-off-by: Robert Marko <robimarko@gmail.com>
>>> ---
>>> include/dt-bindings/arm/qcom,ids.h | 3 +++
>>> 1 file changed, 3 insertions(+)
>>
>> Reviewed-by: Kathiravan T <quic_kathirav@quicinc.com>
> Is there a chance of you using the full family name in your git tags?
Sure, Going forward will use the full family name..
Thanks,
>
>>> diff --git a/include/dt-bindings/arm/qcom,ids.h b/include/dt-bindings/arm/qcom,ids.h
>>> index be12e1dd1f38..d2b84a308fde 100644
>>> --- a/include/dt-bindings/arm/qcom,ids.h
>>> +++ b/include/dt-bindings/arm/qcom,ids.h
>>> @@ -203,6 +203,9 @@
>>> #define QCOM_ID_SM6125 394
>>> #define QCOM_ID_IPQ8070A 395
>>> #define QCOM_ID_IPQ8071A 396
>>> +#define QCOM_ID_IPQ8172 397
>>> +#define QCOM_ID_IPQ8173 398
>>> +#define QCOM_ID_IPQ8174 399
>>> #define QCOM_ID_IPQ6018 402
>>> #define QCOM_ID_IPQ6028 403
>>> #define QCOM_ID_SDM429W 416
>
>
^ permalink raw reply [flat|nested] 8+ messages in thread
* Re: (subset) [PATCH 1/2] dt-bindings: arm: qcom,ids: Add IDs for IPQ8174 family
2023-09-01 18:10 [PATCH 1/2] dt-bindings: arm: qcom,ids: Add IDs for IPQ8174 family Robert Marko
` (2 preceding siblings ...)
2023-09-02 14:42 ` Kathiravan T
@ 2023-09-14 16:04 ` Bjorn Andersson
3 siblings, 0 replies; 8+ messages in thread
From: Bjorn Andersson @ 2023-09-14 16:04 UTC (permalink / raw)
To: agross, konrad.dybcio, robh+dt, krzysztof.kozlowski+dt, conor+dt,
linux-arm-msm, linux-kernel, devicetree, Robert Marko
On Fri, 01 Sep 2023 20:10:04 +0200, Robert Marko wrote:
> IPQ8174 (Oak) family is part of the IPQ8074 family, but the ID-s for it
> are missing so lets add them.
>
>
Applied, thanks!
[1/2] dt-bindings: arm: qcom,ids: Add IDs for IPQ8174 family
commit: b8c889bef9797a58b8b5aad23875cc4d04b3efd3
[2/2] soc: qcom: socinfo: Add IDs for IPQ8174 family
commit: e9104e73d4fc8a023608be9c18ee1b897d0ccb14
Best regards,
--
Bjorn Andersson <andersson@kernel.org>
^ permalink raw reply [flat|nested] 8+ messages in thread
end of thread, other threads:[~2023-09-14 16:00 UTC | newest]
Thread overview: 8+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2023-09-01 18:10 [PATCH 1/2] dt-bindings: arm: qcom,ids: Add IDs for IPQ8174 family Robert Marko
2023-09-01 18:10 ` [PATCH 2/2] soc: qcom: socinfo: " Robert Marko
2023-09-02 14:43 ` Kathiravan T
2023-09-02 10:41 ` [PATCH 1/2] dt-bindings: arm: qcom,ids: " Conor Dooley
2023-09-02 14:42 ` Kathiravan T
2023-09-02 15:35 ` Dmitry Baryshkov
2023-09-04 3:42 ` Kathiravan T
2023-09-14 16:04 ` (subset) " Bjorn Andersson
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).