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