1 // SPDX-License-Identifier: GPL-2.0 << 2 /* 1 /* 3 * linux/arch/mips/sni/process.c 2 * linux/arch/mips/sni/process.c 4 * 3 * 5 * Reset a SNI machine. 4 * Reset a SNI machine. 6 */ 5 */ 7 #include <linux/delay.h> << 8 << 9 #include <asm/io.h> 6 #include <asm/io.h> 10 #include <asm/reboot.h> 7 #include <asm/reboot.h> 11 #include <asm/sni.h> 8 #include <asm/sni.h> 12 9 13 /* 10 /* 14 * This routine reboots the machine by asking 11 * This routine reboots the machine by asking the keyboard 15 * controller to pulse the reset-line low. We 12 * controller to pulse the reset-line low. We try that for a while, 16 * and if it doesn't work, we do some other st 13 * and if it doesn't work, we do some other stupid things. 17 */ 14 */ 18 static inline void kb_wait(void) 15 static inline void kb_wait(void) 19 { 16 { 20 int i; 17 int i; 21 18 22 for (i = 0; i < 0x10000; i++) 19 for (i = 0; i < 0x10000; i++) 23 if ((inb_p(0x64) & 0x02) == 0) 20 if ((inb_p(0x64) & 0x02) == 0) 24 break; 21 break; 25 } 22 } 26 23 27 /* XXX This ends up at the ARC firmware prompt 24 /* XXX This ends up at the ARC firmware prompt ... */ 28 void sni_machine_restart(char *command) 25 void sni_machine_restart(char *command) 29 { 26 { 30 int i; !! 27 int i, j; 31 28 32 /* This does a normal via the keyboard 29 /* This does a normal via the keyboard controller like a PC. 33 We can do that easier ... */ 30 We can do that easier ... */ 34 local_irq_disable(); 31 local_irq_disable(); 35 for (;;) { 32 for (;;) { 36 for (i = 0; i < 100; i++) { 33 for (i = 0; i < 100; i++) { 37 kb_wait(); 34 kb_wait(); 38 udelay(50); !! 35 for (j = 0; j < 100000 ; j++) >> 36 /* nothing */; 39 outb_p(0xfe, 0x64); 37 outb_p(0xfe, 0x64); /* pulse reset low */ 40 udelay(50); << 41 } 38 } 42 } 39 } 43 } 40 } 44 41 45 void sni_machine_power_off(void) 42 void sni_machine_power_off(void) 46 { 43 { 47 *(volatile unsigned char *)PCIMT_CSWCS 44 *(volatile unsigned char *)PCIMT_CSWCSM = 0xfd; 48 } 45 } 49 46
Linux® is a registered trademark of Linus Torvalds in the United States and other countries.
TOMOYO® is a registered trademark of NTT DATA CORPORATION.