[PATCH] net: bluetooth: Fix build error from rfcomm/tty.c

2010-08-08 Thread Santosh Shilimkar
mismatch Signed-off-by: Santosh Shilimkar santosh.shilim...@ti.com Cc: Marcel Holtmann mar...@holtmann.org --- net/bluetooth/rfcomm/tty.c |2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/net/bluetooth/rfcomm/tty.c b/net/bluetooth/rfcomm/tty.c index 026205c..befc3a5 100644

[PATCH 0/3] SRAM map series

2010-08-08 Thread Santosh Shilimkar
(omap3_defconfig) builds Santosh Shilimkar (3): ARM: mmu: Setup MT_MEMORY and MT_MEMORY_NONACHED L1 entries omap1/2/3/4: map only available SRAM davinci: Map sram using MT_MEMORY_NONCACHED instead of MT_DEVICE arch/arm/mach-davinci/dm355.c |3 +-- arch/arm/mach-davinci/dm365.c |3

[PATCH 1/3] ARM: mmu: Setup MT_MEMORY and MT_MEMORY_NONACHED L1 entries

2010-08-08 Thread Santosh Shilimkar
not present. On the newer ARM with speculation, this is dangerous and can result in untraceable aborts. The patch is based on inputs from Russell King Signed-off-by: Santosh Shilimkar santosh.shilim...@ti.com Cc: Russell King li...@arm.linux.org.uk --- arch/arm/mm/mmu.c | 18

[PATCH 2/3] omap1/2/3/4: map only available SRAM

2010-08-08 Thread Santosh Shilimkar
in untraceable aborts. Signed-off-by: Santosh Shilimkar santosh.shilim...@ti.com --- arch/arm/plat-omap/sram.c | 25 + 1 files changed, 5 insertions(+), 20 deletions(-) diff --git a/arch/arm/plat-omap/sram.c b/arch/arm/plat-omap/sram.c index 226b2e8..10b3b4c 100644 --- a/arch/arm

[PATCH 3/3] davinci: Map sram using MT_MEMORY_NONCACHED instead of MT_DEVICE

2010-08-08 Thread Santosh Shilimkar
hardware can try this out Signed-off-by: Santosh Shilimkar santosh.shilim...@ti.com Cc: davinci-linux-open-sou...@linux.davincidsp.com Cc: Kevin Hilman khil...@deeprootsystems.com --- arch/arm/mach-davinci/dm355.c |3 +-- arch/arm/mach-davinci/dm365.c |3 +-- arch/arm/mach-davinci/dm644x.c

[PATCH 0/4] omap4: Control module series

2010-08-16 Thread Santosh Shilimkar
http://www.spinics.net/lists/linux-omap/msg34830.html It's tested on tested on OMAP4 and OMAP3 SDPs. Santosh Shilimkar (4): omap4: control: Add ctrl_pad_base to omap_globals omap4: control: Add accessor api's for pad control module omap4: control: Add the register definition

[PATCH 1/4] omap4: control: Add ctrl_pad_base to omap_globals

2010-08-16 Thread Santosh Shilimkar
and infrastructure code The main control core base is still kept same in this patch to keep git-bisect working. This will be fixed in the relevant patch in this series. Signed-off-by: Benoit Cousson b-cous...@ti.com Signed-off-by: Santosh Shilimkar santosh.shilim...@ti.com --- arch/arm/mach-omap2

[PATCH 2/4] omap4: control: Add accessor api's for pad control module

2010-08-16 Thread Santosh Shilimkar
On OMAP4 control pad are not addressable from control core base. So the common omap_ctrl_read/write APIs breaks Hence export separate APIs to manage the omap4 pad control registers. This APIs will work only for OMAP4 Signed-off-by: Santosh Shilimkar santosh.shilim...@ti.com --- arch/arm/mach

[PATCH 4/4] omap4: control: Fix the control module register accesses

2010-08-16 Thread Santosh Shilimkar
for OMAP4 4. Fix all the register define in hsmmc.c 5. Use the control pad accessor API for omap4 hsmmc register accesses Signed-off-by: Benoit Cousson b-cous...@ti.com Signed-off-by: Santosh Shilimkar santosh.shilim...@ti.com --- arch/arm/mach-omap2/hsmmc.c | 67

[PATCH 6/6] ARM: l2x0: Optimise the range based operations

2010-09-07 Thread Santosh Shilimkar
For the big buffers which are in excess of cache size, the maintaince operations by PA are very slow. For such buffers the maintainace operations can be speeded up by using the WAY based method. Signed-off-by: Santosh Shilimkar santosh.shilim...@ti.com Acked-by: Catalin Marinas catalin.mari

[PATCH 1/6] arm: Disable outer (L2) cache in kexec

2010-09-07 Thread Santosh Shilimkar
From: Thomas Gleixner [t...@linutronix.de] kexec does not disable the outer cache before disabling the inner caches in cpu_proc_fin(). So L2 is enabled across the kexec jump. When the new kernel enables chaches again, it randomly crashes. Disabling L2 before calling cpu_proc_fin() cures the

[PATCH 5/6] ARM: l2x0: Determine the cache size

2010-09-07 Thread Santosh Shilimkar
The cache size is needed for to optimise range based maintainance operations Signed-off-by: Santosh Shilimkar santosh.shilim...@ti.com Acked-by: Catalin Marinas catalin.mari...@arm.com --- arch/arm/include/asm/hardware/cache-l2x0.h |1 + arch/arm/mm/cache-l2x0.c | 13

[PATCH 4/6] ARM: l2x0: Fix coding-style in the cache-l2x0.h

2010-09-07 Thread Santosh Shilimkar
Replace tab with space after #define to be consisten with other define in the file. Also move the bit mask below the register offsets. Signed-off-by: Santosh Shilimkar santosh.shilim...@ti.com Acked-by: Catalin Marinas catalin.mari...@arm.com --- arch/arm/include/asm/hardware/cache-l2x0.h |8

[PATCH 3/6] omap4: l2x0: Override the default l2x0_disable

