blob: 9c08ff3222900d6e0475b01967e79abfc7cda018 [file] [log] [blame]
Paul Mackerrasbbd0abd2005-10-26 21:45:56 +10001/*
Paul Mackerrasbbd0abd2005-10-26 21:45:56 +10002 * 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
Paul Mackerrasbbd0abd2005-10-26 21:45:56 +100011#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>
Sam Ravnborg63104ee2006-07-03 23:30:54 +020027#include <linux/utsrelease.h>
Paul Mackerrasbbd0abd2005-10-26 21:45:56 +100028#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>
Paul Mackerras9618eda2006-03-27 21:48:57 +110037#include <linux/timer.h>
Paul Mackerrasbbd0abd2005-10-26 21:45:56 +100038
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>
Paul Mackerrasbbd0abd2005-10-26 21:45:56 +100050#include <asm/i8259.h>
51#include <asm/mpic.h>
52#include <asm/rtas.h>
53#include <asm/xmon.h>
54
Olaf Hering35e95e62005-10-28 17:46:19 -070055#include "chrp.h"
Paul Mackerrasbbd0abd2005-10-26 21:45:56 +100056
Paul Mackerrasbbd0abd2005-10-26 21:45:56 +100057void rtas_indicator_progress(char *, unsigned short);
Paul Mackerrasbbd0abd2005-10-26 21:45:56 +100058
59int _chrp_type;
60EXPORT_SYMBOL(_chrp_type);
61
Benjamin Herrenschmidt0ebfff12006-07-03 21:36:01 +100062static struct mpic *chrp_mpic;
Paul Mackerrasbbd0abd2005-10-26 21:45:56 +100063
Paul Mackerras9618eda2006-03-27 21:48:57 +110064/* Used for doing CHRP event-scans */
65DEFINE_PER_CPU(struct timer_list, heartbeat_timer);
66unsigned long event_scan_interval;
67
Paul Mackerrasbbd0abd2005-10-26 21:45:56 +100068/*
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 */
73extern irqreturn_t xmon_irq(int, void *, struct pt_regs *);
74
75extern unsigned long loops_per_jiffy;
76
77#ifdef CONFIG_SMP
78extern struct smp_ops_t chrp_smp_ops;
79#endif
80
81static const char *gg2_memtypes[4] = {
82 "FPM", "SDRAM", "EDO", "BEDO"
83};
84static const char *gg2_cachesizes[4] = {
85 "256 KB", "512 KB", "1 MB", "Reserved"
86};
87static const char *gg2_cachetypes[4] = {
88 "Asynchronous", "Reserved", "Flow-Through Synchronous",
89 "Pipelined Synchronous"
90};
91static const char *gg2_cachemodes[4] = {
92 "Disabled", "Write-Through", "Copy-Back", "Transparent Mode"
93};
94
95void 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 */
160static inline void __init sio_write(u8 val, u8 index)
161{
162 outb(index, 0x15c);
163 outb(val, 0x15d);
164}
165
166static inline u8 __init sio_read(u8 index)
167{
168 outb(index, 0x15c);
169 return inb(0x15d);
170}
171
172static 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
192static 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
206static 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
232void __init chrp_setup_arch(void)
233{
234 struct device_node *root = find_path_device ("/");
235 char *machine = NULL;
Paul Mackerrasbbd0abd2005-10-26 21:45:56 +1000236
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
Paul Mackerras49e16b72005-11-18 15:52:38 +1100258 /* 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
Paul Mackerrasbbd0abd2005-10-26 21:45:56 +1000265#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
Paul Mackerrasbbd0abd2005-10-26 21:45:56 +1000292 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
301void
Paul Mackerras9618eda2006-03-27 21:48:57 +1100302chrp_event_scan(unsigned long unused)
Paul Mackerrasbbd0abd2005-10-26 21:45:56 +1000303{
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);
Paul Mackerras9618eda2006-03-27 21:48:57 +1100310 mod_timer(&__get_cpu_var(heartbeat_timer),
311 jiffies + event_scan_interval);
Paul Mackerrasbbd0abd2005-10-26 21:45:56 +1000312}
313
Benjamin Herrenschmidt0ebfff12006-07-03 21:36:01 +1000314static void chrp_8259_cascade(unsigned int irq, struct irq_desc *desc,
315 struct pt_regs *regs)
Benjamin Herrenschmidtb9e5b4e2006-07-03 19:32:51 +1000316{
Benjamin Herrenschmidt0ebfff12006-07-03 21:36:01 +1000317 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);
Benjamin Herrenschmidtb9e5b4e2006-07-03 19:32:51 +1000321}
322
Paul Mackerrasbbd0abd2005-10-26 21:45:56 +1000323/*
324 * Finds the open-pic node and sets up the mpic driver.
325 */
326static void __init chrp_find_openpic(void)
327{
328 struct device_node *np, *root;
Benjamin Herrenschmidt0ebfff12006-07-03 21:36:01 +1000329 int len, i, j;
Paul Mackerrasbbd0abd2005-10-26 21:45:56 +1000330 int isu_size, idu_size;
331 unsigned int *iranges, *opprop = NULL;
332 int oplen = 0;
333 unsigned long opaddr;
334 int na = 1;
Paul Mackerrasbbd0abd2005-10-26 21:45:56 +1000335
Benjamin Herrenschmidt0ebfff12006-07-03 21:36:01 +1000336 np = of_find_node_by_type(NULL, "open-pic");
Paul Mackerrasbbd0abd2005-10-26 21:45:56 +1000337 if (np == NULL)
338 return;
Benjamin Herrenschmidt0ebfff12006-07-03 21:36:01 +1000339 root = of_find_node_by_path("/");
Paul Mackerrasbbd0abd2005-10-26 21:45:56 +1000340 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 {
David Woodhouse575e3212006-01-14 00:13:49 +0000349 struct resource r;
Benjamin Herrenschmidt0ebfff12006-07-03 21:36:01 +1000350 if (of_address_to_resource(np, 0, &r)) {
351 goto bail;
352 }
David Woodhouse575e3212006-01-14 00:13:49 +0000353 opaddr = r.start;
Paul Mackerrasbbd0abd2005-10-26 21:45:56 +1000354 oplen = 0;
355 }
356
357 printk(KERN_INFO "OpenPIC at %lx\n", opaddr);
358
Paul Mackerrasbbd0abd2005-10-26 21:45:56 +1000359 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"
David Woodhouse575e3212006-01-14 00:13:49 +0000371 " OpenPIC (%d < %d)\n", oplen, len);
Paul Mackerrasbbd0abd2005-10-26 21:45:56 +1000372 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
Benjamin Herrenschmidt0ebfff12006-07-03 21:36:01 +1000385 chrp_mpic = mpic_alloc(np, opaddr, MPIC_PRIMARY,
386 isu_size, 0, " MPIC ");
Paul Mackerrasbbd0abd2005-10-26 21:45:56 +1000387 if (chrp_mpic == NULL) {
388 printk(KERN_ERR "Failed to allocate MPIC structure\n");
Benjamin Herrenschmidt0ebfff12006-07-03 21:36:01 +1000389 goto bail;
Paul Mackerrasbbd0abd2005-10-26 21:45:56 +1000390 }
Paul Mackerrasbbd0abd2005-10-26 21:45:56 +1000391 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);
Benjamin Herrenschmidt0ebfff12006-07-03 21:36:01 +1000402 ppc_md.get_irq = mpic_get_irq;
403 bail:
404 of_node_put(root);
405 of_node_put(np);
Paul Mackerrasbbd0abd2005-10-26 21:45:56 +1000406}
407
408#if defined(CONFIG_VT) && defined(CONFIG_INPUT_ADBHID) && defined(XMON)
409static struct irqaction xmon_irqaction = {
410 .handler = xmon_irq,
411 .mask = CPU_MASK_NONE,
412 .name = "XMON break",
413};
414#endif
415
Benjamin Herrenschmidt0ebfff12006-07-03 21:36:01 +1000416static void __init chrp_find_8259(void)
Paul Mackerrasbbd0abd2005-10-26 21:45:56 +1000417{
Benjamin Herrenschmidt0ebfff12006-07-03 21:36:01 +1000418 struct device_node *np, *pic = NULL;
Paul Mackerrasbbd0abd2005-10-26 21:45:56 +1000419 unsigned long chrp_int_ack = 0;
Benjamin Herrenschmidt0ebfff12006-07-03 21:36:01 +1000420 unsigned int cascade_irq;
Paul Mackerrasbbd0abd2005-10-26 21:45:56 +1000421
Benjamin Herrenschmidt0ebfff12006-07-03 21:36:01 +1000422 /* 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 */
Paul Mackerrasbbd0abd2005-10-26 21:45:56 +1000444 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)
Benjamin Herrenschmidt0ebfff12006-07-03 21:36:01 +1000454 printk(KERN_WARNING "Cannot find PCI interrupt acknowledge"
455 " address, polling\n");
Paul Mackerrasbbd0abd2005-10-26 21:45:56 +1000456
Benjamin Herrenschmidt0ebfff12006-07-03 21:36:01 +1000457 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
470void __init chrp_init_IRQ(void)
471{
472#if defined(CONFIG_VT) && defined(CONFIG_INPUT_ADBHID) && defined(XMON)
473 struct device_node *kbd;
474#endif
Paul Mackerrasbbd0abd2005-10-26 21:45:56 +1000475 chrp_find_openpic();
Benjamin Herrenschmidt0ebfff12006-07-03 21:36:01 +1000476 chrp_find_8259();
Paul Mackerrasbbd0abd2005-10-26 21:45:56 +1000477
Benjamin Herrenschmidt1e031d62006-07-04 14:09:36 +1000478#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
Paul Mackerrasbbd0abd2005-10-26 21:45:56 +1000486 if (_chrp_type == _CHRP_Pegasos)
487 ppc_md.get_irq = i8259_irq;
Paul Mackerrasbbd0abd2005-10-26 21:45:56 +1000488
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
501void __init
502chrp_init2(void)
503{
Paul Mackerras9618eda2006-03-27 21:48:57 +1100504 struct device_node *device;
505 unsigned int *p = NULL;
506
Olaf Hering35e95e62005-10-28 17:46:19 -0700507#ifdef CONFIG_NVRAM
508 chrp_nvram_init();
509#endif
510
Paul Mackerrasbbd0abd2005-10-26 21:45:56 +1000511 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
Paul Mackerras9618eda2006-03-27 21:48:57 +1100518 /* 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
Paul Mackerrasbbd0abd2005-10-26 21:45:56 +1000552 if (ppc_md.progress)
553 ppc_md.progress(" Have fun! ", 0x7777);
554}
555
Benjamin Herrenschmidte8222502006-03-28 23:15:54 +1100556static int __init chrp_probe(void)
Paul Mackerrasbbd0abd2005-10-26 21:45:56 +1000557{
Benjamin Herrenschmidte8222502006-03-28 23:15:54 +1100558 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
Paul Mackerrasbbd0abd2005-10-26 21:45:56 +1000565 ISA_DMA_THRESHOLD = ~0L;
566 DMA_MODE_READ = 0x44;
567 DMA_MODE_WRITE = 0x48;
568 isa_io_base = CHRP_ISA_IO_BASE; /* default value */
Paul Mackerrasbbd0abd2005-10-26 21:45:56 +1000569
Paul Mackerrasb86756a2006-04-03 16:37:23 +1000570 return 1;
Paul Mackerrasbbd0abd2005-10-26 21:45:56 +1000571}
Paul Mackerrasb86756a2006-04-03 16:37:23 +1000572
573define_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,
Paul Mackerrasb86756a2006-04-03 16:37:23 +1000580 .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};