linux-arm-kernel.lists.infradead.org archive mirror
 help / color / mirror / Atom feed
* [PATCH 00/14] omap sram, omap4 control module and es2.0 support
@ 2010-09-17  9:47 Santosh Shilimkar
  2010-09-17  9:47 ` [PATCH 01/14] ARM: mmu: Setup MT_MEMORY and MT_MEMORY_NONCACHED L1 entries Santosh Shilimkar
                   ` (2 more replies)
  0 siblings, 3 replies; 52+ messages in thread
From: Santosh Shilimkar @ 2010-09-17  9:47 UTC (permalink / raw)
  To: linux-arm-kernel

This is consolidated patch series targetted for 2.6.37 merge window.
All of these patches have been already posted/reviewed on the list.

The series contains
	- SRAM mapping fixes to avoid speculative aborts
	- omap4 control module support
	- Fixes for omap4 HS/GP detection
	- omap4 es2.0 fixes. MMC and ethernet fixes are queued in respective
	  trees
	  
Boot tested with omap3_defconfig on
			- OMAP4430 SPP
			- OMAP4 Panda
			- OMAP4 Blaze
			- OMAP3430 SDP

The following changes since commit 03a7ab083e4d619136d6f07ce70fa9de0bc436fc:
  Linus Torvalds (1):
        Merge git://git.kernel.org/.../sfrench/cifs-2.6

are available in the git repository at:

  git://dev.omapzoom.org/pub/scm/santosh/kernel-omap4-base.git omap_for_2.6.37

David Anders (1):
      omap4: 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
      omap4: control: Add accessor api's for pad control module
      omap4: control: Add the register definition headers
      omap4: control: Fix the control module register accesses
      omap4: Update id.c and cpu.h for es2.0
      omap4: Fix silicon version detection for early samples
      omap4: l2x0: Fix init parameter for es2.0
      omap4: Fix bootup crash observed with higher CPU clocks

Vikram Pandita (2):
      omap: sram: fix is_sram_locked check
      omap4: sram: Fix start address

 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                     |    3 +-
 arch/arm/mach-omap2/control.c                      |   25 +
 arch/arm/mach-omap2/hsmmc.c                        |   67 +-
 arch/arm/mach-omap2/id.c                           |   40 +-
 .../include/mach/ctrl_module_core_44xx.h           |  391 ++++++
 .../include/mach/ctrl_module_pad_core_44xx.h       | 1409 ++++++++++++++++++++
 .../include/mach/ctrl_module_pad_wkup_44xx.h       |  236 ++++
 .../include/mach/ctrl_module_wkup_44xx.h           |   92 ++
 arch/arm/mach-omap2/omap4-common.c                 |   10 +-
 arch/arm/mm/mmu.c                                  |   17 +-
 arch/arm/plat-omap/common.c                        |    3 +-
 arch/arm/plat-omap/dmtimer.c                       |    2 +-
 arch/arm/plat-omap/include/plat/common.h           |    1 +
 arch/arm/plat-omap/include/plat/control.h          |   31 +-
 arch/arm/plat-omap/include/plat/cpu.h              |    5 +-
 arch/arm/plat-omap/include/plat/uncompress.h       |    1 +
 arch/arm/plat-omap/sram.c                          |   38 +-
 20 files changed, 2271 insertions(+), 109 deletions(-)
 create mode 100644 arch/arm/mach-omap2/include/mach/ctrl_module_core_44xx.h
 create mode 100644 arch/arm/mach-omap2/include/mach/ctrl_module_pad_core_44xx.h
 create mode 100644 arch/arm/mach-omap2/include/mach/ctrl_module_pad_wkup_44xx.h
 create mode 100644 arch/arm/mach-omap2/include/mach/ctrl_module_wkup_44xx.h

^ permalink raw reply	[flat|nested] 52+ messages in thread

end of thread, other threads:[~2010-10-05  5:15 UTC | newest]

