RE: omap clocksource timer selection: dmtimer OR 32K-Sync timer

2012-01-16 Thread Hiremath, Vaibhav
On Fri, Jan 13, 2012 at 22:20:03, Tony Lindgren wrote: * Shilimkar, Santosh santosh.shilim...@ti.com [120113 06:08]: On Fri, Jan 13, 2012 at 2:42 PM, Hiremath, Vaibhav hvaib...@ti.com wrote: On Fri, Jan 13, 2012 at 18:19:24, Shilimkar, Santosh wrote:   ...   };   We need to

Re: [PATCH 5/6] OMAPDSS: DISPC: move fifo threhold calc to dispc.c

2012-01-16 Thread Tomi Valkeinen
On Sat, 2012-01-14 at 01:30 +0530, Archit wrote: Hi, On Friday 13 January 2012 05:16 PM, Tomi Valkeinen wrote: Move fifo threshold calculation into dispc.c, as the thresholds are really dispc internal thing. Signed-off-by: Tomi Valkeinentomi.valkei...@ti.com snip diff --git

Re: [PATCH 5/6] OMAPDSS: DISPC: move fifo threhold calc to dispc.c

2012-01-16 Thread Archit
On Monday 16 January 2012 03:27 PM, Tomi Valkeinen wrote: On Sat, 2012-01-14 at 01:30 +0530, Archit wrote: Hi, On Friday 13 January 2012 05:16 PM, Tomi Valkeinen wrote: Move fifo threshold calculation into dispc.c, as the thresholds are really dispc internal thing. Signed-off-by: Tomi

OMAP3 L2/outer cache enabled in kernel (after being disabled by uBoot)?

2012-01-16 Thread Joe Woodward
The latest uBoot release (2011.12) disables the L2/outer cache during boot on OMAP boards. uBoot commit: armv7: disable L2 cache in cleanup_before_linux() on 6th Dec 2011 by Aneesh V adds the following to uBootSources/arch/arm/cpu/armv7/cpu.c:cleanup_before_linux(): ...

Re: OMAP3 L2/outer cache enabled in kernel (after being disabled by uBoot)?

2012-01-16 Thread Shilimkar, Santosh
+ linux-arm, Russell and Catalin On Mon, Jan 16, 2012 at 11:03 AM, Joe Woodward j...@terrafix.co.uk wrote: The latest uBoot release (2011.12) disables the L2/outer cache during boot on OMAP boards. uBoot commit: armv7: disable L2 cache in cleanup_before_linux() on 6th Dec 2011 by Aneesh V

[PATCH 0/5] uart updates

2012-01-16 Thread Shubhrajyoti D
The patch series does the following - Make the Make the suspend/resume functions depend on CONFIG_PM_SLEEP - Fix the serial omap probe's error handling - Make he context_loss_cnt signed so that error handling is possible. Shubhrajyoti D (5): omap-serial :Make the suspend/resume

[PATCH 1/5] omap-serial :Make the suspend/resume functions depend on CONFIG_PM_SLEEP.

2012-01-16 Thread Shubhrajyoti D
The macro SET_SYSTEM_SLEEP_PM_OPS depends CONFIG_PM_SLEEP. The patch defines the suspend and resume functions for CONFIG_PM_SLEEP instead of CONFIG_SUSPEND. Signed-off-by: Shubhrajyoti D shubhrajy...@ti.com --- drivers/tty/serial/omap-serial.c |2 +- 1 files changed, 1

[PATCH 2/5] omap-serial: make serial_omap_restore_context depend on CONFIG_PM_RUNTIME

2012-01-16 Thread Shubhrajyoti D
The function serial_omap_restore_context is called only from serial_omap_runtime_resume which depends on CONFIG_PM_RUNTIME. Make serial_omap_restore_context also compile conditionally. if CONFIG_PM_RUNTIME is not defined below warn may be seen. LD net/xfrm/built-in.o

[PATCH 3/5] omap-serial: Fix the error handling in the omap_serial probe

2012-01-16 Thread Shubhrajyoti D
The patch does the following - The pm_runtime_disable is called in the remove not in the error case of probe.The patch calls the pm_runtime_disable in the error case. - The up is not freed in the error path. Fix the memory leak by calling kfree in the error path. - Also the iounmap is not

[PATCH 5/5] OMAP : serial : Check for error in get_context_loss_count

2012-01-16 Thread Shubhrajyoti D
In serial_omap_runtime_resume in case of errors returned by get_context_loss_count print a warning and do a restore. Signed-off-by: Shubhrajyoti D shubhrajy...@ti.com --- drivers/tty/serial/omap-serial.c | 10 -- 1 files changed, 8 insertions(+), 2 deletions(-) diff --git

[PATCH 4/5] ARM : OMAP : serial : Make context_loss_cnt signed

2012-01-16 Thread Shubhrajyoti D
get_context_loss_count returns an int however it is stored in unsigned integer context_loss_cnt . This patch tries to make context_loss_cnt int. So that in case of errors(which may be negative) the value is not interpreted wrongly. Signed-off-by: Shubhrajyoti D shubhrajy...@ti.com ---

