From: daniel.lezcano@linaro.org (Daniel Lezcano)
To: linux-arm-kernel@lists.infradead.org
Subject: [GIT PULL]: clockevents: new material for 3.20
Date: Thu, 29 Jan 2015 14:06:12 +0100 [thread overview]
Message-ID: <54CA3044.6070501@linaro.org> (raw)
Hi Thomas,
this pull request contains the following changes:
* Barry Song renamed the marco timer to atlas7
* Baruch Siach provided a new driver for the Conexant Digicolor SoCs
* Daniel Lezcano added a new driver for the rockchip rk3288 board
* Oleksij Rempel added a new driver asm9260 for mips
* Rob Herring added the DT definition for the versatile AB/PB boards
as these ones are compatible with the Versatile clocksource
* Thierry Reding removed an used variable for the sirf driver
The following changes since commit 9bc7491906b4113b4c5ae442157c7dfc4e10cd14:
hrtimer: Prevent stale expiry time in hrtimer_interrupt() (2015-01-23
12:13:20 +0100)
are available in the git repository at:
http://git.linaro.org/people/daniel.lezcano/linux.git clockevents/3.20
for you to fetch changes up to 35a8578e8b83eb13f8d57ab40b98bcfd5199d3d4:
dts: versatile: Add sysregs node (2015-01-29 14:02:16 +0100)
----------------------------------------------------------------
Barry Song (1):
clocksource: marco: Rename marco to atlas7
Baruch Siach (2):
clocksource: devicetree: Document Conexant Digicolor timer binding
clocksource: Driver for Conexant Digicolor SoC timer
Daniel Lezcano (1):
clockevents: rockchip: Add rockchip timer for rk3288
Oleksij Rempel (1):
ARM: clocksource: Add asm9260_timer driver
Rob Herring (3):
dt/bindings: Add binding for Versatile system registers
clocksource: versatile: Adapt for Versatile AB and PB boards
dts: versatile: Add sysregs node
Thierry Reding (1):
clocksource: sirf: Remove unused variable
Documentation/devicetree/bindings/arm/versatile-sysreg.txt |
10 ++++++++++
Documentation/devicetree/bindings/timer/digicolor-timer.txt |
18 +++++++++++++++++
Documentation/devicetree/bindings/timer/rockchip,rk3288-timer.txt |
18 +++++++++++++++++
MAINTAINERS | 2 +-
arch/arm/boot/dts/versatile-ab.dts |
5 +++++
arch/arm/mach-rockchip/Kconfig | 1 +
drivers/clocksource/Kconfig |
17 ++++++++++++++++
drivers/clocksource/Makefile |
5 ++++-
drivers/clocksource/asm9260_timer.c |
220
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
drivers/clocksource/rockchip_timer.c |
180
+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
drivers/clocksource/{timer-marco.c => timer-atlas7.c} |
15 +++++++-------
drivers/clocksource/timer-digicolor.c |
199
+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
drivers/clocksource/versatile.c |
4 +++-
13 files changed, 683 insertions(+), 11 deletions(-)
create mode 100644
Documentation/devicetree/bindings/arm/versatile-sysreg.txt
create mode 100644
Documentation/devicetree/bindings/timer/digicolor-timer.txt
create mode 100644
Documentation/devicetree/bindings/timer/rockchip,rk3288-timer.txt
create mode 100644 drivers/clocksource/asm9260_timer.c
create mode 100644 drivers/clocksource/rockchip_timer.c
rename drivers/clocksource/{timer-marco.c => timer-atlas7.c} (95%)
create mode 100644 drivers/clocksource/timer-digicolor.c--
<http://www.linaro.org/> Linaro.org ? Open source software for ARM SoCs
Follow Linaro: <http://www.facebook.com/pages/Linaro> Facebook |
<http://twitter.com/#!/linaroorg> Twitter |
<http://www.linaro.org/linaro-blog/> Blog
WARNING: multiple messages have this Message-ID (diff)
From: Daniel Lezcano <daniel.lezcano@linaro.org>
To: Thomas Gleixner <tglx@linutronix.de>
Cc: Linux Kernel Mailing List <linux-kernel@vger.kernel.org>,
"linux-arm-kernel@lists.infradead.org"
<linux-arm-kernel@lists.infradead.org>,
Barry Song <Barry.Song@csr.com>, Baruch Siach <baruch@tkos.co.il>,
Oleksij Rempel <linux@rempel-privat.de>,
Rob Herring <rob.herring@linaro.org>,
Thierry Reding <thierry.reding@gmail.com>
Subject: [GIT PULL]: clockevents: new material for 3.20
Date: Thu, 29 Jan 2015 14:06:12 +0100 [thread overview]
Message-ID: <54CA3044.6070501@linaro.org> (raw)
Hi Thomas,
this pull request contains the following changes:
* Barry Song renamed the marco timer to atlas7
* Baruch Siach provided a new driver for the Conexant Digicolor SoCs
* Daniel Lezcano added a new driver for the rockchip rk3288 board
* Oleksij Rempel added a new driver asm9260 for mips
* Rob Herring added the DT definition for the versatile AB/PB boards
as these ones are compatible with the Versatile clocksource
* Thierry Reding removed an used variable for the sirf driver
The following changes since commit 9bc7491906b4113b4c5ae442157c7dfc4e10cd14:
hrtimer: Prevent stale expiry time in hrtimer_interrupt() (2015-01-23
12:13:20 +0100)
are available in the git repository at:
http://git.linaro.org/people/daniel.lezcano/linux.git clockevents/3.20
for you to fetch changes up to 35a8578e8b83eb13f8d57ab40b98bcfd5199d3d4:
dts: versatile: Add sysregs node (2015-01-29 14:02:16 +0100)
----------------------------------------------------------------
Barry Song (1):
clocksource: marco: Rename marco to atlas7
Baruch Siach (2):
clocksource: devicetree: Document Conexant Digicolor timer binding
clocksource: Driver for Conexant Digicolor SoC timer
Daniel Lezcano (1):
clockevents: rockchip: Add rockchip timer for rk3288
Oleksij Rempel (1):
ARM: clocksource: Add asm9260_timer driver
Rob Herring (3):
dt/bindings: Add binding for Versatile system registers
clocksource: versatile: Adapt for Versatile AB and PB boards
dts: versatile: Add sysregs node
Thierry Reding (1):
clocksource: sirf: Remove unused variable
Documentation/devicetree/bindings/arm/versatile-sysreg.txt |
10 ++++++++++
Documentation/devicetree/bindings/timer/digicolor-timer.txt |
18 +++++++++++++++++
Documentation/devicetree/bindings/timer/rockchip,rk3288-timer.txt |
18 +++++++++++++++++
MAINTAINERS | 2 +-
arch/arm/boot/dts/versatile-ab.dts |
5 +++++
arch/arm/mach-rockchip/Kconfig | 1 +
drivers/clocksource/Kconfig |
17 ++++++++++++++++
drivers/clocksource/Makefile |
5 ++++-
drivers/clocksource/asm9260_timer.c |
220
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
drivers/clocksource/rockchip_timer.c |
180
+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
drivers/clocksource/{timer-marco.c => timer-atlas7.c} |
15 +++++++-------
drivers/clocksource/timer-digicolor.c |
199
+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
drivers/clocksource/versatile.c |
4 +++-
13 files changed, 683 insertions(+), 11 deletions(-)
create mode 100644
Documentation/devicetree/bindings/arm/versatile-sysreg.txt
create mode 100644
Documentation/devicetree/bindings/timer/digicolor-timer.txt
create mode 100644
Documentation/devicetree/bindings/timer/rockchip,rk3288-timer.txt
create mode 100644 drivers/clocksource/asm9260_timer.c
create mode 100644 drivers/clocksource/rockchip_timer.c
rename drivers/clocksource/{timer-marco.c => timer-atlas7.c} (95%)
create mode 100644 drivers/clocksource/timer-digicolor.c--
<http://www.linaro.org/> Linaro.org │ Open source software for ARM SoCs
Follow Linaro: <http://www.facebook.com/pages/Linaro> Facebook |
<http://twitter.com/#!/linaroorg> Twitter |
<http://www.linaro.org/linaro-blog/> Blog
next reply other threads:[~2015-01-29 13:06 UTC|newest]
Thread overview: 30+ messages / expand[flat|nested] mbox.gz Atom feed top
2015-01-29 13:06 Daniel Lezcano [this message]
2015-01-29 13:06 ` [GIT PULL]: clockevents: new material for 3.20 Daniel Lezcano
2015-01-29 13:08 ` [PATCH 1/9] clocksource: sirf: Remove unused variable Daniel Lezcano
2015-01-29 13:08 ` Daniel Lezcano
2015-01-29 13:08 ` [PATCH 2/9] clocksource: marco: Rename marco to atlas7 Daniel Lezcano
2015-01-29 13:08 ` Daniel Lezcano
2015-01-29 13:08 ` [PATCH 3/9] ARM: clocksource: Add asm9260_timer driver Daniel Lezcano
2015-01-29 13:08 ` Daniel Lezcano
2015-01-29 13:08 ` [PATCH 4/9] clockevents: rockchip: Add rockchip timer for rk3288 Daniel Lezcano
2015-01-29 13:08 ` Daniel Lezcano
2015-01-29 13:08 ` [PATCH 5/9] clocksource: devicetree: Document Conexant Digicolor timer binding Daniel Lezcano
2015-01-29 13:08 ` Daniel Lezcano
2015-01-29 13:08 ` [PATCH 6/9] clocksource: Driver for Conexant Digicolor SoC timer Daniel Lezcano
2015-01-29 13:08 ` Daniel Lezcano
2015-01-29 13:37 ` Paul Bolle
2015-01-29 13:37 ` Paul Bolle
2015-01-29 13:52 ` Daniel Lezcano
2015-01-29 13:52 ` Daniel Lezcano
2015-01-29 14:26 ` Baruch Siach
2015-01-29 14:26 ` Baruch Siach
2015-01-29 14:33 ` Paul Bolle
2015-01-29 14:33 ` Paul Bolle
2015-01-29 13:08 ` [PATCH 7/9] dt/bindings: Add binding for Versatile system registers Daniel Lezcano
2015-01-29 13:08 ` Daniel Lezcano
2015-01-29 13:08 ` [PATCH 8/9] clocksource: versatile: Adapt for Versatile AB and PB boards Daniel Lezcano
2015-01-29 13:08 ` Daniel Lezcano
2015-01-29 13:08 ` [PATCH 9/9] dts: versatile: Add sysregs node Daniel Lezcano
2015-01-29 13:08 ` Daniel Lezcano
2015-02-02 21:38 ` [GIT PULL]: clockevents: new material for 3.20 Daniel Lezcano
2015-02-02 21:38 ` Daniel Lezcano
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=54CA3044.6070501@linaro.org \
--to=daniel.lezcano@linaro.org \
--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 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.