From: Kukjin Kim <kgene.kim@samsung.com>
To: Arnd Bergmann <arnd@arndb.de>, 'Olof Johansson' <olof@lixom.net>,
Kevin Hilman <khilman@linaro.org>
Cc: arm@kernel.org,
"linux-arm-kernel@lists.infradead.org"
<linux-arm-kernel@lists.infradead.org>,
"linux-samsung-soc@vger.kernel.org"
<linux-samsung-soc@vger.kernel.org>
Subject: [GIT PULL 3/3] 3rd Round of Exynos-PM-2 Updates for v3.18
Date: Fri, 26 Sep 2014 01:57:23 +0900 [thread overview]
Message-ID: <54244973.7090204@samsung.com> (raw)
The following changes since commit c3294253713cbc96df59a7cc6a9a3fc0c4ae5ba7:
ARM: EXYNOS: Refactor the pm code to use DT based lookup (2014-09-24
16:45:14 +0900)
are available in the git repository at:
git://git.kernel.org/pub/scm/linux/kernel/git/kgene/linux-samsung.git
tags/exynos-pm-2
for you to fetch changes up to cd925eee6acf7c742a896e0d43ad4f4088bb691c:
ARM: EXYNOS: SWRESET is needed to boot secondary CPU on exynos3250
(2014-09-25 18:15:13 +0900)
----------------------------------------------------------------
Exynos 2nd PM related updates for v3.18
- Firmware supporting suspend and resume to excute of low
level operations to enter and leave power mode for exynos
: introduce suspend() and resume() firmware operations
- Fix AFTR mode on boards with secure firmware enabled and
allows exynos cpuidle driver usage on exynos4x12 SoCs
- Fix build with PM_SLEEP=n and ARM_EXYNOS_CPUIDLE=y
- SWRESET is needed to boot secondary CPU on exynos3250
----------------------------------------------------------------
Bartlomiej Zolnierkiewicz (6):
ARM: EXYNOS: replace EXYNOS_BOOT_VECTOR_* macros by static inlines
ARM: firmware: add AFTR mode support to firmware do_idle method
ARM: EXYNOS: add secure firmware support to AFTR mode code
ARM: EXYNOS: fix register setup for AFTR mode code
ARM: EXYNOS: allow driver usage on Exynos4x12 SoCs
ARM: EXYNOS: Fix build with PM_SLEEP=n and ARM_EXYNOS_CPUIDLE=y
Krzysztof Kozlowski (1):
ARM: EXYNOS: SWRESET is needed to boot secondary CPU on exynos3250
Tomasz Figa (2):
ARM: firmware: Introduce suspend and resume operations
ARM: EXYNOS: Add support for firmware-assisted suspend/resume
Documentation/arm/firmware.txt | 28 +--
arch/arm/include/asm/firmware.h | 10 +-
arch/arm/mach-exynos/Kconfig | 5 +
arch/arm/mach-exynos/Makefile | 6 +-
arch/arm/mach-exynos/common.h | 13 ++
arch/arm/mach-exynos/exynos.c | 5 +-
arch/arm/mach-exynos/firmware.c | 65 +++++-
arch/arm/mach-exynos/platsmp.c | 23 ++
arch/arm/mach-exynos/pm.c | 388
++++-----------------------------
arch/arm/mach-exynos/regs-pmu.h | 2 +
arch/arm/mach-exynos/sleep.S | 28 +++
arch/arm/mach-exynos/smc.h | 4 +
arch/arm/mach-exynos/suspend.c | 356
++++++++++++++++++++++++++++++
arch/arm/mach-tegra/cpuidle-tegra114.c | 2 +-
arch/arm/plat-samsung/Makefile | 1 +
15 files changed, 557 insertions(+), 379 deletions(-)
create mode 100644 arch/arm/mach-exynos/suspend.c
WARNING: multiple messages have this Message-ID (diff)
From: kgene.kim@samsung.com (Kukjin Kim)
To: linux-arm-kernel@lists.infradead.org
Subject: [GIT PULL 3/3] 3rd Round of Exynos-PM-2 Updates for v3.18
Date: Fri, 26 Sep 2014 01:57:23 +0900 [thread overview]
Message-ID: <54244973.7090204@samsung.com> (raw)
The following changes since commit c3294253713cbc96df59a7cc6a9a3fc0c4ae5ba7:
ARM: EXYNOS: Refactor the pm code to use DT based lookup (2014-09-24
16:45:14 +0900)
are available in the git repository at:
git://git.kernel.org/pub/scm/linux/kernel/git/kgene/linux-samsung.git
tags/exynos-pm-2
for you to fetch changes up to cd925eee6acf7c742a896e0d43ad4f4088bb691c:
ARM: EXYNOS: SWRESET is needed to boot secondary CPU on exynos3250
(2014-09-25 18:15:13 +0900)
----------------------------------------------------------------
Exynos 2nd PM related updates for v3.18
- Firmware supporting suspend and resume to excute of low
level operations to enter and leave power mode for exynos
: introduce suspend() and resume() firmware operations
- Fix AFTR mode on boards with secure firmware enabled and
allows exynos cpuidle driver usage on exynos4x12 SoCs
- Fix build with PM_SLEEP=n and ARM_EXYNOS_CPUIDLE=y
- SWRESET is needed to boot secondary CPU on exynos3250
----------------------------------------------------------------
Bartlomiej Zolnierkiewicz (6):
ARM: EXYNOS: replace EXYNOS_BOOT_VECTOR_* macros by static inlines
ARM: firmware: add AFTR mode support to firmware do_idle method
ARM: EXYNOS: add secure firmware support to AFTR mode code
ARM: EXYNOS: fix register setup for AFTR mode code
ARM: EXYNOS: allow driver usage on Exynos4x12 SoCs
ARM: EXYNOS: Fix build with PM_SLEEP=n and ARM_EXYNOS_CPUIDLE=y
Krzysztof Kozlowski (1):
ARM: EXYNOS: SWRESET is needed to boot secondary CPU on exynos3250
Tomasz Figa (2):
ARM: firmware: Introduce suspend and resume operations
ARM: EXYNOS: Add support for firmware-assisted suspend/resume
Documentation/arm/firmware.txt | 28 +--
arch/arm/include/asm/firmware.h | 10 +-
arch/arm/mach-exynos/Kconfig | 5 +
arch/arm/mach-exynos/Makefile | 6 +-
arch/arm/mach-exynos/common.h | 13 ++
arch/arm/mach-exynos/exynos.c | 5 +-
arch/arm/mach-exynos/firmware.c | 65 +++++-
arch/arm/mach-exynos/platsmp.c | 23 ++
arch/arm/mach-exynos/pm.c | 388
++++-----------------------------
arch/arm/mach-exynos/regs-pmu.h | 2 +
arch/arm/mach-exynos/sleep.S | 28 +++
arch/arm/mach-exynos/smc.h | 4 +
arch/arm/mach-exynos/suspend.c | 356
++++++++++++++++++++++++++++++
arch/arm/mach-tegra/cpuidle-tegra114.c | 2 +-
arch/arm/plat-samsung/Makefile | 1 +
15 files changed, 557 insertions(+), 379 deletions(-)
create mode 100644 arch/arm/mach-exynos/suspend.c
next reply other threads:[~2014-09-25 16:57 UTC|newest]
Thread overview: 12+ messages / expand[flat|nested] mbox.gz Atom feed top
2014-09-25 16:57 Kukjin Kim [this message]
2014-09-25 16:57 ` [GIT PULL 3/3] 3rd Round of Exynos-PM-2 Updates for v3.18 Kukjin Kim
2014-10-01 16:01 ` Arnd Bergmann
2014-10-01 16:01 ` Arnd Bergmann
2014-10-01 16:49 ` Bartlomiej Zolnierkiewicz
2014-10-01 16:49 ` Bartlomiej Zolnierkiewicz
2014-10-01 18:31 ` Arnd Bergmann
2014-10-01 18:31 ` Arnd Bergmann
2014-10-02 13:35 ` Bartlomiej Zolnierkiewicz
2014-10-02 13:35 ` Bartlomiej Zolnierkiewicz
2014-10-09 14:13 ` Bartlomiej Zolnierkiewicz
2014-10-09 14:13 ` Bartlomiej Zolnierkiewicz
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=54244973.7090204@samsung.com \
--to=kgene.kim@samsung.com \
--cc=arm@kernel.org \
--cc=arnd@arndb.de \
--cc=khilman@linaro.org \
--cc=linux-arm-kernel@lists.infradead.org \
--cc=linux-samsung-soc@vger.kernel.org \
--cc=olof@lixom.net \
/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.