From: "Maciej W. Rozycki" <macro@linux-mips.org>
To: Andrew Bresticker <abrestic@chromium.org>
Cc: Ralf Baechle <ralf@linux-mips.org>,
linux-mips@linux-mips.org, linux-kernel@vger.kernel.org
Subject: Re: [PATCH] MIPS: Provide fallback reboot/poweroff/halt implementations
Date: Fri, 6 Mar 2015 11:08:16 +0000 (GMT) [thread overview]
Message-ID: <alpine.LFD.2.11.1503061059070.15786@eddie.linux-mips.org> (raw)
In-Reply-To: <1425513563-9897-1-git-send-email-abrestic@chromium.org>
On Wed, 4 Mar 2015, Andrew Bresticker wrote:
> If a machine-specific hook is not implemented for restart, poweroff,
> or halt, fall back to halting secondary CPUs, disabling interrupts,
> and spinning. In the case of restart, attempt to restart the system
> via do_kernel_restart() (which will call any registered restart
> handlers) before halting.
>
> Signed-off-by: Andrew Bresticker <abrestic@chromium.org>
> ---
> arch/mips/kernel/reset.c | 20 ++++++++++++++++++++
> 1 file changed, 20 insertions(+)
>
> diff --git a/arch/mips/kernel/reset.c b/arch/mips/kernel/reset.c
> index 07fc524..87b1f08 100644
> --- a/arch/mips/kernel/reset.c
> +++ b/arch/mips/kernel/reset.c
> @@ -29,16 +29,36 @@ void machine_restart(char *command)
> {
> if (_machine_restart)
> _machine_restart(command);
> +
> +#ifdef CONFIG_SMP
> + smp_send_stop();
> +#endif
> + do_kernel_restart(command);
> + pr_emerg("Reboot failed -- System halted\n");
> + local_irq_disable();
> + while (1);
I think it would make sense to put WAIT or suchlike in the final loop
so that such a halted system does not suck power unnecessarily. I think
bits in arch/mips/kernel/idle.c should do, after some massaging. As the
next step perhaps, don't treat it as a NACK for this change.
Maciej
next prev parent reply other threads:[~2015-03-06 11:10 UTC|newest]
Thread overview: 5+ messages / expand[flat|nested] mbox.gz Atom feed top
2015-03-04 23:59 Andrew Bresticker
2015-03-06 11:08 ` Maciej W. Rozycki [this message]
2015-03-24 14:22 ` James Hogan
2015-03-24 16:30 ` Andrew Bresticker
2015-03-25 6:12 ` Andrew Bresticker
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=alpine.LFD.2.11.1503061059070.15786@eddie.linux-mips.org \
--to=macro@linux-mips.org \
--cc=abrestic@chromium.org \
--cc=linux-kernel@vger.kernel.org \
--cc=linux-mips@linux-mips.org \
--cc=ralf@linux-mips.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 a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox
Powered by JetHome