All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH] clk: gxbb: expose CLKID_MMC_PCLK
@ 2016-07-06 23:07 ` Kevin Hilman
  0 siblings, 0 replies; 9+ messages in thread
From: Kevin Hilman @ 2016-07-06 23:07 UTC (permalink / raw)
  To: linus-amlogic

The MMC_PCLK is needed for the SD/eMMC driver.

Signed-off-by: Kevin Hilman <khilman@baylibre.com>
---
 include/dt-bindings/clock/gxbb-clkc.h | 1 +
 1 file changed, 1 insertion(+)

diff --git a/include/dt-bindings/clock/gxbb-clkc.h b/include/dt-bindings/clock/gxbb-clkc.h
index f889d80246cb..5eb69ec74f6b 100644
--- a/include/dt-bindings/clock/gxbb-clkc.h
+++ b/include/dt-bindings/clock/gxbb-clkc.h
@@ -8,5 +8,6 @@
 #define CLKID_CPUCLK		1
 #define CLKID_CLK81		12
 #define CLKID_ETH		36
+#define CLKID_MMC_PCLK		66
 
 #endif /* __GXBB_CLKC_H */
-- 
2.9.0

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

* [PATCH] clk: gxbb: expose CLKID_MMC_PCLK
@ 2016-07-06 23:07 ` Kevin Hilman
  0 siblings, 0 replies; 9+ messages in thread
From: Kevin Hilman @ 2016-07-06 23:07 UTC (permalink / raw)
  To: Mike Turquette, Stephen Boyd; +Cc: linux-clk, linux-amlogic, linux-arm-kernel

The MMC_PCLK is needed for the SD/eMMC driver.

Signed-off-by: Kevin Hilman <khilman@baylibre.com>
---
 include/dt-bindings/clock/gxbb-clkc.h | 1 +
 1 file changed, 1 insertion(+)

diff --git a/include/dt-bindings/clock/gxbb-clkc.h b/include/dt-bindings/clock/gxbb-clkc.h
index f889d80246cb..5eb69ec74f6b 100644
--- a/include/dt-bindings/clock/gxbb-clkc.h
+++ b/include/dt-bindings/clock/gxbb-clkc.h
@@ -8,5 +8,6 @@
 #define CLKID_CPUCLK		1
 #define CLKID_CLK81		12
 #define CLKID_ETH		36
+#define CLKID_MMC_PCLK		66
 
 #endif /* __GXBB_CLKC_H */
-- 
2.9.0

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

* [PATCH] clk: gxbb: expose CLKID_MMC_PCLK
@ 2016-07-06 23:07 ` Kevin Hilman
  0 siblings, 0 replies; 9+ messages in thread
From: Kevin Hilman @ 2016-07-06 23:07 UTC (permalink / raw)
  To: linux-arm-kernel

The MMC_PCLK is needed for the SD/eMMC driver.

Signed-off-by: Kevin Hilman <khilman@baylibre.com>
---
 include/dt-bindings/clock/gxbb-clkc.h | 1 +
 1 file changed, 1 insertion(+)

diff --git a/include/dt-bindings/clock/gxbb-clkc.h b/include/dt-bindings/clock/gxbb-clkc.h
index f889d80246cb..5eb69ec74f6b 100644
--- a/include/dt-bindings/clock/gxbb-clkc.h
+++ b/include/dt-bindings/clock/gxbb-clkc.h
@@ -8,5 +8,6 @@
 #define CLKID_CPUCLK		1
 #define CLKID_CLK81		12
 #define CLKID_ETH		36
+#define CLKID_MMC_PCLK		66
 
 #endif /* __GXBB_CLKC_H */
-- 
2.9.0

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

* [PATCH] clk: gxbb: expose CLKID_MMC_PCLK
  2016-07-06 23:07 ` Kevin Hilman
  (?)
@ 2016-07-07  0:06   ` Michael Turquette
  -1 siblings, 0 replies; 9+ messages in thread
From: Michael Turquette @ 2016-07-07  0:06 UTC (permalink / raw)
  To: linus-amlogic

Hi Kevin,

Quoting Kevin Hilman (2016-07-06 16:07:49)
> The MMC_PCLK is needed for the SD/eMMC driver.
> 
> Signed-off-by: Kevin Hilman <khilman@baylibre.com>
> ---
>  include/dt-bindings/clock/gxbb-clkc.h | 1 +
>  1 file changed, 1 insertion(+)
> 
> diff --git a/include/dt-bindings/clock/gxbb-clkc.h b/include/dt-bindings/clock/gxbb-clkc.h
> index f889d80246cb..5eb69ec74f6b 100644
> --- a/include/dt-bindings/clock/gxbb-clkc.h
> +++ b/include/dt-bindings/clock/gxbb-clkc.h
> @@ -8,5 +8,6 @@
>  #define CLKID_CPUCLK           1
>  #define CLKID_CLK81            12
>  #define CLKID_ETH              36
> +#define CLKID_MMC_PCLK         66

I think you're missing removal of the duplicate macro as well:



diff --git a/drivers/clk/meson/gxbb.h b/drivers/clk/meson/gxbb.h
index a2adf3448b59..f0fab2286c18 100644
--- a/drivers/clk/meson/gxbb.h
+++ b/drivers/clk/meson/gxbb.h
@@ -234,7 +234,7 @@
 #define CLKID_HDMI_PCLK		  63
 #define CLKID_USB1_DDR_BRIDGE	  64
 #define CLKID_USB0_DDR_BRIDGE	  65
-#define CLKID_MMC_PCLK		  66
+/* CLKID_MMC_PCLK */
 #define CLKID_DVIN		  67
 #define CLKID_UART2		  68
 #define CLKID_SANA		  69



Regards,
Mike

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

* Re: [PATCH] clk: gxbb: expose CLKID_MMC_PCLK
@ 2016-07-07  0:06   ` Michael Turquette
  0 siblings, 0 replies; 9+ messages in thread
