Re: [PATCH v3 4/5] clk: basic gateable and fixed-rate clks

2011-11-26 Thread Turquette, Mike
On Sat, Nov 26, 2011 at 5:48 AM, Shawn Guo wrote: > On Mon, Nov 21, 2011 at 05:40:46PM -0800, Mike Turquette wrote: >> Many platforms support simple gateable clks and fixed-rate clks that >> should not be re-implemented by every platform. >> >> This patch introduces a gateable clk with a common pr

Re: [PATCH v3 3/5] clk: introduce the common clock framework

2011-11-26 Thread Turquette, Mike
On Sat, Nov 26, 2011 at 5:22 AM, Shawn Guo wrote: > On Mon, Nov 21, 2011 at 05:40:45PM -0800, Mike Turquette wrote: >> + * To prevent this consider setting the CLK_GATE_SET_RATE flag on any >> + * clk where you also set the CLK_PARENT_SET_RATE flag > > Eh, this is how flag CLK_GATE_SET_RATE is bor

Re: [PATCH v3 2/5] Documentation: common clk API

2011-11-26 Thread Turquette, Mike
On Sat, Nov 26, 2011 at 12:47 AM, Shawn Guo wrote: > On Wed, Nov 23, 2011 at 12:33:47PM -0800, Turquette, Mike wrote: >> On Tue, Nov 22, 2011 at 6:03 PM, Saravana Kannan >> wrote: >> > On 11/21/2011 05:40 PM, Mike Turquette wrote: >> > No strong opinion, but can we call this clk_ops for brevity?

Re: [PATCH v3 0/5] common clk framework

2011-11-26 Thread Turquette, Mike
On Fri, Nov 25, 2011 at 11:06 PM, Shawn Guo wrote: > On Mon, Nov 21, 2011 at 05:40:42PM -0800, Mike Turquette wrote: >>   .speaking of which, clk_set_rate has been overhauled and is now >> recursive. *collective groan*.  clk_set_rate is still simple for the >> common case of simply setting a singl

Re: [PATCH v3 4/5] clk: basic gateable and fixed-rate clks

2011-11-26 Thread Shawn Guo
One comment was missed. On Mon, Nov 21, 2011 at 05:40:46PM -0800, Mike Turquette wrote: [...] > +struct clk_hw_ops clk_hw_gate_set_enable_ops = { const? > + .enable = clk_hw_gate_enable_set, > + .disable = clk_hw_gate_disable_clear, > + .recalc_rate = clk_hw_gate_recalc_rate, > +

Was: Track the Linaro Roadmap on status.linaro.org

2011-11-26 Thread Fathi Boudra
On 26 November 2011 12:37, Raffaele Recalcati wrote: > 1 download monthly release for each official board (ubuntu, android) > 2 linaro-media-create it > 3 simple benchmark tests (boot is clean, video decoding, QT or Android > gui is responsive, browser) and report it > 4 keep a SD card for android

Re: [PATCH v3 4/5] clk: basic gateable and fixed-rate clks

2011-11-26 Thread Shawn Guo
On Mon, Nov 21, 2011 at 05:40:46PM -0800, Mike Turquette wrote: > Many platforms support simple gateable clks and fixed-rate clks that > should not be re-implemented by every platform. > > This patch introduces a gateable clk with a common programming model of > gate control via a write of 1 bit t

Re: [PATCH v3 3/5] clk: introduce the common clock framework

2011-11-26 Thread Shawn Guo
On Mon, Nov 21, 2011 at 05:40:45PM -0800, Mike Turquette wrote: [...] > +/** > + * DOC: Using the CLK_PARENT_SET_RATE flag > + * > + * __clk_set_rate changes the child's rate before the parent's to more > + * easily handle failure conditions. > + * > + * This means clk might run out of spec for a s

Re: Track the Linaro Roadmap on status.linaro.org

2011-11-26 Thread Raffaele Recalcati
Hi, > To support the new Linaro roadmap process, the Infrastructure team has > added new reports to status.linaro.org. > > You can find the status for the current quarter here and drill down > into the cards targeted for Q4. >    http://status.linaro.org/11.11/roadmap-2011Q4.html > > There's of co

Re: [PATCH v3 2/5] Documentation: common clk API

2011-11-26 Thread Shawn Guo
On Wed, Nov 23, 2011 at 12:33:47PM -0800, Turquette, Mike wrote: > On Tue, Nov 22, 2011 at 6:03 PM, Saravana Kannan > wrote: > > On 11/21/2011 05:40 PM, Mike Turquette wrote: [...] > >> +is modified slightly for brevity: > >> + > >> +struct clk { > >> +       const char              *name; > >>