From: Krzysztof Kozlowski <k.kozlowski@samsung.com>
To: Pavel Fedin <p.fedin@samsung.com>,
linux-samsung-soc@vger.kernel.org,
linux-arm-kernel@lists.infradead.org
Cc: Kukjin Kim <kgene@kernel.org>
Subject: Re: [PATCH] ARM: exynos: Bring back reboot on Exynos5410
Date: Thu, 29 Oct 2015 10:41:52 +0900 [thread overview]
Message-ID: <56317960.9070608@samsung.com> (raw)
In-Reply-To: <1446024965-8508-1-git-send-email-p.fedin@samsung.com>
On 28.10.2015 18:36, Pavel Fedin wrote:
> Since 8cfc7fdd33080e30b86d21b1a8c9ad0686427ddc ("ARM: EXYNOS: move restart
This should be sufficient (although full is okay as well):
$ git config core.abbrev 12
> code into pmu driver") PMU support is required in order for the reboot to
> work. Unfortunately, there is currently no PMU support for 5410.
>
> This patch adds exynos5410-pmu to the list of recognized devices. It is
> okay for the code to have empty struct exynos_pmu_data, in this case only
> minimal support is enabled. This is enough for SWRESET to work.
>
> Signed-off-by: Pavel Fedin <p.fedin@samsung.com>
This definitely looks like a fix for a regression, so:
Cc: <stable@vger.kernel.org>
Fixes: 8cfc7fdd3308 ("ARM: EXYNOS: move restart code into pmu driver")
> ---
> arch/arm/mach-exynos/pmu.c | 7 +++++++
> 1 file changed, 7 insertions(+)
>
> diff --git a/arch/arm/mach-exynos/pmu.c b/arch/arm/mach-exynos/pmu.c
> index de68938..7b9e33c 100644
> --- a/arch/arm/mach-exynos/pmu.c
> +++ b/arch/arm/mach-exynos/pmu.c
> @@ -908,6 +908,10 @@ static const struct exynos_pmu_data exynos5250_pmu_data = {
> .powerdown_conf = exynos5_powerdown_conf,
> };
>
> +static struct exynos_pmu_data exynos5410_pmu_data = {
> + /* Only SWRESET is currently supported on 5410 */
> +};
static const struct
With these changes:
Reviewed-by: Krzysztof Kozlowski <k.kozlowski@samsung.com>
Best regards,
Krzysztof
WARNING: multiple messages have this Message-ID (diff)
From: k.kozlowski@samsung.com (Krzysztof Kozlowski)
To: linux-arm-kernel@lists.infradead.org
Subject: [PATCH] ARM: exynos: Bring back reboot on Exynos5410
Date: Thu, 29 Oct 2015 10:41:52 +0900 [thread overview]
Message-ID: <56317960.9070608@samsung.com> (raw)
In-Reply-To: <1446024965-8508-1-git-send-email-p.fedin@samsung.com>
On 28.10.2015 18:36, Pavel Fedin wrote:
> Since 8cfc7fdd33080e30b86d21b1a8c9ad0686427ddc ("ARM: EXYNOS: move restart
This should be sufficient (although full is okay as well):
$ git config core.abbrev 12
> code into pmu driver") PMU support is required in order for the reboot to
> work. Unfortunately, there is currently no PMU support for 5410.
>
> This patch adds exynos5410-pmu to the list of recognized devices. It is
> okay for the code to have empty struct exynos_pmu_data, in this case only
> minimal support is enabled. This is enough for SWRESET to work.
>
> Signed-off-by: Pavel Fedin <p.fedin@samsung.com>
This definitely looks like a fix for a regression, so:
Cc: <stable@vger.kernel.org>
Fixes: 8cfc7fdd3308 ("ARM: EXYNOS: move restart code into pmu driver")
> ---
> arch/arm/mach-exynos/pmu.c | 7 +++++++
> 1 file changed, 7 insertions(+)
>
> diff --git a/arch/arm/mach-exynos/pmu.c b/arch/arm/mach-exynos/pmu.c
> index de68938..7b9e33c 100644
> --- a/arch/arm/mach-exynos/pmu.c
> +++ b/arch/arm/mach-exynos/pmu.c
> @@ -908,6 +908,10 @@ static const struct exynos_pmu_data exynos5250_pmu_data = {
> .powerdown_conf = exynos5_powerdown_conf,
> };
>
> +static struct exynos_pmu_data exynos5410_pmu_data = {
> + /* Only SWRESET is currently supported on 5410 */
> +};
static const struct
With these changes:
Reviewed-by: Krzysztof Kozlowski <k.kozlowski@samsung.com>
Best regards,
Krzysztof
next prev parent reply other threads:[~2015-10-29 1:41 UTC|newest]
Thread overview: 16+ messages / expand[flat|nested] mbox.gz Atom feed top
2015-10-28 9:36 [PATCH] ARM: exynos: Bring back reboot on Exynos5410 Pavel Fedin
2015-10-28 9:36 ` Pavel Fedin
2015-10-29 1:41 ` Krzysztof Kozlowski [this message]
2015-10-29 1:41 ` Krzysztof Kozlowski
2015-10-29 2:06 ` Pankaj Dubey
2015-10-29 2:06 ` Pankaj Dubey
2015-10-29 2:11 ` Krzysztof Kozlowski
2015-10-29 2:11 ` Krzysztof Kozlowski
2015-10-29 7:10 ` Pavel Fedin
2015-10-29 7:10 ` Pavel Fedin
2015-10-29 8:29 ` Pankaj Dubey
2015-10-29 8:29 ` Pankaj Dubey
2015-10-29 8:43 ` Pavel Fedin
2015-10-29 8:43 ` Pavel Fedin
2015-10-29 8:58 ` Pankaj Dubey
2015-10-29 8:58 ` 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=56317960.9070608@samsung.com \
--to=k.kozlowski@samsung.com \
--cc=kgene@kernel.org \
--cc=linux-arm-kernel@lists.infradead.org \
--cc=linux-samsung-soc@vger.kernel.org \
--cc=p.fedin@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.