All of lore.kernel.org
 help / color / mirror / Atom feed
* [RFC RESEND 0/4] ARM: OMAP3+: Add device-tree support for timers
@ 2012-07-13 22:26 ` Jon Hunter
  0 siblings, 0 replies; 65+ messages in thread
From: Jon Hunter @ 2012-07-13 22:26 UTC (permalink / raw)
  To: Tarun Kanti DebBarma, Tony Lindgren, Rob Herring, Grant Likely,
	Paul Walmsley
  Cc: Benoit Cousson, linux-omap, linux-arm, device-tree, Jon Hunter

This series adds device-tree support for the timers on OMAP3/4 devices. Once
everyone is happy with the implementation I can add support for OMAP2/5 devices
too.

Testing:
- I have tested the all the timers (not used by the kernel as sys-timers) on
  both OMAP3430 Beagle and OMAP4460 Panda with/without device-tree with this
  series.
- The testing includes
	- Configuring, starting a timer and checking the counter value is
	  incrementing.
	- Testing timer overflow interrupt when timer expires.
	- Using different clock sources to operate the timer with.
	- Using DT to provide resource information for IRQ and memory by
	  removing Benoit's intention "HACK" in commit a4f6cdb0 (ARM: OMAP:
	  omap_device: Add omap_device_[alloc|delete] for DT integration)

Jon Hunter (4):
  arm/dts: OMAP: Add timer nodes
  ARM: OMAP3: Dynamically disable secure timer nodes for secure devices
  ARM: OMAP4: Add timer clock aliases for device-tree
  ARM: OMAP: Add DT support for timer driver

 .../devicetree/bindings/arm/omap/timer.txt         |   34 +++++++
 arch/arm/boot/dts/omap3.dtsi                       |  104 ++++++++++++++++++++
 arch/arm/boot/dts/omap4.dtsi                       |   93 +++++++++++++++++
 arch/arm/mach-omap2/board-generic.c                |    1 +
 arch/arm/mach-omap2/clock44xx_data.c               |   12 +++
 arch/arm/mach-omap2/common.h                       |    1 +
 arch/arm/mach-omap2/timer.c                        |   40 ++++++++
 arch/arm/plat-omap/dmtimer.c                       |   32 ++++--
 8 files changed, 311 insertions(+), 6 deletions(-)
 create mode 100644 Documentation/devicetree/bindings/arm/omap/timer.txt

-- 
1.7.9.5


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

end of thread, other threads:[~2012-09-07 21:16 UTC | newest]

Thread overview: 65+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2012-07-13 22:26 [RFC RESEND 0/4] ARM: OMAP3+: Add device-tree support for timers Jon Hunter
2012-07-13 22:26 ` Jon Hunter
2012-07-13 22:26 ` [RFC RESEND 1/4] arm/dts: OMAP: Add timer nodes Jon Hunter
2012-07-13 22:26   ` Jon Hunter
2012-07-14  2:15   ` Rob Herring
2012-07-14  2:15     ` Rob Herring
     [not found]     ` <5000D647.4090200-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org>
2012-07-14  5:30       ` Mis?use of aliases Mitch Bradley
     [not found]         ` <50010402.3050502-D5eQfiDGL7eakBO8gow8eQ@public.gmane.org>
2012-07-14 16:37           ` David Gibson
2012-07-14 16:37             ` David Gibson
     [not found]             ` <20120714163701.GI11326-MK4v0fQdeXQXU02nzanrWNbf9cGiqdzd@public.gmane.org>
2012-07-14 17:07               ` Mitch Bradley
2012-07-14 17:07                 ` Mitch Bradley
     [not found]                 ` <5001A745.3000509-D5eQfiDGL7eakBO8gow8eQ@public.gmane.org>
2012-07-15  7:39                   ` David Gibson
2012-07-15  7:39                     ` David Gibson
2012-07-14  6:56       ` [RFC RESEND 1/4] arm/dts: OMAP: Add timer nodes Paul Walmsley
2012-07-14  6:56         ` Paul Walmsley
2012-07-14 14:01         ` Rob Herring
2012-07-14 14:01           ` Rob Herring
     [not found]           ` <50017BB1.8010702-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org>
2012-07-14 17:42             ` Paul Walmsley
2012-07-14 17:42               ` Paul Walmsley
2012-07-16 17:48               ` Paul Walmsley
2012-07-16 17:48                 ` Paul Walmsley
2012-07-16 15:56     ` Jon Hunter
2012-07-16 15:56       ` Jon Hunter
2012-07-18  7:19       ` Tony Lindgren
2012-07-18  7:19         ` Tony Lindgren
2012-07-18 15:11         ` Jon Hunter
2012-07-18 15:11           ` Jon Hunter
2012-07-23 15:24       ` Jon Hunter
2012-07-23 15:24         ` Jon Hunter
2012-08-15  9:11         ` Vaibhav Hiremath
2012-08-15  9:11           ` Vaibhav Hiremath
2012-08-16 15:04           ` Jon Hunter
2012-08-16 15:04             ` Jon Hunter
2012-08-30 20:14             ` Tony Lindgren
2012-08-30 20:14               ` Tony Lindgren
2012-09-07 20:26               ` Jon Hunter
2012-09-07 20:26                 ` Jon Hunter
2012-09-07 20:56                 ` Tony Lindgren
2012-09-07 20:56                   ` Tony Lindgren
2012-09-07 21:16                   ` Jon Hunter
2012-09-07 21:16                     ` Jon Hunter
2012-09-06 13:45         ` Rob Herring
2012-09-06 13:45           ` Rob Herring
     [not found]           ` <5048A8F6.6080108-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org>
2012-09-07  2:09             ` Jon Hunter
2012-09-07  2:09               ` Jon Hunter
2012-07-13 22:26 ` [RFC RESEND 2/4] ARM: OMAP3: Dynamically disable secure timer nodes for secure devices Jon Hunter
2012-07-13 22:26   ` Jon Hunter
2012-08-15  9:13   ` Vaibhav Hiremath
2012-08-15  9:13     ` Vaibhav Hiremath
2012-08-16 16:57     ` Jon Hunter
2012-08-16 16:57       ` Jon Hunter
     [not found]       ` <502D2686.4090107-l0cyMroinI0@public.gmane.org>
2012-08-17  5:32         ` Hiremath, Vaibhav
2012-08-17  5:32           ` Hiremath, Vaibhav
2012-08-17 12:24           ` Jon Hunter
2012-08-17 12:24             ` Jon Hunter
2012-08-24 15:56             ` Hiremath, Vaibhav
2012-08-24 15:56               ` Hiremath, Vaibhav
2012-07-13 22:26 ` [RFC RESEND 3/4] ARM: OMAP4: Add timer clock aliases for device-tree Jon Hunter
2012-07-13 22:26   ` Jon Hunter
2012-07-13 22:26 ` [RFC RESEND 4/4] ARM: OMAP: Add DT support for timer driver Jon Hunter
2012-07-13 22:26   ` Jon Hunter
2012-07-13 23:41   ` Paul Walmsley
2012-07-13 23:41     ` Paul Walmsley
     [not found]     ` <alpine.DEB.2.00.1207131740460.25585-rwI8Ez+7Ko+d5PgPZx9QOdBPR1lH4CV8@public.gmane.org>
2012-07-14  0:57       ` Jon Hunter
2012-07-14  0:57         ` Jon Hunter

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.