From: Sylwester Nawrocki <snjw23@gmail.com>
To: Kukjin Kim <kgene.kim@samsung.com>
Cc: "Rafael J. Wysocki" <rjw@sisk.pl>,
Chanwoo Choi <cw00.choi@samsung.com>,
Russell King - ARM Linux <linux@arm.linux.org.uk>,
Kyungmin Park <kyungmin.park@samsung.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: Re: [PATCH 0/4] ARM: EXYNOS4: Support generic Power domain framework for EXYNOS4210
Date: Sat, 24 Sep 2011 19:27:53 +0200 [thread overview]
Message-ID: <4E7E1319.9030602@gmail.com> (raw)
In-Reply-To: <201108132324.08137.rjw@sisk.pl>
On 08/13/2011 11:24 PM, Rafael J. Wysocki wrote:
> On Thursday, August 11, 2011, Chanwoo Choi wrote:
>> The following patch set use the generic Power domain Framework instead of
>> power domain code depend of Samsung SoC.
>>
>> Chanwoo Choi (4):
>> ARM: EXYNOS4: Support for generic I/O power domains on EXYNOS4210
>> ARM: EXYNOS4: Support for generic Clock manipulation PM callbacks
>> ARM: EXYNOS4: Delete the power-domain code depend on Samsung SoC
>> ARM: EXYNOS4: Add power domain to use generic Power domain Framework
>>
>> arch/arm/mach-exynos4/Kconfig | 10 +-
>> arch/arm/mach-exynos4/Makefile | 4 +-
>> arch/arm/mach-exynos4/dev-pd.c | 139 --------------
>> arch/arm/mach-exynos4/include/mach/pm-exynos4210.h | 52 ++++++
>> arch/arm/mach-exynos4/include/mach/regs-clock.h | 8 +
>> arch/arm/mach-exynos4/mach-nuri.c | 21 ++-
>> arch/arm/mach-exynos4/mach-smdkc210.c | 26 ++-
>> arch/arm/mach-exynos4/mach-smdkv310.c | 23 ++-
>> arch/arm/mach-exynos4/mach-universal_c210.c | 21 ++-
>> arch/arm/mach-exynos4/pm-exynos4210.c | 189 ++++++++++++++++++++
>> arch/arm/mach-exynos4/pm-runtime.c | 56 ++++++
>> 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 ----------
>> 15 files changed, 377 insertions(+), 309 deletions(-)
>> delete mode 100644 arch/arm/mach-exynos4/dev-pd.c
>> create mode 100644 arch/arm/mach-exynos4/include/mach/pm-exynos4210.h
>> create mode 100644 arch/arm/mach-exynos4/pm-exynos4210.c
>> create mode 100644 arch/arm/mach-exynos4/pm-runtime.c
>> delete mode 100644 arch/arm/plat-samsung/include/plat/pd.h
>> delete mode 100644 arch/arm/plat-samsung/pd.c
>
> The patchset looks good to me, but please note that some code it
> is based on will most likely change in 3.2 due to this patchset:
>
> https://lkml.org/lkml/2011/8/8/420
Are we going to have this patch set in 3.2 ? Does it need more work
or is it already merged in someone's -next repository ?
--
Thanks,
Sylwester
WARNING: multiple messages have this Message-ID (diff)
From: snjw23@gmail.com (Sylwester Nawrocki)
To: linux-arm-kernel@lists.infradead.org
Subject: [PATCH 0/4] ARM: EXYNOS4: Support generic Power domain framework for EXYNOS4210
Date: Sat, 24 Sep 2011 19:27:53 +0200 [thread overview]
Message-ID: <4E7E1319.9030602@gmail.com> (raw)
In-Reply-To: <201108132324.08137.rjw@sisk.pl>
On 08/13/2011 11:24 PM, Rafael J. Wysocki wrote:
> On Thursday, August 11, 2011, Chanwoo Choi wrote:
>> The following patch set use the generic Power domain Framework instead of
>> power domain code depend of Samsung SoC.
>>
>> Chanwoo Choi (4):
>> ARM: EXYNOS4: Support for generic I/O power domains on EXYNOS4210
>> ARM: EXYNOS4: Support for generic Clock manipulation PM callbacks
>> ARM: EXYNOS4: Delete the power-domain code depend on Samsung SoC
>> ARM: EXYNOS4: Add power domain to use generic Power domain Framework
>>
>> arch/arm/mach-exynos4/Kconfig | 10 +-
>> arch/arm/mach-exynos4/Makefile | 4 +-
>> arch/arm/mach-exynos4/dev-pd.c | 139 --------------
>> arch/arm/mach-exynos4/include/mach/pm-exynos4210.h | 52 ++++++
>> arch/arm/mach-exynos4/include/mach/regs-clock.h | 8 +
>> arch/arm/mach-exynos4/mach-nuri.c | 21 ++-
>> arch/arm/mach-exynos4/mach-smdkc210.c | 26 ++-
>> arch/arm/mach-exynos4/mach-smdkv310.c | 23 ++-
>> arch/arm/mach-exynos4/mach-universal_c210.c | 21 ++-
>> arch/arm/mach-exynos4/pm-exynos4210.c | 189 ++++++++++++++++++++
>> arch/arm/mach-exynos4/pm-runtime.c | 56 ++++++
>> 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 ----------
>> 15 files changed, 377 insertions(+), 309 deletions(-)
>> delete mode 100644 arch/arm/mach-exynos4/dev-pd.c
>> create mode 100644 arch/arm/mach-exynos4/include/mach/pm-exynos4210.h
>> create mode 100644 arch/arm/mach-exynos4/pm-exynos4210.c
>> create mode 100644 arch/arm/mach-exynos4/pm-runtime.c
>> delete mode 100644 arch/arm/plat-samsung/include/plat/pd.h
>> delete mode 100644 arch/arm/plat-samsung/pd.c
>
> The patchset looks good to me, but please note that some code it
> is based on will most likely change in 3.2 due to this patchset:
>
> https://lkml.org/lkml/2011/8/8/420
Are we going to have this patch set in 3.2 ? Does it need more work
or is it already merged in someone's -next repository ?
--
Thanks,
Sylwester
next prev parent reply other threads:[~2011-09-24 17:27 UTC|newest]
Thread overview: 36+ messages / expand[flat|nested] mbox.gz Atom feed top
2011-08-11 4:55 [PATCH 0/4] ARM: EXYNOS4: Support generic Power domain framework for EXYNOS4210 Chanwoo Choi
2011-08-11 4:55 ` Chanwoo Choi
2011-08-13 21:24 ` Rafael J. Wysocki
2011-08-13 21:24 ` Rafael J. Wysocki
2011-08-13 21:36 ` Russell King - ARM Linux
2011-08-13 21:36 ` Russell King - ARM Linux
2011-08-13 23:39 ` Rafael J. Wysocki
2011-08-13 23:39 ` Rafael J. Wysocki
2011-10-02 7:07 ` Kukjin Kim
2011-10-02 7:07 ` Kukjin Kim
2011-10-02 11:47 ` Rafael J. Wysocki
2011-10-02 11:47 ` Rafael J. Wysocki
2011-10-02 11:48 ` Russell King - ARM Linux
2011-10-02 11:48 ` Russell King - ARM Linux
2011-10-02 13:08 ` Rafael J. Wysocki
2011-10-02 13:08 ` Rafael J. Wysocki
2011-10-02 13:13 ` Russell King - ARM Linux
2011-10-02 13:13 ` Russell King - ARM Linux
2011-10-02 18:00 ` Rafael J. Wysocki
2011-10-02 18:00 ` Rafael J. Wysocki
2011-10-03 3:27 ` Kukjin Kim
2011-10-03 3:27 ` Kukjin Kim
2011-10-02 14:09 ` Sylwester Nawrocki
2011-10-02 14:09 ` Sylwester Nawrocki
2011-10-02 17:57 ` Rafael J. Wysocki
2011-10-02 17:57 ` Rafael J. Wysocki
2011-08-13 23:39 ` Rafael J. Wysocki
2011-08-13 21:36 ` Russell King - ARM Linux
2011-09-24 17:27 ` Sylwester Nawrocki [this message]
2011-09-24 17:27 ` Sylwester Nawrocki
2011-08-13 21:24 ` Rafael J. Wysocki
2011-08-19 14:15 ` Kukjin Kim
2011-08-19 14:15 ` Kukjin Kim
2011-08-19 14:15 ` Kukjin Kim
-- strict thread matches above, loose matches on Subject: below --
2011-08-11 4:55 Chanwoo Choi
2011-10-20 18:30 ` Sylwester Nawrocki
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=4E7E1319.9030602@gmail.com \
--to=snjw23@gmail.com \
--cc=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 \
/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.