Re: [PATCH] clk: add table lookup to mux

2013-03-21 Thread Peter De Schrijver
On Wed, Mar 20, 2013 at 04:51:58PM +0100, Mike Turquette wrote: > Quoting Peter De Schrijver (2013-03-20 02:49:57) > > On Wed, Mar 20, 2013 at 12:51:10AM +0100, Mike Turquette wrote: > > > Quoting Peter De Schrijver (2013-03-12 11:42:23) > > > > diff --git a/include/linux/clk-private.h b/include/li

Re: [PATCH] clk: add table lookup to mux

2013-03-20 Thread Peter De Schrijver
On Wed, Mar 20, 2013 at 12:51:10AM +0100, Mike Turquette wrote: > Quoting Peter De Schrijver (2013-03-12 11:42:23) > > diff --git a/include/linux/clk-private.h b/include/linux/clk-private.h > > index 9c7f580..53d39c2 100644 > > --- a/include/linux/clk-private.h > > +++ b/include/linux/clk-private.h

Re: [PATCH] clk: add table lookup to mux

2013-03-20 Thread Peter De Schrijver
On Tue, Mar 19, 2013 at 10:33:09PM +0100, Mike Turquette wrote: > Quoting Peter De Schrijver (2013-03-12 11:42:23) > > Add a table lookup feature to the mux clock. Also allow arbitrary masks > > instead of the width. This will be used by some clocks on Tegra114. Also > > adapt the tegra periph clk

Re: [PATCH] clk: add table lookup to mux

2013-03-19 Thread Mike Turquette
Quoting Peter De Schrijver (2013-03-12 11:42:23) > diff --git a/include/linux/clk-private.h b/include/linux/clk-private.h > index 9c7f580..53d39c2 100644 > --- a/include/linux/clk-private.h > +++ b/include/linux/clk-private.h > @@ -144,12 +144,13 @@ struct clk { > > #define DEFINE_CLK_MUX(_name,

Re: [PATCH] clk: add table lookup to mux

2013-03-19 Thread Stephen Warren
On 03/19/2013 03:37 PM, Mike Turquette wrote: > Quoting Stephen Warren (2013-03-12 11:53:46) >> On 03/12/2013 12:42 PM, Peter De Schrijver wrote: >>> Add a table lookup feature to the mux clock. Also allow arbitrary masks >>> instead of the width. This will be used by some clocks on Tegra114. Also

Re: [PATCH] clk: add table lookup to mux

2013-03-19 Thread Stephen Warren
On 03/19/2013 03:33 PM, Mike Turquette wrote: > Quoting Peter De Schrijver (2013-03-12 11:42:23) >> Add a table lookup feature to the mux clock. Also allow arbitrary masks >> instead of the width. This will be used by some clocks on Tegra114. Also >> adapt the tegra periph clk because it uses struc

Re: [PATCH] clk: add table lookup to mux

2013-03-19 Thread Mike Turquette
Quoting Stephen Warren (2013-03-12 11:53:46) > On 03/12/2013 12:42 PM, Peter De Schrijver wrote: > > Add a table lookup feature to the mux clock. Also allow arbitrary masks > > instead of the width. This will be used by some clocks on Tegra114. Also > > adapt the tegra periph clk because it uses st

Re: [PATCH] clk: add table lookup to mux

2013-03-19 Thread Mike Turquette
Quoting Peter De Schrijver (2013-03-12 11:42:23) > Add a table lookup feature to the mux clock. Also allow arbitrary masks > instead of the width. This will be used by some clocks on Tegra114. Also > adapt the tegra periph clk because it uses struct clk_mux directly. > > Signed-off-by: Peter De Sc

Re: [PATCH] clk: add table lookup to mux

2013-03-12 Thread Stephen Warren
On 03/12/2013 12:42 PM, Peter De Schrijver wrote: > Add a table lookup feature to the mux clock. Also allow arbitrary masks > instead of the width. This will be used by some clocks on Tegra114. Also > adapt the tegra periph clk because it uses struct clk_mux directly. > > Signed-off-by: Peter De S

[PATCH] clk: add table lookup to mux

2013-03-12 Thread Peter De Schrijver
Add a table lookup feature to the mux clock. Also allow arbitrary masks instead of the width. This will be used by some clocks on Tegra114. Also adapt the tegra periph clk because it uses struct clk_mux directly. Signed-off-by: Peter De Schrijver -- Mike, This is the same patch I posted before