linux-arm-kernel.lists.infradead.org archive mirror
 help / color / mirror / Atom feed
* [PATCH 00/22] OMAP PRCM/clock/powerdomain/hwmod: remaining patches for 2.6.35
@ 2010-05-19  2:18 Paul Walmsley
  2010-05-19  2:18 ` [PATCH 01/22] OMAP4: hwmod: Replace module & device offsets by absolute clkctrl address Paul Walmsley
                   ` (21 more replies)
  0 siblings, 22 replies; 28+ messages in thread
From: Paul Walmsley @ 2010-05-19  2:18 UTC (permalink / raw)
  To: linux-arm-kernel

Hi,

here are some remaining patches intended for 2.6.35, in case
anyone has comments.  The series consists almost entirely of fixes:

- hwmod infrastructure fixes from Beno?t,

- OMAP4 PRCM macro fixes from Beno?t,

- OMAP4 clock/powerdomain fixes from Rajendra,

- and some miscellaneous patches.


- Paul


size:
   text    data     bss     dec     hex filename
3130596  195296   93248 3419140  342c04 vmlinux.omap3beagle.old
3130600  195296   93248 3419144  342c08 vmlinux.omap3beagle

---

Benoit Cousson (13):
      OMAP4: hwmod: Replace module & device offsets by absolute clkctrl address
      OMAP: CM: Move MAX_MODULE_READY_TIME to cm.h
      OMAP4: hwmod & CM: Implement the omap4_cm_wait_module_ready function
      OMAP4: hwmod: Replace OCPIF_HAS_IDLEST by HWMOD_NO_IDLEST
      OMAP: hwmod: Fix wrong pointer iteration in oh->slaves
      OMAP: hwmod: Remove IS_ERR check with omap_clk_get_by_name return value
      OMAP: hwmod: Replace WARN by pr_warning if clock lookup failed
      OMAP: hwmod: Do not exit the iteration if one clock init failed
      OMAP: hwmod: Rename hwmod name for the MPU
      OMAP: hwmod: Replace WARN by pr_warning for clockdomain check
      OMAP4: CM: Remove non-functional registers in ES1.0
      OMAP4: PRM: Remove MPU internal code name and apply PRCM naming convention
      OMAP4: PRCM: Remove duplicate definition of base addresses

Laine Walker-Avina (1):
      OMAP3 clock: add support for setting the divider for sys_clkout2 using clk_set_rate

Paul Walmsley (2):
      OMAP powerdomain, hwmod, omap_device: add some credits
      OMAP2 clock: fix recursive spinlock attempt when CONFIG_CPU_FREQ=y

Rajendra Nayak (6):
      OMAP4: PRCM: Add offset defines for all PRM registers
      OMAP4: PRCM: Add offset defines for all CM registers
      OMAP4 clock: Support clk_set_parent
      OMAP: timers: Fix clock source names for OMAP4
      OMAP4 powerdomain: Fix pwrsts flags for ALWAYS ON domains
      OMAP4 powerdomain: Support LOWPOWERSTATECHANGE for powerdomains


 arch/arm/mach-omap2/clkt2xxx_virt_prcm_set.c  |   17 -
 arch/arm/mach-omap2/clock3xxx_data.c          |    2 
 arch/arm/mach-omap2/clockdomains44xx.h        |    4 
 arch/arm/mach-omap2/cm.c                      |    3 
 arch/arm/mach-omap2/cm.h                      |   11 +
 arch/arm/mach-omap2/cm44xx.h                  |  301 +++++++++++++++++--
 arch/arm/mach-omap2/cm4xxx.c                  |   54 ++-
 arch/arm/mach-omap2/omap_hwmod.c              |  121 ++++----
 arch/arm/mach-omap2/omap_hwmod_2420_data.c    |    2 
 arch/arm/mach-omap2/omap_hwmod_2430_data.c    |    2 
 arch/arm/mach-omap2/omap_hwmod_3xxx_data.c    |    2 
 arch/arm/mach-omap2/powerdomain.c             |   30 ++
 arch/arm/mach-omap2/powerdomains44xx.h        |   23 +
 arch/arm/mach-omap2/prcm-common.h             |   18 -
 arch/arm/mach-omap2/prm.h                     |    4 
 arch/arm/mach-omap2/prm44xx.h                 |  389 +++++++++++++++++++++++--
 arch/arm/plat-omap/clock.c                    |    5 
 arch/arm/plat-omap/dmtimer.c                  |    4 
 arch/arm/plat-omap/include/plat/omap44xx.h    |    1 
 arch/arm/plat-omap/include/plat/omap_hwmod.h  |   16 +
 arch/arm/plat-omap/include/plat/powerdomain.h |    7 
 arch/arm/plat-omap/omap_device.c              |    4 
 22 files changed, 814 insertions(+), 206 deletions(-)

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

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

