Re: [PATCH 3/3] ARM: S3C24XX: select COMMON_CLK_SAMSUNG for S3C24XX

2014-02-26 Thread Heiko Stübner
Am Donnerstag, 27. Februar 2014, 10:48:26 schrieb Pankaj Dubey:
> On 02/27/2014 09:16 AM, Mike Turquette wrote:
> > Quoting Pankaj Dubey (2014-02-25 21:24:07)
> > 
> >> CC: Ben Dooks 
> >> CC: Kukjin Kim 
> >> CC: Russell King 
> >> Signed-off-by: Pankaj Dubey 
> >> ---
> >> 
> >>   arch/arm/mach-s3c24xx/Kconfig |3 +++
> >>   1 file changed, 3 insertions(+)
> >> 
> >> diff --git a/arch/arm/mach-s3c24xx/Kconfig
> >> b/arch/arm/mach-s3c24xx/Kconfig
> >> index 80373da..5cf82a1 100644
> >> --- a/arch/arm/mach-s3c24xx/Kconfig
> >> +++ b/arch/arm/mach-s3c24xx/Kconfig
> >> @@ -40,6 +40,7 @@ config CPU_S3C2410
> >> 
> >>   config CPU_S3C2412
> >>   
> >>  bool "SAMSUNG S3C2412"
> >>  select COMMON_CLK
> >> 
> >> +   select COMMON_CLK_SAMSUNG
> > 
> > I guess this depends on Heiko's "[PATCH 00/12] ARM: S3C24XX: convert
> > s3c2410, s3c2440 s3c2442 to common clock framework" series?
> > 
> > Regards,
> > Mike
> 
> Yes, this series is based on latest kgene/for-next branch where Heiko's
> series is merged.

Just to clarify, converted are the s3c2416/s3c2443 (first series) and s3c2412 
(second series), because the clockout for s3c2410 etc seems to need a bit more 
work. I've just moved two comon patches (shared plls and a platform change) 
from the s3c2410,et-all series into the s3c2412 one.

Both of these series are merged in kgenes tree as mentioned. And at this point 
I'm not sure if I will have the time to respin the s3c2410 series for 3.15.
Which might also be good to let all the other series touching samsung clock 
code settle.


Heiko

> 
> >>  select CPU_ARM926T
> >>  select CPU_LLSERIAL_S3C2440
> >>  select S3C2412_COMMON_CLK
> >> 
> >> @@ -51,6 +52,7 @@ config CPU_S3C2412
> >> 
> >>   config CPU_S3C2416
> >>   
> >>  bool "SAMSUNG S3C2416/S3C2450"
> >>  select COMMON_CLK
> >> 
> >> +   select COMMON_CLK_SAMSUNG
> >> 
> >>  select CPU_ARM926T
> >>  select CPU_LLSERIAL_S3C2440
> >>  select S3C2416_PM if PM
> >> 
> >> @@ -89,6 +91,7 @@ config CPU_S3C244X
> >> 
> >>   config CPU_S3C2443
> >>   
> >>  bool "SAMSUNG S3C2443"
> >>  select COMMON_CLK
> >> 
> >> +   select COMMON_CLK_SAMSUNG
> >> 
> >>  select CPU_ARM920T
> >>  select CPU_LLSERIAL_S3C2440
> >>  select S3C2443_COMMON_CLK
> >> 
> >> ___
> >> linux-arm-kernel mailing list
> >> linux-arm-ker...@lists.infradead.org
> >> http://lists.infradead.org/mailman/listinfo/linux-arm-kernel

--
To unsubscribe from this list: send the line "unsubscribe linux-samsung-soc" in
the body of a message to majord...@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html


Re: [PATCH 3/3] ARM: S3C24XX: select COMMON_CLK_SAMSUNG for S3C24XX

2014-02-26 Thread Pankaj Dubey

On 02/27/2014 09:16 AM, Mike Turquette wrote:

Quoting Pankaj Dubey (2014-02-25 21:24:07)

CC: Ben Dooks 
CC: Kukjin Kim 
CC: Russell King 
Signed-off-by: Pankaj Dubey 
---
  arch/arm/mach-s3c24xx/Kconfig |3 +++
  1 file changed, 3 insertions(+)

diff --git a/arch/arm/mach-s3c24xx/Kconfig b/arch/arm/mach-s3c24xx/Kconfig
index 80373da..5cf82a1 100644
--- a/arch/arm/mach-s3c24xx/Kconfig
+++ b/arch/arm/mach-s3c24xx/Kconfig
@@ -40,6 +40,7 @@ config CPU_S3C2410
  config CPU_S3C2412
 bool "SAMSUNG S3C2412"
 select COMMON_CLK
+   select COMMON_CLK_SAMSUNG

I guess this depends on Heiko's "[PATCH 00/12] ARM: S3C24XX: convert
s3c2410, s3c2440 s3c2442 to common clock framework" series?

