From: heiko@sntech.de (Heiko Stübner)
To: linux-arm-kernel@lists.infradead.org
Subject: [PATCH 0/2] clocksource: add rockchip rk3288 specific armv7-timer
Date: Fri, 20 Jun 2014 12:43:31 +0200 [thread overview]
Message-ID: <70167479.zcs3JF0luJ@diego> (raw)
The architected timer on Rockchip's RK3288 SoCs needs a bit of special handling
to start.
This seems to be similar to a recent discussion about the Exynos arch-timer
that also seems to need similar special handling (and mct timer running).
And, the arch-timer on recent Mediatek SoCs also uses this pattern of a
supplying timer below the arch-timer.
Therefore follow a suggestion from Arnd Bergmann and implement a separate
clocksource for it that does the setup and then initializes the arch-timer.
This series uses "of: Provide function to request and map memory" from
Matthias Brugger.
Heiko Stuebner (2):
clocksource: arm_arch_timer: remove static from arch_timer_init
clocksource: add rockchip-specific armv7-timer setup
.../bindings/arm/rockchip/armv7-timer.txt | 22 +++++++++
drivers/clocksource/Makefile | 1 +
drivers/clocksource/arm_arch_timer.c | 2 +-
drivers/clocksource/arm_arch_timer.h | 7 +++
drivers/clocksource/rockchip_timer.c | 57 ++++++++++++++++++++++
5 files changed, 88 insertions(+), 1 deletion(-)
create mode 100644 Documentation/devicetree/bindings/arm/rockchip/armv7-timer.txt
create mode 100644 drivers/clocksource/arm_arch_timer.h
create mode 100644 drivers/clocksource/rockchip_timer.c
--
1.9.0
WARNING: multiple messages have this Message-ID (diff)
From: "Heiko Stübner" <heiko-4mtYJXux2i+zQB+pC5nmwQ@public.gmane.org>
To: Daniel Lezcano
<daniel.lezcano-QSEj5FYQhm4dnm+yROfE0A@public.gmane.org>,
Thomas Gleixner <tglx-hfZtesqFncYOwBW4kG4KsQ@public.gmane.org>,
Rob Herring <robh+dt-DgEjT+Ai2ygdnm+yROfE0A@public.gmane.org>,
Pawel Moll <pawel.moll-5wv7dgnIgG8@public.gmane.org>,
Mark Rutland <mark.rutland-5wv7dgnIgG8@public.gmane.org>,
Ian Campbell
<ijc+devicetree-KcIKpvwj1kUDXYZnReoRVg@public.gmane.org>,
Kumar Gala <galak-sgV2jX0FEOL9JmXXK+q4OQ@public.gmane.org>
Cc: devicetree-u79uwXL29TY76Z2rM5mHXA@public.gmane.org,
linux-kernel-u79uwXL29TY76Z2rM5mHXA@public.gmane.org,
linux-arm-kernel-IAPFreCvJWM7uuMidbF8XUB+6BGkLq7r@public.gmane.org,
Arnd Bergmann <arnd-r2nGTMty4D4@public.gmane.org>,
Matthias Brugger
<matthias.bgg-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org>
Subject: [PATCH 0/2] clocksource: add rockchip rk3288 specific armv7-timer
Date: Fri, 20 Jun 2014 12:43:31 +0200 [thread overview]
Message-ID: <70167479.zcs3JF0luJ@diego> (raw)
The architected timer on Rockchip's RK3288 SoCs needs a bit of special handling
to start.
This seems to be similar to a recent discussion about the Exynos arch-timer
that also seems to need similar special handling (and mct timer running).
And, the arch-timer on recent Mediatek SoCs also uses this pattern of a
supplying timer below the arch-timer.
Therefore follow a suggestion from Arnd Bergmann and implement a separate
clocksource for it that does the setup and then initializes the arch-timer.
This series uses "of: Provide function to request and map memory" from
Matthias Brugger.
Heiko Stuebner (2):
clocksource: arm_arch_timer: remove static from arch_timer_init
clocksource: add rockchip-specific armv7-timer setup
.../bindings/arm/rockchip/armv7-timer.txt | 22 +++++++++
drivers/clocksource/Makefile | 1 +
drivers/clocksource/arm_arch_timer.c | 2 +-
drivers/clocksource/arm_arch_timer.h | 7 +++
drivers/clocksource/rockchip_timer.c | 57 ++++++++++++++++++++++
5 files changed, 88 insertions(+), 1 deletion(-)
create mode 100644 Documentation/devicetree/bindings/arm/rockchip/armv7-timer.txt
create mode 100644 drivers/clocksource/arm_arch_timer.h
create mode 100644 drivers/clocksource/rockchip_timer.c
--
1.9.0
--
To unsubscribe from this list: send the line "unsubscribe devicetree" in
the body of a message to majordomo-u79uwXL29TY76Z2rM5mHXA@public.gmane.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
WARNING: multiple messages have this Message-ID (diff)
From: "Heiko Stübner" <heiko@sntech.de>
To: Daniel Lezcano <daniel.lezcano@linaro.org>,
Thomas Gleixner <tglx@linutronix.de>,
Rob Herring <robh+dt@kernel.org>, Pawel Moll <pawel.moll@arm.com>,
Mark Rutland <mark.rutland@arm.com>,
Ian Campbell <ijc+devicetree@hellion.org.uk>,
Kumar Gala <galak@codeaurora.org>
Cc: devicetree@vger.kernel.org, linux-kernel@vger.kernel.org,
linux-arm-kernel@lists.infradead.org,
Arnd Bergmann <arnd@arndb.de>,
Matthias Brugger <matthias.bgg@gmail.com>
Subject: [PATCH 0/2] clocksource: add rockchip rk3288 specific armv7-timer
Date: Fri, 20 Jun 2014 12:43:31 +0200 [thread overview]
Message-ID: <70167479.zcs3JF0luJ@diego> (raw)
The architected timer on Rockchip's RK3288 SoCs needs a bit of special handling
to start.
This seems to be similar to a recent discussion about the Exynos arch-timer
that also seems to need similar special handling (and mct timer running).
And, the arch-timer on recent Mediatek SoCs also uses this pattern of a
supplying timer below the arch-timer.
Therefore follow a suggestion from Arnd Bergmann and implement a separate
clocksource for it that does the setup and then initializes the arch-timer.
This series uses "of: Provide function to request and map memory" from
Matthias Brugger.
Heiko Stuebner (2):
clocksource: arm_arch_timer: remove static from arch_timer_init
clocksource: add rockchip-specific armv7-timer setup
.../bindings/arm/rockchip/armv7-timer.txt | 22 +++++++++
drivers/clocksource/Makefile | 1 +
drivers/clocksource/arm_arch_timer.c | 2 +-
drivers/clocksource/arm_arch_timer.h | 7 +++
drivers/clocksource/rockchip_timer.c | 57 ++++++++++++++++++++++
5 files changed, 88 insertions(+), 1 deletion(-)
create mode 100644 Documentation/devicetree/bindings/arm/rockchip/armv7-timer.txt
create mode 100644 drivers/clocksource/arm_arch_timer.h
create mode 100644 drivers/clocksource/rockchip_timer.c
--
1.9.0
next reply other threads:[~2014-06-20 10:43 UTC|newest]
Thread overview: 21+ messages / expand[flat|nested] mbox.gz Atom feed top
2014-06-20 10:43 Heiko Stübner [this message]
2014-06-20 10:43 ` [PATCH 0/2] clocksource: add rockchip rk3288 specific armv7-timer Heiko Stübner
2014-06-20 10:43 ` Heiko Stübner
2014-06-20 10:44 ` [PATCH 1/2] clocksource: arm_arch_timer: remove static from arch_timer_init Heiko Stübner
2014-06-20 10:44 ` Heiko Stübner
2014-06-20 10:44 ` Heiko Stübner
2014-06-20 10:52 ` Mark Rutland
2014-06-20 10:52 ` Mark Rutland
2014-06-20 10:44 ` [PATCH 2/2] clocksource: add rockchip-specific armv7-timer setup Heiko Stübner
2014-06-20 10:44 ` Heiko Stübner
2014-06-20 10:51 ` Mark Rutland
2014-06-20 10:51 ` Mark Rutland
2014-06-20 11:27 ` Heiko Stübner
2014-06-20 11:27 ` Heiko Stübner
2014-06-20 11:27 ` Heiko Stübner
2014-06-20 12:14 ` Mark Rutland
2014-06-20 12:14 ` Mark Rutland
2014-06-20 12:14 ` Mark Rutland
2014-06-23 10:54 ` Matthias Brugger
2014-06-23 10:54 ` Matthias Brugger
2014-06-23 10:54 ` Matthias Brugger
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=70167479.zcs3JF0luJ@diego \
--to=heiko@sntech.de \
--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.