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

2012-03-10 Thread Richard Zhao
Looks like you didn't take my comments for v5. http://www.spinics.net/lists/arm-kernel/msg162903.html Regards Richard ___ linaro-dev mailing list linaro-dev@lists.linaro.org http://lists.linaro.org/mailman/listinfo/linaro-dev

Re: Announcing Linarotv-xmbc image

2012-03-10 Thread Tom Gall
On Sat, Mar 10, 2012 at 9:43 PM, Hui Zhang wrote: > Hi Christian, >    thank you for the information! >   Yes, I eventually decided not to use XBMC on hardware without 3D, and use > qtmediahub instead. > >    And, I have run XBMC on pandaboard and found out that XBMC requires a lot > of CPU(often

Re: [linux-pm] [PATCH 2/4] thermal: Add generic cpufreq cooling implementation

2012-03-10 Thread Sundar
Hi Amit, I am new here; so please bear with my questions/doubts :) On Wed, Feb 22, 2012 at 3:44 PM, Amit Daniel Kachhap wrote: > This patch adds support for generic cpu thermal cooling low level > implementations using frequency scaling up/down based on the request > from user. Different cpu rel

Re: Announcing Linarotv-xmbc image

2012-03-10 Thread Hui Zhang
Hi Christian, thank you for the information! Yes, I eventually decided not to use XBMC on hardware without 3D, and use qtmediahub instead. And, I have run XBMC on pandaboard and found out that XBMC requires a lot of CPU(often 90%+). So on hardware without 3D, it is impossilbe to run... On

Re: implementing "suspend to ram" on cortex A8 based on linux 3.0.8

2012-03-10 Thread yang gqyang
Thanks for your comment. Finally, i find out that i made a mistake. The uart(8250) have not been restore after resume, instead, it use the configuration got from boot. The uart have not been restored correctly, so that "ls" can not output result correctly resulting in it seems that the busybox can

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

2012-03-10 Thread Andrew Lunn
On Fri, Mar 09, 2012 at 11:54:22PM -0800, Mike Turquette wrote: > Provide documentation for the common clk structures and APIs. This code > can be found in drivers/clk/ and include/linux/clk*.h. Hi Mike Please feel free to add: Reviewed-by: Andrew Lunn Andrew ___

[PATCH] OMAP: remove merge artifacts from the PandaBoard file

2012-03-10 Thread Mircea Gherzan
Signed-off-by: Mircea Gherzan --- arch/arm/mach-omap2/board-omap4panda.c |5 - 1 files changed, 0 insertions(+), 5 deletions(-) diff --git a/arch/arm/mach-omap2/board-omap4panda.c b/arch/arm/mach-omap2/board-omap4panda.c index 084e0a6..77ab174 100644 --- a/arch/arm/mach-omap2/board-omap

[PATCH tilt-3.2] syslink: add a missing header to fix a build error

2012-03-10 Thread Mircea Gherzan
drivers/dsp/syslink/multicore_ipc/heap.c:36:2: error: implicit declaration of function 'BUILD_BUG_ON' Signed-off-by: Mircea Gherzan --- drivers/dsp/syslink/multicore_ipc/heap.c |3 +-- 1 files changed, 1 insertions(+), 2 deletions(-) diff --git a/drivers/dsp/syslink/multicore_ipc/he

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

2012-03-10 Thread Thomas Gleixner
On Fri, 9 Mar 2012, Mike Turquette wrote: > +inline unsigned long __clk_get_enable_count(struct clk *clk) > +{ > + return !clk ? -EINVAL : clk->enable_count; Returning negative error codes in a function with a return value unsigned long is a bit strange at least. Shouldn't that be long ? > +#

[PATCH tilt-3.2] OPP: export symbols for modules

2012-03-10 Thread Mircea Gherzan
The symbols are currently used the the omap-abe-dsp code. Signed-off-by: Mircea Gherzan --- drivers/base/power/opp.c |3 +++ 1 files changed, 3 insertions(+), 0 deletions(-) diff --git a/drivers/base/power/opp.c b/drivers/base/power/opp.c index b1e333a..069d7e5 100644 --- a/drivers/base/pow

Re: [PATCH v6 3/3] clk: basic clock hardware types

2012-03-10 Thread Andrew Lunn
On Fri, Mar 09, 2012 at 11:54:24PM -0800, Mike Turquette wrote: > Many platforms support simple gateable clocks, fixed-rate clocks, > adjustable divider clocks and multi-parent multiplexer clocks. Hi Mike Please feel free to add: Reviewed-by: Andrew Lunn Tested-by: Andrew Lunn Andr

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

2012-03-10 Thread Andrew Lunn
On Fri, Mar 09, 2012 at 11:54:23PM -0800, Mike Turquette wrote: > The common clock framework defines a common struct clk useful across > most platforms as well as an implementation of the clk api that drivers > can use safely for managing clocks. Hi Mike Please feel free to add: Tested-by: Andre

[PATCH tilt-3.2] tiler: export the SiTA initializer

2012-03-10 Thread Mircea Gherzan
This way, tiler can be built as a module. Signed-off-by: Mircea Gherzan --- drivers/media/video/tiler/tcm/tcm-sita.c |2 ++ 1 files changed, 2 insertions(+), 0 deletions(-) diff --git a/drivers/media/video/tiler/tcm/tcm-sita.c b/drivers/media/video/tiler/tcm/tcm-sita.c index d0784c6..d081d

[PATCH tilt-3.2] DSS: export the omap_dss_get_def_disp symbol

2012-03-10 Thread Mircea Gherzan
Required when building DSS and the generic DPI panel driver as modules. Signed-off-by: Mircea Gherzan --- drivers/video/omap2/dss/core.c |2 ++ 1 files changed, 2 insertions(+), 0 deletions(-) diff --git a/drivers/video/omap2/dss/core.c b/drivers/video/omap2/dss/core.c index 108aa24..b937f2

Re: implementing "suspend to ram" on cortex A8 based on linux 3.0.8

2012-03-10 Thread yang gqyang
Thanks for your comment. Finally, i find out that i made a mistake. The uart(8250) have not been restore after resume, instead, it use the configuration got from boot. The uart have not been restored correctly, so that "ls" can not output result correctly resulting in it seems that the busybo

[PATCH] v4l/omap: fix a compilation error

2012-03-10 Thread Mircea Gherzan
Signed-off-by: Mircea Gherzan --- drivers/media/video/omap/omap_vout.c | 12 +++- 1 files changed, 7 insertions(+), 5 deletions(-) diff --git a/drivers/media/video/omap/omap_vout.c b/drivers/media/video/omap/omap_vout.c index 0d036b1..fdc1fb1 100644 --- a/drivers/media/video/omap/omap

Re: [PATCH 2/3] ARM: EXYNOS: Add clkdev lookup entry for lcd clock

2012-03-10 Thread Chenglie He
I am doing the suspend and resume of s3cfb on exynos. the clk_on and clk_off just failed. I think this is a related issue. On 29 February 2012 13:45, Tushar Behera wrote: > Hi Kukjin, > > On 12/01/2011 11:20 AM, Tushar Behera wrote: > > The framebuffer driver needs the clock named 'lcd' as its b