Re: [PATCH 1/2] clk: Add composite clock type

2013-01-18 Thread Mike Turquette
Quoting Prashant Gaikwad (2013-01-03 21:51:45) > Not all clocks are required to be decomposed into basic clock > types but at the same time want to use the functionality > provided by these basic clock types instead of duplicating. > > For example, Tegra SoC has ~100 clocks which can be decomposed

Re: [PATCH 1/2] clk: Add composite clock type

2013-01-10 Thread Stephen Boyd
On 01/04/13 18:49, Prashant Gaikwad wrote: > On Saturday 05 January 2013 03:48 AM, Stephen Boyd wrote: >> On 01/03/13 21:51, Prashant Gaikwad wrote: >>> diff --git a/drivers/clk/Makefile b/drivers/clk/Makefile >>> index f0b269a..baf7608 100644 >>> --- a/drivers/clk/Makefile >>> +++ b/drivers/clk/Ma

Re: [PATCH 1/2] clk: Add composite clock type

2013-01-04 Thread Prashant Gaikwad
On Saturday 05 January 2013 03:48 AM, Stephen Boyd wrote: On 01/03/13 21:51, Prashant Gaikwad wrote: diff --git a/drivers/clk/Makefile b/drivers/clk/Makefile index f0b269a..baf7608 100644 --- a/drivers/clk/Makefile +++ b/drivers/clk/Makefile @@ -2,7 +2,8 @@ obj-$(CONFIG_HAVE_CLK)

Re: [PATCH 1/2] clk: Add composite clock type

2013-01-04 Thread Stephen Boyd
On 01/03/13 21:51, Prashant Gaikwad wrote: > diff --git a/drivers/clk/Makefile b/drivers/clk/Makefile > index f0b269a..baf7608 100644 > --- a/drivers/clk/Makefile > +++ b/drivers/clk/Makefile > @@ -2,7 +2,8 @@ > obj-$(CONFIG_HAVE_CLK) += clk-devres.o > obj-$(CONFIG_CLKDEV_LOOKUP) +

[PATCH 1/2] clk: Add composite clock type

2013-01-03 Thread Prashant Gaikwad
Not all clocks are required to be decomposed into basic clock types but at the same time want to use the functionality provided by these basic clock types instead of duplicating. For example, Tegra SoC has ~100 clocks which can be decomposed into Mux -> Div -> Gate clock types making the clock cou