From: Kukjin Kim <kgene@kernel.org>
To: 'Vikas Sajjan' <vikas.sajjan@samsung.com>
Cc: 'Tomasz Figa' <tomasz.figa@gmail.com>,
'sunil joshi' <joshi@samsung.com>,
'Vikas Sajjan' <sajjan.linux@gmail.com>,
'Doug Anderson' <dianders@chromium.org>,
'Olof Johansson' <olof@lixom.net>,
linux-arm-kernel@lists.infradead.org,
'linux-samsung-soc' <linux-samsung-soc@vger.kernel.org>
Subject: RE: [PATCH v9 0/2] Adds PMU and S2R support for exynos5420
Date: Wed, 08 Oct 2014 17:37:48 +0900 [thread overview]
Message-ID: <016401cfe2d3$23f3f0c0$6bdbd240$@kernel.org> (raw)
In-Reply-To: <CAGm_ybjP1WQfbyWR5GwQ6QnUjsy4qB_678+L=jgmMzz-rWkb0w@mail.gmail.com>
Vikas Sajjan wrote:
>
> Hi Kukjin,
>
Hi,
>
> On Tue, Oct 7, 2014 at 3:07 PM, Vikas Sajjan <vikas.sajjan@samsung.com> wrote:
> > Rebased on
> > 1] Kukjin Kim's tree, for-next branch
> > https://git.kernel.org/cgit/linux/kernel/git/kgene/linux-samsung.git/log/?h=for-next
> > 2] Pankaj Dubey's v9 PMU patchset
> > http://www.spinics.net/lists/arm-kernel/msg367939.html
> >
> > changes since v8:
> > - addressed abhilash's comments to remove the restoring of
> > the CPU0 low power state register, since it will taken care in mcpm s2r
> > patch from abhilash.
> >
> > changes since v7:
> > - rebased on pankaj's latest patchset.
> >
> > changes since v6:
> > - rebased on 3.17.rc1.
> >
> > changes since v5:
> > - Refactored pm.c to use DT based lookup as suggested by Tomasz Figa.
> >
> > changes since v4:
> > - Adressed comments from Tomasz figa and rebased on Pankaj Dubey's v5 PMU patchset
> >
> > changes since v3:
> > Addressed the following comments from Pankaj Dubey, Bartlomiej Zolnierkiewicz,
> > Tomasz Figa and Alim Akhtar:
> > - Moved EXYNOS5420_USE_STANDBY_WFI_ALL define to regs-pmu.h.
> > - Merged exynos5420_set_core_flag function into powerdown_conf.
> > - Removed XXTI_DURATION3 register setting.
> > - Updated the commit message and ordered the clock registers in clock
> > patch.
> > - Removed the code for SYS_DISP1_BLK_CFG handling.
> > - Modified SoC checks to A9 specific checks in PM code.
> > - Updated some comments in the code and added macros for register offsets.
> > - Fixed code which was changing pad retention code for older SoCs.
> >
> > changes since v2:
> > - Addressed comments from Tomasz figa
> > - rebased on Pankaj's V3 patchset https://lkml.org/lkml/2014/5/2/612
> > - dropped patch "ARM: dts: Add node for GPIO keys on SMDK5420",
> > will be sent separately.
> >
> > changes since v1:
> > - Addressed comments from Tomasz figa.
> > - restructured/consolidated as per Tomasz figa's PM consolidations for exynos
> >
> > Tested on Kukjin Kim's tree, for-next branch +
> > 1] http://www.spinics.net/lists/linux-samsung-soc/msg33750.html
> > 2] https://www.mail-archive.com/linux-samsung-soc@vger.kernel.org/msg37260.html
> > 3] with the CLK_IGNORE_UNUSED flag for aclk200_disp1 CLK
> >
> > on Exynos5420 based chromebook (peach-pit board)
> >
> > Below procedures were followed to test S2R:
> > Procedure A:
> > 1. make multi_v7_defconfig
> > 2 enable MCPM for 5420
> > 3. enable S3C RTC
> > 5. echo +20 > /sys/class/rtc/rtc0/wakealarm && echo mem > /sys/power/state
> > Procedure B:
> > 1. make exynos_defconfig
> > 4. echo +20 > /sys/class/rtc/rtc0/wakealarm && echo mem > /sys/power/state
> >
> > Abhilash Kesavan (1):
> > ARM: exynos5: Add PMU support for 5420
> >
> > Vikas Sajjan (1):
> > ARM: exynos5: Add Suspend-to-RAM support for 5420
> >
> > arch/arm/mach-exynos/pmu.c | 287 +++++++++++++++++++++++++++++++++++++++
> > arch/arm/mach-exynos/regs-pmu.h | 227 +++++++++++++++++++++++++++++++
> > arch/arm/mach-exynos/suspend.c | 151 +++++++++++++++++++-
> > 3 files changed, 663 insertions(+), 2 deletions(-)
> >
>
> Can you please pick this series.
>
Yes, sure I will queue this series after -rc1 release.
Thanks,
Kukjin
WARNING: multiple messages have this Message-ID (diff)
From: kgene@kernel.org (Kukjin Kim)
To: linux-arm-kernel@lists.infradead.org
Subject: [PATCH v9 0/2] Adds PMU and S2R support for exynos5420
Date: Wed, 08 Oct 2014 17:37:48 +0900 [thread overview]
Message-ID: <016401cfe2d3$23f3f0c0$6bdbd240$@kernel.org> (raw)
In-Reply-To: <CAGm_ybjP1WQfbyWR5GwQ6QnUjsy4qB_678+L=jgmMzz-rWkb0w@mail.gmail.com>
Vikas Sajjan wrote:
>
> Hi Kukjin,
>
Hi,
>
> On Tue, Oct 7, 2014 at 3:07 PM, Vikas Sajjan <vikas.sajjan@samsung.com> wrote:
> > Rebased on
> > 1] Kukjin Kim's tree, for-next branch
> > https://git.kernel.org/cgit/linux/kernel/git/kgene/linux-samsung.git/log/?h=for-next
> > 2] Pankaj Dubey's v9 PMU patchset
> > http://www.spinics.net/lists/arm-kernel/msg367939.html
> >
> > changes since v8:
> > - addressed abhilash's comments to remove the restoring of
> > the CPU0 low power state register, since it will taken care in mcpm s2r
> > patch from abhilash.
> >
> > changes since v7:
> > - rebased on pankaj's latest patchset.
> >
> > changes since v6:
> > - rebased on 3.17.rc1.
> >
> > changes since v5:
> > - Refactored pm.c to use DT based lookup as suggested by Tomasz Figa.
> >
> > changes since v4:
> > - Adressed comments from Tomasz figa and rebased on Pankaj Dubey's v5 PMU patchset
> >
> > changes since v3:
> > Addressed the following comments from Pankaj Dubey, Bartlomiej Zolnierkiewicz,
> > Tomasz Figa and Alim Akhtar:
> > - Moved EXYNOS5420_USE_STANDBY_WFI_ALL define to regs-pmu.h.
> > - Merged exynos5420_set_core_flag function into powerdown_conf.
> > - Removed XXTI_DURATION3 register setting.
> > - Updated the commit message and ordered the clock registers in clock
> > patch.
> > - Removed the code for SYS_DISP1_BLK_CFG handling.
> > - Modified SoC checks to A9 specific checks in PM code.
> > - Updated some comments in the code and added macros for register offsets.
> > - Fixed code which was changing pad retention code for older SoCs.
> >
> > changes since v2:
> > - Addressed comments from Tomasz figa
> > - rebased on Pankaj's V3 patchset https://lkml.org/lkml/2014/5/2/612
> > - dropped patch "ARM: dts: Add node for GPIO keys on SMDK5420",
> > will be sent separately.
> >
> > changes since v1:
> > - Addressed comments from Tomasz figa.
> > - restructured/consolidated as per Tomasz figa's PM consolidations for exynos
> >
> > Tested on Kukjin Kim's tree, for-next branch +
> > 1] http://www.spinics.net/lists/linux-samsung-soc/msg33750.html
> > 2] https://www.mail-archive.com/linux-samsung-soc at vger.kernel.org/msg37260.html
> > 3] with the CLK_IGNORE_UNUSED flag for aclk200_disp1 CLK
> >
> > on Exynos5420 based chromebook (peach-pit board)
> >
> > Below procedures were followed to test S2R:
> > Procedure A:
> > 1. make multi_v7_defconfig
> > 2 enable MCPM for 5420
> > 3. enable S3C RTC
> > 5. echo +20 > /sys/class/rtc/rtc0/wakealarm && echo mem > /sys/power/state
> > Procedure B:
> > 1. make exynos_defconfig
> > 4. echo +20 > /sys/class/rtc/rtc0/wakealarm && echo mem > /sys/power/state
> >
> > Abhilash Kesavan (1):
> > ARM: exynos5: Add PMU support for 5420
> >
> > Vikas Sajjan (1):
> > ARM: exynos5: Add Suspend-to-RAM support for 5420
> >
> > arch/arm/mach-exynos/pmu.c | 287 +++++++++++++++++++++++++++++++++++++++
> > arch/arm/mach-exynos/regs-pmu.h | 227 +++++++++++++++++++++++++++++++
> > arch/arm/mach-exynos/suspend.c | 151 +++++++++++++++++++-
> > 3 files changed, 663 insertions(+), 2 deletions(-)
> >
>
> Can you please pick this series.
>
Yes, sure I will queue this series after -rc1 release.
Thanks,
Kukjin
next prev parent reply other threads:[~2014-10-08 8:37 UTC|newest]
Thread overview: 46+ messages / expand[flat|nested] mbox.gz Atom feed top
2014-10-07 9:22 [PATCH v9 0/2] Adds PMU and S2R support for exynos5420 Vikas Sajjan
2014-10-07 9:22 ` Vikas Sajjan
2014-10-07 9:22 ` [PATCH v9 1/2] ARM: exynos5: Add PMU support for 5420 Vikas Sajjan
2014-10-07 9:22 ` Vikas Sajjan
2014-10-07 12:32 ` Javier Martinez Canillas
2014-10-07 12:32 ` Javier Martinez Canillas
2014-10-08 8:22 ` Vikas Sajjan
2014-10-08 8:22 ` Vikas Sajjan
2014-10-07 9:22 ` [PATCH v9 2/2] ARM: exynos5: Add Suspend-to-RAM " Vikas Sajjan
2014-10-07 9:22 ` Vikas Sajjan
2014-10-07 12:34 ` Javier Martinez Canillas
2014-10-07 12:34 ` Javier Martinez Canillas
2014-10-08 8:23 ` Vikas Sajjan
2014-10-08 8:23 ` Vikas Sajjan
2014-10-08 8:25 ` [PATCH v9 0/2] Adds PMU and S2R support for exynos5420 Vikas Sajjan
2014-10-08 8:25 ` Vikas Sajjan
2014-10-08 8:37 ` Kukjin Kim [this message]
2014-10-08 8:37 ` Kukjin Kim
2014-10-08 9:26 ` Vikas Sajjan
2014-10-08 9:26 ` Vikas Sajjan
2014-10-08 9:57 ` Javier Martinez Canillas
2014-10-08 9:57 ` Javier Martinez Canillas
2014-10-08 11:51 ` Vikas Sajjan
2014-10-08 11:51 ` Vikas Sajjan
2014-10-08 11:55 ` Javier Martinez Canillas
2014-10-08 11:55 ` Javier Martinez Canillas
2014-10-08 23:19 ` Kevin Hilman
2014-10-08 23:19 ` Kevin Hilman
2014-10-09 2:37 ` Abhilash Kesavan
2014-10-09 2:37 ` Abhilash Kesavan
2014-10-09 9:48 ` Javier Martinez Canillas
2014-10-09 9:48 ` Javier Martinez Canillas
2014-10-09 21:50 ` Kevin Hilman
2014-10-09 21:50 ` Kevin Hilman
2014-10-09 22:10 ` Javier Martinez Canillas
2014-10-09 22:10 ` Javier Martinez Canillas
2014-10-09 22:59 ` Kevin Hilman
2014-10-09 22:59 ` Kevin Hilman
2014-10-10 3:25 ` Abhilash Kesavan
2014-10-10 3:25 ` Abhilash Kesavan
2014-10-10 22:02 ` Kevin Hilman
2014-10-10 22:02 ` Kevin Hilman
2014-10-11 4:04 ` Vikas Sajjan
2014-10-11 4:04 ` Vikas Sajjan
2014-10-10 11:09 ` Javier Martinez Canillas
2014-10-10 11:09 ` Javier Martinez Canillas
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='016401cfe2d3$23f3f0c0$6bdbd240$@kernel.org' \
--to=kgene@kernel.org \
--cc=dianders@chromium.org \
--cc=joshi@samsung.com \
--cc=linux-arm-kernel@lists.infradead.org \
--cc=linux-samsung-soc@vger.kernel.org \
--cc=olof@lixom.net \
--cc=sajjan.linux@gmail.com \
--cc=tomasz.figa@gmail.com \
--cc=vikas.sajjan@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.