Paul Mackerras | bbd0abd | 2005-10-26 21:45:56 +1000 | [diff] [blame] | 1 | /* |
Paul Mackerras | bbd0abd | 2005-10-26 21:45:56 +1000 | [diff] [blame] | 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> |
Paul Mackerras | 9618eda | 2006-03-27 21:48:57 +1100 | [diff] [blame^] | 38 | #include <linux/timer.h> |
Paul Mackerras | bbd0abd | 2005-10-26 21:45:56 +1000 | [diff] [blame] | 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> |
Paul Mackerras | bbd0abd | 2005-10-26 21:45:56 +1000 | [diff] [blame] | 51 | #include <asm/i8259.h> |
| 52 | #include <asm/mpic.h> |
| 53 | #include <asm/rtas.h> |
| 54 | #include <asm/xmon.h> |
| 55 | |
Olaf Hering | 35e95e6 | 2005-10-28 17:46:19 -0700 | [diff] [blame] | 56 | #include "chrp.h" |
Paul Mackerras | bbd0abd | 2005-10-26 21:45:56 +1000 | [diff] [blame] | 57 | |
Paul Mackerras | bbd0abd | 2005-10-26 21:45:56 +1000 | [diff] [blame] | 58 | void rtas_indicator_progress(char *, unsigned short); |
Paul Mackerras | bbd0abd | 2005-10-26 21:45:56 +1000 | [diff] [blame] | 59 | |
| 60 | int _chrp_type; |
| 61 | EXPORT_SYMBOL(_chrp_type); |
| 62 | |
| 63 | struct mpic *chrp_mpic; |
| 64 | |
Paul Mackerras | 9618eda | 2006-03-27 21:48:57 +1100 | [diff] [blame^] | 65 | /* Used for doing CHRP event-scans */ |
| 66 | DEFINE_PER_CPU(struct timer_list, heartbeat_timer); |
| 67 | unsigned long event_scan_interval; |
| 68 | |
Paul Mackerras | bbd0abd | 2005-10-26 21:45:56 +1000 | [diff] [blame] | 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 | */ |
| 74 | extern irqreturn_t xmon_irq(int, void *, struct pt_regs *); |
| 75 | |
| 76 | extern unsigned long loops_per_jiffy; |
| 77 | |
| 78 | #ifdef CONFIG_SMP |
| 79 | extern struct smp_ops_t chrp_smp_ops; |
| 80 | #endif |
| 81 | |
| 82 | static const char *gg2_memtypes[4] = { |
| 83 | "FPM", "SDRAM", "EDO", "BEDO" |
| 84 | }; |
| 85 | static const char *gg2_cachesizes[4] = { |
| 86 | "256 KB", "512 KB", "1 MB", "Reserved" |
| 87 | }; |
| 88 | static const char *gg2_cachetypes[4] = { |
| 89 | "Asynchronous", "Reserved", "Flow-Through Synchronous", |
| 90 | "Pipelined Synchronous" |
| 91 | }; |
| 92 | static const char *gg2_cachemodes[4] = { |
| 93 | "Disabled", "Write-Through", "Copy-Back", "Transparent Mode" |
| 94 | }; |
| 95 | |
| 96 | void 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 | */ |
| 161 | static inline void __init sio_write(u8 val, u8 index) |
| 162 | { |
| 163 | outb(index, 0x15c); |
| 164 | outb(val, 0x15d); |
| 165 | } |
| 166 | |
| 167 | static inline u8 __init sio_read(u8 index) |
| 168 | { |
| 169 | outb(index, 0x15c); |
| 170 | return inb(0x15d); |
| 171 | } |
| 172 | |
| 173 | static 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 | |
| 193 | static 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 | |
| 207 | static 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 | |
| 233 | void __init chrp_setup_arch(void) |
| 234 | { |
| 235 | struct device_node *root = find_path_device ("/"); |
| 236 | char *machine = NULL; |
Paul Mackerras | bbd0abd | 2005-10-26 21:45:56 +1000 | [diff] [blame] | 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 | |
Paul Mackerras | 49e16b7 | 2005-11-18 15:52:38 +1100 | [diff] [blame] | 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 | |
Paul Mackerras | bbd0abd | 2005-10-26 21:45:56 +1000 | [diff] [blame] | 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 | |
Paul Mackerras | bbd0abd | 2005-10-26 21:45:56 +1000 | [diff] [blame] | 293 | pci_create_OF_bus_map(); |
| 294 | |
| 295 | /* |
| 296 | * Print the banner, then scroll down so boot progress |
| 297 | * can be printed. -- Cort |
| 298 | */ |
| 299 | if (ppc_md.progress) ppc_md.progress("Linux/PPC "UTS_RELEASE"\n", 0x0); |
| 300 | } |
| 301 | |
| 302 | void |
Paul Mackerras | 9618eda | 2006-03-27 21:48:57 +1100 | [diff] [blame^] | 303 | chrp_event_scan(unsigned long unused) |
Paul Mackerras | bbd0abd | 2005-10-26 21:45:56 +1000 | [diff] [blame] | 304 | { |
| 305 | unsigned char log[1024]; |
| 306 | int ret = 0; |
| 307 | |
| 308 | /* XXX: we should loop until the hardware says no more error logs -- Cort */ |
| 309 | rtas_call(rtas_token("event-scan"), 4, 1, &ret, 0xffffffff, 0, |
| 310 | __pa(log), 1024); |
Paul Mackerras | 9618eda | 2006-03-27 21:48:57 +1100 | [diff] [blame^] | 311 | mod_timer(&__get_cpu_var(heartbeat_timer), |
| 312 | jiffies + event_scan_interval); |
Paul Mackerras | bbd0abd | 2005-10-26 21:45:56 +1000 | [diff] [blame] | 313 | } |
| 314 | |
| 315 | /* |
| 316 | * Finds the open-pic node and sets up the mpic driver. |
| 317 | */ |
| 318 | static void __init chrp_find_openpic(void) |
| 319 | { |
| 320 | struct device_node *np, *root; |
| 321 | int len, i, j, irq_count; |
| 322 | int isu_size, idu_size; |
| 323 | unsigned int *iranges, *opprop = NULL; |
| 324 | int oplen = 0; |
| 325 | unsigned long opaddr; |
| 326 | int na = 1; |
| 327 | unsigned char init_senses[NR_IRQS - NUM_8259_INTERRUPTS]; |
| 328 | |
| 329 | np = find_type_devices("open-pic"); |
| 330 | if (np == NULL) |
| 331 | return; |
| 332 | root = find_path_device("/"); |
| 333 | if (root) { |
| 334 | opprop = (unsigned int *) get_property |
| 335 | (root, "platform-open-pic", &oplen); |
| 336 | na = prom_n_addr_cells(root); |
| 337 | } |
| 338 | if (opprop && oplen >= na * sizeof(unsigned int)) { |
| 339 | opaddr = opprop[na-1]; /* assume 32-bit */ |
| 340 | oplen /= na * sizeof(unsigned int); |
| 341 | } else { |
David Woodhouse | 575e321 | 2006-01-14 00:13:49 +0000 | [diff] [blame] | 342 | struct resource r; |
| 343 | if (of_address_to_resource(np, 0, &r)) |
Paul Mackerras | bbd0abd | 2005-10-26 21:45:56 +1000 | [diff] [blame] | 344 | return; |
David Woodhouse | 575e321 | 2006-01-14 00:13:49 +0000 | [diff] [blame] | 345 | opaddr = r.start; |
Paul Mackerras | bbd0abd | 2005-10-26 21:45:56 +1000 | [diff] [blame] | 346 | oplen = 0; |
| 347 | } |
| 348 | |
| 349 | printk(KERN_INFO "OpenPIC at %lx\n", opaddr); |
| 350 | |
| 351 | irq_count = NR_IRQS - NUM_ISA_INTERRUPTS - 4; /* leave room for IPIs */ |
Paul Mackerras | a23414b | 2005-11-10 12:00:55 +1100 | [diff] [blame] | 352 | prom_get_irq_senses(init_senses, NUM_ISA_INTERRUPTS, NR_IRQS - 4); |
| 353 | /* i8259 cascade is always positive level */ |
| 354 | init_senses[0] = IRQ_SENSE_LEVEL | IRQ_POLARITY_POSITIVE; |
Paul Mackerras | bbd0abd | 2005-10-26 21:45:56 +1000 | [diff] [blame] | 355 | |
| 356 | iranges = (unsigned int *) get_property(np, "interrupt-ranges", &len); |
| 357 | if (iranges == NULL) |
| 358 | len = 0; /* non-distributed mpic */ |
| 359 | else |
| 360 | len /= 2 * sizeof(unsigned int); |
| 361 | |
| 362 | /* |
| 363 | * The first pair of cells in interrupt-ranges refers to the |
| 364 | * IDU; subsequent pairs refer to the ISUs. |
| 365 | */ |
| 366 | if (oplen < len) { |
| 367 | printk(KERN_ERR "Insufficient addresses for distributed" |
David Woodhouse | 575e321 | 2006-01-14 00:13:49 +0000 | [diff] [blame] | 368 | " OpenPIC (%d < %d)\n", oplen, len); |
Paul Mackerras | bbd0abd | 2005-10-26 21:45:56 +1000 | [diff] [blame] | 369 | len = oplen; |
| 370 | } |
| 371 | |
| 372 | isu_size = 0; |
| 373 | idu_size = 0; |
| 374 | if (len > 0 && iranges[1] != 0) { |
| 375 | printk(KERN_INFO "OpenPIC irqs %d..%d in IDU\n", |
| 376 | iranges[0], iranges[0] + iranges[1] - 1); |
| 377 | idu_size = iranges[1]; |
| 378 | } |
| 379 | if (len > 1) |
| 380 | isu_size = iranges[3]; |
| 381 | |
| 382 | chrp_mpic = mpic_alloc(opaddr, MPIC_PRIMARY, |
| 383 | isu_size, NUM_ISA_INTERRUPTS, irq_count, |
| 384 | NR_IRQS - 4, init_senses, irq_count, |
| 385 | " MPIC "); |
| 386 | if (chrp_mpic == NULL) { |
| 387 | printk(KERN_ERR "Failed to allocate MPIC structure\n"); |
| 388 | return; |
| 389 | } |
| 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 | mpic_setup_cascade(NUM_ISA_INTERRUPTS, i8259_irq_cascade, NULL); |
| 403 | } |
| 404 | |
| 405 | #if defined(CONFIG_VT) && defined(CONFIG_INPUT_ADBHID) && defined(XMON) |
| 406 | static struct irqaction xmon_irqaction = { |
| 407 | .handler = xmon_irq, |
| 408 | .mask = CPU_MASK_NONE, |
| 409 | .name = "XMON break", |
| 410 | }; |
| 411 | #endif |
| 412 | |
| 413 | void __init chrp_init_IRQ(void) |
| 414 | { |
| 415 | struct device_node *np; |
| 416 | unsigned long chrp_int_ack = 0; |
| 417 | #if defined(CONFIG_VT) && defined(CONFIG_INPUT_ADBHID) && defined(XMON) |
| 418 | struct device_node *kbd; |
| 419 | #endif |
| 420 | |
| 421 | for (np = find_devices("pci"); np != NULL; np = np->next) { |
| 422 | unsigned int *addrp = (unsigned int *) |
| 423 | get_property(np, "8259-interrupt-acknowledge", NULL); |
| 424 | |
| 425 | if (addrp == NULL) |
| 426 | continue; |
| 427 | chrp_int_ack = addrp[prom_n_addr_cells(np)-1]; |
| 428 | break; |
| 429 | } |
| 430 | if (np == NULL) |
| 431 | printk(KERN_ERR "Cannot find PCI interrupt acknowledge address\n"); |
| 432 | |
| 433 | chrp_find_openpic(); |
| 434 | |
| 435 | i8259_init(chrp_int_ack, 0); |
| 436 | |
| 437 | if (_chrp_type == _CHRP_Pegasos) |
| 438 | ppc_md.get_irq = i8259_irq; |
| 439 | else |
| 440 | ppc_md.get_irq = mpic_get_irq; |
| 441 | |
| 442 | #if defined(CONFIG_VT) && defined(CONFIG_INPUT_ADBHID) && defined(XMON) |
| 443 | /* see if there is a keyboard in the device tree |
| 444 | with a parent of type "adb" */ |
| 445 | for (kbd = find_devices("keyboard"); kbd; kbd = kbd->next) |
| 446 | if (kbd->parent && kbd->parent->type |
| 447 | && strcmp(kbd->parent->type, "adb") == 0) |
| 448 | break; |
| 449 | if (kbd) |
| 450 | setup_irq(HYDRA_INT_ADB_NMI, &xmon_irqaction); |
| 451 | #endif |
| 452 | } |
| 453 | |
| 454 | void __init |
| 455 | chrp_init2(void) |
| 456 | { |
Paul Mackerras | 9618eda | 2006-03-27 21:48:57 +1100 | [diff] [blame^] | 457 | struct device_node *device; |
| 458 | unsigned int *p = NULL; |
| 459 | |
Olaf Hering | 35e95e6 | 2005-10-28 17:46:19 -0700 | [diff] [blame] | 460 | #ifdef CONFIG_NVRAM |
| 461 | chrp_nvram_init(); |
| 462 | #endif |
| 463 | |
Paul Mackerras | bbd0abd | 2005-10-26 21:45:56 +1000 | [diff] [blame] | 464 | request_region(0x20,0x20,"pic1"); |
| 465 | request_region(0xa0,0x20,"pic2"); |
| 466 | request_region(0x00,0x20,"dma1"); |
| 467 | request_region(0x40,0x20,"timer"); |
| 468 | request_region(0x80,0x10,"dma page reg"); |
| 469 | request_region(0xc0,0x20,"dma2"); |
| 470 | |
Paul Mackerras | 9618eda | 2006-03-27 21:48:57 +1100 | [diff] [blame^] | 471 | /* Get the event scan rate for the rtas so we know how |
| 472 | * often it expects a heartbeat. -- Cort |
| 473 | */ |
| 474 | device = find_devices("rtas"); |
| 475 | if (device) |
| 476 | p = (unsigned int *) get_property |
| 477 | (device, "rtas-event-scan-rate", NULL); |
| 478 | if (p && *p) { |
| 479 | /* |
| 480 | * Arrange to call chrp_event_scan at least *p times |
| 481 | * per minute. We use 59 rather than 60 here so that |
| 482 | * the rate will be slightly higher than the minimum. |
| 483 | * This all assumes we don't do hotplug CPU on any |
| 484 | * machine that needs the event scans done. |
| 485 | */ |
| 486 | unsigned long interval, offset; |
| 487 | int cpu, ncpus; |
| 488 | struct timer_list *timer; |
| 489 | |
| 490 | interval = HZ * 59 / *p; |
| 491 | offset = HZ; |
| 492 | ncpus = num_online_cpus(); |
| 493 | event_scan_interval = ncpus * interval; |
| 494 | for (cpu = 0; cpu < ncpus; ++cpu) { |
| 495 | timer = &per_cpu(heartbeat_timer, cpu); |
| 496 | setup_timer(timer, chrp_event_scan, 0); |
| 497 | timer->expires = jiffies + offset; |
| 498 | add_timer_on(timer, cpu); |
| 499 | offset += interval; |
| 500 | } |
| 501 | printk("RTAS Event Scan Rate: %u (%lu jiffies)\n", |
| 502 | *p, interval); |
| 503 | } |
| 504 | |
Paul Mackerras | bbd0abd | 2005-10-26 21:45:56 +1000 | [diff] [blame] | 505 | if (ppc_md.progress) |
| 506 | ppc_md.progress(" Have fun! ", 0x7777); |
| 507 | } |
| 508 | |
| 509 | void __init chrp_init(void) |
| 510 | { |
| 511 | ISA_DMA_THRESHOLD = ~0L; |
| 512 | DMA_MODE_READ = 0x44; |
| 513 | DMA_MODE_WRITE = 0x48; |
| 514 | isa_io_base = CHRP_ISA_IO_BASE; /* default value */ |
| 515 | ppc_do_canonicalize_irqs = 1; |
| 516 | |
| 517 | /* Assume we have an 8259... */ |
| 518 | __irq_offset_value = NUM_ISA_INTERRUPTS; |
| 519 | |
| 520 | ppc_md.setup_arch = chrp_setup_arch; |
| 521 | ppc_md.show_cpuinfo = chrp_show_cpuinfo; |
| 522 | |
| 523 | ppc_md.init_IRQ = chrp_init_IRQ; |
| 524 | ppc_md.init = chrp_init2; |
| 525 | |
| 526 | ppc_md.phys_mem_access_prot = pci_phys_mem_access_prot; |
| 527 | |
| 528 | ppc_md.restart = rtas_restart; |
| 529 | ppc_md.power_off = rtas_power_off; |
| 530 | ppc_md.halt = rtas_halt; |
| 531 | |
| 532 | ppc_md.time_init = chrp_time_init; |
Olaf Hering | 0347880 | 2006-02-04 11:05:33 +0100 | [diff] [blame] | 533 | ppc_md.calibrate_decr = generic_calibrate_decr; |
Paul Mackerras | 49e16b7 | 2005-11-18 15:52:38 +1100 | [diff] [blame] | 534 | |
| 535 | /* this may get overridden with rtas routines later... */ |
Paul Mackerras | bbd0abd | 2005-10-26 21:45:56 +1000 | [diff] [blame] | 536 | ppc_md.set_rtc_time = chrp_set_rtc_time; |
| 537 | ppc_md.get_rtc_time = chrp_get_rtc_time; |
Paul Mackerras | bbd0abd | 2005-10-26 21:45:56 +1000 | [diff] [blame] | 538 | |
| 539 | #ifdef CONFIG_SMP |
| 540 | smp_ops = &chrp_smp_ops; |
| 541 | #endif /* CONFIG_SMP */ |
| 542 | } |