On my Yeeloong 8089, I noticed the machine fails to shutdown
properly, and often, the function mach_prepare_reboot() is
unexpectedly executed, thus the machine reboots instead. A
wait loop is needed to ensure the system is in a well-defined
state before going down.
In commit 997e93d4df
("MIPS: Hang more efficiently on
halt/powerdown/restart"), a general superset of the wait loop for all
platforms is already provided, so we don't need to implement our own.
This commit simply removes the unreachable() compiler marco after
mach_prepare_reboot(), thus allowing the execution of machine_hang().
My test shows that the machine is now able to shutdown successfully.
Please note that there are two different bugs preventing the machine
from shutting down, another work-in-progress commit is needed to
fix a lockup in cpufreq / i8259 driver, please read Reference, this
commit does not fix that bug.
Reference: https://lkml.org/lkml/2019/2/5/908
Signed-off-by: Yifeng Li <tomli@tomli.me>
Signed-off-by: Paul Burton <paul.burton@mips.com>
Cc: linux-mips@vger.kernel.org
Cc: Huacai Chen <chenhc@lemote.com>
Cc: Ralf Baechle <ralf@linux-mips.org>
Cc: James Hogan <jhogan@kernel.org>
Cc: linux-kernel@vger.kernel.org
Cc: Aaro Koskinen <aaro.koskinen@iki.fi>
Cc: stable@vger.kernel.org # v4.17+
98 lines
2.0 KiB
C
98 lines
2.0 KiB
C
/*
|
|
* This program is free software; you can redistribute it and/or modify it
|
|
* under the terms of the GNU General Public License as published by the
|
|
* Free Software Foundation; either version 2 of the License, or (at your
|
|
* option) any later version.
|
|
*
|
|
* Copyright (C) 2007 Lemote, Inc. & Institute of Computing Technology
|
|
* Author: Fuxin Zhang, zhangfx@lemote.com
|
|
* Copyright (C) 2009 Lemote, Inc.
|
|
* Author: Zhangjin Wu, wuzhangjin@gmail.com
|
|
*/
|
|
#include <linux/init.h>
|
|
#include <linux/pm.h>
|
|
|
|
#include <asm/idle.h>
|
|
#include <asm/reboot.h>
|
|
|
|
#include <loongson.h>
|
|
#include <boot_param.h>
|
|
|
|
static inline void loongson_reboot(void)
|
|
{
|
|
#ifndef CONFIG_CPU_JUMP_WORKAROUNDS
|
|
((void (*)(void))ioremap_nocache(LOONGSON_BOOT_BASE, 4)) ();
|
|
#else
|
|
void (*func)(void);
|
|
|
|
func = (void *)ioremap_nocache(LOONGSON_BOOT_BASE, 4);
|
|
|
|
__asm__ __volatile__(
|
|
" .set noat \n"
|
|
" jr %[func] \n"
|
|
" .set at \n"
|
|
: /* No outputs */
|
|
: [func] "r" (func));
|
|
#endif
|
|
}
|
|
|
|
static void loongson_restart(char *command)
|
|
{
|
|
#ifndef CONFIG_LEFI_FIRMWARE_INTERFACE
|
|
/* do preparation for reboot */
|
|
mach_prepare_reboot();
|
|
|
|
/* reboot via jumping to boot base address */
|
|
loongson_reboot();
|
|
#else
|
|
void (*fw_restart)(void) = (void *)loongson_sysconf.restart_addr;
|
|
|
|
fw_restart();
|
|
while (1) {
|
|
if (cpu_wait)
|
|
cpu_wait();
|
|
}
|
|
#endif
|
|
}
|
|
|
|
static void loongson_poweroff(void)
|
|
{
|
|
#ifndef CONFIG_LEFI_FIRMWARE_INTERFACE
|
|
mach_prepare_shutdown();
|
|
|
|
/*
|
|
* It needs a wait loop here, but mips/kernel/reset.c already calls
|
|
* a generic delay loop, machine_hang(), so simply return.
|
|
*/
|
|
return;
|
|
#else
|
|
void (*fw_poweroff)(void) = (void *)loongson_sysconf.poweroff_addr;
|
|
|
|
fw_poweroff();
|
|
while (1) {
|
|
if (cpu_wait)
|
|
cpu_wait();
|
|
}
|
|
#endif
|
|
}
|
|
|
|
static void loongson_halt(void)
|
|
{
|
|
pr_notice("\n\n** You can safely turn off the power now **\n\n");
|
|
while (1) {
|
|
if (cpu_wait)
|
|
cpu_wait();
|
|
}
|
|
}
|
|
|
|
static int __init mips_reboot_setup(void)
|
|
{
|
|
_machine_restart = loongson_restart;
|
|
_machine_halt = loongson_halt;
|
|
pm_power_off = loongson_poweroff;
|
|
|
|
return 0;
|
|
}
|
|
|
|
arch_initcall(mips_reboot_setup);
|