* Initial DT clock bindings
@ 2011-12-12 22:00 Grant Likely
[not found] ` <1323727236-4811-1-git-send-email-grant.likely-s3s/WqlpOiPyB63q8FvJNQ@public.gmane.org>
0 siblings, 1 reply; 3+ messages in thread
From: Grant Likely @ 2011-12-12 22:00 UTC (permalink / raw)
To: linux-kernel, devicetree-discuss
Cc: Mike Turquette, Sascha Hauer, Rob Herring, Shawn Guo
Hi everyone,
Here's my second posting of initial device tree bindings for clocks. I'm
a lot happier with how this is looking now, and Versatile is pretty much
entirely converted. In fact, the realview, integrator and vexpress platforms
are pretty close now too. Just for fun I went and converted Highbank also.
There is still stuff to clean up, and I want to add test cases for the new
clock framework, but otherwise I think it is pretty complete. There are
some changes to the binding documentation that you'll want to pay attention
to.
This series is based on v3.2-rc5 plus the of_parse_phandle_args() patches
that I posted a couple of hours ago.
.../devicetree/bindings/clock/clock-bindings.txt | 114 +++++++++++
.../devicetree/bindings/clock/fixed-clock.txt | 21 ++
arch/arm/Kconfig | 1 +
arch/arm/boot/dts/highbank.dts | 32 +++-
arch/arm/boot/dts/testcases/tests-phandle.dtsi | 2 +
arch/arm/boot/dts/versatile-ab.dts | 79 ++++++++
arch/arm/common/timer-sp.c | 72 ++++++-
arch/arm/include/asm/hardware/timer-sp.h | 2 +
arch/arm/mach-highbank/clock.c | 19 --
arch/arm/mach-highbank/core.h | 1 -
arch/arm/mach-highbank/highbank.c | 13 +-
arch/arm/mach-highbank/include/mach/clkdev.h | 11 +
arch/arm/mach-integrator/impd1.c | 30 +---
arch/arm/mach-integrator/include/mach/clkdev.h | 19 --
arch/arm/mach-integrator/integrator_cp.c | 21 +--
arch/arm/mach-realview/core.c | 22 +--
arch/arm/mach-realview/include/mach/clkdev.h | 10 -
arch/arm/mach-versatile/core.c | 61 +------
arch/arm/mach-versatile/include/mach/clkdev.h | 10 -
arch/arm/mach-versatile/versatile_dt.c | 39 ++++-
arch/arm/mach-vexpress/include/mach/clkdev.h | 9 -
arch/arm/mach-zynq/include/mach/clkdev.h | 10 -
arch/arm/plat-versatile/clock.c | 151 ++++++++++++++
arch/arm/plat-versatile/include/plat/clock.h | 34 ++++
drivers/clk/clkdev.c | 9 +
drivers/of/Kconfig | 6 +
drivers/of/Makefile | 1 +
drivers/of/base.c | 36 ++++
drivers/of/clock.c | 208 ++++++++++++++++++++
drivers/of/selftest.c | 29 +++
include/linux/of.h | 3 +
include/linux/of_clk.h | 41 ++++
32 files changed, 893 insertions(+), 223 deletions(-)
^ permalink raw reply [flat|nested] 3+ messages in thread
* Re: Initial DT clock bindings
[not found] ` <1323727236-4811-1-git-send-email-grant.likely-s3s/WqlpOiPyB63q8FvJNQ@public.gmane.org>
@ 2011-12-12 22:52 ` Rob Herring
[not found] ` <4EE6859F.2040807-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org>
0 siblings, 1 reply; 3+ messages in thread
From: Rob Herring @ 2011-12-12 22:52 UTC (permalink / raw)
To: Grant Likely
Cc: devicetree-discuss-uLR06cmDAlY/bJ5BZ2RsiQ,
linux-kernel-u79uwXL29TY76Z2rM5mHXA, Sascha Hauer, Mike Turquette
On 12/12/2011 04:00 PM, Grant Likely wrote:
> Hi everyone,
>
> Here's my second posting of initial device tree bindings for clocks. I'm
> a lot happier with how this is looking now, and Versatile is pretty much
> entirely converted. In fact, the realview, integrator and vexpress platforms
> are pretty close now too. Just for fun I went and converted Highbank also.
Thanks! I'll give it a spin.
> There is still stuff to clean up, and I want to add test cases for the new
> clock framework, but otherwise I think it is pretty complete. There are
> some changes to the binding documentation that you'll want to pay attention
> to.
>
> This series is based on v3.2-rc5 plus the of_parse_phandle_args() patches
> that I posted a couple of hours ago.
>
Where? I'm not seeing them on devicetree-discuss.
Can you publish this series on your git tree?
Rob
>
> .../devicetree/bindings/clock/clock-bindings.txt | 114 +++++++++++
> .../devicetree/bindings/clock/fixed-clock.txt | 21 ++
> arch/arm/Kconfig | 1 +
> arch/arm/boot/dts/highbank.dts | 32 +++-
> arch/arm/boot/dts/testcases/tests-phandle.dtsi | 2 +
> arch/arm/boot/dts/versatile-ab.dts | 79 ++++++++
> arch/arm/common/timer-sp.c | 72 ++++++-
> arch/arm/include/asm/hardware/timer-sp.h | 2 +
> arch/arm/mach-highbank/clock.c | 19 --
> arch/arm/mach-highbank/core.h | 1 -
> arch/arm/mach-highbank/highbank.c | 13 +-
> arch/arm/mach-highbank/include/mach/clkdev.h | 11 +
> arch/arm/mach-integrator/impd1.c | 30 +---
> arch/arm/mach-integrator/include/mach/clkdev.h | 19 --
> arch/arm/mach-integrator/integrator_cp.c | 21 +--
> arch/arm/mach-realview/core.c | 22 +--
> arch/arm/mach-realview/include/mach/clkdev.h | 10 -
> arch/arm/mach-versatile/core.c | 61 +------
> arch/arm/mach-versatile/include/mach/clkdev.h | 10 -
> arch/arm/mach-versatile/versatile_dt.c | 39 ++++-
> arch/arm/mach-vexpress/include/mach/clkdev.h | 9 -
> arch/arm/mach-zynq/include/mach/clkdev.h | 10 -
> arch/arm/plat-versatile/clock.c | 151 ++++++++++++++
> arch/arm/plat-versatile/include/plat/clock.h | 34 ++++
> drivers/clk/clkdev.c | 9 +
> drivers/of/Kconfig | 6 +
> drivers/of/Makefile | 1 +
> drivers/of/base.c | 36 ++++
> drivers/of/clock.c | 208 ++++++++++++++++++++
> drivers/of/selftest.c | 29 +++
> include/linux/of.h | 3 +
> include/linux/of_clk.h | 41 ++++
> 32 files changed, 893 insertions(+), 223 deletions(-)
>
> _______________________________________________
> devicetree-discuss mailing list
> devicetree-discuss-uLR06cmDAlY/bJ5BZ2RsiQ@public.gmane.org
> https://lists.ozlabs.org/listinfo/devicetree-discuss
^ permalink raw reply [flat|nested] 3+ messages in thread
* Re: Initial DT clock bindings
[not found] ` <4EE6859F.2040807-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org>
@ 2012-01-11 23:57 ` Simon Glass
0 siblings, 0 replies; 3+ messages in thread
From: Simon Glass @ 2012-01-11 23:57 UTC (permalink / raw)
To: Rob Herring
Cc: devicetree-discuss-uLR06cmDAlY/bJ5BZ2RsiQ,
linux-kernel-u79uwXL29TY76Z2rM5mHXA, Sascha Hauer, Mike Turquette
Hi Grant,
On Mon, Dec 12, 2011 at 2:52 PM, Rob Herring <robherring2-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org> wrote:
> On 12/12/2011 04:00 PM, Grant Likely wrote:
>> Hi everyone,
>>
>> Here's my second posting of initial device tree bindings for clocks. I'm
>> a lot happier with how this is looking now, and Versatile is pretty much
>> entirely converted. In fact, the realview, integrator and vexpress platforms
>> are pretty close now too. Just for fun I went and converted Highbank also.
>
> Thanks! I'll give it a spin.
>
>> There is still stuff to clean up, and I want to add test cases for the new
>> clock framework, but otherwise I think it is pretty complete. There are
>> some changes to the binding documentation that you'll want to pay attention
>> to.
>>
>> This series is based on v3.2-rc5 plus the of_parse_phandle_args() patches
>> that I posted a couple of hours ago.
>>
> Where? I'm not seeing them on devicetree-discuss.
>
> Can you publish this series on your git tree?
>
> Rob
I am trying to find this series - I cannot see it on the mailing list.
Can you please repost it or provide a pointer?
Thanks,
Simon
>
>>
>> .../devicetree/bindings/clock/clock-bindings.txt | 114 +++++++++++
>> .../devicetree/bindings/clock/fixed-clock.txt | 21 ++
>> arch/arm/Kconfig | 1 +
>> arch/arm/boot/dts/highbank.dts | 32 +++-
>> arch/arm/boot/dts/testcases/tests-phandle.dtsi | 2 +
>> arch/arm/boot/dts/versatile-ab.dts | 79 ++++++++
>> arch/arm/common/timer-sp.c | 72 ++++++-
>> arch/arm/include/asm/hardware/timer-sp.h | 2 +
>> arch/arm/mach-highbank/clock.c | 19 --
>> arch/arm/mach-highbank/core.h | 1 -
>> arch/arm/mach-highbank/highbank.c | 13 +-
>> arch/arm/mach-highbank/include/mach/clkdev.h | 11 +
>> arch/arm/mach-integrator/impd1.c | 30 +---
>> arch/arm/mach-integrator/include/mach/clkdev.h | 19 --
>> arch/arm/mach-integrator/integrator_cp.c | 21 +--
>> arch/arm/mach-realview/core.c | 22 +--
>> arch/arm/mach-realview/include/mach/clkdev.h | 10 -
>> arch/arm/mach-versatile/core.c | 61 +------
>> arch/arm/mach-versatile/include/mach/clkdev.h | 10 -
>> arch/arm/mach-versatile/versatile_dt.c | 39 ++++-
>> arch/arm/mach-vexpress/include/mach/clkdev.h | 9 -
>> arch/arm/mach-zynq/include/mach/clkdev.h | 10 -
>> arch/arm/plat-versatile/clock.c | 151 ++++++++++++++
>> arch/arm/plat-versatile/include/plat/clock.h | 34 ++++
>> drivers/clk/clkdev.c | 9 +
>> drivers/of/Kconfig | 6 +
>> drivers/of/Makefile | 1 +
>> drivers/of/base.c | 36 ++++
>> drivers/of/clock.c | 208 ++++++++++++++++++++
>> drivers/of/selftest.c | 29 +++
>> include/linux/of.h | 3 +
>> include/linux/of_clk.h | 41 ++++
>> 32 files changed, 893 insertions(+), 223 deletions(-)
>>
>> _______________________________________________
>> devicetree-discuss mailing list
>> devicetree-discuss-uLR06cmDAlY/bJ5BZ2RsiQ@public.gmane.org
>> https://lists.ozlabs.org/listinfo/devicetree-discuss
>
> _______________________________________________
> devicetree-discuss mailing list
> devicetree-discuss-uLR06cmDAlY/bJ5BZ2RsiQ@public.gmane.org
> https://lists.ozlabs.org/listinfo/devicetree-discuss
^ permalink raw reply [flat|nested] 3+ messages in thread
end of thread, other threads:[~2012-01-11 23:57 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2011-12-12 22:00 Initial DT clock bindings Grant Likely
[not found] ` <1323727236-4811-1-git-send-email-grant.likely-s3s/WqlpOiPyB63q8FvJNQ@public.gmane.org>
2011-12-12 22:52 ` Rob Herring
[not found] ` <4EE6859F.2040807-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org>
2012-01-11 23:57 ` Simon Glass
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).