2010-09-07 Thread Santosh Shilimkar
The machine_kexec() calls outer_disable which can crash on OMAP4 becasue of trustzone restrictions. This patch overrides the default l2x0_disable with a OMAP4 specific implementation taking care of trustzone Signed-off-by: Santosh Shilimkar santosh.shilim...@ti.com --- arch/arm/mach-omap2/omap4

[PATCH 2/6] arm: Implement l2x0 cache disable functions

2010-09-07 Thread Santosh Shilimkar
From: Thomas Gleixner [t...@linutronix.de] Add flush_all, inv_all and disable functions to the l2x0 code. These functions are called from kexec code to prevent random crashes in the new kernel. Platforms like OMAP which control L2 enable/disable via SMI mode can override the

[PATCH 0/6] ARM: l2x0: kexex, cleanup and optimisation

2010-09-07 Thread Santosh Shilimkar
This series is just repost adding Catalin's ack to the patches and combining Thomas's two rebased kexec patches. It's generated against the mainline 2.6.36-rc3 + Catalin's [PATCH 0/9] Various patches for 2.6.37-rc1 series. Santosh Shilimkar (4): omap4: l2x0: Override the default l2x0_disable

[PATCH 5/7] omap4: Fix bootup crash observed with higher CPU clocks

2010-09-09 Thread Santosh Shilimkar
[fffe] (0xfffe) Code: c03a0ba3 c03a5fcb c045c880 c0394035 (eb017701) ---[ end trace 1b75b31a2719ed1c ]--- The timer hwmod adaptation will eventually fix it in a proper way. Signed-off-by: Rajendra Nayak rna...@ti.com Signed-off-by: Santosh Shilimkar santosh.shilim...@ti.com --- arch/arm/plat

[PATCH 3/7] omap4: l2x0: Fix init parameter for ES2.0

2010-09-09 Thread Santosh Shilimkar
On ES2.0 the L2 cache init parameter ineeds to be changed to take care of cache size. The cache size is 1MB on ES2.0 vs 512KB on ES1.0 This patch fixes the init parameter to update the same using dynamic cpu version check Signed-off-by: Santosh Shilimkar santosh.shilim...@ti.com --- arch/arm

[PATCH 1/7] omap4: Update id.c and cpu.h for es2.0

2010-09-09 Thread Santosh Shilimkar
This patch updates the id.c and cpu.h files to support omap4 ES2.0 silicon detection. Signed-off-by: Santosh Shilimkar santosh.shilim...@ti.com --- arch/arm/mach-omap2/id.c | 29 ++--- arch/arm/plat-omap/include/plat/cpu.h |5 - 2 files changed, 26

[PATCH 2/7] omap4: Temporary fix silicon version detection

2010-09-09 Thread Santosh Shilimkar
Few initial omap4 es2 samples IDCODE is same as es1. This patch uses ARM cpuid register to detect the ES version for such samples This patch can be reverted once all the samples gets replaced with new lot. Signed-off-by: Santosh Shilimkar santosh.shilim...@ti.com --- arch/arm/mach-omap2/id.c

[PATCH 6/7] omap4: Workaround for CMD line reset.

2010-09-09 Thread Santosh Shilimkar
From: Madhusudhan Chikkature madhu...@ti.com Add a delay after CMD line reset to accomdate the reset to complete. The SYSCTL seems to reflect SRC immediately which might not really be indicating the complete of reset. This is observed only with ES2.0 silicon Signed-off-by: Madhusudhan Chikkature

[PATCH 4/7] omap4: Panda: Add DEBUG_LL support

2010-09-09 Thread Santosh Shilimkar
From: David Anders x0132...@ti.com Add support for use of DEBUG_LL for use with PandaBoard. Signed-off-by: David Anders x0132...@ti.com --- arch/arm/plat-omap/include/plat/uncompress.h |1 + 1 files changed, 1 insertions(+), 0 deletions(-) diff --git

[PATCH 0/7] omap4: Fixes, hacks for es2.0

2010-09-09 Thread Santosh Shilimkar
: Correct RX packet allocation Madhusudhan Chikkature (1): omap4: Workaround for CMD line reset. Santosh Shilimkar (4): omap4: Update id.c and cpu.h for es2.0 omap4: Temporary fix silicon version detection omap4: l2x0: Fix init parameter for ES2.0 omap4: Fix bootup crash observed with higher CPU

[PATCH 7/7] KS8851: Correct RX packet allocation

2010-09-09 Thread Santosh Shilimkar
From: Eric Dumazet eric.duma...@gmail.com Use netdev_alloc_skb_ip_align() helper and do correct allocation Tested-by: Abraham Arce x0066...@ti.com Signed-off-by: Abraham Arce x0066...@ti.com --- drivers/net/ks8851.c | 39 +-- 1 files changed, 21

[PATCH 2/3] omap: pm-debug: Enable wakeup_timer_milliseconds debugfs entry

2010-09-14 Thread Santosh Shilimkar
Commit 8e2efde9 added milliseconds suspend wakeup time support but same interface is not exported through debugfs This patch enables the debugfs hook for wakeup_timer_milliseconds Signed-off-by: Santosh Shilimkar santosh.shilim...@ti.com Cc: Kevin Hilman khil...@deeprootsystems.com --- arch/arm

[PATCH 1/3] omap: pm-debug: Move common debug code to pm-debug.c

2010-09-14 Thread Santosh Shilimkar
This patch moves omap2_pm_wakeup_on_timer() and pm debug entries form pm34xx.c to pm-debug.c and export it, so that it is available to other OMAPs Signed-off-by: Santosh Shilimkar santosh.shilim...@ti.com Cc: Kevin Hilman khil...@deeprootsystems.com --- arch/arm/mach-omap2/pm-debug.c | 23

[PATCH 0/3] omap: pm: Move the common code to allow re-use

2010-09-14 Thread Santosh Shilimkar
49553c2ef88749dd502687f4eb9c258bb10a4f44: Linus Torvalds (1): Linux 2.6.36-rc4 Santosh Shilimkar (3): omap: pm-debug: Move common debug code to pm-debug.c omap: pm-debug: Enable wakeup_timer_milliseconds debugfs entry omap: pm: Move set_pwrdm_state routine to common pm.c arch/arm/mach-omap2/pm

