Re: [PATCH] gpio: omap-gpio: add support for pm_runtime autosuspend

2012-10-29 Thread Santosh Shilimkar
On Monday 29 October 2012 01:35 PM, Felipe Balbi wrote: On Mon, Oct 29, 2012 at 12:17:08PM +0530, Santosh Shilimkar wrote: + Jon, On Friday 26 October 2012 06:49 PM, Tim Niemeyer wrote: Adds support for configuring the omap-gpio driver use autosuspend for runtime power management. This can

Re: [PATCH] i2c: omap: ensure writes to dev-buf_len are ordered

2012-10-27 Thread Santosh Shilimkar
On Saturday 27 October 2012 04:31 AM, Paul Walmsley wrote: Hi Felipe just two quick comments On Thu, 25 Oct 2012, Felipe Balbi wrote: if we allow compiler reorder our writes, we could fall into a situation where dev-buf_len is reset for no apparent reason. This bug was found with a simple

Re: [PATCH] gpio: omap-gpio: add support for pm_runtime autosuspend

2012-10-27 Thread Santosh Shilimkar
On Saturday 27 October 2012 03:09 AM, Jon Hunter wrote: On 10/26/2012 03:01 PM, Felipe Balbi wrote: Hi, On Fri, Oct 26, 2012 at 03:19:13PM +0200, Tim Niemeyer wrote: Adds support for configuring the omap-gpio driver use autosuspend for runtime power management. This can reduce the latency in

Re: [PATCH] ARM: OMAP4: Basic default configuration for Pandaboard

2012-10-27 Thread Santosh Shilimkar
On Saturday 27 October 2012 05:33 PM, Constantine Shulyupin wrote: From: Constantine Shulyupin co...@makelinux.com Tested SD (MMC) and Ethernet smsc95xx on linux-3.7-rc2 Signed-off-by: Constantine Shulyupin co...@makelinux.com -- kernel size is 2.3 MiB ---

Re: [PATCH] i2c: omap: ensure writes to dev-buf_len are ordered

2012-10-27 Thread Santosh Shilimkar
On Saturday 27 October 2012 09:29 PM, Paul Walmsley wrote: On Sat, 27 Oct 2012, Santosh Shilimkar wrote: Another alternative, which I will recommend to just make use of the read*/wrire* instead __raw versions. The barriers are taken care already and driver point of view, it is transparent

Re: [PATCH v3] gpio/omap: fix off-mode bug: clear debounce clock enable mask on free/reset

2012-10-26 Thread Santosh Shilimkar
that we are aligned, so we can take this patch forward. Feel free to add my ack in case you plan to refresh it. Acked-by: Santosh Shilimkar santosh.shilim...@ti.com -- To unsubscribe from this list: send the line unsubscribe linux-omap in the body of a message to majord...@vger.kernel.org More

Re: [PATCH] drivers: bus: omap_interconnect: Fix rand-config build warning

