linux-omap.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH 0/9] OMAP: DMTIMER: Convert platform driver so as to make use of hwmod + omap device framework for OMAP2 PLUS
@ 2010-05-29 14:37 Thara Gopinath
  2010-05-29 14:37 ` [PATCH 1/9] OMAP: Convert dual mode timer into a platform driver Thara Gopinath
                   ` (2 more replies)
  0 siblings, 3 replies; 22+ messages in thread
From: Thara Gopinath @ 2010-05-29 14:37 UTC (permalink / raw)
  To: linux-omap; +Cc: khilman, tony, sawant, Thara Gopinath

This patch series converts the OMAP Dual Mode Timer into a
platform driver. This involves using of hwmod structures and
omap_device layer for OMAP2/3/4 dmtimers and generic
linux platform device layer for OMAP1.

As a result of this patch series the dmtimer platform driver
resides in arch/arm/plat-omap directory and arch specific
implementations and device registerations reside in
arch/arm/mach-omap1 and arch/arm/mach-omap2 for OMAP1
and OMAP2 PLUS respectively. 

This patch series has been compile tested for OMAP1 using
omap_1610_h2_defconfig, compile tested for OMAP2 using
omap3_defconfig and boot and sanity tested for OMAP3/OMAP4
again using omap3_defconfig. Boot testing has been done
on OMAP3430 SDP and OMAP4430 SDP boards. All testing has
been done on origin/origin/pm-wip/hwmods-omap4 branch off
Kevin Hilman's tree as these patches have dependencies on
runtime pm API's and OMAP4 autogenerated hwmod data base.

It would be great if somebody could test these patches on OMAP1
and OMAP2 platforms.

Thara Gopinath (9):
  OMAP: Convert dual mode timer into a platform driver.
  OMAP1: Dual mode timer device registration.
  OMAP2/3/4 : Dual mode timer device registration.
  OMAP2: Support for early device registration
  OMAP2/3/4: Adding device names to dmtimer fclk nodes
  OMAP3: Add hwmod data for OMAP3 dual mode timers.
  OMAP2: Add hwmod data for OMAP2420 dual mode timers.
  OMAP2: Add hwmod data for OMAP2430 dual mode timers.
  OMAP4: Changing dmtimer1 fclk name

 arch/arm/mach-omap1/Makefile               |    1 +
 arch/arm/mach-omap1/dmtimers.c             |  148 +++++++
 arch/arm/mach-omap1/timer32k.c             |    3 -
 arch/arm/mach-omap2/Makefile               |    3 +-
 arch/arm/mach-omap2/clock2420_data.c       |   24 +-
 arch/arm/mach-omap2/clock2430_data.c       |   24 +-
 arch/arm/mach-omap2/clock3xxx_data.c       |   22 +-
 arch/arm/mach-omap2/clock44xx_data.c       |   24 +-
 arch/arm/mach-omap2/dmtimers.c             |  296 +++++++++++++
 arch/arm/mach-omap2/dmtimers.h             |   57 +++
 arch/arm/mach-omap2/io.c                   |   16 +
 arch/arm/mach-omap2/omap_hwmod_2420_data.c |  619 +++++++++++++++++++++++++++-
 arch/arm/mach-omap2/omap_hwmod_2430_data.c |  619 +++++++++++++++++++++++++++-
 arch/arm/mach-omap2/omap_hwmod_3xxx_data.c |  572 +++++++++++++++++++++++++-
 arch/arm/mach-omap2/timer-gp.c             |    2 -
 arch/arm/plat-omap/dmtimer.c               |  401 ++++++++-----------
 arch/arm/plat-omap/include/plat/dmtimer.h  |   12 +-
 17 files changed, 2550 insertions(+), 293 deletions(-)
 create mode 100644 arch/arm/mach-omap1/dmtimers.c
 create mode 100644 arch/arm/mach-omap2/dmtimers.c
 create mode 100644 arch/arm/mach-omap2/dmtimers.h


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

end of thread, other threads:[~2010-06-03 23:46 UTC | newest]

Thread overview: 22+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2010-05-29 14:37 [PATCH 0/9] OMAP: DMTIMER: Convert platform driver so as to make use of hwmod + omap device framework for OMAP2 PLUS Thara Gopinath
2010-05-29 14:37 ` [PATCH 1/9] OMAP: Convert dual mode timer into a platform driver Thara Gopinath
2010-05-29 14:37   ` [PATCH 2/9] OMAP1: Dual mode timer device registration Thara Gopinath
2010-05-29 14:37     ` [PATCH 3/9] OMAP2/3/4 : " Thara Gopinath
2010-05-29 14:37       ` [PATCH 4/9] OMAP2: Support for early " Thara Gopinath
2010-05-29 14:37         ` [PATCH 5/9] OMAP2/3/4: Adding device names to dmtimer fclk nodes Thara Gopinath
2010-05-29 14:37           ` [PATCH 6/9] OMAP3: Add hwmod data for OMAP3 dual mode timers Thara Gopinath
2010-05-29 14:37             ` [PATCH 7/9] OMAP2: Add hwmod data for OMAP2420 " Thara Gopinath
2010-05-29 14:37               ` [PATCH 8/9] OMAP2: Add hwmod data for OMAP2430 " Thara Gopinath
2010-05-29 14:37                 ` [PATCH 9/9] OMAP4: Changing dmtimer1 fclk name Thara Gopinath
2010-06-03 23:19         ` [PATCH 4/9] OMAP2: Support for early device registration Kevin Hilman
2010-05-30 23:02       ` [PATCH 3/9] OMAP2/3/4 : Dual mode timer " Benoit Cousson
2010-06-01  9:20         ` Tony Lindgren
2010-06-03  9:30           ` Gopinath, Thara
2010-06-03 23:18       ` Kevin Hilman
2010-06-03 23:24       ` Kevin Hilman
2010-06-03 19:47   ` [PATCH 1/9] OMAP: Convert dual mode timer into a platform driver Kevin Hilman
2010-05-30 22:11 ` [PATCH 0/9] OMAP: DMTIMER: Convert platform driver so as to make use of hwmod + omap device framework for OMAP2 PLUS Benoit Cousson
2010-06-03 22:20   ` Kevin Hilman
2010-06-03 22:29     ` Benoit
2010-06-03 23:46       ` Kevin Hilman
2010-06-01  9:37 ` Tony Lindgren

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