Re: [PATCH V2 3/6] thermal: Add generic cpuhotplug cooling implementation

2012-03-20 Thread Amit Kachhap
On 19 March 2012 17:15, Srivatsa S. Bhat srivatsa.b...@linux.vnet.ibm.com wrote: On 03/19/2012 11:47 AM, Amit Daniel Kachhap wrote: This patch adds support for generic cpu thermal cooling low level implementations using cpuhotplug based on the thermal level requested from user. Different cpu

Re: LAVA Downtime Planned

2012-03-20 Thread Dave Pigott
Just a reminder to everyone that I will start decommissioning the toolchain server and lava cloud tomorrow morning, and then LAVA will go offline on Thursday morning. If all goes according to plan then a limited LAVA service should be available late on Friday, and I will work across the weekend

ci.linaro.org planned downtime.

2012-03-20 Thread James Tunnicliffe
Hi, It is my intention to take ci.linaro.org offline for about 15 minutes at 13:45 UTC (http://www.worldtimeserver.com/current_time_in_UTC.aspx) so we can duplicate the server and start moving it to a larger EC2 instance. Users will know that ci.linaro.org has been running very slowly for a while

Snowball V8 USB OTG broken

2012-03-20 Thread adnan ali
Hi, I started working on snowball v8 development board to investigate usb otg. My initial effort didn't gave me any result. I started investigating otg driver it seems that it starts in idle mode and then update its status to peripheral mode based on line status. Which in this case should go

Re: [PATCH v7 2/3] clk: introduce the common clock framework

2012-03-20 Thread Shawn Guo
On Thu, Mar 15, 2012 at 11:11:19PM -0700, Mike Turquette wrote: ... +struct clk_ops { + int (*prepare)(struct clk_hw *hw); + void(*unprepare)(struct clk_hw *hw); + int (*enable)(struct clk_hw *hw); + void(*disable)(struct clk_hw

Re: [PATCH v7 2/3] clk: introduce the common clock framework

2012-03-20 Thread Turquette, Mike
On Tue, Mar 20, 2012 at 7:02 AM, Shawn Guo shawn@linaro.org wrote: On Thu, Mar 15, 2012 at 11:11:19PM -0700, Mike Turquette wrote: ... +struct clk_ops { +     int             (*prepare)(struct clk_hw *hw); +     void            (*unprepare)(struct clk_hw *hw); +     int            

Re: [PATCH v7 2/3] clk: introduce the common clock framework

2012-03-20 Thread Turquette, Mike
On Tue, Mar 20, 2012 at 10:46 AM, Saravana Kannan skan...@codeaurora.org wrote: On Tue, March 20, 2012 7:02 am, Shawn Guo wrote: On Thu, Mar 15, 2012 at 11:11:19PM -0700, Mike Turquette wrote: ... +struct clk_ops { +    int             (*prepare)(struct clk_hw *hw); +    void            

Fwd: Re: Linux 2.6.35.3 Kernel for ARM and SATA problems

2012-03-20 Thread Zygmunt Krynicki
Forwarding a post from debian-arm. I think I may be affected by this bug. Could anyone help me check if this still applies to 3.1.1-1400-linaro-lt-mx5. Best regards ZK -- Wiadomość oryginalna -- Temat: Re: Linux 2.6.35.3 Kernel for ARM and SATA problems Odesłano-Data: Tue, 20 Mar

Re: [PATCH v7 1/3] Documentation: common clk API

2012-03-20 Thread Nicolas Pitre
On Tue, 20 Mar 2012, Paul Walmsley wrote: We need to indicate in some way that the existing code and API is very likely to change in ways that could involve quite a bit of work for adopters. [...] Anyway. It is okay if we want to have some starter common clock framework in mainline;

Re: [PATCH v7 2/3] clk: introduce the common clock framework

2012-03-20 Thread Shawn Guo
On 21 March 2012 07:46, Turquette, Mike mturque...@ti.com wrote: ... As mentioned above, you'll still need to check for CLK_SET_RATE_PARENT in your .round_rate implementation with __clk_get_flags(hw-clk). For my particular case, the clk is PLL with fixed rate clk (oscillator) as parent. It's