2012-10-26 Thread Santosh Shilimkar
On Friday 26 October 2012 12:45 AM, Tony Lindgren wrote: * Santosh Shilimkar santosh.shilim...@ti.com [121024 23:34]: On Thursday 25 October 2012 06:12 AM, Tony Lindgren wrote: * Tony Lindgren t...@atomide.com [121024 17:36]: * Santosh Shilimkar santosh.shilim...@ti.com [121017 06:35

Re: Build broken on linus/master?

2012-10-26 Thread Santosh Shilimkar
On Friday 26 October 2012 01:18 PM, Bedia, Vaibhav wrote: Hi, Compiling the current linus/master (2ab3f29) using omap2plus_defconfig throws up the following error $make -j7 uImage CHK include/generated/uapi/linux/version.h CHK include/generated/utsrelease.h make[1]:

Re: Build broken on linus/master?

2012-10-26 Thread Santosh Shilimkar
On Friday 26 October 2012 03:32 PM, Bedia, Vaibhav wrote: On Fri, Oct 26, 2012 at 14:29:28, Shilimkar, Santosh wrote: On Friday 26 October 2012 01:18 PM, Bedia, Vaibhav wrote: Hi, Compiling the current linus/master (2ab3f29) using omap2plus_defconfig throws up the following error $make -j7

Re: [PATCH] drivers: bus: omap_interconnect: Fix rand-config build warning

2012-10-25 Thread Santosh Shilimkar
On Thursday 25 October 2012 06:12 AM, Tony Lindgren wrote: * Tony Lindgren t...@atomide.com [121024 17:36]: * Santosh Shilimkar santosh.shilim...@ti.com [121017 06:35]: (Looping Arnd and Olof) On Wednesday 17 October 2012 06:58 PM, Lokesh Vutla wrote: When building omap_l3_noc/smx drivers

Re: [PATCH v2] gpio/omap: fix off-mode bug: clear debounce clock enable mask on free/reset

2012-10-25 Thread Santosh Shilimkar
On Thursday 25 October 2012 04:24 AM, Jon Hunter wrote: On 10/24/2012 12:10 PM, Kevin Hilman wrote: From: Kevin Hilman khil...@ti.com When a GPIO bank is freed or shutdown, ensure that the banks dbck_enable_mask is cleared also. Otherwise, context restore on subsequent off-mode transition

Re: [PATCH v2 1/7] i2c: omap: no need to access platform_device

2012-10-25 Thread Santosh Shilimkar
--- Acked-by: Santosh Shilimkar santosh.shilim...@ti.com -- To unsubscribe from this list: send the line unsubscribe linux-omap in the body of a message to majord...@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html

Re: [PATCH v2 2/7] i2c: omap: reorder exit path of omap_i2c_xfer_msg()

2012-10-25 Thread Santosh Shilimkar
On Thursday 25 October 2012 05:55 PM, Felipe Balbi wrote: just a cleanup patch trying to make exit path more straightforward. No changes otherwise. Signed-off-by: Felipe Balbi ba...@ti.com --- drivers/i2c/busses/i2c-omap.c | 26 +- 1 file changed, 17 insertions(+), 9

Re: [PATCH v2 3/7] i2c: omap: also complete() when stat becomes zero

2012-10-25 Thread Santosh Shilimkar
On Thursday 25 October 2012 05:55 PM, Felipe Balbi wrote: In case we loop on IRQ handler until stat is finally zero, we would end up in a situation where all I2C transfers would misteriously timeout because we were not calling complete() in that situation. Fix the issue by moving

Re: [PATCH v2 4/7] i2c: omap: in case of VERSION_2 read IRQSTATUS_RAW but write to IRQSTATUS

2012-10-25 Thread Santosh Shilimkar
On Thursday 25 October 2012 05:55 PM, Felipe Balbi wrote: on OMAP4+ we want to read IRQSTATUS_RAW register, instead of IRQSTATUS. The reason being that IRQSTATUS will only contain the bits which were enabled on IRQENABLE_SET and that will break when we need to poll for a certain bit which wasn't

Re: [PATCH v2 5/7] i2c: omap: wait for transfer completion before sending STP bit

2012-10-25 Thread Santosh Shilimkar
On Thursday 25 October 2012 05:55 PM, Felipe Balbi wrote: Later patches will come adding support for reporting amount of bytes transferred so that client drivers can count how many bytes are left to transfer. This is useful mostly in case of NACKs when client driver wants to know exactly which

Re: [PATCH v2 4/7] i2c: omap: in case of VERSION_2 read IRQSTATUS_RAW but write to IRQSTATUS

2012-10-25 Thread Santosh Shilimkar
On Thursday 25 October 2012 06:22 PM, Felipe Balbi wrote: Hi, On Thu, Oct 25, 2012 at 06:23:57PM +0530, Santosh Shilimkar wrote: On Thursday 25 October 2012 05:55 PM, Felipe Balbi wrote: on OMAP4+ we want to read IRQSTATUS_RAW register, instead of IRQSTATUS. The reason being that IRQSTATUS

Re: [PATCH v2] gpio/omap: fix off-mode bug: clear debounce clock enable mask on free/reset

2012-10-25 Thread Santosh Shilimkar
On Thursday 25 October 2012 06:41 PM, Jon Hunter wrote: On 10/25/2012 02:00 AM, Santosh Shilimkar wrote: On Thursday 25 October 2012 04:24 AM, Jon Hunter wrote: On 10/24/2012 12:10 PM, Kevin Hilman wrote: From: Kevin Hilman khil...@ti.com When a GPIO bank is freed or shutdown, ensure

Re: [PATCH] gpio/omap: fix off-mode bug: clear debounce clock enable mask on disable

2012-10-24 Thread Santosh Shilimkar
bogus state to be restored, leaving GPIO debounce enabled which then prevented the CORE powerdomain from transitioning. Reported-by: Paul Walmsley p...@pwsan.com Cc: Igor Grinberg grinb...@compulab.co.il Signed-off-by: Kevin Hilman khil...@ti.com --- Acked-by: Santosh Shilimkar santosh.shilim

Re: [PATCH] gpio/omap: fix off-mode bug: clear debounce clock enable mask on disable

2012-10-24 Thread Santosh Shilimkar
On Wednesday 24 October 2012 05:32 PM, Grazvydas Ignotas wrote: On Tue, Oct 23, 2012 at 9:09 PM, Kevin Hilman khil...@deeprootsystems.com wrote: From: Kevin Hilman khil...@ti.com When debounce clocks are disabled, ensure that the banks dbck_enable_mask is cleared also. Otherwise, context

Re: [PATCH] gpio/omap: fix off-mode bug: clear debounce clock enable mask on disable

2012-10-24 Thread Santosh Shilimkar
On Wednesday 24 October 2012 07:49 PM, Kevin Hilman wrote: Grazvydas Ignotas nota...@gmail.com writes: On Tue, Oct 23, 2012 at 9:09 PM, Kevin Hilman khil...@deeprootsystems.com wrote: From: Kevin Hilman khil...@ti.com When debounce clocks are disabled, ensure that the banks dbck_enable_mask

Re: [RFC] ARM: OMAP: hwmod: wait for sysreset complete after enabling hwmod

2012-10-23 Thread Santosh Shilimkar
the value of UART sysconfig before and after the offmode entry to see if the smart-idle/smart-idle wakeup setting getting disturbed for some reason. Below is the OMAP4 commit am referring to. commit 5ae256dcd91bf308826a4ac19598b27ebb86a536 Author: Santosh Shilimkar santosh.shilim...@ti.com Date: Fri

Re: [PATCH 0/7] crypto: omap-sham updates

2012-10-21 Thread Santosh Shilimkar
Mark, On Saturday 20 October 2012 03:23 AM, Mark A. Greer wrote: From: Mark A. Greer mgr...@animalcreek.com This series updates the crypto omap-sham driver and supporting infrastructure. Notes: a) Based on current k.o. c9623de (Merge branch 'v4l_for_linus' of

Re: OMAP baseline test results for v3.7-rc1

2012-10-18 Thread Santosh Shilimkar
Tero, paul, On Thursday 18 October 2012 02:07 PM, Tero Kristo wrote: On Thu, 2012-10-18 at 06:48 +, Paul Walmsley wrote: On Thu, 18 Oct 2012, Paul Walmsley wrote: Here are some basic OMAP test results for Linux v3.7-rc1. Logs and other details at

Re: [PATCH 0/5] ARM: OMAP2+: PRM/CM cleanup series for 3.8

2012-10-18 Thread Santosh Shilimkar
Paul !! This series and part2 both looks good to me. Sorry for not being able to help in some of these clean-ups because of other work priorities as talked at LPC. Feel free to add my ack for the whole series if you need one. Acked-by: Santosh Shilimkar santosh.shilim...@ti.com -- To unsubscribe from

Re: [PATCH] drivers: bus: omap_interconnect: Fix rand-config build warning

2012-10-17 Thread Santosh Shilimkar
Lokesh. Looks fine to me. Acked-by: Santosh Shilimkar santosh.shilim...@ti.com -- To unsubscribe from this list: send the line unsubscribe linux-omap in the body of a message to majord...@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html

Re: [PATCH] ARM: OMAP4: Fix twd_local_timer_register regression

2012-10-13 Thread Santosh Shilimkar
Acked-by: Santosh Shilimkar santosh.shilim...@ti.com -- To unsubscribe from this list: send the line unsubscribe linux-omap in the body of a message to majord...@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html

Re: [PATCH 3/3] ARM: dts: EMIF and LPDDR2 device tree data for OMAP5 boards

2012-10-11 Thread Santosh Shilimkar
On Thursday 11 October 2012 01:41 PM, Benoit Cousson wrote: Hi Lokesh, On 10/11/2012 08:16 AM, Lokesh Vutla wrote: + devicetree-discuss Hi Benoit, On Wednesday 10 October 2012 08:31 PM, Benoit Cousson wrote: On 10/10/2012 02:05 PM, Lokesh Vutla wrote: Device tree data for the EMIF sdram

Re: [PATCH 00/16] More omap plat header cleanup for v3.8 merge window

2012-10-08 Thread Santosh Shilimkar
Tony, On Friday 05 October 2012 03:34 AM, Tony Lindgren wrote: Hi all, Here are some more patches for early merging after -rc1 for v3.8 merge window to remove more plat includes for the ARM common zImage support. These are based on top of current linux next + kevin's cpufreq fixes. Have

Re: [PATCH 00/16] More omap plat header cleanup for v3.8 merge window

2012-10-08 Thread Santosh Shilimkar
On Monday 08 October 2012 02:22 PM, Santosh Shilimkar wrote: Tony, On Friday 05 October 2012 03:34 AM, Tony Lindgren wrote: Hi all, Here are some more patches for early merging after -rc1 for v3.8 merge window to remove more plat includes for the ARM common zImage support. These are based

[GIT PULL] ARM: OMAP5: Enable arch timer support

2012-09-19 Thread Santosh Shilimkar
...@github.com:SantoshShilimkar/linux.git for_3.7/omap5_arch_timer for you to fetch changes up to 3c7c5dab44d6c8861bc86dab924353d8d40344f8: ARM: OMAP5: Enable arch timer support (2012-09-19 13:00:37 +0530) Santosh Shilimkar (2): ARM: OMAP: Add

[PATCH 1/1] drivers: bus: Move the OMAP interconnect driver to drivers/bus/

2012-09-14 Thread Santosh Shilimkar
OMAP interconnect drivers are used for the interconnect error handling. Since they are bus driver, lets move it to newly created drivers/bus. Cc: Arnd Bergmann a...@arndb.de Cc: Tony Lindgren t...@atomide.com Tested-by: Lokesh Vutla lokeshvu...@ti.com Signed-off-by: Santosh Shilimkar

Re: [PATCH 0/5] ARM: OMAP: Few device tree patches for 3.7

2012-08-23 Thread Santosh Shilimkar
Benoit, On Monday 13 August 2012 04:30 PM, Santosh Shilimkar wrote: These are the few device tree related patches which has been posted and reviewed on the list. They are intended for 3.7 merge window but I am posting them early enough to get into linux-next and linux-omap for testing

[PATCH v5] memory: emif: add device tree support to emif driver

2012-08-17 Thread Santosh Shilimkar
...@secretlab.ca Tested-by: Lokesh Vutla lokeshvu...@ti.com Signed-off-by: Aneesh V ane...@ti.com Signed-off-by: Santosh Shilimkar santosh.shilim...@ti.com Cc: Greg Kroah-Hartman gre...@linuxfoundation.org --- v5: Updated the patch as per Greg's comment for moving the lpddr2 dt timings generic

[PATCH 0/5] ARM: OMAP: Few device tree patches for 3.7

2012-08-13 Thread Santosh Shilimkar
+0530) Aneesh V (3): dt: device tree bindings for LPDDR2 memories dt: emif: device tree bindings for TI's EMIF sdram controller ARM: dts: EMIF and LPDDR2 device tree data for OMAP4 boards Santosh Shilimkar (2