Thread overview: 28+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2010-05-19  2:18 [PATCH 00/22] OMAP PRCM/clock/powerdomain/hwmod: remaining patches for 2.6.35 Paul Walmsley
2010-05-19  2:18 ` [PATCH 01/22] OMAP4: hwmod: Replace module & device offsets by absolute clkctrl address Paul Walmsley
2010-05-19  2:18 ` [PATCH 02/22] OMAP: CM: Move MAX_MODULE_READY_TIME to cm.h Paul Walmsley
2010-05-19  2:18 ` [PATCH 03/22] OMAP4: hwmod & CM: Implement the omap4_cm_wait_module_ready function Paul Walmsley
2010-05-19  2:18 ` [PATCH 04/22] OMAP4: hwmod: Replace OCPIF_HAS_IDLEST by HWMOD_NO_IDLEST Paul Walmsley
2010-05-19  2:18 ` [PATCH 05/22] OMAP: hwmod: Fix wrong pointer iteration in oh->slaves Paul Walmsley
2010-05-19  2:18 ` [PATCH 06/22] OMAP: hwmod: Remove IS_ERR check with omap_clk_get_by_name return value Paul Walmsley
2010-05-19  2:18 ` [PATCH 07/22] OMAP: hwmod: Replace WARN by pr_warning if clock lookup failed Paul Walmsley
2010-05-21 10:00   ` Sergei Shtylyov
2010-05-21 10:16     ` Benoit Cousson
2010-05-19  2:18 ` [PATCH 08/22] OMAP: hwmod: Do not exit the iteration if one clock init failed Paul Walmsley
2010-05-19  2:18 ` [PATCH 09/22] OMAP: hwmod: Rename hwmod name for the MPU Paul Walmsley
2010-05-19  2:18 ` [PATCH 10/22] OMAP: hwmod: Replace WARN by pr_warning for clockdomain check Paul Walmsley
2010-05-21 10:02   ` Sergei Shtylyov
2010-05-21 10:23     ` Sergei Shtylyov
2010-05-21 10:41       ` Benoit Cousson
2010-05-19  2:18 ` [PATCH 11/22] OMAP4: CM: Remove non-functional registers in ES1.0 Paul Walmsley
2010-05-19  2:18 ` [PATCH 12/22] OMAP4: PRM: Remove MPU internal code name and apply PRCM naming convention Paul Walmsley
2010-05-19  2:18 ` [PATCH 13/22] OMAP4: PRCM: Remove duplicate definition of base addresses Paul Walmsley
2010-05-19  2:18 ` [PATCH 14/22] OMAP4: PRCM: Add offset defines for all PRM registers Paul Walmsley
2010-05-19  2:18 ` [PATCH 15/22] OMAP4: PRCM: Add offset defines for all CM registers Paul Walmsley
2010-05-19  2:18 ` [PATCH 16/22] OMAP4 clock: Support clk_set_parent Paul Walmsley
2010-05-19  2:18 ` [PATCH 17/22] OMAP: timers: Fix clock source names for OMAP4 Paul Walmsley
2010-05-19  2:18 ` [PATCH 18/22] OMAP4 powerdomain: Fix pwrsts flags for ALWAYS ON domains Paul Walmsley
2010-05-19  2:19 ` [PATCH 19/22] OMAP3 clock: add support for setting the divider for sys_clkout2 using clk_set_rate Paul Walmsley
2010-05-19  2:19 ` [PATCH 20/22] OMAP4 powerdomain: Support LOWPOWERSTATECHANGE for powerdomains Paul Walmsley
2010-05-19  2:19 ` [PATCH 21/22] OMAP powerdomain, hwmod, omap_device: add some credits Paul Walmsley
2010-05-19  2:19 ` [PATCH 22/22] OMAP2 clock: fix recursive spinlock attempt when CONFIG_CPU_FREQ=y Paul Walmsley

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).