[PATCH 3/3] omap: pm: Move set_pwrdm_state routine to common pm.c

2010-09-14 Thread Santosh Shilimkar
The set_pwrdm_state() is needed on omap4 as well so move this routine to common pm.c file so that it's available for omap3/4 Signed-off-by: Rajendra Nayak rna...@ti.com Signed-off-by: Santosh Shilimkar santosh.shilim...@ti.com Cc: Kevin Hilman khil...@deeprootsystems.com --- arch/arm/mach-omap2

[PATCH 2/3 v2] omap: pm-debug: Enable wakeup_timer_milliseconds debugfs entry

2010-09-14 Thread Santosh Shilimkar
Commit 8e2efde9 added milliseconds suspend wakeup time support but same interface is not exported through debugfs This patch enables the debugfs hook for wakeup_timer_milliseconds Signed-off-by: Santosh Shilimkar santosh.shilim...@ti.com Cc: Kevin Hilman khil...@deeprootsystems.com --- arch/arm

[PATCH 1/3 v2] omap: pm-debug: Move common debug code to pm-debug.c

2010-09-14 Thread Santosh Shilimkar
This patch moves omap2_pm_wakeup_on_timer() and pm debug entries form pm34xx.c to pm-debug.c and export it, so that it is available to other OMAPs Signed-off-by: Santosh Shilimkar santosh.shilim...@ti.com Cc: Kevin Hilman khil...@deeprootsystems.com --- arch/arm/mach-omap2/pm-debug.c | 18

[PATCH 3/3 v2] omap: pm: Move set_pwrdm_state routine to common pm.c

2010-09-14 Thread Santosh Shilimkar
The set_pwrdm_state() is needed on omap4 as well so move this routine to common pm.c file so that it's available for omap3/4 Signed-off-by: Rajendra Nayak rna...@ti.com Signed-off-by: Santosh Shilimkar santosh.shilim...@ti.com Cc: Kevin Hilman khil...@deeprootsystems.com --- arch/arm/mach-omap2

[PATCH 0/3 v2] omap: pm: Move the common code to allow re-use