[PATCH 2/5] dt: emif: device tree bindings for TI's EMIF sdram controller

2012-08-13 Thread Santosh Shilimkar
Cousson b-cous...@ti.com Reviewed-by: Grant Likely grant.lik...@secretlab.ca Tested-by: Lokesh Vutla lokeshvu...@ti.com Signed-off-by: Aneesh V ane...@ti.com [santosh.shilim...@ti.com: Rebased against 3.6-rc] Signed-off-by: Santosh Shilimkar santosh.shilim...@ti.com --- .../bindings/memory

[PATCH 3/5] ARM: dts: EMIF and LPDDR2 device tree data for OMAP4 boards

2012-08-13 Thread Santosh Shilimkar
-by: Aneesh V ane...@ti.com [santosh.shilim...@ti.com: Rebased against 3.6-rc] Signed-off-by: Santosh Shilimkar santosh.shilim...@ti.com --- arch/arm/boot/dts/elpida_ecb240abacn.dtsi | 67 + arch/arm/boot/dts/omap4-panda.dts | 13 ++ arch/arm/boot/dts/omap4

[PATCH 4/5] ARM: OMAP4: Add L2 Cache Controller in Device Tree

2012-08-13 Thread Santosh Shilimkar
This provides PL310 Level 2 Cache Controller Device Tree support for OMAP4 based devices. Cc: Benoit Cousson b-cous...@ti.com Signed-off-by: Santosh Shilimkar santosh.shilim...@ti.com --- arch/arm/boot/dts/omap4.dtsi |7 +++ arch/arm/mach-omap2/omap4-common.c |6 +- 2 files

[PATCH 5/5] ARM: OMAP4: Add local timer support for Device Tree

2012-08-13 Thread Santosh Shilimkar
Add cortex-a9 local timer support for all OMAP4 based SOCs using DT. Cc: Benoit Cousson b-cous...@ti.com Signed-off-by: Santosh Shilimkar santosh.shilim...@ti.com --- arch/arm/boot/dts/omap4.dtsi |6 ++ arch/arm/mach-omap2/timer.c |6 ++ 2 files changed, 12 insertions(+) diff

[PATCH 1/5] dt: device tree bindings for LPDDR2 memories