Re: OMAP3 L2/outer cache enabled in kernel (after being disabled by uBoot)?

2012-01-16 Thread Russell King - ARM Linux
On Mon, Jan 16, 2012 at 11:18:21AM +0100, Shilimkar, Santosh wrote: + linux-arm, Russell and Catalin On Mon, Jan 16, 2012 at 11:03 AM, Joe Woodward j...@terrafix.co.uk wrote: The latest uBoot release (2011.12) disables the L2/outer cache during boot on OMAP boards. uBoot commit:

Re: [PATCH] ARM: OMAP3: fix build on !CONFIG_IOMMU_API

2012-01-16 Thread Joerg Roedel
On Wed, Jan 11, 2012 at 03:28:11PM +0200, Ohad Ben-Cohen wrote: omap3isp depends on CONFIG_IOMMU_API, so avoid registering its device (and defining its configuration structs) on !CONFIG_IOMMU_API. This is generally nice to have, but more importantly, it fixes:

Re: [PATCH V4 2/2] regulator: tps65217: Add tps65217 regulator driver

2012-01-16 Thread Mark Brown
On Wed, Jan 11, 2012 at 04:11:49PM +0530, AnilKumar Ch wrote: + rdev = regulator_register(regulators[pdev-id], pdev-dev, + pdev-dev.platform_data, tps); Oh, actually - this needs redoing against -next, regulator_register now takes an additional of_node

Re: OMAP3 L2/outer cache enabled in kernel (after being disabled by uBoot)?

2012-01-16 Thread Shilimkar, Santosh
On Mon, Jan 16, 2012 at 11:59 AM, Russell King - ARM Linux li...@arm.linux.org.uk wrote: On Mon, Jan 16, 2012 at 11:18:21AM +0100, Shilimkar, Santosh wrote: + linux-arm, Russell and Catalin On Mon, Jan 16, 2012 at 11:03 AM, Joe Woodward j...@terrafix.co.uk wrote: The latest uBoot release

Re: OMAP3 L2/outer cache enabled in kernel (after being disabled by uBoot)?

2012-01-16 Thread Russell King - ARM Linux
On Mon, Jan 16, 2012 at 01:43:03PM +0100, Shilimkar, Santosh wrote: This code will be in assembly and that's what I have been using. Not having stack shoudn't be a blocker and can be work-around in this code. And this API has to be anyway called before MMU is enabled. What about SMC on OMAP

Re: OMAP3 L2/outer cache enabled in kernel (after being disabled by uBoot)?

2012-01-16 Thread Shilimkar, Santosh
On Mon, Jan 16, 2012 at 2:13 PM, Russell King - ARM Linux li...@arm.linux.org.uk wrote: On Mon, Jan 16, 2012 at 01:43:03PM +0100, Shilimkar, Santosh wrote: This code will be in assembly and that's what I have been using. Not having stack shoudn't be a blocker and can be work-around in this

Re: [PATCH 1/2] omap2+: add drm device

2012-01-16 Thread Felipe Contreras
On Fri, Jan 13, 2012 at 11:19 PM, Rob Clark rob.cl...@linaro.org wrote: On Fri, Jan 13, 2012 at 2:59 PM, Felipe Contreras felipe.contre...@gmail.com wrote: On Fri, Jan 13, 2012 at 10:41 PM, Rob Clark rob.cl...@linaro.org wrote: diff --git a/arch/arm/plat-omap/Makefile

Re: [PATCH 1/2] omap2+: add drm device

2012-01-16 Thread Rob Clark
On Mon, Jan 16, 2012 at 8:12 AM, Felipe Contreras felipe.contre...@gmail.com wrote: On Fri, Jan 13, 2012 at 11:19 PM, Rob Clark rob.cl...@linaro.org wrote: On Fri, Jan 13, 2012 at 2:59 PM, Felipe Contreras felipe.contre...@gmail.com wrote: On Fri, Jan 13, 2012 at 10:41 PM, Rob Clark

Re: [PATCH 1/2] omap2+: add drm device

2012-01-16 Thread Felipe Contreras
On Mon, Jan 16, 2012 at 6:37 PM, Rob Clark rob.cl...@linaro.org wrote: On Mon, Jan 16, 2012 at 8:12 AM, Felipe Contreras felipe.contre...@gmail.com wrote: On Fri, Jan 13, 2012 at 11:19 PM, Rob Clark rob.cl...@linaro.org wrote: On Fri, Jan 13, 2012 at 2:59 PM, Felipe Contreras

Re: [PATCH 1/2] omap2+: add drm device

2012-01-16 Thread Rob Clark
On Mon, Jan 16, 2012 at 10:59 AM, Felipe Contreras felipe.contre...@gmail.com wrote: On Mon, Jan 16, 2012 at 6:37 PM, Rob Clark rob.cl...@linaro.org wrote: On Mon, Jan 16, 2012 at 8:12 AM, Felipe Contreras felipe.contre...@gmail.com wrote: On Fri, Jan 13, 2012 at 11:19 PM, Rob Clark

