blob: 0898c3f8150851a34e8c4f54fe8c3d7760497cd4 [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>
Linus Torvalds1da177e2005-04-16 15:20:36 -070013#include <asm/setup.h>
14#include <asm/traps.h>
15#include <asm/sun3xprom.h>
16#include <asm/idprom.h>
17#include <asm/segment.h>
18#include <asm/sun3ints.h>
19#include <asm/openprom.h>
20#include <asm/machines.h>
21
22void (*sun3x_putchar)(int);
23int (*sun3x_getchar)(void);
24int (*sun3x_mayget)(void);
25int (*sun3x_mayput)(int);
26void (*sun3x_prom_reboot)(void);
27e_vector sun3x_prom_abort;
28struct linux_romvec *romvec;
29
30/* prom vector table */
31e_vector *sun3x_prom_vbr;
32
33/* Handle returning to the prom */
34void sun3x_halt(void)
35{
Roman Zippel6ff58012007-05-01 22:32:43 +020036 unsigned long flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -070037
Roman Zippel6ff58012007-05-01 22:32:43 +020038 /* Disable interrupts while we mess with things */
39 local_irq_save(flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -070040
Roman Zippel6ff58012007-05-01 22:32:43 +020041 /* Restore prom vbr */
42 asm volatile ("movec %0,%%vbr" : : "r" ((void*)sun3x_prom_vbr));
Linus Torvalds1da177e2005-04-16 15:20:36 -070043
Roman Zippel6ff58012007-05-01 22:32:43 +020044 /* Restore prom NMI clock */
45// sun3x_disable_intreg(5);
46 sun3_enable_irq(7);
Linus Torvalds1da177e2005-04-16 15:20:36 -070047
Roman Zippel6ff58012007-05-01 22:32:43 +020048 /* Let 'er rip */
49 asm volatile ("trap #14");
Linus Torvalds1da177e2005-04-16 15:20:36 -070050
Roman Zippel6ff58012007-05-01 22:32:43 +020051 /* Restore everything */
52 sun3_disable_irq(7);
53 sun3_enable_irq(5);
Linus Torvalds1da177e2005-04-16 15:20:36 -070054
Roman Zippel6ff58012007-05-01 22:32:43 +020055 asm volatile ("movec %0,%%vbr" : : "r" ((void*)vectors));
56 local_irq_restore(flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -070057}
58
59void sun3x_reboot(void)
60{
Roman Zippel6ff58012007-05-01 22:32:43 +020061 /* This never returns, don't bother saving things */
62 local_irq_disable();
Linus Torvalds1da177e2005-04-16 15:20:36 -070063
Roman Zippel6ff58012007-05-01 22:32:43 +020064 /* Restore prom vbr */
65 asm volatile ("movec %0,%%vbr" : : "r" ((void*)sun3x_prom_vbr));
Linus Torvalds1da177e2005-04-16 15:20:36 -070066
Roman Zippel6ff58012007-05-01 22:32:43 +020067 /* Restore prom NMI clock */
68 sun3_disable_irq(5);
69 sun3_enable_irq(7);
Linus Torvalds1da177e2005-04-16 15:20:36 -070070
Roman Zippel6ff58012007-05-01 22:32:43 +020071 /* Let 'er rip */
72 (*romvec->pv_reboot)("vmlinux");
Linus Torvalds1da177e2005-04-16 15:20:36 -070073}
74
Linus Torvalds1da177e2005-04-16 15:20:36 -070075static void sun3x_prom_write(struct console *co, const char *s,
76 unsigned int count)
77{
Roman Zippel6ff58012007-05-01 22:32:43 +020078 while (count--) {
79 if (*s == '\n')
80 sun3x_putchar('\r');
81 sun3x_putchar(*s++);
82 }
Linus Torvalds1da177e2005-04-16 15:20:36 -070083}
84
85/* debug console - write-only */
86
87static struct console sun3x_debug = {
Roman Zippel6ff58012007-05-01 22:32:43 +020088 .name = "debug",
89 .write = sun3x_prom_write,
90 .flags = CON_PRINTBUFFER,
91 .index = -1,
Linus Torvalds1da177e2005-04-16 15:20:36 -070092};
93
Al Viro66a3f822007-07-20 04:33:28 +010094void __init sun3x_prom_init(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -070095{
Roman Zippel6ff58012007-05-01 22:32:43 +020096 /* Read the vector table */
Linus Torvalds1da177e2005-04-16 15:20:36 -070097
Roman Zippel6ff58012007-05-01 22:32:43 +020098 sun3x_putchar = *(void (**)(int)) (SUN3X_P_PUTCHAR);
99 sun3x_getchar = *(int (**)(void)) (SUN3X_P_GETCHAR);
100 sun3x_mayget = *(int (**)(void)) (SUN3X_P_MAYGET);
101 sun3x_mayput = *(int (**)(int)) (SUN3X_P_MAYPUT);
102 sun3x_prom_reboot = *(void (**)(void)) (SUN3X_P_REBOOT);
103 sun3x_prom_abort = *(e_vector *) (SUN3X_P_ABORT);
104 romvec = (struct linux_romvec *)SUN3X_PROM_BASE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700105
Roman Zippel6ff58012007-05-01 22:32:43 +0200106 idprom_init();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700107
Roman Zippel6ff58012007-05-01 22:32:43 +0200108 if (!((idprom->id_machtype & SM_ARCH_MASK) == SM_SUN3X)) {
109 printk("Warning: machine reports strange type %02x\n",
110 idprom->id_machtype);
111 printk("Pretending it's a 3/80, but very afraid...\n");
112 idprom->id_machtype = SM_SUN3X | SM_3_80;
113 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700114
Roman Zippel6ff58012007-05-01 22:32:43 +0200115 /* point trap #14 at abort.
116 * XXX this is futile since we restore the vbr first - oops
117 */
118 vectors[VEC_TRAP14] = sun3x_prom_abort;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700119}
120
Roman Zippeld6713b42007-05-01 22:32:45 +0200121static int __init sun3x_debug_setup(char *arg)
122{
123 /* If debug=prom was specified, start the debug console */
124 if (MACH_IS_SUN3X && !strcmp(arg, "prom"))
125 register_console(&sun3x_debug);
126 return 0;
127}
128
129early_param("debug", sun3x_debug_setup);
130
Linus Torvalds1da177e2005-04-16 15:20:36 -0700131/* some prom functions to export */
132int prom_getintdefault(int node, char *property, int deflt)
133{
134 return deflt;
135}
136
137int prom_getbool (int node, char *prop)
138{
139 return 1;
140}
141
142void prom_printf(char *fmt, ...)
143{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700144}
145
146void prom_halt (void)
147{
148 sun3x_halt();
149}
150
151/* Get the idprom and stuff it into buffer 'idbuf'. Returns the
152 * format type. 'num_bytes' is the number of bytes that your idbuf
153 * has space for. Returns 0xff on error.
154 */
155unsigned char
156prom_get_idprom(char *idbuf, int num_bytes)
157{
158 int i;
159
160 /* make a copy of the idprom structure */
Roman Zippel6ff58012007-05-01 22:32:43 +0200161 for (i = 0; i < num_bytes; i++)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700162 idbuf[i] = ((char *)SUN3X_IDPROM)[i];
163
164 return idbuf[0];
165}