From: nicolas.ferre@atmel.com (Nicolas Ferre)
To: linux-arm-kernel@lists.infradead.org
Subject: [GIT PULL] at91: drivers for 3.18 #2
Date: Fri, 5 Sep 2014 18:36:09 +0200 [thread overview]
Message-ID: <1409934969-11584-1-git-send-email-nicolas.ferre@atmel.com> (raw)
Arnd, Olof, Kevin,
This pull-request is focused on the work that Maxime did for migrating our timer
(PIT) to the clocksource sub-system. A big cleanup happened which allows us to
be even closer to the point when we have only the bare minimum in our formerly
crowded mach-at91 directory.
This pull-request goes on top of the "drivers" one already sent to you on Sept.
01st.
Thanks, best regards,
The following changes since commit 405a72c5e78b5c560c8b2711d4000fa5eb063e1b:
power: reset: at91-poweroff: fix wakeup status register index (2014-09-01 18:40:44 +0200)
are available in the git repository at:
git://github.com/at91linux/linux-at91.git tags/at91-drivers2
for you to fetch changes up to 5c1406f573f0f13b85c738a21030aadc9bb36bdd:
ARM: at91: PIT: Move the driver to drivers/clocksource (2014-09-03 10:55:46 +0200)
----------------------------------------------------------------
Second drivers series for AT91/3.18:
- move of the PIT (basic timer) from mach-at91 to its
proper location: drivers/clocksource
- big cleanup of this driver along the way
----------------------------------------------------------------
Maxime Ripard (14):
ARM: at91: PIT: Follow the general coding rules
ARM: at91: generic.h: Add include safe guards
ARM: at91: PIT: Use DIV_ROUND_CLOSEST to compute the cycles
ARM: at91: PIT: Use of_have_populated_dt instead of CONFIG_OF
ARM: at91: PIT: Rework probe functions
ARM: at91: dt: Remove init_time definitions
ARM: at91: PIT: Use consistent exit path in probe
ARM: at91: PIT: Use pr_fmt
ARM: at91: PIT: use request_irq instead of setup_irq
ARM: at91: PIT: (Almost) remove the global variables
ARM: at91: soc: Add init_time callback
ARM: at91: Convert the boards to the init_time callback
ARM: at91: PIT: Convert to an early_platform_device
ARM: at91: PIT: Move the driver to drivers/clocksource
arch/arm/mach-at91/Kconfig | 5 -
arch/arm/mach-at91/Makefile | 1 -
arch/arm/mach-at91/at91sam9260.c | 34 +++-
arch/arm/mach-at91/at91sam9261.c | 34 +++-
arch/arm/mach-at91/at91sam9263.c | 34 +++-
arch/arm/mach-at91/at91sam926x_time.c | 294 ------------------------------
arch/arm/mach-at91/at91sam9g45.c | 34 +++-
arch/arm/mach-at91/at91sam9rl.c | 34 +++-
arch/arm/mach-at91/board-afeb-9260v1.c | 2 +-
arch/arm/mach-at91/board-cam60.c | 2 +-
arch/arm/mach-at91/board-cpu9krea.c | 2 +-
arch/arm/mach-at91/board-dt-sam9.c | 10 --
arch/arm/mach-at91/board-dt-sama5.c | 9 -
arch/arm/mach-at91/board-flexibity.c | 2 +-
arch/arm/mach-at91/board-foxg20.c | 2 +-
arch/arm/mach-at91/board-gsia18s.c | 2 +-
arch/arm/mach-at91/board-pcontrol-g20.c | 2 +-
arch/arm/mach-at91/board-sam9-l9260.c | 2 +-
arch/arm/mach-at91/board-sam9260ek.c | 2 +-
arch/arm/mach-at91/board-sam9261ek.c | 4 +-
arch/arm/mach-at91/board-sam9263ek.c | 2 +-
arch/arm/mach-at91/board-sam9g20ek.c | 4 +-
arch/arm/mach-at91/board-sam9m10g45ek.c | 2 +-
arch/arm/mach-at91/board-sam9rlek.c | 2 +-
arch/arm/mach-at91/board-snapper9260.c | 2 +-
arch/arm/mach-at91/board-stamp9g20.c | 4 +-
arch/arm/mach-at91/generic.h | 8 +-
arch/arm/mach-at91/setup.c | 5 +
arch/arm/mach-at91/soc.h | 1 +
drivers/clocksource/Kconfig | 4 +
drivers/clocksource/Makefile | 1 +
drivers/clocksource/timer-atmel-pit.c | 304 ++++++++++++++++++++++++++++++++
32 files changed, 505 insertions(+), 345 deletions(-)
delete mode 100644 arch/arm/mach-at91/at91sam926x_time.c
create mode 100644 drivers/clocksource/timer-atmel-pit.c
--
Nicolas Ferre
next reply other threads:[~2014-09-05 16:36 UTC|newest]
Thread overview: 11+ messages / expand[flat|nested] mbox.gz Atom feed top
2014-09-05 16:36 Nicolas Ferre [this message]
2014-09-05 21:25 ` [GIT PULL] at91: drivers for 3.18 #2 Arnd Bergmann
2014-09-05 21:39 ` Arnd Bergmann
2014-09-08 9:26 ` Maxime Ripard
2014-09-08 9:52 ` Arnd Bergmann
2014-09-09 9:15 ` Maxime Ripard
2014-09-09 9:27 ` Arnd Bergmann
2014-09-15 16:12 ` [GIT PULL] at91: drivers for 3.18 #2 (bis) Nicolas Ferre
2014-09-24 4:59 ` Olof Johansson
2014-09-24 10:50 ` Nicolas Ferre
2014-09-24 17:34 ` Olof Johansson
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=1409934969-11584-1-git-send-email-nicolas.ferre@atmel.com \
--to=nicolas.ferre@atmel.com \
--cc=linux-arm-kernel@lists.infradead.org \
/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).