2012-08-13 Thread Santosh Shilimkar
-cous...@ti.com Reviewed-by: Grant Likely grant.lik...@secretlab.ca Tested-by: Lokesh Vutla lokeshvu...@ti.com Signed-off-by: Aneesh V ane...@ti.com [santosh.shilim...@ti.com: Rebased against 3.6-rc] Signed-off-by: Santosh Shilimkar santosh.shilim...@ti.com --- .../devicetree/bindings/lpddr2/lpddr2

[PATCH 0/2] ARM: OMAP5: Enable local timer support

2012-08-13 Thread Santosh Shilimkar
Below are the couple of patches which enables the architected cpu local timer support for OMAP5 devices. Santosh Shilimkar (2): ARM: OMAP: Add initialisation for the real-time counter. ARM: OMAP5: Enable arch timer support arch/arm/boot/dts/omap5.dtsi |6 +++ arch/arm/mach-omap2/Kconfig

[PATCH 2/2] ARM: OMAP5: Enable arch timer support

2012-08-13 Thread Santosh Shilimkar
Enable Cortex A15 generic timer support for OMAP5 based SOCs. The CPU local timers run on the free running real time counter clock. Signed-off-by: Santosh Shilimkar santosh.shilim...@ti.com --- arch/arm/boot/dts/omap5.dtsi |6 ++ arch/arm/mach-omap2/Kconfig |1 + arch/arm/mach-omap2

[PATCH 1/2] ARM: OMAP: Add initialisation for the real-time counter.

2012-08-13 Thread Santosh Shilimkar
initialisation, hardware takes care of adjusting the clock in different low power modes to keep counter rate constant. Signed-off-by: Santosh Shilimkar santosh.shilim...@ti.com --- arch/arm/mach-omap2/Kconfig |4 ++ arch/arm/mach-omap2/timer.c | 89 ++- 2 files

[PATCH v2] ARM: OMAP4: sleep: Save the complete used register stack frame

2012-08-09 Thread Santosh Shilimkar
used registers. Reported-by: Grygorii Strashko grygorii.stras...@ti.com Signed-off-by: Santosh Shilimkar santosh.shilim...@ti.com Cc: Kevin Hilman khil...@ti.com --- v2: Added comment in the code. arch/arm/mach-omap2/sleep44xx.S |8 ++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff

[PATCH] OMAP2+: Fix random config build break with !ARM_CPU_SUSPEND

2012-07-13 Thread Santosh Shilimkar
...@arm.linux.org.uk Cc: Kevin Hilman khil...@ti.com Reported-by: Tony Lindgren t...@atomide.com Signed-off-by: Santosh Shilimkar santosh.shilim...@ti.com --- Applies against linux-omap master at commit cb07e339457. arch/arm/mach-omap2/Kconfig |1 + 1 file changed, 1 insertion(+) diff --git a/arch/arm/mach

[PATCH 0/2] OMAP4: DT update for L2 controller and local timers

2012-07-09 Thread Santosh Shilimkar
Couple of patches which updates the device tree support for OMAP4. - Pl310 L2 cache controller DT support - ARM cortex-A9 local timer DT support Tested on OMAP4430 SDP. Santosh Shilimkar (2): ARM: OMAP4: Add L2 Cache Controller in Device Tree ARM: OMAP4: Add local timer support for Device

[PATCH 1/2] ARM: OMAP4: Add L2 Cache Controller in Device Tree

2012-07-09 Thread Santosh Shilimkar
This provides PL310 Level 2 Cache Controller Device Tree support for OMAP4 based devices. Cc: Benoit Cousson b-cous...@ti.com Signed-off-by: Santosh Shilimkar santosh.shilim...@ti.com --- arch/arm/boot/dts/omap4.dtsi |7 +++ arch/arm/mach-omap2/omap4-common.c |6 +- 2 files

[PATCH 2/2] ARM: OMAP4: Add local timer support for Device Tree

2012-07-09 Thread Santosh Shilimkar
Add cortex-a9 local timer support for all OMAP4 based SOCs using DT. Cc: Benoit Cousson b-cous...@ti.com Signed-off-by: Santosh Shilimkar santosh.shilim...@ti.com --- arch/arm/boot/dts/omap4.dtsi |6 ++ arch/arm/mach-omap2/timer.c | 11 --- 2 files changed, 14 insertions

[GIT PULL] ARM: OMAP5: Add minimal OMAP5 SOC support for 3.6

2012-07-09 Thread Santosh Shilimkar
from board file ARM: OMAP5: board-generic: Add device tree support arm/dts: OMAP5: Add omap5 dts files ARM: OMAP5: Add the build support Santosh Shilimkar (2): ARM: OMAP5: Add the WakeupGen IP updates ARM: OMAP5: Add SMP support Tarun Kanti DebBarma (1): ARM: Kconfig update to support

[PATCH v2 07/14] ARM: OMAP5: l3: Add l3 error handler support for omap5.

2012-07-06 Thread Santosh Shilimkar
-by: Santosh Shilimkar santosh.shilim...@ti.com --- arch/arm/mach-omap2/Makefile |1 + arch/arm/mach-omap2/devices.c |2 +- arch/arm/mach-omap2/omap_l3_noc.h | 22 ++ 3 files changed, 20 insertions(+), 5 deletions(-) diff --git a/arch/arm/mach-omap2/Makefile b

[PATCH v2 11/14] ARM: OMAP5: board-generic: Add device tree support.

2012-07-06 Thread Santosh Shilimkar
From: R Sricharan r.sricha...@ti.com Adding the minimal support for OMAP5 evm board with device tree. Reviewed-by: Benoit Cousson b-cous...@ti.com Signed-off-by: R Sricharan r.sricha...@ti.com Signed-off-by: Santosh Shilimkar santosh.shilim...@ti.com --- .../devicetree/bindings/arm/omap

[PATCH v2 14/14] ARM: Kconfig update to support additional GPIOs in OMAP5

