2 * Copyright (C) 1995 Linus Torvalds
3 * Adapted from 'alpha' version by Gary Thomas
4 * Modified by Cort Dougan (cort@cs.nmt.edu)
11 #include <linux/errno.h>
12 #include <linux/sched.h>
13 #include <linux/kernel.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/console.h>
32 #include <linux/seq_file.h>
33 #include <linux/root_dev.h>
34 #include <linux/initrd.h>
35 #include <linux/timer.h>
38 #include <asm/pgtable.h>
40 #include <asm/pci-bridge.h>
42 #include <asm/machdep.h>
44 #include <asm/hydra.h>
45 #include <asm/sections.h>
47 #include <asm/i8259.h>
55 void rtas_indicator_progress(char *, unsigned short);
58 EXPORT_SYMBOL(_chrp_type);
60 static struct mpic *chrp_mpic;
62 /* Used for doing CHRP event-scans */
63 DEFINE_PER_CPU(struct timer_list, heartbeat_timer);
64 unsigned long event_scan_interval;
67 * XXX this should be in xmon.h, but putting it there means xmon.h
68 * has to include <linux/interrupt.h> (to get irqreturn_t), which
69 * causes all sorts of problems. -- paulus
71 extern irqreturn_t xmon_irq(int, void *);
73 extern unsigned long loops_per_jiffy;
75 /* To be replaced by RTAS when available */
76 static unsigned int __iomem *briq_SPOR;
79 extern struct smp_ops_t chrp_smp_ops;
82 static const char *gg2_memtypes[4] = {
83 "FPM", "SDRAM", "EDO", "BEDO"
85 static const char *gg2_cachesizes[4] = {
86 "256 KB", "512 KB", "1 MB", "Reserved"
88 static const char *gg2_cachetypes[4] = {
89 "Asynchronous", "Reserved", "Flow-Through Synchronous",
90 "Pipelined Synchronous"
92 static const char *gg2_cachemodes[4] = {
93 "Disabled", "Write-Through", "Copy-Back", "Transparent Mode"
96 static const char *chrp_names[] = {
105 void chrp_show_cpuinfo(struct seq_file *m)
109 struct device_node *root;
110 const char *model = "";
112 root = of_find_node_by_path("/");
114 model = of_get_property(root, "model", NULL);
115 seq_printf(m, "machine\t\t: CHRP %s\n", model);
117 /* longtrail (goldengate) stuff */
118 if (!strncmp(model, "IBM,LongTrail", 13)) {
119 /* VLSI VAS96011/12 `Golden Gate 2' */
121 sdramen = (in_le32(gg2_pci_config_base + GG2_PCI_DRAM_CTRL)
123 for (i = 0; i < (sdramen ? 4 : 6); i++) {
124 t = in_le32(gg2_pci_config_base+
129 switch ((t>>8) & 0x1f) {
152 seq_printf(m, "memory bank %d\t: %s %s\n", i, model,
153 gg2_memtypes[sdramen ? 1 : ((t>>1) & 3)]);
156 t = in_le32(gg2_pci_config_base+GG2_PCI_CC_CTRL);
157 seq_printf(m, "board l2\t: %s %s (%s)\n",
158 gg2_cachesizes[(t>>7) & 3],
159 gg2_cachetypes[(t>>2) & 3],
160 gg2_cachemodes[t & 3]);
166 * Fixes for the National Semiconductor PC78308VUL SuperI/O
168 * Some versions of Open Firmware incorrectly initialize the IRQ settings
169 * for keyboard and mouse
171 static inline void __init sio_write(u8 val, u8 index)
177 static inline u8 __init sio_read(u8 index)
183 static void __init sio_fixup_irq(const char *name, u8 device, u8 level,
186 u8 level0, type0, active;
188 /* select logical device */
189 sio_write(device, 0x07);
190 active = sio_read(0x30);
191 level0 = sio_read(0x70);
192 type0 = sio_read(0x71);
193 if (level0 != level || type0 != type || !active) {
194 printk(KERN_WARNING "sio: %s irq level %d, type %d, %sactive: "
195 "remapping to level %d, type %d, active\n",
196 name, level0, type0, !active ? "in" : "", level, type);
197 sio_write(0x01, 0x30);
198 sio_write(level, 0x70);
199 sio_write(type, 0x71);
203 static void __init sio_init(void)
205 struct device_node *root;
207 if ((root = of_find_node_by_path("/")) &&
208 !strncmp(of_get_property(root, "model", NULL),
209 "IBM,LongTrail", 13)) {
210 /* logical device 0 (KBC/Keyboard) */
211 sio_fixup_irq("keyboard", 0, 1, 2);
212 /* select logical device 1 (KBC/Mouse) */
213 sio_fixup_irq("mouse", 1, 12, 2);
219 static void __init pegasos_set_l2cr(void)
221 struct device_node *np;
223 /* On Pegasos, enable the l2 cache if needed, as the OF forgets it */
224 if (_chrp_type != _CHRP_Pegasos)
227 /* Enable L2 cache if needed */
228 np = of_find_node_by_type(NULL, "cpu");
230 const unsigned int *l2cr = of_get_property(np, "l2cr", NULL);
232 printk ("Pegasos l2cr : no cpu l2cr property found\n");
235 if (!((*l2cr) & 0x80000000)) {
236 printk ("Pegasos l2cr : L2 cache was not active, "
239 _set_L2CR((*l2cr) | 0x80000000);
246 static void briq_restart(char *cmd)
250 out_be32(briq_SPOR, 0);
254 void __init chrp_setup_arch(void)
256 struct device_node *root = of_find_node_by_path("/");
257 const char *machine = NULL;
259 /* init to some ~sane value until calibrate_delay() runs */
260 loops_per_jiffy = 50000000/HZ;
263 machine = of_get_property(root, "model", NULL);
264 if (machine && strncmp(machine, "Pegasos", 7) == 0) {
265 _chrp_type = _CHRP_Pegasos;
266 } else if (machine && strncmp(machine, "IBM", 3) == 0) {
267 _chrp_type = _CHRP_IBM;
268 } else if (machine && strncmp(machine, "MOT", 3) == 0) {
269 _chrp_type = _CHRP_Motorola;
270 } else if (machine && strncmp(machine, "TotalImpact,BRIQ-1", 18) == 0) {
271 _chrp_type = _CHRP_briq;
272 /* Map the SPOR register on briq and change the restart hook */
273 briq_SPOR = ioremap(0xff0000e8, 4);
274 ppc_md.restart = briq_restart;
276 /* Let's assume it is an IBM chrp if all else fails */
277 _chrp_type = _CHRP_IBM;
280 printk("chrp type = %x [%s]\n", _chrp_type, chrp_names[_chrp_type]);
283 if (rtas_token("display-character") >= 0)
284 ppc_md.progress = rtas_progress;
286 /* use RTAS time-of-day routines if available */
287 if (rtas_token("get-time-of-day") != RTAS_UNKNOWN_SERVICE) {
288 ppc_md.get_boot_time = rtas_get_boot_time;
289 ppc_md.get_rtc_time = rtas_get_rtc_time;
290 ppc_md.set_rtc_time = rtas_set_rtc_time;
293 /* On pegasos, enable the L2 cache if not already done by OF */
296 /* Lookup PCI host bridges */
300 * Temporary fixes for PCI devices.
303 hydra_init(); /* Mac I/O */
306 * Fix the Super I/O configuration
310 pci_create_OF_bus_map();
313 * Print the banner, then scroll down so boot progress
314 * can be printed. -- Cort
316 if (ppc_md.progress) ppc_md.progress("Linux/PPC "UTS_RELEASE"\n", 0x0);
320 chrp_event_scan(unsigned long unused)
322 unsigned char log[1024];
325 /* XXX: we should loop until the hardware says no more error logs -- Cort */
326 rtas_call(rtas_token("event-scan"), 4, 1, &ret, 0xffffffff, 0,
328 mod_timer(&__get_cpu_var(heartbeat_timer),
329 jiffies + event_scan_interval);
332 static void chrp_8259_cascade(unsigned int irq, struct irq_desc *desc)
334 unsigned int cascade_irq = i8259_irq();
335 if (cascade_irq != NO_IRQ)
336 generic_handle_irq(cascade_irq);
337 desc->chip->eoi(irq);
341 * Finds the open-pic node and sets up the mpic driver.
343 static void __init chrp_find_openpic(void)
345 struct device_node *np, *root;
347 int isu_size, idu_size;
348 const unsigned int *iranges, *opprop = NULL;
350 unsigned long opaddr;
353 np = of_find_node_by_type(NULL, "open-pic");
356 root = of_find_node_by_path("/");
358 opprop = of_get_property(root, "platform-open-pic", &oplen);
359 na = of_n_addr_cells(root);
361 if (opprop && oplen >= na * sizeof(unsigned int)) {
362 opaddr = opprop[na-1]; /* assume 32-bit */
363 oplen /= na * sizeof(unsigned int);
366 if (of_address_to_resource(np, 0, &r)) {
373 printk(KERN_INFO "OpenPIC at %lx\n", opaddr);
375 iranges = of_get_property(np, "interrupt-ranges", &len);
377 len = 0; /* non-distributed mpic */
379 len /= 2 * sizeof(unsigned int);
382 * The first pair of cells in interrupt-ranges refers to the
383 * IDU; subsequent pairs refer to the ISUs.
386 printk(KERN_ERR "Insufficient addresses for distributed"
387 " OpenPIC (%d < %d)\n", oplen, len);
393 if (len > 0 && iranges[1] != 0) {
394 printk(KERN_INFO "OpenPIC irqs %d..%d in IDU\n",
395 iranges[0], iranges[0] + iranges[1] - 1);
396 idu_size = iranges[1];
399 isu_size = iranges[3];
401 chrp_mpic = mpic_alloc(np, opaddr, MPIC_PRIMARY,
402 isu_size, 0, " MPIC ");
403 if (chrp_mpic == NULL) {
404 printk(KERN_ERR "Failed to allocate MPIC structure\n");
408 for (i = 1; i < len; ++i) {
411 printk(KERN_INFO "OpenPIC irqs %d..%d in ISU at %x\n",
412 iranges[0], iranges[0] + iranges[1] - 1,
414 mpic_assign_isu(chrp_mpic, i - 1, opprop[j]);
417 mpic_init(chrp_mpic);
418 ppc_md.get_irq = mpic_get_irq;
424 #if defined(CONFIG_VT) && defined(CONFIG_INPUT_ADBHID) && defined(CONFIG_XMON)
425 static struct irqaction xmon_irqaction = {
427 .mask = CPU_MASK_NONE,
428 .name = "XMON break",
432 static void __init chrp_find_8259(void)
434 struct device_node *np, *pic = NULL;
435 unsigned long chrp_int_ack = 0;
436 unsigned int cascade_irq;
438 /* Look for cascade */
439 for_each_node_by_type(np, "interrupt-controller")
440 if (of_device_is_compatible(np, "chrp,iic")) {
444 /* Ok, 8259 wasn't found. We need to handle the case where
445 * we have a pegasos that claims to be chrp but doesn't have
446 * a proper interrupt tree
448 if (pic == NULL && chrp_mpic != NULL) {
449 printk(KERN_ERR "i8259: Not found in device-tree"
450 " assuming no legacy interrupts\n");
454 /* Look for intack. In a perfect world, we would look for it on
455 * the ISA bus that holds the 8259 but heh... Works that way. If
456 * we ever see a problem, we can try to re-use the pSeries code here.
457 * Also, Pegasos-type platforms don't have a proper node to start
460 for_each_node_by_name(np, "pci") {
461 const unsigned int *addrp = of_get_property(np,
462 "8259-interrupt-acknowledge", NULL);
466 chrp_int_ack = addrp[of_n_addr_cells(np)-1];
471 printk(KERN_WARNING "Cannot find PCI interrupt acknowledge"
472 " address, polling\n");
474 i8259_init(pic, chrp_int_ack);
475 if (ppc_md.get_irq == NULL) {
476 ppc_md.get_irq = i8259_irq;
477 irq_set_default_host(i8259_get_host());
479 if (chrp_mpic != NULL) {
480 cascade_irq = irq_of_parse_and_map(pic, 0);
481 if (cascade_irq == NO_IRQ)
482 printk(KERN_ERR "i8259: failed to map cascade irq\n");
484 set_irq_chained_handler(cascade_irq,
489 void __init chrp_init_IRQ(void)
491 #if defined(CONFIG_VT) && defined(CONFIG_INPUT_ADBHID) && defined(CONFIG_XMON)
492 struct device_node *kbd;
498 /* Pegasos has no MPIC, those ops would make it crash. It might be an
499 * option to move setting them to after we probe the PIC though
501 if (chrp_mpic != NULL)
502 smp_ops = &chrp_smp_ops;
503 #endif /* CONFIG_SMP */
505 if (_chrp_type == _CHRP_Pegasos)
506 ppc_md.get_irq = i8259_irq;
508 #if defined(CONFIG_VT) && defined(CONFIG_INPUT_ADBHID) && defined(CONFIG_XMON)
509 /* see if there is a keyboard in the device tree
510 with a parent of type "adb" */
511 for_each_node_by_name(kbd, "keyboard")
512 if (kbd->parent && kbd->parent->type
513 && strcmp(kbd->parent->type, "adb") == 0)
517 setup_irq(HYDRA_INT_ADB_NMI, &xmon_irqaction);
524 struct device_node *device;
525 const unsigned int *p = NULL;
531 request_region(0x20,0x20,"pic1");
532 request_region(0xa0,0x20,"pic2");
533 request_region(0x00,0x20,"dma1");
534 request_region(0x40,0x20,"timer");
535 request_region(0x80,0x10,"dma page reg");
536 request_region(0xc0,0x20,"dma2");
538 /* Get the event scan rate for the rtas so we know how
539 * often it expects a heartbeat. -- Cort
541 device = of_find_node_by_name(NULL, "rtas");
543 p = of_get_property(device, "rtas-event-scan-rate", NULL);
546 * Arrange to call chrp_event_scan at least *p times
547 * per minute. We use 59 rather than 60 here so that
548 * the rate will be slightly higher than the minimum.
549 * This all assumes we don't do hotplug CPU on any
550 * machine that needs the event scans done.
552 unsigned long interval, offset;
554 struct timer_list *timer;
556 interval = HZ * 59 / *p;
558 ncpus = num_online_cpus();
559 event_scan_interval = ncpus * interval;
560 for (cpu = 0; cpu < ncpus; ++cpu) {
561 timer = &per_cpu(heartbeat_timer, cpu);
562 setup_timer(timer, chrp_event_scan, 0);
563 timer->expires = jiffies + offset;
564 add_timer_on(timer, cpu);
567 printk("RTAS Event Scan Rate: %u (%lu jiffies)\n",
573 ppc_md.progress(" Have fun! ", 0x7777);
576 static int __init chrp_probe(void)
578 char *dtype = of_get_flat_dt_prop(of_get_flat_dt_root(),
579 "device_type", NULL);
582 if (strcmp(dtype, "chrp"))
585 ISA_DMA_THRESHOLD = ~0L;
586 DMA_MODE_READ = 0x44;
587 DMA_MODE_WRITE = 0x48;
592 define_machine(chrp) {
595 .setup_arch = chrp_setup_arch,
597 .show_cpuinfo = chrp_show_cpuinfo,
598 .init_IRQ = chrp_init_IRQ,
599 .restart = rtas_restart,
600 .power_off = rtas_power_off,
602 .time_init = chrp_time_init,
603 .set_rtc_time = chrp_set_rtc_time,
604 .get_rtc_time = chrp_get_rtc_time,
605 .calibrate_decr = generic_calibrate_decr,
606 .phys_mem_access_prot = pci_phys_mem_access_prot,