All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH 0/3] Add support for the IPQ5321 SoC
@ 2024-02-28 14:51 Kathiravan Thirumoorthy
  2024-02-28 14:51 ` [PATCH 1/3] dt-bindings: arm: qcom,ids: Add SoC ID for IPQ5321 Kathiravan Thirumoorthy
                   ` (3 more replies)
  0 siblings, 4 replies; 14+ messages in thread
From: Kathiravan Thirumoorthy @ 2024-02-28 14:51 UTC (permalink / raw)
  To: Bjorn Andersson, Konrad Dybcio, Rob Herring, Krzysztof Kozlowski,
	Conor Dooley, Ilia Lin, Rafael J. Wysocki, Viresh Kumar
  Cc: linux-arm-msm, devicetree, linux-kernel, linux-pm,
	Kathiravan Thirumoorthy

IPQ5321 SoC belong to IPQ5332 family. Add the SoC ID and the cpufreq
support. Maximum cpufreq for IPQ5321 is 1.1GHZ, which is determined
based on the eFuse.

Signed-off-by: Kathiravan Thirumoorthy <quic_kathirav@quicinc.com>
---
Kathiravan Thirumoorthy (3):
      dt-bindings: arm: qcom,ids: Add SoC ID for IPQ5321
      soc: qcom: socinfo: Add SoC ID for IPQ5321
      cpufreq: qcom-nvmem: add support for IPQ5321

 drivers/cpufreq/qcom-cpufreq-nvmem.c | 1 +
 drivers/soc/qcom/socinfo.c           | 1 +
 include/dt-bindings/arm/qcom,ids.h   | 1 +
 3 files changed, 3 insertions(+)
---
base-commit: 20af1ca418d2c0b11bc2a1fe8c0c88f67bcc2a7e
change-id: 20240228-ipq5321-sku-support-bd07056d5e01

Best regards,
-- 
Kathiravan Thirumoorthy <quic_kathirav@quicinc.com>


^ permalink raw reply	[flat|nested] 14+ messages in thread

* [PATCH 1/3] dt-bindings: arm: qcom,ids: Add SoC ID for IPQ5321
  2024-02-28 14:51 [PATCH 0/3] Add support for the IPQ5321 SoC Kathiravan Thirumoorthy
@ 2024-02-28 14:51 ` Kathiravan Thirumoorthy
  2024-02-29 14:45   ` Krzysztof Kozlowski
  2024-02-28 14:51 ` [PATCH 2/3] soc: qcom: socinfo: " Kathiravan Thirumoorthy
                   ` (2 subsequent siblings)
  3 siblings, 1 reply; 14+ messages in thread
From: Kathiravan Thirumoorthy @ 2024-02-28 14:51 UTC (permalink / raw)
  To: Bjorn Andersson, Konrad Dybcio, Rob Herring, Krzysztof Kozlowski,
	Conor Dooley, Ilia Lin, Rafael J. Wysocki, Viresh Kumar
  Cc: linux-arm-msm, devicetree, linux-kernel, linux-pm,
	Kathiravan Thirumoorthy

Add the ID for the Qualcomm IPQ5321 SoC.

Signed-off-by: Kathiravan Thirumoorthy <quic_kathirav@quicinc.com>
---
 include/dt-bindings/arm/qcom,ids.h | 1 +
 1 file changed, 1 insertion(+)

diff --git a/include/dt-bindings/arm/qcom,ids.h b/include/dt-bindings/arm/qcom,ids.h
index 19ac7b36f608..4563b1fb7a3b 100644
--- a/include/dt-bindings/arm/qcom,ids.h
+++ b/include/dt-bindings/arm/qcom,ids.h
@@ -271,6 +271,7 @@
 #define QCOM_ID_QCS8550			603
 #define QCOM_ID_QCM8550			604
 #define QCOM_ID_IPQ5300			624