2012-07-06 Thread Santosh Shilimkar
From: Tarun Kanti DebBarma tarun.ka...@ti.com OMAP5 has 8 GPIO banks so that there are 32x8 = 256 GPIOs. In order for the gpiolib to detect and initialize these additional GPIOs and other TWL GPIOs, ARCH_NR_GPIO is set to 512 instead of present 256. Cc: Santosh Shilimkar santosh.shilim...@ti.com

[PATCH v2 03/14] ARM: OMAP5: id: Add cpu id for ES versions

2012-07-06 Thread Santosh Shilimkar
From: R Sricharan r.sricha...@ti.com Adding the OMAP5 ES1.0, 2.0 and OMAP5432 cpu revision detection support. Signed-off-by: R Sricharan r.sricha...@ti.com Signed-off-by: Santosh Shilimkar santosh.shilim...@ti.com --- arch/arm/mach-omap2/control.h |4 arch/arm/mach-omap2/id.c

[PATCH v2 02/14] ARM: OMAP: counter-32k: Select the CR register offset using the IP scheme.

2012-07-06 Thread Santosh Shilimkar
the CR register offset accordingly. Signed-off-by: R Sricharan r.sricha...@ti.com Signed-off-by: Santosh Shilimkar santosh.shilim...@ti.com --- arch/arm/plat-omap/counter_32k.c | 16 +--- 1 file changed, 13 insertions(+), 3 deletions(-) diff --git a/arch/arm/plat-omap/counter_32k.c b

[PATCH v2 09/14] ARM: OMAP5: Add SMP support.

2012-07-06 Thread Santosh Shilimkar
Add OMAP5 SMP boot support using OMAP4 SMP code. The relevant code paths are runtime checked using cpu id Signed-off-by: R Sricharan r.sricha...@ti.com Signed-off-by: Santosh Shilimkar santosh.shilim...@ti.com --- arch/arm/mach-omap2/common.h |1 + arch/arm/mach-omap2/omap-headsmp.S

[PATCH v2 10/14] ARM: omap2+: board-generic: clean up the irq data from board file.

2012-07-06 Thread Santosh Shilimkar
board's irq init support with device tree. Signed-off-by: R Sricharan r.sricha...@ti.com Signed-off-by: Santosh Shilimkar santosh.shilim...@ti.com --- arch/arm/mach-omap2/board-generic.c | 23 ++- arch/arm/mach-omap2/common.h|6 -- arch/arm/mach-omap2/irq.c

[PATCH v2 01/14] ARM: OMAP2+: Move stubbed secure_sram_reserve function to a common.c and call it __weak

2012-07-06 Thread Santosh Shilimkar
Sricharan r.sricha...@ti.com Signed-off-by: Santosh Shilimkar santosh.shilim...@ti.com --- arch/arm/plat-omap/common.c |9 + arch/arm/plat-omap/include/plat/omap-secure.h |5 - 2 files changed, 9 insertions(+), 5 deletions(-) diff --git a/arch/arm/plat-omap

[PATCH v2 08/14] ARM: OMAP5: Add the WakeupGen IP updates

2012-07-06 Thread Santosh Shilimkar
the WakeupGen code accordingly. Signed-off-by: R Sricharan r.sricha...@ti.com Signed-off-by: Santosh Shilimkar santosh.shilim...@ti.com --- arch/arm/mach-omap2/include/mach/omap-wakeupgen.h |7 ++ arch/arm/mach-omap2/omap-hotplug.c| 24 - arch/arm/mach-omap2/omap-smp.c

[PATCH v2 05/14] ARM: OMAP5: timer: Add clocksource, clockevent support

2012-07-06 Thread Santosh Shilimkar
From: R Sricharan r.sricha...@ti.com Adding the Initialisaton for clocksource and clockevent device on OMAP5 Socs. Signed-off-by: R Sricharan r.sricha...@ti.com Signed-off-by: Santosh Shilimkar santosh.shilim...@ti.com --- arch/arm/mach-omap2/common.h |1 + arch/arm/mach-omap2/timer.c

[PATCH v2 06/14] ARM: OMAP5: gpmc: Update gpmc_init()

2012-07-06 Thread Santosh Shilimkar
From: R Sricharan r.sricha...@ti.com GPMC module is the same as in OMAP4. Just update the base address and irq number. Signed-off-by: R Sricharan r.sricha...@ti.com Signed-off-by: Santosh Shilimkar santosh.shilim...@ti.com --- arch/arm/mach-omap2/gpmc.c |3 ++- 1 file changed, 2 insertions

[PATCH v2 00/14] ARM: OMAP5: Add minimal OMAP5 SOC support

2012-07-06 Thread Santosh Shilimkar
support. arm/dts: OMAP5: Add omap5 dts files ARM: OMAP5: Add the build support Santosh Shilimkar (2): ARM: OMAP5: Add the WakeupGen IP updates ARM: OMAP5: Add SMP support. Tarun Kanti DebBarma (1): ARM: Kconfig update to support additional GPIOs in OMAP5 .../devicetree/bindings/arm/omap

[PATCH v2 13/14] ARM: OMAP5: Add the build support

2012-07-06 Thread Santosh Shilimkar
From: R Sricharan r.sricha...@ti.com Adding the build support required for OMAP5 soc in to omap2+ config. Signed-off-by: Santosh Shilimkar santosh.shilim...@ti.com Signed-off-by: R Sricharan r.sricha...@ti.com Signed-off-by: Santosh Shilimkar santosh.shilim...@ti.com --- arch/arm/configs

[cleanup-part2 PATCH] ARM: OMAP: sdrc: Fix the build break for OMAP4 only builds.

2012-07-06 Thread Santosh Shilimkar
introduced CONFIG_SOC_HAS_OMAP2_SDRC marco. Cc: Tony Lindgren t...@atomide.com Signed-off-by: Santosh Shilimkar santosh.shilim...@ti.com --- arch/arm/plat-omap/include/plat/sdrc.h |2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/arch/arm/plat-omap/include/plat/sdrc.h b/arch/arm

[PATCH v1 01/14] ARM: OMAP2+: Move stubbed secure_sram_reserve function to a common.c and call it __weak