Thread overview: 52+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2010-09-17  9:47 [PATCH 00/14] omap sram, omap4 control module and es2.0 support Santosh Shilimkar
2010-09-17  9:47 ` [PATCH 01/14] ARM: mmu: Setup MT_MEMORY and MT_MEMORY_NONCACHED L1 entries Santosh Shilimkar
2010-09-17  9:47   ` [PATCH 02/14] omap: Map only available sram memory Santosh Shilimkar
2010-09-17  9:47     ` [PATCH 03/14] davinci: map sram using MT_MEMORY_NONCACHED instead of MT_DEVICE Santosh Shilimkar
2010-09-17  9:47       ` [PATCH 04/14] omap4: control: Add ctrl_pad_base to omap_globals Santosh Shilimkar
2010-09-17  9:47         ` [PATCH 05/14] omap4: control: Add accessor api's for pad control module Santosh Shilimkar
2010-09-17  9:47           ` [PATCH 06/14] omap4: control: Add the register definition headers Santosh Shilimkar
2010-09-17  9:47             ` [PATCH 07/14] omap4: control: Fix the control module register accesses Santosh Shilimkar
2010-09-17  9:47               ` [PATCH 08/14] omap: sram: fix is_sram_locked check Santosh Shilimkar
2010-09-17  9:47                 ` [PATCH 09/14] omap4: sram: Fix start address Santosh Shilimkar
2010-09-17  9:47                   ` [PATCH 10/14] omap4: Update id.c and cpu.h for es2.0 Santosh Shilimkar
2010-09-17  9:47                     ` [PATCH 11/14] omap4: Fix silicon version detection for early samples Santosh Shilimkar
2010-09-17  9:47                       ` [PATCH 12/14] omap4: l2x0: Fix init parameter for es2.0 Santosh Shilimkar
2010-09-17  9:47                         ` [PATCH 13/14] omap4: Panda: Add DEBUG_LL support Santosh Shilimkar
2010-09-17  9:47                           ` [PATCH 14/14] omap4: Fix bootup crash observed with higher CPU clocks Santosh Shilimkar
2010-09-17 10:14                             ` Menon, Nishanth
2010-09-17 10:16                               ` Shilimkar, Santosh
2010-09-17 10:27                                 ` Menon, Nishanth
2010-09-17 10:30                                   ` Shilimkar, Santosh
2010-09-17 10:41                                     ` Felipe Balbi
2010-09-17 11:17                                       ` Shilimkar, Santosh
2010-09-17 11:19                                         ` Felipe Balbi
2010-09-17 11:24                                           ` Shilimkar, Santosh
2010-09-17 10:37                               ` Felipe Balbi
2010-09-17 10:18                       ` [PATCH 11/14] omap4: Fix silicon version detection for early samples Menon, Nishanth
2010-09-17 10:23                         ` Shilimkar, Santosh
2010-09-17 10:17           ` [PATCH 05/14] omap4: control: Add accessor api's for pad control module Menon, Nishanth
2010-09-17 10:16       ` [PATCH 03/14] davinci: map sram using MT_MEMORY_NONCACHED instead of MT_DEVICE Russell King - ARM Linux
2010-09-17 10:18         ` Shilimkar, Santosh
2010-09-17 10:15     ` [PATCH 02/14] omap: Map only available sram memory Russell King - ARM Linux
2010-09-17 11:11       ` Shilimkar, Santosh
2010-10-01 20:15     ` Grazvydas Ignotas
2010-10-01 22:53       ` Tony Lindgren
2010-10-02  7:49         ` Shilimkar, Santosh
2010-10-04  9:03           ` Grazvydas Ignotas
2010-10-04  9:38             ` Shilimkar, Santosh
2010-10-04 13:24               ` Shilimkar, Santosh
2010-10-04 23:44                 ` Grazvydas Ignotas
2010-10-05  0:34                   ` Tony Lindgren
2010-10-05  0:36                     ` Tony Lindgren
2010-10-05  5:15                   ` Shilimkar, Santosh
2010-09-17 16:41   ` [PATCH 01/14] ARM: mmu: Setup MT_MEMORY and MT_MEMORY_NONCACHED L1 entries Tony Lindgren
2010-09-29 14:51   ` Catalin Marinas
2010-09-29 15:01     ` Shilimkar, Santosh
2010-09-29 15:02     ` Russell King - ARM Linux
2010-09-17 15:06 ` [PATCH 00/14] omap sram, omap4 control module and es2.0 support Bryan Wu
2010-09-17 15:10   ` Shilimkar, Santosh
2010-09-17 17:50 ` Paul Walmsley
2010-09-18  7:32   ` Shilimkar, Santosh
2010-09-24  1:13     ` Tony Lindgren
2010-09-24  4:51       ` Shilimkar, Santosh
2010-09-24  6:42       ` Shilimkar, Santosh

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).