linux-kernel.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH] clk: qcom: Fix MSM8998 resets
@ 2018-12-03 15:34 Jeffrey Hugo
  2018-12-03 15:55 ` Bjorn Andersson
  0 siblings, 1 reply; 7+ messages in thread
From: Jeffrey Hugo @ 2018-12-03 15:34 UTC (permalink / raw)
  To: andy.gross, david.brown, mturquette, sboyd
  Cc: bjorn.andersson, linux-arm-msm, linux-clk, linux-kernel, Jeffrey Hugo

The offsets for the defined BCR reset registers does not match the hardware
documentation.  Update the values to match the hardware documentation.

Fixes: b5f5f525c547 (clk: qcom: Add MSM8998 Global Clock Control (GCC) driver)
Signed-off-by: Jeffrey Hugo <jhugo@codeaurora.org>
---
 drivers/clk/qcom/gcc-msm8998.c | 38 +++++++++++++++++++-------------------
 1 file changed, 19 insertions(+), 19 deletions(-)

diff --git a/drivers/clk/qcom/gcc-msm8998.c b/drivers/clk/qcom/gcc-msm8998.c
index 9f0ae40..01cc555 100644
--- a/drivers/clk/qcom/gcc-msm8998.c
+++ b/drivers/clk/qcom/gcc-msm8998.c
@@ -2742,25 +2742,25 @@ enum {
 };
 
 static const struct qcom_reset_map gcc_msm8998_resets[] = {
-	[GCC_BLSP1_QUP1_BCR] = { 0x102400 },
-	[GCC_BLSP1_QUP2_BCR] = { 0x110592 },
-	[GCC_BLSP1_QUP3_BCR] = { 0x118784 },
-	[GCC_BLSP1_QUP4_BCR] = { 0x126976 },
-	[GCC_BLSP1_QUP5_BCR] = { 0x135168 },
-	[GCC_BLSP1_QUP6_BCR] = { 0x143360 },
-	[GCC_BLSP2_QUP1_BCR] = { 0x155648 },
-	[GCC_BLSP2_QUP2_BCR] = { 0x163840 },
-	[GCC_BLSP2_QUP3_BCR] = { 0x172032 },
-	[GCC_BLSP2_QUP4_BCR] = { 0x180224 },
-	[GCC_BLSP2_QUP5_BCR] = { 0x188416 },
-	[GCC_BLSP2_QUP6_BCR] = { 0x196608 },
-	[GCC_PCIE_0_BCR] = { 0x438272 },
-	[GCC_PDM_BCR] = { 0x208896 },
-	[GCC_SDCC2_BCR] = { 0x81920 },
-	[GCC_SDCC4_BCR] = { 0x90112 },
-	[GCC_TSIF_BCR] = { 0x221184 },
-	[GCC_UFS_BCR] = { 0x479232 },
-	[GCC_USB_30_BCR] = { 0x61440 },
+	[GCC_BLSP1_QUP1_BCR] = { 0x19000 },
+	[GCC_BLSP1_QUP2_BCR] = { 0x1b000 },
+	[GCC_BLSP1_QUP3_BCR] = { 0x1d000 },
+	[GCC_BLSP1_QUP4_BCR] = { 0x1f000 },
+	[GCC_BLSP1_QUP5_BCR] = { 0x21000 },
+	[GCC_BLSP1_QUP6_BCR] = { 0x23000 },
+	[GCC_BLSP2_QUP1_BCR] = { 0x26000 },
+	[GCC_BLSP2_QUP2_BCR] = { 0x28000 },
+	[GCC_BLSP2_QUP3_BCR] = { 0x2a000 },
+	[GCC_BLSP2_QUP4_BCR] = { 0x2c000 },
+	[GCC_BLSP2_QUP5_BCR] = { 0x2e000 },
+	[GCC_BLSP2_QUP6_BCR] = { 0x30000 },
+	[GCC_PCIE_0_BCR] = { 0x6c01c },
+	[GCC_PDM_BCR] = { 0x33000 },
+	[GCC_SDCC2_BCR] = { 0x14000 },
+	[GCC_SDCC4_BCR] = { 0x16000 },
+	[GCC_TSIF_BCR] = { 0x36000 },
+	[GCC_UFS_BCR] = { 0x75000 },
+	[GCC_USB_30_BCR] = { 0xf000 },
 };
 
 static const struct regmap_config gcc_msm8998_regmap_config = {
-- 
Qualcomm Datacenter Technologies as an affiliate of Qualcomm Technologies, Inc.
Qualcomm Technologies, Inc. is a member of the
Code Aurora Forum, a Linux Foundation Collaborative Project.


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

* Re: [PATCH] clk: qcom: Fix MSM8998 resets
  2018-12-03 15:34 [PATCH] clk: qcom: Fix MSM8998 resets Jeffrey Hugo
@ 2018-12-03 15:55 ` Bjorn Andersson
  2018-12-03 16:08   ` Jeffrey Hugo
  0 siblings, 1 reply; 7+ messages in thread
From: Bjorn Andersson @ 2018-12-03 15:55 UTC (permalink / raw)
  To: Jeffrey Hugo
  Cc: andy.gross, david.brown, mturquette, sboyd, linux-arm-msm,
	linux-clk, linux-kernel

On Mon 03 Dec 07:34 PST 2018, Jeffrey Hugo wrote:

> The offsets for the defined BCR reset registers does not match the hardware
> documentation.  Update the values to match the hardware documentation.
> 

Sorry for not spotting this before.

> Fixes: b5f5f525c547 (clk: qcom: Add MSM8998 Global Clock Control (GCC) driver)
> Signed-off-by: Jeffrey Hugo <jhugo@codeaurora.org>
> ---
>  drivers/clk/qcom/gcc-msm8998.c | 38 +++++++++++++++++++-------------------
>  1 file changed, 19 insertions(+), 19 deletions(-)
> 
> diff --git a/drivers/clk/qcom/gcc-msm8998.c b/drivers/clk/qcom/gcc-msm8998.c
> index 9f0ae40..01cc555 100644
> --- a/drivers/clk/qcom/gcc-msm8998.c
> +++ b/drivers/clk/qcom/gcc-msm8998.c
> @@ -2742,25 +2742,25 @@ enum {
>  };
>  
>  static const struct qcom_reset_map gcc_msm8998_resets[] = {
> -	[GCC_BLSP1_QUP1_BCR] = { 0x102400 },
> -	[GCC_BLSP1_QUP2_BCR] = { 0x110592 },
> -	[GCC_BLSP1_QUP3_BCR] = { 0x118784 },
> -	[GCC_BLSP1_QUP4_BCR] = { 0x126976 },
> -	[GCC_BLSP1_QUP5_BCR] = { 0x135168 },
> -	[GCC_BLSP1_QUP6_BCR] = { 0x143360 },
> -	[GCC_BLSP2_QUP1_BCR] = { 0x155648 },
> -	[GCC_BLSP2_QUP2_BCR] = { 0x163840 },
> -	[GCC_BLSP2_QUP3_BCR] = { 0x172032 },
> -	[GCC_BLSP2_QUP4_BCR] = { 0x180224 },
> -	[GCC_BLSP2_QUP5_BCR] = { 0x188416 },
> -	[GCC_BLSP2_QUP6_BCR] = { 0x196608 },
> -	[GCC_PCIE_0_BCR] = { 0x438272 },
> -	[GCC_PDM_BCR] = { 0x208896 },
> -	[GCC_SDCC2_BCR] = { 0x81920 },
> -	[GCC_SDCC4_BCR] = { 0x90112 },
> -	[GCC_TSIF_BCR] = { 0x221184 },
> -	[GCC_UFS_BCR] = { 0x479232 },
> -	[GCC_USB_30_BCR] = { 0x61440 },
> +	[GCC_BLSP1_QUP1_BCR] = { 0x19000 },
> +	[GCC_BLSP1_QUP2_BCR] = { 0x1b000 },
> +	[GCC_BLSP1_QUP3_BCR] = { 0x1d000 },
> +	[GCC_BLSP1_QUP4_BCR] = { 0x1f000 },
> +	[GCC_BLSP1_QUP5_BCR] = { 0x21000 },
> +	[GCC_BLSP1_QUP6_BCR] = { 0x23000 },
> +	[GCC_BLSP2_QUP1_BCR] = { 0x26000 },
> +	[GCC_BLSP2_QUP2_BCR] = { 0x28000 },
> +	[GCC_BLSP2_QUP3_BCR] = { 0x2a000 },
> +	[GCC_BLSP2_QUP4_BCR] = { 0x2c000 },
> +	[GCC_BLSP2_QUP5_BCR] = { 0x2e000 },
> +	[GCC_BLSP2_QUP6_BCR] = { 0x30000 },
> +	[GCC_PCIE_0_BCR] = { 0x6c01c },

I find GCC_PCIE_0_BCR at 0x6b000 and then GCC_PCIE_0_PHY_BCR at 0x6c01c.

> +	[GCC_PDM_BCR] = { 0x33000 },
> +	[GCC_SDCC2_BCR] = { 0x14000 },
> +	[GCC_SDCC4_BCR] = { 0x16000 },
> +	[GCC_TSIF_BCR] = { 0x36000 },
> +	[GCC_UFS_BCR] = { 0x75000 },
> +	[GCC_USB_30_BCR] = { 0xf000 },
>  };

With this updated, you have my

Reviewed-by: Bjorn Andersson <bjorn.andersson@linaro.org>

Regards,
Bjorn

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

* Re: [PATCH] clk: qcom: Fix MSM8998 resets
  2018-12-03 15:55 ` Bjorn Andersson