From: Michael Turquette @ 2016-07-07  0:06 UTC (permalink / raw)
  To: Kevin Hilman, Stephen Boyd; +Cc: linux-clk, linux-amlogic, linux-arm-kernel

Hi Kevin,

Quoting Kevin Hilman (2016-07-06 16:07:49)
> The MMC_PCLK is needed for the SD/eMMC driver.
> =

> Signed-off-by: Kevin Hilman <khilman@baylibre.com>
> ---
>  include/dt-bindings/clock/gxbb-clkc.h | 1 +
>  1 file changed, 1 insertion(+)
> =

> diff --git a/include/dt-bindings/clock/gxbb-clkc.h b/include/dt-bindings/=
clock/gxbb-clkc.h
> index f889d80246cb..5eb69ec74f6b 100644
> --- a/include/dt-bindings/clock/gxbb-clkc.h
> +++ b/include/dt-bindings/clock/gxbb-clkc.h
> @@ -8,5 +8,6 @@
>  #define CLKID_CPUCLK           1
>  #define CLKID_CLK81            12
>  #define CLKID_ETH              36
> +#define CLKID_MMC_PCLK         66

I think you're missing removal of the duplicate macro as well:



diff --git a/drivers/clk/meson/gxbb.h b/drivers/clk/meson/gxbb.h
index a2adf3448b59..f0fab2286c18 100644
--- a/drivers/clk/meson/gxbb.h
+++ b/drivers/clk/meson/gxbb.h
@@ -234,7 +234,7 @@
 #define CLKID_HDMI_PCLK		  63
 #define CLKID_USB1_DDR_BRIDGE	  64
 #define CLKID_USB0_DDR_BRIDGE	  65
-#define CLKID_MMC_PCLK		  66
+/* CLKID_MMC_PCLK */
 #define CLKID_DVIN		  67
 #define CLKID_UART2		  68
 #define CLKID_SANA		  69



Regards,
Mike

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

* [PATCH] clk: gxbb: expose CLKID_MMC_PCLK
@ 2016-07-07  0:06   ` Michael Turquette
  0 siblings, 0 replies; 9+ messages in thread
From: Michael Turquette @ 2016-07-07  0:06 UTC (permalink / raw)
  To: linux-arm-kernel

Hi Kevin,

Quoting Kevin Hilman (2016-07-06 16:07:49)
> The MMC_PCLK is needed for the SD/eMMC driver.
> 
> Signed-off-by: Kevin Hilman <khilman@baylibre.com>
> ---
>  include/dt-bindings/clock/gxbb-clkc.h | 1 +
>  1 file changed, 1 insertion(+)
> 
> diff --git a/include/dt-bindings/clock/gxbb-clkc.h b/include/dt-bindings/clock/gxbb-clkc.h
> index f889d80246cb..5eb69ec74f6b 100644
> --- a/include/dt-bindings/clock/gxbb-clkc.h
> +++ b/include/dt-bindings/clock/gxbb-clkc.h
> @@ -8,5 +8,6 @@
>  #define CLKID_CPUCLK           1
>  #define CLKID_CLK81            12
>  #define CLKID_ETH              36
> +#define CLKID_MMC_PCLK         66

I think you're missing removal of the duplicate macro as well:



diff --git a/drivers/clk/meson/gxbb.h b/drivers/clk/meson/gxbb.h
index a2adf3448b59..f0fab2286c18 100644
--- a/drivers/clk/meson/gxbb.h
+++ b/drivers/clk/meson/gxbb.h
@@ -234,7 +234,7 @@
 #define CLKID_HDMI_PCLK		  63
 #define CLKID_USB1_DDR_BRIDGE	  64
 #define CLKID_USB0_DDR_BRIDGE	  65
-#define CLKID_MMC_PCLK		  66
+/* CLKID_MMC_PCLK */
 #define CLKID_DVIN		  67
 #define CLKID_UART2		  68
 #define CLKID_SANA		  69



Regards,
Mike

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

* [PATCH] clk: gxbb: expose CLKID_MMC_PCLK
  2016-07-07  0:06   ` Michael Turquette
  (?)
