powerpc: Make ppc_md.{halt, restart} __noreturn

powernv marks it's halt and restart calls as __noreturn. However,
ppc_md does not have this annotation. Add the annotation to ppc_md,
and then to every halt/restart function that is missing it.

Additionally, I have verified that all of these functions do not
return. Occasionally I have added a spin loop to be sure.

Signed-off-by: Daniel Axtens <dja@axtens.net>
Signed-off-by: Michael Ellerman <mpe@ellerman.id.au>
This commit is contained in:
Daniel Axtens 2016-07-12 10:54:52 +10:00 committed by Michael Ellerman
parent 62c2c5cf38
commit 95ec77c06e
33 changed files with 60 additions and 55 deletions

View file

@ -111,8 +111,8 @@ struct machdep_calls {
/* To setup PHBs when using automatic OF platform driver for PCI */ /* To setup PHBs when using automatic OF platform driver for PCI */
int (*pci_setup_phb)(struct pci_controller *host); int (*pci_setup_phb)(struct pci_controller *host);
void (*restart)(char *cmd); void __noreturn (*restart)(char *cmd);
void (*halt)(void); void __noreturn (*halt)(void);
void (*panic)(char *str); void (*panic)(char *str);
void (*cpu_die)(void); void (*cpu_die)(void);

View file

@ -275,7 +275,7 @@ extern int mpc5200_psc_ac97_gpio_reset(int psc_number);
extern void mpc52xx_map_common_devices(void); extern void mpc52xx_map_common_devices(void);
extern int mpc52xx_set_psc_clkdiv(int psc_id, int clkdiv); extern int mpc52xx_set_psc_clkdiv(int psc_id, int clkdiv);
extern unsigned int mpc52xx_get_xtal_freq(struct device_node *node); extern unsigned int mpc52xx_get_xtal_freq(struct device_node *node);
extern void mpc52xx_restart(char *cmd); extern void __noreturn mpc52xx_restart(char *cmd);
/* mpc52xx_gpt.c */ /* mpc52xx_gpt.c */
struct mpc52xx_gpt_priv; struct mpc52xx_gpt_priv;

View file

@ -13,6 +13,6 @@
#ifndef __ASM_POWERPC_PPC4xx_H__ #ifndef __ASM_POWERPC_PPC4xx_H__
#define __ASM_POWERPC_PPC4xx_H__ #define __ASM_POWERPC_PPC4xx_H__
extern void ppc4xx_reset_system(char *cmd); extern void __noreturn ppc4xx_reset_system(char *cmd);
#endif /* __ASM_POWERPC_PPC4xx_H__ */ #endif /* __ASM_POWERPC_PPC4xx_H__ */

View file

@ -339,9 +339,9 @@ extern int rtas_service_present(const char *service);
extern int rtas_call(int token, int, int, int *, ...); extern int rtas_call(int token, int, int, int *, ...);
void rtas_call_unlocked(struct rtas_args *args, int token, int nargs, void rtas_call_unlocked(struct rtas_args *args, int token, int nargs,
int nret, ...); int nret, ...);
extern void rtas_restart(char *cmd); extern void __noreturn rtas_restart(char *cmd);
extern void rtas_power_off(void); extern void rtas_power_off(void);
extern void rtas_halt(void); extern void __noreturn rtas_halt(void);
extern void rtas_os_term(char *str); extern void rtas_os_term(char *str);
extern int rtas_get_sensor(int sensor, int index, int *state); extern int rtas_get_sensor(int sensor, int index, int *state);
extern int rtas_get_sensor_fast(int sensor, int index, int *state); extern int rtas_get_sensor_fast(int sensor, int index, int *state);

View file

@ -685,7 +685,7 @@ int rtas_set_indicator_fast(int indicator, int index, int new_value)
return rc; return rc;
} }
void rtas_restart(char *cmd) void __noreturn rtas_restart(char *cmd)
{ {
if (rtas_flash_term_hook) if (rtas_flash_term_hook)
rtas_flash_term_hook(SYS_RESTART); rtas_flash_term_hook(SYS_RESTART);
@ -704,7 +704,7 @@ void rtas_power_off(void)
for (;;); for (;;);
} }
void rtas_halt(void) void __noreturn rtas_halt(void)
{ {
if (rtas_flash_term_hook) if (rtas_flash_term_hook)
rtas_flash_term_hook(SYS_HALT); rtas_flash_term_hook(SYS_HALT);

View file

@ -68,7 +68,7 @@ DECLARE_PCI_FIXUP_HEADER(0x1033, 0x0035, quirk_ppc_currituck_usb_fixup);
#define AVR_PWRCTL_RESET (0x02) #define AVR_PWRCTL_RESET (0x02)
static struct i2c_client *avr_i2c_client; static struct i2c_client *avr_i2c_client;
static void avr_halt_system(int pwrctl_flags) static void __noreturn avr_halt_system(int pwrctl_flags)
{ {
/* Request the AVR to reset the system */ /* Request the AVR to reset the system */
i2c_smbus_write_byte_data(avr_i2c_client, i2c_smbus_write_byte_data(avr_i2c_client,
@ -84,7 +84,7 @@ static void avr_power_off_system(void)
avr_halt_system(AVR_PWRCTL_PWROFF); avr_halt_system(AVR_PWRCTL_PWROFF);
} }
static void avr_reset_system(char *cmd) static void __noreturn avr_reset_system(char *cmd)
{ {
avr_halt_system(AVR_PWRCTL_RESET); avr_halt_system(AVR_PWRCTL_RESET);
} }

View file

@ -18,6 +18,6 @@ extern void __init mpc512x_setup_arch(void);
extern int __init mpc5121_clk_init(void); extern int __init mpc5121_clk_init(void);
extern const char *mpc512x_select_psc_compat(void); extern const char *mpc512x_select_psc_compat(void);
extern const char *mpc512x_select_reset_compat(void); extern const char *mpc512x_select_reset_compat(void);
extern void mpc512x_restart(char *cmd); extern void __noreturn mpc512x_restart(char *cmd);
#endif /* __MPC512X_H__ */ #endif /* __MPC512X_H__ */

View file

@ -47,7 +47,7 @@ static void __init mpc512x_restart_init(void)
of_node_put(np); of_node_put(np);
} }
void mpc512x_restart(char *cmd) void __noreturn mpc512x_restart(char *cmd)
{ {
if (reset_module_base) { if (reset_module_base) {
/* Enable software reset "RSTE" */ /* Enable software reset "RSTE" */

View file

@ -243,8 +243,7 @@ EXPORT_SYMBOL(mpc52xx_get_xtal_freq);
/** /**
* mpc52xx_restart: ppc_md->restart hook for mpc5200 using the watchdog timer * mpc52xx_restart: ppc_md->restart hook for mpc5200 using the watchdog timer
*/ */
void void __noreturn mpc52xx_restart(char *cmd)
mpc52xx_restart(char *cmd)
{ {
local_irq_disable(); local_irq_disable();

View file

@ -22,7 +22,7 @@
#define RMR_CSRE 0x00000001 #define RMR_CSRE 0x00000001
void pq2_restart(char *cmd) void __noreturn pq2_restart(char *cmd)
{ {
local_irq_disable(); local_irq_disable();
setbits32(&cpm2_immr->im_clkrst.car_rmr, RMR_CSRE); setbits32(&cpm2_immr->im_clkrst.car_rmr, RMR_CSRE);

View file

@ -1,7 +1,7 @@
#ifndef _PQ2_H #ifndef _PQ2_H
#define _PQ2_H #define _PQ2_H
void pq2_restart(char *cmd); void __noreturn pq2_restart(char *cmd);
#ifdef CONFIG_PCI #ifdef CONFIG_PCI
int pq2ads_pci_init_irq(void); int pq2ads_pci_init_irq(void);

View file

@ -35,7 +35,7 @@ static int __init mpc83xx_restart_init(void)
arch_initcall(mpc83xx_restart_init); arch_initcall(mpc83xx_restart_init);
void mpc83xx_restart(char *cmd) void __noreturn mpc83xx_restart(char *cmd)
{ {
#define RST_OFFSET 0x00000900 #define RST_OFFSET 0x00000900
#define RST_PROT_REG 0x00000018 #define RST_PROT_REG 0x00000018

View file

@ -65,7 +65,7 @@
* mpc83xx_* files. Mostly for use by mpc83xx_setup * mpc83xx_* files. Mostly for use by mpc83xx_setup
*/ */
extern void mpc83xx_restart(char *cmd); extern void __noreturn mpc83xx_restart(char *cmd);
extern long mpc83xx_time_init(void); extern long mpc83xx_time_init(void);
extern int mpc837x_usb_cfg(void); extern int mpc837x_usb_cfg(void);
extern int mpc834x_usb_cfg(void); extern int mpc834x_usb_cfg(void);

View file

@ -44,7 +44,7 @@
static void __iomem *cpld_base = NULL; static void __iomem *cpld_base = NULL;
static void machine_restart(char *cmd) static void __noreturn machine_restart(char *cmd)
{ {
if (cpld_base) if (cpld_base)
out_8(cpld_base + KSI8560_CPLD_RCR1, KSI8560_CPLD_RCR1_CPUHR); out_8(cpld_base + KSI8560_CPLD_RCR1, KSI8560_CPLD_RCR1_CPUHR);

View file

@ -83,7 +83,7 @@ static int mpc85xx_exclude_device(struct pci_controller *hose,
return PCIBIOS_SUCCESSFUL; return PCIBIOS_SUCCESSFUL;
} }
static void mpc85xx_cds_restart(char *cmd) static void __noreturn mpc85xx_cds_restart(char *cmd)
{ {
struct pci_dev *dev; struct pci_dev *dev;
u_char tmp; u_char tmp;

View file

@ -198,7 +198,7 @@ void mpc8xx_get_rtc_time(struct rtc_time *tm)
return; return;
} }
void mpc8xx_restart(char *cmd) void __noreturn mpc8xx_restart(char *cmd)
{ {
car8xx_t __iomem *clk_r = immr_map(im_clkrst); car8xx_t __iomem *clk_r = immr_map(im_clkrst);

View file

@ -11,7 +11,7 @@
#ifndef __MPC8xx_H #ifndef __MPC8xx_H
#define __MPC8xx_H #define __MPC8xx_H
extern void mpc8xx_restart(char *cmd); extern void __noreturn mpc8xx_restart(char *cmd);
extern void mpc8xx_calibrate_decr(void); extern void mpc8xx_calibrate_decr(void);
extern int mpc8xx_set_rtc_time(struct rtc_time *tm); extern int mpc8xx_set_rtc_time(struct rtc_time *tm);
extern void mpc8xx_get_rtc_time(struct rtc_time *tm); extern void mpc8xx_get_rtc_time(struct rtc_time *tm);

View file

@ -123,7 +123,7 @@ static int __init request_isa_regions(void)
} }
machine_device_initcall(amigaone, request_isa_regions); machine_device_initcall(amigaone, request_isa_regions);
void amigaone_restart(char *cmd) void __noreturn amigaone_restart(char *cmd)
{ {
local_irq_disable(); local_irq_disable();

View file

@ -239,7 +239,7 @@ out:
of_node_put(np); of_node_put(np);
} }
static void briq_restart(char *cmd) static void __noreturn briq_restart(char *cmd)
{ {
local_irq_disable(); local_irq_disable();
if (briq_SPOR) if (briq_SPOR)

View file

@ -99,7 +99,7 @@ static void c2k_reset_board(void)
out_le32(mv64x60_gpp_reg_base + MV64x60_GPP_VALUE_SET, 0x00080004); out_le32(mv64x60_gpp_reg_base + MV64x60_GPP_VALUE_SET, 0x00080004);
} }
static void c2k_restart(char *cmd) static void __noreturn c2k_restart(char *cmd)
{ {
c2k_reset_board(); c2k_reset_board();
msleep(100); msleep(100);

View file

@ -29,14 +29,14 @@
#include "usbgecko_udbg.h" #include "usbgecko_udbg.h"
static void gamecube_spin(void) static void __noreturn gamecube_spin(void)
{ {
/* spin until power button pressed */ /* spin until power button pressed */
for (;;) for (;;)
cpu_relax(); cpu_relax();
} }
static void gamecube_restart(char *cmd) static void __noreturn gamecube_restart(char *cmd)
{ {
local_irq_disable(); local_irq_disable();
flipper_platform_reset(); flipper_platform_reset();
@ -49,7 +49,7 @@ static void gamecube_power_off(void)
gamecube_spin(); gamecube_spin();
} }
static void gamecube_halt(void) static void __noreturn gamecube_halt(void)
{ {
gamecube_restart(NULL); gamecube_restart(NULL);
} }

View file

@ -193,7 +193,7 @@ void holly_show_cpuinfo(struct seq_file *m)
seq_printf(m, "machine\t\t: PPC750 GX/CL\n"); seq_printf(m, "machine\t\t: PPC750 GX/CL\n");
} }
void holly_restart(char *cmd) void __noreturn holly_restart(char *cmd)
{ {
__be32 __iomem *ocn_bar1 = NULL; __be32 __iomem *ocn_bar1 = NULL;
unsigned long bar; unsigned long bar;

View file

@ -100,7 +100,7 @@ static void __init linkstation_init_IRQ(void)
extern void avr_uart_configure(void); extern void avr_uart_configure(void);
extern void avr_uart_send(const char); extern void avr_uart_send(const char);
static void linkstation_restart(char *cmd) static void __noreturn linkstation_restart(char *cmd)
{ {
local_irq_disable(); local_irq_disable();
@ -113,7 +113,7 @@ static void linkstation_restart(char *cmd)
avr_uart_send('G'); /* "kick" */ avr_uart_send('G'); /* "kick" */
} }
static void linkstation_power_off(void) static void __noreturn linkstation_power_off(void)
{ {
local_irq_disable(); local_irq_disable();
@ -127,7 +127,7 @@ static void linkstation_power_off(void)
/* NOTREACHED */ /* NOTREACHED */
} }
static void linkstation_halt(void) static void __noreturn linkstation_halt(void)
{ {
linkstation_power_off(); linkstation_power_off();
/* NOTREACHED */ /* NOTREACHED */

View file

@ -146,7 +146,7 @@ void mpc7448_hpc2_show_cpuinfo(struct seq_file *m)
seq_printf(m, "vendor\t\t: Freescale Semiconductor\n"); seq_printf(m, "vendor\t\t: Freescale Semiconductor\n");
} }
void mpc7448_hpc2_restart(char *cmd) static void __noreturn mpc7448_hpc2_restart(char *cmd)
{ {
local_irq_disable(); local_irq_disable();

View file

@ -177,7 +177,7 @@ static void mvme5100_show_cpuinfo(struct seq_file *m)
seq_puts(m, "Machine\t\t: MVME5100\n"); seq_puts(m, "Machine\t\t: MVME5100\n");
} }
static void mvme5100_restart(char *cmd) static void __noreturn mvme5100_restart(char *cmd)
{ {
local_irq_disable(); local_irq_disable();

View file

@ -96,7 +96,7 @@ static void __init storcenter_init_IRQ(void)
mpic_init(mpic); mpic_init(mpic);
} }
static void storcenter_restart(char *cmd) static void __noreturn storcenter_restart(char *cmd)
{ {
local_irq_disable(); local_irq_disable();

View file

@ -112,7 +112,7 @@ unsigned long __init wii_mmu_mapin_mem2(unsigned long top)
return delta + bl; return delta + bl;
} }
static void wii_spin(void) static void __noreturn wii_spin(void)
{ {
local_irq_disable(); local_irq_disable();
for (;;) for (;;)
@ -160,7 +160,7 @@ static void __init wii_setup_arch(void)
} }
} }
static void wii_restart(char *cmd) static void __noreturn wii_restart(char *cmd)
{ {
local_irq_disable(); local_irq_disable();
@ -185,7 +185,7 @@ static void wii_power_off(void)
wii_spin(); wii_spin();
} }
static void wii_halt(void) static void __noreturn wii_halt(void)
{ {
if (ppc_md.restart) if (ppc_md.restart)
ppc_md.restart(NULL); ppc_md.restart(NULL);

View file

@ -94,7 +94,7 @@ static unsigned long maple_find_nvram_base(void)
return result; return result;
} }
static void maple_restart(char *cmd) static void __noreturn maple_restart(char *cmd)
{ {
unsigned int maple_nvram_base; unsigned int maple_nvram_base;
const unsigned int *maple_nvram_offset, *maple_nvram_command; const unsigned int *maple_nvram_offset, *maple_nvram_command;
@ -119,9 +119,10 @@ static void maple_restart(char *cmd)
for (;;) ; for (;;) ;
fail: fail:
printk(KERN_EMERG "Maple: Manual Restart Required\n"); printk(KERN_EMERG "Maple: Manual Restart Required\n");
for (;;) ;
} }
static void maple_power_off(void) static void __noreturn maple_power_off(void)
{ {
unsigned int maple_nvram_base; unsigned int maple_nvram_base;
const unsigned int *maple_nvram_offset, *maple_nvram_command; const unsigned int *maple_nvram_offset, *maple_nvram_command;
@ -146,9 +147,10 @@ static void maple_power_off(void)
for (;;) ; for (;;) ;
fail: fail:
printk(KERN_EMERG "Maple: Manual Power-Down Required\n"); printk(KERN_EMERG "Maple: Manual Power-Down Required\n");
for (;;) ;
} }
static void maple_halt(void) static void __noreturn maple_halt(void)
{ {
maple_power_off(); maple_power_off();
} }

View file

@ -62,7 +62,7 @@ static int num_mce_regs;
static int nmi_virq = NO_IRQ; static int nmi_virq = NO_IRQ;
static void pas_restart(char *cmd) static void __noreturn pas_restart(char *cmd)
{ {
/* Need to put others cpu in hold loop so they're not sleeping */ /* Need to put others cpu in hold loop so they're not sleeping */
smp_send_stop(); smp_send_stop();

View file

@ -383,7 +383,7 @@ void __init_refok note_bootable_part(dev_t dev, int part, int goodness)
} }
#ifdef CONFIG_ADB_CUDA #ifdef CONFIG_ADB_CUDA
static void cuda_restart(void) static void __noreturn cuda_restart(void)
{ {
struct adb_request req; struct adb_request req;
@ -392,7 +392,7 @@ static void cuda_restart(void)
cuda_poll(); cuda_poll();
} }
static void cuda_shutdown(void) static void __noreturn cuda_shutdown(void)
{ {
struct adb_request req; struct adb_request req;
@ -416,7 +416,7 @@ static void cuda_shutdown(void)
#define smu_shutdown() #define smu_shutdown()
#endif #endif
static void pmac_restart(char *cmd) static void __noreturn pmac_restart(char *cmd)
{ {
switch (sys_ctrler) { switch (sys_ctrler) {
case SYS_CTRLER_CUDA: case SYS_CTRLER_CUDA:
@ -430,9 +430,10 @@ static void pmac_restart(char *cmd)
break; break;
default: ; default: ;
} }
while (1) ;
} }
static void pmac_power_off(void) static void __noreturn pmac_power_off(void)
{ {
switch (sys_ctrler) { switch (sys_ctrler) {
case SYS_CTRLER_CUDA: case SYS_CTRLER_CUDA:
@ -446,9 +447,10 @@ static void pmac_power_off(void)
break; break;
default: ; default: ;
} }
while (1) ;
} }
static void static void __noreturn
pmac_halt(void) pmac_halt(void)
{ {
pmac_power_off(); pmac_power_off();

View file

@ -80,7 +80,7 @@ static void ps3_power_save(void)
lv1_pause(0); lv1_pause(0);
} }
static void ps3_restart(char *cmd) static void __noreturn ps3_restart(char *cmd)
{ {
DBG("%s:%d cmd '%s'\n", __func__, __LINE__, cmd); DBG("%s:%d cmd '%s'\n", __func__, __LINE__, cmd);
@ -96,7 +96,7 @@ static void ps3_power_off(void)
ps3_sys_manager_power_off(); /* never returns */ ps3_sys_manager_power_off(); /* never returns */
} }
static void ps3_halt(void) static void __noreturn ps3_halt(void)
{ {
DBG("%s:%d\n", __func__, __LINE__); DBG("%s:%d\n", __func__, __LINE__);

View file

@ -204,7 +204,7 @@ static int __init setup_rstcr(void)
arch_initcall(setup_rstcr); arch_initcall(setup_rstcr);
void fsl_rstcr_restart(char *cmd) void __noreturn fsl_rstcr_restart(char *cmd)
{ {
local_irq_disable(); local_irq_disable();
if (rstcr) if (rstcr)
@ -228,10 +228,11 @@ EXPORT_SYMBOL(diu_ops);
* to initiate a partition restart when we're running under the Freescale * to initiate a partition restart when we're running under the Freescale
* hypervisor. * hypervisor.
*/ */
void fsl_hv_restart(char *cmd) void __noreturn fsl_hv_restart(char *cmd)
{ {
pr_info("hv restart\n"); pr_info("hv restart\n");
fh_partition_restart(-1); fh_partition_restart(-1);
while (1) ;
} }
/* /*
@ -241,9 +242,10 @@ void fsl_hv_restart(char *cmd)
* function pointers, to shut down the partition when we're running under * function pointers, to shut down the partition when we're running under
* the Freescale hypervisor. * the Freescale hypervisor.
*/ */
void fsl_hv_halt(void) void __noreturn fsl_hv_halt(void)
{ {
pr_info("hv exit\n"); pr_info("hv exit\n");
fh_partition_stop(-1); fh_partition_stop(-1);
while (1) ;
} }
#endif #endif

View file

@ -19,7 +19,7 @@ extern u32 fsl_get_sys_freq(void);
struct spi_board_info; struct spi_board_info;
struct device_node; struct device_node;
extern void fsl_rstcr_restart(char *cmd); extern void __noreturn fsl_rstcr_restart(char *cmd);
/* The different ports that the DIU can be connected to */ /* The different ports that the DIU can be connected to */
enum fsl_diu_monitor_port { enum fsl_diu_monitor_port {
@ -42,8 +42,8 @@ struct platform_diu_data_ops {
extern struct platform_diu_data_ops diu_ops; extern struct platform_diu_data_ops diu_ops;
void fsl_hv_restart(char *cmd); void __noreturn fsl_hv_restart(char *cmd);
void fsl_hv_halt(void); void __noreturn fsl_hv_halt(void);
#endif #endif
#endif #endif