public inbox for linux-omap@vger.kernel.org
 help / color / mirror / Atom feed
* [PATCH 0/5] More header clean-up
@ 2009-05-07 20:42 Tony Lindgren
  2009-05-07 20:42 ` [PATCH 1/5] ARM: OMAP2/3: Remove OMAP2_32KSYNCT_BASE Tony Lindgren
                   ` (5 more replies)
  0 siblings, 6 replies; 12+ messages in thread
From: Tony Lindgren @ 2009-05-07 20:42 UTC (permalink / raw)
  To: linux-omap

Hi all,

This series cleans up the conflicting defines a bit more.
Now the biggest problem is till in clock24xx.h, but at least the
conflict is local. Now changing the processors should not cause
everything to be rebuilt..

The first patch also fixes the CONFIG_SPINLOCK_DEBUG problem where
sched_clock was called before we have things initialized.

This series causes some updates to the other pending patch series,
like the PM series. But it would be nice to get in before we add
more code.

Kevin, the 2/5 is improved version of what I sent you earlier,
the earlier version had issues between 2420 vs 2430. Let me
know if the other patches cause big headaches for your PM
series.

Regards,

Tony

---

Tony Lindgren (5):
      ARM: OMAP2/3: Remove OMAP_CM_REGADDR
      ARM: OMAP2/3: Remove OMAP2_PRCM_BASE
      ARM: OMAP2/3: Move define of OMAP2_VA_IC_BASE to be local to entry-macro.S
      ARM: OMAP2/3: Remove OMAP_PRM_REGADDR and OMAP2_PRM_BASE
      ARM: OMAP2/3: Remove OMAP2_32KSYNCT_BASE


 arch/arm/mach-omap2/clock24xx.c               |   21 ++--
 arch/arm/mach-omap2/clock24xx.h               |   11 ++
 arch/arm/mach-omap2/clock34xx.h               |    2 
 arch/arm/mach-omap2/cm.h                      |    5 -
 arch/arm/mach-omap2/prm.h                     |  136 +++++++++++++------------
 arch/arm/mach-omap2/sdrc2xxx.c                |    5 +
 arch/arm/mach-omap2/sram242x.S                |    4 -
 arch/arm/mach-omap2/sram243x.S                |    4 -
 arch/arm/plat-omap/common.c                   |   69 +++++++++++--
 arch/arm/plat-omap/include/mach/entry-macro.S |    9 +-
 arch/arm/plat-omap/include/mach/omap24xx.h    |   18 ---
 arch/arm/plat-omap/include/mach/omap34xx.h    |    9 --
 12 files changed, 170 insertions(+), 123 deletions(-)

-- 
Signature

^ permalink raw reply	[flat|nested] 12+ messages in thread
* [PATCH 0/5] More omap header clean-up for the merge window after 2.6.30
@ 2009-05-14 23:21 Tony Lindgren
  2009-05-14 23:24 ` [PATCH 2/5] ARM: OMAP2/3: Remove OMAP_PRM_REGADDR and OMAP2_PRM_BASE Tony Lindgren
  0 siblings, 1 reply; 12+ messages in thread
From: Tony Lindgren @ 2009-05-14 23:21 UTC (permalink / raw)
  To: linux-arm-kernel; +Cc: linux-omap

Hi,

This series removes defines that are included from hardware.h via
various processor specific headers. The series makes the defines
processor specific where possible so they don't trigger recompile
and cause blocks for multi-omap booting.

After this series, pretty much the only remaining problem code
is the clock24xx.h that should have clock registers set dynamically
for 2420 and 2430. This series just makes the problem defines
local to clock24xx.h.

Regards,

Tony

---

Tony Lindgren (5):
      ARM: OMAP2/3: Remove OMAP_CM_REGADDR
      ARM: OMAP2/3: Remove OMAP2_PRCM_BASE
      ARM: OMAP2/3: Move define of OMAP2_VA_IC_BASE to be local to entry-macro.S
      ARM: OMAP2/3: Remove OMAP_PRM_REGADDR and OMAP2_PRM_BASE
      ARM: OMAP2/3: Remove OMAP2_32KSYNCT_BASE


 arch/arm/mach-omap2/clock.c                   |    4 
 arch/arm/mach-omap2/clock24xx.c               |   21 +--
 arch/arm/mach-omap2/clock24xx.h               |   11 +
 arch/arm/mach-omap2/clock34xx.h               |    2 
 arch/arm/mach-omap2/cm.h                      |    6 -
 arch/arm/mach-omap2/prm.h                     |  205 +++++++++++++++----------
 arch/arm/mach-omap2/sdrc2xxx.c                |    5 -
 arch/arm/mach-omap2/sram242x.S                |   10 +
 arch/arm/mach-omap2/sram243x.S                |   10 +
 arch/arm/plat-omap/common.c                   |   69 +++++++-
 arch/arm/plat-omap/include/mach/entry-macro.S |    9 +
 arch/arm/plat-omap/include/mach/omap24xx.h    |   18 --
 arch/arm/plat-omap/include/mach/omap34xx.h    |    9 -
 13 files changed, 232 insertions(+), 147 deletions(-)

-- 
Signature

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

end of thread, other threads:[~2009-05-14 23:24 UTC | newest]

Thread overview: 12+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2009-05-07 20:42 [PATCH 0/5] More header clean-up Tony Lindgren
2009-05-07 20:42 ` [PATCH 1/5] ARM: OMAP2/3: Remove OMAP2_32KSYNCT_BASE Tony Lindgren
2009-05-07 20:42 ` [PATCH 2/5] ARM: OMAP2/3: Remove OMAP_PRM_REGADDR and OMAP2_PRM_BASE Tony Lindgren
2009-05-12 22:31   ` Kevin Hilman
2009-05-13  3:37     ` Tony Lindgren
2009-05-07 20:42 ` [PATCH 3/5] ARM: OMAP2/3: Move define of OMAP2_VA_IC_BASE to be local to entry-macro.S Tony Lindgren
2009-05-07 20:43 ` [PATCH 4/5] ARM: OMAP2/3: Remove OMAP2_PRCM_BASE Tony Lindgren
2009-05-07 20:43 ` [PATCH 5/5] ARM: OMAP2/3: Remove OMAP_CM_REGADDR Tony Lindgren
2009-05-08  5:20 ` [PATCH 0/5] More header clean-up Shilimkar, Santosh
2009-05-08 15:21   ` Tony Lindgren
2009-05-08 16:51     ` Shilimkar, Santosh
  -- strict thread matches above, loose matches on Subject: below --
2009-05-14 23:21 [PATCH 0/5] More omap header clean-up for the merge window after 2.6.30 Tony Lindgren
2009-05-14 23:24 ` [PATCH 2/5] ARM: OMAP2/3: Remove OMAP_PRM_REGADDR and OMAP2_PRM_BASE Tony Lindgren

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox