All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH 00/11] sp804 and integrator timer CLKSRC_OF support
@ 2013-03-20 22:54 ` Rob Herring
  0 siblings, 0 replies; 67+ messages in thread
From: Rob Herring @ 2013-03-20 22:54 UTC (permalink / raw)
  To: linux-arm-kernel, linux-kernel, devicetree-discuss
  Cc: Arnd Bergmann, linus.walleij, Russell King, haojian.zhuang,
	pawel.moll, john.stultz, tglx, Rob Herring

From: Rob Herring <rob.herring@calxeda.com>

This series add device-tree support using CLKSRC_OF for initialization
of integrator ap and cp timers and sp804 timers. The timer code for all
of these is moved to drivers/clocksource. The common DT based
initialization of sp804 is supported on highbank, versatile-ab and
vexpress. The DT init support is newly added for versatile-ab.

This series is dependent on my CLKSRC_OF clean-up in arm-soc, my
sched_clock selection series[1], and Arnd's default machine descriptor
patch (for default clocksource_of_init call). The full series is
available here:

git://sources.calxeda.com/kernel/linux.git arm-timers

http://sources.calxeda.com/gitweb/?p=kernel/linux.git;a=shortlog;h=refs/heads/arm-timers

I've tested integrator and versatile on qemu and on highbank h/w.

Rob

[1] http://comments.gmane.org/gmane.linux.ports.arm.kernel/222282

Haojian Zhuang (1):
  devtree: add binding documentation for sp804

Rob Herring (10):
  OF: add empty of_device_is_available for !OF
  ARM: remove extra timer-sp control register clearing
  ARM: timer-sp: convert to use CLKSRC_OF init
  ARM: highbank: use OF init for sp804 timer
  ARM: vexpress: remove sp804 OF init
  ARM: dts: vexpress: disable CA9 core tile sp804 timer
  ARM: versatile: add versatile dtbs to dtbs target
  ARM: versatile: use OF init for sp804 timer
  ARM: integrator-cp: convert use CLKSRC_OF for timer init
  ARM: move sp804 and integrator timers to drivers/clocksource

 .../devicetree/bindings/timer/arm,sp804.txt        |   29 +++
 arch/arm/Kconfig                                   |    5 -
 arch/arm/boot/dts/Makefile                         |    2 +
 arch/arm/boot/dts/integratorcp.dts                 |    6 +-
 arch/arm/boot/dts/versatile-ab.dts                 |   12 ++
 arch/arm/boot/dts/vexpress-v2p-ca9.dts             |    1 +
 arch/arm/common/Makefile                           |    1 -
 arch/arm/include/asm/hardware/timer-sp.h           |   15 --
 arch/arm/mach-highbank/highbank.c                  |   19 --
 arch/arm/mach-integrator/Kconfig                   |    1 +
 arch/arm/mach-integrator/integrator_ap.c           |  173 +-----------------
 arch/arm/mach-integrator/integrator_cp.c           |   42 +----
 arch/arm/mach-realview/core.c                      |   12 +-
 arch/arm/mach-versatile/core.c                     |   37 ++--
 arch/arm/mach-versatile/versatile_dt.c             |    1 -
 arch/arm/mach-vexpress/ct-ca9x4.c                  |    4 +-
 arch/arm/mach-vexpress/v2m.c                       |   17 +-
 drivers/clocksource/Kconfig                        |   12 ++
 drivers/clocksource/Makefile                       |    2 +
 .../hardware => drivers/clocksource}/arm_timer.h   |    6 +-
 drivers/clocksource/integrator_ap_timer.c          |  190 ++++++++++++++++++++
 .../arm/common => drivers/clocksource}/timer-sp.c  |  132 ++++++++++++--
 include/clocksource/integrator_ap_timer.h          |    7 +
 include/clocksource/timer-sp.h                     |   31 ++++
 include/linux/of.h                                 |    5 +
 25 files changed, 429 insertions(+), 333 deletions(-)
 create mode 100644 Documentation/devicetree/bindings/timer/arm,sp804.txt
 delete mode 100644 arch/arm/include/asm/hardware/timer-sp.h
 rename {arch/arm/include/asm/hardware => drivers/clocksource}/arm_timer.h (89%)
 create mode 100644 drivers/clocksource/integrator_ap_timer.c
 rename {arch/arm/common => drivers/clocksource}/timer-sp.c (60%)
 create mode 100644 include/clocksource/integrator_ap_timer.h
 create mode 100644 include/clocksource/timer-sp.h

-- 
1.7.10.4


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

end of thread, other threads:[~2013-03-22 11:49 UTC | newest]

Thread overview: 67+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2013-03-20 22:54 [PATCH 00/11] sp804 and integrator timer CLKSRC_OF support Rob Herring
2013-03-20 22:54 ` Rob Herring
2013-03-20 22:54 ` [PATCH 01/11] OF: add empty of_device_is_available for !OF Rob Herring
2013-03-20 22:54   ` Rob Herring
2013-03-21 14:18   ` Mark Rutland
2013-03-21 14:18     ` Mark Rutland
2013-03-21 14:18     ` Mark Rutland
2013-03-21 14:26     ` Rob Herring
2013-03-21 14:26       ` Rob Herring
2013-03-21 14:26       ` Rob Herring
2013-03-20 22:54 ` [PATCH 02/11] ARM: remove extra timer-sp control register clearing Rob Herring
2013-03-20 22:54   ` Rob Herring
2013-03-20 22:54   ` Rob Herring
2013-03-21 17:58   ` Linus Walleij
2013-03-21 17:58     ` Linus Walleij
2013-03-21 18:03     ` Rob Herring
2013-03-21 18:03       ` Rob Herring
2013-03-21 18:03       ` Rob Herring
2013-03-21 19:23   ` Russell King - ARM Linux
2013-03-21 19:23     ` Russell King - ARM Linux
2013-03-22  2:36     ` Rob Herring
2013-03-22  2:36       ` Rob Herring
2013-03-20 22:54 ` [PATCH 03/11] ARM: timer-sp: convert to use CLKSRC_OF init Rob Herring
2013-03-20 22:54   ` Rob Herring
2013-03-20 22:54   ` Rob Herring
2013-03-21 18:02   ` Linus Walleij
2013-03-21 18:02     ` Linus Walleij
2013-03-21 19:35   ` Russell King - ARM Linux
2013-03-21 19:35     ` Russell King - ARM Linux
2013-03-21 19:35     ` Russell King - ARM Linux
2013-03-22  2:31     ` Rob Herring
2013-03-22  2:31       ` Rob Herring
2013-03-22  2:31       ` Rob Herring
2013-03-22 11:49       ` Russell King - ARM Linux
2013-03-22 11:49         ` Russell King - ARM Linux
2013-03-20 22:54 ` [PATCH 04/11] ARM: highbank: use OF init for sp804 timer Rob Herring
2013-03-20 22:54   ` Rob Herring
2013-03-20 22:54 ` [PATCH 05/11] ARM: vexpress: remove sp804 OF init Rob Herring
2013-03-20 22:54   ` Rob Herring
2013-03-20 22:54   ` Rob Herring
2013-03-20 22:54 ` [PATCH 06/11] ARM: dts: vexpress: disable CA9 core tile sp804 timer Rob Herring
2013-03-20 22:54   ` Rob Herring
2013-03-20 22:54   ` Rob Herring
2013-03-20 22:54 ` [PATCH 07/11] ARM: versatile: add versatile dtbs to dtbs target Rob Herring
2013-03-20 22:54   ` Rob Herring
2013-03-20 22:54 ` [PATCH 08/11] ARM: versatile: use OF init for sp804 timer Rob Herring
2013-03-20 22:54   ` Rob Herring
2013-03-20 22:54 ` [PATCH 09/11] ARM: integrator-cp: convert use CLKSRC_OF for timer init Rob Herring
2013-03-20 22:54   ` Rob Herring
2013-03-21 18:07   ` Linus Walleij
2013-03-21 18:07     ` Linus Walleij
2013-03-20 22:54 ` [PATCH 10/11] ARM: move sp804 and integrator timers to drivers/clocksource Rob Herring
2013-03-20 22:54   ` Rob Herring
2013-03-21 18:15   ` Linus Walleij
2013-03-21 18:15     ` Linus Walleij
2013-03-21 18:15     ` Linus Walleij
2013-03-20 22:54 ` [PATCH 11/11] devtree: add binding documentation for sp804 Rob Herring
2013-03-20 22:54   ` Rob Herring
2013-03-21 19:36   ` Russell King - ARM Linux
2013-03-21 19:36     ` Russell King - ARM Linux
2013-03-21 19:36     ` Russell King - ARM Linux
2013-03-21 13:24 ` [PATCH 00/11] sp804 and integrator timer CLKSRC_OF support Arnd Bergmann
2013-03-21 13:24   ` Arnd Bergmann
2013-03-21 13:24   ` Arnd Bergmann
2013-03-21 14:06   ` Rob Herring
2013-03-21 14:06     ` Rob Herring
2013-03-21 14:06     ` Rob Herring

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.