Re: [PATCH 2/5] clk: prevent spurious parent rate propagation

2012-05-07 Thread Sascha Hauer
On Sun, May 06, 2012 at 10:08:27PM -0700, Mike Turquette wrote: Patch 'clk: always pass parent_rate into .round_rate' made a subtle change to the semantics of .round_rate. It is now expected for the parent's rate to always be passed in, simplifying the implemenation of various .round_rate

Re: Making ARM multiplatform kernels DT-only?

2012-05-07 Thread Jean-Christophe PLAGNIOL-VILLARD
On 17:56 Fri 04 May , Russell King - ARM Linux wrote: On Fri, May 04, 2012 at 11:39:30AM -0500, Rob Herring wrote: Many of the headers are simply platform_data structs which may still be needed on DT platforms, but could be moved elsewhere. Those should be in include/linux/platform.

Re: Making ARM multiplatform kernels DT-only?

2012-05-07 Thread Jean-Christophe PLAGNIOL-VILLARD
On 17:56 Fri 04 May , Russell King - ARM Linux wrote: On Fri, May 04, 2012 at 11:39:30AM -0500, Rob Herring wrote: Many of the headers are simply platform_data structs which may still be needed on DT platforms, but could be moved elsewhere. Those should be in include/linux/platform.

Re: linux-linaro-core-tracking tree created

2012-05-07 Thread Andrey Konovalov
07.05.2012 09:05, Andy Green написал: On 04/26/2012 10:49 AM, Somebody in the thread at some point said: On 04/26/2012 01:54 AM, Somebody in the thread at some point said: Hi - Please don't remove your dt bits! Instead let me know when I can drop the conflicting (== redundant) commits from

Re: linux-linaro-core-tracking tree created

2012-05-07 Thread John Stultz
On 05/07/2012 02:09 AM, Andrey Konovalov wrote: 07.05.2012 09:05, Andy Green написал: Since it's still there in today's llct and making me see double, I tracked it down to this from Androidization series 109a3af ARM: Make low-level printk work Author: Tony Lindgren t...@atomide.com Date:

Re: [PATCH 2/5] clk: prevent spurious parent rate propagation

2012-05-07 Thread Turquette, Mike
On Mon, May 7, 2012 at 12:58 AM, Sascha Hauer s.ha...@pengutronix.de wrote: On Sun, May 06, 2012 at 10:08:27PM -0700, Mike Turquette wrote: Patch 'clk: always pass parent_rate into .round_rate' made a subtle change to the semantics of .round_rate.  It is now expected for the parent's rate to

Re: Installing the armel libc on armhf

2012-05-07 Thread Marcin Juszkiewicz
W dniu 06.05.2012 16:06, Michael Hope pisze: Hi there. Hopefully an easy question but I'm stumped. How do I install the armel softfp libc6 on a new Precise armhf install? I set APT::Architectures to { armel } and then tried a apt-get install libc6:armel but I get errors about the package not

Re: [PATCH 3/5] clk: remove COMMON_CLK_DISABLE_UNUSED

2012-05-07 Thread Saravana Kannan
On 05/06/2012 10:08 PM, Mike Turquette wrote: Exposing this option generates confusion and incorrect behavior for single-image builds across platforms. Enable this behavior permanently. Signed-off-by: Mike Turquettemturque...@linaro.org --- drivers/clk/Kconfig | 11 ---

Re: [PATCH 5/5] clk: add a fixed factor clock

2012-05-07 Thread Saravana Kannan
On 05/06/2012 10:08 PM, Mike Turquette wrote: From: Sascha Hauers.ha...@pengutronix.de Having fixed factors/dividers in hardware is a common pattern, so add a basic clock type doing this. It basically describes a fixed factor clock using a nominator and a denominator. Signed-off-by: Sascha

Re: [PATCH 5/5] clk: add a fixed factor clock

2012-05-07 Thread Turquette, Mike
On Mon, May 7, 2012 at 12:54 PM, Saravana Kannan skan...@codeaurora.org wrote: On 05/06/2012 10:08 PM, Mike Turquette wrote: From: Sascha Hauers.ha...@pengutronix.de +struct clk *clk_register_fixed_factor(struct device *dev, const char *name, +               const char *parent_name, unsigned

Re: [PATCH 5/5] clk: add a fixed factor clock

2012-05-07 Thread Saravana Kannan
On 05/07/2012 01:14 PM, Turquette, Mike wrote: On Mon, May 7, 2012 at 12:54 PM, Saravana Kannanskan...@codeaurora.org wrote: On 05/06/2012 10:08 PM, Mike Turquette wrote: From: Sascha Hauers.ha...@pengutronix.de +struct clk *clk_register_fixed_factor(struct device *dev, const char *name, +

[PATCH v3 2/3] ARM: imx: Add imx5 cpuidle driver

2012-05-07 Thread Robert Lee
Add imx5 cpuidle driver. Signed-off-by: Robert Lee rob@linaro.org --- arch/arm/mach-imx/mm-imx5.c | 42 +++--- 1 file changed, 39 insertions(+), 3 deletions(-) diff --git a/arch/arm/mach-imx/mm-imx5.c b/arch/arm/mach-imx/mm-imx5.c index d6b7e9f..0b3a4cc

[PATCH v3 1/3] ARM: imx: Add common imx cpuidle init functionality.

2012-05-07 Thread Robert Lee
Add common cpuidle init functionality that can be used by various imx platforms. Signed-off-by: Robert Lee rob@linaro.org --- arch/arm/plat-mxc/Makefile |1 + arch/arm/plat-mxc/cpuidle.c | 80 ++

[PATCH v3 3/3] ARM: imx: Add imx6q cpuidle driver

2012-05-07 Thread Robert Lee
Add basic imx6q cpuidle driver. For now, only basic WFI state is supported. Deeper idle states will be added in the future. Signed-off-by: Robert Lee rob@linaro.org --- arch/arm/mach-imx/mach-imx6q.c | 19 +++ 1 file changed, 19 insertions(+) diff --git

[PATCH v3 0/3] Add imx cpuidle

2012-05-07 Thread Robert Lee
Add common imx cpuidle initialization functionality and add a i.MX5 and i.MX6Q platform cpuidle implementation. Based on v3.4-rc6 plus recently submitted device tree late_initcall patch: http://www.spinics.net/lists/arm-kernel/msg171620.html v3 changes: * removed file introduced in v1 no

Re: Installing the armel libc on armhf

2012-05-07 Thread Michael Hope
On 8 May 2012 06:51, Marcin Juszkiewicz marcin.juszkiew...@linaro.org wrote: W dniu 06.05.2012 16:06, Michael Hope pisze: Hi there.  Hopefully an easy question but I'm stumped.  How do I install the armel softfp libc6 on a new Precise armhf install? I set APT::Architectures to { armel } and

Linaro recommended (tm) brand of SD card?

2012-05-07 Thread Michael Hudson-Doyle
Hi, The SD card I routinely use for testing which I got at some Linaro meeting or other has fallen apart (physically), so I'm on the hunt for a new one. Does anyone have a recommendation of a brand of card I should be looking for? For LAVA stuff, it needs to be at least 8 gigs. Cheers, mwh

Re: Linaro recommended (tm) brand of SD card?

2012-05-07 Thread Paul Larson
In the lab, we use the sandisk extreme cards iirc. What I hear from others and see personally is that most class 10 cards seem to work ok, but kingston are generally avoided. On Mon, May 7, 2012 at 7:15 PM, Michael Hudson-Doyle michael.hud...@linaro.org wrote: Hi, The SD card I routinely