From: Pankaj Dubey <pankaj.dubey@samsung.com>
To: Lee Jones <lee.jones@linaro.org>
Cc: linux-samsung-soc@vger.kernel.org, linux-kernel@vger.kernel.org,
linux-arm-kernel@lists.infradead.org, kgene.kim@samsung.com,
linux@arm.linux.org.uk, t.figa@samsung.com, chow.kim@samsung.com,
yg1004.jang@samsung.com, vikas.sajjan@samsung.com,
b.zolnierkie@samsung.com, Sangbeom Kim <sbkim73@samsung.com>,
Samuel Ortiz <sameo@linux.intel.com>
Subject: Re: [RFC PATCH v2 3/3] drivers: mfd: Add support for Exynos PMU driver
Date: Mon, 28 Apr 2014 21:08:21 +0900 [thread overview]
Message-ID: <535E44B5.7030202@samsung.com> (raw)
In-Reply-To: <20140428112153.GT21279@lee--X1>
On 04/28/2014 08:21 PM, Lee Jones wrote:
> On Fri, 25 Apr 2014, Pankaj Dubey wrote:
>
>> This patch moves Exynos PMU driver implementation from
>> "arm/mach-exynos" to "drivers/mfd".
>> This driver is mainly used for setting misc bits of register from PMU IP
>> of Exynos SoC which will be required to configure before Suspend/Resume.
>> Currently all these settings are done in "arch/arm/mach-exynos/pmu.c" but
>> moving ahead for ARM64 based SoC support, there is a need of DT based
>> implementation of PMU driver.
>> This driver uses already existing DT binding information.
>>
>> CC: Sangbeom Kim <sbkim73@samsung.com>
>> CC: Samuel Ortiz <sameo@linux.intel.com>
>> CC: Lee Jones <lee.jones@linaro.org>
>> Signed-off-by: Pankaj Dubey <pankaj.dubey@samsung.com>
>> ---
>> arch/arm/mach-exynos/Kconfig | 2 +
>> arch/arm/mach-exynos/Makefile | 2 -
>> arch/arm/mach-exynos/pmu.c | 521 -----------------------------------------
>> drivers/mfd/Kconfig | 9 +
>> drivers/mfd/Makefile | 1 +
>> drivers/mfd/exynos-pmu.c | 521 +++++++++++++++++++++++++++++++++++++++++
>> 6 files changed, 533 insertions(+), 523 deletions(-)
>> delete mode 100644 arch/arm/mach-exynos/pmu.c
>> create mode 100644 drivers/mfd/exynos-pmu.c
> Same with this patch, `git format-patch -M`.
OK, I will resubmit this series.
--
Best Regards,
Pankaj Dubey
WARNING: multiple messages have this Message-ID (diff)
From: pankaj.dubey@samsung.com (Pankaj Dubey)
To: linux-arm-kernel@lists.infradead.org
Subject: [RFC PATCH v2 3/3] drivers: mfd: Add support for Exynos PMU driver
Date: Mon, 28 Apr 2014 21:08:21 +0900 [thread overview]
Message-ID: <535E44B5.7030202@samsung.com> (raw)
In-Reply-To: <20140428112153.GT21279@lee--X1>
On 04/28/2014 08:21 PM, Lee Jones wrote:
> On Fri, 25 Apr 2014, Pankaj Dubey wrote:
>
>> This patch moves Exynos PMU driver implementation from
>> "arm/mach-exynos" to "drivers/mfd".
>> This driver is mainly used for setting misc bits of register from PMU IP
>> of Exynos SoC which will be required to configure before Suspend/Resume.
>> Currently all these settings are done in "arch/arm/mach-exynos/pmu.c" but
>> moving ahead for ARM64 based SoC support, there is a need of DT based
>> implementation of PMU driver.
>> This driver uses already existing DT binding information.
>>
>> CC: Sangbeom Kim <sbkim73@samsung.com>
>> CC: Samuel Ortiz <sameo@linux.intel.com>
>> CC: Lee Jones <lee.jones@linaro.org>
>> Signed-off-by: Pankaj Dubey <pankaj.dubey@samsung.com>
>> ---
>> arch/arm/mach-exynos/Kconfig | 2 +
>> arch/arm/mach-exynos/Makefile | 2 -
>> arch/arm/mach-exynos/pmu.c | 521 -----------------------------------------
>> drivers/mfd/Kconfig | 9 +
>> drivers/mfd/Makefile | 1 +
>> drivers/mfd/exynos-pmu.c | 521 +++++++++++++++++++++++++++++++++++++++++
>> 6 files changed, 533 insertions(+), 523 deletions(-)
>> delete mode 100644 arch/arm/mach-exynos/pmu.c
>> create mode 100644 drivers/mfd/exynos-pmu.c
> Same with this patch, `git format-patch -M`.
OK, I will resubmit this series.
--
Best Regards,
Pankaj Dubey
next prev parent reply other threads:[~2014-04-28 11:50 UTC|newest]
Thread overview: 28+ messages / expand[flat|nested] mbox.gz Atom feed top
2014-04-02 8:24 [RFC PATCH 0/2] Add support for Exynos PMU driver Pankaj Dubey
2014-04-02 8:24 ` Pankaj Dubey
2014-04-02 8:24 ` [RFC PATCH 1/2] drivers: mfd: Add support of exynos-pmu driver Pankaj Dubey
2014-04-02 8:24 ` Pankaj Dubey
2014-04-03 11:56 ` Bartlomiej Zolnierkiewicz
2014-04-03 11:56 ` Bartlomiej Zolnierkiewicz
2014-04-11 6:00 ` Pankaj Dubey
2014-04-11 6:00 ` Pankaj Dubey
2014-04-22 13:19 ` Vikas Sajjan
2014-04-22 13:19 ` Vikas Sajjan
2014-04-24 2:42 ` Pankaj Dubey
2014-04-24 2:42 ` Pankaj Dubey
2014-04-02 8:24 ` [RFC PATCH 2/2] ARM: EXYNOS: remove arch specific PMU implementation Pankaj Dubey
2014-04-02 8:24 ` Pankaj Dubey
2014-04-25 13:05 ` [RFC PATCH v2 0/3] Add support for Exynos PMU driver Pankaj Dubey
2014-04-25 13:05 ` Pankaj Dubey
2014-04-25 13:05 ` [RFC PATCH v2 1/3] ARM: EXYNOS: Move PMU specific definitions from common.h Pankaj Dubey
2014-04-25 13:05 ` Pankaj Dubey
2014-04-25 13:05 ` [RFC PATCH v2 2/3] ARM: EXYNOS: Move pmu specific header files under "linux/mfd/samsung" Pankaj Dubey
2014-04-25 13:05 ` Pankaj Dubey
2014-04-28 11:21 ` Lee Jones
2014-04-28 11:21 ` Lee Jones
2014-04-25 13:05 ` [RFC PATCH v2 3/3] drivers: mfd: Add support for Exynos PMU driver Pankaj Dubey
2014-04-25 13:05 ` Pankaj Dubey
2014-04-28 11:21 ` Lee Jones
2014-04-28 11:21 ` Lee Jones
2014-04-28 12:08 ` Pankaj Dubey [this message]
2014-04-28 12:08 ` Pankaj Dubey
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=535E44B5.7030202@samsung.com \
--to=pankaj.dubey@samsung.com \
--cc=b.zolnierkie@samsung.com \
--cc=chow.kim@samsung.com \
--cc=kgene.kim@samsung.com \
--cc=lee.jones@linaro.org \
--cc=linux-arm-kernel@lists.infradead.org \
--cc=linux-kernel@vger.kernel.org \
--cc=linux-samsung-soc@vger.kernel.org \
--cc=linux@arm.linux.org.uk \
--cc=sameo@linux.intel.com \
--cc=sbkim73@samsung.com \
--cc=t.figa@samsung.com \
--cc=vikas.sajjan@samsung.com \
--cc=yg1004.jang@samsung.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.