]> bbs.cooldavid.org Git - net-next-2.6.git/blame - arch/powerpc/platforms/chrp/setup.c
powerpc: iSeries has only 256 IRQs
[net-next-2.6.git] / arch / powerpc / platforms / chrp / setup.c
CommitLineData
bbd0abda 1/*
bbd0abda
PM
2 * Copyright (C) 1995 Linus Torvalds
3 * Adapted from 'alpha' version by Gary Thomas
4 * Modified by Cort Dougan (cort@cs.nmt.edu)
5 */
6
7/*
8 * bootup setup stuff..
9 */
10
11#include <linux/config.h>
12#include <linux/errno.h>
13#include <linux/sched.h>
14#include <linux/kernel.h>
15#include <linux/mm.h>
16#include <linux/stddef.h>
17#include <linux/unistd.h>
18#include <linux/ptrace.h>
19#include <linux/slab.h>
20#include <linux/user.h>
21#include <linux/a.out.h>
22#include <linux/tty.h>
23#include <linux/major.h>
24#include <linux/interrupt.h>
25#include <linux/reboot.h>
26#include <linux/init.h>
27#include <linux/pci.h>
28#include <linux/version.h>
29#include <linux/adb.h>
30#include <linux/module.h>
31#include <linux/delay.h>
32#include <linux/ide.h>
33#include <linux/console.h>
34#include <linux/seq_file.h>
35#include <linux/root_dev.h>
36#include <linux/initrd.h>
37#include <linux/module.h>
9618edab 38#include <linux/timer.h>
bbd0abda
PM
39
40#include <asm/io.h>
41#include <asm/pgtable.h>
42#include <asm/prom.h>
43#include <asm/gg2.h>
44#include <asm/pci-bridge.h>
45#include <asm/dma.h>
46#include <asm/machdep.h>
47#include <asm/irq.h>
48#include <asm/hydra.h>
49#include <asm/sections.h>
50#include <asm/time.h>
bbd0abda
PM
51#include <asm/i8259.h>
52#include <asm/mpic.h>
53#include <asm/rtas.h>
54#include <asm/xmon.h>
55
35e95e63 56#include "chrp.h"
bbd0abda 57
bbd0abda 58void rtas_indicator_progress(char *, unsigned short);
bbd0abda
PM
59
60int _chrp_type;
61EXPORT_SYMBOL(_chrp_type);
62
63struct mpic *chrp_mpic;
64
9618edab
PM
65/* Used for doing CHRP event-scans */
66DEFINE_PER_CPU(struct timer_list, heartbeat_timer);
67unsigned long event_scan_interval;
68
bbd0abda
PM
69/*
70 * XXX this should be in xmon.h, but putting it there means xmon.h
71 * has to include <linux/interrupt.h> (to get irqreturn_t), which
72 * causes all sorts of problems. -- paulus
73 */
74extern irqreturn_t xmon_irq(int, void *, struct pt_regs *);
75
76extern unsigned long loops_per_jiffy;
77
78#ifdef CONFIG_SMP
79extern struct smp_ops_t chrp_smp_ops;
80#endif
81
82static const char *gg2_memtypes[4] = {
83 "FPM", "SDRAM", "EDO", "BEDO"
84};
85static const char *gg2_cachesizes[4] = {
86 "256 KB", "512 KB", "1 MB", "Reserved"
87};
88static const char *gg2_cachetypes[4] = {
89 "Asynchronous", "Reserved", "Flow-Through Synchronous",
90 "Pipelined Synchronous"
91};
92static const char *gg2_cachemodes[4] = {
93 "Disabled", "Write-Through", "Copy-Back", "Transparent Mode"
94};
95
96void chrp_show_cpuinfo(struct seq_file *m)
97{
98 int i, sdramen;
99 unsigned int t;
100 struct device_node *root;
101 const char *model = "";
102
103 root = find_path_device("/");
104 if (root)
105 model = get_property(root, "model", NULL);
106 seq_printf(m, "machine\t\t: CHRP %s\n", model);
107
108 /* longtrail (goldengate) stuff */
109 if (!strncmp(model, "IBM,LongTrail", 13)) {
110 /* VLSI VAS96011/12 `Golden Gate 2' */
111 /* Memory banks */
112 sdramen = (in_le32(gg2_pci_config_base + GG2_PCI_DRAM_CTRL)
113 >>31) & 1;
114 for (i = 0; i < (sdramen ? 4 : 6); i++) {
115 t = in_le32(gg2_pci_config_base+
116 GG2_PCI_DRAM_BANK0+
117 i*4);
118 if (!(t & 1))
119 continue;
120 switch ((t>>8) & 0x1f) {
121 case 0x1f:
122 model = "4 MB";
123 break;
124 case 0x1e:
125 model = "8 MB";
126 break;
127 case 0x1c:
128 model = "16 MB";
129 break;
130 case 0x18:
131 model = "32 MB";
132 break;
133 case 0x10:
134 model = "64 MB";
135 break;
136 case 0x00:
137 model = "128 MB";
138 break;
139 default:
140 model = "Reserved";
141 break;
142 }
143 seq_printf(m, "memory bank %d\t: %s %s\n", i, model,
144 gg2_memtypes[sdramen ? 1 : ((t>>1) & 3)]);
145 }
146 /* L2 cache */
147 t = in_le32(gg2_pci_config_base+GG2_PCI_CC_CTRL);
148 seq_printf(m, "board l2\t: %s %s (%s)\n",
149 gg2_cachesizes[(t>>7) & 3],
150 gg2_cachetypes[(t>>2) & 3],
151 gg2_cachemodes[t & 3]);
152 }
153}
154
155/*
156 * Fixes for the National Semiconductor PC78308VUL SuperI/O
157 *
158 * Some versions of Open Firmware incorrectly initialize the IRQ settings
159 * for keyboard and mouse
160 */
161static inline void __init sio_write(u8 val, u8 index)
162{
163 outb(index, 0x15c);
164 outb(val, 0x15d);
165}
166
167static inline u8 __init sio_read(u8 index)
168{
169 outb(index, 0x15c);
170 return inb(0x15d);
171}
172
173static void __init sio_fixup_irq(const char *name, u8 device, u8 level,
174 u8 type)
175{
176 u8 level0, type0, active;
177
178 /* select logical device */
179 sio_write(device, 0x07);
180 active = sio_read(0x30);
181 level0 = sio_read(0x70);
182 type0 = sio_read(0x71);
183 if (level0 != level || type0 != type || !active) {
184 printk(KERN_WARNING "sio: %s irq level %d, type %d, %sactive: "
185 "remapping to level %d, type %d, active\n",
186 name, level0, type0, !active ? "in" : "", level, type);
187 sio_write(0x01, 0x30);
188 sio_write(level, 0x70);
189 sio_write(type, 0x71);
190 }
191}
192
193static void __init sio_init(void)
194{
195 struct device_node *root;
196
197 if ((root = find_path_device("/")) &&
198 !strncmp(get_property(root, "model", NULL), "IBM,LongTrail", 13)) {
199 /* logical device 0 (KBC/Keyboard) */
200 sio_fixup_irq("keyboard", 0, 1, 2);
201 /* select logical device 1 (KBC/Mouse) */
202 sio_fixup_irq("mouse", 1, 12, 2);
203 }
204}
205
206
207static void __init pegasos_set_l2cr(void)
208{
209 struct device_node *np;
210
211 /* On Pegasos, enable the l2 cache if needed, as the OF forgets it */
212 if (_chrp_type != _CHRP_Pegasos)
213 return;
214
215 /* Enable L2 cache if needed */
216 np = find_type_devices("cpu");
217 if (np != NULL) {
218 unsigned int *l2cr = (unsigned int *)
219 get_property (np, "l2cr", NULL);
220 if (l2cr == NULL) {
221 printk ("Pegasos l2cr : no cpu l2cr property found\n");
222 return;
223 }
224 if (!((*l2cr) & 0x80000000)) {
225 printk ("Pegasos l2cr : L2 cache was not active, "
226 "activating\n");
227 _set_L2CR(0);
228 _set_L2CR((*l2cr) | 0x80000000);
229 }
230 }
231}
232
233void __init chrp_setup_arch(void)
234{
235 struct device_node *root = find_path_device ("/");
236 char *machine = NULL;
bbd0abda
PM
237
238 /* init to some ~sane value until calibrate_delay() runs */
239 loops_per_jiffy = 50000000/HZ;
240
241 if (root)
242 machine = get_property(root, "model", NULL);
243 if (machine && strncmp(machine, "Pegasos", 7) == 0) {
244 _chrp_type = _CHRP_Pegasos;
245 } else if (machine && strncmp(machine, "IBM", 3) == 0) {
246 _chrp_type = _CHRP_IBM;
247 } else if (machine && strncmp(machine, "MOT", 3) == 0) {
248 _chrp_type = _CHRP_Motorola;
249 } else {
250 /* Let's assume it is an IBM chrp if all else fails */
251 _chrp_type = _CHRP_IBM;
252 }
253 printk("chrp type = %x\n", _chrp_type);
254
255 rtas_initialize();
256 if (rtas_token("display-character") >= 0)
257 ppc_md.progress = rtas_progress;
258
49e16b7b
PM
259 /* use RTAS time-of-day routines if available */
260 if (rtas_token("get-time-of-day") != RTAS_UNKNOWN_SERVICE) {
261 ppc_md.get_boot_time = rtas_get_boot_time;
262 ppc_md.get_rtc_time = rtas_get_rtc_time;
263 ppc_md.set_rtc_time = rtas_set_rtc_time;
264 }
265
bbd0abda
PM
266#ifdef CONFIG_BLK_DEV_INITRD
267 /* this is fine for chrp */
268 initrd_below_start_ok = 1;
269
270 if (initrd_start)
271 ROOT_DEV = Root_RAM0;
272 else
273#endif
274 ROOT_DEV = Root_SDA2; /* sda2 (sda1 is for the kernel) */
275
276 /* On pegasos, enable the L2 cache if not already done by OF */
277 pegasos_set_l2cr();
278
279 /* Lookup PCI host bridges */
280 chrp_find_bridges();
281
282 /*
283 * Temporary fixes for PCI devices.
284 * -- Geert
285 */
286 hydra_init(); /* Mac I/O */
287
288 /*
289 * Fix the Super I/O configuration
290 */
291 sio_init();
292
bbd0abda
PM
293 pci_create_OF_bus_map();
294
e8222502
BH
295#ifdef CONFIG_SMP
296 smp_ops = &chrp_smp_ops;
297#endif /* CONFIG_SMP */
298
bbd0abda
PM
299 /*
300 * Print the banner, then scroll down so boot progress
301 * can be printed. -- Cort
302 */
303 if (ppc_md.progress) ppc_md.progress("Linux/PPC "UTS_RELEASE"\n", 0x0);
304}
305
306void
9618edab 307chrp_event_scan(unsigned long unused)
bbd0abda
PM
308{
309 unsigned char log[1024];
310 int ret = 0;
311
312 /* XXX: we should loop until the hardware says no more error logs -- Cort */
313 rtas_call(rtas_token("event-scan"), 4, 1, &ret, 0xffffffff, 0,
314 __pa(log), 1024);
9618edab
PM
315 mod_timer(&__get_cpu_var(heartbeat_timer),
316 jiffies + event_scan_interval);
bbd0abda
PM
317}
318
319/*
320 * Finds the open-pic node and sets up the mpic driver.
321 */
322static void __init chrp_find_openpic(void)
323{
324 struct device_node *np, *root;
325 int len, i, j, irq_count;
326 int isu_size, idu_size;
327 unsigned int *iranges, *opprop = NULL;
328 int oplen = 0;
329 unsigned long opaddr;
330 int na = 1;
331 unsigned char init_senses[NR_IRQS - NUM_8259_INTERRUPTS];
332
333 np = find_type_devices("open-pic");
334 if (np == NULL)
335 return;
336 root = find_path_device("/");
337 if (root) {
338 opprop = (unsigned int *) get_property
339 (root, "platform-open-pic", &oplen);
340 na = prom_n_addr_cells(root);
341 }
342 if (opprop && oplen >= na * sizeof(unsigned int)) {
343 opaddr = opprop[na-1]; /* assume 32-bit */
344 oplen /= na * sizeof(unsigned int);
345 } else {
575e3216
DW
346 struct resource r;
347 if (of_address_to_resource(np, 0, &r))
bbd0abda 348 return;
575e3216 349 opaddr = r.start;
bbd0abda
PM
350 oplen = 0;
351 }
352
353 printk(KERN_INFO "OpenPIC at %lx\n", opaddr);
354
355 irq_count = NR_IRQS - NUM_ISA_INTERRUPTS - 4; /* leave room for IPIs */
a23414be
PM
356 prom_get_irq_senses(init_senses, NUM_ISA_INTERRUPTS, NR_IRQS - 4);
357 /* i8259 cascade is always positive level */
358 init_senses[0] = IRQ_SENSE_LEVEL | IRQ_POLARITY_POSITIVE;
bbd0abda
PM
359
360 iranges = (unsigned int *) get_property(np, "interrupt-ranges", &len);
361 if (iranges == NULL)
362 len = 0; /* non-distributed mpic */
363 else
364 len /= 2 * sizeof(unsigned int);
365
366 /*
367 * The first pair of cells in interrupt-ranges refers to the
368 * IDU; subsequent pairs refer to the ISUs.
369 */
370 if (oplen < len) {
371 printk(KERN_ERR "Insufficient addresses for distributed"
575e3216 372 " OpenPIC (%d < %d)\n", oplen, len);
bbd0abda
PM
373 len = oplen;
374 }
375
376 isu_size = 0;
377 idu_size = 0;
378 if (len > 0 && iranges[1] != 0) {
379 printk(KERN_INFO "OpenPIC irqs %d..%d in IDU\n",
380 iranges[0], iranges[0] + iranges[1] - 1);
381 idu_size = iranges[1];
382 }
383 if (len > 1)
384 isu_size = iranges[3];
385
386 chrp_mpic = mpic_alloc(opaddr, MPIC_PRIMARY,
387 isu_size, NUM_ISA_INTERRUPTS, irq_count,
388 NR_IRQS - 4, init_senses, irq_count,
389 " MPIC ");
390 if (chrp_mpic == NULL) {
391 printk(KERN_ERR "Failed to allocate MPIC structure\n");
392 return;
393 }
394
395 j = na - 1;
396 for (i = 1; i < len; ++i) {
397 iranges += 2;
398 j += na;
399 printk(KERN_INFO "OpenPIC irqs %d..%d in ISU at %x\n",
400 iranges[0], iranges[0] + iranges[1] - 1,
401 opprop[j]);
402 mpic_assign_isu(chrp_mpic, i - 1, opprop[j]);
403 }
404
405 mpic_init(chrp_mpic);
406 mpic_setup_cascade(NUM_ISA_INTERRUPTS, i8259_irq_cascade, NULL);
407}
408
409#if defined(CONFIG_VT) && defined(CONFIG_INPUT_ADBHID) && defined(XMON)
410static struct irqaction xmon_irqaction = {
411 .handler = xmon_irq,
412 .mask = CPU_MASK_NONE,
413 .name = "XMON break",
414};
415#endif
416
417void __init chrp_init_IRQ(void)
418{
419 struct device_node *np;
420 unsigned long chrp_int_ack = 0;
421#if defined(CONFIG_VT) && defined(CONFIG_INPUT_ADBHID) && defined(XMON)
422 struct device_node *kbd;
423#endif
424
425 for (np = find_devices("pci"); np != NULL; np = np->next) {
426 unsigned int *addrp = (unsigned int *)
427 get_property(np, "8259-interrupt-acknowledge", NULL);
428
429 if (addrp == NULL)
430 continue;
431 chrp_int_ack = addrp[prom_n_addr_cells(np)-1];
432 break;
433 }
434 if (np == NULL)
435 printk(KERN_ERR "Cannot find PCI interrupt acknowledge address\n");
436
437 chrp_find_openpic();
438
439 i8259_init(chrp_int_ack, 0);
440
441 if (_chrp_type == _CHRP_Pegasos)
442 ppc_md.get_irq = i8259_irq;
443 else
444 ppc_md.get_irq = mpic_get_irq;
445
446#if defined(CONFIG_VT) && defined(CONFIG_INPUT_ADBHID) && defined(XMON)
447 /* see if there is a keyboard in the device tree
448 with a parent of type "adb" */
449 for (kbd = find_devices("keyboard"); kbd; kbd = kbd->next)
450 if (kbd->parent && kbd->parent->type
451 && strcmp(kbd->parent->type, "adb") == 0)
452 break;
453 if (kbd)
454 setup_irq(HYDRA_INT_ADB_NMI, &xmon_irqaction);
455#endif
456}
457
458void __init
459chrp_init2(void)
460{
9618edab
PM
461 struct device_node *device;
462 unsigned int *p = NULL;
463
35e95e63
OH
464#ifdef CONFIG_NVRAM
465 chrp_nvram_init();
466#endif
467
bbd0abda
PM
468 request_region(0x20,0x20,"pic1");
469 request_region(0xa0,0x20,"pic2");
470 request_region(0x00,0x20,"dma1");
471 request_region(0x40,0x20,"timer");
472 request_region(0x80,0x10,"dma page reg");
473 request_region(0xc0,0x20,"dma2");
474
9618edab
PM
475 /* Get the event scan rate for the rtas so we know how
476 * often it expects a heartbeat. -- Cort
477 */
478 device = find_devices("rtas");
479 if (device)
480 p = (unsigned int *) get_property
481 (device, "rtas-event-scan-rate", NULL);
482 if (p && *p) {
483 /*
484 * Arrange to call chrp_event_scan at least *p times
485 * per minute. We use 59 rather than 60 here so that
486 * the rate will be slightly higher than the minimum.
487 * This all assumes we don't do hotplug CPU on any
488 * machine that needs the event scans done.
489 */
490 unsigned long interval, offset;
491 int cpu, ncpus;
492 struct timer_list *timer;
493
494 interval = HZ * 59 / *p;
495 offset = HZ;
496 ncpus = num_online_cpus();
497 event_scan_interval = ncpus * interval;
498 for (cpu = 0; cpu < ncpus; ++cpu) {
499 timer = &per_cpu(heartbeat_timer, cpu);
500 setup_timer(timer, chrp_event_scan, 0);
501 timer->expires = jiffies + offset;
502 add_timer_on(timer, cpu);
503 offset += interval;
504 }
505 printk("RTAS Event Scan Rate: %u (%lu jiffies)\n",
506 *p, interval);
507 }
508
bbd0abda
PM
509 if (ppc_md.progress)
510 ppc_md.progress(" Have fun! ", 0x7777);
511}
512
e8222502 513static int __init chrp_probe(void)
bbd0abda 514{
e8222502
BH
515 char *dtype = of_get_flat_dt_prop(of_get_flat_dt_root(),
516 "device_type", NULL);
517 if (dtype == NULL)
518 return 0;
519 if (strcmp(dtype, "chrp"))
520 return 0;
521
bbd0abda
PM
522 ISA_DMA_THRESHOLD = ~0L;
523 DMA_MODE_READ = 0x44;
524 DMA_MODE_WRITE = 0x48;
525 isa_io_base = CHRP_ISA_IO_BASE; /* default value */
526 ppc_do_canonicalize_irqs = 1;
527
528 /* Assume we have an 8259... */
529 __irq_offset_value = NUM_ISA_INTERRUPTS;
530
531 ppc_md.setup_arch = chrp_setup_arch;
532 ppc_md.show_cpuinfo = chrp_show_cpuinfo;
533
534 ppc_md.init_IRQ = chrp_init_IRQ;
535 ppc_md.init = chrp_init2;
536
537 ppc_md.phys_mem_access_prot = pci_phys_mem_access_prot;
538
539 ppc_md.restart = rtas_restart;
540 ppc_md.power_off = rtas_power_off;
541 ppc_md.halt = rtas_halt;
542
543 ppc_md.time_init = chrp_time_init;
03478804 544 ppc_md.calibrate_decr = generic_calibrate_decr;
49e16b7b
PM
545
546 /* this may get overridden with rtas routines later... */
bbd0abda
PM
547 ppc_md.set_rtc_time = chrp_set_rtc_time;
548 ppc_md.get_rtc_time = chrp_get_rtc_time;
bbd0abda
PM
549
550#ifdef CONFIG_SMP
551 smp_ops = &chrp_smp_ops;
552#endif /* CONFIG_SMP */
553}