OMAP3 DSS2 - VENC timings

2012-01-16 Thread Gary Thomas
I'm running a frame buffer console on a TV device via the VENC. The video timings don't see to be quite right as Tux is about 1/2 off the screen - both directions, i.e. his head and right side have been cut off as they are outside the viewable area. Also, when I send data to the device (via

Re: [RFC v2 PATCH 0/3] dt: device tree bindings and data for EMIF and DDR

2012-01-16 Thread Turquette, Mike
On Fri, Jan 13, 2012 at 11:36 AM, Aneesh V ane...@ti.com wrote: Hi Olof, On Monday 09 January 2012 11:12 AM, Olof Johansson wrote: Hi, On Sun, Jan 8, 2012 at 9:23 AM, Aneesh Vane...@ti.com  wrote: Hi, On Tuesday 20 December 2011 03:08 PM, Aneesh V wrote: Hi Benoit On Tuesday 20

Re: [PATCH v6 0/6] PM QoS: implement the OMAP low level constraints management code

2012-01-16 Thread Jean Pihet
Paul, Kevin, On Mon, Dec 19, 2011 at 10:02 PM, Paul Walmsley p...@pwsan.com wrote: Hi Jean I'm really sorry it's taken me so long to do detailed review of these patches for merging... anyway - On Wed, 14 Dec 2011, jean.pi...@newoldbits.com wrote: From: Jean Pihet j-pi...@ti.com .

Re: [PATCH v6 0/6] PM QoS: implement the OMAP low level constraints management code

2012-01-16 Thread Paul Walmsley
Hi On Mon, 16 Jan 2012, Jean Pihet wrote: Speaking of the locking, currently a spinlock is used and it could be replaced by a more efficient mutex. This is ok at the condition that this code is not called from interrupt context? Kevin, Do you know if the per-device constraint code can be

Re: [PATCH v6 0/6] PM QoS: implement the OMAP low level constraints management code

2012-01-16 Thread Paul Walmsley
On Mon, 16 Jan 2012, Jean Pihet wrote: Speaking of the locking, currently a spinlock is used and it could be replaced by a more efficient mutex. Just a minor observation. It's not so much that the mutex is more efficient. It's just that mutexes allow interrupt processing on that CPU while

Re: [PATCH v6 0/6] PM QoS: implement the OMAP low level constraints management code

2012-01-16 Thread Jean Pihet
Hi Paul, On Mon, Jan 16, 2012 at 9:04 PM, Paul Walmsley p...@pwsan.com wrote: Hi On Mon, 16 Jan 2012, Jean Pihet wrote: Speaking of the locking, currently a spinlock is used and it could be replaced by a more efficient mutex. This is ok at the condition that this code is not called from

Re: [PATCH 1/2] omap2+: add drm device

2012-01-16 Thread Felipe Contreras
On Mon, Jan 16, 2012 at 7:01 PM, Rob Clark rob.cl...@linaro.org wrote: On Mon, Jan 16, 2012 at 10:59 AM, Felipe Contreras felipe.contre...@gmail.com wrote: On Mon, Jan 16, 2012 at 6:37 PM, Rob Clark rob.cl...@linaro.org wrote: On Mon, Jan 16, 2012 at 8:12 AM, Felipe Contreras

Re: [PATCH 1/2] omap2+: add drm device

2012-01-16 Thread Rob Clark
On Mon, Jan 16, 2012 at 2:37 PM, Felipe Contreras felipe.contre...@gmail.com wrote: On Mon, Jan 16, 2012 at 7:01 PM, Rob Clark rob.cl...@linaro.org wrote: On Mon, Jan 16, 2012 at 10:59 AM, Felipe Contreras felipe.contre...@gmail.com wrote: On Mon, Jan 16, 2012 at 6:37 PM, Rob Clark

RE: [PATCH-V2 1/3] arm:omap:omap4: Remove hardcoded reg-offs for PWRSTCTRL PWRSTST

2012-01-16 Thread Hiremath, Vaibhav
On Tue, Jan 10, 2012 at 23:39:56, Hilman, Kevin wrote: Vaibhav Hiremath hvaib...@ti.com writes: This patch removes the existing hard-coded way of providing offset to omap4_prminst_xxx API's and instead use offsets provided in powerdomains_data. Very much required for the new

RE: [PATCH] lis3lv02d: Add STMicroelectronics lis33ldlh digital

2012-01-16 Thread AnilKumar, Chimata
Hi All, Recalling the patch, provide the comments if there are any if not please include this patch to v3.3 kernel. -Original Message- From: AnilKumar, Chimata Sent: Friday, December 23, 2011 10:55 AM To: a...@arndb.de; g...@kroah.com; eric.p...@tremplin-utc.net;