@ 2018-12-03 16:08   ` Jeffrey Hugo
  2018-12-03 17:02     ` Stephen Boyd
  0 siblings, 1 reply; 7+ messages in thread
From: Jeffrey Hugo @ 2018-12-03 16:08 UTC (permalink / raw)
  To: Bjorn Andersson
  Cc: andy.gross, david.brown, mturquette, sboyd, linux-arm-msm,
	linux-clk, linux-kernel

On 12/3/2018 8:55 AM, Bjorn Andersson wrote:
> On Mon 03 Dec 07:34 PST 2018, Jeffrey Hugo wrote:
> 
>> The offsets for the defined BCR reset registers does not match the hardware
>> documentation.  Update the values to match the hardware documentation.
>>
> 
> Sorry for not spotting this before.
> 
>> Fixes: b5f5f525c547 (clk: qcom: Add MSM8998 Global Clock Control (GCC) driver)
>> Signed-off-by: Jeffrey Hugo <jhugo@codeaurora.org>
>> ---
>>   drivers/clk/qcom/gcc-msm8998.c | 38 +++++++++++++++++++-------------------
>>   1 file changed, 19 insertions(+), 19 deletions(-)
>>
>> diff --git a/drivers/clk/qcom/gcc-msm8998.c b/drivers/clk/qcom/gcc-msm8998.c
>> index 9f0ae40..01cc555 100644
>> --- a/drivers/clk/qcom/gcc-msm8998.c
>> +++ b/drivers/clk/qcom/gcc-msm8998.c
>> @@ -2742,25 +2742,25 @@ enum {
>>   };
>>   
>>   static const struct qcom_reset_map gcc_msm8998_resets[] = {
>> -	[GCC_BLSP1_QUP1_BCR] = { 0x102400 },
>> -	[GCC_BLSP1_QUP2_BCR] = { 0x110592 },
>> -	[GCC_BLSP1_QUP3_BCR] = { 0x118784 },
>> -	[GCC_BLSP1_QUP4_BCR] = { 0x126976 },
>> -	[GCC_BLSP1_QUP5_BCR] = { 0x135168 },
>> -	[GCC_BLSP1_QUP6_BCR] = { 0x143360 },
>> -	[GCC_BLSP2_QUP1_BCR] = { 0x155648 },
>> -	[GCC_BLSP2_QUP2_BCR] = { 0x163840 },
>> -	[GCC_BLSP2_QUP3_BCR] = { 0x172032 },
>> -	[GCC_BLSP2_QUP4_BCR] = { 0x180224 },
>> -	[GCC_BLSP2_QUP5_BCR] = { 0x188416 },
>> -	[GCC_BLSP2_QUP6_BCR] = { 0x196608 },
>> -	[GCC_PCIE_0_BCR] = { 0x438272 },
>> -	[GCC_PDM_BCR] = { 0x208896 },
>> -	[GCC_SDCC2_BCR] = { 0x81920 },
>> -	[GCC_SDCC4_BCR] = { 0x90112 },
>> -	[GCC_TSIF_BCR] = { 0x221184 },
>> -	[GCC_UFS_BCR] = { 0x479232 },
>> -	[GCC_USB_30_BCR] = { 0x61440 },
>> +	[GCC_BLSP1_QUP1_BCR] = { 0x19000 },
>> +	[GCC_BLSP1_QUP2_BCR] = { 0x1b000 },
>> +	[GCC_BLSP1_QUP3_BCR] = { 0x1d000 },
>> +	[GCC_BLSP1_QUP4_BCR] = { 0x1f000 },
>> +	[GCC_BLSP1_QUP5_BCR] = { 0x21000 },
>> +	[GCC_BLSP1_QUP6_BCR] = { 0x23000 },
>> +	[GCC_BLSP2_QUP1_BCR] = { 0x26000 },
>> +	[GCC_BLSP2_QUP2_BCR] = { 0x28000 },
>> +	[GCC_BLSP2_QUP3_BCR] = { 0x2a000 },
>> +	[GCC_BLSP2_QUP4_BCR] = { 0x2c000 },
>> +	[GCC_BLSP2_QUP5_BCR] = { 0x2e000 },
>> +	[GCC_BLSP2_QUP6_BCR] = { 0x30000 },
>> +	[GCC_PCIE_0_BCR] = { 0x6c01c },
> 
> I find GCC_PCIE_0_BCR at 0x6b000 and then GCC_PCIE_0_PHY_BCR at 0x6c01c.

Doh.  Thanks for the double check.  GCC_PCIE_0_PHY_BCR is not defined in 
include/dt-bindings/clock/qcom,gcc-msm8998.h so I plan to leave it out 
until later.

Expect a v2 shortly.

> 
>> +	[GCC_PDM_BCR] = { 0x33000 },
>> +	[GCC_SDCC2_BCR] = { 0x14000 },
>> +	[GCC_SDCC4_BCR] = { 0x16000 },
>> +	[GCC_TSIF_BCR] = { 0x36000 },
>> +	[GCC_UFS_BCR] = { 0x75000 },
>> +	[GCC_USB_30_BCR] = { 0xf000 },
>>   };
> 
> With this updated, you have my
> 
> Reviewed-by: Bjorn Andersson <bjorn.andersson@linaro.org>
> 
> Regards,
> Bjorn
> 