Regards,
Mike


Yes, this series is based on latest kgene/for-next branch where Heiko's 
series is merged.



 select CPU_ARM926T
 select CPU_LLSERIAL_S3C2440
 select S3C2412_COMMON_CLK
@@ -51,6 +52,7 @@ config CPU_S3C2412
  config CPU_S3C2416
 bool "SAMSUNG S3C2416/S3C2450"
 select COMMON_CLK
+   select COMMON_CLK_SAMSUNG
 select CPU_ARM926T
 select CPU_LLSERIAL_S3C2440
 select S3C2416_PM if PM
@@ -89,6 +91,7 @@ config CPU_S3C244X
  config CPU_S3C2443
 bool "SAMSUNG S3C2443"
 select COMMON_CLK
+   select COMMON_CLK_SAMSUNG
 select CPU_ARM920T
 select CPU_LLSERIAL_S3C2440
 select S3C2443_COMMON_CLK
--
1.7.9.5


___
linux-arm-kernel mailing list
linux-arm-ker...@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/linux-arm-kernel



--
Best Regards,
Pankaj Dubey

--
To unsubscribe from this list: send the line "unsubscribe linux-samsung-soc" in
the body of a message to majord...@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html


Re: [PATCH 3/3] ARM: S3C24XX: select COMMON_CLK_SAMSUNG for S3C24XX

2014-02-26 Thread Mike Turquette
Quoting Pankaj Dubey (2014-02-25 21:24:07)
> CC: Ben Dooks 
> CC: Kukjin Kim 
> CC: Russell King 
> Signed-off-by: Pankaj Dubey 
> ---
>  arch/arm/mach-s3c24xx/Kconfig |3 +++
>  1 file changed, 3 insertions(+)
> 
> diff --git a/arch/arm/mach-s3c24xx/Kconfig b/arch/arm/mach-s3c24xx/Kconfig
> index 80373da..5cf82a1 100644
> --- a/arch/arm/mach-s3c24xx/Kconfig
> +++ b/arch/arm/mach-s3c24xx/Kconfig
> @@ -40,6 +40,7 @@ config CPU_S3C2410
>  config CPU_S3C2412
> bool "SAMSUNG S3C2412"
> select COMMON_CLK
> +   select COMMON_CLK_SAMSUNG

I guess this depends on Heiko's "[PATCH 00/12] ARM: S3C24XX: convert
s3c2410, s3c2440 s3c2442 to common clock framework" series?

Regards,
Mike

> select CPU_ARM926T
> select CPU_LLSERIAL_S3C2440
> select S3C2412_COMMON_CLK
> @@ -51,6 +52,7 @@ config CPU_S3C2412
>  config CPU_S3C2416
> bool "SAMSUNG S3C2416/S3C2450"
> select COMMON_CLK
> +   select COMMON_CLK_SAMSUNG
> select CPU_ARM926T
> select CPU_LLSERIAL_S3C2440
> select S3C2416_PM if PM
> @@ -89,6 +91,7 @@ config CPU_S3C244X
>  config CPU_S3C2443
> bool "SAMSUNG S3C2443"
> select COMMON_CLK
> +   select COMMON_CLK_SAMSUNG
> select CPU_ARM920T
> select CPU_LLSERIAL_S3C2440
> select S3C2443_COMMON_CLK
> -- 
> 1.7.9.5
> 
> 
> ___
> linux-arm-kernel mailing list
> linux-arm-ker...@lists.infradead.org
> http://lists.infradead.org/mailman/listinfo/linux-arm-kernel
--
To unsubscribe from this list: send the line "unsubscribe linux-samsung-soc" in
the body of a message to majord...@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html


Re: [PATCH V2 0/2] Add support for clocks in S5M8767

2014-02-26 Thread Mike Turquette
Quoting Tushar Behera (2014-02-18 22:24:34)
> S5M8767 chip has 3 crystal oscillators which are operated in the same
> as the crystal oscillators in S2MPS11. Extend s2mps11-clk driver to
> support clocks in S5M8767.
> 
> The patches are rebased on top of next-20130218.

These changes look good to me. Will these get picked up as part of a
Samsung clk pull request or would you prefer that I pick them
individually?

Regards,
Mike

> 
> Tushar Behera (2):
>   clk: clk-s2mps11: Refactor for including support for other MFD clocks
>   clk: clk-s2mps11: Add support for clocks in S5M8767 MFD
> 
>  drivers/clk/Kconfig   |6 --
>  drivers/clk/clk-s2mps11.c |   25 +
>  2 files changed, 25 insertions(+), 6 deletions(-)
> 
> -- 
> 1.7.9.5
> 
--
To unsubscribe from this list: send the line "unsubscribe linux-samsung-soc" in
the body of a message to majord...@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html