From: Russell King - ARM Linux <linux@arm.linux.org.uk>
To: linux-arm-kernel@lists.infradead.org,
John Stultz <johnstul@us.ibm.com>,
Thomas Gleixner <tglx@linutronix.de>
Cc: Sascha Hauer <kernel@pengutronix.de>,
Kukjin Kim <kgene.kim@samsung.com>,
Eric Miao <eric.y.miao@gmail.com>,
Linus Walleij <linus.walleij@stericsson.com>,
Erik Gilling <konkers@android.com>,
Nicolas Pitre <nico@fluxnic.net>,
Tony Lindgren <tony@atomide.com>,
Catalin Marinas <catalin.marinas@arm.com>,
Krzysztof Halasa <khc@pm.waw.pl>,
Scott Branden <sbranden@broadcom.com>,
linux-omap@vger.kernel.org, "Hans J. Koch" <hjk@hansjkoch.de>,
Jiandong Zheng <jdzheng@broadcom.com>,
Colin Cross <ccross@android.com>, Olof Johansson <olof@lixom.net>,
Imre Kaloz <kaloz@openwrt.org>,
Wan ZongShun <mcuos.com@gmail.com>,
Lennert Buytenhek <kernel@wantstofly.org>,
Alessandro Rubini <rubini@unipv.it>
Subject: [PATCH v2 00/19] Consolidate simple ARM MMIO clock sources
Date: Mon, 16 May 2011 18:23:34 +0100 [thread overview]
Message-ID: <20110516172334.GD13659@n2100.arm.linux.org.uk> (raw)
This is a re-posting of the clocksource patches, which includes some
other updates. This includes bcmring in the update.
In a similar light to the i8253 series, this consolidates 17 ARM
MMIO counter clocksources into a single common implementation. This
common implementation caters for 32-bit and 16-bit register access
sizes, up and down counters, and various bit sizes of those counters.
Patch 1 is already in John Stultz tree, but is included for
completeness and to get rid of a build warning.
arch/arm/Kconfig | 15 ++
arch/arm/common/timer-sp.c | 80 +++++++----
arch/arm/include/asm/hardware/timer-sp.h | 4 +-
arch/arm/mach-bcmring/core.c | 220 +++++++-----------------------
arch/arm/mach-integrator/Kconfig | 1 +
arch/arm/mach-integrator/integrator_ap.c | 21 +---
arch/arm/mach-integrator/integrator_cp.c | 11 ++-
arch/arm/mach-ixp4xx/common.c | 16 +--
arch/arm/mach-lpc32xx/timer.c | 17 +--
arch/arm/mach-mxs/timer.c | 20 +--
arch/arm/mach-netx/time.c | 16 +--
arch/arm/mach-omap1/time.c | 69 +++-------
arch/arm/mach-pxa/time.c | 17 +--
arch/arm/mach-realview/core.c | 13 ++-
arch/arm/mach-sa1100/time.c | 24 +---
arch/arm/mach-tcc8k/time.c | 16 +--
arch/arm/mach-tegra/timer.c | 16 +--
arch/arm/mach-u300/timer.c | 18 +--
arch/arm/mach-versatile/core.c | 13 ++-
arch/arm/mach-vexpress/ct-ca9x4.c | 17 ++-
arch/arm/mach-vexpress/v2m.c | 17 ++-
arch/arm/mach-w90x900/time.c | 17 +--
arch/arm/plat-mxc/epit.c | 18 +--
arch/arm/plat-mxc/time.c | 38 +----
arch/arm/plat-nomadik/Kconfig | 1 +
arch/arm/plat-nomadik/timer.c | 31 +----
arch/arm/plat-omap/Kconfig | 1 +
arch/arm/plat-orion/time.c | 21 +---
arch/arm/plat-s5p/s5p-time.c | 58 +++------
arch/arm/plat-spear/time.c | 16 +--
drivers/Kconfig | 3 +
drivers/clocksource/Kconfig | 2 +
drivers/clocksource/Makefile | 1 +
drivers/clocksource/mmio.c | 73 ++++++++++
include/linux/clocksource.h | 10 ++-
35 files changed, 354 insertions(+), 577 deletions(-)
next reply other threads:[~2011-05-16 17:23 UTC|newest]
Thread overview: 11+ messages / expand[flat|nested] mbox.gz Atom feed top
2011-05-16 17:23 Russell King - ARM Linux [this message]
2011-05-16 17:25 ` [PATCH 01/19] Make clocksource name const Russell King - ARM Linux
2011-05-19 1:24 ` Hans J. Koch
2011-05-19 7:19 ` Linus Walleij
2011-05-16 17:26 ` [PATCH 03/19] ARM: omap1: delete useless interrupt handler Russell King - ARM Linux
2011-05-16 17:26 ` [PATCH 04/19] ARM: omap1: convert to using readl/writel instead of volatile struct Russell King - ARM Linux
2011-05-17 21:59 ` Catalin Marinas
2011-05-18 7:56 ` Russell King - ARM Linux
2011-05-18 20:48 ` Linus Walleij
2011-05-16 17:27 ` [PATCH 06/19] clocksource: add common mmio clocksource Russell King - ARM Linux
2011-05-16 17:29 ` [PATCH 13/19] clocksource: convert OMAP1 to 32-bit down counting clocksource Russell King - ARM Linux
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20110516172334.GD13659@n2100.arm.linux.org.uk \
--to=linux@arm.linux.org.uk \
--cc=catalin.marinas@arm.com \
--cc=ccross@android.com \
--cc=eric.y.miao@gmail.com \
--cc=hjk@hansjkoch.de \
--cc=jdzheng@broadcom.com \
--cc=johnstul@us.ibm.com \
--cc=kaloz@openwrt.org \
--cc=kernel@pengutronix.de \
--cc=kernel@wantstofly.org \
--cc=kgene.kim@samsung.com \
--cc=khc@pm.waw.pl \
--cc=konkers@android.com \
--cc=linus.walleij@stericsson.com \
--cc=linux-arm-kernel@lists.infradead.org \
--cc=linux-omap@vger.kernel.org \
--cc=mcuos.com@gmail.com \
--cc=nico@fluxnic.net \
--cc=olof@lixom.net \
--cc=rubini@unipv.it \
--cc=sbranden@broadcom.com \
--cc=tglx@linutronix.de \
--cc=tony@atomide.com \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
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).