@ 2016-07-07  3:38     ` Kevin Hilman
  -1 siblings, 0 replies; 9+ messages in thread
From: Kevin Hilman @ 2016-07-07  3:38 UTC (permalink / raw)
  To: linus-amlogic

Michael Turquette <mturquette@baylibre.com> writes:

> Hi Kevin,
>
> Quoting Kevin Hilman (2016-07-06 16:07:49)
>> The MMC_PCLK is needed for the SD/eMMC driver.
>> 
>> Signed-off-by: Kevin Hilman <khilman@baylibre.com>
>> ---
>>  include/dt-bindings/clock/gxbb-clkc.h | 1 +
>>  1 file changed, 1 insertion(+)
>> 
>> diff --git a/include/dt-bindings/clock/gxbb-clkc.h b/include/dt-bindings/clock/gxbb-clkc.h
>> index f889d80246cb..5eb69ec74f6b 100644
>> --- a/include/dt-bindings/clock/gxbb-clkc.h
>> +++ b/include/dt-bindings/clock/gxbb-clkc.h
>> @@ -8,5 +8,6 @@
>>  #define CLKID_CPUCLK           1
>>  #define CLKID_CLK81            12
>>  #define CLKID_ETH              36
>> +#define CLKID_MMC_PCLK         66
>
> I think you're missing removal of the duplicate macro as well:

Er, yup.  Re-spin coming right up.

Kevin

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

* Re: [PATCH] clk: gxbb: expose CLKID_MMC_PCLK
@ 2016-07-07  3:38     ` Kevin Hilman
  0 siblings, 0 replies; 9+ messages in thread
From: Kevin Hilman @ 2016-07-07  3:38 UTC (permalink / raw)
  To: Michael Turquette
  Cc: Stephen Boyd, linux-clk, linux-amlogic, linux-arm-kernel

Michael Turquette <mturquette@baylibre.com> writes:

> Hi Kevin,
>
> Quoting Kevin Hilman (2016-07-06 16:07:49)
>> The MMC_PCLK is needed for the SD/eMMC driver.
>> 
>> Signed-off-by: Kevin Hilman <khilman@baylibre.com>
>> ---
>>  include/dt-bindings/clock/gxbb-clkc.h | 1 +
>>  1 file changed, 1 insertion(+)
>> 
>> diff --git a/include/dt-bindings/clock/gxbb-clkc.h b/include/dt-bindings/clock/gxbb-clkc.h
>> index f889d80246cb..5eb69ec74f6b 100644
>> --- a/include/dt-bindings/clock/gxbb-clkc.h
>> +++ b/include/dt-bindings/clock/gxbb-clkc.h
>> @@ -8,5 +8,6 @@
>>  #define CLKID_CPUCLK           1
>>  #define CLKID_CLK81            12
>>  #define CLKID_ETH              36
>> +#define CLKID_MMC_PCLK         66
>
> I think you're missing removal of the duplicate macro as well:

Er, yup.  Re-spin coming right up.

Kevin

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

* [PATCH] clk: gxbb: expose CLKID_MMC_PCLK
@ 2016-07-07  3:38     ` Kevin Hilman
  0 siblings, 0 replies; 9+ messages in thread
From: Kevin Hilman @ 2016-07-07  3:38 UTC (permalink / raw)
  To: linux-arm-kernel

Michael Turquette <mturquette@baylibre.com> writes:

> Hi Kevin,
>
> Quoting Kevin Hilman (2016-07-06 16:07:49)
>> The MMC_PCLK is needed for the SD/eMMC driver.
>> 
>> Signed-off-by: Kevin Hilman <khilman@baylibre.com>
>> ---
>>  include/dt-bindings/clock/gxbb-clkc.h | 1 +
>>  1 file changed, 1 insertion(+)
>> 
>> diff --git a/include/dt-bindings/clock/gxbb-clkc.h b/include/dt-bindings/clock/gxbb-clkc.h
>> index f889d80246cb..5eb69ec74f6b 100644
>> --- a/include/dt-bindings/clock/gxbb-clkc.h
>> +++ b/include/dt-bindings/clock/gxbb-clkc.h
>> @@ -8,5 +8,6 @@
>>  #define CLKID_CPUCLK           1
>>  #define CLKID_CLK81            12
>>  #define CLKID_ETH              36
>> +#define CLKID_MMC_PCLK         66
>
> I think you're missing removal of the duplicate macro as well:

Er, yup.  Re-spin coming right up.

Kevin

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

end of thread, other threads:[~2016-07-07  3:38 UTC | newest]

Thread overview: 9+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2016-07-06 23:07 [PATCH] clk: gxbb: expose CLKID_MMC_PCLK Kevin Hilman
2016-07-06 23:07 ` Kevin Hilman
2016-07-06 23:07 ` Kevin Hilman
2016-07-07  0:06 ` Michael Turquette
2016-07-07  0:06   ` Michael Turquette
2016-07-07  0:06   ` Michael Turquette
2016-07-07  3:38   ` Kevin Hilman
2016-07-07  3:38     ` Kevin Hilman
2016-07-07  3:38     ` Kevin Hilman

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.