public inbox for linux-omap@vger.kernel.org
 help / color / mirror / Atom feed
* [PATCH 00/16] OMAP4: PRCM big spring (late) cleanup
@ 2011-06-23 17:43 Benoit Cousson
  2011-06-23 17:43 ` [PATCH 01/16] OMAP4: cm: Remove RESTORE macros to avoid access from SW Benoit Cousson
                   ` (16 more replies)
  0 siblings, 17 replies; 20+ messages in thread
From: Benoit Cousson @ 2011-06-23 17:43 UTC (permalink / raw)
  To: paul, rnayak; +Cc: linux-omap, Benoit Cousson

Hi Paul,

Here are a bunch of cleanups on almost every PRCM related files.
Some of them are purely code moves, and will look like a lot of
noise for nothing, but this is needed if we want to keep the files
aligned with generator tool and thus ease the future migration to
whatever format (common clock framework + DT).
Moreover, the diffstat is negative:-)

The series is based on for_3.0.1/1_prcm_files_fixes and tested
on OMAP4430 ES2.1 + SDP.

The patches are available here:
git://gitorious.org/omap-pm/linux.git for_3.0.1/2_prcm_files_cleanup

Regards,
Benoit


Benoit Cousson (12):
  OMAP4: cm: Remove RESTORE macros to avoid access from SW
  OMAP4: prcm_mpu: Fix indent in few macros
  OMAP4: clockdomain data: Fix data order and wrong name
  OMAP4: clock data: Add sddiv to USB DPLL
  OMAP4: clock data: Remove usb_host_fs clkdev with NULL dev
  OMAP4: clock data: Re-order some clock nodes and structure fields
  OMAP4: clock data: Fix max mult and div for USB DPLL
  OMAP4: prcm: Remove references to non-existant peripherals
  OMAP4: hwmod data: Fix L3 interconnect data order and alignement
  OMAP4: hwmod data: Remove un-needed parens
  OMAP4: hwmod data: Fix typo and alignement
  OMAP4: hwmod data: Replace CHIP_IS_OMAP4430 by OMAP44XX

Jon Hunter (2):
  OMAP4: clock data: Remove McASP2, McASP3 and MMC6 clocks
  OMAP4: clock data: Remove UNIPRO clock nodes

Rajendra Nayak (2):
  OMAP4: clock data: Rename clock flags from 443X to 44XX
  OMAP4: clock data: Add missing divider selection for auxclks

 arch/arm/mach-omap2/clock44xx.h               |    7 -
 arch/arm/mach-omap2/clock44xx_data.c          | 1010 +++++++++++++------------
 arch/arm/mach-omap2/clockdomains44xx_data.c   |  124 ++--
 arch/arm/mach-omap2/cm-regbits-44xx.h         |  702 +++++++-----------
 arch/arm/mach-omap2/cm1_44xx.h                |   36 -
 arch/arm/mach-omap2/cm2_44xx.h                |   90 ---
 arch/arm/mach-omap2/omap_hwmod_44xx_data.c    |  244 +++---
 arch/arm/mach-omap2/prcm_mpu44xx.h            |   69 +-
 arch/arm/mach-omap2/prm-regbits-44xx.h        |  178 +----
 arch/arm/mach-omap2/prm44xx.h                 |   64 --
 arch/arm/plat-omap/include/plat/clkdev_omap.h |    2 +
 arch/arm/plat-omap/include/plat/clock.h       |    3 +-
 arch/arm/plat-omap/include/plat/cpu.h         |    2 +
 13 files changed, 1068 insertions(+), 1463 deletions(-)


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

end of thread, other threads:[~2011-07-01  8:23 UTC | newest]

Thread overview: 20+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2011-06-23 17:43 [PATCH 00/16] OMAP4: PRCM big spring (late) cleanup Benoit Cousson
2011-06-23 17:43 ` [PATCH 01/16] OMAP4: cm: Remove RESTORE macros to avoid access from SW Benoit Cousson
2011-06-23 17:43 ` [PATCH 02/16] OMAP4: prcm_mpu: Fix indent in few macros Benoit Cousson
2011-06-23 17:43 ` [PATCH 03/16] OMAP4: clockdomain data: Fix data order and wrong name Benoit Cousson
2011-06-23 17:43 ` [PATCH 04/16] OMAP4: clock data: Add sddiv to USB DPLL Benoit Cousson
2011-06-23 17:43 ` [PATCH 05/16] OMAP4: clock data: Remove usb_host_fs clkdev with NULL dev Benoit Cousson
2011-06-27  8:03   ` Felipe Balbi
2011-06-23 17:43 ` [PATCH 06/16] OMAP4: clock data: Re-order some clock nodes and structure fields Benoit Cousson
2011-06-23 17:43 ` [PATCH 07/16] OMAP4: clock data: Fix max mult and div for USB DPLL Benoit Cousson
2011-06-23 17:43 ` [PATCH 08/16] OMAP4: clock data: Rename clock flags from 443X to 44XX Benoit Cousson
2011-06-23 17:43 ` [PATCH 09/16] OMAP4: clock data: Remove McASP2, McASP3 and MMC6 clocks Benoit Cousson
2011-06-23 17:43 ` [PATCH 10/16] OMAP4: clock data: Remove UNIPRO clock nodes Benoit Cousson
2011-06-23 17:43 ` [PATCH 11/16] OMAP4: clock data: Add missing divider selection for auxclks Benoit Cousson
2011-06-23 17:43 ` [PATCH 12/16] OMAP4: prcm: Remove references to non-existant peripherals Benoit Cousson
2011-06-23 17:43 ` [PATCH 13/16] OMAP4: hwmod data: Fix L3 interconnect data order and alignement Benoit Cousson
2011-06-23 17:43 ` [PATCH 14/16] OMAP4: hwmod data: Remove un-needed parens Benoit Cousson
2011-06-23 17:43 ` [PATCH 15/16] OMAP4: hwmod data: Fix typo and alignement Benoit Cousson
2011-06-23 20:26   ` Cousson, Benoit
2011-06-23 17:43 ` [PATCH 16/16] OMAP4: hwmod data: Replace CHIP_IS_OMAP4430 by OMAP44XX Benoit Cousson
2011-07-01  8:23 ` [PATCH 00/16] OMAP4: PRCM big spring (late) cleanup Paul Walmsley

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