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

2012-05-02 Thread Sascha Hauer
On Wed, May 02, 2012 at 03:11:35PM -0500, Rob Lee wrote: > Sascha, > > >>       mxc_iomux_v3_init(MX51_IO_ADDRESS(MX51_IOMUXC_BASE_ADDR)); > >>       mxc_arch_reset_init(MX51_IO_ADDRESS(MX51_WDOG1_BASE_ADDR)); > >> -     arm_pm_idle = imx5_idle; > >> +     arm_pm_idle = (void *)imx5_idle; > > > >

[PATCH 1/3] OMAP2+: control: new APIs to configure boot address and mode

2012-05-02 Thread Omar Ramirez Luna
SCM contains boot addr and boot mode registers to control other processors on different OMAP versions. It controls the boot address and mode for DSP based subsystems like: IVA 2.1 (OMAP2430), IVA 2.2 (OMAP3) and DSP (OMAP4). If contained within SCM registers, when a processor is booting it uses BO

[PATCH 2/3] OMAP: dsp: interface to control module functions

2012-05-02 Thread Omar Ramirez Luna
Provide an interface for a driver to call SCM functions to set a boot address and boot mode. Signed-off-by: Omar Ramirez Luna --- arch/arm/mach-omap2/dsp.c |4 arch/arm/plat-omap/include/plat/dsp.h |3 +++ 2 files changed, 7 insertions(+), 0 deletions(-) diff --git a/ar

[PATCH 3/3] staging: tidspbridge: use scm functions to set boot address and mode

2012-05-02 Thread Omar Ramirez Luna
Instead of ioremapping SCM registers, use the correspondent layer to write into them. This allows us to get rid of a layer violation, since the registers are no longer touched by driver code. Signed-off-by: Omar Ramirez Luna --- drivers/staging/tidspbridge/core/tiomap3430.c | 32 +

[PATCH 0/3] OMAP: control: bootaddr and bootmod APIs

2012-05-02 Thread Omar Ramirez Luna
Recently a patch went in for tidspbridge code, to ioremap SCM registers and solve a build break[1]. However it has been pointed out before that this is a layer violation given that control module should handle its own registers, this series is an attempt to create APIs for the users of these regist

Re: linux-linaro-core-tracking tree created / update frequency

2012-05-02 Thread Andy Green
On 04/25/2012 03:43 AM, Somebody in the thread at some point said: Hi - > The plan is to rebase this tree on the > current mainline tip daily. Now we're basing on it, our tracking progress depends on these "daily" rebases, but it's stuck since Friday. So we're missing -rc5 for 3 days. -Andy

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

2012-05-02 Thread Sascha Hauer
On Wed, May 02, 2012 at 02:16:36PM -0500, Rob Lee wrote: > Sascha, > > >> +int __init imx_cpuidle_init(struct cpuidle_driver *drv) > >> +{ > >> +     struct cpuidle_device *dev; > >> +     int cpu_id, ret; > >> + > >> +     if (!drv || drv->state_count > CPUIDLE_STATE_MAX) { > > > > Please don't c

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

2012-05-02 Thread Rob Lee
Sascha, On Wed, May 2, 2012 at 2:33 AM, Sascha Hauer wrote: > On Tue, May 01, 2012 at 09:12:39PM -0500, Robert Lee wrote: >> Add imx5 cpuidle driver. >> >> Signed-off-by: Robert Lee >> --- >>  arch/arm/mach-imx/mm-imx5.c |   42 >> +++--- >>  1 file changed, 3

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

2012-05-02 Thread Rob Lee
Sascha, On Wed, May 2, 2012 at 2:27 AM, Sascha Hauer wrote: > On Tue, May 01, 2012 at 09:12:38PM -0500, Robert Lee wrote: >> Add common cpuidle init functionality that can be used by various >> imx platforms. >> >> Signed-off-by: Robert Lee >> --- >> + >> +int __init imx_cpuidle_init(struct cpui

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

2012-05-02 Thread Rob Lee
On Wed, May 2, 2012 at 9:07 AM, Shawn Guo wrote: > On 2 May 2012 21:59, Rob Lee wrote: +             ret = cpuidle_register_device(dev); +             if (ret) { +                     pr_err("%s: Failed to register cpu %u\n", +                             __func__, cpu_id); >>

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

2012-05-02 Thread Shawn Guo
On 2 May 2012 21:59, Rob Lee wrote: >>> +             ret = cpuidle_register_device(dev); >>> +             if (ret) { >>> +                     pr_err("%s: Failed to register cpu %u\n", >>> +                             __func__, cpu_id); >> >> Nit: print ret (error code) too? >> > > I added the

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

2012-05-02 Thread Rob Lee
Shawn, On Tue, May 1, 2012 at 10:13 PM, Shawn Guo wrote: > On Tue, May 01, 2012 at 09:12:38PM -0500, Robert Lee wrote: >> Add common cpuidle init functionality that can be used by various >> imx platforms. >> >> Signed-off-by: Robert Lee >> --- >>  arch/arm/plat-mxc/Makefile               |    1

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

2012-05-02 Thread Shawn Guo
On Wed, May 02, 2012 at 08:50:20AM -0500, Rob Lee wrote: > >> --- a/arch/arm/mach-imx/mach-imx6q.c > >> +++ b/arch/arm/mach-imx/mach-imx6q.c > >> @@ -21,6 +21,9 @@ > >>  #include > >>  #include > >>  #include > >> +#include > >> +#include > >> +#include > >>  #include > >>  #include > >>  #

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

2012-05-02 Thread Rob Lee
On Tue, May 1, 2012 at 10:23 PM, Shawn Guo wrote: > On Tue, May 01, 2012 at 09:12:40PM -0500, Robert Lee wrote: >> 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 >> --- >>  arch/arm/m

Re: adb question

2012-05-02 Thread YongQin Liu
Hi, Linas On 2 May 2012 19:23, Linas Chang wrote: > Hi YongQin > > ** ** > > I got it form below > > ** ** > > http://www.igloocommunity.org/download/android/ics/images/2012.03/ > > ** ** > > I also notices above link since has new ics image at 4/26 release , could > I used this one

Re: pull build configs into Git.

2012-05-02 Thread Fathi Boudra
On 1 May 2012 12:10, Jon Medhurst (Tixy) wrote: > On Sat, 2012-04-28 at 06:12 +0530, Zach Pfeffer wrote: >> Fathi, >> >> Since we're at the start of 12.05 we need to shift the builds over to >> the tip toolchain and stop daily builds for various baselines. I >> figure we can also get the configs i

RE: adb question

2012-05-02 Thread Linas Chang
Hi YongQin I got it form below http://www.igloocommunity.org/download/android/ics/images/2012.03/ I also notices above link since has new ics image at 4/26 release , could I used this one or I need to download image from your below link Linas From: YongQin Liu [mailto:yongqin@linaro.org]

Fwd: adb question

2012-05-02 Thread YongQin Liu
Hi, Linas Sorry, one thing I want to make sure is that you are using the android images from https://android-build.linaro.org/? Hi, All If you have met such problems as below, please give your suggestion. Thanks, Yongqin Liu -- Forwarded message -- From: Linas Chang Date: 2 Ma

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

2012-05-02 Thread Sascha Hauer
On Tue, May 01, 2012 at 09:12:39PM -0500, Robert Lee wrote: > Add imx5 cpuidle driver. > > Signed-off-by: Robert Lee > --- > arch/arm/mach-imx/mm-imx5.c | 42 +++--- > 1 file changed, 39 insertions(+), 3 deletions(-) > > diff --git a/arch/arm/mach-imx/mm-im

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

2012-05-02 Thread Sascha Hauer
On Tue, May 01, 2012 at 09:12:38PM -0500, Robert Lee wrote: > Add common cpuidle init functionality that can be used by various > imx platforms. > > Signed-off-by: Robert Lee > --- > + > +int __init imx_cpuidle_init(struct cpuidle_driver *drv) > +{ > + struct cpuidle_device *dev; > + int