2010-09-14 Thread Santosh Shilimkar
(v2 is rebased on Kevin's 'pm-next' branch) This is small series moves some common pm code out of pm34xx.c so that omap4 can re-use this and not duplicate it. It's boot tested on OMAP3/4 with omap3_defconfig and also simple test with millisecond debugfs entry and suspend/resume. Santosh

[PATCH 14/14] omap4: Fix bootup crash observed with higher CPU clocks

2010-09-17 Thread Santosh Shilimkar
[fffe] (0xfffe) Code: c03a0ba3 c03a5fcb c045c880 c0394035 (eb017701) ---[ end trace 1b75b31a2719ed1c ]--- The timer hwmod adaptation will eventually fix it in a proper way. Signed-off-by: Rajendra Nayak rna...@ti.com Signed-off-by: Santosh Shilimkar santosh.shilim...@ti.com --- arch/arm/plat

[PATCH 03/14] davinci: map sram using MT_MEMORY_NONCACHED instead of MT_DEVICE

2010-09-17 Thread Santosh Shilimkar
hardware can try this out Signed-off-by: Santosh Shilimkar santosh.shilim...@ti.com Acked-by: Kevin Hilman khil...@deeprootsystems.com --- arch/arm/mach-davinci/dm355.c |3 +-- arch/arm/mach-davinci/dm365.c |3 +-- arch/arm/mach-davinci/dm644x.c |3 +-- arch/arm/mach-davinci/dm646x.c

[PATCH 12/14] omap4: l2x0: Fix init parameter for es2.0

2010-09-17 Thread Santosh Shilimkar
On ES2.0 the L2 cache init parameter ineeds to be changed to take care of cache size. The cache size is 1MB on ES2.0 vs 512KB on ES1.0 This patch fixes the init parameter to update the same using dynamic cpu version check Signed-off-by: Santosh Shilimkar santosh.shilim...@ti.com --- arch/arm

[PATCH 11/14] omap4: Fix silicon version detection for early samples

2010-09-17 Thread Santosh Shilimkar
Few initial omap4 es2 samples IDCODE is same as es1. This patch uses ARM cpuid register to detect the ES version for such samples Signed-off-by: Santosh Shilimkar santosh.shilim...@ti.com --- arch/arm/mach-omap2/id.c |9 + 1 files changed, 9 insertions(+), 0 deletions(-) diff --git

[PATCH 13/14] omap4: Panda: Add DEBUG_LL support

2010-09-17 Thread Santosh Shilimkar
From: David Anders x0132...@ti.com Add support for use of DEBUG_LL for use with PandaBoard. Signed-off-by: David Anders x0132...@ti.com --- arch/arm/plat-omap/include/plat/uncompress.h |1 + 1 files changed, 1 insertions(+), 0 deletions(-) diff --git

[PATCH 08/14] omap: sram: fix is_sram_locked check

2010-09-17 Thread Santosh Shilimkar
, the current if check will never return true. Problem 2: For 24xx the correct type check should be with omap_type() function Verified by checking the TRM 24xx for CONTROL_STATUS register bits Signed-off-by: Vikram Pandita vikram.pand...@ti.com Acked-by: Santosh Shilimkar santosh.shilim...@ti.com

[PATCH 05/14] omap4: control: Add accessor api's for pad control module

2010-09-17 Thread Santosh Shilimkar
On OMAP4 control pad are not addressable from control core base. So the common omap_ctrl_read/write APIs breaks Hence export separate APIs to manage the omap4 pad control registers. This APIs will work only for OMAP4 Signed-off-by: Santosh Shilimkar santosh.shilim...@ti.com --- arch/arm/mach

[PATCH 04/14] omap4: control: Add ctrl_pad_base to omap_globals

2010-09-17 Thread Santosh Shilimkar
and infrastructure code The main control core base is still kept same in this patch to keep git-bisect working. This will be fixed in the relevant patch in this series. Signed-off-by: Benoit Cousson b-cous...@ti.com Signed-off-by: Santosh Shilimkar santosh.shilim...@ti.com --- arch/arm/mach-omap2

[PATCH 10/14] omap4: Update id.c and cpu.h for es2.0

2010-09-17 Thread Santosh Shilimkar
This patch updates the id.c and cpu.h files to support omap4 ES2.0 silicon detection. Signed-off-by: Santosh Shilimkar santosh.shilim...@ti.com --- arch/arm/mach-omap2/id.c | 29 ++--- arch/arm/plat-omap/include/plat/cpu.h |5 - 2 files changed, 26

[PATCH 07/14] omap4: control: Fix the control module register accesses

2010-09-17 Thread Santosh Shilimkar
for OMAP4 4. Fix all the register define in hsmmc.c 5. Use the control pad accessor API for omap4 hsmmc register accesses Signed-off-by: Benoit Cousson b-cous...@ti.com Signed-off-by: Santosh Shilimkar santosh.shilim...@ti.com --- arch/arm/mach-omap2/hsmmc.c | 67

[PATCH 02/14] omap: Map only available sram memory

2010-09-17 Thread Santosh Shilimkar
in untraceable aborts. Signed-off-by: Santosh Shilimkar santosh.shilim...@ti.com --- arch/arm/plat-omap/sram.c | 25 + 1 files changed, 5 insertions(+), 20 deletions(-) diff --git a/arch/arm/plat-omap/sram.c b/arch/arm/plat-omap/sram.c index 226b2e8..10b3b4c 100644 --- a/arch/arm

[PATCH 01/14] ARM: mmu: Setup MT_MEMORY and MT_MEMORY_NONCACHED L1 entries

2010-09-17 Thread Santosh Shilimkar
not present. On the newer ARM with speculation, this is dangerous and can result in untraceable aborts. Signed-off-by: Santosh Shilimkar santosh.shilim...@ti.com Reviewed-by: Russell King li...@arm.linux.org.uk --- arch/arm/mm/mmu.c | 17 +++-- 1 files changed, 15 insertions(+), 2

[PATCH 09/14] omap4: sram: Fix start address

2010-09-17 Thread Santosh Shilimkar
From: Vikram Pandita vikram.pand...@ti.com On OMAP4 there is no need to have SRAM_BOOTLOADER_SZ provision Hence put this macro under CONFIG_ARCH_OMAP2PLUS check Signed-off-by: Vikram Pandita vikram.pand...@ti.com Reviewed-by: Santosh Shilimkar santosh.shilim...@ti.com --- arch/arm/plat-omap

[PATCH 00/14] omap sram, omap4 control module and es2.0 support

2010-09-17 Thread Santosh Shilimkar
: Panda: Add DEBUG_LL support Santosh Shilimkar (11): ARM: mmu: Setup MT_MEMORY and MT_MEMORY_NONCACHED L1 entries omap: Map only available sram memory davinci: map sram using MT_MEMORY_NONCACHED instead of MT_DEVICE omap4: control: Add ctrl_pad_base to omap_globals

[PATCH] omap3: Restore the powerdomian states post wfi in omap_sram_idle

2010-10-02 Thread Santosh Shilimkar
going on to move the device idle code from cpuidle but the per power domain change in this patch still not following that suggestion. Ofcourse this code change will get moved together with other device idle code eventually once that happens Signed-off-by: Santosh Shilimkar santosh.shilim...@ti.com

RE: [PATCH] omap4: enable L2 prefetching

2010-11-19 Thread Santosh Shilimkar
-Original Message- From: linux-omap-ow...@vger.kernel.org [mailto:linux-omap- ow...@vger.kernel.org] On Behalf Of Kevin Hilman Sent: Wednesday, November 17, 2010 12:19 AM To: Nishanth Menon Cc: linux-omap; linux-arm; Mans Rullgard Subject: Re: [PATCH] omap4: enable L2 prefetching

RE: [PATCH 08/13] OMAP3: PM: Deny MPU idle while saving secure RAM

2010-11-19 Thread Santosh Shilimkar
-Original Message- From: linux-omap-ow...@vger.kernel.org [mailto:linux-omap- ow...@vger.kernel.org] On Behalf Of Kevin Hilman Sent: Friday, November 19, 2010 10:39 PM To: Nishanth Menon Cc: linux-omap; Jean Pihet; Vishwanath Sripathy; Tony Subject: Re: [PATCH 08/13] OMAP3: PM: Deny

RE: [PATCH 08/13] OMAP3: PM: Deny MPU idle while saving secure RAM

2010-11-19 Thread Santosh Shilimkar
-Original Message- From: Nishanth Menon [mailto:n...@ti.com] Sent: Friday, November 19, 2010 10:55 PM To: Santosh Shilimkar Cc: Kevin Hilman; linux-omap; Jean Pihet; Vishwanath Sripathy; Tony Subject: Re: [PATCH 08/13] OMAP3: PM: Deny MPU idle while saving secure RAM Santosh

[PATCH 0/5] omap4: l2x0 fixes and cleanup

2010-11-19 Thread Santosh Shilimkar
on OMAP4 SDP with omap2plus_defconfig. The following changes since commit e53beacd23d9cb47590da6a7a7f6d417b941a994: Linus Torvalds (1): Linux 2.6.37-rc2 Mans Rullgard (1): omap4: l2x0: enable instruction and data prefetching Santosh Shilimkar (4): ARM: l2x0: Add aux control

[PATCH 3/5] omap4: l2x0: enable instruction and data prefetching

2010-11-19 Thread Santosh Shilimkar
VLDM 470 MB/s read ASM VLD1 488 MB/s write libc 1701 MB/s write ASM ARM 1682 MB/s write ASM VSTM 1693 MB/s write ASM VST1 1681 MB/s Signed-off-by: Mans Rullgard m...@mansr.com Signed-off-by: Santosh Shilimkar santosh.shilim...@ti.com Tested-by: Nishanth Menon n

[PATCH 2/5] omap4: l2x0: Construct the AUXCTRL value using defines

2010-11-19 Thread Santosh Shilimkar
This patch removes the hardcoded value of auxctrl value and construct it using bitfields Bit 25 is reserved and is always set to 1. Same value of this bit is retained in this patch Signed-off-by: Santosh Shilimkar santosh.shilim...@ti.com Tested-by: Nishanth Menon n...@ti.com --- arch/arm/mach

[PATCH 5/5] omap4: l2x0: Enable early BRESP bit

2010-11-19 Thread Santosh Shilimkar
is not compatible with the AXI protocol and is disabled by default. You enable this optimization by setting the Early BRESP Enable bit in the Auxiliary Control Register (bit [30]). Signed-off-by: Santosh Shilimkar santosh.shilim...@ti.com Signed-off-by: Mans Rullgard m...@mansr.com Tested

[PATCH 4/5] omap4: l2x0: Set share override bit

2010-11-19 Thread Santosh Shilimkar
and the processor can speculatively load cache lines into the PL310 controller. With bit 22 cleared, Non-cacheable reads would unexpectedly hit such cache lines leading to buffer corruption Signed-off-by: Santosh Shilimkar santosh.shilim...@ti.com Tested-by: Nishanth Menon n...@ti.com --- arch/arm/mach-omap2

RE: [PATCH 00/13] OMAP3: OFF mode fixes

2010-11-20 Thread Santosh Shilimkar
-Original Message- From: linux-omap-ow...@vger.kernel.org [mailto:linux-omap- ow...@vger.kernel.org] On Behalf Of Nishanth Menon Sent: Saturday, November 20, 2010 3:07 AM To: Kevin Hilman Cc: linux-omap; Jean Pihet; Vishwanath Sripathy; Tony Subject: Re: [PATCH 00/13] OMAP3: OFF

RE: [PATCH 08/13] OMAP3: PM: Deny MPU idle while saving secure RAM

2010-11-20 Thread Santosh Shilimkar
-Original Message- From: Kevin Hilman [mailto:khil...@deeprootsystems.com] Sent: Saturday, November 20, 2010 2:40 AM To: Nishanth Menon Cc: Santosh Shilimkar; linux-omap; Jean Pihet; Vishwanath Sripathy; Tony Subject: Re: [PATCH 08/13] OMAP3: PM: Deny MPU idle while saving secure

RE: [PATCH 08/13] OMAP3: PM: Deny MPU idle while saving secure RAM

2010-11-20 Thread Santosh Shilimkar
-Original Message- From: Nishanth Menon [mailto:n...@ti.com] Sent: Saturday, November 20, 2010 2:45 AM To: Kevin Hilman Cc: Santosh Shilimkar; linux-omap; Jean Pihet; Vishwanath Sripathy; Tony Subject: Re: [PATCH 08/13] OMAP3: PM: Deny MPU idle while saving secure RAM Kevin Hilman

RE: [PATCH 5/5] omap4: l2x0: Enable early BRESP bit

2010-11-20 Thread Santosh Shilimkar
-Original Message- From: Måns Rullgård [mailto:m...@mansr.com] Sent: Saturday, November 20, 2010 12:02 AM To: Santosh Shilimkar Cc: linux-omap@vger.kernel.org; n...@ti.com; m...@mansr.com; t...@atomide.com; khil...@deeprootsystems.com; linux-arm- ker...@lists.infradead.org Subject

RE: [PATCH 00/13] OMAP3: OFF mode fixes

2010-11-23 Thread Santosh Shilimkar
-Original Message- From: linux-omap-ow...@vger.kernel.org [mailto:linux-omap- ow...@vger.kernel.org] On Behalf Of Kevin Hilman Sent: Tuesday, November 23, 2010 12:46 AM To: Nishanth Menon Cc: linux-omap; Jean Pihet; Vishwanath Sripathy; Tony Subject: Re: [PATCH 00/13] OMAP3: OFF

RE: [PATCH 00/13] OMAP3: OFF mode fixes

2010-11-23 Thread Santosh Shilimkar
-Original Message- From: linux-omap-ow...@vger.kernel.org [mailto:linux-omap- ow...@vger.kernel.org] On Behalf Of Kevin Hilman Sent: Wednesday, November 24, 2010 2:06 AM To: Santosh Shilimkar Cc: Nishanth Menon; linux-omap; Jean Pihet; Vishwanath Sripathy; Tony Subject: Re: [PATCH

RE: OMAP4 ES2.0 Unhandled fault: imprecise external abort

2010-11-23 Thread Santosh Shilimkar
TAO, -Original Message- From: linux-omap-ow...@vger.kernel.org [mailto:linux-omap- ow...@vger.kernel.org] On Behalf Of TAO HU Sent: Wednesday, November 24, 2010 10:05 AM To: Bryan Wu Cc: TAO HU; linux-omap Subject: Re: OMAP4 ES2.0 Unhandled fault: imprecise external abort Hi,

RE: OMAP4 ES2.0 Unhandled fault: imprecise external abort

2010-11-23 Thread Santosh Shilimkar
-Original Message- From: TAO HU [mailto:tgh...@motorola.com] Sent: Wednesday, November 24, 2010 11:40 AM To: Santosh Shilimkar Cc: TAO HU; Bryan Wu; linux-omap Subject: Re: OMAP4 ES2.0 Unhandled fault: imprecise external abort Hi, Santosh Could you point out the specific kernel

RE: [PATCH 00/13] OMAP3: OFF mode fixes

2010-11-24 Thread Santosh Shilimkar
(Sorry. You will see two replies from me on your email) -Original Message- From: Santosh Shilimkar [mailto:santosh.shilim...@ti.com] Sent: Wednesday, November 24, 2010 11:04 AM To: 'Kevin Hilman' Cc: Nishanth Menon; 'linux-omap'; 'Jean Pihet'; Vishwanath Sripathy; 'Tony' Subject: RE

RE: [PATCH 1/2] OMAP: DMA: prevent races while setting M idle mode to nostandby

2010-11-30 Thread Santosh Shilimkar
-Original Message- From: Adrian Hunter [mailto:adrian.hun...@nokia.com] Sent: Tuesday, November 30, 2010 6:54 PM To: Tony Lindgren Cc: Adrian Hunter; Manjunatha GK; Santosh Shilimkar; linux-omap Mailing List Subject: [PATCH 1/2] OMAP: DMA: prevent races while setting M idle mode

RE: [PATCH 2/2] OMAP: DMA: clear interrupt status correctly

2010-11-30 Thread Santosh Shilimkar
-Original Message- From: Adrian Hunter [mailto:adrian.hun...@nokia.com] Sent: Tuesday, November 30, 2010 6:54 PM To: Tony Lindgren Cc: Santosh Shilimkar; Manjunatha GK; Adrian Hunter; linux-omap Mailing List Subject: [PATCH 2/2] OMAP: DMA: clear interrupt status correctly From

RE: [PATCH 4/5 v2] OMAP3630: PM: Disable L2 cache while invalidating L2 cache

2010-12-01 Thread Santosh Shilimkar
-Original Message- From: linux-omap-ow...@vger.kernel.org [mailto:linux-omap- ow...@vger.kernel.org] On Behalf Of Nishanth Menon Sent: Wednesday, December 01, 2010 8:09 PM To: TAO HU Cc: TAO HU; linux-omap; Jean; Tony; Kevin; Vishwa Subject: Re: [PATCH 4/5 v2] OMAP3630: PM: Disable

RE: Unbalanced IRQ wake disable during resume from static suspend

2010-12-02 Thread Santosh Shilimkar
Signed-off-by: Santosh Shilimkar santosh.shilim...@ti.com --- arch/arm/mach-omap2/irq.c | 10 ++ 1 files changed, 10 insertions(+), 0 deletions(-) diff --git a/arch/arm/mach-omap2/irq.c b/arch/arm/mach-omap2/irq.c index 32eeabe..6a964d3 100644 --- a/arch/arm/mach-omap2/irq.c +++ b/arch/arm

RE: Unbalanced IRQ wake disable during resume from static suspend

2010-12-02 Thread Santosh Shilimkar
Thanks Govind for testing it. -Original Message- From: Govindraj [mailto:govindraj...@gmail.com] Sent: Thursday, December 02, 2010 4:05 PM To: Santosh Shilimkar Cc: Paul Walmsley; linux-omap@vger.kernel.org; khil...@deeprootsystems.com Subject: Re: Unbalanced IRQ wake disable during

RE: [PATCH 0/5] omap4: l2x0 fixes and cleanup

2010-12-02 Thread Santosh Shilimkar
Tony, -Original Message- From: Santosh Shilimkar [mailto:santosh.shilim...@ti.com] Sent: Friday, November 19, 2010 11:01 PM To: linux-omap@vger.kernel.org Cc: n...@ti.com; m...@mansr.com; t...@atomide.com; khil...@deeprootsystems.com; linux-arm-ker...@lists.infradead.org; Santosh

RE: Unbalanced IRQ wake disable during resume from static suspend

2010-12-02 Thread Santosh Shilimkar
-Original Message- From: Kevin Hilman [mailto:khil...@deeprootsystems.com] Sent: Thursday, December 02, 2010 7:46 PM To: Santosh Shilimkar Cc: Govindraj; Paul Walmsley; linux-omap@vger.kernel.org Subject: Re: Unbalanced IRQ wake disable during resume from static suspend Santosh

RE: Unbalanced IRQ wake disable during resume from static suspend

2010-12-03 Thread Santosh Shilimkar
-Original Message- From: Paul Walmsley [mailto:p...@pwsan.com] Sent: Friday, December 03, 2010 3:53 PM To: Santosh Shilimkar Cc: linux-omap@vger.kernel.org; Govindraj; khil...@deeprootsystems.com Subject: RE: Unbalanced IRQ wake disable during resume from static suspend Hello

RE: Unbalanced IRQ wake disable during resume from static suspend

2010-12-03 Thread Santosh Shilimkar
-Original Message- From: Govindraj [mailto:govindraj...@gmail.com] Sent: Friday, December 03, 2010 4:51 PM To: Santosh Shilimkar Cc: Paul Walmsley; linux-omap@vger.kernel.org; khil...@deeprootsystems.com Subject: Re: Unbalanced IRQ wake disable during resume from static suspend

RE: [PATCH 1/8] ARM: SCU: Add common routines for secondary CPUbootup

2010-12-05 Thread Santosh Shilimkar
-Original Message- From: linux-omap-ow...@vger.kernel.org [mailto:linux-omap- ow...@vger.kernel.org] On Behalf Of Russell King - ARM Linux Sent: Saturday, December 04, 2010 2:18 PM To: Tony Lindgren; Kukjin Kim; Srinidhi Kasagar; Jamie Iles; Anton Vorontsov;

RE: [PATCH v2 2/3] ARM: omap4: Correct definition of do_wfi() forCONFIG_THUMB2_KERNEL

2010-12-06 Thread Santosh Shilimkar
Dave, -Original Message- From: linaro-dev-boun...@lists.linaro.org [mailto:linaro-dev- boun...@lists.linaro.org] On Behalf Of Dave Martin Sent: Monday, December 06, 2010 11:06 PM To: linux-arm-ker...@lists.infradead.org Cc: Tony Lindgren; Dave Martin; linux-omap@vger.kernel.org;

RE: [PATCH v2 3/3] ARM: omap4: Convert END() to ENDPROC() for correctlinkage with CONFIG_THUMB2_KERNEL

2010-12-06 Thread Santosh Shilimkar
accidentally switch to the wrong instruction set. omap_secondary_startup might still need to be changed to ARM, depending on the compatibility status of bootloaders. Signed-off-by: Dave Martin dave.mar...@linaro.org --- KernelVersion: 2.6.37-rc4 Looks ok to me. Acked-by: Santosh Shilimkar

RE: [PATCH v2 1/3] ARM: omap: Enable low-level omap3 PM code to work withCONFIG_THUMB2_KERNEL

2010-12-06 Thread Santosh Shilimkar
Dave, -Original Message- From: linaro-dev-boun...@lists.linaro.org [mailto:linaro-dev- boun...@lists.linaro.org] On Behalf Of Dave Martin Sent: Monday, December 06, 2010 11:06 PM To: linux-arm-ker...@lists.infradead.org Cc: Tony Lindgren; Dave Martin; linux-omap@vger.kernel.org;

RE: [PATCH] Correct definition of register of OMAP4_RM_RSTST and OMAP4_RM_RSTTIME

2010-12-07 Thread Santosh Shilimkar
-Original Message- From: linux-omap-ow...@vger.kernel.org [mailto:linux-omap- ow...@vger.kernel.org] On Behalf Of MING ZHOU Sent: Tuesday, December 07, 2010 1:04 PM To: linux-omap@vger.kernel.org Cc: Tony Lindgren; Paul Walmsley Subject: [PATCH] Correct definition of register of

RE: [PATCH v2 2/3] ARM: omap4: Correct definition of do_wfi() forCONFIG_THUMB2_KERNEL

2010-12-07 Thread Santosh Shilimkar
-Original Message- From: Dave Martin [mailto:dave.mar...@linaro.org] Sent: Tuesday, December 07, 2010 10:21 PM To: Santosh Shilimkar Cc: linux-arm-ker...@lists.infradead.org; Tony Lindgren; linux- o...@vger.kernel.org; linaro-...@lists.linaro.org Subject: Re: [PATCH v2 2/3] ARM

RE: [PATCH v2 2/3] ARM: omap4: Correct definition of do_wfi() forCONFIG_THUMB2_KERNEL

2010-12-07 Thread Santosh Shilimkar
Dave, -Original Message- From: Santosh Shilimkar [mailto:santosh.shilim...@ti.com] Sent: Wednesday, December 08, 2010 11:27 AM To: Dave Martin Cc: linux-arm-ker...@lists.infradead.org; Tony Lindgren; linux- o...@vger.kernel.org; linaro-...@lists.linaro.org Subject: RE: [PATCH v2 2

RE: [PATCH 01/11] OMAP4: PRCM: add OMAP4-specific accessor/mutatorfunctions

2010-12-08 Thread Santosh Shilimkar
Paul, -Original Message- From: Paul Walmsley [mailto:p...@pwsan.com] Sent: Wednesday, December 08, 2010 11:49 AM To: linux-omap@vger.kernel.org; linux-arm-ker...@lists.infradead.org Cc: Rajendra Nayak; Santosh Shilimkar; Benoīt Cousson Subject: [PATCH 01/11] OMAP4: PRCM: add OMAP4

RE: [PATCH v2 2/3] ARM: omap4: Correct definition of do_wfi() forCONFIG_THUMB2_KERNEL

2010-12-08 Thread Santosh Shilimkar
-Original Message- From: Dave Martin [mailto:dave.mar...@linaro.org] Sent: Wednesday, December 08, 2010 4:11 PM To: Santosh Shilimkar Cc: linux-arm-ker...@lists.infradead.org; Tony Lindgren; linux- o...@vger.kernel.org; linaro-...@lists.linaro.org Subject: Re: [PATCH v2 2/3] ARM

RE: [PATCH v2 2/3] ARM: omap4: Correct definition of do_wfi() forCONFIG_THUMB2_KERNEL

2010-12-08 Thread Santosh Shilimkar
-Original Message- From: Dave Martin [mailto:dave.mar...@linaro.org] Sent: Wednesday, December 08, 2010 4:35 PM To: Santosh Shilimkar Cc: Tony Lindgren; linux-omap@vger.kernel.org; linaro- d...@lists.linaro.org; linux-arm-ker...@lists.infradead.org Subject: Re: [PATCH v2 2/3] ARM

RE: [PATCH 1/2] ARM: Thumb-2: Make CONFIG_THUMB2_KERNEL depend on !CPU_V6

2010-12-09 Thread Santosh Shilimkar
-Original Message- From: Dave Martin [mailto:dave.mar...@linaro.org] Sent: Thursday, December 09, 2010 5:30 PM To: linux-arm-ker...@lists.infradead.org Cc: Dave Martin; Santosh Shilimkar; linux-omap@vger.kernel.org Subject: [PATCH 1/2] ARM: Thumb-2: Make CONFIG_THUMB2_KERNEL depend

RE: [PATCH 2/2] ARM: Make CONFIG_FPE_NWFPE depend on !CONFIG_THUMB2_KERNEL

2010-12-09 Thread Santosh Shilimkar
-Original Message- From: Dave Martin [mailto:dave.mar...@linaro.org] Sent: Thursday, December 09, 2010 5:30 PM To: linux-arm-ker...@lists.infradead.org Cc: Dave Martin; Santosh Shilimkar; linux-omap@vger.kernel.org Subject: [PATCH 2/2] ARM: Make CONFIG_FPE_NWFPE depend

RE: [PATCH 01/11] OMAP4: PRCM: add OMAP4-specific accessor/mutatorfunctions

2010-12-10 Thread Santosh Shilimkar
-Original Message- From: Paul Walmsley [mailto:p...@pwsan.com] Sent: Saturday, December 11, 2010 7:26 AM To: Santosh Shilimkar Cc: linux-omap@vger.kernel.org; linux-arm-ker...@lists.infradead.org; Rajendra Nayak; Benoit Cousson Subject: RE: [PATCH 01/11] OMAP4: PRCM: add OMAP4

RE: [PATCH 0/5] omap4: l2x0 fixes and cleanup

2010-12-13 Thread Santosh Shilimkar
ping -Original Message- From: Santosh Shilimkar [mailto:santosh.shilim...@ti.com] Sent: Thursday, December 02, 2010 5:28 PM To: t...@atomide.com Cc: Nishanth Menon; m...@mansr.com; khil...@deeprootsystems.com; linux- arm-ker...@lists.infradead.org; linux-omap@vger.kernel.org Subject

RE: [PATCH 00/12] OMAP: clock/SRAM: patches for 2.6.38, part one

2010-12-13 Thread Santosh Shilimkar
-Original Message- From: linux-omap-ow...@vger.kernel.org [mailto:linux-omap- ow...@vger.kernel.org] On Behalf Of Paul Walmsley Sent: Tuesday, December 14, 2010 12:05 PM To: linux-omap@vger.kernel.org; linux-arm-ker...@lists.infradead.org Subject: [PATCH 00/12] OMAP: clock/SRAM:

RE: [PATCH 00/12] OMAP: clock/SRAM: patches for 2.6.38, part one

2010-12-13 Thread Santosh Shilimkar
-Original Message- From: Santosh Shilimkar [mailto:santosh.shilim...@ti.com] Sent: Tuesday, December 14, 2010 12:19 PM To: Paul Walmsley; linux-omap@vger.kernel.org; linux-arm- ker...@lists.infradead.org Subject: RE: [PATCH 00/12] OMAP: clock/SRAM: patches for 2.6.38, part one

RE: [PATCH 00/11] OMAP: PRCM/powerdomain/clockdomain patches for 2.6.38,part two

2010-12-14 Thread Santosh Shilimkar
Paul, -Original Message- From: Paul Walmsley [mailto:p...@pwsan.com] Sent: Wednesday, December 08, 2010 11:48 AM To: linux-omap@vger.kernel.org; linux-arm-ker...@lists.infradead.org Cc: Mark Brown; Benoît Cousson; Kevin Hilman; Rajendra Nayak; Peter Ujfalusi; Santosh Shilimkar

RE: [PATCH 00/11] OMAP: PRCM/powerdomain/clockdomain patches for 2.6.38,part two

2010-12-14 Thread Santosh Shilimkar
-Original Message- From: Paul Walmsley [mailto:p...@pwsan.com] Sent: Wednesday, December 15, 2010 9:57 AM To: Santosh Shilimkar Cc: linux-omap@vger.kernel.org; linux-arm-ker...@lists.infradead.org; Mark Brown; Benoit Cousson; Kevin Hilman; Rajendra Nayak; Peter Ujfalusi; Jarkko

RE: [PATCH 01/11] OMAP4: PRCM: add OMAP4-specific accessor/mutatorfunctions

2010-12-15 Thread Santosh Shilimkar
-Original Message- From: Paul Walmsley [mailto:p...@pwsan.com] Sent: Wednesday, December 15, 2010 12:18 PM To: Rajendra Nayak Cc: linux-omap@vger.kernel.org; linux-arm-ker...@lists.infradead.org; Santosh Shilimkar; Benoit Cousson Subject: RE: [PATCH 01/11] OMAP4: PRCM: add OMAP4

RE: [PATCH 2/7] OMAP2+: use global values for the SRAM PA addresses

2010-12-16 Thread Santosh Shilimkar
-Original Message- From: linux-omap-ow...@vger.kernel.org [mailto:linux-omap- ow...@vger.kernel.org] On Behalf Of jean.pi...@newoldbits.com Sent: Thursday, December 16, 2010 11:21 PM To: linux-omap@vger.kernel.org Cc: khil...@deeprootsystems.com; linux-arm-ker...@lists.infradead.org;

RE: [PATCH 5/7] OMAP3: rework of the ASM sleep code execution paths

2010-12-16 Thread Santosh Shilimkar
-Original Message- From: linux-omap-ow...@vger.kernel.org [mailto:linux-omap- ow...@vger.kernel.org] On Behalf Of jean.pi...@newoldbits.com Sent: Thursday, December 16, 2010 11:21 PM To: linux-omap@vger.kernel.org Cc: khil...@deeprootsystems.com; linux-arm-ker...@lists.infradead.org;

RE: [PATCH 0/7 v4] OMAP3: clean up ASM sleep code

2010-12-16 Thread Santosh Shilimkar
Jean, -Original Message- From: linux-omap-ow...@vger.kernel.org [mailto:linux-omap- ow...@vger.kernel.org] On Behalf Of jean.pi...@newoldbits.com Sent: Thursday, December 16, 2010 11:21 PM To: linux-omap@vger.kernel.org Cc: khil...@deeprootsystems.com;

RE: [PATCH 0/7 v4] OMAP3: clean up ASM sleep code

2010-12-17 Thread Santosh Shilimkar
-Original Message- From: Jean Pihet [mailto:jean.pi...@newoldbits.com] Sent: Friday, December 17, 2010 3:48 PM To: Santosh Shilimkar; khil...@deeprootsystems.com Cc: linux-omap@vger.kernel.org; linux-arm-ker...@lists.infradead.org; Jean Pihet-XID Subject: Re: [PATCH 0/7 v4] OMAP3

RE: [PATCH 1/7] OMAP3: remove unused code from the ASM sleep code

2010-12-17 Thread Santosh Shilimkar
and Beagleboard with full RET and OFF modes, using cpuidle and suspend. Signed-off-by: Jean Pihet j-pi...@ti.com Acked-by: Santosh Shilimkar santosh.shilim...@ti.com --- arch/arm/mach-omap2/pm.h|1 - arch/arm/mach-omap2/sleep34xx.S | 58 -- - 2 files

RE: [PATCH 2/7] OMAP2+: use global values for the SRAM PA addresses

2010-12-17 Thread Santosh Shilimkar
, for easier maintenance. Tested on N900 and Beagleboard with full RET and OFF modes, using cpuidle and suspend. Signed-off-by: Jean Pihet j-pi...@ti.com Acked-by: Santosh Shilimkar santosh.shilim...@ti.com --- arch/arm/mach-omap2/sdrc.h |1 - arch/arm/mach-omap2/sleep34xx.S

RE: [PATCH 3/7] OMAP3: remove hardcoded values from the ASM sleep code

2010-12-17 Thread Santosh Shilimkar
. Based on original patch from Vishwa. Signed-off-by: Jean Pihet j-pi...@ti.com Cc: Vishwanath BS vishwanath...@ti.com Acked-by: Santosh Shilimkar santosh.shilim...@ti.com --- arch/arm/mach-omap2/control.h |2 ++ arch/arm/mach-omap2/sleep34xx.S | 29 ++--- 2 files

RE: [PATCH 4/7] OMAP3: re-organize the ASM sleep code

2010-12-17 Thread Santosh Shilimkar
and suspend. Signed-off-by: Jean Pihet j-pi...@ti.com Acked-by: Santosh Shilimkar santosh.shilim...@ti.com --- arch/arm/mach-omap2/sleep34xx.S | 114 +- - 1 files changed, 61 insertions(+), 53 deletions(-) diff --git a/arch/arm/mach-omap2/sleep34xx.S b/arch

  1   2   3   4   5   6   7   8   9   10   >