MIPS: eBPF: Fix icache flush end address
[linux/fpc-iii.git] / arch / mips / jazz / reset.c
blob052b01f5d935ac44b310362e7b6f90e921529687
1 // SPDX-License-Identifier: GPL-2.0
2 /*
3 * Reset a Jazz machine.
5 * We don't trust the firmware so we do it the classic way by poking and
6 * stabbing at the keyboard controller ...
7 */
8 #include <linux/jiffies.h>
9 #include <asm/jazz.h>
11 #define KBD_STAT_IBF 0x02 /* Keyboard input buffer full */
13 static void jazz_write_output(unsigned char val)
15 int status;
17 do {
18 status = jazz_kh->command;
19 } while (status & KBD_STAT_IBF);
20 jazz_kh->data = val;
23 static void jazz_write_command(unsigned char val)
25 int status;
27 do {
28 status = jazz_kh->command;
29 } while (status & KBD_STAT_IBF);
30 jazz_kh->command = val;
33 static unsigned char jazz_read_status(void)
35 return jazz_kh->command;
38 static inline void kb_wait(void)
40 unsigned long start = jiffies;
41 unsigned long timeout = start + HZ/2;
43 do {
44 if (! (jazz_read_status() & 0x02))
45 return;
46 } while (time_before_eq(jiffies, timeout));
49 void jazz_machine_restart(char *command)
51 while(1) {
52 kb_wait();
53 jazz_write_command(0xd1);
54 kb_wait();
55 jazz_write_output(0x00);