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> |
Paul Gortmaker | 66b15db | 2011-05-27 10:46:24 -0400 | [diff] [blame] | 34 | #include <linux/export.h> |
Paul Mackerras | 14cf11a | 2005-09-26 16:04:21 +1000 | [diff] [blame] | 35 | #include <linux/user.h> |
Paul Mackerras | 14cf11a | 2005-09-26 16:04:21 +1000 | [diff] [blame] | 36 | #include <linux/tty.h> |
| 37 | #include <linux/string.h> |
| 38 | #include <linux/delay.h> |
| 39 | #include <linux/ioport.h> |
| 40 | #include <linux/major.h> |
| 41 | #include <linux/initrd.h> |
| 42 | #include <linux/vt_kern.h> |
| 43 | #include <linux/console.h> |
Paul Mackerras | 14cf11a | 2005-09-26 16:04:21 +1000 | [diff] [blame] | 44 | #include <linux/pci.h> |
| 45 | #include <linux/adb.h> |
| 46 | #include <linux/cuda.h> |
| 47 | #include <linux/pmu.h> |
| 48 | #include <linux/irq.h> |
| 49 | #include <linux/seq_file.h> |
| 50 | #include <linux/root_dev.h> |
| 51 | #include <linux/bitops.h> |
| 52 | #include <linux/suspend.h> |
Jon Loeliger | 5f867dc | 2007-11-14 04:13:03 +1100 | [diff] [blame] | 53 | #include <linux/of_device.h> |
| 54 | #include <linux/of_platform.h> |
Yinghai Lu | 95f72d1 | 2010-07-12 14:36:09 +1000 | [diff] [blame] | 55 | #include <linux/memblock.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> |
Paul Mackerras | 14cf11a | 2005-09-26 16:04:21 +1000 | [diff] [blame] | 60 | #include <asm/pgtable.h> |
| 61 | #include <asm/io.h> |
| 62 | #include <asm/pci-bridge.h> |
| 63 | #include <asm/ohare.h> |
| 64 | #include <asm/mediabay.h> |
| 65 | #include <asm/machdep.h> |
| 66 | #include <asm/dma.h> |
Paul Mackerras | 14cf11a | 2005-09-26 16:04:21 +1000 | [diff] [blame] | 67 | #include <asm/cputable.h> |
| 68 | #include <asm/btext.h> |
| 69 | #include <asm/pmac_feature.h> |
| 70 | #include <asm/time.h> |
Paul Mackerras | 14cf11a | 2005-09-26 16:04:21 +1000 | [diff] [blame] | 71 | #include <asm/mmu_context.h> |
Paul Mackerras | 35499c0 | 2005-10-22 16:02:39 +1000 | [diff] [blame] | 72 | #include <asm/iommu.h> |
| 73 | #include <asm/smu.h> |
| 74 | #include <asm/pmc.h> |
Benjamin Herrenschmidt | 51d3082 | 2005-11-23 17:57:25 +1100 | [diff] [blame] | 75 | #include <asm/udbg.h> |
Paul Mackerras | 14cf11a | 2005-09-26 16:04:21 +1000 | [diff] [blame] | 76 | |
Paul Mackerras | 3c3f42d | 2005-10-10 22:58:41 +1000 | [diff] [blame] | 77 | #include "pmac.h" |
Paul Mackerras | 14cf11a | 2005-09-26 16:04:21 +1000 | [diff] [blame] | 78 | |
| 79 | #undef SHOW_GATWICK_IRQS |
| 80 | |
Paul Mackerras | 14cf11a | 2005-09-26 16:04:21 +1000 | [diff] [blame] | 81 | int ppc_override_l2cr = 0; |
| 82 | int ppc_override_l2cr_value; |
| 83 | int has_l2cache = 0; |
| 84 | |
Olaf Hering | d2515c8 | 2006-01-22 22:19:02 +0100 | [diff] [blame] | 85 | int pmac_newworld; |
Paul Mackerras | 9b6b563 | 2005-10-06 12:06:20 +1000 | [diff] [blame] | 86 | |
Paul Mackerras | 14cf11a | 2005-09-26 16:04:21 +1000 | [diff] [blame] | 87 | static int current_root_goodness = -1; |
| 88 | |
Paul Mackerras | 35499c0 | 2005-10-22 16:02:39 +1000 | [diff] [blame] | 89 | extern struct machdep_calls pmac_md; |
Paul Mackerras | 14cf11a | 2005-09-26 16:04:21 +1000 | [diff] [blame] | 90 | |
| 91 | #define DEFAULT_ROOT_DEVICE Root_SDA1 /* sda1 - slightly silly choice */ |
| 92 | |
Paul Mackerras | 35499c0 | 2005-10-22 16:02:39 +1000 | [diff] [blame] | 93 | #ifdef CONFIG_PPC64 |
Paul Mackerras | 35499c0 | 2005-10-22 16:02:39 +1000 | [diff] [blame] | 94 | int sccdbg; |
Paul Mackerras | 14cf11a | 2005-09-26 16:04:21 +1000 | [diff] [blame] | 95 | #endif |
| 96 | |
| 97 | sys_ctrler_t sys_ctrler = SYS_CTRLER_UNKNOWN; |
Paul Mackerras | 35499c0 | 2005-10-22 16:02:39 +1000 | [diff] [blame] | 98 | EXPORT_SYMBOL(sys_ctrler); |
| 99 | |
| 100 | #ifdef CONFIG_PMAC_SMU |
| 101 | unsigned long smu_cmdbuf_abs; |
| 102 | EXPORT_SYMBOL(smu_cmdbuf_abs); |
| 103 | #endif |
Paul Mackerras | 14cf11a | 2005-09-26 16:04:21 +1000 | [diff] [blame] | 104 | |
Paul Mackerras | 0dd194d | 2005-10-20 20:48:19 +1000 | [diff] [blame] | 105 | static void pmac_show_cpuinfo(struct seq_file *m) |
Paul Mackerras | 14cf11a | 2005-09-26 16:04:21 +1000 | [diff] [blame] | 106 | { |
| 107 | struct device_node *np; |
Jeremy Kerr | 018a3d1 | 2006-07-12 15:40:29 +1000 | [diff] [blame] | 108 | const char *pp; |
Paul Mackerras | 14cf11a | 2005-09-26 16:04:21 +1000 | [diff] [blame] | 109 | int plen; |
Paul Mackerras | 0dd194d | 2005-10-20 20:48:19 +1000 | [diff] [blame] | 110 | int mbmodel; |
| 111 | unsigned int mbflags; |
Paul Mackerras | 14cf11a | 2005-09-26 16:04:21 +1000 | [diff] [blame] | 112 | char* mbname; |
| 113 | |
Paul Mackerras | 0dd194d | 2005-10-20 20:48:19 +1000 | [diff] [blame] | 114 | mbmodel = pmac_call_feature(PMAC_FTR_GET_MB_INFO, NULL, |
| 115 | PMAC_MB_INFO_MODEL, 0); |
| 116 | mbflags = pmac_call_feature(PMAC_FTR_GET_MB_INFO, NULL, |
| 117 | PMAC_MB_INFO_FLAGS, 0); |
| 118 | if (pmac_call_feature(PMAC_FTR_GET_MB_INFO, NULL, PMAC_MB_INFO_NAME, |
| 119 | (long) &mbname) != 0) |
Paul Mackerras | 14cf11a | 2005-09-26 16:04:21 +1000 | [diff] [blame] | 120 | mbname = "Unknown"; |
| 121 | |
| 122 | /* find motherboard type */ |
| 123 | seq_printf(m, "machine\t\t: "); |
Paul Mackerras | 0dd194d | 2005-10-20 20:48:19 +1000 | [diff] [blame] | 124 | np = of_find_node_by_path("/"); |
Paul Mackerras | 14cf11a | 2005-09-26 16:04:21 +1000 | [diff] [blame] | 125 | if (np != NULL) { |
Stephen Rothwell | e2eb639 | 2007-04-03 22:26:41 +1000 | [diff] [blame] | 126 | pp = of_get_property(np, "model", NULL); |
Paul Mackerras | 14cf11a | 2005-09-26 16:04:21 +1000 | [diff] [blame] | 127 | if (pp != NULL) |
| 128 | seq_printf(m, "%s\n", pp); |
| 129 | else |
| 130 | seq_printf(m, "PowerMac\n"); |
Stephen Rothwell | e2eb639 | 2007-04-03 22:26:41 +1000 | [diff] [blame] | 131 | pp = of_get_property(np, "compatible", &plen); |
Paul Mackerras | 14cf11a | 2005-09-26 16:04:21 +1000 | [diff] [blame] | 132 | if (pp != NULL) { |
| 133 | seq_printf(m, "motherboard\t:"); |
| 134 | while (plen > 0) { |
| 135 | int l = strlen(pp) + 1; |
| 136 | seq_printf(m, " %s", pp); |
| 137 | plen -= l; |
| 138 | pp += l; |
| 139 | } |
| 140 | seq_printf(m, "\n"); |
| 141 | } |
Paul Mackerras | 0dd194d | 2005-10-20 20:48:19 +1000 | [diff] [blame] | 142 | of_node_put(np); |
Paul Mackerras | 14cf11a | 2005-09-26 16:04:21 +1000 | [diff] [blame] | 143 | } else |
| 144 | seq_printf(m, "PowerMac\n"); |
| 145 | |
| 146 | /* print parsed model */ |
| 147 | seq_printf(m, "detected as\t: %d (%s)\n", mbmodel, mbname); |
| 148 | seq_printf(m, "pmac flags\t: %08x\n", mbflags); |
| 149 | |
| 150 | /* find l2 cache info */ |
Paul Mackerras | 0dd194d | 2005-10-20 20:48:19 +1000 | [diff] [blame] | 151 | np = of_find_node_by_name(NULL, "l2-cache"); |
| 152 | if (np == NULL) |
| 153 | np = of_find_node_by_type(NULL, "cache"); |
| 154 | if (np != NULL) { |
Stephen Rothwell | e2eb639 | 2007-04-03 22:26:41 +1000 | [diff] [blame] | 155 | const unsigned int *ic = |
| 156 | of_get_property(np, "i-cache-size", NULL); |
| 157 | const unsigned int *dc = |
| 158 | of_get_property(np, "d-cache-size", NULL); |
Paul Mackerras | 14cf11a | 2005-09-26 16:04:21 +1000 | [diff] [blame] | 159 | seq_printf(m, "L2 cache\t:"); |
| 160 | has_l2cache = 1; |
Stephen Rothwell | e2eb639 | 2007-04-03 22:26:41 +1000 | [diff] [blame] | 161 | if (of_get_property(np, "cache-unified", NULL) != 0 && dc) { |
Paul Mackerras | 14cf11a | 2005-09-26 16:04:21 +1000 | [diff] [blame] | 162 | seq_printf(m, " %dK unified", *dc / 1024); |
| 163 | } else { |
| 164 | if (ic) |
| 165 | seq_printf(m, " %dK instruction", *ic / 1024); |
| 166 | if (dc) |
| 167 | seq_printf(m, "%s %dK data", |
| 168 | (ic? " +": ""), *dc / 1024); |
| 169 | } |
Stephen Rothwell | e2eb639 | 2007-04-03 22:26:41 +1000 | [diff] [blame] | 170 | pp = of_get_property(np, "ram-type", NULL); |
Paul Mackerras | 14cf11a | 2005-09-26 16:04:21 +1000 | [diff] [blame] | 171 | if (pp) |
| 172 | seq_printf(m, " %s", pp); |
| 173 | seq_printf(m, "\n"); |
Paul Mackerras | 0dd194d | 2005-10-20 20:48:19 +1000 | [diff] [blame] | 174 | of_node_put(np); |
Paul Mackerras | 14cf11a | 2005-09-26 16:04:21 +1000 | [diff] [blame] | 175 | } |
| 176 | |
| 177 | /* Indicate newworld/oldworld */ |
| 178 | seq_printf(m, "pmac-generation\t: %s\n", |
| 179 | pmac_newworld ? "NewWorld" : "OldWorld"); |
Paul Mackerras | 14cf11a | 2005-09-26 16:04:21 +1000 | [diff] [blame] | 180 | } |
| 181 | |
Paul Mackerras | 35499c0 | 2005-10-22 16:02:39 +1000 | [diff] [blame] | 182 | #ifndef CONFIG_ADB_CUDA |
| 183 | int find_via_cuda(void) |
| 184 | { |
Stephen Rothwell | 30686ba | 2007-04-24 13:53:04 +1000 | [diff] [blame] | 185 | struct device_node *dn = of_find_node_by_name(NULL, "via-cuda"); |
| 186 | |
| 187 | if (!dn) |
Paul Mackerras | 35499c0 | 2005-10-22 16:02:39 +1000 | [diff] [blame] | 188 | return 0; |
Stephen Rothwell | 30686ba | 2007-04-24 13:53:04 +1000 | [diff] [blame] | 189 | of_node_put(dn); |
Paul Mackerras | 35499c0 | 2005-10-22 16:02:39 +1000 | [diff] [blame] | 190 | printk("WARNING ! Your machine is CUDA-based but your kernel\n"); |
| 191 | printk(" wasn't compiled with CONFIG_ADB_CUDA option !\n"); |
| 192 | return 0; |
| 193 | } |
| 194 | #endif |
| 195 | |
| 196 | #ifndef CONFIG_ADB_PMU |
| 197 | int find_via_pmu(void) |
| 198 | { |
Stephen Rothwell | 30686ba | 2007-04-24 13:53:04 +1000 | [diff] [blame] | 199 | struct device_node *dn = of_find_node_by_name(NULL, "via-pmu"); |
| 200 | |
| 201 | if (!dn) |
Paul Mackerras | 35499c0 | 2005-10-22 16:02:39 +1000 | [diff] [blame] | 202 | return 0; |
Stephen Rothwell | 30686ba | 2007-04-24 13:53:04 +1000 | [diff] [blame] | 203 | of_node_put(dn); |
Paul Mackerras | 35499c0 | 2005-10-22 16:02:39 +1000 | [diff] [blame] | 204 | printk("WARNING ! Your machine is PMU-based but your kernel\n"); |
| 205 | printk(" wasn't compiled with CONFIG_ADB_PMU option !\n"); |
Paul Mackerras | a575b80 | 2005-10-23 17:23:21 +1000 | [diff] [blame] | 206 | return 0; |
Paul Mackerras | 35499c0 | 2005-10-22 16:02:39 +1000 | [diff] [blame] | 207 | } |
| 208 | #endif |
| 209 | |
| 210 | #ifndef CONFIG_PMAC_SMU |
| 211 | int smu_init(void) |
| 212 | { |
| 213 | /* should check and warn if SMU is present */ |
| 214 | return 0; |
| 215 | } |
| 216 | #endif |
| 217 | |
| 218 | #ifdef CONFIG_PPC32 |
Paul Mackerras | 14cf11a | 2005-09-26 16:04:21 +1000 | [diff] [blame] | 219 | static volatile u32 *sysctrl_regs; |
| 220 | |
Paul Mackerras | 35499c0 | 2005-10-22 16:02:39 +1000 | [diff] [blame] | 221 | static void __init ohare_init(void) |
Paul Mackerras | 14cf11a | 2005-09-26 16:04:21 +1000 | [diff] [blame] | 222 | { |
Stephen Rothwell | 30686ba | 2007-04-24 13:53:04 +1000 | [diff] [blame] | 223 | struct device_node *dn; |
| 224 | |
Paul Mackerras | 14cf11a | 2005-09-26 16:04:21 +1000 | [diff] [blame] | 225 | /* this area has the CPU identification register |
| 226 | and some registers used by smp boards */ |
| 227 | sysctrl_regs = (volatile u32 *) ioremap(0xf8000000, 0x1000); |
Paul Mackerras | 14cf11a | 2005-09-26 16:04:21 +1000 | [diff] [blame] | 228 | |
Paul Mackerras | 35499c0 | 2005-10-22 16:02:39 +1000 | [diff] [blame] | 229 | /* |
| 230 | * Turn on the L2 cache. |
| 231 | * We assume that we have a PSX memory controller iff |
| 232 | * we have an ohare I/O controller. |
| 233 | */ |
Stephen Rothwell | 30686ba | 2007-04-24 13:53:04 +1000 | [diff] [blame] | 234 | dn = of_find_node_by_name(NULL, "ohare"); |
| 235 | if (dn) { |
| 236 | of_node_put(dn); |
Paul Mackerras | 35499c0 | 2005-10-22 16:02:39 +1000 | [diff] [blame] | 237 | if (((sysctrl_regs[2] >> 24) & 0xf) >= 3) { |
| 238 | if (sysctrl_regs[4] & 0x10) |
| 239 | sysctrl_regs[4] |= 0x04000020; |
| 240 | else |
| 241 | sysctrl_regs[4] |= 0x04000000; |
| 242 | if(has_l2cache) |
| 243 | printk(KERN_INFO "Level 2 cache enabled\n"); |
| 244 | } |
| 245 | } |
| 246 | } |
Paul Mackerras | 14cf11a | 2005-09-26 16:04:21 +1000 | [diff] [blame] | 247 | |
Paul Mackerras | 35499c0 | 2005-10-22 16:02:39 +1000 | [diff] [blame] | 248 | static void __init l2cr_init(void) |
| 249 | { |
Paul Mackerras | 14cf11a | 2005-09-26 16:04:21 +1000 | [diff] [blame] | 250 | /* Checks "l2cr-value" property in the registry */ |
| 251 | if (cpu_has_feature(CPU_FTR_L2CR)) { |
Stephen Rothwell | 1658ab6 | 2007-04-24 13:51:59 +1000 | [diff] [blame] | 252 | struct device_node *np = of_find_node_by_name(NULL, "cpus"); |
Paul Mackerras | 14cf11a | 2005-09-26 16:04:21 +1000 | [diff] [blame] | 253 | if (np == 0) |
Stephen Rothwell | 1658ab6 | 2007-04-24 13:51:59 +1000 | [diff] [blame] | 254 | np = of_find_node_by_type(NULL, "cpu"); |
Paul Mackerras | 14cf11a | 2005-09-26 16:04:21 +1000 | [diff] [blame] | 255 | if (np != 0) { |
Jeremy Kerr | 018a3d1 | 2006-07-12 15:40:29 +1000 | [diff] [blame] | 256 | const unsigned int *l2cr = |
Stephen Rothwell | e2eb639 | 2007-04-03 22:26:41 +1000 | [diff] [blame] | 257 | of_get_property(np, "l2cr-value", NULL); |
Paul Mackerras | 14cf11a | 2005-09-26 16:04:21 +1000 | [diff] [blame] | 258 | if (l2cr != 0) { |
| 259 | ppc_override_l2cr = 1; |
| 260 | ppc_override_l2cr_value = *l2cr; |
| 261 | _set_L2CR(0); |
| 262 | _set_L2CR(ppc_override_l2cr_value); |
| 263 | } |
Stephen Rothwell | 1658ab6 | 2007-04-24 13:51:59 +1000 | [diff] [blame] | 264 | of_node_put(np); |
Paul Mackerras | 14cf11a | 2005-09-26 16:04:21 +1000 | [diff] [blame] | 265 | } |
| 266 | } |
| 267 | |
| 268 | if (ppc_override_l2cr) |
Paul Mackerras | 35499c0 | 2005-10-22 16:02:39 +1000 | [diff] [blame] | 269 | printk(KERN_INFO "L2CR overridden (0x%x), " |
| 270 | "backside cache is %s\n", |
| 271 | ppc_override_l2cr_value, |
| 272 | (ppc_override_l2cr_value & 0x80000000) |
Paul Mackerras | 14cf11a | 2005-09-26 16:04:21 +1000 | [diff] [blame] | 273 | ? "enabled" : "disabled"); |
Paul Mackerras | 35499c0 | 2005-10-22 16:02:39 +1000 | [diff] [blame] | 274 | } |
| 275 | #endif |
| 276 | |
Arnd Bergmann | ff38e7c | 2006-01-11 00:00:03 +0000 | [diff] [blame] | 277 | static void __init pmac_setup_arch(void) |
Paul Mackerras | 35499c0 | 2005-10-22 16:02:39 +1000 | [diff] [blame] | 278 | { |
Paul Mackerras | a575b80 | 2005-10-23 17:23:21 +1000 | [diff] [blame] | 279 | struct device_node *cpu, *ic; |
Jeremy Kerr | 018a3d1 | 2006-07-12 15:40:29 +1000 | [diff] [blame] | 280 | const int *fp; |
Paul Mackerras | 35499c0 | 2005-10-22 16:02:39 +1000 | [diff] [blame] | 281 | unsigned long pvr; |
| 282 | |
| 283 | pvr = PVR_VER(mfspr(SPRN_PVR)); |
| 284 | |
| 285 | /* Set loops_per_jiffy to a half-way reasonable value, |
| 286 | for use until calibrate_delay gets called. */ |
| 287 | loops_per_jiffy = 50000000 / HZ; |
| 288 | cpu = of_find_node_by_type(NULL, "cpu"); |
| 289 | if (cpu != NULL) { |
Stephen Rothwell | e2eb639 | 2007-04-03 22:26:41 +1000 | [diff] [blame] | 290 | fp = of_get_property(cpu, "clock-frequency", NULL); |
Paul Mackerras | 35499c0 | 2005-10-22 16:02:39 +1000 | [diff] [blame] | 291 | if (fp != NULL) { |
| 292 | if (pvr >= 0x30 && pvr < 0x80) |
| 293 | /* PPC970 etc. */ |
| 294 | loops_per_jiffy = *fp / (3 * HZ); |
| 295 | else if (pvr == 4 || pvr >= 8) |
| 296 | /* 604, G3, G4 etc. */ |
| 297 | loops_per_jiffy = *fp / HZ; |
| 298 | else |
| 299 | /* 601, 603, etc. */ |
| 300 | loops_per_jiffy = *fp / (2 * HZ); |
| 301 | } |
| 302 | of_node_put(cpu); |
| 303 | } |
| 304 | |
Paul Mackerras | a575b80 | 2005-10-23 17:23:21 +1000 | [diff] [blame] | 305 | /* See if newworld or oldworld */ |
Michael Ellerman | 22059a9 | 2008-11-12 18:20:43 +0000 | [diff] [blame] | 306 | ic = of_find_node_with_property(NULL, "interrupt-controller"); |
Olaf Hering | d2515c8 | 2006-01-22 22:19:02 +0100 | [diff] [blame] | 307 | if (ic) { |
| 308 | pmac_newworld = 1; |
Paul Mackerras | a575b80 | 2005-10-23 17:23:21 +1000 | [diff] [blame] | 309 | of_node_put(ic); |
Olaf Hering | d2515c8 | 2006-01-22 22:19:02 +0100 | [diff] [blame] | 310 | } |
Paul Mackerras | a575b80 | 2005-10-23 17:23:21 +1000 | [diff] [blame] | 311 | |
Paul Mackerras | 35499c0 | 2005-10-22 16:02:39 +1000 | [diff] [blame] | 312 | /* Lookup PCI hosts */ |
| 313 | pmac_pci_init(); |
| 314 | |
| 315 | #ifdef CONFIG_PPC32 |
| 316 | ohare_init(); |
| 317 | l2cr_init(); |
| 318 | #endif /* CONFIG_PPC32 */ |
| 319 | |
Paul Mackerras | 14cf11a | 2005-09-26 16:04:21 +1000 | [diff] [blame] | 320 | find_via_cuda(); |
Paul Mackerras | 14cf11a | 2005-09-26 16:04:21 +1000 | [diff] [blame] | 321 | find_via_pmu(); |
Paul Mackerras | 35499c0 | 2005-10-22 16:02:39 +1000 | [diff] [blame] | 322 | smu_init(); |
| 323 | |
Tony Breeds | 21e38df | 2008-04-29 11:42:32 +1000 | [diff] [blame] | 324 | #if defined(CONFIG_NVRAM) || defined(CONFIG_NVRAM_MODULE) || \ |
| 325 | defined(CONFIG_PPC64) |
Paul Mackerras | 14cf11a | 2005-09-26 16:04:21 +1000 | [diff] [blame] | 326 | pmac_nvram_init(); |
| 327 | #endif |
Paul Mackerras | 35499c0 | 2005-10-22 16:02:39 +1000 | [diff] [blame] | 328 | |
| 329 | #ifdef CONFIG_PPC32 |
Paul Mackerras | 14cf11a | 2005-09-26 16:04:21 +1000 | [diff] [blame] | 330 | #ifdef CONFIG_BLK_DEV_INITRD |
| 331 | if (initrd_start) |
| 332 | ROOT_DEV = Root_RAM0; |
| 333 | else |
| 334 | #endif |
| 335 | ROOT_DEV = DEFAULT_ROOT_DEVICE; |
Paul Mackerras | 35499c0 | 2005-10-22 16:02:39 +1000 | [diff] [blame] | 336 | #endif |
Paul Mackerras | 14cf11a | 2005-09-26 16:04:21 +1000 | [diff] [blame] | 337 | |
Benjamin Herrenschmidt | e822250 | 2006-03-28 23:15:54 +1100 | [diff] [blame] | 338 | #ifdef CONFIG_ADB |
Anton Blanchard | 3e47d14 | 2014-09-17 14:39:36 +1000 | [diff] [blame] | 339 | if (strstr(boot_command_line, "adb_sync")) { |
Benjamin Herrenschmidt | e822250 | 2006-03-28 23:15:54 +1100 | [diff] [blame] | 340 | extern int __adb_probe_sync; |
| 341 | __adb_probe_sync = 1; |
| 342 | } |
| 343 | #endif /* CONFIG_ADB */ |
Paul Mackerras | 14cf11a | 2005-09-26 16:04:21 +1000 | [diff] [blame] | 344 | } |
| 345 | |
Paul Mackerras | 14cf11a | 2005-09-26 16:04:21 +1000 | [diff] [blame] | 346 | #ifdef CONFIG_SCSI |
Li Yang | 405861a | 2007-05-23 11:28:03 +0800 | [diff] [blame] | 347 | void note_scsi_host(struct device_node *node, void *host) |
Paul Mackerras | 14cf11a | 2005-09-26 16:04:21 +1000 | [diff] [blame] | 348 | { |
Paul Mackerras | 14cf11a | 2005-09-26 16:04:21 +1000 | [diff] [blame] | 349 | } |
Paul Mackerras | 9b6b563 | 2005-10-06 12:06:20 +1000 | [diff] [blame] | 350 | EXPORT_SYMBOL(note_scsi_host); |
Paul Mackerras | 14cf11a | 2005-09-26 16:04:21 +1000 | [diff] [blame] | 351 | #endif |
| 352 | |
Paul Mackerras | 35499c0 | 2005-10-22 16:02:39 +1000 | [diff] [blame] | 353 | static int initializing = 1; |
| 354 | |
Paul Mackerras | 14cf11a | 2005-09-26 16:04:21 +1000 | [diff] [blame] | 355 | static int pmac_late_init(void) |
| 356 | { |
| 357 | initializing = 0; |
Paul Mackerras | 14cf11a | 2005-09-26 16:04:21 +1000 | [diff] [blame] | 358 | return 0; |
| 359 | } |
Grant Likely | d518b71 | 2008-01-03 06:14:28 +1100 | [diff] [blame] | 360 | machine_late_initcall(powermac, pmac_late_init); |
Paul Mackerras | 14cf11a | 2005-09-26 16:04:21 +1000 | [diff] [blame] | 361 | |
Stephen Rothwell | d741803 | 2007-10-04 12:00:28 +1000 | [diff] [blame] | 362 | /* |
| 363 | * This is __init_refok because we check for "initializing" before |
| 364 | * touching any of the __init sensitive things and "initializing" |
| 365 | * will be false after __init time. This can't be __init because it |
| 366 | * can be called whenever a disk is first accessed. |
| 367 | */ |
| 368 | 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] | 369 | { |
Paul Mackerras | 14cf11a | 2005-09-26 16:04:21 +1000 | [diff] [blame] | 370 | char *p; |
| 371 | |
| 372 | if (!initializing) |
| 373 | return; |
| 374 | if ((goodness <= current_root_goodness) && |
| 375 | ROOT_DEV != DEFAULT_ROOT_DEVICE) |
| 376 | return; |
Alon Bar-Lev | b8757b2 | 2007-02-12 00:54:17 -0800 | [diff] [blame] | 377 | p = strstr(boot_command_line, "root="); |
| 378 | if (p != NULL && (p == boot_command_line || p[-1] == ' ')) |
Paul Mackerras | 14cf11a | 2005-09-26 16:04:21 +1000 | [diff] [blame] | 379 | return; |
| 380 | |
Paul Mackerras | 6ee0d9f | 2007-10-04 13:47:06 +1000 | [diff] [blame] | 381 | ROOT_DEV = dev + part; |
| 382 | current_root_goodness = goodness; |
Paul Mackerras | 14cf11a | 2005-09-26 16:04:21 +1000 | [diff] [blame] | 383 | } |
| 384 | |
Paul Mackerras | 35499c0 | 2005-10-22 16:02:39 +1000 | [diff] [blame] | 385 | #ifdef CONFIG_ADB_CUDA |
Daniel Axtens | 95ec77c | 2016-07-12 10:54:52 +1000 | [diff] [blame^] | 386 | static void __noreturn cuda_restart(void) |
Paul Mackerras | 14cf11a | 2005-09-26 16:04:21 +1000 | [diff] [blame] | 387 | { |
Paul Mackerras | 14cf11a | 2005-09-26 16:04:21 +1000 | [diff] [blame] | 388 | struct adb_request req; |
Paul Mackerras | 14cf11a | 2005-09-26 16:04:21 +1000 | [diff] [blame] | 389 | |
Paul Mackerras | 35499c0 | 2005-10-22 16:02:39 +1000 | [diff] [blame] | 390 | cuda_request(&req, NULL, 2, CUDA_PACKET, CUDA_RESET_SYSTEM); |
| 391 | for (;;) |
| 392 | cuda_poll(); |
| 393 | } |
| 394 | |
Daniel Axtens | 95ec77c | 2016-07-12 10:54:52 +1000 | [diff] [blame^] | 395 | static void __noreturn cuda_shutdown(void) |
Paul Mackerras | 35499c0 | 2005-10-22 16:02:39 +1000 | [diff] [blame] | 396 | { |
| 397 | struct adb_request req; |
| 398 | |
| 399 | cuda_request(&req, NULL, 2, CUDA_PACKET, CUDA_POWERDOWN); |
| 400 | for (;;) |
| 401 | cuda_poll(); |
| 402 | } |
| 403 | |
| 404 | #else |
| 405 | #define cuda_restart() |
| 406 | #define cuda_shutdown() |
| 407 | #endif |
| 408 | |
| 409 | #ifndef CONFIG_ADB_PMU |
| 410 | #define pmu_restart() |
| 411 | #define pmu_shutdown() |
| 412 | #endif |
| 413 | |
| 414 | #ifndef CONFIG_PMAC_SMU |
| 415 | #define smu_restart() |
| 416 | #define smu_shutdown() |
| 417 | #endif |
| 418 | |
Daniel Axtens | 95ec77c | 2016-07-12 10:54:52 +1000 | [diff] [blame^] | 419 | static void __noreturn pmac_restart(char *cmd) |
Paul Mackerras | 35499c0 | 2005-10-22 16:02:39 +1000 | [diff] [blame] | 420 | { |
Paul Mackerras | 14cf11a | 2005-09-26 16:04:21 +1000 | [diff] [blame] | 421 | switch (sys_ctrler) { |
Paul Mackerras | 14cf11a | 2005-09-26 16:04:21 +1000 | [diff] [blame] | 422 | case SYS_CTRLER_CUDA: |
Paul Mackerras | 35499c0 | 2005-10-22 16:02:39 +1000 | [diff] [blame] | 423 | cuda_restart(); |
Paul Mackerras | 14cf11a | 2005-09-26 16:04:21 +1000 | [diff] [blame] | 424 | break; |
Paul Mackerras | 14cf11a | 2005-09-26 16:04:21 +1000 | [diff] [blame] | 425 | case SYS_CTRLER_PMU: |
| 426 | pmu_restart(); |
| 427 | break; |
Paul Mackerras | 35499c0 | 2005-10-22 16:02:39 +1000 | [diff] [blame] | 428 | case SYS_CTRLER_SMU: |
| 429 | smu_restart(); |
| 430 | break; |
Paul Mackerras | 14cf11a | 2005-09-26 16:04:21 +1000 | [diff] [blame] | 431 | default: ; |
| 432 | } |
Daniel Axtens | 95ec77c | 2016-07-12 10:54:52 +1000 | [diff] [blame^] | 433 | while (1) ; |
Paul Mackerras | 14cf11a | 2005-09-26 16:04:21 +1000 | [diff] [blame] | 434 | } |
| 435 | |
Daniel Axtens | 95ec77c | 2016-07-12 10:54:52 +1000 | [diff] [blame^] | 436 | static void __noreturn pmac_power_off(void) |
Paul Mackerras | 14cf11a | 2005-09-26 16:04:21 +1000 | [diff] [blame] | 437 | { |
Paul Mackerras | 14cf11a | 2005-09-26 16:04:21 +1000 | [diff] [blame] | 438 | switch (sys_ctrler) { |
Paul Mackerras | 14cf11a | 2005-09-26 16:04:21 +1000 | [diff] [blame] | 439 | case SYS_CTRLER_CUDA: |
Paul Mackerras | 35499c0 | 2005-10-22 16:02:39 +1000 | [diff] [blame] | 440 | cuda_shutdown(); |
Paul Mackerras | 14cf11a | 2005-09-26 16:04:21 +1000 | [diff] [blame] | 441 | break; |
Paul Mackerras | 14cf11a | 2005-09-26 16:04:21 +1000 | [diff] [blame] | 442 | case SYS_CTRLER_PMU: |
| 443 | pmu_shutdown(); |
| 444 | break; |
Paul Mackerras | 35499c0 | 2005-10-22 16:02:39 +1000 | [diff] [blame] | 445 | case SYS_CTRLER_SMU: |
| 446 | smu_shutdown(); |
| 447 | break; |
Paul Mackerras | 14cf11a | 2005-09-26 16:04:21 +1000 | [diff] [blame] | 448 | default: ; |
| 449 | } |
Daniel Axtens | 95ec77c | 2016-07-12 10:54:52 +1000 | [diff] [blame^] | 450 | while (1) ; |
Paul Mackerras | 14cf11a | 2005-09-26 16:04:21 +1000 | [diff] [blame] | 451 | } |
| 452 | |
Daniel Axtens | 95ec77c | 2016-07-12 10:54:52 +1000 | [diff] [blame^] | 453 | static void __noreturn |
Paul Mackerras | 14cf11a | 2005-09-26 16:04:21 +1000 | [diff] [blame] | 454 | pmac_halt(void) |
| 455 | { |
| 456 | pmac_power_off(); |
| 457 | } |
| 458 | |
Paul Mackerras | 35499c0 | 2005-10-22 16:02:39 +1000 | [diff] [blame] | 459 | /* |
| 460 | * Early initialization. |
| 461 | */ |
| 462 | static void __init pmac_init_early(void) |
Paul Mackerras | 14cf11a | 2005-09-26 16:04:21 +1000 | [diff] [blame] | 463 | { |
Benjamin Herrenschmidt | 51d3082 | 2005-11-23 17:57:25 +1100 | [diff] [blame] | 464 | /* Enable early btext debug if requested */ |
Anton Blanchard | 3e47d14 | 2014-09-17 14:39:36 +1000 | [diff] [blame] | 465 | if (strstr(boot_command_line, "btextdbg")) { |
Benjamin Herrenschmidt | 51d3082 | 2005-11-23 17:57:25 +1100 | [diff] [blame] | 466 | udbg_adb_init_early(); |
| 467 | register_early_udbg_console(); |
Paul Mackerras | 35499c0 | 2005-10-22 16:02:39 +1000 | [diff] [blame] | 468 | } |
| 469 | |
Benjamin Herrenschmidt | 51d3082 | 2005-11-23 17:57:25 +1100 | [diff] [blame] | 470 | /* Probe motherboard chipset */ |
| 471 | pmac_feature_init(); |
| 472 | |
Benjamin Herrenschmidt | 51d3082 | 2005-11-23 17:57:25 +1100 | [diff] [blame] | 473 | /* Initialize debug stuff */ |
Anton Blanchard | 3e47d14 | 2014-09-17 14:39:36 +1000 | [diff] [blame] | 474 | udbg_scc_init(!!strstr(boot_command_line, "sccdbg")); |
| 475 | udbg_adb_init(!!strstr(boot_command_line, "btextdbg")); |
Benjamin Herrenschmidt | 51d3082 | 2005-11-23 17:57:25 +1100 | [diff] [blame] | 476 | |
| 477 | #ifdef CONFIG_PPC64 |
Daniel Axtens | e63f26d | 2015-03-31 16:00:49 +1100 | [diff] [blame] | 478 | iommu_init_early_dart(&pmac_pci_controller_ops); |
Paul Mackerras | 35499c0 | 2005-10-22 16:02:39 +1000 | [diff] [blame] | 479 | #endif |
Benjamin Herrenschmidt | 7ccbe50 | 2009-06-18 23:30:07 +0000 | [diff] [blame] | 480 | |
| 481 | /* SMP Init has to be done early as we need to patch up |
Anton Blanchard | 828a698 | 2010-04-26 15:32:44 +0000 | [diff] [blame] | 482 | * cpu_possible_mask before interrupt stacks are allocated |
Benjamin Herrenschmidt | 7ccbe50 | 2009-06-18 23:30:07 +0000 | [diff] [blame] | 483 | * or kaboom... |
| 484 | */ |
| 485 | #ifdef CONFIG_SMP |
| 486 | pmac_setup_smp(); |
| 487 | #endif |
Paul Mackerras | 35499c0 | 2005-10-22 16:02:39 +1000 | [diff] [blame] | 488 | } |
| 489 | |
Paul Mackerras | 35499c0 | 2005-10-22 16:02:39 +1000 | [diff] [blame] | 490 | static int __init pmac_declare_of_platform_devices(void) |
Paul Mackerras | 14cf11a | 2005-09-26 16:04:21 +1000 | [diff] [blame] | 491 | { |
Benjamin Herrenschmidt | a28d3af | 2006-01-07 11:35:26 +1100 | [diff] [blame] | 492 | struct device_node *np; |
Paul Mackerras | 14cf11a | 2005-09-26 16:04:21 +1000 | [diff] [blame] | 493 | |
Benjamin Herrenschmidt | e822250 | 2006-03-28 23:15:54 +1100 | [diff] [blame] | 494 | if (machine_is(chrp)) |
| 495 | return -1; |
| 496 | |
Benjamin Herrenschmidt | 730745a | 2006-01-07 11:30:44 +1100 | [diff] [blame] | 497 | np = of_find_node_by_name(NULL, "valkyrie"); |
Julia Lawall | 3631cb8 | 2011-08-21 06:10:01 +0000 | [diff] [blame] | 498 | if (np) { |
Paul Mackerras | 35499c0 | 2005-10-22 16:02:39 +1000 | [diff] [blame] | 499 | of_platform_device_create(np, "valkyrie", NULL); |
Julia Lawall | 3631cb8 | 2011-08-21 06:10:01 +0000 | [diff] [blame] | 500 | of_node_put(np); |
| 501 | } |
Benjamin Herrenschmidt | 730745a | 2006-01-07 11:30:44 +1100 | [diff] [blame] | 502 | np = of_find_node_by_name(NULL, "platinum"); |
Julia Lawall | 3631cb8 | 2011-08-21 06:10:01 +0000 | [diff] [blame] | 503 | if (np) { |
Paul Mackerras | 35499c0 | 2005-10-22 16:02:39 +1000 | [diff] [blame] | 504 | of_platform_device_create(np, "platinum", NULL); |
Julia Lawall | 3631cb8 | 2011-08-21 06:10:01 +0000 | [diff] [blame] | 505 | of_node_put(np); |
| 506 | } |
Paul Mackerras | 35499c0 | 2005-10-22 16:02:39 +1000 | [diff] [blame] | 507 | np = of_find_node_by_type(NULL, "smu"); |
| 508 | if (np) { |
| 509 | of_platform_device_create(np, "smu", NULL); |
| 510 | of_node_put(np); |
| 511 | } |
Marc Zyngier | 98b14d6 | 2010-12-05 05:05:37 +0000 | [diff] [blame] | 512 | np = of_find_node_by_type(NULL, "fcu"); |
| 513 | if (np == NULL) { |
| 514 | /* Some machines have strangely broken device-tree */ |
| 515 | np = of_find_node_by_path("/u3@0,f8000000/i2c@f8001000/fan@15e"); |
| 516 | } |
| 517 | if (np) { |
| 518 | of_platform_device_create(np, "temperature", NULL); |
| 519 | of_node_put(np); |
| 520 | } |
Paul Mackerras | 14cf11a | 2005-09-26 16:04:21 +1000 | [diff] [blame] | 521 | |
| 522 | return 0; |
| 523 | } |
Grant Likely | d518b71 | 2008-01-03 06:14:28 +1100 | [diff] [blame] | 524 | machine_device_initcall(powermac, pmac_declare_of_platform_devices); |
Paul Mackerras | 35499c0 | 2005-10-22 16:02:39 +1000 | [diff] [blame] | 525 | |
Benjamin Herrenschmidt | 025d791 | 2008-07-28 13:49:15 +1000 | [diff] [blame] | 526 | #ifdef CONFIG_SERIAL_PMACZILOG_CONSOLE |
| 527 | /* |
| 528 | * This is called very early, as part of console_init() (typically just after |
| 529 | * time_init()). This function is respondible for trying to find a good |
| 530 | * default console on serial ports. It tries to match the open firmware |
| 531 | * default output with one of the available serial console drivers. |
| 532 | */ |
| 533 | static int __init check_pmac_serial_console(void) |
| 534 | { |
| 535 | struct device_node *prom_stdout = NULL; |
| 536 | int offset = 0; |
| 537 | const char *name; |
| 538 | #ifdef CONFIG_SERIAL_PMACZILOG_TTYS |
| 539 | char *devname = "ttyS"; |
| 540 | #else |
| 541 | char *devname = "ttyPZ"; |
| 542 | #endif |
| 543 | |
| 544 | pr_debug(" -> check_pmac_serial_console()\n"); |
| 545 | |
| 546 | /* The user has requested a console so this is already set up. */ |
| 547 | if (strstr(boot_command_line, "console=")) { |
| 548 | pr_debug(" console was specified !\n"); |
| 549 | return -EBUSY; |
| 550 | } |
| 551 | |
| 552 | if (!of_chosen) { |
| 553 | pr_debug(" of_chosen is NULL !\n"); |
| 554 | return -ENODEV; |
| 555 | } |
| 556 | |
| 557 | /* We are getting a weird phandle from OF ... */ |
| 558 | /* ... So use the full path instead */ |
| 559 | name = of_get_property(of_chosen, "linux,stdout-path", NULL); |
| 560 | if (name == NULL) { |
| 561 | pr_debug(" no linux,stdout-path !\n"); |
| 562 | return -ENODEV; |
| 563 | } |
| 564 | prom_stdout = of_find_node_by_path(name); |
| 565 | if (!prom_stdout) { |
| 566 | pr_debug(" can't find stdout package %s !\n", name); |
| 567 | return -ENODEV; |
| 568 | } |
| 569 | pr_debug("stdout is %s\n", prom_stdout->full_name); |
| 570 | |
| 571 | name = of_get_property(prom_stdout, "name", NULL); |
| 572 | if (!name) { |
| 573 | pr_debug(" stdout package has no name !\n"); |
| 574 | goto not_found; |
| 575 | } |
| 576 | |
| 577 | if (strcmp(name, "ch-a") == 0) |
| 578 | offset = 0; |
| 579 | else if (strcmp(name, "ch-b") == 0) |
| 580 | offset = 1; |
| 581 | else |
| 582 | goto not_found; |
| 583 | of_node_put(prom_stdout); |
| 584 | |
| 585 | pr_debug("Found serial console at %s%d\n", devname, offset); |
| 586 | |
| 587 | return add_preferred_console(devname, offset, NULL); |
| 588 | |
| 589 | not_found: |
| 590 | pr_debug("No preferred console found !\n"); |
| 591 | of_node_put(prom_stdout); |
| 592 | return -ENODEV; |
| 593 | } |
| 594 | console_initcall(check_pmac_serial_console); |
| 595 | |
| 596 | #endif /* CONFIG_SERIAL_PMACZILOG_CONSOLE */ |
| 597 | |
Paul Mackerras | 35499c0 | 2005-10-22 16:02:39 +1000 | [diff] [blame] | 598 | /* |
| 599 | * Called very early, MMU is off, device-tree isn't unflattened |
| 600 | */ |
Benjamin Herrenschmidt | e822250 | 2006-03-28 23:15:54 +1100 | [diff] [blame] | 601 | static int __init pmac_probe(void) |
Paul Mackerras | 35499c0 | 2005-10-22 16:02:39 +1000 | [diff] [blame] | 602 | { |
Benjamin Herrenschmidt | e822250 | 2006-03-28 23:15:54 +1100 | [diff] [blame] | 603 | unsigned long root = of_get_flat_dt_root(); |
| 604 | |
| 605 | if (!of_flat_dt_is_compatible(root, "Power Macintosh") && |
| 606 | !of_flat_dt_is_compatible(root, "MacRISC")) |
Paul Mackerras | 35499c0 | 2005-10-22 16:02:39 +1000 | [diff] [blame] | 607 | return 0; |
| 608 | |
Benjamin Herrenschmidt | e822250 | 2006-03-28 23:15:54 +1100 | [diff] [blame] | 609 | #ifdef CONFIG_PPC64 |
Paul Mackerras | 35499c0 | 2005-10-22 16:02:39 +1000 | [diff] [blame] | 610 | /* |
| 611 | * On U3, the DART (iommu) must be allocated now since it |
| 612 | * has an impact on htab_initialize (due to the large page it |
| 613 | * occupies having to be broken up so the DART itself is not |
| 614 | * part of the cacheable linar mapping |
| 615 | */ |
Benjamin Herrenschmidt | 1beb6a7 | 2005-12-14 13:10:10 +1100 | [diff] [blame] | 616 | alloc_dart_table(); |
Michael Ellerman | 7d0daae | 2006-06-23 18:16:38 +1000 | [diff] [blame] | 617 | |
| 618 | hpte_init_native(); |
Paul Mackerras | 35499c0 | 2005-10-22 16:02:39 +1000 | [diff] [blame] | 619 | #endif |
| 620 | |
Benjamin Herrenschmidt | e822250 | 2006-03-28 23:15:54 +1100 | [diff] [blame] | 621 | #ifdef CONFIG_PPC32 |
| 622 | /* isa_io_base gets set in pmac_pci_init */ |
Benjamin Herrenschmidt | e822250 | 2006-03-28 23:15:54 +1100 | [diff] [blame] | 623 | ISA_DMA_THRESHOLD = ~0L; |
| 624 | DMA_MODE_READ = 1; |
| 625 | DMA_MODE_WRITE = 2; |
Benjamin Herrenschmidt | e822250 | 2006-03-28 23:15:54 +1100 | [diff] [blame] | 626 | #endif /* CONFIG_PPC32 */ |
| 627 | |
Paul Mackerras | 35499c0 | 2005-10-22 16:02:39 +1000 | [diff] [blame] | 628 | #ifdef CONFIG_PMAC_SMU |
| 629 | /* |
| 630 | * SMU based G5s need some memory below 2Gb, at least the current |
| 631 | * driver needs that. We have to allocate it now. We allocate 4k |
| 632 | * (1 small page) for now. |
| 633 | */ |
Yinghai Lu | 95f72d1 | 2010-07-12 14:36:09 +1000 | [diff] [blame] | 634 | smu_cmdbuf_abs = memblock_alloc_base(4096, 4096, 0x80000000UL); |
Paul Mackerras | 35499c0 | 2005-10-22 16:02:39 +1000 | [diff] [blame] | 635 | #endif /* CONFIG_PMAC_SMU */ |
| 636 | |
Alexander Graf | 9178ba2 | 2014-10-13 16:01:09 +0200 | [diff] [blame] | 637 | pm_power_off = pmac_power_off; |
| 638 | |
Paul Mackerras | 35499c0 | 2005-10-22 16:02:39 +1000 | [diff] [blame] | 639 | return 1; |
| 640 | } |
| 641 | |
Benjamin Herrenschmidt | e822250 | 2006-03-28 23:15:54 +1100 | [diff] [blame] | 642 | define_machine(powermac) { |
| 643 | .name = "PowerMac", |
Paul Mackerras | 35499c0 | 2005-10-22 16:02:39 +1000 | [diff] [blame] | 644 | .probe = pmac_probe, |
| 645 | .setup_arch = pmac_setup_arch, |
| 646 | .init_early = pmac_init_early, |
| 647 | .show_cpuinfo = pmac_show_cpuinfo, |
Paul Mackerras | 35499c0 | 2005-10-22 16:02:39 +1000 | [diff] [blame] | 648 | .init_IRQ = pmac_pic_init, |
Benjamin Herrenschmidt | cc5d018 | 2005-12-13 18:01:21 +1100 | [diff] [blame] | 649 | .get_irq = NULL, /* changed later */ |
Benjamin Herrenschmidt | f90bb15 | 2006-11-11 17:24:51 +1100 | [diff] [blame] | 650 | .pci_irq_fixup = pmac_pci_irq_fixup, |
Paul Mackerras | 35499c0 | 2005-10-22 16:02:39 +1000 | [diff] [blame] | 651 | .restart = pmac_restart, |
Paul Mackerras | 35499c0 | 2005-10-22 16:02:39 +1000 | [diff] [blame] | 652 | .halt = pmac_halt, |
| 653 | .time_init = pmac_time_init, |
| 654 | .get_boot_time = pmac_get_boot_time, |
| 655 | .set_rtc_time = pmac_set_rtc_time, |
| 656 | .get_rtc_time = pmac_get_rtc_time, |
| 657 | .calibrate_decr = pmac_calibrate_decr, |
| 658 | .feature_call = pmac_do_feature_call, |
Kumar Gala | be6b843 | 2005-12-20 16:37:07 -0600 | [diff] [blame] | 659 | .progress = udbg_progress, |
Paul Mackerras | 35499c0 | 2005-10-22 16:02:39 +1000 | [diff] [blame] | 660 | #ifdef CONFIG_PPC64 |
Paul Mackerras | a0652fc | 2006-03-27 15:03:03 +1100 | [diff] [blame] | 661 | .power_save = power4_idle, |
Paul Mackerras | 35499c0 | 2005-10-22 16:02:39 +1000 | [diff] [blame] | 662 | .enable_pmcs = power4_enable_pmcs, |
Michael Ellerman | 3d1229d | 2005-11-14 23:35:00 +1100 | [diff] [blame] | 663 | #endif /* CONFIG_PPC64 */ |
Paul Mackerras | 35499c0 | 2005-10-22 16:02:39 +1000 | [diff] [blame] | 664 | #ifdef CONFIG_PPC32 |
Paul Mackerras | 35499c0 | 2005-10-22 16:02:39 +1000 | [diff] [blame] | 665 | .pcibios_after_init = pmac_pcibios_after_init, |
| 666 | .phys_mem_access_prot = pci_phys_mem_access_prot, |
| 667 | #endif |
| 668 | }; |