2012-07-05 Thread Santosh Shilimkar
Sricharan r.sricha...@ti.com Signed-off-by: Santosh Shilimkar santosh.shilim...@ti.com --- arch/arm/plat-omap/common.c |9 + arch/arm/plat-omap/include/plat/omap-secure.h |5 - 2 files changed, 9 insertions(+), 5 deletions(-) diff --git a/arch/arm/plat-omap

[PATCH v1 07/14] ARM: OMAP5: l3: Add l3 error handler support for omap5.

2012-07-05 Thread Santosh Shilimkar
-by: Santosh Shilimkar santosh.shilim...@ti.com --- arch/arm/mach-omap2/Makefile |1 + arch/arm/mach-omap2/devices.c |2 +- arch/arm/mach-omap2/omap_l3_noc.h | 22 ++ 3 files changed, 20 insertions(+), 5 deletions(-) diff --git a/arch/arm/mach-omap2/Makefile b

[PATCH v1 06/14] ARM: OMAP5: gpmc: Update gpmc_init()

2012-07-05 Thread Santosh Shilimkar
From: R Sricharan r.sricha...@ti.com GPMC module is the same as in OMAP4. Just update the base address and irq number. Signed-off-by: R Sricharan r.sricha...@ti.com Signed-off-by: Santosh Shilimkar santosh.shilim...@ti.com --- arch/arm/mach-omap2/gpmc.c |3 ++- 1 file changed, 2 insertions

[PATCH v1 10/14] ARM: omap2+: board-generic: clean up the irq data from board file.

2012-07-05 Thread Santosh Shilimkar
board's irq init support with device tree. Signed-off-by: R Sricharan r.sricha...@ti.com Signed-off-by: Santosh Shilimkar santosh.shilim...@ti.com --- arch/arm/mach-omap2/board-generic.c | 23 ++- arch/arm/mach-omap2/common.h|6 -- arch/arm/mach-omap2/irq.c

[PATCH v1 13/14] ARM: OMAP5: Add the build support

2012-07-05 Thread Santosh Shilimkar
From: R Sricharan r.sricha...@ti.com Adding the build support required for OMAP5 soc in to omap2+ config. Signed-off-by: Santosh Shilimkar santosh.shilim...@ti.com Signed-off-by: R Sricharan r.sricha...@ti.com Signed-off-by: Santosh Shilimkar santosh.shilim...@ti.com --- arch/arm/configs

[PATCH v1 02/14] ARM: OMAP: counter-32k: Select the CR register offset using the IP scheme.

2012-07-05 Thread Santosh Shilimkar
the CR register offset accordingly. Signed-off-by: R Sricharan r.sricha...@ti.com Signed-off-by: Santosh Shilimkar santosh.shilim...@ti.com --- arch/arm/plat-omap/counter_32k.c | 16 +--- 1 file changed, 13 insertions(+), 3 deletions(-) diff --git a/arch/arm/plat-omap/counter_32k.c b

[PATCH 2/5] ARM: OMAP5: board-generic: Add device tree support.

2012-07-05 Thread Santosh Shilimkar
From: R Sricharan r.sricha...@ti.com Adding the minimal support for OMAP5 evm board with device tree. Reviewed-by: Benoit Cousson b-cous...@ti.com Signed-off-by: R Sricharan r.sricha...@ti.com Signed-off-by: Santosh Shilimkar santosh.shilim...@ti.com --- .../devicetree/bindings/arm/omap

[PATCH v1 14/14] ARM: Kconfig update to support additional GPIOs in OMAP5

2012-07-05 Thread Santosh Shilimkar
From: Tarun Kanti DebBarma tarun.ka...@ti.com OMAP5 has 8 GPIO banks so that there are 32x8 = 256 GPIOs. In order for the gpiolib to detect and initialize these additional GPIOs and other TWL GPIOs, ARCH_NR_GPIO is set to 512 instead of present 256. Cc: Santosh Shilimkar santosh.shilim...@ti.com

[PATCH 3/5] arm/dts: OMAP5: Add omap5 dts files

2012-07-05 Thread Santosh Shilimkar
From: R Sricharan r.sricha...@ti.com Adding the minimum device tree files required for OMAP5 to boot. Reviewed-by: Benoit Cousson b-cous...@ti.com Signed-off-by: R Sricharan r.sricha...@ti.com Signed-off-by: Santosh Shilimkar santosh.shilim...@ti.com --- arch/arm/boot/dts/omap5-evm.dts | 20

[PATCH v1 09/14] ARM: OMAP5: Add SMP support.

2012-07-05 Thread Santosh Shilimkar
Add OMAP5 SMP boot support using OMAP4 SMP code. The relevant code paths are runtime checked using cpu id Signed-off-by: R Sricharan r.sricha...@ti.com Signed-off-by: Santosh Shilimkar santosh.shilim...@ti.com --- arch/arm/mach-omap2/common.h |1 + arch/arm/mach-omap2/omap-headsmp.S

[PATCH v1 00/14] ARM: OMAP5: Add minimal OMAP5 SOC support

2012-07-05 Thread Santosh Shilimkar
handler support for omap5. ARM: omap2+: board-generic: clean up the irq data from board file. ARM: OMAP5: board-generic: Add device tree support. arm/dts: OMAP5: Add omap5 dts files ARM: OMAP5: Add the build support Santosh Shilimkar (2): ARM: OMAP5: Add the WakeupGen IP updates ARM

[PATCH v1 12/14] arm/dts: OMAP5: Add omap5 dts files

2012-07-05 Thread Santosh Shilimkar
From: R Sricharan r.sricha...@ti.com Adding the minimum device tree files required for OMAP5 to boot. Reviewed-by: Benoit Cousson b-cous...@ti.com Signed-off-by: R Sricharan r.sricha...@ti.com Signed-off-by: Santosh Shilimkar santosh.shilim...@ti.com --- arch/arm/boot/dts/omap5-evm.dts | 20

[PATCH v1 05/14] ARM: OMAP5: timer: Add clocksource, clockevent support

2012-07-05 Thread Santosh Shilimkar
From: R Sricharan r.sricha...@ti.com Adding the Initialisaton for clocksource and clockevent device on OMAP5 Socs. Signed-off-by: R Sricharan r.sricha...@ti.com Signed-off-by: Santosh Shilimkar santosh.shilim...@ti.com --- arch/arm/mach-omap2/common.h |1 + arch/arm/mach-omap2/timer.c

