This commit was generated by cvs2svn to compensate for changes in r517,
[linux-2.6.git] / arch / mips / ddb5xxx / ddb5074 / setup.c
1 /*
2  *  arch/mips/ddb5074/setup.c -- NEC DDB Vrc-5074 setup routines
3  *
4  *  Copyright (C) 2000 Geert Uytterhoeven <geert@sonycom.com>
5  *                     Sony Software Development Center Europe (SDCE), Brussels
6  */
7 #include <linux/config.h>
8 #include <linux/init.h>
9 #include <linux/kbd_ll.h>
10 #include <linux/kernel.h>
11 #include <linux/kdev_t.h>
12 #include <linux/types.h>
13 #include <linux/sched.h>
14 #include <linux/pci.h>
15 #include <linux/ide.h>
16 #include <linux/ioport.h>
17 #include <linux/irq.h>
18
19 #include <asm/addrspace.h>
20 #include <asm/bcache.h>
21 #include <asm/irq.h>
22 #include <asm/reboot.h>
23 #include <asm/gdb-stub.h>
24 #include <asm/time.h>
25 #include <asm/nile4.h>
26 #include <asm/ddb5xxx/ddb5074.h>
27 #include <asm/ddb5xxx/ddb5xxx.h>
28
29 static void (*back_to_prom) (void) = (void (*)(void)) 0xbfc00000;
30
31 static void ddb_machine_restart(char *command)
32 {
33         u32 t;
34
35         /* PCI cold reset */
36         t = nile4_in32(NILE4_PCICTRL + 4);
37         t |= 0x40000000;
38         nile4_out32(NILE4_PCICTRL + 4, t);
39         /* CPU cold reset */
40         t = nile4_in32(NILE4_CPUSTAT);
41         t |= 1;
42         nile4_out32(NILE4_CPUSTAT, t);
43         /* Call the PROM */
44         back_to_prom();
45 }
46
47 static void ddb_machine_halt(void)
48 {
49         printk("DDB Vrc-5074 halted.\n");
50         do {
51         } while (1);
52 }
53
54 static void ddb_machine_power_off(void)
55 {
56         printk("DDB Vrc-5074 halted. Please turn off the power.\n");
57         do {
58         } while (1);
59 }
60
61 extern void rtc_ds1386_init(unsigned long base);
62
63 extern void (*board_timer_setup) (struct irqaction * irq);
64
65 static void __init ddb_timer_init(struct irqaction *irq)
66 {
67         /* set the clock to 1 Hz */
68         nile4_out32(NILE4_T2CTRL, 1000000);
69         /* enable the General-Purpose Timer */
70         nile4_out32(NILE4_T2CTRL + 4, 0x00000001);
71         /* reset timer */
72         nile4_out32(NILE4_T2CNTR, 0);
73         /* enable interrupt */
74         setup_irq(nile4_to_irq(NILE4_INT_GPT), irq);
75         nile4_enable_irq(nile4_to_irq(NILE4_INT_GPT));
76         change_c0_status(ST0_IM,
77                           IE_IRQ0 | IE_IRQ1 | IE_IRQ2 | IE_IRQ3 | IE_IRQ4);
78
79 }
80
81 static void __init ddb_time_init(void)
82 {
83         /* we have ds1396 RTC chip */
84         rtc_ds1386_init(KSEG1ADDR(DDB_PCI_MEM_BASE));
85 }
86
87
88
89 static void __init ddb5074_setup(void)
90 {
91         extern int panic_timeout;
92
93         set_io_port_base(NILE4_PCI_IO_BASE);
94         isa_slot_offset = NILE4_PCI_MEM_BASE;
95         board_timer_setup = ddb_timer_init;
96         board_time_init = ddb_time_init;
97
98
99         _machine_restart = ddb_machine_restart;
100         _machine_halt = ddb_machine_halt;
101         _machine_power_off = ddb_machine_power_off;
102
103         ddb_out32(DDB_BAR0, 0);
104
105         ddb_set_pmr(DDB_PCIINIT0, DDB_PCICMD_IO, 0, 0x10);
106         ddb_set_pmr(DDB_PCIINIT1, DDB_PCICMD_MEM, DDB_PCI_MEM_BASE , 0x10);
107
108         /* Reboot on panic */
109         panic_timeout = 180;
110 }
111
112 early_initcall(ddb5074_setup);
113
114 #define USE_NILE4_SERIAL        0
115
116 #if USE_NILE4_SERIAL
117 #define ns16550_in(reg)         nile4_in8((reg)*8)
118 #define ns16550_out(reg, val)   nile4_out8((reg)*8, (val))
119 #else
120 #define NS16550_BASE            (NILE4_PCI_IO_BASE+0x03f8)
121 static inline u8 ns16550_in(u32 reg)
122 {
123         return *(volatile u8 *) (NS16550_BASE + reg);
124 }
125
126 static inline void ns16550_out(u32 reg, u8 val)
127 {
128         *(volatile u8 *) (NS16550_BASE + reg) = val;
129 }
130 #endif
131
132 #define NS16550_RBR             0
133 #define NS16550_THR             0
134 #define NS16550_DLL             0
135 #define NS16550_IER             1
136 #define NS16550_DLM             1
137 #define NS16550_FCR             2
138 #define NS16550_IIR             2
139 #define NS16550_LCR             3
140 #define NS16550_MCR             4
141 #define NS16550_LSR             5
142 #define NS16550_MSR             6
143 #define NS16550_SCR             7
144
145 #define NS16550_LSR_DR          0x01    /* Data ready */
146 #define NS16550_LSR_OE          0x02    /* Overrun */
147 #define NS16550_LSR_PE          0x04    /* Parity error */
148 #define NS16550_LSR_FE          0x08    /* Framing error */
149 #define NS16550_LSR_BI          0x10    /* Break */
150 #define NS16550_LSR_THRE        0x20    /* Xmit holding register empty */
151 #define NS16550_LSR_TEMT        0x40    /* Xmitter empty */
152 #define NS16550_LSR_ERR         0x80    /* Error */
153
154
155 void _serinit(void)
156 {
157 #if USE_NILE4_SERIAL
158         ns16550_out(NS16550_LCR, 0x80);
159         ns16550_out(NS16550_DLM, 0x00);
160         ns16550_out(NS16550_DLL, 0x36); /* 9600 baud */
161         ns16550_out(NS16550_LCR, 0x00);
162         ns16550_out(NS16550_LCR, 0x03);
163         ns16550_out(NS16550_FCR, 0x47);
164 #else
165         /* done by PMON */
166 #endif
167 }
168
169 void _putc(char c)
170 {
171         while (!(ns16550_in(NS16550_LSR) & NS16550_LSR_THRE));
172         ns16550_out(NS16550_THR, c);
173         if (c == '\n') {
174                 while (!(ns16550_in(NS16550_LSR) & NS16550_LSR_THRE));
175                 ns16550_out(NS16550_THR, '\r');
176         }
177 }
178
179 void _puts(const char *s)
180 {
181         char c;
182         while ((c = *s++))
183                 _putc(c);
184 }
185
186 char _getc(void)
187 {
188         while (!(ns16550_in(NS16550_LSR) & NS16550_LSR_DR));
189         return ns16550_in(NS16550_RBR);
190 }
191
192 int _testc(void)
193 {
194         return (ns16550_in(NS16550_LSR) & NS16550_LSR_DR) != 0;
195 }
196
197
198 /*
199  *  Hexadecimal 7-segment LED
200  */
201 void ddb5074_led_hex(int hex)
202 {
203         outb(hex, 0x80);
204 }
205
206
207 /*
208  *  LEDs D2 and D3, connected to the GPIO pins of the PMU in the ALi M1543
209  */
210 struct pci_dev *pci_pmu = NULL;
211
212 void ddb5074_led_d2(int on)
213 {
214         u8 t;
215
216         if (pci_pmu) {
217                 pci_read_config_byte(pci_pmu, 0x7e, &t);
218                 if (on)
219                         t &= 0x7f;
220                 else
221                         t |= 0x80;
222                 pci_write_config_byte(pci_pmu, 0x7e, t);
223         }
224 }
225
226 void ddb5074_led_d3(int on)
227 {
228         u8 t;
229
230         if (pci_pmu) {
231                 pci_read_config_byte(pci_pmu, 0x7e, &t);
232                 if (on)
233                         t &= 0xbf;
234                 else
235                         t |= 0x40;
236                 pci_write_config_byte(pci_pmu, 0x7e, t);
237         }
238 }