Paul Mackerras | 14cf11a | 2005-09-26 16:04:21 +1000 | [diff] [blame] | 1 | /* |
Paul Mackerras | 35499c0 | 2005-10-22 16:02:39 +1000 | [diff] [blame] | 2 | * Powermac setup and early boot code plus other random bits. |
Paul Mackerras | 14cf11a | 2005-09-26 16:04:21 +1000 | [diff] [blame] | 3 | * |
| 4 | * PowerPC version |
| 5 | * Copyright (C) 1995-1996 Gary Thomas (gdt@linuxppc.org) |
| 6 | * |
| 7 | * Adapted for Power Macintosh by Paul Mackerras |
Paul Mackerras | 35499c0 | 2005-10-22 16:02:39 +1000 | [diff] [blame] | 8 | * Copyright (C) 1996 Paul Mackerras (paulus@samba.org) |
Paul Mackerras | 14cf11a | 2005-09-26 16:04:21 +1000 | [diff] [blame] | 9 | * |
| 10 | * Derived from "arch/alpha/kernel/setup.c" |
| 11 | * Copyright (C) 1995 Linus Torvalds |
| 12 | * |
| 13 | * Maintained by Benjamin Herrenschmidt (benh@kernel.crashing.org) |
| 14 | * |
| 15 | * This program is free software; you can redistribute it and/or |
| 16 | * modify it under the terms of the GNU General Public License |
| 17 | * as published by the Free Software Foundation; either version |
| 18 | * 2 of the License, or (at your option) any later version. |
| 19 | * |
| 20 | */ |
| 21 | |
| 22 | /* |
| 23 | * bootup setup stuff.. |
| 24 | */ |
| 25 | |
Paul Mackerras | 14cf11a | 2005-09-26 16:04:21 +1000 | [diff] [blame] | 26 | #include <linux/init.h> |
| 27 | #include <linux/errno.h> |
| 28 | #include <linux/sched.h> |
| 29 | #include <linux/kernel.h> |
| 30 | #include <linux/mm.h> |
| 31 | #include <linux/stddef.h> |
| 32 | #include <linux/unistd.h> |
| 33 | #include <linux/ptrace.h> |
| 34 | #include <linux/slab.h> |
| 35 | #include <linux/user.h> |
| 36 | #include <linux/a.out.h> |
| 37 | #include <linux/tty.h> |
| 38 | #include <linux/string.h> |
| 39 | #include <linux/delay.h> |
| 40 | #include <linux/ioport.h> |
| 41 | #include <linux/major.h> |
| 42 | #include <linux/initrd.h> |
| 43 | #include <linux/vt_kern.h> |
| 44 | #include <linux/console.h> |
Paul Mackerras | 14cf11a | 2005-09-26 16:04:21 +1000 | [diff] [blame] | 45 | #include <linux/pci.h> |
| 46 | #include <linux/adb.h> |
| 47 | #include <linux/cuda.h> |
| 48 | #include <linux/pmu.h> |
| 49 | #include <linux/irq.h> |
| 50 | #include <linux/seq_file.h> |
| 51 | #include <linux/root_dev.h> |
| 52 | #include <linux/bitops.h> |
| 53 | #include <linux/suspend.h> |
Jon Loeliger | 5f867dc | 2007-11-14 04:13:03 +1100 | [diff] [blame] | 54 | #include <linux/of_device.h> |
| 55 | #include <linux/of_platform.h> |
Paul Mackerras | 14cf11a | 2005-09-26 16:04:21 +1000 | [diff] [blame] | 56 | |
| 57 | #include <asm/reg.h> |
| 58 | #include <asm/sections.h> |
| 59 | #include <asm/prom.h> |
| 60 | #include <asm/system.h> |
| 61 | #include <asm/pgtable.h> |
| 62 | #include <asm/io.h> |
Michael Ellerman | 3d1229d | 2005-11-14 23:35:00 +1100 | [diff] [blame] | 63 | #include <asm/kexec.h> |
Paul Mackerras | 14cf11a | 2005-09-26 16:04:21 +1000 | [diff] [blame] | 64 | #include <asm/pci-bridge.h> |
| 65 | #include <asm/ohare.h> |
| 66 | #include <asm/mediabay.h> |
| 67 | #include <asm/machdep.h> |
| 68 | #include <asm/dma.h> |
Paul Mackerras | 14cf11a | 2005-09-26 16:04:21 +1000 | [diff] [blame] | 69 | #include <asm/cputable.h> |
| 70 | #include <asm/btext.h> |
| 71 | #include <asm/pmac_feature.h> |
| 72 | #include <asm/time.h> |
Paul Mackerras | 14cf11a | 2005-09-26 16:04:21 +1000 | [diff] [blame] | 73 | #include <asm/mmu_context.h> |
Paul Mackerras | 35499c0 | 2005-10-22 16:02:39 +1000 | [diff] [blame] | 74 | #include <asm/iommu.h> |
| 75 | #include <asm/smu.h> |
| 76 | #include <asm/pmc.h> |
Paul Mackerras | fbf1769 | 2005-11-02 16:07:22 +1100 | [diff] [blame] | 77 | #include <asm/lmb.h> |
Benjamin Herrenschmidt | 51d3082 | 2005-11-23 17:57:25 +1100 | [diff] [blame] | 78 | #include <asm/udbg.h> |
Paul Mackerras | 14cf11a | 2005-09-26 16:04:21 +1000 | [diff] [blame] | 79 | |
Paul Mackerras | 3c3f42d | 2005-10-10 22:58:41 +1000 | [diff] [blame] | 80 | #include "pmac.h" |
Paul Mackerras | 14cf11a | 2005-09-26 16:04:21 +1000 | [diff] [blame] | 81 | |
| 82 | #undef SHOW_GATWICK_IRQS |
| 83 | |
Paul Mackerras | 14cf11a | 2005-09-26 16:04:21 +1000 | [diff] [blame] | 84 | int ppc_override_l2cr = 0; |
| 85 | int ppc_override_l2cr_value; |
| 86 | int has_l2cache = 0; |
| 87 | |
Olaf Hering | d2515c8 | 2006-01-22 22:19:02 +0100 | [diff] [blame] | 88 | int pmac_newworld; |
Paul Mackerras | 9b6b563 | 2005-10-06 12:06:20 +1000 | [diff] [blame] | 89 | |
Paul Mackerras | 14cf11a | 2005-09-26 16:04:21 +1000 | [diff] [blame] | 90 | static int current_root_goodness = -1; |
| 91 | |
Paul Mackerras | 35499c0 | 2005-10-22 16:02:39 +1000 | [diff] [blame] | 92 | extern struct machdep_calls pmac_md; |
Paul Mackerras | 14cf11a | 2005-09-26 16:04:21 +1000 | [diff] [blame] | 93 | |
| 94 | #define DEFAULT_ROOT_DEVICE Root_SDA1 /* sda1 - slightly silly choice */ |
| 95 | |
Paul Mackerras | 35499c0 | 2005-10-22 16:02:39 +1000 | [diff] [blame] | 96 | #ifdef CONFIG_PPC64 |
Paul Mackerras | 35499c0 | 2005-10-22 16:02:39 +1000 | [diff] [blame] | 97 | int sccdbg; |
Paul Mackerras | 14cf11a | 2005-09-26 16:04:21 +1000 | [diff] [blame] | 98 | #endif |
| 99 | |
Paul Mackerras | 35499c0 | 2005-10-22 16:02:39 +1000 | [diff] [blame] | 100 | extern void zs_kgdb_hook(int tty_num); |
| 101 | |
Paul Mackerras | 14cf11a | 2005-09-26 16:04:21 +1000 | [diff] [blame] | 102 | sys_ctrler_t sys_ctrler = SYS_CTRLER_UNKNOWN; |
Paul Mackerras | 35499c0 | 2005-10-22 16:02:39 +1000 | [diff] [blame] | 103 | EXPORT_SYMBOL(sys_ctrler); |
| 104 | |
| 105 | #ifdef CONFIG_PMAC_SMU |
| 106 | unsigned long smu_cmdbuf_abs; |
| 107 | EXPORT_SYMBOL(smu_cmdbuf_abs); |
| 108 | #endif |
Paul Mackerras | 14cf11a | 2005-09-26 16:04:21 +1000 | [diff] [blame] | 109 | |
| 110 | #ifdef CONFIG_SMP |
| 111 | extern struct smp_ops_t psurge_smp_ops; |
| 112 | extern struct smp_ops_t core99_smp_ops; |
| 113 | #endif /* CONFIG_SMP */ |
| 114 | |
Paul Mackerras | 0dd194d | 2005-10-20 20:48:19 +1000 | [diff] [blame] | 115 | static void pmac_show_cpuinfo(struct seq_file *m) |
Paul Mackerras | 14cf11a | 2005-09-26 16:04:21 +1000 | [diff] [blame] | 116 | { |
| 117 | struct device_node *np; |
Jeremy Kerr | 018a3d1 | 2006-07-12 15:40:29 +1000 | [diff] [blame] | 118 | const char *pp; |
Paul Mackerras | 14cf11a | 2005-09-26 16:04:21 +1000 | [diff] [blame] | 119 | int plen; |
Paul Mackerras | 0dd194d | 2005-10-20 20:48:19 +1000 | [diff] [blame] | 120 | int mbmodel; |
| 121 | unsigned int mbflags; |
Paul Mackerras | 14cf11a | 2005-09-26 16:04:21 +1000 | [diff] [blame] | 122 | char* mbname; |
| 123 | |
Paul Mackerras | 0dd194d | 2005-10-20 20:48:19 +1000 | [diff] [blame] | 124 | mbmodel = pmac_call_feature(PMAC_FTR_GET_MB_INFO, NULL, |
| 125 | PMAC_MB_INFO_MODEL, 0); |
| 126 | mbflags = pmac_call_feature(PMAC_FTR_GET_MB_INFO, NULL, |
| 127 | PMAC_MB_INFO_FLAGS, 0); |
| 128 | if (pmac_call_feature(PMAC_FTR_GET_MB_INFO, NULL, PMAC_MB_INFO_NAME, |
| 129 | (long) &mbname) != 0) |
Paul Mackerras | 14cf11a | 2005-09-26 16:04:21 +1000 | [diff] [blame] | 130 | mbname = "Unknown"; |
| 131 | |
| 132 | /* find motherboard type */ |
| 133 | seq_printf(m, "machine\t\t: "); |
Paul Mackerras | 0dd194d | 2005-10-20 20:48:19 +1000 | [diff] [blame] | 134 | np = of_find_node_by_path("/"); |
Paul Mackerras | 14cf11a | 2005-09-26 16:04:21 +1000 | [diff] [blame] | 135 | if (np != NULL) { |
Stephen Rothwell | e2eb639 | 2007-04-03 22:26:41 +1000 | [diff] [blame] | 136 | pp = of_get_property(np, "model", NULL); |
Paul Mackerras | 14cf11a | 2005-09-26 16:04:21 +1000 | [diff] [blame] | 137 | if (pp != NULL) |
| 138 | seq_printf(m, "%s\n", pp); |
| 139 | else |
| 140 | seq_printf(m, "PowerMac\n"); |
Stephen Rothwell | e2eb639 | 2007-04-03 22:26:41 +1000 | [diff] [blame] | 141 | pp = of_get_property(np, "compatible", &plen); |
Paul Mackerras | 14cf11a | 2005-09-26 16:04:21 +1000 | [diff] [blame] | 142 | if (pp != NULL) { |
| 143 | seq_printf(m, "motherboard\t:"); |
| 144 | while (plen > 0) { |
| 145 | int l = strlen(pp) + 1; |
| 146 | seq_printf(m, " %s", pp); |
| 147 | plen -= l; |
| 148 | pp += l; |
| 149 | } |
| 150 | seq_printf(m, "\n"); |
| 151 | } |
Paul Mackerras | 0dd194d | 2005-10-20 20:48:19 +1000 | [diff] [blame] | 152 | of_node_put(np); |
Paul Mackerras | 14cf11a | 2005-09-26 16:04:21 +1000 | [diff] [blame] | 153 | } else |
| 154 | seq_printf(m, "PowerMac\n"); |
| 155 | |
| 156 | /* print parsed model */ |
| 157 | seq_printf(m, "detected as\t: %d (%s)\n", mbmodel, mbname); |
| 158 | seq_printf(m, "pmac flags\t: %08x\n", mbflags); |
| 159 | |
| 160 | /* find l2 cache info */ |
Paul Mackerras | 0dd194d | 2005-10-20 20:48:19 +1000 | [diff] [blame] | 161 | np = of_find_node_by_name(NULL, "l2-cache"); |
| 162 | if (np == NULL) |
| 163 | np = of_find_node_by_type(NULL, "cache"); |
| 164 | if (np != NULL) { |
Stephen Rothwell | e2eb639 | 2007-04-03 22:26:41 +1000 | [diff] [blame] | 165 | const unsigned int *ic = |
| 166 | of_get_property(np, "i-cache-size", NULL); |
| 167 | const unsigned int *dc = |
| 168 | of_get_property(np, "d-cache-size", NULL); |
Paul Mackerras | 14cf11a | 2005-09-26 16:04:21 +1000 | [diff] [blame] | 169 | seq_printf(m, "L2 cache\t:"); |
| 170 | has_l2cache = 1; |
Stephen Rothwell | e2eb639 | 2007-04-03 22:26:41 +1000 | [diff] [blame] | 171 | if (of_get_property(np, "cache-unified", NULL) != 0 && dc) { |
Paul Mackerras | 14cf11a | 2005-09-26 16:04:21 +1000 | [diff] [blame] | 172 | seq_printf(m, " %dK unified", *dc / 1024); |
| 173 | } else { |
| 174 | if (ic) |
| 175 | seq_printf(m, " %dK instruction", *ic / 1024); |
| 176 | if (dc) |
| 177 | seq_printf(m, "%s %dK data", |
| 178 | (ic? " +": ""), *dc / 1024); |
| 179 | } |
Stephen Rothwell | e2eb639 | 2007-04-03 22:26:41 +1000 | [diff] [blame] | 180 | pp = of_get_property(np, "ram-type", NULL); |
Paul Mackerras | 14cf11a | 2005-09-26 16:04:21 +1000 | [diff] [blame] | 181 | if (pp) |
| 182 | seq_printf(m, " %s", pp); |
| 183 | seq_printf(m, "\n"); |
Paul Mackerras | 0dd194d | 2005-10-20 20:48:19 +1000 | [diff] [blame] | 184 | of_node_put(np); |
Paul Mackerras | 14cf11a | 2005-09-26 16:04:21 +1000 | [diff] [blame] | 185 | } |
| 186 | |
| 187 | /* Indicate newworld/oldworld */ |
| 188 | seq_printf(m, "pmac-generation\t: %s\n", |
| 189 | pmac_newworld ? "NewWorld" : "OldWorld"); |
Paul Mackerras | 14cf11a | 2005-09-26 16:04:21 +1000 | [diff] [blame] | 190 | } |
| 191 | |
Paul Mackerras | 35499c0 | 2005-10-22 16:02:39 +1000 | [diff] [blame] | 192 | #ifndef CONFIG_ADB_CUDA |
| 193 | int find_via_cuda(void) |
| 194 | { |
Stephen Rothwell | 30686ba | 2007-04-24 13:53:04 +1000 | [diff] [blame] | 195 | struct device_node *dn = of_find_node_by_name(NULL, "via-cuda"); |
| 196 | |
| 197 | if (!dn) |
Paul Mackerras | 35499c0 | 2005-10-22 16:02:39 +1000 | [diff] [blame] | 198 | return 0; |
Stephen Rothwell | 30686ba | 2007-04-24 13:53:04 +1000 | [diff] [blame] | 199 | of_node_put(dn); |
Paul Mackerras | 35499c0 | 2005-10-22 16:02:39 +1000 | [diff] [blame] | 200 | printk("WARNING ! Your machine is CUDA-based but your kernel\n"); |
| 201 | printk(" wasn't compiled with CONFIG_ADB_CUDA option !\n"); |
| 202 | return 0; |
| 203 | } |
| 204 | #endif |
| 205 | |
| 206 | #ifndef CONFIG_ADB_PMU |
| 207 | int find_via_pmu(void) |
| 208 | { |
Stephen Rothwell | 30686ba | 2007-04-24 13:53:04 +1000 | [diff] [blame] | 209 | struct device_node *dn = of_find_node_by_name(NULL, "via-pmu"); |
| 210 | |
| 211 | if (!dn) |
Paul Mackerras | 35499c0 | 2005-10-22 16:02:39 +1000 | [diff] [blame] | 212 | return 0; |
Stephen Rothwell | 30686ba | 2007-04-24 13:53:04 +1000 | [diff] [blame] | 213 | of_node_put(dn); |
Paul Mackerras | 35499c0 | 2005-10-22 16:02:39 +1000 | [diff] [blame] | 214 | printk("WARNING ! Your machine is PMU-based but your kernel\n"); |
| 215 | printk(" wasn't compiled with CONFIG_ADB_PMU option !\n"); |
Paul Mackerras | a575b80 | 2005-10-23 17:23:21 +1000 | [diff] [blame] | 216 | return 0; |
Paul Mackerras | 35499c0 | 2005-10-22 16:02:39 +1000 | [diff] [blame] | 217 | } |
| 218 | #endif |
| 219 | |
| 220 | #ifndef CONFIG_PMAC_SMU |
| 221 | int smu_init(void) |
| 222 | { |
| 223 | /* should check and warn if SMU is present */ |
| 224 | return 0; |
| 225 | } |
| 226 | #endif |
| 227 | |
| 228 | #ifdef CONFIG_PPC32 |
Paul Mackerras | 14cf11a | 2005-09-26 16:04:21 +1000 | [diff] [blame] | 229 | static volatile u32 *sysctrl_regs; |
| 230 | |
Paul Mackerras | 35499c0 | 2005-10-22 16:02:39 +1000 | [diff] [blame] | 231 | static void __init ohare_init(void) |
Paul Mackerras | 14cf11a | 2005-09-26 16:04:21 +1000 | [diff] [blame] | 232 | { |
Stephen Rothwell | 30686ba | 2007-04-24 13:53:04 +1000 | [diff] [blame] | 233 | struct device_node *dn; |
| 234 | |
Paul Mackerras | 14cf11a | 2005-09-26 16:04:21 +1000 | [diff] [blame] | 235 | /* this area has the CPU identification register |
| 236 | and some registers used by smp boards */ |
| 237 | sysctrl_regs = (volatile u32 *) ioremap(0xf8000000, 0x1000); |
Paul Mackerras | 14cf11a | 2005-09-26 16:04:21 +1000 | [diff] [blame] | 238 | |
Paul Mackerras | 35499c0 | 2005-10-22 16:02:39 +1000 | [diff] [blame] | 239 | /* |
| 240 | * Turn on the L2 cache. |
| 241 | * We assume that we have a PSX memory controller iff |
| 242 | * we have an ohare I/O controller. |
| 243 | */ |
Stephen Rothwell | 30686ba | 2007-04-24 13:53:04 +1000 | [diff] [blame] | 244 | dn = of_find_node_by_name(NULL, "ohare"); |
| 245 | if (dn) { |
| 246 | of_node_put(dn); |
Paul Mackerras | 35499c0 | 2005-10-22 16:02:39 +1000 | [diff] [blame] | 247 | if (((sysctrl_regs[2] >> 24) & 0xf) >= 3) { |
| 248 | if (sysctrl_regs[4] & 0x10) |
| 249 | sysctrl_regs[4] |= 0x04000020; |
| 250 | else |
| 251 | sysctrl_regs[4] |= 0x04000000; |
| 252 | if(has_l2cache) |
| 253 | printk(KERN_INFO "Level 2 cache enabled\n"); |
| 254 | } |
| 255 | } |
| 256 | } |
Paul Mackerras | 14cf11a | 2005-09-26 16:04:21 +1000 | [diff] [blame] | 257 | |
Paul Mackerras | 35499c0 | 2005-10-22 16:02:39 +1000 | [diff] [blame] | 258 | static void __init l2cr_init(void) |
| 259 | { |
Paul Mackerras | 14cf11a | 2005-09-26 16:04:21 +1000 | [diff] [blame] | 260 | /* Checks "l2cr-value" property in the registry */ |
| 261 | if (cpu_has_feature(CPU_FTR_L2CR)) { |
Stephen Rothwell | 1658ab6 | 2007-04-24 13:51:59 +1000 | [diff] [blame] | 262 | struct device_node *np = of_find_node_by_name(NULL, "cpus"); |
Paul Mackerras | 14cf11a | 2005-09-26 16:04:21 +1000 | [diff] [blame] | 263 | if (np == 0) |
Stephen Rothwell | 1658ab6 | 2007-04-24 13:51:59 +1000 | [diff] [blame] | 264 | np = of_find_node_by_type(NULL, "cpu"); |
Paul Mackerras | 14cf11a | 2005-09-26 16:04:21 +1000 | [diff] [blame] | 265 | if (np != 0) { |
Jeremy Kerr | 018a3d1 | 2006-07-12 15:40:29 +1000 | [diff] [blame] | 266 | const unsigned int *l2cr = |
Stephen Rothwell | e2eb639 | 2007-04-03 22:26:41 +1000 | [diff] [blame] | 267 | of_get_property(np, "l2cr-value", NULL); |
Paul Mackerras | 14cf11a | 2005-09-26 16:04:21 +1000 | [diff] [blame] | 268 | if (l2cr != 0) { |
| 269 | ppc_override_l2cr = 1; |
| 270 | ppc_override_l2cr_value = *l2cr; |
| 271 | _set_L2CR(0); |
| 272 | _set_L2CR(ppc_override_l2cr_value); |
| 273 | } |
Stephen Rothwell | 1658ab6 | 2007-04-24 13:51:59 +1000 | [diff] [blame] | 274 | of_node_put(np); |
Paul Mackerras | 14cf11a | 2005-09-26 16:04:21 +1000 | [diff] [blame] | 275 | } |
| 276 | } |
| 277 | |
| 278 | if (ppc_override_l2cr) |
Paul Mackerras | 35499c0 | 2005-10-22 16:02:39 +1000 | [diff] [blame] | 279 | printk(KERN_INFO "L2CR overridden (0x%x), " |
| 280 | "backside cache is %s\n", |
| 281 | ppc_override_l2cr_value, |
| 282 | (ppc_override_l2cr_value & 0x80000000) |
Paul Mackerras | 14cf11a | 2005-09-26 16:04:21 +1000 | [diff] [blame] | 283 | ? "enabled" : "disabled"); |
Paul Mackerras | 35499c0 | 2005-10-22 16:02:39 +1000 | [diff] [blame] | 284 | } |
| 285 | #endif |
| 286 | |
Arnd Bergmann | ff38e7c | 2006-01-11 00:00:03 +0000 | [diff] [blame] | 287 | static void __init pmac_setup_arch(void) |
Paul Mackerras | 35499c0 | 2005-10-22 16:02:39 +1000 | [diff] [blame] | 288 | { |
Paul Mackerras | a575b80 | 2005-10-23 17:23:21 +1000 | [diff] [blame] | 289 | struct device_node *cpu, *ic; |
Jeremy Kerr | 018a3d1 | 2006-07-12 15:40:29 +1000 | [diff] [blame] | 290 | const int *fp; |
Paul Mackerras | 35499c0 | 2005-10-22 16:02:39 +1000 | [diff] [blame] | 291 | unsigned long pvr; |
| 292 | |
| 293 | pvr = PVR_VER(mfspr(SPRN_PVR)); |
| 294 | |
| 295 | /* Set loops_per_jiffy to a half-way reasonable value, |
| 296 | for use until calibrate_delay gets called. */ |
| 297 | loops_per_jiffy = 50000000 / HZ; |
| 298 | cpu = of_find_node_by_type(NULL, "cpu"); |
| 299 | if (cpu != NULL) { |
Stephen Rothwell | e2eb639 | 2007-04-03 22:26:41 +1000 | [diff] [blame] | 300 | fp = of_get_property(cpu, "clock-frequency", NULL); |
Paul Mackerras | 35499c0 | 2005-10-22 16:02:39 +1000 | [diff] [blame] | 301 | if (fp != NULL) { |
| 302 | if (pvr >= 0x30 && pvr < 0x80) |
| 303 | /* PPC970 etc. */ |
| 304 | loops_per_jiffy = *fp / (3 * HZ); |
| 305 | else if (pvr == 4 || pvr >= 8) |
| 306 | /* 604, G3, G4 etc. */ |
| 307 | loops_per_jiffy = *fp / HZ; |
| 308 | else |
| 309 | /* 601, 603, etc. */ |
| 310 | loops_per_jiffy = *fp / (2 * HZ); |
| 311 | } |
| 312 | of_node_put(cpu); |
| 313 | } |
| 314 | |
Paul Mackerras | a575b80 | 2005-10-23 17:23:21 +1000 | [diff] [blame] | 315 | /* See if newworld or oldworld */ |
Paul Mackerras | bfab101 | 2005-10-27 22:45:33 +1000 | [diff] [blame] | 316 | for (ic = NULL; (ic = of_find_all_nodes(ic)) != NULL; ) |
Stephen Rothwell | e2eb639 | 2007-04-03 22:26:41 +1000 | [diff] [blame] | 317 | if (of_get_property(ic, "interrupt-controller", NULL)) |
Paul Mackerras | bfab101 | 2005-10-27 22:45:33 +1000 | [diff] [blame] | 318 | break; |
Olaf Hering | d2515c8 | 2006-01-22 22:19:02 +0100 | [diff] [blame] | 319 | if (ic) { |
| 320 | pmac_newworld = 1; |
Paul Mackerras | a575b80 | 2005-10-23 17:23:21 +1000 | [diff] [blame] | 321 | of_node_put(ic); |
Olaf Hering | d2515c8 | 2006-01-22 22:19:02 +0100 | [diff] [blame] | 322 | } |
Paul Mackerras | a575b80 | 2005-10-23 17:23:21 +1000 | [diff] [blame] | 323 | |
Paul Mackerras | 35499c0 | 2005-10-22 16:02:39 +1000 | [diff] [blame] | 324 | /* Lookup PCI hosts */ |
| 325 | pmac_pci_init(); |
| 326 | |
| 327 | #ifdef CONFIG_PPC32 |
| 328 | ohare_init(); |
| 329 | l2cr_init(); |
| 330 | #endif /* CONFIG_PPC32 */ |
| 331 | |
Paul Mackerras | 14cf11a | 2005-09-26 16:04:21 +1000 | [diff] [blame] | 332 | #ifdef CONFIG_KGDB |
| 333 | zs_kgdb_hook(0); |
| 334 | #endif |
| 335 | |
Paul Mackerras | 14cf11a | 2005-09-26 16:04:21 +1000 | [diff] [blame] | 336 | find_via_cuda(); |
Paul Mackerras | 14cf11a | 2005-09-26 16:04:21 +1000 | [diff] [blame] | 337 | find_via_pmu(); |
Paul Mackerras | 35499c0 | 2005-10-22 16:02:39 +1000 | [diff] [blame] | 338 | smu_init(); |
| 339 | |
David Woodhouse | 91c33d2 | 2005-11-02 16:54:46 +0000 | [diff] [blame] | 340 | #if defined(CONFIG_NVRAM) || defined(CONFIG_PPC64) |
Paul Mackerras | 14cf11a | 2005-09-26 16:04:21 +1000 | [diff] [blame] | 341 | pmac_nvram_init(); |
| 342 | #endif |
Paul Mackerras | 35499c0 | 2005-10-22 16:02:39 +1000 | [diff] [blame] | 343 | |
| 344 | #ifdef CONFIG_PPC32 |
Paul Mackerras | 14cf11a | 2005-09-26 16:04:21 +1000 | [diff] [blame] | 345 | #ifdef CONFIG_BLK_DEV_INITRD |
| 346 | if (initrd_start) |
| 347 | ROOT_DEV = Root_RAM0; |
| 348 | else |
| 349 | #endif |
| 350 | ROOT_DEV = DEFAULT_ROOT_DEVICE; |
Paul Mackerras | 35499c0 | 2005-10-22 16:02:39 +1000 | [diff] [blame] | 351 | #endif |
Paul Mackerras | 14cf11a | 2005-09-26 16:04:21 +1000 | [diff] [blame] | 352 | |
| 353 | #ifdef CONFIG_SMP |
| 354 | /* Check for Core99 */ |
Stephen Rothwell | 30686ba | 2007-04-24 13:53:04 +1000 | [diff] [blame] | 355 | ic = of_find_node_by_name(NULL, "uni-n"); |
| 356 | if (!ic) |
| 357 | ic = of_find_node_by_name(NULL, "u3"); |
| 358 | if (!ic) |
| 359 | ic = of_find_node_by_name(NULL, "u4"); |
| 360 | if (ic) { |
| 361 | of_node_put(ic); |
Paul Mackerras | 7ed476d | 2005-10-19 21:44:51 +1000 | [diff] [blame] | 362 | smp_ops = &core99_smp_ops; |
Stephen Rothwell | 30686ba | 2007-04-24 13:53:04 +1000 | [diff] [blame] | 363 | } |
Paul Mackerras | 35499c0 | 2005-10-22 16:02:39 +1000 | [diff] [blame] | 364 | #ifdef CONFIG_PPC32 |
Paul Mackerras | c63c4fa | 2007-06-07 22:42:19 +1000 | [diff] [blame] | 365 | else { |
| 366 | /* |
| 367 | * We have to set bits in cpu_possible_map here since the |
| 368 | * secondary CPU(s) aren't in the device tree, and |
| 369 | * setup_per_cpu_areas only allocates per-cpu data for |
| 370 | * CPUs in the cpu_possible_map. |
| 371 | */ |
| 372 | int cpu; |
| 373 | |
| 374 | for (cpu = 1; cpu < 4 && cpu < NR_CPUS; ++cpu) |
| 375 | cpu_set(cpu, cpu_possible_map); |
Paul Mackerras | 7ed476d | 2005-10-19 21:44:51 +1000 | [diff] [blame] | 376 | smp_ops = &psurge_smp_ops; |
Paul Mackerras | c63c4fa | 2007-06-07 22:42:19 +1000 | [diff] [blame] | 377 | } |
Paul Mackerras | 35499c0 | 2005-10-22 16:02:39 +1000 | [diff] [blame] | 378 | #endif |
Paul Mackerras | 14cf11a | 2005-09-26 16:04:21 +1000 | [diff] [blame] | 379 | #endif /* CONFIG_SMP */ |
Benjamin Herrenschmidt | e822250 | 2006-03-28 23:15:54 +1100 | [diff] [blame] | 380 | |
| 381 | #ifdef CONFIG_ADB |
| 382 | if (strstr(cmd_line, "adb_sync")) { |
| 383 | extern int __adb_probe_sync; |
| 384 | __adb_probe_sync = 1; |
| 385 | } |
| 386 | #endif /* CONFIG_ADB */ |
Paul Mackerras | 14cf11a | 2005-09-26 16:04:21 +1000 | [diff] [blame] | 387 | } |
| 388 | |
Paul Mackerras | 14cf11a | 2005-09-26 16:04:21 +1000 | [diff] [blame] | 389 | #ifdef CONFIG_SCSI |
Li Yang | 405861a | 2007-05-23 11:28:03 +0800 | [diff] [blame] | 390 | void note_scsi_host(struct device_node *node, void *host) |
Paul Mackerras | 14cf11a | 2005-09-26 16:04:21 +1000 | [diff] [blame] | 391 | { |
Paul Mackerras | 14cf11a | 2005-09-26 16:04:21 +1000 | [diff] [blame] | 392 | } |
Paul Mackerras | 9b6b563 | 2005-10-06 12:06:20 +1000 | [diff] [blame] | 393 | EXPORT_SYMBOL(note_scsi_host); |
Paul Mackerras | 14cf11a | 2005-09-26 16:04:21 +1000 | [diff] [blame] | 394 | #endif |
| 395 | |
Paul Mackerras | 35499c0 | 2005-10-22 16:02:39 +1000 | [diff] [blame] | 396 | static int initializing = 1; |
| 397 | |
Paul Mackerras | 14cf11a | 2005-09-26 16:04:21 +1000 | [diff] [blame] | 398 | static int pmac_late_init(void) |
| 399 | { |
| 400 | initializing = 0; |
Johannes Berg | d9333af | 2007-05-03 06:33:51 +1000 | [diff] [blame] | 401 | /* this is udbg (which is __init) and we can later use it during |
| 402 | * cpu hotplug (in smp_core99_kick_cpu) */ |
| 403 | ppc_md.progress = NULL; |
Paul Mackerras | 14cf11a | 2005-09-26 16:04:21 +1000 | [diff] [blame] | 404 | return 0; |
| 405 | } |
Grant Likely | d518b71 | 2008-01-03 06:14:28 +1100 | [diff] [blame] | 406 | machine_late_initcall(powermac, pmac_late_init); |
Paul Mackerras | 14cf11a | 2005-09-26 16:04:21 +1000 | [diff] [blame] | 407 | |
Stephen Rothwell | d741803 | 2007-10-04 12:00:28 +1000 | [diff] [blame] | 408 | /* |
| 409 | * This is __init_refok because we check for "initializing" before |
| 410 | * touching any of the __init sensitive things and "initializing" |
| 411 | * will be false after __init time. This can't be __init because it |
| 412 | * can be called whenever a disk is first accessed. |
| 413 | */ |
| 414 | void __init_refok note_bootable_part(dev_t dev, int part, int goodness) |
Paul Mackerras | 14cf11a | 2005-09-26 16:04:21 +1000 | [diff] [blame] | 415 | { |
Paul Mackerras | 14cf11a | 2005-09-26 16:04:21 +1000 | [diff] [blame] | 416 | char *p; |
| 417 | |
| 418 | if (!initializing) |
| 419 | return; |
| 420 | if ((goodness <= current_root_goodness) && |
| 421 | ROOT_DEV != DEFAULT_ROOT_DEVICE) |
| 422 | return; |
Alon Bar-Lev | b8757b2 | 2007-02-12 00:54:17 -0800 | [diff] [blame] | 423 | p = strstr(boot_command_line, "root="); |
| 424 | if (p != NULL && (p == boot_command_line || p[-1] == ' ')) |
Paul Mackerras | 14cf11a | 2005-09-26 16:04:21 +1000 | [diff] [blame] | 425 | return; |
| 426 | |
Paul Mackerras | 6ee0d9f | 2007-10-04 13:47:06 +1000 | [diff] [blame] | 427 | ROOT_DEV = dev + part; |
| 428 | current_root_goodness = goodness; |
Paul Mackerras | 14cf11a | 2005-09-26 16:04:21 +1000 | [diff] [blame] | 429 | } |
| 430 | |
Paul Mackerras | 35499c0 | 2005-10-22 16:02:39 +1000 | [diff] [blame] | 431 | #ifdef CONFIG_ADB_CUDA |
| 432 | static void cuda_restart(void) |
Paul Mackerras | 14cf11a | 2005-09-26 16:04:21 +1000 | [diff] [blame] | 433 | { |
Paul Mackerras | 14cf11a | 2005-09-26 16:04:21 +1000 | [diff] [blame] | 434 | struct adb_request req; |
Paul Mackerras | 14cf11a | 2005-09-26 16:04:21 +1000 | [diff] [blame] | 435 | |
Paul Mackerras | 35499c0 | 2005-10-22 16:02:39 +1000 | [diff] [blame] | 436 | cuda_request(&req, NULL, 2, CUDA_PACKET, CUDA_RESET_SYSTEM); |
| 437 | for (;;) |
| 438 | cuda_poll(); |
| 439 | } |
| 440 | |
| 441 | static void cuda_shutdown(void) |
| 442 | { |
| 443 | struct adb_request req; |
| 444 | |
| 445 | cuda_request(&req, NULL, 2, CUDA_PACKET, CUDA_POWERDOWN); |
| 446 | for (;;) |
| 447 | cuda_poll(); |
| 448 | } |
| 449 | |
| 450 | #else |
| 451 | #define cuda_restart() |
| 452 | #define cuda_shutdown() |
| 453 | #endif |
| 454 | |
| 455 | #ifndef CONFIG_ADB_PMU |
| 456 | #define pmu_restart() |
| 457 | #define pmu_shutdown() |
| 458 | #endif |
| 459 | |
| 460 | #ifndef CONFIG_PMAC_SMU |
| 461 | #define smu_restart() |
| 462 | #define smu_shutdown() |
| 463 | #endif |
| 464 | |
| 465 | static void pmac_restart(char *cmd) |
| 466 | { |
Paul Mackerras | 14cf11a | 2005-09-26 16:04:21 +1000 | [diff] [blame] | 467 | switch (sys_ctrler) { |
Paul Mackerras | 14cf11a | 2005-09-26 16:04:21 +1000 | [diff] [blame] | 468 | case SYS_CTRLER_CUDA: |
Paul Mackerras | 35499c0 | 2005-10-22 16:02:39 +1000 | [diff] [blame] | 469 | cuda_restart(); |
Paul Mackerras | 14cf11a | 2005-09-26 16:04:21 +1000 | [diff] [blame] | 470 | break; |
Paul Mackerras | 14cf11a | 2005-09-26 16:04:21 +1000 | [diff] [blame] | 471 | case SYS_CTRLER_PMU: |
| 472 | pmu_restart(); |
| 473 | break; |
Paul Mackerras | 35499c0 | 2005-10-22 16:02:39 +1000 | [diff] [blame] | 474 | case SYS_CTRLER_SMU: |
| 475 | smu_restart(); |
| 476 | break; |
Paul Mackerras | 14cf11a | 2005-09-26 16:04:21 +1000 | [diff] [blame] | 477 | default: ; |
| 478 | } |
| 479 | } |
| 480 | |
Paul Mackerras | 35499c0 | 2005-10-22 16:02:39 +1000 | [diff] [blame] | 481 | static void pmac_power_off(void) |
Paul Mackerras | 14cf11a | 2005-09-26 16:04:21 +1000 | [diff] [blame] | 482 | { |
Paul Mackerras | 14cf11a | 2005-09-26 16:04:21 +1000 | [diff] [blame] | 483 | switch (sys_ctrler) { |
Paul Mackerras | 14cf11a | 2005-09-26 16:04:21 +1000 | [diff] [blame] | 484 | case SYS_CTRLER_CUDA: |
Paul Mackerras | 35499c0 | 2005-10-22 16:02:39 +1000 | [diff] [blame] | 485 | cuda_shutdown(); |
Paul Mackerras | 14cf11a | 2005-09-26 16:04:21 +1000 | [diff] [blame] | 486 | break; |
Paul Mackerras | 14cf11a | 2005-09-26 16:04:21 +1000 | [diff] [blame] | 487 | case SYS_CTRLER_PMU: |
| 488 | pmu_shutdown(); |
| 489 | break; |
Paul Mackerras | 35499c0 | 2005-10-22 16:02:39 +1000 | [diff] [blame] | 490 | case SYS_CTRLER_SMU: |
| 491 | smu_shutdown(); |
| 492 | break; |
Paul Mackerras | 14cf11a | 2005-09-26 16:04:21 +1000 | [diff] [blame] | 493 | default: ; |
| 494 | } |
| 495 | } |
| 496 | |
| 497 | static void |
| 498 | pmac_halt(void) |
| 499 | { |
| 500 | pmac_power_off(); |
| 501 | } |
| 502 | |
Paul Mackerras | 35499c0 | 2005-10-22 16:02:39 +1000 | [diff] [blame] | 503 | /* |
| 504 | * Early initialization. |
| 505 | */ |
| 506 | static void __init pmac_init_early(void) |
Paul Mackerras | 14cf11a | 2005-09-26 16:04:21 +1000 | [diff] [blame] | 507 | { |
Benjamin Herrenschmidt | 51d3082 | 2005-11-23 17:57:25 +1100 | [diff] [blame] | 508 | /* Enable early btext debug if requested */ |
| 509 | if (strstr(cmd_line, "btextdbg")) { |
| 510 | udbg_adb_init_early(); |
| 511 | register_early_udbg_console(); |
Paul Mackerras | 35499c0 | 2005-10-22 16:02:39 +1000 | [diff] [blame] | 512 | } |
| 513 | |
Benjamin Herrenschmidt | 51d3082 | 2005-11-23 17:57:25 +1100 | [diff] [blame] | 514 | /* Probe motherboard chipset */ |
| 515 | pmac_feature_init(); |
| 516 | |
Benjamin Herrenschmidt | 51d3082 | 2005-11-23 17:57:25 +1100 | [diff] [blame] | 517 | /* Initialize debug stuff */ |
| 518 | udbg_scc_init(!!strstr(cmd_line, "sccdbg")); |
| 519 | udbg_adb_init(!!strstr(cmd_line, "btextdbg")); |
| 520 | |
| 521 | #ifdef CONFIG_PPC64 |
Benjamin Herrenschmidt | 1beb6a7 | 2005-12-14 13:10:10 +1100 | [diff] [blame] | 522 | iommu_init_early_dart(); |
Paul Mackerras | 35499c0 | 2005-10-22 16:02:39 +1000 | [diff] [blame] | 523 | #endif |
| 524 | } |
| 525 | |
Paul Mackerras | 35499c0 | 2005-10-22 16:02:39 +1000 | [diff] [blame] | 526 | static int __init pmac_declare_of_platform_devices(void) |
Paul Mackerras | 14cf11a | 2005-09-26 16:04:21 +1000 | [diff] [blame] | 527 | { |
Benjamin Herrenschmidt | a28d3af | 2006-01-07 11:35:26 +1100 | [diff] [blame] | 528 | struct device_node *np; |
Paul Mackerras | 14cf11a | 2005-09-26 16:04:21 +1000 | [diff] [blame] | 529 | |
Benjamin Herrenschmidt | e822250 | 2006-03-28 23:15:54 +1100 | [diff] [blame] | 530 | if (machine_is(chrp)) |
| 531 | return -1; |
| 532 | |
Benjamin Herrenschmidt | 730745a | 2006-01-07 11:30:44 +1100 | [diff] [blame] | 533 | np = of_find_node_by_name(NULL, "valkyrie"); |
Paul Mackerras | 35499c0 | 2005-10-22 16:02:39 +1000 | [diff] [blame] | 534 | if (np) |
| 535 | of_platform_device_create(np, "valkyrie", NULL); |
Benjamin Herrenschmidt | 730745a | 2006-01-07 11:30:44 +1100 | [diff] [blame] | 536 | np = of_find_node_by_name(NULL, "platinum"); |
Paul Mackerras | 35499c0 | 2005-10-22 16:02:39 +1000 | [diff] [blame] | 537 | if (np) |
| 538 | of_platform_device_create(np, "platinum", NULL); |
Paul Mackerras | 35499c0 | 2005-10-22 16:02:39 +1000 | [diff] [blame] | 539 | np = of_find_node_by_type(NULL, "smu"); |
| 540 | if (np) { |
| 541 | of_platform_device_create(np, "smu", NULL); |
| 542 | of_node_put(np); |
| 543 | } |
Paul Mackerras | 14cf11a | 2005-09-26 16:04:21 +1000 | [diff] [blame] | 544 | |
| 545 | return 0; |
| 546 | } |
Grant Likely | d518b71 | 2008-01-03 06:14:28 +1100 | [diff] [blame] | 547 | machine_device_initcall(powermac, pmac_declare_of_platform_devices); |
Paul Mackerras | 35499c0 | 2005-10-22 16:02:39 +1000 | [diff] [blame] | 548 | |
| 549 | /* |
| 550 | * Called very early, MMU is off, device-tree isn't unflattened |
| 551 | */ |
Benjamin Herrenschmidt | e822250 | 2006-03-28 23:15:54 +1100 | [diff] [blame] | 552 | static int __init pmac_probe(void) |
Paul Mackerras | 35499c0 | 2005-10-22 16:02:39 +1000 | [diff] [blame] | 553 | { |
Benjamin Herrenschmidt | e822250 | 2006-03-28 23:15:54 +1100 | [diff] [blame] | 554 | unsigned long root = of_get_flat_dt_root(); |
| 555 | |
| 556 | if (!of_flat_dt_is_compatible(root, "Power Macintosh") && |
| 557 | !of_flat_dt_is_compatible(root, "MacRISC")) |
Paul Mackerras | 35499c0 | 2005-10-22 16:02:39 +1000 | [diff] [blame] | 558 | return 0; |
| 559 | |
Benjamin Herrenschmidt | e822250 | 2006-03-28 23:15:54 +1100 | [diff] [blame] | 560 | #ifdef CONFIG_PPC64 |
Paul Mackerras | 35499c0 | 2005-10-22 16:02:39 +1000 | [diff] [blame] | 561 | /* |
| 562 | * On U3, the DART (iommu) must be allocated now since it |
| 563 | * has an impact on htab_initialize (due to the large page it |
| 564 | * occupies having to be broken up so the DART itself is not |
| 565 | * part of the cacheable linar mapping |
| 566 | */ |
Benjamin Herrenschmidt | 1beb6a7 | 2005-12-14 13:10:10 +1100 | [diff] [blame] | 567 | alloc_dart_table(); |
Michael Ellerman | 7d0daae | 2006-06-23 18:16:38 +1000 | [diff] [blame] | 568 | |
| 569 | hpte_init_native(); |
Paul Mackerras | 35499c0 | 2005-10-22 16:02:39 +1000 | [diff] [blame] | 570 | #endif |
| 571 | |
Benjamin Herrenschmidt | e822250 | 2006-03-28 23:15:54 +1100 | [diff] [blame] | 572 | #ifdef CONFIG_PPC32 |
| 573 | /* isa_io_base gets set in pmac_pci_init */ |
Benjamin Herrenschmidt | e822250 | 2006-03-28 23:15:54 +1100 | [diff] [blame] | 574 | ISA_DMA_THRESHOLD = ~0L; |
| 575 | DMA_MODE_READ = 1; |
| 576 | DMA_MODE_WRITE = 2; |
| 577 | |
| 578 | #if defined(CONFIG_BLK_DEV_IDE) || defined(CONFIG_BLK_DEV_IDE_MODULE) |
| 579 | #ifdef CONFIG_BLK_DEV_IDE_PMAC |
| 580 | ppc_ide_md.ide_init_hwif = pmac_ide_init_hwif_ports; |
| 581 | ppc_ide_md.default_io_base = pmac_ide_get_base; |
| 582 | #endif /* CONFIG_BLK_DEV_IDE_PMAC */ |
| 583 | #endif /* defined(CONFIG_BLK_DEV_IDE) || defined(CONFIG_BLK_DEV_IDE_MODULE) */ |
| 584 | |
| 585 | #endif /* CONFIG_PPC32 */ |
| 586 | |
Paul Mackerras | 35499c0 | 2005-10-22 16:02:39 +1000 | [diff] [blame] | 587 | #ifdef CONFIG_PMAC_SMU |
| 588 | /* |
| 589 | * SMU based G5s need some memory below 2Gb, at least the current |
| 590 | * driver needs that. We have to allocate it now. We allocate 4k |
| 591 | * (1 small page) for now. |
| 592 | */ |
| 593 | smu_cmdbuf_abs = lmb_alloc_base(4096, 4096, 0x80000000UL); |
| 594 | #endif /* CONFIG_PMAC_SMU */ |
| 595 | |
| 596 | return 1; |
| 597 | } |
| 598 | |
| 599 | #ifdef CONFIG_PPC64 |
Benjamin Herrenschmidt | 51d3082 | 2005-11-23 17:57:25 +1100 | [diff] [blame] | 600 | /* Move that to pci.c */ |
| 601 | static int pmac_pci_probe_mode(struct pci_bus *bus) |
Paul Mackerras | 35499c0 | 2005-10-22 16:02:39 +1000 | [diff] [blame] | 602 | { |
| 603 | struct device_node *node = bus->sysdata; |
| 604 | |
| 605 | /* We need to use normal PCI probing for the AGP bus, |
Benjamin Herrenschmidt | 1beb6a7 | 2005-12-14 13:10:10 +1100 | [diff] [blame] | 606 | * since the device for the AGP bridge isn't in the tree. |
Benjamin Herrenschmidt | 444532d | 2007-12-20 14:55:01 +1100 | [diff] [blame] | 607 | * Same for the PCIe host on U4 and the HT host bridge. |
Benjamin Herrenschmidt | 1beb6a7 | 2005-12-14 13:10:10 +1100 | [diff] [blame] | 608 | */ |
Stephen Rothwell | 55b61fe | 2007-05-03 17:26:52 +1000 | [diff] [blame] | 609 | if (bus->self == NULL && (of_device_is_compatible(node, "u3-agp") || |
Benjamin Herrenschmidt | 444532d | 2007-12-20 14:55:01 +1100 | [diff] [blame] | 610 | of_device_is_compatible(node, "u4-pcie") || |
| 611 | of_device_is_compatible(node, "u3-ht"))) |
Paul Mackerras | 35499c0 | 2005-10-22 16:02:39 +1000 | [diff] [blame] | 612 | return PCI_PROBE_NORMAL; |
Paul Mackerras | 35499c0 | 2005-10-22 16:02:39 +1000 | [diff] [blame] | 613 | return PCI_PROBE_DEVTREE; |
| 614 | } |
Johannes Berg | d9333af | 2007-05-03 06:33:51 +1000 | [diff] [blame] | 615 | |
| 616 | #ifdef CONFIG_HOTPLUG_CPU |
| 617 | /* access per cpu vars from generic smp.c */ |
| 618 | DECLARE_PER_CPU(int, cpu_state); |
| 619 | |
| 620 | static void pmac_cpu_die(void) |
| 621 | { |
| 622 | /* |
| 623 | * turn off as much as possible, we'll be |
| 624 | * kicked out as this will only be invoked |
| 625 | * on core99 platforms for now ... |
| 626 | */ |
| 627 | |
| 628 | printk(KERN_INFO "CPU#%d offline\n", smp_processor_id()); |
| 629 | __get_cpu_var(cpu_state) = CPU_DEAD; |
| 630 | smp_wmb(); |
| 631 | |
| 632 | /* |
| 633 | * during the path that leads here preemption is disabled, |
| 634 | * reenable it now so that when coming up preempt count is |
| 635 | * zero correctly |
| 636 | */ |
| 637 | preempt_enable(); |
| 638 | |
| 639 | /* |
| 640 | * hard-disable interrupts for the non-NAP case, the NAP code |
| 641 | * needs to re-enable interrupts (but soft-disables them) |
| 642 | */ |
| 643 | hard_irq_disable(); |
| 644 | |
| 645 | while (1) { |
| 646 | /* let's not take timer interrupts too often ... */ |
| 647 | set_dec(0x7fffffff); |
| 648 | |
| 649 | /* should always be true at this point */ |
| 650 | if (cpu_has_feature(CPU_FTR_CAN_NAP)) |
| 651 | power4_cpu_offline_powersave(); |
| 652 | else { |
| 653 | HMT_low(); |
| 654 | HMT_very_low(); |
| 655 | } |
| 656 | } |
| 657 | } |
| 658 | #endif /* CONFIG_HOTPLUG_CPU */ |
| 659 | |
| 660 | #endif /* CONFIG_PPC64 */ |
Paul Mackerras | 35499c0 | 2005-10-22 16:02:39 +1000 | [diff] [blame] | 661 | |
Benjamin Herrenschmidt | e822250 | 2006-03-28 23:15:54 +1100 | [diff] [blame] | 662 | define_machine(powermac) { |
| 663 | .name = "PowerMac", |
Paul Mackerras | 35499c0 | 2005-10-22 16:02:39 +1000 | [diff] [blame] | 664 | .probe = pmac_probe, |
| 665 | .setup_arch = pmac_setup_arch, |
| 666 | .init_early = pmac_init_early, |
| 667 | .show_cpuinfo = pmac_show_cpuinfo, |
Paul Mackerras | 35499c0 | 2005-10-22 16:02:39 +1000 | [diff] [blame] | 668 | .init_IRQ = pmac_pic_init, |
Benjamin Herrenschmidt | cc5d018 | 2005-12-13 18:01:21 +1100 | [diff] [blame] | 669 | .get_irq = NULL, /* changed later */ |
Benjamin Herrenschmidt | f90bb15 | 2006-11-11 17:24:51 +1100 | [diff] [blame] | 670 | .pci_irq_fixup = pmac_pci_irq_fixup, |
Paul Mackerras | 35499c0 | 2005-10-22 16:02:39 +1000 | [diff] [blame] | 671 | .restart = pmac_restart, |
| 672 | .power_off = pmac_power_off, |
| 673 | .halt = pmac_halt, |
| 674 | .time_init = pmac_time_init, |
| 675 | .get_boot_time = pmac_get_boot_time, |
| 676 | .set_rtc_time = pmac_set_rtc_time, |
| 677 | .get_rtc_time = pmac_get_rtc_time, |
| 678 | .calibrate_decr = pmac_calibrate_decr, |
| 679 | .feature_call = pmac_do_feature_call, |
Kumar Gala | be6b843 | 2005-12-20 16:37:07 -0600 | [diff] [blame] | 680 | .progress = udbg_progress, |
Paul Mackerras | 35499c0 | 2005-10-22 16:02:39 +1000 | [diff] [blame] | 681 | #ifdef CONFIG_PPC64 |
Benjamin Herrenschmidt | 51d3082 | 2005-11-23 17:57:25 +1100 | [diff] [blame] | 682 | .pci_probe_mode = pmac_pci_probe_mode, |
Paul Mackerras | a0652fc | 2006-03-27 15:03:03 +1100 | [diff] [blame] | 683 | .power_save = power4_idle, |
Paul Mackerras | 35499c0 | 2005-10-22 16:02:39 +1000 | [diff] [blame] | 684 | .enable_pmcs = power4_enable_pmcs, |
Michael Ellerman | 3d1229d | 2005-11-14 23:35:00 +1100 | [diff] [blame] | 685 | #ifdef CONFIG_KEXEC |
| 686 | .machine_kexec = default_machine_kexec, |
| 687 | .machine_kexec_prepare = default_machine_kexec_prepare, |
Michael Ellerman | cc53291 | 2005-12-04 18:39:43 +1100 | [diff] [blame] | 688 | .machine_crash_shutdown = default_machine_crash_shutdown, |
Paul Mackerras | 35499c0 | 2005-10-22 16:02:39 +1000 | [diff] [blame] | 689 | #endif |
Michael Ellerman | 3d1229d | 2005-11-14 23:35:00 +1100 | [diff] [blame] | 690 | #endif /* CONFIG_PPC64 */ |
Paul Mackerras | 35499c0 | 2005-10-22 16:02:39 +1000 | [diff] [blame] | 691 | #ifdef CONFIG_PPC32 |
| 692 | .pcibios_enable_device_hook = pmac_pci_enable_device_hook, |
| 693 | .pcibios_after_init = pmac_pcibios_after_init, |
| 694 | .phys_mem_access_prot = pci_phys_mem_access_prot, |
| 695 | #endif |
Benjamin Herrenschmidt | e822250 | 2006-03-28 23:15:54 +1100 | [diff] [blame] | 696 | #if defined(CONFIG_HOTPLUG_CPU) && defined(CONFIG_PPC64) |
Johannes Berg | d9333af | 2007-05-03 06:33:51 +1000 | [diff] [blame] | 697 | .cpu_die = pmac_cpu_die, |
Benjamin Herrenschmidt | e822250 | 2006-03-28 23:15:54 +1100 | [diff] [blame] | 698 | #endif |
Paul Mackerras | 35499c0 | 2005-10-22 16:02:39 +1000 | [diff] [blame] | 699 | }; |