[PATCH v1 04/14] ARM: OMAP5: Add minimal support for OMAP5430 SOC

2012-07-05 Thread Santosh Shilimkar
DDR3 and SATA. Patch includes: - The machine specific headers and sources updates. - Platform header updates. - Minimum initialisation support for serial. - IO table init Signed-off-by: R Sricharan r.sricha...@ti.com Signed-off-by: Santosh Shilimkar santosh.shilim...@ti.com --- arch/arm/mach

[PATCH v1 11/14] ARM: OMAP5: board-generic: Add device tree support.

2012-07-05 Thread Santosh Shilimkar
From: R Sricharan r.sricha...@ti.com Adding the minimal support for OMAP5 evm board with device tree. Reviewed-by: Benoit Cousson b-cous...@ti.com Signed-off-by: R Sricharan r.sricha...@ti.com Signed-off-by: Santosh Shilimkar santosh.shilim...@ti.com --- .../devicetree/bindings/arm/omap

[PATCH] ARM: architected timers: Mark the clockevent with the C3_STOP feature

2012-07-04 Thread Santosh Shilimkar
Signed-off-by: Santosh Shilimkar santosh.shilim...@ti.com --- arch/arm/kernel/arch_timer.c |2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/arch/arm/kernel/arch_timer.c b/arch/arm/kernel/arch_timer.c index dd58035..df44c8c 100644 --- a/arch/arm/kernel/arch_timer.c +++ b/arch

[PATCH v4 0/4] dt: device tree support for TI EMIF driver for 3.6

2012-06-29 Thread Santosh Shilimkar
Tony, Here is the EMIF driver DT support which was kept on hold for the driver to get merged. The series has been already reviewed on the list. v4: Fixed the DT config flag and rebased against 3.5-rc4 v3: Rebased against the 3.5-rc2 This series adds device tree support for TI EMIF SDRAM

[PATCH v4 2/4] dt: emif: device tree bindings for TI's EMIF sdram controller

2012-06-29 Thread Santosh Shilimkar
Cousson b-cous...@ti.com Reviewed-by: Grant Likely grant.lik...@secretlab.ca Tested-by: Lokesh Vutla lokeshvu...@ti.com Signed-off-by: Aneesh V ane...@ti.com [santosh.shilim...@ti.com: Rebased against 3.5-rc] Signed-off-by: Santosh Shilimkar santosh.shilim...@ti.com --- .../bindings/memory

[PATCH v4 1/4] dt: device tree bindings for LPDDR2 memories

2012-06-29 Thread Santosh Shilimkar
-cous...@ti.com Reviewed-by: Grant Likely grant.lik...@secretlab.ca Tested-by: Lokesh Vutla lokeshvu...@ti.com Signed-off-by: Aneesh V ane...@ti.com [santosh.shilim...@ti.com: Rebased against 3.5-rc] Signed-off-by: Santosh Shilimkar santosh.shilim...@ti.com --- .../devicetree/bindings/lpddr2/lpddr2

[PATCH v4 3/4] arm: dts: EMIF and LPDDR2 device tree data for OMAP4 boards

2012-06-29 Thread Santosh Shilimkar
-by: Aneesh V ane...@ti.com [santosh.shilim...@ti.com: Rebased against 3.5-rc] Signed-off-by: Santosh Shilimkar santosh.shilim...@ti.com --- arch/arm/boot/dts/elpida_ecb240abacn.dtsi | 67 + arch/arm/boot/dts/omap4-panda.dts | 13 ++ arch/arm/boot/dts/omap4

[PATCH v4 4/4] memory: emif: add device tree support to emif driver

2012-06-29 Thread Santosh Shilimkar
-rc] Signed-off-by: Santosh Shilimkar santosh.shilim...@ti.com --- drivers/memory/emif.c | 291 - 1 file changed, 290 insertions(+), 1 deletion(-) diff --git a/drivers/memory/emif.c b/drivers/memory/emif.c index 33a4396..101997b 100644 --- a/drivers

[PATCH v3 0/4] dt: device tree support for TI EMIF driver for 3.6

2012-06-14 Thread Santosh Shilimkar
Tony, Here is the EMIF driver DT support which was kept on hold for the driver to get merged. The series has been already reviewed on the list. This series adds device tree support for TI EMIF SDRAM controller driver. For this, a binding has been added for representing AC timing parameters and

[PATCH v3 1/4] dt: device tree bindings for LPDDR2 memories

2012-06-14 Thread Santosh Shilimkar
-cous...@ti.com Reviewed-by: Grant Likely grant.lik...@secretlab.ca Tested-by: Lokesh Vutla lokeshvu...@ti.com Signed-off-by: Aneesh V ane...@ti.com [santosh.shilim...@ti.com: Rebased against 3.5-rc] Signed-off-by: Santosh Shilimkar santosh.shilim...@ti.com --- .../devicetree/bindings/lpddr2/lpddr2

[PATCH v3 3/4] arm: dts: EMIF and LPDDR2 device tree data for OMAP4 boards

2012-06-14 Thread Santosh Shilimkar
-by: Aneesh V ane...@ti.com [santosh.shilim...@ti.com: Rebased against 3.5-rc] Signed-off-by: Santosh Shilimkar santosh.shilim...@ti.com --- arch/arm/boot/dts/elpida_ecb240abacn.dtsi | 67 + arch/arm/boot/dts/omap4-panda.dts | 13 ++ arch/arm/boot/dts/omap4

[PATCH v3 2/4] dt: emif: device tree bindings for TI's EMIF sdram controller

2012-06-14 Thread Santosh Shilimkar
Cousson b-cous...@ti.com Reviewed-by: Grant Likely grant.lik...@secretlab.ca Tested-by: Lokesh Vutla lokeshvu...@ti.com Signed-off-by: Aneesh V ane...@ti.com [santosh.shilim...@ti.com: Rebased against 3.5-rc] Signed-off-by: Santosh Shilimkar santosh.shilim...@ti.com --- .../bindings/memory