+#define QCOM_ID_IPQ5321			650
 
 /*
  * The board type and revision information, used by Qualcomm bootloaders and

-- 
2.34.1


^ permalink raw reply related	[flat|nested] 14+ messages in thread

* [PATCH 2/3] soc: qcom: socinfo: Add SoC ID for IPQ5321
  2024-02-28 14:51 [PATCH 0/3] Add support for the IPQ5321 SoC Kathiravan Thirumoorthy
  2024-02-28 14:51 ` [PATCH 1/3] dt-bindings: arm: qcom,ids: Add SoC ID for IPQ5321 Kathiravan Thirumoorthy
@ 2024-02-28 14:51 ` Kathiravan Thirumoorthy
  2024-02-29 14:45   ` Krzysztof Kozlowski
  2024-02-28 14:51 ` [PATCH 3/3] cpufreq: qcom-nvmem: add support " Kathiravan Thirumoorthy
  2024-02-28 15:06 ` [PATCH 0/3] Add support for the IPQ5321 SoC Mukesh Ojha
  3 siblings, 1 reply; 14+ messages in thread
From: Kathiravan Thirumoorthy @ 2024-02-28 14:51 UTC (permalink / raw)
  To: Bjorn Andersson, Konrad Dybcio, Rob Herring, Krzysztof Kozlowski,
	Conor Dooley, Ilia Lin, Rafael J. Wysocki, Viresh Kumar
  Cc: linux-arm-msm, devicetree, linux-kernel, linux-pm,
	Kathiravan Thirumoorthy

Add the SoC ID for IPQ5321, which belong to the family of IPQ5332 SoC.

Signed-off-by: Kathiravan Thirumoorthy <quic_kathirav@quicinc.com>
---
 drivers/soc/qcom/socinfo.c | 1 +
 1 file changed, 1 insertion(+)

diff --git a/drivers/soc/qcom/socinfo.c b/drivers/soc/qcom/socinfo.c
index e8ff9819ac47..c6063fd293d0 100644
--- a/drivers/soc/qcom/socinfo.c
+++ b/drivers/soc/qcom/socinfo.c
@@ -443,6 +443,7 @@ static const struct soc_id soc_id[] = {
 	{ qcom_board_id(QCS8550) },
 	{ qcom_board_id(QCM8550) },
 	{ qcom_board_id(IPQ5300) },
+	{ qcom_board_id(IPQ5321) },
 };
 
 static const char *socinfo_machine(struct device *dev, unsigned int id)

-- 
2.34.1


^ permalink raw reply related	[flat|nested] 14+ messages in thread

* [PATCH 3/3] cpufreq: qcom-nvmem: add support for IPQ5321
  2024-02-28 14:51 [PATCH 0/3] Add support for the IPQ5321 SoC Kathiravan Thirumoorthy
  2024-02-28 14:51 ` [PATCH 1/3] dt-bindings: arm: qcom,ids: Add SoC ID for IPQ5321 Kathiravan Thirumoorthy
  2024-02-28 14:51 ` [PATCH 2/3] soc: qcom: socinfo: " Kathiravan Thirumoorthy
@ 2024-02-28 14:51 ` Kathiravan Thirumoorthy
  2024-03-04  7:12   ` Viresh Kumar
  2024-02-28 15:06 ` [PATCH 0/3] Add support for the IPQ5321 SoC Mukesh Ojha
  3 siblings, 1 reply; 14+ messages in thread
From: Kathiravan Thirumoorthy @ 2024-02-28 14:51 UTC (permalink / raw)
  To: Bjorn Andersson, Konrad Dybcio, Rob Herring, Krzysztof Kozlowski,
	Conor Dooley, Ilia Lin, Rafael J. Wysocki, Viresh Kumar
  Cc: linux-arm-msm, devicetree, linux-kernel, linux-pm,
	Kathiravan Thirumoorthy

Like all other SoCs in IPQ5332 family, cpufreq for IPQ5321 is also
determined by the eFuse, with the maximum limit of 1.1GHz. Add support
for the same.

Signed-off-by: Kathiravan Thirumoorthy <quic_kathirav@quicinc.com>
---
 drivers/cpufreq/qcom-cpufreq-nvmem.c | 1 +
 1 file changed, 1 insertion(+)

diff --git a/drivers/cpufreq/qcom-cpufreq-nvmem.c b/drivers/cpufreq/qcom-cpufreq-nvmem.c
index ea05d9d67490..0a46b5d49d32 100644
--- a/drivers/cpufreq/qcom-cpufreq-nvmem.c
+++ b/drivers/cpufreq/qcom-cpufreq-nvmem.c
@@ -191,6 +191,7 @@ static int qcom_cpufreq_kryo_name_version(struct device *cpu_dev,
 	case QCOM_ID_IPQ5312:
 	case QCOM_ID_IPQ5302:
 	case QCOM_ID_IPQ5300:
+	case QCOM_ID_IPQ5321:
 	case QCOM_ID_IPQ9514:
 	case QCOM_ID_IPQ9550:
 	case QCOM_ID_IPQ9554:

-- 
2.34.1


^ permalink raw reply related	[flat|nested] 14+ messages in thread

* Re: [PATCH 0/3] Add support for the IPQ5321 SoC
  2024-02-28 14:51 [PATCH 0/3] Add support for the IPQ5321 SoC Kathiravan Thirumoorthy
                   ` (2 preceding siblings ...)
  2024-02-28 14:51 ` [PATCH 3/3] cpufreq: qcom-nvmem: add support " Kathiravan Thirumoorthy
@ 2024-02-28 15:06 ` Mukesh Ojha
  3 siblings, 0 replies; 14+ messages in thread
From: Mukesh Ojha @ 2024-02-28 15:06 UTC (permalink / raw)
  To: Kathiravan Thirumoorthy, Bjorn Andersson, Konrad Dybcio,
	Rob Herring, Krzysztof Kozlowski, Conor Dooley, Ilia Lin,
	Rafael J. Wysocki, Viresh Kumar
  Cc: linux-arm-msm, devicetree, linux-kernel, linux-pm



On 2/28/2024 8:21 PM, Kathiravan Thirumoorthy wrote:
> IPQ5321 SoC belong to IPQ5332 family. Add the SoC ID and the cpufreq
> support. Maximum cpufreq for IPQ5321 is 1.1GHZ, which is determined
> based on the eFuse.
> 
> Signed-off-by: Kathiravan Thirumoorthy <quic_kathirav@quicinc.com>

Reviewed-by: Mukesh Ojha <quic_mojha@quicinc.com>

for the series..

-Mukesh

> ---
> Kathiravan Thirumoorthy (3):
>        dt-bindings: arm: qcom,ids: Add SoC ID for IPQ5321
>        soc: qcom: socinfo: Add SoC ID for IPQ5321
>        cpufreq: qcom-nvmem: add support for IPQ5321
> 
>   drivers/cpufreq/qcom-cpufreq-nvmem.c | 1 +
>   drivers/soc/qcom/socinfo.c           | 1 +
>   include/dt-bindings/arm/qcom,ids.h   | 1 +
>   3 files changed, 3 insertions(+)
> ---
> base-commit: 20af1ca418d2c0b11bc2a1fe8c0c88f67bcc2a7e
> change-id: 20240228-ipq5321-sku-support-bd07056d5e01
> 
> Best regards,

^ permalink raw reply	[flat|nested] 14+ messages in thread

* Re: [PATCH 1/3] dt-bindings: arm: qcom,ids: Add SoC ID for IPQ5321
  2024-02-28 14:51 ` [PATCH 1/3] dt-bindings: arm: qcom,ids: Add SoC ID for IPQ5321 Kathiravan Thirumoorthy
@ 2024-02-29 14:45   ` Krzysztof Kozlowski
  0 siblings, 0 replies; 14+ messages in thread
From: Krzysztof Kozlowski @ 2024-02-29 14:45 UTC (permalink / raw)
  To: Kathiravan Thirumoorthy, Bjorn Andersson, Konrad Dybcio,
	Rob Herring, Krzysztof Kozlowski, Conor Dooley, Ilia Lin,
	Rafael J. Wysocki, Viresh Kumar
  Cc: linux-arm-msm, devicetree, linux-kernel, linux-pm

On 28/02/2024 15:51, Kathiravan Thirumoorthy wrote:
> Add the ID for the Qualcomm IPQ5321 SoC.
> 
> Signed-off-by: Kathiravan Thirumoorthy <quic_kathirav@quicinc.com>
> ---
>  include/dt-bindings/arm/qcom,ids.h | 1 +

Acked-by: Krzysztof Kozlowski <krzysztof.kozlowski@linaro.org>

Best regards,
Krzysztof


^ permalink raw reply	[flat|nested] 14+ messages in thread

* Re: [PATCH 2/3] soc: qcom: socinfo: Add SoC ID for IPQ5321
  2024-02-28 14:51 ` [PATCH 2/3] soc: qcom: socinfo: " Kathiravan Thirumoorthy
@ 2024-02-29 14:45   ` Krzysztof Kozlowski
  0 siblings, 0 replies; 14+ messages in thread
From: Krzysztof Kozlowski @ 2024-02-29 14:45 UTC (permalink / raw)
  To: Kathiravan Thirumoorthy, Bjorn Andersson, Konrad Dybcio,
	Rob Herring, Krzysztof Kozlowski, Conor Dooley, Ilia Lin,
	Rafael J. Wysocki, Viresh Kumar
  Cc: linux-arm-msm, devicetree, linux-kernel, linux-pm

On 28/02/2024 15:51, Kathiravan Thirumoorthy wrote:
> Add the SoC ID for IPQ5321, which belong to the family of IPQ5332 SoC.
> 
> Signed-off-by: Kathiravan Thirumoorthy <quic_kathirav@quicinc.com>


Reviewed-by: Krzysztof Kozlowski <krzysztof.kozlowski@linaro.org>

Best regards,
Krzysztof


^ permalink raw reply	[flat|nested] 14+ messages in thread

* Re: [PATCH 3/3] cpufreq: qcom-nvmem: add support for IPQ5321
  2024-02-28 14:51 ` [PATCH 3/3] cpufreq: qcom-nvmem: add support " Kathiravan Thirumoorthy
@ 2024-03-04  7:12   ` Viresh Kumar
  2024-03-05  4:35     ` Viresh Kumar
  0 siblings, 1 reply; 14+ messages in thread
From: Viresh Kumar @ 2024-03-04  7:12 UTC (permalink / raw)
  To: Kathiravan Thirumoorthy
  Cc: Bjorn Andersson, Konrad Dybcio, Rob Herring, Krzysztof Kozlowski,
	Conor Dooley, Ilia Lin, Rafael J. Wysocki, linux-arm-msm,
	devicetree, linux-kernel, linux-pm

On 28-02-24, 20:21, Kathiravan Thirumoorthy wrote:
> Like all other SoCs in IPQ5332 family, cpufreq for IPQ5321 is also
> determined by the eFuse, with the maximum limit of 1.1GHz. Add support
> for the same.
> 
> Signed-off-by: Kathiravan Thirumoorthy <quic_kathirav@quicinc.com>
> ---
>  drivers/cpufreq/qcom-cpufreq-nvmem.c | 1 +
>  1 file changed, 1 insertion(+)
> 
> diff --git a/drivers/cpufreq/qcom-cpufreq-nvmem.c b/drivers/cpufreq/qcom-cpufreq-nvmem.c
> index ea05d9d67490..0a46b5d49d32 100644
> --- a/drivers/cpufreq/qcom-cpufreq-nvmem.c
> +++ b/drivers/cpufreq/qcom-cpufreq-nvmem.c
> @@ -191,6 +191,7 @@ static int qcom_cpufreq_kryo_name_version(struct device *cpu_dev,
>  	case QCOM_ID_IPQ5312:
>  	case QCOM_ID_IPQ5302:
>  	case QCOM_ID_IPQ5300:
> +	case QCOM_ID_IPQ5321:
>  	case QCOM_ID_IPQ9514:
>  	case QCOM_ID_IPQ9550:
>  	case QCOM_ID_IPQ9554:

Applied. Thanks.

-- 
viresh

^ permalink raw reply	[flat|nested] 14+ messages in thread

* Re: [PATCH 3/3] cpufreq: qcom-nvmem: add support for IPQ5321
  2024-03-04  7:12   ` Viresh Kumar
@ 2024-03-05  4:35     ` Viresh Kumar
  2024-03-06  4:40       ` Kathiravan Thirumoorthy
  0 siblings, 1 reply; 14+ messages in thread
From: Viresh Kumar @ 2024-03-05  4:35 UTC (permalink / raw)
  To: Kathiravan Thirumoorthy
  Cc: Bjorn Andersson, Konrad Dybcio, Rob Herring, Krzysztof Kozlowski,
	Conor Dooley, Ilia Lin, Rafael J. Wysocki, linux-arm-msm,
	devicetree, linux-kernel, linux-pm

On 04-03-24, 12:42, Viresh Kumar wrote:
> On 28-02-24, 20:21, Kathiravan Thirumoorthy wrote:
> > Like all other SoCs in IPQ5332 family, cpufreq for IPQ5321 is also
> > determined by the eFuse, with the maximum limit of 1.1GHz. Add support
> > for the same.
> > 
> > Signed-off-by: Kathiravan Thirumoorthy <quic_kathirav@quicinc.com>
> > ---
> >  drivers/cpufreq/qcom-cpufreq-nvmem.c | 1 +
> >  1 file changed, 1 insertion(+)
> > 
> > diff --git a/drivers/cpufreq/qcom-cpufreq-nvmem.c b/drivers/cpufreq/qcom-cpufreq-nvmem.c
> > index ea05d9d67490..0a46b5d49d32 100644
> > --- a/drivers/cpufreq/qcom-cpufreq-nvmem.c
> > +++ b/drivers/cpufreq/qcom-cpufreq-nvmem.c
> > @@ -191,6 +191,7 @@ static int qcom_cpufreq_kryo_name_version(struct device *cpu_dev,
> >  	case QCOM_ID_IPQ5312:
> >  	case QCOM_ID_IPQ5302:
> >  	case QCOM_ID_IPQ5300:
> > +	case QCOM_ID_IPQ5321:
> >  	case QCOM_ID_IPQ9514:
> >  	case QCOM_ID_IPQ9550:
> >  	case QCOM_ID_IPQ9554:
> 
> Applied. Thanks.

Dropped since the previous commit it required too. Can we get the
necessary acks for me to pick those ?

-- 
viresh

^ permalink raw reply	[flat|nested] 14+ messages in thread

* Re: [PATCH 3/3] cpufreq: qcom-nvmem: add support for IPQ5321
  2024-03-05  4:35     ` Viresh Kumar
@ 2024-03-06  4:40       ` Kathiravan Thirumoorthy
  2024-03-06  5:18         ` Viresh Kumar
  2024-03-06  7:22         ` Krzysztof Kozlowski
  0 siblings, 2 replies; 14+ messages in thread
From: Kathiravan Thirumoorthy @ 2024-03-06  4:40 UTC (permalink / raw)
  To: Viresh Kumar
  Cc: Bjorn Andersson, Konrad Dybcio, Rob Herring, Krzysztof Kozlowski,
	Conor Dooley, Ilia Lin, Rafael J. Wysocki, linux-arm-msm,
	devicetree, linux-kernel, linux-pm



On 3/5/2024 10:05 AM, Viresh Kumar wrote:
> On 04-03-24, 12:42, Viresh Kumar wrote:
>> On 28-02-24, 20:21, Kathiravan Thirumoorthy wrote:
>>> Like all other SoCs in IPQ5332 family, cpufreq for IPQ5321 is also
>>> determined by the eFuse, with the maximum limit of 1.1GHz. Add support
>>> for the same.
>>>
>>> Signed-off-by: Kathiravan Thirumoorthy <quic_kathirav@quicinc.com>
>>> ---
>>>   drivers/cpufreq/qcom-cpufreq-nvmem.c | 1 +
>>>   1 file changed, 1 insertion(+)
>>>
>>> diff --git a/drivers/cpufreq/qcom-cpufreq-nvmem.c b/drivers/cpufreq/qcom-cpufreq-nvmem.c
>>> index ea05d9d67490..0a46b5d49d32 100644
>>> --- a/drivers/cpufreq/qcom-cpufreq-nvmem.c
>>> +++ b/drivers/cpufreq/qcom-cpufreq-nvmem.c
>>> @@ -191,6 +191,7 @@ static int qcom_cpufreq_kryo_name_version(struct device *cpu_dev,
>>>   	case QCOM_ID_IPQ5312:
>>>   	case QCOM_ID_IPQ5302:
>>>   	case QCOM_ID_IPQ5300:
>>> +	case QCOM_ID_IPQ5321:
>>>   	case QCOM_ID_IPQ9514:
>>>   	case QCOM_ID_IPQ9550:
>>>   	case QCOM_ID_IPQ9554:
>>
>> Applied. Thanks.
> 
> Dropped since the previous commit it required too. Can we get the
> necessary acks for me to pick those ?
> 

Sorry for not mentioning the dependencies.

patch 1/3 and 2/3 are already has the R-b and A-b tags. But typically 
those patches will go via qcom tree. Do you want to pick it via your 
tree? Sorry, I'm not sure on this...


Thanks,
Kathiravan T.

^ permalink raw reply	[flat|nested] 14+ messages in thread

* Re: [PATCH 3/3] cpufreq: qcom-nvmem: add support for IPQ5321
  2024-03-06  4:40       ` Kathiravan Thirumoorthy
@ 2024-03-06  5:18         ` Viresh Kumar
  2024-03-06  5:32           ` Viresh Kumar
  2024-03-06  7:22         ` Krzysztof Kozlowski
  1 sibling, 1 reply; 14+ messages in thread
From: Viresh Kumar @ 2024-03-06  5:18 UTC (permalink / raw)
  To: Bjorn Andersson, Kathiravan Thirumoorthy
  Cc: Konrad Dybcio, Rob Herring, Krzysztof Kozlowski, Conor Dooley,
	Ilia Lin, Rafael J. Wysocki, linux-arm-msm, devicetree,
	linux-kernel, linux-pm

Bjorn,

On 06-03-24, 10:10, Kathiravan Thirumoorthy wrote:
> patch 1/3 and 2/3 are already has the R-b and A-b tags. But typically those
> patches will go via qcom tree. Do you want to pick it via your tree? Sorry,
> I'm not sure on this...

Should I pick all the patches ?

-- 
viresh

^ permalink raw reply	[flat|nested] 14+ messages in thread

* Re: [PATCH 3/3] cpufreq: qcom-nvmem: add support for IPQ5321
  2024-03-06  5:18         ` Viresh Kumar
@ 2024-03-06  5:32           ` Viresh Kumar
  0 siblings, 0 replies; 14+ messages in thread
From: Viresh Kumar @ 2024-03-06  5:32 UTC (permalink / raw)
  To: Bjorn Andersson, Kathiravan Thirumoorthy
  Cc: Konrad Dybcio, Rob Herring, Krzysztof Kozlowski, Conor Dooley,
	Ilia Lin, Rafael J. Wysocki, linux-arm-msm, devicetree,
	linux-kernel, linux-pm

On 06-03-24, 10:48, Viresh Kumar wrote:
> Bjorn,
> 
> On 06-03-24, 10:10, Kathiravan Thirumoorthy wrote:
> > patch 1/3 and 2/3 are already has the R-b and A-b tags. But typically those
> > patches will go via qcom tree. Do you want to pick it via your tree? Sorry,
> > I'm not sure on this...
> 
> Should I pick all the patches ?

Okay, there are conflicts for the first patch itself. Bjorn you can
apply all the patches.

For this patch:

Acked-by: Viresh Kumar <viresh.kumar@linaro.org>

-- 
viresh

^ permalink raw reply	[flat|nested] 14+ messages in thread

* Re: [PATCH 3/3] cpufreq: qcom-nvmem: add support for IPQ5321
  2024-03-06  4:40       ` Kathiravan Thirumoorthy
  2024-03-06  5:18         ` Viresh Kumar
@ 2024-03-06  7:22         ` Krzysztof Kozlowski
  2024-03-06  8:00           ` Kathiravan Thirumoorthy
  1 sibling, 1 reply; 14+ messages in thread
From: Krzysztof Kozlowski @ 2024-03-06  7:22 UTC (permalink / raw)
  To: Kathiravan Thirumoorthy, Viresh Kumar
  Cc: Bjorn Andersson, Konrad Dybcio, Rob Herring, Krzysztof Kozlowski,
	Conor Dooley, Ilia Lin, Rafael J. Wysocki, linux-arm-msm,
	devicetree, linux-kernel, linux-pm

On 06/03/2024 05:40, Kathiravan Thirumoorthy wrote:
>>>
>>> Applied. Thanks.
>>
>> Dropped since the previous commit it required too. Can we get the
>> necessary acks for me to pick those ?
>>
> 
> Sorry for not mentioning the dependencies.
> 
> patch 1/3 and 2/3 are already has the R-b and A-b tags. But typically 

From whom? Not from Qualcomm SoC maintainers.

> those patches will go via qcom tree. Do you want to pick it via your 
> tree? Sorry, I'm not sure on this...

Your cover letter or patch changelog should clearly document
dependencies, so maintainers could understand what to do with this patch.

Best regards,
Krzysztof


^ permalink raw reply	[flat|nested] 14+ messages in thread

* Re: [PATCH 3/3] cpufreq: qcom-nvmem: add support for IPQ5321
  2024-03-06  7:22         ` Krzysztof Kozlowski
@ 2024-03-06  8:00           ` Kathiravan Thirumoorthy
  0 siblings, 0 replies; 14+ messages in thread
From: Kathiravan Thirumoorthy @ 2024-03-06  8:00 UTC (permalink / raw)
  To: Krzysztof Kozlowski, Viresh Kumar
  Cc: Bjorn Andersson, Konrad Dybcio, Rob Herring, Krzysztof Kozlowski,
	Conor Dooley, Ilia Lin, Rafael J. Wysocki, linux-arm-msm,
	devicetree, linux-kernel, linux-pm



On 3/6/2024 12:52 PM, Krzysztof Kozlowski wrote:
> On 06/03/2024 05:40, Kathiravan Thirumoorthy wrote:
>>>>
>>>> Applied. Thanks.
>>>
>>> Dropped since the previous commit it required too. Can we get the
>>> necessary acks for me to pick those ?
>>>
>>
>> Sorry for not mentioning the dependencies.
>>
>> patch 1/3 and 2/3 are already has the R-b and A-b tags. But typically
> 
>  From whom? Not from Qualcomm SoC maintainers.


Does the "necessary acks" refers for to the acks from Qualcomm SoC 
maintainers? Sorry, I wasn't aware of that. That's why I mentioned 
"Sorry, I'm not sure on this..." couple of lines below.


> 
>> those patches will go via qcom tree. Do you want to pick it via your
>> tree? Sorry, I'm not sure on this...
> 
> Your cover letter or patch changelog should clearly document
> dependencies, so maintainers could understand what to do with this patch.


Understood. Will take care in future.


> 
> Best regards,
> Krzysztof
> 

^ permalink raw reply	[flat|nested] 14+ messages in thread

end of thread, other threads:[~2024-03-06  8:00 UTC | newest]

Thread overview: 14+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2024-02-28 14:51 [PATCH 0/3] Add support for the IPQ5321 SoC Kathiravan Thirumoorthy
2024-02-28 14:51 ` [PATCH 1/3] dt-bindings: arm: qcom,ids: Add SoC ID for IPQ5321 Kathiravan Thirumoorthy
2024-02-29 14:45   ` Krzysztof Kozlowski
2024-02-28 14:51 ` [PATCH 2/3] soc: qcom: socinfo: " Kathiravan Thirumoorthy
2024-02-29 14:45   ` Krzysztof Kozlowski
2024-02-28 14:51 ` [PATCH 3/3] cpufreq: qcom-nvmem: add support " Kathiravan Thirumoorthy
2024-03-04  7:12   ` Viresh Kumar
2024-03-05  4:35     ` Viresh Kumar
2024-03-06  4:40       ` Kathiravan Thirumoorthy
2024-03-06  5:18         ` Viresh Kumar
2024-03-06  5:32           ` Viresh Kumar
2024-03-06  7:22         ` Krzysztof Kozlowski
2024-03-06  8:00           ` Kathiravan Thirumoorthy
2024-02-28 15:06 ` [PATCH 0/3] Add support for the IPQ5321 SoC Mukesh Ojha

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.