blob: f23d4255a6fa3ad5a13e1655c748010e4a26a1ba [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/* Prom access routines for the sun3x */
2
3#include <linux/types.h>
4#include <linux/kernel.h>
5#include <linux/tty.h>
6#include <linux/console.h>
7#include <linux/init.h>
8#include <linux/mm.h>
9#include <linux/string.h>
10
11#include <asm/page.h>
12#include <asm/pgtable.h>
13#include <asm/bootinfo.h>
14#include <asm/setup.h>
15#include <asm/traps.h>
16#include <asm/sun3xprom.h>
17#include <asm/idprom.h>
18#include <asm/segment.h>
19#include <asm/sun3ints.h>
20#include <asm/openprom.h>
21#include <asm/machines.h>
22
23void (*sun3x_putchar)(int);
24int (*sun3x_getchar)(void);
25int (*sun3x_mayget)(void);
26int (*sun3x_mayput)(int);
27void (*sun3x_prom_reboot)(void);
28e_vector sun3x_prom_abort;
29struct linux_romvec *romvec;
30
31/* prom vector table */
32e_vector *sun3x_prom_vbr;
33
34/* Handle returning to the prom */
35void sun3x_halt(void)
36{
Roman Zippel6ff58012007-05-01 22:32:43 +020037 unsigned long flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -070038
Roman Zippel6ff58012007-05-01 22:32:43 +020039 /* Disable interrupts while we mess with things */
40 local_irq_save(flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -070041
Roman Zippel6ff58012007-05-01 22:32:43 +020042 /* Restore prom vbr */
43 asm volatile ("movec %0,%%vbr" : : "r" ((void*)sun3x_prom_vbr));
Linus Torvalds1da177e2005-04-16 15:20:36 -070044
Roman Zippel6ff58012007-05-01 22:32:43 +020045 /* Restore prom NMI clock */
46// sun3x_disable_intreg(5);
47 sun3_enable_irq(7);
Linus Torvalds1da177e2005-04-16 15:20:36 -070048
Roman Zippel6ff58012007-05-01 22:32:43 +020049 /* Let 'er rip */
50 asm volatile ("trap #14");
Linus Torvalds1da177e2005-04-16 15:20:36 -070051
Roman Zippel6ff58012007-05-01 22:32:43 +020052 /* Restore everything */
53 sun3_disable_irq(7);
54 sun3_enable_irq(5);
Linus Torvalds1da177e2005-04-16 15:20:36 -070055
Roman Zippel6ff58012007-05-01 22:32:43 +020056 asm volatile ("movec %0,%%vbr" : : "r" ((void*)vectors));
57 local_irq_restore(flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -070058}
59
60void sun3x_reboot(void)
61{
Roman Zippel6ff58012007-05-01 22:32:43 +020062 /* This never returns, don't bother saving things */
63 local_irq_disable();
Linus Torvalds1da177e2005-04-16 15:20:36 -070064
Roman Zippel6ff58012007-05-01 22:32:43 +020065 /* Restore prom vbr */
66 asm volatile ("movec %0,%%vbr" : : "r" ((void*)sun3x_prom_vbr));
Linus Torvalds1da177e2005-04-16 15:20:36 -070067
Roman Zippel6ff58012007-05-01 22:32:43 +020068 /* Restore prom NMI clock */
69 sun3_disable_irq(5);
70 sun3_enable_irq(7);
Linus Torvalds1da177e2005-04-16 15:20:36 -070071
Roman Zippel6ff58012007-05-01 22:32:43 +020072 /* Let 'er rip */
73 (*romvec->pv_reboot)("vmlinux");
Linus Torvalds1da177e2005-04-16 15:20:36 -070074}
75
76extern char m68k_debug_device[];
77
78static void sun3x_prom_write(struct console *co, const char *s,
79 unsigned int count)
80{
Roman Zippel6ff58012007-05-01 22:32:43 +020081 while (count--) {
82 if (*s == '\n')
83 sun3x_putchar('\r');
84 sun3x_putchar(*s++);
85 }
Linus Torvalds1da177e2005-04-16 15:20:36 -070086}
87
88/* debug console - write-only */
89
90static struct console sun3x_debug = {
Roman Zippel6ff58012007-05-01 22:32:43 +020091 .name = "debug",
92 .write = sun3x_prom_write,
93 .flags = CON_PRINTBUFFER,
94 .index = -1,
Linus Torvalds1da177e2005-04-16 15:20:36 -070095};
96
97void sun3x_prom_init(void)
98{
Roman Zippel6ff58012007-05-01 22:32:43 +020099 /* Read the vector table */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700100
Roman Zippel6ff58012007-05-01 22:32:43 +0200101 sun3x_putchar = *(void (**)(int)) (SUN3X_P_PUTCHAR);
102 sun3x_getchar = *(int (**)(void)) (SUN3X_P_GETCHAR);
103 sun3x_mayget = *(int (**)(void)) (SUN3X_P_MAYGET);
104 sun3x_mayput = *(int (**)(int)) (SUN3X_P_MAYPUT);
105 sun3x_prom_reboot = *(void (**)(void)) (SUN3X_P_REBOOT);
106 sun3x_prom_abort = *(e_vector *) (SUN3X_P_ABORT);
107 romvec = (struct linux_romvec *)SUN3X_PROM_BASE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700108
Roman Zippel6ff58012007-05-01 22:32:43 +0200109 idprom_init();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700110
Roman Zippel6ff58012007-05-01 22:32:43 +0200111 if (!((idprom->id_machtype & SM_ARCH_MASK) == SM_SUN3X)) {
112 printk("Warning: machine reports strange type %02x\n",
113 idprom->id_machtype);
114 printk("Pretending it's a 3/80, but very afraid...\n");
115 idprom->id_machtype = SM_SUN3X | SM_3_80;
116 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700117
Roman Zippel6ff58012007-05-01 22:32:43 +0200118 /* point trap #14 at abort.
119 * XXX this is futile since we restore the vbr first - oops
120 */
121 vectors[VEC_TRAP14] = sun3x_prom_abort;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700122
Roman Zippel6ff58012007-05-01 22:32:43 +0200123 /* If debug=prom was specified, start the debug console */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700124
Roman Zippel6ff58012007-05-01 22:32:43 +0200125 if (!strcmp(m68k_debug_device, "prom"))
126 register_console(&sun3x_debug);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700127}
128
129/* some prom functions to export */
130int prom_getintdefault(int node, char *property, int deflt)
131{
132 return deflt;
133}
134
135int prom_getbool (int node, char *prop)
136{
137 return 1;
138}
139
140void prom_printf(char *fmt, ...)
141{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700142}
143
144void prom_halt (void)
145{
146 sun3x_halt();
147}
148
149/* Get the idprom and stuff it into buffer 'idbuf'. Returns the
150 * format type. 'num_bytes' is the number of bytes that your idbuf
151 * has space for. Returns 0xff on error.
152 */
153unsigned char
154prom_get_idprom(char *idbuf, int num_bytes)
155{
156 int i;
157
158 /* make a copy of the idprom structure */
Roman Zippel6ff58012007-05-01 22:32:43 +0200159 for (i = 0; i < num_bytes; i++)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700160 idbuf[i] = ((char *)SUN3X_IDPROM)[i];
161
162 return idbuf[0];
163}