[PATCH v3 4/4] memory: emif: add device tree support to emif driver

2012-06-14 Thread Santosh Shilimkar
-rc] Signed-off-by: Santosh Shilimkar santosh.shilim...@ti.com Cc: Greg Kroah-Hartman gre...@linuxfoundation.org --- drivers/memory/emif.c | 285 - 1 file changed, 284 insertions(+), 1 deletion(-) diff --git a/drivers/memory/emif.c b/drivers/memory

Re: [PATCH 2/6] ARM: OMAP2+: PM: introduce power domains functional states

2012-05-23 Thread Santosh Shilimkar
Jean, On Monday 21 May 2012 07:55 PM, Shilimkar, Santosh wrote: Jean, On Mon, May 21, 2012 at 7:23 PM, Jean Pihet jean.pi...@newoldbits.com wrote: Hi Santosh, On Thu, May 17, 2012 at 12:04 PM, Santosh Shilimkar santosh.shilim...@ti.com wrote: [...] What do you think? I like the idea

[PATCH v2 1/4] ARM: OMAP: timer: allow gp timer clock-event to be used on both cpus

2012-05-21 Thread Santosh Shilimkar
, and set the irq to allow the clockevent core to determine the affinity of the timer. Signed-off-by: Colin Cross ccr...@android.com Signed-off-by: Santosh Shilimkar santosh.shilim...@ti.com --- arch/arm/mach-omap2/timer.c |4 +++- 1 files changed, 3 insertions(+), 1 deletions(-) diff --git

[PATCH v2 0/4] OMAP4: CPUidle: Add coupled idle support

2012-05-21 Thread Santosh Shilimkar
synchronization for coupled idle states Santosh Shilimkar (3): ARM: OMAP: timer: allow gp timer clock-event to be used on both cpus ARM: OMAP4: CPUidle: Use coupled cpuidle states to implement SMP cpuidle. ARM: OMAP4: CPUidle: Open broadcast clock-event device. arch/arm/mach-omap2/Kconfig

[PATCH v2 4/4] ARM: OMAP4: CPUidle: Open broadcast clock-event device.

2012-05-21 Thread Santosh Shilimkar
mode was also broken. This change fixes both the periodic/oneshot broadcast modes. Discussion thread : https://lkml.org/lkml/2012/4/9/13 Signed-off-by: Santosh Shilimkar santosh.shilim...@ti.com --- arch/arm/mach-omap2/cpuidle44xx.c | 13 + 1 files changed, 13 insertions(+), 0

[PATCH v2 3/4] ARM: OMAP4: CPUidle: add synchronization for coupled idle states

2012-05-21 Thread Santosh Shilimkar
the coupled state enter method can return. In addition, cpuidle_coupled_parallel_barrier() is used to ensure the clearing of the 'done' flag is synchronized on all CPUs. Signed-off-by: Kevin Hilman khil...@ti.com Signed-off-by: Santosh Shilimkar santosh.shilim...@ti.com --- arch/arm/mach-omap2

[PATCH v2 2/4] ARM: OMAP4: CPUidle: Use coupled cpuidle states to implement SMP cpuidle.

2012-05-21 Thread Santosh Shilimkar
Cross on the suggestions/fixes on the intermediate version of this patch. Signed-off-by: Santosh Shilimkar santosh.shilim...@ti.com --- arch/arm/mach-omap2/Kconfig |1 + arch/arm/mach-omap2/cpuidle44xx.c | 112 ++--- 2 files changed, 67 insertions(+), 46

Re: [PATCH 2/6] ARM: OMAP2+: PM: introduce power domains functional states

2012-05-17 Thread Santosh Shilimkar
Jean, On Tuesday 08 May 2012 02:10 PM, Jean Pihet wrote: Paul, On Mon, May 7, 2012 at 11:28 AM, Paul Walmsley p...@pwsan.com wrote: Hi On Wed, 18 Apr 2012, jean.pi...@newoldbits.com wrote: From: Jean Pihet j-pi...@ti.com Introduce functional (or logical) states for power domains and the

Re: [PATCHv5 3/8] ARM: OMAP4460: Workaround for ROM bug because of CA9 r2pX gic control register change

2012-05-16 Thread Santosh Shilimkar
On Wednesday 16 May 2012 03:14 AM, Kevin Hilman wrote: Santosh, Tero Kristo t-kri...@ti.com writes: From: Santosh Shilimkar santosh.shilim...@ti.com GIC distributor control register has changed between CortexA9 r1pX and r2pX. The Control Register secure banked version is now composed

Re: [PATCHv5 3/8] ARM: OMAP4460: Workaround for ROM bug because of CA9 r2pX gic control register change

2012-05-16 Thread Santosh Shilimkar
Kevin, On Wednesday 16 May 2012 02:46 PM, Santosh Shilimkar wrote: On Wednesday 16 May 2012 03:14 AM, Kevin Hilman wrote: Santosh, Tero Kristo t-kri...@ti.com writes: From: Santosh Shilimkar santosh.shilim...@ti.com GIC distributor control register has changed between CortexA9 r1pX

Re: [PATCHv5 3/8] ARM: OMAP4460: Workaround for ROM bug because of CA9 r2pX gic control register change

2012-05-16 Thread Santosh Shilimkar
Tero, On Monday 14 May 2012 03:33 PM, Tero Kristo wrote: From: Santosh Shilimkar santosh.shilim...@ti.com GIC distributor control register has changed between CortexA9 r1pX and r2pX. The Control Register secure banked version is now composed of 2 bits: bit 0 == Secure Enable bit

Re: [PATCH 0/9] ARM: OMAP: DMTIMER clean-up in preparation for device-tree

2012-05-16 Thread Santosh Shilimkar
+ Tarun for any comments On Wednesday 16 May 2012 05:05 AM, Jon Hunter wrote: From: Jon Hunter jon-hun...@ti.com In order to migrate the dmtimer driver to support device-tree I found that it was first necessary to clean-up the timer platform data. The goal of this series is to simplify the

<    3   4   5   6   7   8   9   10   11   12   >