From: Fredrik Noring <noring@nocrew.org> To: linux-mips@vger.kernel.org Subject: [PATCH 048/120] MIPS: Define and use cpu_relax_forever() for various halting loops Date: Sun, 1 Sep 2019 17:55:14 +0200 Message-ID: <bc2a33e1a99ff0b32f837c08d9bb43f1e3adacc3.1567326213.git.noring@nocrew.org> (raw) In-Reply-To: <cover.1567326213.git.noring@nocrew.org> Using cpu_relax_forever() can lower processor energy consumption when halting indefinitely. Signed-off-by: Fredrik Noring <noring@nocrew.org> --- arch/mips/alchemy/board-gpr.c | 7 +++---- arch/mips/alchemy/board-mtx1.c | 7 ++----- arch/mips/alchemy/board-xxs1500.c | 7 ++----- arch/mips/alchemy/devboards/platform.c | 4 ++-- arch/mips/ar7/setup.c | 4 ++-- arch/mips/ath79/setup.c | 8 +++----- arch/mips/bcm47xx/setup.c | 9 +++++---- arch/mips/bcm63xx/setup.c | 12 ++++++------ arch/mips/boot/compressed/decompress.c | 4 ++-- arch/mips/cavium-octeon/smp.c | 4 ++-- arch/mips/cobalt/reset.c | 5 +---- arch/mips/emma/markeins/setup.c | 5 +++-- arch/mips/fw/arc/init.c | 4 ++-- arch/mips/include/asm/processor.h | 6 ++++++ arch/mips/jz4740/reset.c | 9 ++------- arch/mips/loongson64/common/reset.c | 16 ++++------------ arch/mips/mm/cerr-sb1.c | 4 ++-- arch/mips/pic32/common/reset.c | 9 ++------- arch/mips/pnx833x/common/reset.c | 5 ++--- arch/mips/sgi-ip22/ip22-reset.c | 3 ++- arch/mips/sgi-ip27/ip27-berr.c | 4 ++-- arch/mips/sgi-ip27/ip27-reset.c | 13 ++++--------- arch/mips/sgi-ip32/ip32-berr.c | 4 ++-- arch/mips/sgi-ip32/ip32-irq.c | 3 ++- arch/mips/sibyte/common/cfe.c | 3 ++- arch/mips/txx9/rbtx4939/setup.c | 4 ++-- arch/mips/vr41xx/common/pmu.c | 2 +- 27 files changed, 70 insertions(+), 95 deletions(-) diff --git a/arch/mips/alchemy/board-gpr.c b/arch/mips/alchemy/board-gpr.c index 6c47318946e4..5247dfc1e0ed 100644 --- a/arch/mips/alchemy/board-gpr.c +++ b/arch/mips/alchemy/board-gpr.c @@ -20,6 +20,7 @@ #include <linux/gpio/machine.h> #include <asm/bootinfo.h> #include <asm/idle.h> +#include <asm/processor.h> #include <asm/reboot.h> #include <asm/setup.h> #include <asm/mach-au1x00/au1000.h> @@ -65,14 +66,12 @@ static void gpr_reset(char *c) alchemy_gpio_direction_output(1, 0); udelay(1); alchemy_gpio_set_value(1, 1); - while (1) - cpu_wait(); + cpu_relax_forever(); } static void gpr_power_off(void) { - while (1) - cpu_wait(); + cpu_relax_forever(); } void __init board_setup(void) diff --git a/arch/mips/alchemy/board-mtx1.c b/arch/mips/alchemy/board-mtx1.c index 23093535399f..2025ba4ebfdd 100644 --- a/arch/mips/alchemy/board-mtx1.c +++ b/arch/mips/alchemy/board-mtx1.c @@ -18,6 +18,7 @@ #include <linux/mtd/physmap.h> #include <mtd/mtd-abi.h> #include <asm/bootinfo.h> +#include <asm/processor.h> #include <asm/reboot.h> #include <asm/setup.h> #include <asm/mach-au1x00/au1000.h> @@ -60,11 +61,7 @@ static void mtx1_reset(char *c) static void mtx1_power_off(void) { - while (1) - asm volatile ( - " .set mips32 \n" - " wait \n" - " .set mips0 \n"); + cpu_relax_forever(); } void __init board_setup(void) diff --git a/arch/mips/alchemy/board-xxs1500.c b/arch/mips/alchemy/board-xxs1500.c index c67dfe1f4997..6189efe70e65 100644 --- a/arch/mips/alchemy/board-xxs1500.c +++ b/arch/mips/alchemy/board-xxs1500.c @@ -15,6 +15,7 @@ #include <linux/delay.h> #include <linux/pm.h> #include <asm/bootinfo.h> +#include <asm/processor.h> #include <asm/reboot.h> #include <asm/setup.h> #include <asm/mach-au1x00/au1000.h> @@ -56,11 +57,7 @@ static void xxs1500_reset(char *c) static void xxs1500_power_off(void) { - while (1) - asm volatile ( - " .set mips32 \n" - " wait \n" - " .set mips0 \n"); + cpu_relax_forever(); } void __init board_setup(void) diff --git a/arch/mips/alchemy/devboards/platform.c b/arch/mips/alchemy/devboards/platform.c index 8d4b65c3268a..2203fddc42d8 100644 --- a/arch/mips/alchemy/devboards/platform.c +++ b/arch/mips/alchemy/devboards/platform.c @@ -13,6 +13,7 @@ #include <asm/bootinfo.h> #include <asm/idle.h> +#include <asm/processor.h> #include <asm/reboot.h> #include <asm/setup.h> #include <asm/mach-au1x00/au1000.h> @@ -56,8 +57,7 @@ static void db1x_power_off(void) { bcsr_write(BCSR_RESETS, 0); bcsr_write(BCSR_SYSTEM, BCSR_SYSTEM_PWROFF | BCSR_SYSTEM_RESET); - while (1) /* sit and spin */ - cpu_wait(); + cpu_relax_forever(); /* sit and spin */ } static void db1x_reset(char *c) diff --git a/arch/mips/ar7/setup.c b/arch/mips/ar7/setup.c index b3ffe7c898eb..2649ee848921 100644 --- a/arch/mips/ar7/setup.c +++ b/arch/mips/ar7/setup.c @@ -8,6 +8,7 @@ #include <linux/pm.h> #include <linux/time.h> +#include <asm/processor.h> #include <asm/reboot.h> #include <asm/mach-ar7/ar7.h> #include <asm/mach-ar7/prom.h> @@ -21,8 +22,7 @@ static void ar7_machine_restart(char *command) static void ar7_machine_halt(void) { - while (1) - ; + cpu_relax_forever(); } static void ar7_machine_power_off(void) diff --git a/arch/mips/ath79/setup.c b/arch/mips/ath79/setup.c index ea385a865781..ad1d0fab5dad 100644 --- a/arch/mips/ath79/setup.c +++ b/arch/mips/ath79/setup.c @@ -24,6 +24,7 @@ #include <asm/time.h> /* for mips_hpt_frequency */ #include <asm/reboot.h> /* for _machine_{restart,halt} */ #include <asm/mips_machine.h> +#include <asm/processor.h> #include <asm/prom.h> #include <asm/fw/fw.h> @@ -39,15 +40,12 @@ static void ath79_restart(char *command) { local_irq_disable(); ath79_device_reset_set(AR71XX_RESET_FULL_CHIP); - for (;;) - if (cpu_wait) - cpu_wait(); + cpu_relax_forever(); } static void ath79_halt(void) { - while (1) - cpu_wait(); + cpu_relax_forever(); } static void __init ath79_detect_sys_type(void) diff --git a/arch/mips/bcm47xx/setup.c b/arch/mips/bcm47xx/setup.c index 82627c264964..7ae2462ff3ae 100644 --- a/arch/mips/bcm47xx/setup.c +++ b/arch/mips/bcm47xx/setup.c @@ -39,6 +39,7 @@ #include <linux/bcma/bcma_soc.h> #include <asm/bootinfo.h> #include <asm/idle.h> +#include <asm/processor.h> #include <asm/prom.h> #include <asm/reboot.h> #include <asm/time.h> @@ -77,8 +78,8 @@ static void bcm47xx_machine_restart(char *command) break; #endif } - while (1) - cpu_relax(); + + cpu_relax_forever(); } static void bcm47xx_machine_halt(void) @@ -97,8 +98,8 @@ static void bcm47xx_machine_halt(void) break; #endif } - while (1) - cpu_relax(); + + cpu_relax_forever(); } #ifdef CONFIG_BCM47XX_SSB diff --git a/arch/mips/bcm63xx/setup.c b/arch/mips/bcm63xx/setup.c index e28ee9a7cc7e..342ca32c0ae2 100644 --- a/arch/mips/bcm63xx/setup.c +++ b/arch/mips/bcm63xx/setup.c @@ -14,6 +14,7 @@ #include <linux/pm.h> #include <asm/bootinfo.h> #include <asm/time.h> +#include <asm/processor.h> #include <asm/reboot.h> #include <asm/cacheflush.h> #include <bcm63xx_board.h> @@ -25,8 +26,8 @@ void bcm63xx_machine_halt(void) { pr_info("System halted\n"); - while (1) - ; + + cpu_relax_forever(); } static void bcm6348_a1_reboot(void) @@ -58,8 +59,8 @@ static void bcm6348_a1_reboot(void) "jr\t%0" : : "r" (0xbfc00000)); - while (1) - ; + + cpu_relax_forever(); } void bcm63xx_machine_reboot(void) @@ -118,8 +119,7 @@ void bcm63xx_machine_reboot(void) reg |= SYS_PLL_SOFT_RESET; bcm_perf_writel(reg, PERF_SYS_PLL_CTL_REG); } - while (1) - ; + cpu_relax_forever(); } static void __bcm63xx_machine_reboot(char *p) diff --git a/arch/mips/boot/compressed/decompress.c b/arch/mips/boot/compressed/decompress.c index 88f5d637b1c4..27e9c13614ee 100644 --- a/arch/mips/boot/compressed/decompress.c +++ b/arch/mips/boot/compressed/decompress.c @@ -13,6 +13,7 @@ #include <linux/libfdt.h> #include <asm/addrspace.h> +#include <asm/processor.h> /* * These two variables specify the free mem region @@ -41,8 +42,7 @@ void error(char *x) puts(x); puts("\n\n -- System halted"); - while (1) - ; /* Halt */ + cpu_relax_forever(); /* Halt */ } /* activate the code for pre-boot environment */ diff --git a/arch/mips/cavium-octeon/smp.c b/arch/mips/cavium-octeon/smp.c index 076db9a06b5e..cb397b413967 100644 --- a/arch/mips/cavium-octeon/smp.c +++ b/arch/mips/cavium-octeon/smp.c @@ -18,6 +18,7 @@ #include <linux/kexec.h> #include <asm/mmu_context.h> +#include <asm/processor.h> #include <asm/time.h> #include <asm/setup.h> @@ -354,8 +355,7 @@ void play_dead(void) mb(); - while (1) /* core will be reset here */ - ; + cpu_relax_forever(); /* core will be reset here */ } static void start_after_reset(void) diff --git a/arch/mips/cobalt/reset.c b/arch/mips/cobalt/reset.c index 4eedd481dd00..13f67197193a 100644 --- a/arch/mips/cobalt/reset.c +++ b/arch/mips/cobalt/reset.c @@ -37,10 +37,7 @@ void cobalt_machine_halt(void) led_trigger_event(power_off_led_trigger, LED_FULL); local_irq_disable(); - while (1) { - if (cpu_wait) - cpu_wait(); - } + cpu_relax_forever(); } void cobalt_machine_restart(char *command) diff --git a/arch/mips/emma/markeins/setup.c b/arch/mips/emma/markeins/setup.c index c8a91c2a63bc..c12e4e6ceb76 100644 --- a/arch/mips/emma/markeins/setup.c +++ b/arch/mips/emma/markeins/setup.c @@ -10,6 +10,7 @@ #include <linux/kernel.h> #include <linux/types.h> +#include <asm/processor.h> #include <asm/time.h> #include <asm/reboot.h> @@ -34,13 +35,13 @@ static void markeins_machine_halt(void) { printk("EMMA2RH Mark-eins halted.\n"); markeins_led("halted."); - while (1) ; + cpu_relax_forever(); } static void markeins_machine_power_off(void) { markeins_led("poweroff."); - while (1) ; + cpu_relax_forever(); } static unsigned long __initdata emma2rh_clock[4] = { diff --git a/arch/mips/fw/arc/init.c b/arch/mips/fw/arc/init.c index 008555969534..90fa8ed75a50 100644 --- a/arch/mips/fw/arc/init.c +++ b/arch/mips/fw/arc/init.c @@ -11,6 +11,7 @@ #include <linux/kernel.h> #include <asm/bootinfo.h> +#include <asm/processor.h> #include <asm/sgialib.h> #include <asm/smp-ops.h> @@ -34,8 +35,7 @@ void __init prom_init(void) if (pb->magic != 0x53435241) { printk(KERN_CRIT "Aieee, bad prom vector magic %08lx\n", (unsigned long) pb->magic); - while(1) - ; + cpu_relax_forever(); } prom_init_cmdline(); diff --git a/arch/mips/include/asm/processor.h b/arch/mips/include/asm/processor.h index aca909bd7841..e1e4cb7833a6 100644 --- a/arch/mips/include/asm/processor.h +++ b/arch/mips/include/asm/processor.h @@ -405,6 +405,12 @@ unsigned long get_wchan(struct task_struct *p); #define cpu_relax() barrier() #endif +static inline void __noreturn cpu_relax_forever(void) +{ + for (;;) + cpu_relax(); +} + /* * Return_address is a replacement for __builtin_return_address(count) * which on certain architectures cannot reasonably be implemented in GCC diff --git a/arch/mips/jz4740/reset.c b/arch/mips/jz4740/reset.c index 1f9f02e54085..c6703d32edb9 100644 --- a/arch/mips/jz4740/reset.c +++ b/arch/mips/jz4740/reset.c @@ -3,19 +3,14 @@ * Copyright (C) 2010, Lars-Peter Clausen <lars@metafoo.de> */ +#include <asm/processor.h> #include <asm/reboot.h> #include "reset.h" static void jz4740_halt(void) { - while (1) { - __asm__(".set push;\n" - ".set mips3;\n" - "wait;\n" - ".set pop;\n" - ); - } + cpu_relax_forever(); } void jz4740_reset_init(void) diff --git a/arch/mips/loongson64/common/reset.c b/arch/mips/loongson64/common/reset.c index ce39e918e4d5..e91137922373 100644 --- a/arch/mips/loongson64/common/reset.c +++ b/arch/mips/loongson64/common/reset.c @@ -10,6 +10,7 @@ #include <linux/pm.h> #include <asm/idle.h> +#include <asm/processor.h> #include <asm/reboot.h> #include <loongson.h> @@ -45,10 +46,7 @@ static void loongson_restart(char *command) void (*fw_restart)(void) = (void *)loongson_sysconf.restart_addr; fw_restart(); - while (1) { - if (cpu_wait) - cpu_wait(); - } + cpu_relax_forever(); #endif } @@ -66,20 +64,14 @@ static void loongson_poweroff(void) void (*fw_poweroff)(void) = (void *)loongson_sysconf.poweroff_addr; fw_poweroff(); - while (1) { - if (cpu_wait) - cpu_wait(); - } + cpu_relax_forever(); #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(); - } + cpu_relax_forever(); } static int __init mips_reboot_setup(void) diff --git a/arch/mips/mm/cerr-sb1.c b/arch/mips/mm/cerr-sb1.c index a3c02df19f6f..c0a6acea532c 100644 --- a/arch/mips/mm/cerr-sb1.c +++ b/arch/mips/mm/cerr-sb1.c @@ -4,6 +4,7 @@ */ #include <linux/sched.h> #include <asm/mipsregs.h> +#include <asm/processor.h> #include <asm/sibyte/sb1250.h> #include <asm/sibyte/sb1250_regs.h> @@ -244,8 +245,7 @@ asmlinkage void sb1_cache_error(void) * undesirable. */ #ifdef CONFIG_SB1_CERR_STALL - while (1) - ; + cpu_relax_forever(); #else panic("unhandled cache error"); #endif diff --git a/arch/mips/pic32/common/reset.c b/arch/mips/pic32/common/reset.c index a5fd7a8e2800..32dcda98aa15 100644 --- a/arch/mips/pic32/common/reset.c +++ b/arch/mips/pic32/common/reset.c @@ -5,6 +5,7 @@ */ #include <linux/init.h> #include <linux/pm.h> +#include <asm/processor.h> #include <asm/reboot.h> #include <asm/mach-pic32/pic32.h> @@ -12,13 +13,7 @@ static void pic32_halt(void) { - while (1) { - __asm__(".set push;\n" - ".set arch=r4000;\n" - "wait;\n" - ".set pop;\n" - ); - } + cpu_relax_forever(); } static void pic32_machine_restart(char *command) diff --git a/arch/mips/pnx833x/common/reset.c b/arch/mips/pnx833x/common/reset.c index b48e83bf912b..8f8b79994dae 100644 --- a/arch/mips/pnx833x/common/reset.c +++ b/arch/mips/pnx833x/common/reset.c @@ -10,6 +10,7 @@ * Nikita Youshchenko <yoush@debian.org>, based on PNX8550 code. */ #include <linux/reboot.h> +#include <asm/processor.h> #include <pnx833x.h> void pnx833x_machine_restart(char *command) @@ -20,9 +21,7 @@ void pnx833x_machine_restart(char *command) void pnx833x_machine_halt(void) { - while (1) - __asm__ __volatile__ ("wait"); - + cpu_relax_forever(); } void pnx833x_machine_power_off(void) diff --git a/arch/mips/sgi-ip22/ip22-reset.c b/arch/mips/sgi-ip22/ip22-reset.c index c374f3ceec38..5355c96a2b89 100644 --- a/arch/mips/sgi-ip22/ip22-reset.c +++ b/arch/mips/sgi-ip22/ip22-reset.c @@ -17,6 +17,7 @@ #include <asm/io.h> #include <asm/irq.h> +#include <asm/processor.h> #include <asm/reboot.h> #include <asm/sgialib.h> #include <asm/sgi/ioc.h> @@ -72,7 +73,7 @@ static void __noreturn sgi_machine_restart(char *command) if (machine_state & MACHINE_SHUTTING_DOWN) sgi_machine_power_off(); sgimc->cpuctrl0 |= SGIMC_CCTRL0_SYSINIT; - while (1); + cpu_relax_forever(); } static void __noreturn sgi_machine_halt(void) diff --git a/arch/mips/sgi-ip27/ip27-berr.c b/arch/mips/sgi-ip27/ip27-berr.c index 73ad29b180fb..81cd434cb9ae 100644 --- a/arch/mips/sgi-ip27/ip27-berr.c +++ b/arch/mips/sgi-ip27/ip27-berr.c @@ -14,6 +14,7 @@ #include <linux/sched/debug.h> #include <linux/sched/signal.h> +#include <asm/processor.h> #include <asm/ptrace.h> #include <asm/sn/addrs.h> #include <asm/sn/arch.h> @@ -73,8 +74,7 @@ int ip27_be_handler(struct pt_regs *regs, int is_fixup) dump_hub_information(errst0, errst1); show_regs(regs); dump_tlb_all(); - while(1); - force_sig(SIGBUS); + cpu_relax_forever(); } void __init ip27_be_init(void) diff --git a/arch/mips/sgi-ip27/ip27-reset.c b/arch/mips/sgi-ip27/ip27-reset.c index e44a15d4f573..bc8c2507ba91 100644 --- a/arch/mips/sgi-ip27/ip27-reset.c +++ b/arch/mips/sgi-ip27/ip27-reset.c @@ -19,6 +19,7 @@ #include <asm/io.h> #include <asm/irq.h> +#include <asm/processor.h> #include <asm/reboot.h> #include <asm/sgialib.h> #include <asm/sn/addrs.h> @@ -26,12 +27,6 @@ #include <asm/sn/gda.h> #include <asm/sn/sn0/hub.h> -void machine_restart(char *command) __noreturn; -void machine_halt(void) __noreturn; -void machine_power_off(void) __noreturn; - -#define noreturn while(1); /* Silence gcc. */ - /* XXX How to pass the reboot command to the firmware??? */ static void ip27_machine_restart(char *command) { @@ -50,7 +45,7 @@ static void ip27_machine_restart(char *command) #else LOCAL_HUB_S(NI_PORT_RESET, NPR_PORTRESET | NPR_LOCALRESET); #endif - noreturn; + cpu_relax_forever(); } static void ip27_machine_halt(void) @@ -64,13 +59,13 @@ static void ip27_machine_halt(void) REMOTE_HUB_S(COMPACT_TO_NASID_NODEID(i), PROMOP_REG, PROMOP_RESTART); LOCAL_HUB_S(NI_PORT_RESET, NPR_PORTRESET | NPR_LOCALRESET); - noreturn; + cpu_relax_forever(); } static void ip27_machine_power_off(void) { /* To do ... */ - noreturn; + cpu_relax_forever(); } void ip27_reboot_setup(void) diff --git a/arch/mips/sgi-ip32/ip32-berr.c b/arch/mips/sgi-ip32/ip32-berr.c index c860f95ab7ed..daa2036aeecc 100644 --- a/arch/mips/sgi-ip32/ip32-berr.c +++ b/arch/mips/sgi-ip32/ip32-berr.c @@ -15,6 +15,7 @@ #include <asm/traps.h> #include <linux/uaccess.h> #include <asm/addrspace.h> +#include <asm/processor.h> #include <asm/ptrace.h> #include <asm/tlbdebug.h> @@ -28,8 +29,7 @@ static int ip32_be_handler(struct pt_regs *regs, int is_fixup) printk("Got %cbe at 0x%lx\n", data ? 'd' : 'i', regs->cp0_epc); show_regs(regs); dump_tlb_all(); - while(1); - force_sig(SIGBUS); + cpu_relax_forever(); } void __init ip32_be_init(void) diff --git a/arch/mips/sgi-ip32/ip32-irq.c b/arch/mips/sgi-ip32/ip32-irq.c index a6a0ff7f5aed..d34a6b4f2096 100644 --- a/arch/mips/sgi-ip32/ip32-irq.c +++ b/arch/mips/sgi-ip32/ip32-irq.c @@ -22,6 +22,7 @@ #include <asm/irq_cpu.h> #include <asm/mipsregs.h> +#include <asm/processor.h> #include <asm/signal.h> #include <asm/time.h> #include <asm/ip32/crime.h> @@ -355,7 +356,7 @@ static void ip32_unknown_interrupt(void) printk("Please mail this report to linux-mips@linux-mips.org\n"); printk("Spinning..."); - while(1) ; + cpu_relax_forever(); } /* CRIME 1.1 appears to deliver all interrupts to this one pin. */ diff --git a/arch/mips/sibyte/common/cfe.c b/arch/mips/sibyte/common/cfe.c index cbf5939ed53a..33143172a644 100644 --- a/arch/mips/sibyte/common/cfe.c +++ b/arch/mips/sibyte/common/cfe.c @@ -13,6 +13,7 @@ #include <linux/smp.h> #include <asm/bootinfo.h> +#include <asm/processor.h> #include <asm/reboot.h> #include <asm/setup.h> #include <asm/sibyte/board.h> @@ -65,7 +66,7 @@ static void __noreturn cfe_linux_exit(void *arg) cfe_exit(warm, 0); printk("cfe_exit returned??\n"); } - while (1); + cpu_relax_forever(); } static void __noreturn cfe_linux_restart(char *command) diff --git a/arch/mips/txx9/rbtx4939/setup.c b/arch/mips/txx9/rbtx4939/setup.c index ef29a9c2ffd6..ec32d8a63d2e 100644 --- a/arch/mips/txx9/rbtx4939/setup.c +++ b/arch/mips/txx9/rbtx4939/setup.c @@ -21,6 +21,7 @@ #include <linux/mtd/mtd.h> #include <linux/mtd/partitions.h> #include <linux/mtd/map.h> +#include <asm/processor.h> #include <asm/reboot.h> #include <asm/txx9/generic.h> #include <asm/txx9/pci.h> @@ -31,8 +32,7 @@ static void rbtx4939_machine_restart(char *command) local_irq_disable(); writeb(1, rbtx4939_reseten_addr); writeb(1, rbtx4939_softreset_addr); - while (1) - ; + cpu_relax_forever(); } static void __init rbtx4939_time_init(void) diff --git a/arch/mips/vr41xx/common/pmu.c b/arch/mips/vr41xx/common/pmu.c index 93cc7e0b30b1..d73178e3d910 100644 --- a/arch/mips/vr41xx/common/pmu.c +++ b/arch/mips/vr41xx/common/pmu.c @@ -72,7 +72,7 @@ static void vr41xx_restart(char *command) { local_irq_disable(); software_reset(); - while (1) ; + cpu_relax_forever(); } static void vr41xx_halt(void) -- 2.21.0
next prev parent reply index Thread overview: 160+ messages / expand[flat|nested] mbox.gz Atom feed top 2019-09-01 15:35 [PATCH 000/120] Linux for the PlayStation 2 Fredrik Noring 2019-09-01 15:35 ` [PATCH 001/120] MIPS: R5900: Initial support for the Emotion Engine in " Fredrik Noring 2019-09-01 21:14 ` Maciej W. Rozycki 2019-09-02 15:09 ` Fredrik Noring 2019-09-01 15:36 ` [PATCH 002/120] MIPS: R5900: Trap the RDHWR instruction as an SQ address exception Fredrik Noring 2019-09-01 22:00 ` Maciej W. Rozycki 2020-11-19 7:15 ` Philippe Mathieu-Daudé 2020-11-19 13:28 ` Maciej W. Rozycki 2020-11-19 13:42 ` Maciej W. Rozycki 2020-12-12 10:58 ` Fredrik Noring 2020-12-12 11:36 ` Maciej W. Rozycki 2020-12-12 12:14 ` Fredrik Noring 2020-12-13 11:43 ` Fredrik Noring 2019-09-01 15:36 ` [PATCH 003/120] MIPS: R5900: Sign-extend o32 system call registers Fredrik Noring 2019-09-01 15:37 ` [PATCH 004/120] MIPS: R5900: Reset bits 127..64 of GPRs in RESTORE_SOME Fredrik Noring 2019-09-01 15:38 ` [PATCH 005/120] MIPS: R5900: Reset the funnel shift amount (SA) register " Fredrik Noring 2019-09-01 15:38 ` [PATCH 006/120] MIPS: R5900: Workaround for the short loop bug Fredrik Noring 2019-09-01 15:39 ` [PATCH 007/120] MIPS: R5900: Add the SYNC.P instruction Fredrik Noring 2019-09-01 15:39 ` [PATCH 008/120] MIPS: R5900: Add implicit SYNC.P to the UASM_i_M[FT]C0 macros Fredrik Noring 2019-09-01 15:39 ` [PATCH 009/120] MIPS: R5900: Add mandatory SYNC.P to all M[FT]C0 instructions Fredrik Noring 2019-09-01 15:39 ` [PATCH 010/120] MIPS: R5900: Workaround exception NOP execution bug (FLX05) Fredrik Noring 2019-09-01 23:01 ` Philippe Mathieu-Daudé 2019-09-01 15:40 ` [PATCH 011/120] MIPS: R5900: Avoid pipeline hazard with the TLBP instruction Fredrik Noring 2019-09-01 17:15 ` Sergei Shtylyov 2019-09-01 17:36 ` Fredrik Noring 2019-09-01 15:40 ` [PATCH 012/120] MIPS: R5900: Avoid pipeline hazards with the TLBW[IR] instructions Fredrik Noring 2019-09-01 15:40 ` [PATCH 013/120] MIPS: R5900: Avoid pipeline hazard with the TLBR instruction Fredrik Noring 2019-09-01 15:41 ` [PATCH 014/120] MIPS: R5900: Install final length of TLB refill handler rather than 256 bytes Fredrik Noring 2019-09-01 15:41 ` [PATCH 015/120] MIPS: R5900: Verify that the TLB refill handler does not overflow Fredrik Noring 2019-09-01 15:41 ` [PATCH 016/120] MIPS: R5900: The ERET instruction has issues with delay slot and CACHE Fredrik Noring 2019-09-01 15:42 ` [PATCH 017/120] MIPS: R5900: Define CACHE instruction operation field encodings Fredrik Noring 2019-09-01 15:42 ` [PATCH 018/120] MIPS: R5900: Workaround where MSB must be 0 for the instruction cache Fredrik Noring 2019-09-01 15:42 ` [PATCH 019/120] MIPS: R5900: Use SYNC.L for data cache and SYNC.P for " Fredrik Noring 2019-09-01 15:43 ` [PATCH 020/120] MIPS: R5900: Define CP0.Config register fields Fredrik Noring 2019-09-01 23:04 ` Philippe Mathieu-Daudé 2019-09-01 15:43 ` [PATCH 021/120] MIPS: R5900: Workaround for CACHE instruction near branch delay slot Fredrik Noring 2019-09-01 15:46 ` [PATCH 022/120] MIPS: R5900: Support 64-bit inq() and outq() macros in 32-bit kernels Fredrik Noring 2019-09-04 1:04 ` Jiaxun Yang 2019-09-04 16:00 ` Maciej W. Rozycki 2019-09-01 15:46 ` [PATCH 023/120] MIPS: R5900: Add MFSA and MTSA instructions for the special SA register Fredrik Noring 2019-09-01 15:46 ` [PATCH 024/120] MIPS: PS2: Define PlayStation 2 I/O port, ROM and RAM address spaces Fredrik Noring 2019-09-01 15:47 ` [PATCH 025/120] MIPS: PS2: Define interrupt controller, DMA and timer IRQs Fredrik Noring 2019-09-01 15:47 ` [PATCH 026/120] MIPS: PS2: Interrupt controller (INTC) IRQ support Fredrik Noring 2019-09-01 15:47 ` [PATCH 027/120] MIPS: PS2: DMAC: Define DMA controller registers Fredrik Noring 2019-09-01 15:47 ` [PATCH 028/120] MIPS: PS2: DMAC: Define tag structures Fredrik Noring 2019-09-01 15:48 ` [PATCH 029/120] MIPS: PS2: DMAC: IRQ support Fredrik Noring 2019-09-01 15:48 ` [PATCH 030/120] MIPS: PS2: Timer support Fredrik Noring 2019-09-01 15:48 ` [PATCH 031/120] MIPS: PS2: SCMD: System command support Fredrik Noring 2019-09-01 15:48 ` [PATCH 032/120] MIPS: PS2: SCMD: System power off command Fredrik Noring 2019-09-01 15:48 ` [PATCH 033/120] MIPS: PS2: SCMD: Read system machine name command Fredrik Noring 2019-09-01 15:49 ` [PATCH 034/120] MIPS: PS2: SCMD: Read system command for the real-time clock (RTC) Fredrik Noring 2019-09-01 15:49 ` [PATCH 035/120] MIPS: PS2: SCMD: Set " Fredrik Noring 2019-09-01 15:49 ` [PATCH 036/120] MIPS: PS2: ROM: Iterate over the files in a given ROM directory Fredrik Noring 2019-09-01 15:49 ` [PATCH 037/120] MIPS: PS2: ROM: Find ROM files with a given name, if they exist Fredrik Noring 2019-09-01 15:50 ` [PATCH 038/120] MIPS: PS2: ROM: Read data for a given ROM file name Fredrik Noring 2019-09-02 9:05 ` Sergei Shtylyov 2019-09-04 11:46 ` Sergei Shtylyov 2019-09-06 13:07 ` Fredrik Noring 2019-09-01 15:50 ` [PATCH 039/120] MIPS: PS2: ROM: Read extended information for a given ROM file Fredrik Noring 2019-09-01 15:50 ` [PATCH 040/120] MIPS: PS2: ROM: Read and decode the ROMVER file Fredrik Noring 2019-09-01 15:52 ` [PATCH 041/120] MIPS: PS2: ROM: Resolve the name for the type in " Fredrik Noring 2019-09-01 15:52 ` [PATCH 042/120] MIPS: PS2: ROM: Resolve the name for the region " Fredrik Noring 2019-09-01 15:53 ` [PATCH 043/120] MIPS: PS2: ROM: Permit /dev/mem to access read-only memory Fredrik Noring 2019-09-01 15:53 ` [PATCH 044/120] MIPS: PS2: ROM: Sysfs module to inspect ROM files Fredrik Noring 2019-09-01 15:54 ` [PATCH 045/120] MIPS: PS2: ROM: Provide extended file information via sysfs Fredrik Noring 2019-09-01 15:54 ` [PATCH 046/120] MIPS: PS2: Identify the machine by model name Fredrik Noring 2019-09-01 15:54 ` [PATCH 047/120] MIPS: PS2: Let the system type be Sony PlayStation 2 Fredrik Noring 2019-09-01 23:09 ` Philippe Mathieu-Daudé 2019-09-01 15:55 ` Fredrik Noring [this message] 2019-09-01 15:55 ` [PATCH 049/120] MIPS: PS2: Power off support Fredrik Noring 2019-09-01 15:55 ` [PATCH 050/120] MIPS: PS2: Real-time clock (RTC) driver Fredrik Noring 2019-09-01 15:56 ` [PATCH 051/120] MIPS: PS2: IOP: I/O processor DMA register PCR2 set and clear Fredrik Noring 2019-09-01 15:57 ` [PATCH 052/120] MIPS: PS2: SIF: Sub-system interface reset of the I/O processor (IOP) Fredrik Noring 2019-09-01 15:57 ` [PATCH 053/120] MIPS: PS2: IOP: Define error numbers, descriptions and errno mapping Fredrik Noring 2019-09-01 15:58 ` [PATCH 054/120] MIPS: PS2: SIF: SIF register write command support Fredrik Noring 2019-09-01 15:58 ` [PATCH 055/120] MIPS: PS2: SIF: Respond to remote procedure call (RPC) bind command Fredrik Noring 2019-09-01 15:58 ` [PATCH 056/120] MIPS: PS2: SIF: Respond to RPC bind end command Fredrik Noring 2019-09-01 15:59 ` [PATCH 057/120] MIPS: PS2: SIF: Reset the SIF0 (sub-to-main) DMA controller Fredrik Noring 2019-09-01 15:59 ` [PATCH 058/120] MIPS: PS2: SIF: Handle SIF0 (sub-to-main) RPCs via interrupts Fredrik Noring 2019-09-01 15:59 ` [PATCH 059/120] MIPS: PS2: SIF: Enable the IOP to issue SIF commands Fredrik Noring 2019-09-01 16:00 ` [PATCH 060/120] MIPS: PS2: SIF: Enable the IOP to issue SIF RPCs Fredrik Noring 2019-09-01 16:01 ` [PATCH 061/120] MIPS: PS2: SIF: sif_rpc_bind() to request an RPC server connection Fredrik Noring 2019-09-01 16:02 ` [PATCH 062/120] MIPS: PS2: SIF: sif_rpc_unbind() to release " Fredrik Noring 2019-09-01 16:02 ` [PATCH 063/120] MIPS: PS2: SIF: sif_rpc() to issue a remote procedure call Fredrik Noring 2019-09-01 16:03 ` [PATCH 064/120] MIPS: PS2: IOP: Permit /dev/mem to access IOP memory Fredrik Noring 2019-09-01 16:03 ` [PATCH 065/120] MIPS: PS2: IOP: I/O processor memory support Fredrik Noring 2019-09-01 16:10 ` [PATCH 066/120] FIXME: Export _dma_cache_{wback,wback_inv,inv} Fredrik Noring 2019-09-01 16:10 ` [PATCH 067/120] MIPS: PS2: IOP: Module linking support Fredrik Noring 2019-09-01 16:11 ` [PATCH 068/120] MIPS: PS2: IOP: Verify that modules are IRX objects Fredrik Noring 2019-09-01 16:11 ` [PATCH 069/120] MIPS: PS2: IOP: Module version compatibility verification Fredrik Noring 2019-09-01 16:11 ` [PATCH 070/120] MIPS: PS2: IOP: Avoid linking already linked library modules Fredrik Noring 2019-09-01 16:12 ` [PATCH 071/120] MIPS: PS2: IOP: Resolve module dependencies Fredrik Noring 2019-09-01 16:12 ` [PATCH 072/120] MIPS: PS2: IOP: SIF printk command support Fredrik Noring 2019-09-01 17:44 ` Sergei Shtylyov 2019-09-01 18:08 ` Fredrik Noring 2019-09-01 16:16 ` [PATCH 073/120] MIPS: PS2: IOP: Heap memory allocate and free Fredrik Noring 2019-09-01 16:16 ` [PATCH 074/120] MIPS: PS2: SIF: Request RPC IRQ command Fredrik Noring 2019-09-01 16:17 ` [PATCH 075/120] MIPS: PS2: IOP: IRQ support Fredrik Noring 2019-09-01 16:17 ` [PATCH 076/120] MIPS: PS2: GS: Define privileged Graphics Synthesizer registers Fredrik Noring 2019-09-01 16:18 ` [PATCH 077/120] MIPS: PS2: GS: Write privileged registers Fredrik Noring 2019-09-01 16:18 ` [PATCH 078/120] MIPS: PS2: GS: Read " Fredrik Noring 2019-09-01 16:18 ` [PATCH 079/120] MIPS: PS2: GS: Define privileged register structures Fredrik Noring 2019-09-01 16:19 ` [PATCH 080/120] MIPS: PS2: GS: Define gs_xorq_imr() Fredrik Noring 2019-09-01 16:20 ` [PATCH 081/120] MIPS: PS2: GS: Privileged register write macros with named fields Fredrik Noring 2019-09-01 16:20 ` [PATCH 082/120] MIPS: PS2: GS: IRQ support Fredrik Noring 2019-09-01 16:21 ` [PATCH 083/120] MIPS: PS2: GS: Define Graphics Synthesizer primitive structures Fredrik Noring 2019-09-01 16:21 ` [PATCH 084/120] MIPS: PS2: GIF: Define Graphics Synthesizer interface structures Fredrik Noring 2019-09-01 16:22 ` [PATCH 085/120] MIPS: PS2: GIF: Graphics Synthesizer interface support Fredrik Noring 2019-09-01 16:22 ` [PATCH 086/120] MIPS: PS2: GS: Graphics Synthesizer device init and video clock Fredrik Noring 2019-09-01 16:23 ` [PATCH 087/120] MIPS: PS2: GS: Compute block count and indices Fredrik Noring 2019-09-01 16:23 ` [PATCH 088/120] MIPS: PS2: GS: Primitive and texel coordinate transformations Fredrik Noring 2019-09-01 16:23 ` [PATCH 089/120] MIPS: PS2: GS: Approximate video region with ROM region Fredrik Noring 2019-09-01 16:24 ` [PATCH 090/120] macro: Extend COUNT_ARGS() from 12 to 32 arguments Fredrik Noring 2019-09-01 16:25 ` [PATCH 091/120] MIPS: PS2: GS: Show privileged registers with sysfs Fredrik Noring 2019-09-01 16:25 ` [PATCH 092/120] MIPS: PS2: GS: Store " Fredrik Noring 2019-09-01 16:25 ` [PATCH 093/120] fbdev: Add fb_warn_once() variant that only prints a warning once Fredrik Noring 2019-09-01 23:12 ` Philippe Mathieu-Daudé 2019-09-01 16:26 ` [PATCH 094/120] MIPS: PS2: FB: Frame buffer driver for the PlayStation 2 Fredrik Noring 2019-09-02 1:12 ` Jiaxun Yang 2019-09-02 14:40 ` Fredrik Noring 2019-09-02 17:47 ` Aaro Koskinen 2019-09-03 14:32 ` Fredrik Noring 2019-09-03 4:01 ` Jiaxun Yang 2019-09-03 17:42 ` Fredrik Noring 2019-09-03 17:59 ` Maciej W. Rozycki 2019-09-03 18:46 ` Fredrik Noring 2020-12-13 13:20 ` Fredrik Noring 2019-09-01 16:30 ` [PATCH 095/120] MIPS: PS2: FB: fb_set_par() standard-definition television support Fredrik Noring 2019-09-01 16:30 ` [PATCH 096/120] MIPS: PS2: FB: fb_set_par() high-definition " Fredrik Noring 2019-09-01 16:31 ` [PATCH 097/120] MIPS: PS2: FB: fb_set_par() VESA computer display mode support Fredrik Noring 2019-09-01 16:31 ` [PATCH 098/120] MIPS: PS2: FB: Preconfigure standard PAL, NTSC and VESA display modes Fredrik Noring 2019-09-01 16:31 ` [PATCH 099/120] MIPS: PS2: FB: Reset the Graphics Synthesizer drawing environment Fredrik Noring 2019-09-01 16:32 ` [PATCH 100/120] MIPS: PS2: FB: Clear the display buffer when changing video modes Fredrik Noring 2019-09-01 16:32 ` [PATCH 101/120] MIPS: PS2: FB: fb_setcolreg() 256 colour pseudo palette support Fredrik Noring 2019-09-01 16:32 ` [PATCH 102/120] MIPS: PS2: FB: fb_settile() with font stored as palette indexed textures Fredrik Noring 2019-09-01 16:32 ` [PATCH 103/120] MIPS: PS2: FB: Hardware accelerated fb_tilecopy() support Fredrik Noring 2019-09-01 16:33 ` [PATCH 104/120] MIPS: PS2: FB: Hardware accelerated fb_tilefill() support Fredrik Noring 2019-09-01 16:33 ` [PATCH 105/120] MIPS: PS2: FB: Simplified fb_tileblit() support Fredrik Noring 2019-09-01 16:33 ` [PATCH 106/120] MIPS: PS2: FB: fb_tilecursor() placeholder Fredrik Noring 2019-09-01 16:33 ` [PATCH 107/120] MIPS: PS2: FB: Hardware accelerated fb_pan_display() support Fredrik Noring 2019-09-01 16:34 ` [PATCH 108/120] MIPS: PS2: FB: fb_blank() display power management signaling (DPMS) Fredrik Noring 2019-09-01 16:34 ` [PATCH 109/120] MIPS: PS2: FB: Disable GIF DMA completion interrupts Fredrik Noring 2019-09-01 16:34 ` [PATCH 110/120] MIPS: PS2: FB: PAL and NTSC grayscale support Fredrik Noring 2019-09-01 16:34 ` [PATCH 111/120] MIPS: PS2: FB: Analogue display mode adjustment module parameter Fredrik Noring 2019-09-01 16:35 ` [PATCH 112/120] USB: OHCI: Support for the PlayStation 2 Fredrik Noring 2019-09-01 16:35 ` [PATCH 113/120] USB: OHCI: OHCI_INTR_MIE workaround for freeze on " Fredrik Noring 2019-09-01 16:35 ` [PATCH 114/120] MIPS: PS2: Workaround for unexpected uLaunchELF CP0 Status user mode Fredrik Noring 2019-09-01 16:35 ` [PATCH 115/120] MIPS: PS2: Define initial PlayStation 2 devices Fredrik Noring 2019-09-01 16:35 ` [PATCH 116/120] MIPS: PS2: Define workarounds related to the PlayStation 2 Fredrik Noring 2019-09-01 16:36 ` [PATCH 117/120] MIPS: PS2: Define R5900 feature overrides Fredrik Noring 2019-09-01 16:36 ` [PATCH 118/120] MIPS: PS2: Define the PlayStation 2 platform Fredrik Noring 2019-09-01 16:36 ` [PATCH 119/120] MIPS: PS2: Initial support for the Sony PlayStation 2 Fredrik Noring 2019-09-01 16:37 ` [PATCH 120/120] MIPS: Fix name of BOOT_MEM_ROM_DATA Fredrik Noring 2019-09-01 23:15 ` Philippe Mathieu-Daudé 2019-09-02 1:02 ` Jiaxun Yang 2019-09-02 15:26 ` Fredrik Noring 2019-09-03 3:50 ` Jiaxun Yang 2019-09-03 16:06 ` Fredrik Noring 2019-09-04 14:19 ` [PATCH 000/120] Linux for the PlayStation 2 Paul Burton 2019-09-05 18:32 ` Fredrik Noring
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=bc2a33e1a99ff0b32f837c08d9bb43f1e3adacc3.1567326213.git.noring@nocrew.org \ --to=noring@nocrew.org \ --cc=linux-mips@vger.kernel.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
Linux-MIPS Archive on lore.kernel.org Archives are clonable: git clone --mirror https://lore.kernel.org/linux-mips/0 linux-mips/git/0.git # If you have public-inbox 1.1+ installed, you may # initialize and index your mirror using the following commands: public-inbox-init -V2 linux-mips linux-mips/ https://lore.kernel.org/linux-mips \ linux-mips@vger.kernel.org public-inbox-index linux-mips Example config snippet for mirrors Newsgroup available over NNTP: nntp://nntp.lore.kernel.org/org.kernel.vger.linux-mips AGPL code for this site: git clone https://public-inbox.org/public-inbox.git