From mboxrd@z Thu Jan 1 00:00:00 1970 From: Kukjin Kim Subject: Re: [PATCH v2 0/6] Convert S3C2416 ad S3C2443 to common clock framework Date: Tue, 06 Aug 2013 02:05:15 +0900 Message-ID: <51FFDB4B.4030809@samsung.com> References: <201307100057.06061.heiko@sntech.de> Mime-Version: 1.0 Content-Type: text/plain; charset=UTF-8; format=flowed Content-Transfer-Encoding: QUOTED-PRINTABLE Return-path: Received: from mail-pa0-f45.google.com ([209.85.220.45]:48651 "EHLO mail-pa0-f45.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1752127Ab3HERFU (ORCPT ); Mon, 5 Aug 2013 13:05:20 -0400 Received: by mail-pa0-f45.google.com with SMTP id bg4so3538364pad.32 for ; Mon, 05 Aug 2013 10:05:19 -0700 (PDT) In-Reply-To: <201307100057.06061.heiko@sntech.de> Sender: linux-samsung-soc-owner@vger.kernel.org List-Id: linux-samsung-soc@vger.kernel.org To: =?UTF-8?B?SGVpa28gU3TDvGJuZXI=?= Cc: Kukjin Kim , mturquette@linaro.org, linux-arm-kernel@lists.infradead.org, linux-samsung-soc@vger.kernel.org, Thomas Abraham , t.figa@samsung.com, Russell King On 07/10/13 07:57, Heiko St=C3=BCbner wrote: > This series provides a clock driver for s3c2416, s3c2443 and s3c2450,= which > share a common clock tree, but differ fundamentally from earlier s3c2= 4xx > SoCs, and converts the mentioned SoCs to use it. > > The clock driver itself follows the same scheme established by all ot= her > Samsung clock drivers. > > It depends on the pwm cleanup series from Tomasz Figa, which gets rid= of the > declarations of the pwm-internal clocks. > > Test on both non-dt and dt s3c2416. > > Heiko Stuebner (6): > clk: samsung: move common plls registration into separate function > clk: samsung: fix error handling in pll register functions > clk: samsung: add plls used in s3c2416 and s3c2443 > ARM: S3C24XX: enable legacy clock code only when SAMSUNG_CLOCK > selected > clk: samsung: add clock-driver for s3c2416, s3c2443 and s3c2450 > ARM: S3C24XX: Convert s3c2416 and s3c2443 to common clock framewor= k > > .../bindings/clock/samsung,s3c2443-clock.txt | 48 ++ > arch/arm/boot/dts/s3c2416-smdk2416.dts | 7 + > arch/arm/boot/dts/s3c2416.dtsi | 42 ++ > arch/arm/mach-s3c24xx/Kconfig | 14 +- > arch/arm/mach-s3c24xx/Makefile | 5 +- > arch/arm/mach-s3c24xx/clock-s3c2416.c | 171 ----- > arch/arm/mach-s3c24xx/clock-s3c2443.c | 212 ------ > arch/arm/mach-s3c24xx/common-s3c2443.c | 675 ---------= ----------- > arch/arm/mach-s3c24xx/common.c | 20 +- > arch/arm/mach-s3c24xx/common.h | 8 + > arch/arm/mach-s3c24xx/mach-s3c2416-dt.c | 45 +- > arch/arm/mach-s3c24xx/mach-smdk2416.c | 9 +- > arch/arm/mach-s3c24xx/mach-smdk2443.c | 9 +- > drivers/clk/Kconfig | 1 + > drivers/clk/samsung/Kconfig | 2 + > drivers/clk/samsung/Makefile | 1 + > drivers/clk/samsung/clk-pll.c | 374 +++++++++= -- > drivers/clk/samsung/clk-pll.h | 8 + > drivers/clk/samsung/clk-s3c2443.c | 422 +++++++++= +++ > include/dt-bindings/clock/samsung,s3c2443-clock.h | 96 +++ > 20 files changed, 998 insertions(+), 1171 deletions(-) > create mode 100644 Documentation/devicetree/bindings/clock/samsung,= s3c2443-clock.txt > delete mode 100644 arch/arm/mach-s3c24xx/clock-s3c2416.c > delete mode 100644 arch/arm/mach-s3c24xx/clock-s3c2443.c > delete mode 100644 arch/arm/mach-s3c24xx/common-s3c2443.c > create mode 100644 drivers/clk/samsung/Kconfig > create mode 100644 drivers/clk/samsung/clk-s3c2443.c > create mode 100644 include/dt-bindings/clock/samsung,s3c2443-clock.= h > Heiko, please respin this series so that this could be sent to upstream= =20 for v3.12. Thanks, Kukjin From mboxrd@z Thu Jan 1 00:00:00 1970 From: kgene.kim@samsung.com (Kukjin Kim) Date: Tue, 06 Aug 2013 02:05:15 +0900 Subject: [PATCH v2 0/6] Convert S3C2416 ad S3C2443 to common clock framework In-Reply-To: <201307100057.06061.heiko@sntech.de> References: <201307100057.06061.heiko@sntech.de> Message-ID: <51FFDB4B.4030809@samsung.com> To: linux-arm-kernel@lists.infradead.org List-Id: linux-arm-kernel.lists.infradead.org On 07/10/13 07:57, Heiko St?bner wrote: > This series provides a clock driver for s3c2416, s3c2443 and s3c2450, which > share a common clock tree, but differ fundamentally from earlier s3c24xx > SoCs, and converts the mentioned SoCs to use it. > > The clock driver itself follows the same scheme established by all other > Samsung clock drivers. > > It depends on the pwm cleanup series from Tomasz Figa, which gets rid of the > declarations of the pwm-internal clocks. > > Test on both non-dt and dt s3c2416. > > Heiko Stuebner (6): > clk: samsung: move common plls registration into separate function > clk: samsung: fix error handling in pll register functions > clk: samsung: add plls used in s3c2416 and s3c2443 > ARM: S3C24XX: enable legacy clock code only when SAMSUNG_CLOCK > selected > clk: samsung: add clock-driver for s3c2416, s3c2443 and s3c2450 > ARM: S3C24XX: Convert s3c2416 and s3c2443 to common clock framework > > .../bindings/clock/samsung,s3c2443-clock.txt | 48 ++ > arch/arm/boot/dts/s3c2416-smdk2416.dts | 7 + > arch/arm/boot/dts/s3c2416.dtsi | 42 ++ > arch/arm/mach-s3c24xx/Kconfig | 14 +- > arch/arm/mach-s3c24xx/Makefile | 5 +- > arch/arm/mach-s3c24xx/clock-s3c2416.c | 171 ----- > arch/arm/mach-s3c24xx/clock-s3c2443.c | 212 ------ > arch/arm/mach-s3c24xx/common-s3c2443.c | 675 -------------------- > arch/arm/mach-s3c24xx/common.c | 20 +- > arch/arm/mach-s3c24xx/common.h | 8 + > arch/arm/mach-s3c24xx/mach-s3c2416-dt.c | 45 +- > arch/arm/mach-s3c24xx/mach-smdk2416.c | 9 +- > arch/arm/mach-s3c24xx/mach-smdk2443.c | 9 +- > drivers/clk/Kconfig | 1 + > drivers/clk/samsung/Kconfig | 2 + > drivers/clk/samsung/Makefile | 1 + > drivers/clk/samsung/clk-pll.c | 374 +++++++++-- > drivers/clk/samsung/clk-pll.h | 8 + > drivers/clk/samsung/clk-s3c2443.c | 422 ++++++++++++ > include/dt-bindings/clock/samsung,s3c2443-clock.h | 96 +++ > 20 files changed, 998 insertions(+), 1171 deletions(-) > create mode 100644 Documentation/devicetree/bindings/clock/samsung,s3c2443-clock.txt > delete mode 100644 arch/arm/mach-s3c24xx/clock-s3c2416.c > delete mode 100644 arch/arm/mach-s3c24xx/clock-s3c2443.c > delete mode 100644 arch/arm/mach-s3c24xx/common-s3c2443.c > create mode 100644 drivers/clk/samsung/Kconfig > create mode 100644 drivers/clk/samsung/clk-s3c2443.c > create mode 100644 include/dt-bindings/clock/samsung,s3c2443-clock.h > Heiko, please respin this series so that this could be sent to upstream for v3.12. Thanks, Kukjin