From: Chanwoo Choi <cw00.choi@samsung.com>
To: Kukjin Kim <kgene.kim@samsung.com>
Cc: "Rafael J. Wysocki" <rjw@sisk.pl>,
Russell King - ARM Linux <linux@arm.linux.org.uk>,
Kyungmin Park <kyungmin.park@samsung.com>,
Sylwester Nawrocki <snjw23@gmail.com>,
linux-pm@lists.linux-foundation.org,
linux-arm-kernel <linux-arm-kernel@lists.infradead.org>,
linux-samsung-soc <linux-samsung-soc@vger.kernel.org>
Subject: [PATCH 0/3 v3] ARM: EXYNOS4: Support generic Power domain framework for EXYNOS4 series
Date: Tue, 25 Oct 2011 19:35:23 +0900 [thread overview]
Message-ID: <4EA690EB.2050700@samsung.com> (raw)
The following patch set use the generic Power domain framework instead of
power domain code depend on samsung SoC.
It is based 'for-next' branch on git://github/com/kgene/linux-samsung.git.
I refer to the following patch to implement what configure the clock-gating
control register for block to turn off/on:
http://git.infradead.org/users/kmpark/linux-2.6-samsung/commit/39a81876d034dcbdc2a4c4c4b847b3b49e38870c
Patch 1/3 has renamed function and support power domain for EXYNOS4210/4212
Patch 2/3 has just one calling to initalize the poewr domain of EXYNOS4210/4212
Patch 3/3 has no changes
Chanwoo Choi (3):
ARM: EXYNOS4: Support for generic I/O power domains on
EXYNOS4210/4212
ARM: EXYNOS4: Use generic power domain on EXYNOS4210/4212
ARM: EXYNOS4: Delete the power domain code depend on samsung SoC
arch/arm/mach-exynos4/Kconfig | 7 +-
arch/arm/mach-exynos4/Makefile | 2 +-
arch/arm/mach-exynos4/dev-pd.c | 139 -------------
arch/arm/mach-exynos4/include/mach/pm-exynos4.h | 50 +++++
arch/arm/mach-exynos4/include/mach/regs-clock.h | 9 +
arch/arm/mach-exynos4/include/mach/regs-pmu.h | 2 +
arch/arm/mach-exynos4/mach-armlex4210.c | 3 +
arch/arm/mach-exynos4/mach-nuri.c | 24 ++--
arch/arm/mach-exynos4/mach-origen.c | 19 +--
arch/arm/mach-exynos4/mach-smdk4x12.c | 3 +
arch/arm/mach-exynos4/mach-smdkv310.c | 17 +-
arch/arm/mach-exynos4/mach-universal_c210.c | 26 ++--
arch/arm/mach-exynos4/pm-exynos4.c | 237 +++++++++++++++++++++++
arch/arm/plat-samsung/Kconfig | 8 -
arch/arm/plat-samsung/Makefile | 4 -
arch/arm/plat-samsung/include/plat/pd.h | 30 ---
arch/arm/plat-samsung/pd.c | 95 ---------
17 files changed, 344 insertions(+), 331 deletions(-)
delete mode 100644 arch/arm/mach-exynos4/dev-pd.c
create mode 100644 arch/arm/mach-exynos4/include/mach/pm-exynos4.h
create mode 100644 arch/arm/mach-exynos4/pm-exynos4.c
delete mode 100644 arch/arm/plat-samsung/include/plat/pd.h
delete mode 100644 arch/arm/plat-samsung/pd.c
WARNING: multiple messages have this Message-ID (diff)
From: cw00.choi@samsung.com (Chanwoo Choi)
To: linux-arm-kernel@lists.infradead.org
Subject: [PATCH 0/3 v3] ARM: EXYNOS4: Support generic Power domain framework for EXYNOS4 series
Date: Tue, 25 Oct 2011 19:35:23 +0900 [thread overview]
Message-ID: <4EA690EB.2050700@samsung.com> (raw)
The following patch set use the generic Power domain framework instead of
power domain code depend on samsung SoC.
It is based 'for-next' branch on git://github/com/kgene/linux-samsung.git.
I refer to the following patch to implement what configure the clock-gating
control register for block to turn off/on:
http://git.infradead.org/users/kmpark/linux-2.6-samsung/commit/39a81876d034dcbdc2a4c4c4b847b3b49e38870c
Patch 1/3 has renamed function and support power domain for EXYNOS4210/4212
Patch 2/3 has just one calling to initalize the poewr domain of EXYNOS4210/4212
Patch 3/3 has no changes
Chanwoo Choi (3):
ARM: EXYNOS4: Support for generic I/O power domains on
EXYNOS4210/4212
ARM: EXYNOS4: Use generic power domain on EXYNOS4210/4212
ARM: EXYNOS4: Delete the power domain code depend on samsung SoC
arch/arm/mach-exynos4/Kconfig | 7 +-
arch/arm/mach-exynos4/Makefile | 2 +-
arch/arm/mach-exynos4/dev-pd.c | 139 -------------
arch/arm/mach-exynos4/include/mach/pm-exynos4.h | 50 +++++
arch/arm/mach-exynos4/include/mach/regs-clock.h | 9 +
arch/arm/mach-exynos4/include/mach/regs-pmu.h | 2 +
arch/arm/mach-exynos4/mach-armlex4210.c | 3 +
arch/arm/mach-exynos4/mach-nuri.c | 24 ++--
arch/arm/mach-exynos4/mach-origen.c | 19 +--
arch/arm/mach-exynos4/mach-smdk4x12.c | 3 +
arch/arm/mach-exynos4/mach-smdkv310.c | 17 +-
arch/arm/mach-exynos4/mach-universal_c210.c | 26 ++--
arch/arm/mach-exynos4/pm-exynos4.c | 237 +++++++++++++++++++++++
arch/arm/plat-samsung/Kconfig | 8 -
arch/arm/plat-samsung/Makefile | 4 -
arch/arm/plat-samsung/include/plat/pd.h | 30 ---
arch/arm/plat-samsung/pd.c | 95 ---------
17 files changed, 344 insertions(+), 331 deletions(-)
delete mode 100644 arch/arm/mach-exynos4/dev-pd.c
create mode 100644 arch/arm/mach-exynos4/include/mach/pm-exynos4.h
create mode 100644 arch/arm/mach-exynos4/pm-exynos4.c
delete mode 100644 arch/arm/plat-samsung/include/plat/pd.h
delete mode 100644 arch/arm/plat-samsung/pd.c
next reply other threads:[~2011-10-25 10:36 UTC|newest]
Thread overview: 2+ messages / expand[flat|nested] mbox.gz Atom feed top
2011-10-25 10:35 Chanwoo Choi [this message]
2011-10-25 10:35 ` [PATCH 0/3 v3] ARM: EXYNOS4: Support generic Power domain framework for EXYNOS4 series Chanwoo Choi
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=4EA690EB.2050700@samsung.com \
--to=cw00.choi@samsung.com \
--cc=kgene.kim@samsung.com \
--cc=kyungmin.park@samsung.com \
--cc=linux-arm-kernel@lists.infradead.org \
--cc=linux-pm@lists.linux-foundation.org \
--cc=linux-samsung-soc@vger.kernel.org \
--cc=linux@arm.linux.org.uk \
--cc=rjw@sisk.pl \
--cc=snjw23@gmail.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 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.