All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH 0/7] OMAP: omap_device cleanup before device-tree integration
@ 2011-08-22 15:19 ` Benoit Cousson
  0 siblings, 0 replies; 46+ messages in thread
From: Benoit Cousson @ 2011-08-22 15:19 UTC (permalink / raw)
  To: khilman; +Cc: linux-omap, linux-arm-kernel, paul, Benoit Cousson

Hi Kevin,

Here are a couple of cleanups on top of your for_3.2/omap_device series
rebased on top of 3.1-rc2 to get your pm-fixes.
The goal is to help building core devices using device-tree by removing
direct reference to the device inside PM.
For that, I took and rebased the two patches done by Nishanth to use hwmod
to identify the device from the generic IP name.
The currently "unused" omap_device_pm_latency is moved inside the
omap_device core code to avoid the duplication.

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

It is tested on OMAP4 SDP and Panda only. I don't even have the Beagle
to test the beagle patch :-(

Regards,
Benoit


Benoit Cousson (5):
  OMAP3: beagle-board: Use the omap_hwmod_name_get_dev API
  OMAP2+: pm: Use hwmod name instead of dev pointer
  OMAP2+: pm: Remove static devices variable for mpu, dsp, iva and l3 PM
  OMAP: omap_device: Create a default omap_device_pm_latency
  OMAP2+: devices: Remove all omap_device_pm_latency structures

Nishanth Menon (2):
  OMAP: PM: omap_device: add omap_hwmod_name_get_odev
  OMAP: PM: omap_device: add few quick access functions

 arch/arm/mach-omap2/board-omap3beagle.c       |    4 +-
 arch/arm/mach-omap2/devices.c                 |   46 ++---------------
 arch/arm/mach-omap2/display.c                 |   11 +----
 arch/arm/mach-omap2/dma.c                     |   11 +----
 arch/arm/mach-omap2/gpio.c                    |   12 +----
 arch/arm/mach-omap2/hsmmc.c                   |   18 +------
 arch/arm/mach-omap2/hwspinlock.c              |   12 +----
 arch/arm/mach-omap2/mcbsp.c                   |   11 +----
 arch/arm/mach-omap2/pm.c                      |   69 ++++++++-----------------
 arch/arm/mach-omap2/serial.c                  |   25 +---------
 arch/arm/mach-omap2/sr_device.c               |   11 +----
 arch/arm/mach-omap2/usb-musb.c                |   11 +----
 arch/arm/plat-omap/i2c.c                      |   10 +---
 arch/arm/plat-omap/include/plat/omap_device.h |   16 ++++++
 arch/arm/plat-omap/omap_device.c              |   49 +++++++++++++++++-
 15 files changed, 101 insertions(+), 215 deletions(-)


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

end of thread, other threads:[~2011-09-26 18:19 UTC | newest]

Thread overview: 46+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2011-08-22 15:19 [PATCH 0/7] OMAP: omap_device cleanup before device-tree integration Benoit Cousson
2011-08-22 15:19 ` Benoit Cousson
2011-08-22 15:19 ` [PATCH 1/7] OMAP: PM: omap_device: add omap_hwmod_name_get_odev Benoit Cousson
2011-08-22 15:19   ` Benoit Cousson
2011-08-31 22:20   ` Kevin Hilman
2011-08-31 22:20     ` Kevin Hilman
2011-09-01 11:48     ` Cousson, Benoit
2011-09-01 11:48       ` Cousson, Benoit
2011-09-01 20:44       ` Menon, Nishanth
2011-09-01 20:44         ` Menon, Nishanth
2011-09-26 18:18   ` Kevin Hilman
2011-09-26 18:18     ` Kevin Hilman
2011-08-22 15:19 ` [PATCH 2/7] OMAP: PM: omap_device: add few quick access functions Benoit Cousson
2011-08-22 15:19   ` Benoit Cousson
2011-08-31 22:23   ` Kevin Hilman
2011-08-31 22:23     ` Kevin Hilman
2011-09-01 11:55     ` Cousson, Benoit
2011-09-01 11:55       ` Cousson, Benoit
2011-09-01 14:55       ` Kevin Hilman
2011-09-01 14:55         ` Kevin Hilman
2011-09-02 12:39     ` Cousson, Benoit
2011-09-02 12:39       ` Cousson, Benoit
2011-08-22 15:19 ` [PATCH 3/7] OMAP3: beagle-board: Use the omap_hwmod_name_get_dev API Benoit Cousson
2011-08-22 15:19   ` Benoit Cousson
2011-08-31 22:24   ` Kevin Hilman
2011-08-31 22:24     ` Kevin Hilman
2011-08-22 15:19 ` [PATCH 4/7] OMAP2+: pm: Use hwmod name instead of dev pointer Benoit Cousson
2011-08-22 15:19   ` Benoit Cousson
2011-08-31 22:24   ` Kevin Hilman
2011-08-31 22:24     ` Kevin Hilman
2011-08-22 15:19 ` [PATCH 5/7] OMAP2+: pm: Remove static devices variable for mpu, dsp, iva and l3 PM Benoit Cousson
2011-08-22 15:19   ` Benoit Cousson
2011-08-31 22:25   ` Kevin Hilman
2011-08-31 22:25     ` Kevin Hilman
2011-08-22 15:19 ` [PATCH 6/7] OMAP: omap_device: Create a default omap_device_pm_latency Benoit Cousson
2011-08-22 15:19   ` Benoit Cousson
2011-08-31 22:30   ` Kevin Hilman
2011-08-31 22:30     ` Kevin Hilman
2011-08-22 15:19 ` [PATCH 7/7] OMAP2+: devices: Remove all omap_device_pm_latency structures Benoit Cousson
2011-08-22 15:19   ` Benoit Cousson
2011-08-31 22:31   ` Kevin Hilman
2011-08-31 22:31     ` Kevin Hilman
2011-09-01 11:59     ` Cousson, Benoit
2011-09-01 11:59       ` Cousson, Benoit
2011-09-01 16:28 ` [PATCH 0/7] OMAP: omap_device cleanup before device-tree integration Kevin Hilman
2011-09-01 16:28   ` Kevin Hilman

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.