All of lore.kernel.org
 help / color / mirror / Atom feed
From: Lee Jones <lee.jones-QSEj5FYQhm4dnm+yROfE0A@public.gmane.org>
To: Abhilash Kesavan <a.kesavan-Sze3O3UU22JBDgjK7y7TUQ@public.gmane.org>
Cc: linux-samsung-soc-u79uwXL29TY76Z2rM5mHXA@public.gmane.org,
	linux-arm-kernel-IAPFreCvJWM7uuMidbF8XUB+6BGkLq7r@public.gmane.org,
	devicetree-u79uwXL29TY76Z2rM5mHXA@public.gmane.org,
	catalin.marinas-5wv7dgnIgG8@public.gmane.org,
	will.deacon-5wv7dgnIgG8@public.gmane.org,
	t.figa-Sze3O3UU22JBDgjK7y7TUQ@public.gmane.org,
	kesavan.abhilash-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org,
	Eunseok Choi <es10.choi-Sze3O3UU22JBDgjK7y7TUQ@public.gmane.org>
Subject: Re: [PATCH] drivers: mfd: exynos-pmu: Add support for Exynos7
Date: Mon, 1 Sep 2014 09:22:43 +0100	[thread overview]
Message-ID: <20140901082243.GC6226@lee--X1> (raw)
In-Reply-To: <1409544769-2695-1-git-send-email-a.kesavan-Sze3O3UU22JBDgjK7y7TUQ@public.gmane.org>

On Mon, 01 Sep 2014, Abhilash Kesavan wrote:

> Add intial PMU settings for exynos7. This is required for
> future suspend-to-ram and cpuidle support.
> 
> Signed-off-by: Eunseok Choi <es10.choi-Sze3O3UU22JBDgjK7y7TUQ@public.gmane.org>
> Signed-off-by: Abhilash Kesavan <a.kesavan-Sze3O3UU22JBDgjK7y7TUQ@public.gmane.org>
> ---
> This patch has been tested on an Exynos7 espresso board and is based
> on Kgene's tree (for-next branch).
> 
> Following are the dependencies:
> 1) Support 64bit Cortex A57 based Exynos7 SoC
> http://www.spinics.net/lists/arm-kernel/msg357380.html
> 2) mfd: syscon: Decouple syscon interface from syscon devices
> http://www.spinics.net/lists/linux-samsung-soc/msg35906.html
> 3) ARM: EXYNOS: Add platform driver support for Exynos PMU
> http://lists.infradead.org/pipermail/linux-arm-kernel/2014-July/275675.html
> 4) ARM: EXYNOS: Move PMU specific definitions from common.h
> http://lists.infradead.org/pipermail/linux-arm-kernel/2014-July/270655.html
> 5) ARM: EXYNOS: Move pmu specific header files under "linux/mfd/samsung"
> https://lkml.org/lkml/2014/4/28/217
> 6) drivers: mfd: Add support for Exynos PMU driver
> https://lkml.org/lkml/2014/4/28/332
> 
> NOTE: The above dependencies are not final yet, especially the
> movement of exynos pmu driver to the mfd directory. I will re-work
> this patch when the final location for exynos PMU driver is decided.

Let me know when this patch is ready to go in and I'll review.

>  .../devicetree/bindings/arm/samsung/pmu.txt        |    1 +
>  arch/arm64/boot/dts/exynos7.dtsi                   |    5 +
>  drivers/mfd/exynos-pmu.c                           |  285 ++++++++++++++++++++
>  include/linux/mfd/samsung/exynos-regs-pmu.h        |  212 +++++++++++++++
>  4 files changed, 503 insertions(+)

This all needs to be broken up into seperate patches.

Also, see: Documentation/devicetree/bindings/submitting-patches.txt.

-- 
Lee Jones
Linaro STMicroelectronics Landing Team Lead
Linaro.org │ Open source software for ARM SoCs
Follow Linaro: Facebook | Twitter | Blog
--
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: lee.jones@linaro.org (Lee Jones)
To: linux-arm-kernel@lists.infradead.org
Subject: [PATCH] drivers: mfd: exynos-pmu: Add support for Exynos7
Date: Mon, 1 Sep 2014 09:22:43 +0100	[thread overview]
Message-ID: <20140901082243.GC6226@lee--X1> (raw)
In-Reply-To: <1409544769-2695-1-git-send-email-a.kesavan@samsung.com>