-- 
Jeffrey Hugo
Qualcomm Datacenter Technologies as an affiliate of Qualcomm 
Technologies, Inc.
Qualcomm Technologies, Inc. is a member of the
Code Aurora Forum, a Linux Foundation Collaborative Project.

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

* Re: [PATCH] clk: qcom: Fix MSM8998 resets
  2018-12-03 16:08   ` Jeffrey Hugo
@ 2018-12-03 17:02     ` Stephen Boyd
  2018-12-03 17:19       ` Jeffrey Hugo
  0 siblings, 1 reply; 7+ messages in thread
From: Stephen Boyd @ 2018-12-03 17:02 UTC (permalink / raw)
  To: Bjorn Andersson, Jeffrey Hugo
  Cc: andy.gross, david.brown, mturquette, linux-arm-msm, linux-clk,
	linux-kernel

Quoting Jeffrey Hugo (2018-12-03 08:08:46)
> On 12/3/2018 8:55 AM, Bjorn Andersson wrote:
> > On Mon 03 Dec 07:34 PST 2018, Jeffrey Hugo wrote:
> > 
> >> The offsets for the defined BCR reset registers does not match the hardware
> >> documentation.  Update the values to match the hardware documentation.
> >>
> > 
> > Sorry for not spotting this before.
> > 
> >> Fixes: b5f5f525c547 (clk: qcom: Add MSM8998 Global Clock Control (GCC) driver)
> >> Signed-off-by: Jeffrey Hugo <jhugo@codeaurora.org>
> >> ---
> >>   drivers/clk/qcom/gcc-msm8998.c | 38 +++++++++++++++++++-------------------
> >>   1 file changed, 19 insertions(+), 19 deletions(-)
> >>
> >> diff --git a/drivers/clk/qcom/gcc-msm8998.c b/drivers/clk/qcom/gcc-msm8998.c
> >> index 9f0ae40..01cc555 100644
> >> --- a/drivers/clk/qcom/gcc-msm8998.c
> >> +++ b/drivers/clk/qcom/gcc-msm8998.c
> >> @@ -2742,25 +2742,25 @@ enum {
> >>   };
> >>   
> >>   static const struct qcom_reset_map gcc_msm8998_resets[] = {
> >> -    [GCC_BLSP1_QUP1_BCR] = { 0x102400 },
> >> -    [GCC_BLSP1_QUP2_BCR] = { 0x110592 },
> >> -    [GCC_BLSP1_QUP3_BCR] = { 0x118784 },
> >> -    [GCC_BLSP1_QUP4_BCR] = { 0x126976 },
> >> -    [GCC_BLSP1_QUP5_BCR] = { 0x135168 },
> >> -    [GCC_BLSP1_QUP6_BCR] = { 0x143360 },
> >> -    [GCC_BLSP2_QUP1_BCR] = { 0x155648 },
> >> -    [GCC_BLSP2_QUP2_BCR] = { 0x163840 },
> >> -    [GCC_BLSP2_QUP3_BCR] = { 0x172032 },
> >> -    [GCC_BLSP2_QUP4_BCR] = { 0x180224 },
> >> -    [GCC_BLSP2_QUP5_BCR] = { 0x188416 },
> >> -    [GCC_BLSP2_QUP6_BCR] = { 0x196608 },
> >> -    [GCC_PCIE_0_BCR] = { 0x438272 },
> >> -    [GCC_PDM_BCR] = { 0x208896 },
> >> -    [GCC_SDCC2_BCR] = { 0x81920 },
> >> -    [GCC_SDCC4_BCR] = { 0x90112 },
> >> -    [GCC_TSIF_BCR] = { 0x221184 },
> >> -    [GCC_UFS_BCR] = { 0x479232 },
> >> -    [GCC_USB_30_BCR] = { 0x61440 },
> >> +    [GCC_BLSP1_QUP1_BCR] = { 0x19000 },
> >> +    [GCC_BLSP1_QUP2_BCR] = { 0x1b000 },
> >> +    [GCC_BLSP1_QUP3_BCR] = { 0x1d000 },
> >> +    [GCC_BLSP1_QUP4_BCR] = { 0x1f000 },
> >> +    [GCC_BLSP1_QUP5_BCR] = { 0x21000 },
> >> +    [GCC_BLSP1_QUP6_BCR] = { 0x23000 },
> >> +    [GCC_BLSP2_QUP1_BCR] = { 0x26000 },
> >> +    [GCC_BLSP2_QUP2_BCR] = { 0x28000 },
> >> +    [GCC_BLSP2_QUP3_BCR] = { 0x2a000 },
> >> +    [GCC_BLSP2_QUP4_BCR] = { 0x2c000 },
> >> +    [GCC_BLSP2_QUP5_BCR] = { 0x2e000 },
> >> +    [GCC_BLSP2_QUP6_BCR] = { 0x30000 },
> >> +    [GCC_PCIE_0_BCR] = { 0x6c01c },
> > 
> > I find GCC_PCIE_0_BCR at 0x6b000 and then GCC_PCIE_0_PHY_BCR at 0x6c01c.
> 
> Doh.  Thanks for the double check.  GCC_PCIE_0_PHY_BCR is not defined in 
> include/dt-bindings/clock/qcom,gcc-msm8998.h so I plan to leave it out 
> until later.
> 
> Expect a v2 shortly.

Will you add GCC_PCIE0_PHY_BCR shortly so we don't have to add it later
on when it becomes critical?


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

* Re: [PATCH] clk: qcom: Fix MSM8998 resets
  2018-12-03 17:02     ` Stephen Boyd
