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/tty.h>
21 #include <linux/major.h>
22 #include <linux/interrupt.h>
23 #include <linux/reboot.h>
24 #include <linux/init.h>
25 #include <linux/pci.h>
26 #include <linux/utsrelease.h>
27 #include <linux/adb.h>
28 #include <linux/module.h>
29 #include <linux/delay.h>
30 #include <linux/console.h>
31 #include <linux/seq_file.h>
32 #include <linux/root_dev.h>
33 #include <linux/initrd.h>
34 #include <linux/timer.h>
37 #include <asm/pgtable.h>
39 #include <asm/pci-bridge.h>
41 #include <asm/machdep.h>
43 #include <asm/hydra.h>
44 #include <asm/sections.h>
46 #include <asm/i8259.h>
54 void rtas_indicator_progress(char *, unsigned short);
57 EXPORT_SYMBOL(_chrp_type
);
59 static struct mpic
*chrp_mpic
;
61 /* Used for doing CHRP event-scans */
62 DEFINE_PER_CPU(struct timer_list
, heartbeat_timer
);
63 unsigned long event_scan_interval
;
65 extern unsigned long loops_per_jiffy
;
67 /* To be replaced by RTAS when available */
68 static unsigned int __iomem
*briq_SPOR
;
71 extern struct smp_ops_t chrp_smp_ops
;
74 static const char *gg2_memtypes
[4] = {
75 "FPM", "SDRAM", "EDO", "BEDO"
77 static const char *gg2_cachesizes
[4] = {
78 "256 KB", "512 KB", "1 MB", "Reserved"
80 static const char *gg2_cachetypes
[4] = {
81 "Asynchronous", "Reserved", "Flow-Through Synchronous",
82 "Pipelined Synchronous"
84 static const char *gg2_cachemodes
[4] = {
85 "Disabled", "Write-Through", "Copy-Back", "Transparent Mode"
88 static const char *chrp_names
[] = {
97 void chrp_show_cpuinfo(struct seq_file
*m
)
101 struct device_node
*root
;
102 const char *model
= "";
104 root
= of_find_node_by_path("/");
106 model
= of_get_property(root
, "model", NULL
);
107 seq_printf(m
, "machine\t\t: CHRP %s\n", model
);
109 /* longtrail (goldengate) stuff */
110 if (model
&& !strncmp(model
, "IBM,LongTrail", 13)) {
111 /* VLSI VAS96011/12 `Golden Gate 2' */
113 sdramen
= (in_le32(gg2_pci_config_base
+ GG2_PCI_DRAM_CTRL
)
115 for (i
= 0; i
< (sdramen
? 4 : 6); i
++) {
116 t
= in_le32(gg2_pci_config_base
+
121 switch ((t
>>8) & 0x1f) {
144 seq_printf(m
, "memory bank %d\t: %s %s\n", i
, model
,
145 gg2_memtypes
[sdramen
? 1 : ((t
>>1) & 3)]);
148 t
= in_le32(gg2_pci_config_base
+GG2_PCI_CC_CTRL
);
149 seq_printf(m
, "board l2\t: %s %s (%s)\n",
150 gg2_cachesizes
[(t
>>7) & 3],
151 gg2_cachetypes
[(t
>>2) & 3],
152 gg2_cachemodes
[t
& 3]);
158 * Fixes for the National Semiconductor PC78308VUL SuperI/O
160 * Some versions of Open Firmware incorrectly initialize the IRQ settings
161 * for keyboard and mouse
163 static inline void __init
sio_write(u8 val
, u8 index
)
169 static inline u8 __init
sio_read(u8 index
)
175 static void __init
sio_fixup_irq(const char *name
, u8 device
, u8 level
,
178 u8 level0
, type0
, active
;
180 /* select logical device */
181 sio_write(device
, 0x07);
182 active
= sio_read(0x30);
183 level0
= sio_read(0x70);
184 type0
= sio_read(0x71);
185 if (level0
!= level
|| type0
!= type
|| !active
) {
186 printk(KERN_WARNING
"sio: %s irq level %d, type %d, %sactive: "
187 "remapping to level %d, type %d, active\n",
188 name
, level0
, type0
, !active
? "in" : "", level
, type
);
189 sio_write(0x01, 0x30);
190 sio_write(level
, 0x70);
191 sio_write(type
, 0x71);
195 static void __init
sio_init(void)
197 struct device_node
*root
;
200 root
= of_find_node_by_path("/");
204 model
= of_get_property(root
, "model", NULL
);
205 if (model
&& !strncmp(model
, "IBM,LongTrail", 13)) {
206 /* logical device 0 (KBC/Keyboard) */
207 sio_fixup_irq("keyboard", 0, 1, 2);
208 /* select logical device 1 (KBC/Mouse) */
209 sio_fixup_irq("mouse", 1, 12, 2);
216 static void __init
pegasos_set_l2cr(void)
218 struct device_node
*np
;
220 /* On Pegasos, enable the l2 cache if needed, as the OF forgets it */
221 if (_chrp_type
!= _CHRP_Pegasos
)
224 /* Enable L2 cache if needed */
225 np
= of_find_node_by_type(NULL
, "cpu");
227 const unsigned int *l2cr
= of_get_property(np
, "l2cr", NULL
);
229 printk ("Pegasos l2cr : no cpu l2cr property found\n");
232 if (!((*l2cr
) & 0x80000000)) {
233 printk ("Pegasos l2cr : L2 cache was not active, "
236 _set_L2CR((*l2cr
) | 0x80000000);
243 static void briq_restart(char *cmd
)
247 out_be32(briq_SPOR
, 0);
252 * Per default, input/output-device points to the keyboard/screen
253 * If no card is installed, the built-in serial port is used as a fallback.
254 * But unfortunately, the firmware does not connect /chosen/{stdin,stdout}
255 * the the built-in serial node. Instead, a /failsafe node is created.
257 static void chrp_init_early(void)
259 struct device_node
*node
;
260 const char *property
;
262 if (strstr(cmd_line
, "console="))
264 /* find the boot console from /chosen/stdout */
267 node
= of_find_node_by_path("/");
270 property
= of_get_property(node
, "model", NULL
);
273 if (strcmp(property
, "Pegasos2"))
275 /* this is a Pegasos2 */
276 property
= of_get_property(of_chosen
, "linux,stdout-path", NULL
);
280 node
= of_find_node_by_path(property
);
283 property
= of_get_property(node
, "device_type", NULL
);
286 if (strcmp(property
, "serial"))
289 * The 9pin connector is either /failsafe
290 * or /pci@80000000/isa@C/serial@i2F8
291 * The optional graphics card has also type 'serial' in VGA mode.
293 property
= of_get_property(node
, "name", NULL
);
296 if (!strcmp(property
, "failsafe") || !strcmp(property
, "serial"))
297 add_preferred_console("ttyS", 0, NULL
);
302 void __init
chrp_setup_arch(void)
304 struct device_node
*root
= of_find_node_by_path("/");
305 const char *machine
= NULL
;
307 /* init to some ~sane value until calibrate_delay() runs */
308 loops_per_jiffy
= 50000000/HZ
;
311 machine
= of_get_property(root
, "model", NULL
);
312 if (machine
&& strncmp(machine
, "Pegasos", 7) == 0) {
313 _chrp_type
= _CHRP_Pegasos
;
314 } else if (machine
&& strncmp(machine
, "IBM", 3) == 0) {
315 _chrp_type
= _CHRP_IBM
;
316 } else if (machine
&& strncmp(machine
, "MOT", 3) == 0) {
317 _chrp_type
= _CHRP_Motorola
;
318 } else if (machine
&& strncmp(machine
, "TotalImpact,BRIQ-1", 18) == 0) {
319 _chrp_type
= _CHRP_briq
;
320 /* Map the SPOR register on briq and change the restart hook */
321 briq_SPOR
= ioremap(0xff0000e8, 4);
322 ppc_md
.restart
= briq_restart
;
324 /* Let's assume it is an IBM chrp if all else fails */
325 _chrp_type
= _CHRP_IBM
;
328 printk("chrp type = %x [%s]\n", _chrp_type
, chrp_names
[_chrp_type
]);
331 if (rtas_token("display-character") >= 0)
332 ppc_md
.progress
= rtas_progress
;
334 /* use RTAS time-of-day routines if available */
335 if (rtas_token("get-time-of-day") != RTAS_UNKNOWN_SERVICE
) {
336 ppc_md
.get_boot_time
= rtas_get_boot_time
;
337 ppc_md
.get_rtc_time
= rtas_get_rtc_time
;
338 ppc_md
.set_rtc_time
= rtas_set_rtc_time
;
341 /* On pegasos, enable the L2 cache if not already done by OF */
344 /* Lookup PCI host bridges */
348 * Temporary fixes for PCI devices.
351 hydra_init(); /* Mac I/O */
354 * Fix the Super I/O configuration
358 pci_create_OF_bus_map();
361 * Print the banner, then scroll down so boot progress
362 * can be printed. -- Cort
364 if (ppc_md
.progress
) ppc_md
.progress("Linux/PPC "UTS_RELEASE
"\n", 0x0);
368 chrp_event_scan(unsigned long unused
)
370 unsigned char log
[1024];
373 /* XXX: we should loop until the hardware says no more error logs -- Cort */
374 rtas_call(rtas_token("event-scan"), 4, 1, &ret
, 0xffffffff, 0,
376 mod_timer(&__get_cpu_var(heartbeat_timer
),
377 jiffies
+ event_scan_interval
);
380 static void chrp_8259_cascade(unsigned int irq
, struct irq_desc
*desc
)
382 unsigned int cascade_irq
= i8259_irq();
383 if (cascade_irq
!= NO_IRQ
)
384 generic_handle_irq(cascade_irq
);
385 desc
->chip
->eoi(irq
);
389 * Finds the open-pic node and sets up the mpic driver.
391 static void __init
chrp_find_openpic(void)
393 struct device_node
*np
, *root
;
395 int isu_size
, idu_size
;
396 const unsigned int *iranges
, *opprop
= NULL
;
398 unsigned long opaddr
;
401 np
= of_find_node_by_type(NULL
, "open-pic");
404 root
= of_find_node_by_path("/");
406 opprop
= of_get_property(root
, "platform-open-pic", &oplen
);
407 na
= of_n_addr_cells(root
);
409 if (opprop
&& oplen
>= na
* sizeof(unsigned int)) {
410 opaddr
= opprop
[na
-1]; /* assume 32-bit */
411 oplen
/= na
* sizeof(unsigned int);
414 if (of_address_to_resource(np
, 0, &r
)) {
421 printk(KERN_INFO
"OpenPIC at %lx\n", opaddr
);
423 iranges
= of_get_property(np
, "interrupt-ranges", &len
);
425 len
= 0; /* non-distributed mpic */
427 len
/= 2 * sizeof(unsigned int);
430 * The first pair of cells in interrupt-ranges refers to the
431 * IDU; subsequent pairs refer to the ISUs.
434 printk(KERN_ERR
"Insufficient addresses for distributed"
435 " OpenPIC (%d < %d)\n", oplen
, len
);
441 if (len
> 0 && iranges
[1] != 0) {
442 printk(KERN_INFO
"OpenPIC irqs %d..%d in IDU\n",
443 iranges
[0], iranges
[0] + iranges
[1] - 1);
444 idu_size
= iranges
[1];
447 isu_size
= iranges
[3];
449 chrp_mpic
= mpic_alloc(np
, opaddr
, MPIC_PRIMARY
,
450 isu_size
, 0, " MPIC ");
451 if (chrp_mpic
== NULL
) {
452 printk(KERN_ERR
"Failed to allocate MPIC structure\n");
456 for (i
= 1; i
< len
; ++i
) {
459 printk(KERN_INFO
"OpenPIC irqs %d..%d in ISU at %x\n",
460 iranges
[0], iranges
[0] + iranges
[1] - 1,
462 mpic_assign_isu(chrp_mpic
, i
- 1, opprop
[j
]);
465 mpic_init(chrp_mpic
);
466 ppc_md
.get_irq
= mpic_get_irq
;
472 #if defined(CONFIG_VT) && defined(CONFIG_INPUT_ADBHID) && defined(CONFIG_XMON)
473 static struct irqaction xmon_irqaction
= {
475 .name
= "XMON break",
479 static void __init
chrp_find_8259(void)
481 struct device_node
*np
, *pic
= NULL
;
482 unsigned long chrp_int_ack
= 0;
483 unsigned int cascade_irq
;
485 /* Look for cascade */
486 for_each_node_by_type(np
, "interrupt-controller")
487 if (of_device_is_compatible(np
, "chrp,iic")) {
491 /* Ok, 8259 wasn't found. We need to handle the case where
492 * we have a pegasos that claims to be chrp but doesn't have
493 * a proper interrupt tree
495 if (pic
== NULL
&& chrp_mpic
!= NULL
) {
496 printk(KERN_ERR
"i8259: Not found in device-tree"
497 " assuming no legacy interrupts\n");
501 /* Look for intack. In a perfect world, we would look for it on
502 * the ISA bus that holds the 8259 but heh... Works that way. If
503 * we ever see a problem, we can try to re-use the pSeries code here.
504 * Also, Pegasos-type platforms don't have a proper node to start
507 for_each_node_by_name(np
, "pci") {
508 const unsigned int *addrp
= of_get_property(np
,
509 "8259-interrupt-acknowledge", NULL
);
513 chrp_int_ack
= addrp
[of_n_addr_cells(np
)-1];
518 printk(KERN_WARNING
"Cannot find PCI interrupt acknowledge"
519 " address, polling\n");
521 i8259_init(pic
, chrp_int_ack
);
522 if (ppc_md
.get_irq
== NULL
) {
523 ppc_md
.get_irq
= i8259_irq
;
524 irq_set_default_host(i8259_get_host());
526 if (chrp_mpic
!= NULL
) {
527 cascade_irq
= irq_of_parse_and_map(pic
, 0);
528 if (cascade_irq
== NO_IRQ
)
529 printk(KERN_ERR
"i8259: failed to map cascade irq\n");
531 set_irq_chained_handler(cascade_irq
,
536 void __init
chrp_init_IRQ(void)
538 #if defined(CONFIG_VT) && defined(CONFIG_INPUT_ADBHID) && defined(CONFIG_XMON)
539 struct device_node
*kbd
;
545 /* Pegasos has no MPIC, those ops would make it crash. It might be an
546 * option to move setting them to after we probe the PIC though
548 if (chrp_mpic
!= NULL
)
549 smp_ops
= &chrp_smp_ops
;
550 #endif /* CONFIG_SMP */
552 if (_chrp_type
== _CHRP_Pegasos
)
553 ppc_md
.get_irq
= i8259_irq
;
555 #if defined(CONFIG_VT) && defined(CONFIG_INPUT_ADBHID) && defined(CONFIG_XMON)
556 /* see if there is a keyboard in the device tree
557 with a parent of type "adb" */
558 for_each_node_by_name(kbd
, "keyboard")
559 if (kbd
->parent
&& kbd
->parent
->type
560 && strcmp(kbd
->parent
->type
, "adb") == 0)
564 setup_irq(HYDRA_INT_ADB_NMI
, &xmon_irqaction
);
571 struct device_node
*device
;
572 const unsigned int *p
= NULL
;
578 request_region(0x20,0x20,"pic1");
579 request_region(0xa0,0x20,"pic2");
580 request_region(0x00,0x20,"dma1");
581 request_region(0x40,0x20,"timer");
582 request_region(0x80,0x10,"dma page reg");
583 request_region(0xc0,0x20,"dma2");
585 /* Get the event scan rate for the rtas so we know how
586 * often it expects a heartbeat. -- Cort
588 device
= of_find_node_by_name(NULL
, "rtas");
590 p
= of_get_property(device
, "rtas-event-scan-rate", NULL
);
593 * Arrange to call chrp_event_scan at least *p times
594 * per minute. We use 59 rather than 60 here so that
595 * the rate will be slightly higher than the minimum.
596 * This all assumes we don't do hotplug CPU on any
597 * machine that needs the event scans done.
599 unsigned long interval
, offset
;
601 struct timer_list
*timer
;
603 interval
= HZ
* 59 / *p
;
605 ncpus
= num_online_cpus();
606 event_scan_interval
= ncpus
* interval
;
607 for (cpu
= 0; cpu
< ncpus
; ++cpu
) {
608 timer
= &per_cpu(heartbeat_timer
, cpu
);
609 setup_timer(timer
, chrp_event_scan
, 0);
610 timer
->expires
= jiffies
+ offset
;
611 add_timer_on(timer
, cpu
);
614 printk("RTAS Event Scan Rate: %u (%lu jiffies)\n",
620 ppc_md
.progress(" Have fun! ", 0x7777);
623 static int __init
chrp_probe(void)
625 char *dtype
= of_get_flat_dt_prop(of_get_flat_dt_root(),
626 "device_type", NULL
);
629 if (strcmp(dtype
, "chrp"))
632 ISA_DMA_THRESHOLD
= ~0L;
633 DMA_MODE_READ
= 0x44;
634 DMA_MODE_WRITE
= 0x48;
639 define_machine(chrp
) {
642 .setup_arch
= chrp_setup_arch
,
644 .init_early
= chrp_init_early
,
645 .show_cpuinfo
= chrp_show_cpuinfo
,
646 .init_IRQ
= chrp_init_IRQ
,
647 .restart
= rtas_restart
,
648 .power_off
= rtas_power_off
,
650 .time_init
= chrp_time_init
,
651 .set_rtc_time
= chrp_set_rtc_time
,
652 .get_rtc_time
= chrp_get_rtc_time
,
653 .calibrate_decr
= generic_calibrate_decr
,
654 .phys_mem_access_prot
= pci_phys_mem_access_prot
,