On Mon, 01 Sep 2014, Abhilash Kesavan wrote:

> Add intial PMU settings for exynos7. This is required for
> future suspend-to-ram and cpuidle support.
> 
> Signed-off-by: Eunseok Choi <es10.choi@samsung.com>
> Signed-off-by: Abhilash Kesavan <a.kesavan@samsung.com>
> ---
> This patch has been tested on an Exynos7 espresso board and is based
> on Kgene's tree (for-next branch).
> 
> Following are the dependencies:
> 1) Support 64bit Cortex A57 based Exynos7 SoC
> http://www.spinics.net/lists/arm-kernel/msg357380.html
> 2) mfd: syscon: Decouple syscon interface from syscon devices
> http://www.spinics.net/lists/linux-samsung-soc/msg35906.html
> 3) ARM: EXYNOS: Add platform driver support for Exynos PMU
> http://lists.infradead.org/pipermail/linux-arm-kernel/2014-July/275675.html
> 4) ARM: EXYNOS: Move PMU specific definitions from common.h
> http://lists.infradead.org/pipermail/linux-arm-kernel/2014-July/270655.html
> 5) ARM: EXYNOS: Move pmu specific header files under "linux/mfd/samsung"
> https://lkml.org/lkml/2014/4/28/217
> 6) drivers: mfd: Add support for Exynos PMU driver
> https://lkml.org/lkml/2014/4/28/332
> 
> NOTE: The above dependencies are not final yet, especially the
> movement of exynos pmu driver to the mfd directory. I will re-work
> this patch when the final location for exynos PMU driver is decided.

Let me know when this patch is ready to go in and I'll review.

>  .../devicetree/bindings/arm/samsung/pmu.txt        |    1 +
>  arch/arm64/boot/dts/exynos7.dtsi                   |    5 +
>  drivers/mfd/exynos-pmu.c                           |  285 ++++++++++++++++++++
>  include/linux/mfd/samsung/exynos-regs-pmu.h        |  212 +++++++++++++++
>  4 files changed, 503 insertions(+)

This all needs to be broken up into seperate patches.

Also, see: Documentation/devicetree/bindings/submitting-patches.txt.

-- 
Lee Jones
Linaro STMicroelectronics Landing Team Lead
Linaro.org ? Open source software for ARM SoCs
Follow Linaro: Facebook | Twitter | Blog

  parent reply	other threads:[~2014-09-01  8:22 UTC|newest]

Thread overview: 4+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2014-09-01  4:12 [PATCH] drivers: mfd: exynos-pmu: Add support for Exynos7 Abhilash Kesavan
2014-09-01  4:12 ` Abhilash Kesavan
     [not found] ` <1409544769-2695-1-git-send-email-a.kesavan-Sze3O3UU22JBDgjK7y7TUQ@public.gmane.org>
2014-09-01  8:22   ` Lee Jones [this message]
2014-09-01  8:22     ` Lee Jones

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=20140901082243.GC6226@lee--X1 \
    --to=lee.jones-qsej5fyqhm4dnm+yrofe0a@public.gmane.org \
    --cc=a.kesavan-Sze3O3UU22JBDgjK7y7TUQ@public.gmane.org \
    --cc=catalin.marinas-5wv7dgnIgG8@public.gmane.org \
    --cc=devicetree-u79uwXL29TY76Z2rM5mHXA@public.gmane.org \
    --cc=es10.choi-Sze3O3UU22JBDgjK7y7TUQ@public.gmane.org \
    --cc=kesavan.abhilash-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org \
    --cc=linux-arm-kernel-IAPFreCvJWM7uuMidbF8XUB+6BGkLq7r@public.gmane.org \
    --cc=linux-samsung-soc-u79uwXL29TY76Z2rM5mHXA@public.gmane.org \
    --cc=t.figa-Sze3O3UU22JBDgjK7y7TUQ@public.gmane.org \
    --cc=will.deacon-5wv7dgnIgG8@public.gmane.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.