From: Kukjin Kim <kgene.kim@samsung.com>
To: Arnd Bergmann <arnd@arndb.de>, 'Olof Johansson' <olof@lixom.net>
Cc: "linux-arm-kernel@lists.infradead.org"
<linux-arm-kernel@lists.infradead.org>,
"linux-samsung-soc@vger.kernel.org"
<linux-samsung-soc@vger.kernel.org>
Subject: [GIT PULL 03/10] mct-exynos for v3.10
Date: Tue, 09 Apr 2013 03:18:22 +0900 [thread overview]
Message-ID: <516309EE.30000@samsung.com> (raw)
The following changes since commit 6dbe51c251a327e012439c4772097a13df43c5b8:
Linux 3.9-rc1 (2013-03-03 15:11:05 -0800)
are available in the git repository at:
git://git.kernel.org/pub/scm/linux/kernel/git/kgene/linux-samsung.git
tags/mct-exynos-for-v3.10
for you to fetch changes up to 354599f460ba79c9fb00f220e42de5a7509ceeb4:
clocksource: mct: Add terminating entry for exynos_mct_ids table
(2013-04-04 15:35:42 +0900)
----------------------------------------------------------------
add support exynos mct device tree and move into drivers/clocksource
----------------------------------------------------------------
Axel Lin (1):
clocksource: mct: Add terminating entry for exynos_mct_ids table
Doug Anderson (1):
clocksource: mct: Add missing semicolons in exynos_mct.c
Thomas Abraham (7):
ARM: EXYNOS: add a register base address variable in mct
controller driver
ARM: EXYNOS: prepare an array of MCT interrupt numbers and use it
ARM: EXYNOS: add device tree support for MCT controller driver
ARM: EXYNOS: allow dt based discovery of mct controller using
clocksource_of_init
ARM: dts: add mct device tree node for all supported Exynos SoC's
ARM: EXYNOS: remove static io-remapping of mct registers for Exynos5
ARM: EXYNOS: move mct driver to drivers/clocksource
.../bindings/timer/samsung,exynos4210-mct.txt | 68 +++++++
arch/arm/Kconfig | 2 +-
arch/arm/boot/dts/exynos4210.dtsi | 22 +++
arch/arm/boot/dts/exynos4212.dtsi | 22 +++
arch/arm/boot/dts/exynos4412.dtsi | 24 +++
arch/arm/boot/dts/exynos5250.dtsi | 22 +++
arch/arm/mach-exynos/Kconfig | 8 +-
arch/arm/mach-exynos/Makefile | 2 -
arch/arm/mach-exynos/common.c | 5 -
arch/arm/mach-exynos/common.h | 2 +-
arch/arm/mach-exynos/include/mach/irqs.h | 6 -
arch/arm/mach-exynos/include/mach/map.h | 1 -
arch/arm/mach-exynos/include/mach/regs-mct.h | 53 ------
arch/arm/mach-exynos/mach-armlex4210.c | 2 +-
arch/arm/mach-exynos/mach-exynos4-dt.c | 3 +-
arch/arm/mach-exynos/mach-exynos5-dt.c | 3 +-
arch/arm/mach-exynos/mach-nuri.c | 2 +-
arch/arm/mach-exynos/mach-origen.c | 2 +-
arch/arm/mach-exynos/mach-smdk4x12.c | 4 +-
arch/arm/mach-exynos/mach-smdkv310.c | 4 +-
drivers/clocksource/Kconfig | 5 +
drivers/clocksource/Makefile | 1 +
.../mct.c => drivers/clocksource/exynos_mct.c | 196
++++++++++++++-------
23 files changed, 310 insertions(+), 149 deletions(-)
create mode 100644
Documentation/devicetree/bindings/timer/samsung,exynos4210-mct.txt
delete mode 100644 arch/arm/mach-exynos/include/mach/regs-mct.h
rename arch/arm/mach-exynos/mct.c => drivers/clocksource/exynos_mct.c
(67%)
--
Thanks.
Best regards,
Kgene.
--
Kukjin Kim <kgene.kim@samsung.com>, Senior Engineer,
SW Solution Development Team, Samsung Electronics Co., Ltd.
WARNING: multiple messages have this Message-ID (diff)
From: kgene.kim@samsung.com (Kukjin Kim)
To: linux-arm-kernel@lists.infradead.org
Subject: [GIT PULL 03/10] mct-exynos for v3.10
Date: Tue, 09 Apr 2013 03:18:22 +0900 [thread overview]
Message-ID: <516309EE.30000@samsung.com> (raw)
The following changes since commit 6dbe51c251a327e012439c4772097a13df43c5b8:
Linux 3.9-rc1 (2013-03-03 15:11:05 -0800)
are available in the git repository at:
git://git.kernel.org/pub/scm/linux/kernel/git/kgene/linux-samsung.git
tags/mct-exynos-for-v3.10
for you to fetch changes up to 354599f460ba79c9fb00f220e42de5a7509ceeb4:
clocksource: mct: Add terminating entry for exynos_mct_ids table
(2013-04-04 15:35:42 +0900)
----------------------------------------------------------------
add support exynos mct device tree and move into drivers/clocksource
----------------------------------------------------------------
Axel Lin (1):
clocksource: mct: Add terminating entry for exynos_mct_ids table
Doug Anderson (1):
clocksource: mct: Add missing semicolons in exynos_mct.c
Thomas Abraham (7):
ARM: EXYNOS: add a register base address variable in mct
controller driver
ARM: EXYNOS: prepare an array of MCT interrupt numbers and use it
ARM: EXYNOS: add device tree support for MCT controller driver
ARM: EXYNOS: allow dt based discovery of mct controller using
clocksource_of_init
ARM: dts: add mct device tree node for all supported Exynos SoC's
ARM: EXYNOS: remove static io-remapping of mct registers for Exynos5
ARM: EXYNOS: move mct driver to drivers/clocksource
.../bindings/timer/samsung,exynos4210-mct.txt | 68 +++++++
arch/arm/Kconfig | 2 +-
arch/arm/boot/dts/exynos4210.dtsi | 22 +++
arch/arm/boot/dts/exynos4212.dtsi | 22 +++
arch/arm/boot/dts/exynos4412.dtsi | 24 +++
arch/arm/boot/dts/exynos5250.dtsi | 22 +++
arch/arm/mach-exynos/Kconfig | 8 +-
arch/arm/mach-exynos/Makefile | 2 -
arch/arm/mach-exynos/common.c | 5 -
arch/arm/mach-exynos/common.h | 2 +-
arch/arm/mach-exynos/include/mach/irqs.h | 6 -
arch/arm/mach-exynos/include/mach/map.h | 1 -
arch/arm/mach-exynos/include/mach/regs-mct.h | 53 ------
arch/arm/mach-exynos/mach-armlex4210.c | 2 +-
arch/arm/mach-exynos/mach-exynos4-dt.c | 3 +-
arch/arm/mach-exynos/mach-exynos5-dt.c | 3 +-
arch/arm/mach-exynos/mach-nuri.c | 2 +-
arch/arm/mach-exynos/mach-origen.c | 2 +-
arch/arm/mach-exynos/mach-smdk4x12.c | 4 +-
arch/arm/mach-exynos/mach-smdkv310.c | 4 +-
drivers/clocksource/Kconfig | 5 +
drivers/clocksource/Makefile | 1 +
.../mct.c => drivers/clocksource/exynos_mct.c | 196
++++++++++++++-------
23 files changed, 310 insertions(+), 149 deletions(-)
create mode 100644
Documentation/devicetree/bindings/timer/samsung,exynos4210-mct.txt
delete mode 100644 arch/arm/mach-exynos/include/mach/regs-mct.h
rename arch/arm/mach-exynos/mct.c => drivers/clocksource/exynos_mct.c
(67%)
--
Thanks.
Best regards,
Kgene.
--
Kukjin Kim <kgene.kim@samsung.com>, Senior Engineer,
SW Solution Development Team, Samsung Electronics Co., Ltd.
next reply other threads:[~2013-04-08 18:18 UTC|newest]
Thread overview: 2+ messages / expand[flat|nested] mbox.gz Atom feed top
2013-04-08 18:18 Kukjin Kim [this message]
2013-04-08 18:18 ` [GIT PULL 03/10] mct-exynos for v3.10 Kukjin Kim
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=516309EE.30000@samsung.com \
--to=kgene.kim@samsung.com \
--cc=arnd@arndb.de \
--cc=linux-arm-kernel@lists.infradead.org \
--cc=linux-samsung-soc@vger.kernel.org \
--cc=olof@lixom.net \
/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.