@ 2018-12-03 17:19       ` Jeffrey Hugo
  2018-12-03 17:52         ` Stephen Boyd
  0 siblings, 1 reply; 7+ messages in thread
From: Jeffrey Hugo @ 2018-12-03 17:19 UTC (permalink / raw)
  To: Stephen Boyd, Bjorn Andersson
  Cc: andy.gross, david.brown, mturquette, linux-arm-msm, linux-clk,
	linux-kernel

On 12/3/2018 10:02 AM, Stephen Boyd wrote:
> Quoting Jeffrey Hugo (2018-12-03 08:08:46)
>> On 12/3/2018 8:55 AM, Bjorn Andersson wrote:
>>> On Mon 03 Dec 07:34 PST 2018, Jeffrey Hugo wrote:
>>>
>>>> The offsets for the defined BCR reset registers does not match the hardware
>>>> documentation.  Update the values to match the hardware documentation.
>>>>
>>>
>>> Sorry for not spotting this before.
>>>
>>>> Fixes: b5f5f525c547 (clk: qcom: Add MSM8998 Global Clock Control (GCC) driver)
>>>> Signed-off-by: Jeffrey Hugo <jhugo@codeaurora.org>
>>>> ---
>>>>    drivers/clk/qcom/gcc-msm8998.c | 38 +++++++++++++++++++-------------------
>>>>    1 file changed, 19 insertions(+), 19 deletions(-)
>>>>
>>>> diff --git a/drivers/clk/qcom/gcc-msm8998.c b/drivers/clk/qcom/gcc-msm8998.c
>>>> index 9f0ae40..01cc555 100644
>>>> --- a/drivers/clk/qcom/gcc-msm8998.c
>>>> +++ b/drivers/clk/qcom/gcc-msm8998.c
>>>> @@ -2742,25 +2742,25 @@ enum {
>>>>    };
>>>>    
>>>>    static const struct qcom_reset_map gcc_msm8998_resets[] = {
>>>> -    [GCC_BLSP1_QUP1_BCR] = { 0x102400 },
>>>> -    [GCC_BLSP1_QUP2_BCR] = { 0x110592 },
>>>> -    [GCC_BLSP1_QUP3_BCR] = { 0x118784 },
>>>> -    [GCC_BLSP1_QUP4_BCR] = { 0x126976 },
>>>> -    [GCC_BLSP1_QUP5_BCR] = { 0x135168 },
>>>> -    [GCC_BLSP1_QUP6_BCR] = { 0x143360 },
>>>> -    [GCC_BLSP2_QUP1_BCR] = { 0x155648 },
>>>> -    [GCC_BLSP2_QUP2_BCR] = { 0x163840 },
>>>> -    [GCC_BLSP2_QUP3_BCR] = { 0x172032 },
>>>> -    [GCC_BLSP2_QUP4_BCR] = { 0x180224 },
>>>> -    [GCC_BLSP2_QUP5_BCR] = { 0x188416 },
>>>> -    [GCC_BLSP2_QUP6_BCR] = { 0x196608 },
>>>> -    [GCC_PCIE_0_BCR] = { 0x438272 },
>>>> -    [GCC_PDM_BCR] = { 0x208896 },
>>>> -    [GCC_SDCC2_BCR] = { 0x81920 },
>>>> -    [GCC_SDCC4_BCR] = { 0x90112 },
>>>> -    [GCC_TSIF_BCR] = { 0x221184 },
>>>> -    [GCC_UFS_BCR] = { 0x479232 },
>>>> -    [GCC_USB_30_BCR] = { 0x61440 },
>>>> +    [GCC_BLSP1_QUP1_BCR] = { 0x19000 },
>>>> +    [GCC_BLSP1_QUP2_BCR] = { 0x1b000 },
>>>> +    [GCC_BLSP1_QUP3_BCR] = { 0x1d000 },
>>>> +    [GCC_BLSP1_QUP4_BCR] = { 0x1f000 },
>>>> +    [GCC_BLSP1_QUP5_BCR] = { 0x21000 },
>>>> +    [GCC_BLSP1_QUP6_BCR] = { 0x23000 },
>>>> +    [GCC_BLSP2_QUP1_BCR] = { 0x26000 },
>>>> +    [GCC_BLSP2_QUP2_BCR] = { 0x28000 },
>>>> +    [GCC_BLSP2_QUP3_BCR] = { 0x2a000 },
>>>> +    [GCC_BLSP2_QUP4_BCR] = { 0x2c000 },
>>>> +    [GCC_BLSP2_QUP5_BCR] = { 0x2e000 },
>>>> +    [GCC_BLSP2_QUP6_BCR] = { 0x30000 },
>>>> +    [GCC_PCIE_0_BCR] = { 0x6c01c },
>>>
>>> I find GCC_PCIE_0_BCR at 0x6b000 and then GCC_PCIE_0_PHY_BCR at 0x6c01c.
>>
>> Doh.  Thanks for the double check.  GCC_PCIE_0_PHY_BCR is not defined in
>> include/dt-bindings/clock/qcom,gcc-msm8998.h so I plan to leave it out
>> until later.
>>
>> Expect a v2 shortly.
> 
> Will you add GCC_PCIE0_PHY_BCR shortly so we don't have to add it later
> on when it becomes critical?
> 

My plan was to let it sit until it becomes necessary.  I'm working on 
USB and found that GCC_QUSB2PHY_PRIM_BCR, GCC_USB3_PHY_BCR, and 
GCC_USB3PHY_PHY_BCR are also missing, so I suspect there are others.

Would you prefer I send a follow up that adds the PCIE phy and the USB 
resets?

-- 
Jeffrey Hugo
Qualcomm Datacenter Technologies as an affiliate of Qualcomm 
Technologies, Inc.
Qualcomm Technologies, Inc. is a member of the
Code Aurora Forum, a Linux Foundation Collaborative Project.

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

* Re: [PATCH] clk: qcom: Fix MSM8998 resets
  2018-12-03 17:19       ` Jeffrey Hugo
@ 2018-12-03 17:52         ` Stephen Boyd
  2018-12-03 17:58           ` Jeffrey Hugo
  0 siblings, 1 reply; 7+ messages in thread
From: Stephen Boyd @ 2018-12-03 17:52 UTC (permalink / raw)
  To: Bjorn Andersson, Jeffrey Hugo
  Cc: andy.gross, david.brown, mturquette, linux-arm-msm, linux-clk,
	linux-kernel

Quoting Jeffrey Hugo (2018-12-03 09:19:20)
> On 12/3/2018 10:02 AM, Stephen Boyd wrote:
> > Quoting Jeffrey Hugo (2018-12-03 08:08:46)
> >> On 12/3/2018 8:55 AM, Bjorn Andersson wrote:
> >>> On Mon 03 Dec 07:34 PST 2018, Jeffrey Hugo wrote:
> >>>
> >>>> The offsets for the defined BCR reset registers does not match the hardware
> >>>> documentation.  Update the values to match the hardware documentation.
> >>>>
> >>>
> >>> Sorry for not spotting this before.
> >>>
> >>>> Fixes: b5f5f525c547 (clk: qcom: Add MSM8998 Global Clock Control (GCC) driver)
> >>>> Signed-off-by: Jeffrey Hugo <jhugo@codeaurora.org>
> >>>> ---
> >>>>    drivers/clk/qcom/gcc-msm8998.c | 38 +++++++++++++++++++-------------------
> >>>>    1 file changed, 19 insertions(+), 19 deletions(-)
> >>>>
> >>>> diff --git a/drivers/clk/qcom/gcc-msm8998.c b/drivers/clk/qcom/gcc-msm8998.c
> >>>> index 9f0ae40..01cc555 100644
> >>>> --- a/drivers/clk/qcom/gcc-msm8998.c
> >>>> +++ b/drivers/clk/qcom/gcc-msm8998.c
> >>>> @@ -2742,25 +2742,25 @@ enum {
> >>>>    };
> >>>>    
> >>>>    static const struct qcom_reset_map gcc_msm8998_resets[] = {
> >>>> -    [GCC_BLSP1_QUP1_BCR] = { 0x102400 },
> >>>> -    [GCC_BLSP1_QUP2_BCR] = { 0x110592 },
> >>>> -    [GCC_BLSP1_QUP3_BCR] = { 0x118784 },
> >>>> -    [GCC_BLSP1_QUP4_BCR] = { 0x126976 },
> >>>> -    [GCC_BLSP1_QUP5_BCR] = { 0x135168 },
> >>>> -    [GCC_BLSP1_QUP6_BCR] = { 0x143360 },
> >>>> -    [GCC_BLSP2_QUP1_BCR] = { 0x155648 },
> >>>> -    [GCC_BLSP2_QUP2_BCR] = { 0x163840 },
> >>>> -    [GCC_BLSP2_QUP3_BCR] = { 0x172032 },
> >>>> -    [GCC_BLSP2_QUP4_BCR] = { 0x180224 },
> >>>> -    [GCC_BLSP2_QUP5_BCR] = { 0x188416 },
> >>>> -    [GCC_BLSP2_QUP6_BCR] = { 0x196608 },
> >>>> -    [GCC_PCIE_0_BCR] = { 0x438272 },
> >>>> -    [GCC_PDM_BCR] = { 0x208896 },
> >>>> -    [GCC_SDCC2_BCR] = { 0x81920 },
> >>>> -    [GCC_SDCC4_BCR] = { 0x90112 },
> >>>> -    [GCC_TSIF_BCR] = { 0x221184 },
> >>>> -    [GCC_UFS_BCR] = { 0x479232 },
> >>>> -    [GCC_USB_30_BCR] = { 0x61440 },
> >>>> +    [GCC_BLSP1_QUP1_BCR] = { 0x19000 },
> >>>> +    [GCC_BLSP1_QUP2_BCR] = { 0x1b000 },
> >>>> +    [GCC_BLSP1_QUP3_BCR] = { 0x1d000 },
> >>>> +    [GCC_BLSP1_QUP4_BCR] = { 0x1f000 },
> >>>> +    [GCC_BLSP1_QUP5_BCR] = { 0x21000 },
> >>>> +    [GCC_BLSP1_QUP6_BCR] = { 0x23000 },
> >>>> +    [GCC_BLSP2_QUP1_BCR] = { 0x26000 },
> >>>> +    [GCC_BLSP2_QUP2_BCR] = { 0x28000 },
> >>>> +    [GCC_BLSP2_QUP3_BCR] = { 0x2a000 },
> >>>> +    [GCC_BLSP2_QUP4_BCR] = { 0x2c000 },
> >>>> +    [GCC_BLSP2_QUP5_BCR] = { 0x2e000 },
> >>>> +    [GCC_BLSP2_QUP6_BCR] = { 0x30000 },
> >>>> +    [GCC_PCIE_0_BCR] = { 0x6c01c },
> >>>
> >>> I find GCC_PCIE_0_BCR at 0x6b000 and then GCC_PCIE_0_PHY_BCR at 0x6c01c.
> >>
> >> Doh.  Thanks for the double check.  GCC_PCIE_0_PHY_BCR is not defined in
> >> include/dt-bindings/clock/qcom,gcc-msm8998.h so I plan to leave it out
> >> until later.
> >>
> >> Expect a v2 shortly.
> > 
> > Will you add GCC_PCIE0_PHY_BCR shortly so we don't have to add it later
> > on when it becomes critical?
> > 
> 
> My plan was to let it sit until it becomes necessary.  I'm working on 
> USB and found that GCC_QUSB2PHY_PRIM_BCR, GCC_USB3_PHY_BCR, and 
> GCC_USB3PHY_PHY_BCR are also missing, so I suspect there are others.
> 
> Would you prefer I send a follow up that adds the PCIE phy and the USB 
> resets?

Yes please send a followup patch to add all the possible defines and
implementations that you can find. It makes future cross-tree merges
simpler.


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

* Re: [PATCH] clk: qcom: Fix MSM8998 resets
  2018-12-03 17:52         ` Stephen Boyd
@ 2018-12-03 17:58           ` Jeffrey Hugo
  0 siblings, 0 replies; 7+ messages in thread
From: Jeffrey Hugo @ 2018-12-03 17:58 UTC (permalink / raw)
  To: Stephen Boyd, Bjorn Andersson
  Cc: andy.gross, david.brown, mturquette, linux-arm-msm, linux-clk,
	linux-kernel

On 12/3/2018 10:52 AM, Stephen Boyd wrote:
> Quoting Jeffrey Hugo (2018-12-03 09:19:20)
>> On 12/3/2018 10:02 AM, Stephen Boyd wrote:
>>> Quoting Jeffrey Hugo (2018-12-03 08:08:46)
>>>> On 12/3/2018 8:55 AM, Bjorn Andersson wrote:
>>>>> On Mon 03 Dec 07:34 PST 2018, Jeffrey Hugo wrote:
>>>>>
>>>>>> The offsets for the defined BCR reset registers does not match the hardware
>>>>>> documentation.  Update the values to match the hardware documentation.
>>>>>>
>>>>>
>>>>> Sorry for not spotting this before.
>>>>>
>>>>>> Fixes: b5f5f525c547 (clk: qcom: Add MSM8998 Global Clock Control (GCC) driver)
>>>>>> Signed-off-by: Jeffrey Hugo <jhugo@codeaurora.org>
>>>>>> ---
>>>>>>     drivers/clk/qcom/gcc-msm8998.c | 38 +++++++++++++++++++-------------------
>>>>>>     1 file changed, 19 insertions(+), 19 deletions(-)
>>>>>>
>>>>>> diff --git a/drivers/clk/qcom/gcc-msm8998.c b/drivers/clk/qcom/gcc-msm8998.c
>>>>>> index 9f0ae40..01cc555 100644
>>>>>> --- a/drivers/clk/qcom/gcc-msm8998.c
>>>>>> +++ b/drivers/clk/qcom/gcc-msm8998.c
>>>>>> @@ -2742,25 +2742,25 @@ enum {
>>>>>>     };
>>>>>>     
>>>>>>     static const struct qcom_reset_map gcc_msm8998_resets[] = {
>>>>>> -    [GCC_BLSP1_QUP1_BCR] = { 0x102400 },
>>>>>> -    [GCC_BLSP1_QUP2_BCR] = { 0x110592 },
>>>>>> -    [GCC_BLSP1_QUP3_BCR] = { 0x118784 },
>>>>>> -    [GCC_BLSP1_QUP4_BCR] = { 0x126976 },
>>>>>> -    [GCC_BLSP1_QUP5_BCR] = { 0x135168 },
>>>>>> -    [GCC_BLSP1_QUP6_BCR] = { 0x143360 },
>>>>>> -    [GCC_BLSP2_QUP1_BCR] = { 0x155648 },
>>>>>> -    [GCC_BLSP2_QUP2_BCR] = { 0x163840 },
>>>>>> -    [GCC_BLSP2_QUP3_BCR] = { 0x172032 },
>>>>>> -    [GCC_BLSP2_QUP4_BCR] = { 0x180224 },
>>>>>> -    [GCC_BLSP2_QUP5_BCR] = { 0x188416 },
>>>>>> -    [GCC_BLSP2_QUP6_BCR] = { 0x196608 },
>>>>>> -    [GCC_PCIE_0_BCR] = { 0x438272 },
>>>>>> -    [GCC_PDM_BCR] = { 0x208896 },
>>>>>> -    [GCC_SDCC2_BCR] = { 0x81920 },
>>>>>> -    [GCC_SDCC4_BCR] = { 0x90112 },
>>>>>> -    [GCC_TSIF_BCR] = { 0x221184 },
>>>>>> -    [GCC_UFS_BCR] = { 0x479232 },
>>>>>> -    [GCC_USB_30_BCR] = { 0x61440 },
>>>>>> +    [GCC_BLSP1_QUP1_BCR] = { 0x19000 },
>>>>>> +    [GCC_BLSP1_QUP2_BCR] = { 0x1b000 },
>>>>>> +    [GCC_BLSP1_QUP3_BCR] = { 0x1d000 },
>>>>>> +    [GCC_BLSP1_QUP4_BCR] = { 0x1f000 },
>>>>>> +    [GCC_BLSP1_QUP5_BCR] = { 0x21000 },
>>>>>> +    [GCC_BLSP1_QUP6_BCR] = { 0x23000 },
>>>>>> +    [GCC_BLSP2_QUP1_BCR] = { 0x26000 },
>>>>>> +    [GCC_BLSP2_QUP2_BCR] = { 0x28000 },
>>>>>> +    [GCC_BLSP2_QUP3_BCR] = { 0x2a000 },
>>>>>> +    [GCC_BLSP2_QUP4_BCR] = { 0x2c000 },
>>>>>> +    [GCC_BLSP2_QUP5_BCR] = { 0x2e000 },
>>>>>> +    [GCC_BLSP2_QUP6_BCR] = { 0x30000 },
>>>>>> +    [GCC_PCIE_0_BCR] = { 0x6c01c },
>>>>>
>>>>> I find GCC_PCIE_0_BCR at 0x6b000 and then GCC_PCIE_0_PHY_BCR at 0x6c01c.
>>>>
>>>> Doh.  Thanks for the double check.  GCC_PCIE_0_PHY_BCR is not defined in
>>>> include/dt-bindings/clock/qcom,gcc-msm8998.h so I plan to leave it out
>>>> until later.
>>>>
>>>> Expect a v2 shortly.
>>>
>>> Will you add GCC_PCIE0_PHY_BCR shortly so we don't have to add it later
>>> on when it becomes critical?
>>>
>>
>> My plan was to let it sit until it becomes necessary.  I'm working on
>> USB and found that GCC_QUSB2PHY_PRIM_BCR, GCC_USB3_PHY_BCR, and
>> GCC_USB3PHY_PHY_BCR are also missing, so I suspect there are others.
>>
>> Would you prefer I send a follow up that adds the PCIE phy and the USB
>> resets?
> 
> Yes please send a followup patch to add all the possible defines and
> implementations that you can find. It makes future cross-tree merges
> simpler.
> 

Ok, will do.  Will need a bit of time to review the hardware 
documentation to enumerate a comprehensive list.  I'm thinking by the 
end of the week.

-- 
Jeffrey Hugo
Qualcomm Datacenter Technologies as an affiliate of Qualcomm 
Technologies, Inc.
Qualcomm Technologies, Inc. is a member of the
Code Aurora Forum, a Linux Foundation Collaborative Project.

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

end of thread, other threads:[~2018-12-03 17:58 UTC | newest]

Thread overview: 7+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2018-12-03 15:34 [PATCH] clk: qcom: Fix MSM8998 resets Jeffrey Hugo
2018-12-03 15:55 ` Bjorn Andersson
2018-12-03 16:08   ` Jeffrey Hugo
2018-12-03 17:02     ` Stephen Boyd
2018-12-03 17:19       ` Jeffrey Hugo
2018-12-03 17:52         ` Stephen Boyd
2018-12-03 17:58           ` Jeffrey Hugo

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).