Greg Kroah-Hartman | b244131 | 2017-11-01 15:07:57 +0100 | [diff] [blame] | 1 | // SPDX-License-Identifier: GPL-2.0 |
Paul Mackerras | bbd0abd | 2005-10-26 21:45:56 +1000 | [diff] [blame] | 2 | /* |
Paul Mackerras | bbd0abd | 2005-10-26 21:45:56 +1000 | [diff] [blame] | 3 | * Copyright (C) 1995 Linus Torvalds |
| 4 | * Adapted from 'alpha' version by Gary Thomas |
| 5 | * Modified by Cort Dougan (cort@cs.nmt.edu) |
| 6 | */ |
| 7 | |
| 8 | /* |
| 9 | * bootup setup stuff.. |
| 10 | */ |
| 11 | |
Paul Mackerras | bbd0abd | 2005-10-26 21:45:56 +1000 | [diff] [blame] | 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> |
Paul Mackerras | bbd0abd | 2005-10-26 21:45:56 +1000 | [diff] [blame] | 19 | #include <linux/user.h> |
Paul Mackerras | bbd0abd | 2005-10-26 21:45:56 +1000 | [diff] [blame] | 20 | #include <linux/tty.h> |
| 21 | #include <linux/major.h> |
| 22 | #include <linux/interrupt.h> |
| 23 | #include <linux/reboot.h> |
| 24 | #include <linux/init.h> |
| 25 | #include <linux/pci.h> |
Sam Ravnborg | 273b281 | 2009-10-18 00:52:28 +0200 | [diff] [blame] | 26 | #include <generated/utsrelease.h> |
Paul Mackerras | bbd0abd | 2005-10-26 21:45:56 +1000 | [diff] [blame] | 27 | #include <linux/adb.h> |
| 28 | #include <linux/module.h> |
| 29 | #include <linux/delay.h> |
Paul Mackerras | bbd0abd | 2005-10-26 21:45:56 +1000 | [diff] [blame] | 30 | #include <linux/console.h> |
| 31 | #include <linux/seq_file.h> |
| 32 | #include <linux/root_dev.h> |
| 33 | #include <linux/initrd.h> |
Paul Mackerras | 9618eda | 2006-03-27 21:48:57 +1100 | [diff] [blame] | 34 | #include <linux/timer.h> |
Paul Mackerras | bbd0abd | 2005-10-26 21:45:56 +1000 | [diff] [blame] | 35 | |
| 36 | #include <asm/io.h> |
Paul Mackerras | bbd0abd | 2005-10-26 21:45:56 +1000 | [diff] [blame] | 37 | #include <asm/prom.h> |
Paul Mackerras | bbd0abd | 2005-10-26 21:45:56 +1000 | [diff] [blame] | 38 | #include <asm/pci-bridge.h> |
| 39 | #include <asm/dma.h> |
| 40 | #include <asm/machdep.h> |
| 41 | #include <asm/irq.h> |
| 42 | #include <asm/hydra.h> |
| 43 | #include <asm/sections.h> |
| 44 | #include <asm/time.h> |
Paul Mackerras | bbd0abd | 2005-10-26 21:45:56 +1000 | [diff] [blame] | 45 | #include <asm/i8259.h> |
| 46 | #include <asm/mpic.h> |
| 47 | #include <asm/rtas.h> |
| 48 | #include <asm/xmon.h> |
| 49 | |
Olaf Hering | 35e95e6 | 2005-10-28 17:46:19 -0700 | [diff] [blame] | 50 | #include "chrp.h" |
Kumar Gala | 33d71d2 | 2007-08-20 08:50:28 -0500 | [diff] [blame] | 51 | #include "gg2.h" |
Paul Mackerras | bbd0abd | 2005-10-26 21:45:56 +1000 | [diff] [blame] | 52 | |
Paul Mackerras | bbd0abd | 2005-10-26 21:45:56 +1000 | [diff] [blame] | 53 | void rtas_indicator_progress(char *, unsigned short); |
Paul Mackerras | bbd0abd | 2005-10-26 21:45:56 +1000 | [diff] [blame] | 54 | |
| 55 | int _chrp_type; |
| 56 | EXPORT_SYMBOL(_chrp_type); |
| 57 | |
Benjamin Herrenschmidt | 0ebfff1 | 2006-07-03 21:36:01 +1000 | [diff] [blame] | 58 | static struct mpic *chrp_mpic; |
Paul Mackerras | bbd0abd | 2005-10-26 21:45:56 +1000 | [diff] [blame] | 59 | |
Paul Mackerras | 9618eda | 2006-03-27 21:48:57 +1100 | [diff] [blame] | 60 | /* Used for doing CHRP event-scans */ |
| 61 | DEFINE_PER_CPU(struct timer_list, heartbeat_timer); |
| 62 | unsigned long event_scan_interval; |
| 63 | |
Paul Mackerras | bbd0abd | 2005-10-26 21:45:56 +1000 | [diff] [blame] | 64 | extern unsigned long loops_per_jiffy; |
| 65 | |
Benjamin Herrenschmidt | 26c5032 | 2006-07-04 14:16:28 +1000 | [diff] [blame] | 66 | /* To be replaced by RTAS when available */ |
Al Viro | 9340b0d | 2007-02-09 16:38:15 +0000 | [diff] [blame] | 67 | static unsigned int __iomem *briq_SPOR; |
Benjamin Herrenschmidt | 26c5032 | 2006-07-04 14:16:28 +1000 | [diff] [blame] | 68 | |
Paul Mackerras | bbd0abd | 2005-10-26 21:45:56 +1000 | [diff] [blame] | 69 | #ifdef CONFIG_SMP |
| 70 | extern struct smp_ops_t chrp_smp_ops; |
| 71 | #endif |
| 72 | |
| 73 | static const char *gg2_memtypes[4] = { |
| 74 | "FPM", "SDRAM", "EDO", "BEDO" |
| 75 | }; |
| 76 | static const char *gg2_cachesizes[4] = { |
| 77 | "256 KB", "512 KB", "1 MB", "Reserved" |
| 78 | }; |
| 79 | static const char *gg2_cachetypes[4] = { |
| 80 | "Asynchronous", "Reserved", "Flow-Through Synchronous", |
| 81 | "Pipelined Synchronous" |
| 82 | }; |
| 83 | static const char *gg2_cachemodes[4] = { |
| 84 | "Disabled", "Write-Through", "Copy-Back", "Transparent Mode" |
| 85 | }; |
| 86 | |
Benjamin Herrenschmidt | 26c5032 | 2006-07-04 14:16:28 +1000 | [diff] [blame] | 87 | static const char *chrp_names[] = { |
| 88 | "Unknown", |
| 89 | "","","", |
| 90 | "Motorola", |
| 91 | "IBM or Longtrail", |
| 92 | "Genesi Pegasos", |
| 93 | "Total Impact Briq" |
| 94 | }; |
| 95 | |
Mathieu Malaterre | f0e0b86 | 2018-04-04 22:09:11 +0200 | [diff] [blame] | 96 | static void chrp_show_cpuinfo(struct seq_file *m) |
Paul Mackerras | bbd0abd | 2005-10-26 21:45:56 +1000 | [diff] [blame] | 97 | { |
| 98 | int i, sdramen; |
| 99 | unsigned int t; |
| 100 | struct device_node *root; |
| 101 | const char *model = ""; |
| 102 | |
Stephen Rothwell | 8c8dc32 | 2007-04-24 13:50:55 +1000 | [diff] [blame] | 103 | root = of_find_node_by_path("/"); |
Paul Mackerras | bbd0abd | 2005-10-26 21:45:56 +1000 | [diff] [blame] | 104 | if (root) |
Stephen Rothwell | e2eb639 | 2007-04-03 22:26:41 +1000 | [diff] [blame] | 105 | model = of_get_property(root, "model", NULL); |
Paul Mackerras | bbd0abd | 2005-10-26 21:45:56 +1000 | [diff] [blame] | 106 | seq_printf(m, "machine\t\t: CHRP %s\n", model); |
| 107 | |
| 108 | /* longtrail (goldengate) stuff */ |
Cyrill Gorcunov | 9ac71d0 | 2007-11-23 16:43:04 +1100 | [diff] [blame] | 109 | if (model && !strncmp(model, "IBM,LongTrail", 13)) { |
Paul Mackerras | bbd0abd | 2005-10-26 21:45:56 +1000 | [diff] [blame] | 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 | } |
Stephen Rothwell | 8c8dc32 | 2007-04-24 13:50:55 +1000 | [diff] [blame] | 153 | of_node_put(root); |
Paul Mackerras | bbd0abd | 2005-10-26 21:45:56 +1000 | [diff] [blame] | 154 | } |
| 155 | |
| 156 | /* |
| 157 | * Fixes for the National Semiconductor PC78308VUL SuperI/O |
| 158 | * |
| 159 | * Some versions of Open Firmware incorrectly initialize the IRQ settings |
| 160 | * for keyboard and mouse |
| 161 | */ |
| 162 | static inline void __init sio_write(u8 val, u8 index) |
| 163 | { |
| 164 | outb(index, 0x15c); |
| 165 | outb(val, 0x15d); |
| 166 | } |
| 167 | |
| 168 | static inline u8 __init sio_read(u8 index) |
| 169 | { |
| 170 | outb(index, 0x15c); |
| 171 | return inb(0x15d); |
| 172 | } |
| 173 | |
| 174 | static void __init sio_fixup_irq(const char *name, u8 device, u8 level, |
| 175 | u8 type) |
| 176 | { |
| 177 | u8 level0, type0, active; |
| 178 | |
| 179 | /* select logical device */ |
| 180 | sio_write(device, 0x07); |
| 181 | active = sio_read(0x30); |
| 182 | level0 = sio_read(0x70); |
| 183 | type0 = sio_read(0x71); |
| 184 | if (level0 != level || type0 != type || !active) { |
| 185 | printk(KERN_WARNING "sio: %s irq level %d, type %d, %sactive: " |
| 186 | "remapping to level %d, type %d, active\n", |
| 187 | name, level0, type0, !active ? "in" : "", level, type); |
| 188 | sio_write(0x01, 0x30); |
| 189 | sio_write(level, 0x70); |
| 190 | sio_write(type, 0x71); |
| 191 | } |
| 192 | } |
| 193 | |
| 194 | static void __init sio_init(void) |
| 195 | { |
| 196 | struct device_node *root; |
Cyrill Gorcunov | 9ac71d0 | 2007-11-23 16:43:04 +1100 | [diff] [blame] | 197 | const char *model; |
Paul Mackerras | bbd0abd | 2005-10-26 21:45:56 +1000 | [diff] [blame] | 198 | |
Cyrill Gorcunov | 9ac71d0 | 2007-11-23 16:43:04 +1100 | [diff] [blame] | 199 | root = of_find_node_by_path("/"); |
| 200 | if (!root) |
| 201 | return; |
| 202 | |
| 203 | model = of_get_property(root, "model", NULL); |
| 204 | if (model && !strncmp(model, "IBM,LongTrail", 13)) { |
Paul Mackerras | bbd0abd | 2005-10-26 21:45:56 +1000 | [diff] [blame] | 205 | /* logical device 0 (KBC/Keyboard) */ |
| 206 | sio_fixup_irq("keyboard", 0, 1, 2); |
| 207 | /* select logical device 1 (KBC/Mouse) */ |
| 208 | sio_fixup_irq("mouse", 1, 12, 2); |
| 209 | } |
Cyrill Gorcunov | 9ac71d0 | 2007-11-23 16:43:04 +1100 | [diff] [blame] | 210 | |
Stephen Rothwell | 8c8dc32 | 2007-04-24 13:50:55 +1000 | [diff] [blame] | 211 | of_node_put(root); |
Paul Mackerras | bbd0abd | 2005-10-26 21:45:56 +1000 | [diff] [blame] | 212 | } |
| 213 | |
| 214 | |
| 215 | static void __init pegasos_set_l2cr(void) |
| 216 | { |
| 217 | struct device_node *np; |
| 218 | |
| 219 | /* On Pegasos, enable the l2 cache if needed, as the OF forgets it */ |
| 220 | if (_chrp_type != _CHRP_Pegasos) |
| 221 | return; |
| 222 | |
| 223 | /* Enable L2 cache if needed */ |
Stephen Rothwell | 1658ab6 | 2007-04-24 13:51:59 +1000 | [diff] [blame] | 224 | np = of_find_node_by_type(NULL, "cpu"); |
Paul Mackerras | bbd0abd | 2005-10-26 21:45:56 +1000 | [diff] [blame] | 225 | if (np != NULL) { |
Stephen Rothwell | e2eb639 | 2007-04-03 22:26:41 +1000 | [diff] [blame] | 226 | const unsigned int *l2cr = of_get_property(np, "l2cr", NULL); |
Paul Mackerras | bbd0abd | 2005-10-26 21:45:56 +1000 | [diff] [blame] | 227 | if (l2cr == NULL) { |
| 228 | printk ("Pegasos l2cr : no cpu l2cr property found\n"); |
Stephen Rothwell | 1658ab6 | 2007-04-24 13:51:59 +1000 | [diff] [blame] | 229 | goto out; |
Paul Mackerras | bbd0abd | 2005-10-26 21:45:56 +1000 | [diff] [blame] | 230 | } |
| 231 | if (!((*l2cr) & 0x80000000)) { |
| 232 | printk ("Pegasos l2cr : L2 cache was not active, " |
| 233 | "activating\n"); |
| 234 | _set_L2CR(0); |
| 235 | _set_L2CR((*l2cr) | 0x80000000); |
| 236 | } |
| 237 | } |
Stephen Rothwell | 1658ab6 | 2007-04-24 13:51:59 +1000 | [diff] [blame] | 238 | out: |
| 239 | of_node_put(np); |
Paul Mackerras | bbd0abd | 2005-10-26 21:45:56 +1000 | [diff] [blame] | 240 | } |
| 241 | |
Daniel Axtens | 95ec77c | 2016-07-12 10:54:52 +1000 | [diff] [blame] | 242 | static void __noreturn briq_restart(char *cmd) |
Benjamin Herrenschmidt | 26c5032 | 2006-07-04 14:16:28 +1000 | [diff] [blame] | 243 | { |
| 244 | local_irq_disable(); |
| 245 | if (briq_SPOR) |
| 246 | out_be32(briq_SPOR, 0); |
| 247 | for(;;); |
| 248 | } |
| 249 | |
Olaf Hering | 5bc9778 | 2008-01-22 02:37:45 +1100 | [diff] [blame] | 250 | /* |
| 251 | * Per default, input/output-device points to the keyboard/screen |
| 252 | * If no card is installed, the built-in serial port is used as a fallback. |
| 253 | * But unfortunately, the firmware does not connect /chosen/{stdin,stdout} |
| 254 | * the the built-in serial node. Instead, a /failsafe node is created. |
| 255 | */ |
Benjamin Herrenschmidt | f2d5769 | 2016-07-05 15:04:06 +1000 | [diff] [blame] | 256 | static __init void chrp_init(void) |
Olaf Hering | 5bc9778 | 2008-01-22 02:37:45 +1100 | [diff] [blame] | 257 | { |
| 258 | struct device_node *node; |
| 259 | const char *property; |
| 260 | |
Anton Blanchard | 3e47d14 | 2014-09-17 14:39:36 +1000 | [diff] [blame] | 261 | if (strstr(boot_command_line, "console=")) |
Olaf Hering | 5bc9778 | 2008-01-22 02:37:45 +1100 | [diff] [blame] | 262 | return; |
| 263 | /* find the boot console from /chosen/stdout */ |
| 264 | if (!of_chosen) |
| 265 | return; |
| 266 | node = of_find_node_by_path("/"); |
| 267 | if (!node) |
| 268 | return; |
| 269 | property = of_get_property(node, "model", NULL); |
| 270 | if (!property) |
| 271 | goto out_put; |
| 272 | if (strcmp(property, "Pegasos2")) |
| 273 | goto out_put; |
| 274 | /* this is a Pegasos2 */ |
| 275 | property = of_get_property(of_chosen, "linux,stdout-path", NULL); |
| 276 | if (!property) |
| 277 | goto out_put; |
| 278 | of_node_put(node); |
| 279 | node = of_find_node_by_path(property); |
| 280 | if (!node) |
| 281 | return; |
Rob Herring | e5480bd | 2018-11-16 16:11:00 -0600 | [diff] [blame] | 282 | if (!of_node_is_type(node, "serial")) |
Olaf Hering | 5bc9778 | 2008-01-22 02:37:45 +1100 | [diff] [blame] | 283 | goto out_put; |
| 284 | /* |
| 285 | * The 9pin connector is either /failsafe |
| 286 | * or /pci@80000000/isa@C/serial@i2F8 |
| 287 | * The optional graphics card has also type 'serial' in VGA mode. |
| 288 | */ |
Rob Herring | 2c8e65b | 2018-12-05 13:50:18 -0600 | [diff] [blame] | 289 | if (of_node_name_eq(node, "failsafe") || of_node_name_eq(node, "serial")) |
Olaf Hering | 5bc9778 | 2008-01-22 02:37:45 +1100 | [diff] [blame] | 290 | add_preferred_console("ttyS", 0, NULL); |
| 291 | out_put: |
| 292 | of_node_put(node); |
| 293 | } |
| 294 | |
Mathieu Malaterre | f0e0b86 | 2018-04-04 22:09:11 +0200 | [diff] [blame] | 295 | static void __init chrp_setup_arch(void) |
Paul Mackerras | bbd0abd | 2005-10-26 21:45:56 +1000 | [diff] [blame] | 296 | { |
Stephen Rothwell | 8c8dc32 | 2007-04-24 13:50:55 +1000 | [diff] [blame] | 297 | struct device_node *root = of_find_node_by_path("/"); |
Jeremy Kerr | ae6b410 | 2006-07-12 15:40:05 +1000 | [diff] [blame] | 298 | const char *machine = NULL; |
Paul Mackerras | bbd0abd | 2005-10-26 21:45:56 +1000 | [diff] [blame] | 299 | |
| 300 | /* init to some ~sane value until calibrate_delay() runs */ |
| 301 | loops_per_jiffy = 50000000/HZ; |
| 302 | |
| 303 | if (root) |
Stephen Rothwell | e2eb639 | 2007-04-03 22:26:41 +1000 | [diff] [blame] | 304 | machine = of_get_property(root, "model", NULL); |
Paul Mackerras | bbd0abd | 2005-10-26 21:45:56 +1000 | [diff] [blame] | 305 | if (machine && strncmp(machine, "Pegasos", 7) == 0) { |
| 306 | _chrp_type = _CHRP_Pegasos; |
| 307 | } else if (machine && strncmp(machine, "IBM", 3) == 0) { |
| 308 | _chrp_type = _CHRP_IBM; |
| 309 | } else if (machine && strncmp(machine, "MOT", 3) == 0) { |
| 310 | _chrp_type = _CHRP_Motorola; |
Benjamin Herrenschmidt | 26c5032 | 2006-07-04 14:16:28 +1000 | [diff] [blame] | 311 | } else if (machine && strncmp(machine, "TotalImpact,BRIQ-1", 18) == 0) { |
| 312 | _chrp_type = _CHRP_briq; |
| 313 | /* Map the SPOR register on briq and change the restart hook */ |
Al Viro | 9340b0d | 2007-02-09 16:38:15 +0000 | [diff] [blame] | 314 | briq_SPOR = ioremap(0xff0000e8, 4); |
Benjamin Herrenschmidt | 26c5032 | 2006-07-04 14:16:28 +1000 | [diff] [blame] | 315 | ppc_md.restart = briq_restart; |
Paul Mackerras | bbd0abd | 2005-10-26 21:45:56 +1000 | [diff] [blame] | 316 | } else { |
| 317 | /* Let's assume it is an IBM chrp if all else fails */ |
| 318 | _chrp_type = _CHRP_IBM; |
| 319 | } |
Stephen Rothwell | 8c8dc32 | 2007-04-24 13:50:55 +1000 | [diff] [blame] | 320 | of_node_put(root); |
Benjamin Herrenschmidt | 26c5032 | 2006-07-04 14:16:28 +1000 | [diff] [blame] | 321 | printk("chrp type = %x [%s]\n", _chrp_type, chrp_names[_chrp_type]); |
Paul Mackerras | bbd0abd | 2005-10-26 21:45:56 +1000 | [diff] [blame] | 322 | |
| 323 | rtas_initialize(); |
| 324 | if (rtas_token("display-character") >= 0) |
| 325 | ppc_md.progress = rtas_progress; |
| 326 | |
Paul Mackerras | 49e16b7 | 2005-11-18 15:52:38 +1100 | [diff] [blame] | 327 | /* use RTAS time-of-day routines if available */ |
| 328 | if (rtas_token("get-time-of-day") != RTAS_UNKNOWN_SERVICE) { |
| 329 | ppc_md.get_boot_time = rtas_get_boot_time; |
| 330 | ppc_md.get_rtc_time = rtas_get_rtc_time; |
| 331 | ppc_md.set_rtc_time = rtas_set_rtc_time; |
| 332 | } |
| 333 | |
Paul Mackerras | bbd0abd | 2005-10-26 21:45:56 +1000 | [diff] [blame] | 334 | /* On pegasos, enable the L2 cache if not already done by OF */ |
| 335 | pegasos_set_l2cr(); |
| 336 | |
| 337 | /* Lookup PCI host bridges */ |
| 338 | chrp_find_bridges(); |
| 339 | |
| 340 | /* |
| 341 | * Temporary fixes for PCI devices. |
| 342 | * -- Geert |
| 343 | */ |
| 344 | hydra_init(); /* Mac I/O */ |
| 345 | |
| 346 | /* |
| 347 | * Fix the Super I/O configuration |
| 348 | */ |
| 349 | sio_init(); |
| 350 | |
Paul Mackerras | bbd0abd | 2005-10-26 21:45:56 +1000 | [diff] [blame] | 351 | pci_create_OF_bus_map(); |
| 352 | |
| 353 | /* |
| 354 | * Print the banner, then scroll down so boot progress |
| 355 | * can be printed. -- Cort |
| 356 | */ |
| 357 | if (ppc_md.progress) ppc_md.progress("Linux/PPC "UTS_RELEASE"\n", 0x0); |
| 358 | } |
| 359 | |
Thomas Gleixner | bd0b9ac | 2015-09-14 10:42:37 +0200 | [diff] [blame] | 360 | static void chrp_8259_cascade(struct irq_desc *desc) |
Benjamin Herrenschmidt | b9e5b4e | 2006-07-03 19:32:51 +1000 | [diff] [blame] | 361 | { |
Thomas Gleixner | ec775d0 | 2011-03-25 16:45:20 +0100 | [diff] [blame] | 362 | struct irq_chip *chip = irq_desc_get_chip(desc); |
Olaf Hering | 35a84c2 | 2006-10-07 22:08:26 +1000 | [diff] [blame] | 363 | unsigned int cascade_irq = i8259_irq(); |
Lennert Buytenhek | 468eb1a | 2011-03-07 13:59:31 +0000 | [diff] [blame] | 364 | |
Michael Ellerman | ef24ba7 | 2016-09-06 21:53:24 +1000 | [diff] [blame] | 365 | if (cascade_irq) |
Olof Johansson | 49f19ce | 2006-10-05 20:31:10 -0500 | [diff] [blame] | 366 | generic_handle_irq(cascade_irq); |
Lennert Buytenhek | 468eb1a | 2011-03-07 13:59:31 +0000 | [diff] [blame] | 367 | |
| 368 | chip->irq_eoi(&desc->irq_data); |
Benjamin Herrenschmidt | b9e5b4e | 2006-07-03 19:32:51 +1000 | [diff] [blame] | 369 | } |
| 370 | |
Paul Mackerras | bbd0abd | 2005-10-26 21:45:56 +1000 | [diff] [blame] | 371 | /* |
| 372 | * Finds the open-pic node and sets up the mpic driver. |
| 373 | */ |
| 374 | static void __init chrp_find_openpic(void) |
| 375 | { |
| 376 | struct device_node *np, *root; |
Benjamin Herrenschmidt | 0ebfff1 | 2006-07-03 21:36:01 +1000 | [diff] [blame] | 377 | int len, i, j; |
Mathieu Malaterre | f0e0b86 | 2018-04-04 22:09:11 +0200 | [diff] [blame] | 378 | int isu_size; |
Jeremy Kerr | ae6b410 | 2006-07-12 15:40:05 +1000 | [diff] [blame] | 379 | const unsigned int *iranges, *opprop = NULL; |
Paul Mackerras | bbd0abd | 2005-10-26 21:45:56 +1000 | [diff] [blame] | 380 | int oplen = 0; |
| 381 | unsigned long opaddr; |
| 382 | int na = 1; |
Paul Mackerras | bbd0abd | 2005-10-26 21:45:56 +1000 | [diff] [blame] | 383 | |
Benjamin Herrenschmidt | 0ebfff1 | 2006-07-03 21:36:01 +1000 | [diff] [blame] | 384 | np = of_find_node_by_type(NULL, "open-pic"); |
Paul Mackerras | bbd0abd | 2005-10-26 21:45:56 +1000 | [diff] [blame] | 385 | if (np == NULL) |
| 386 | return; |
Benjamin Herrenschmidt | 0ebfff1 | 2006-07-03 21:36:01 +1000 | [diff] [blame] | 387 | root = of_find_node_by_path("/"); |
Paul Mackerras | bbd0abd | 2005-10-26 21:45:56 +1000 | [diff] [blame] | 388 | if (root) { |
Stephen Rothwell | e2eb639 | 2007-04-03 22:26:41 +1000 | [diff] [blame] | 389 | opprop = of_get_property(root, "platform-open-pic", &oplen); |
Stephen Rothwell | a8bda5d | 2007-04-03 10:56:50 +1000 | [diff] [blame] | 390 | na = of_n_addr_cells(root); |
Paul Mackerras | bbd0abd | 2005-10-26 21:45:56 +1000 | [diff] [blame] | 391 | } |
| 392 | if (opprop && oplen >= na * sizeof(unsigned int)) { |
| 393 | opaddr = opprop[na-1]; /* assume 32-bit */ |
| 394 | oplen /= na * sizeof(unsigned int); |
| 395 | } else { |
David Woodhouse | 575e321 | 2006-01-14 00:13:49 +0000 | [diff] [blame] | 396 | struct resource r; |
Benjamin Herrenschmidt | 0ebfff1 | 2006-07-03 21:36:01 +1000 | [diff] [blame] | 397 | if (of_address_to_resource(np, 0, &r)) { |
| 398 | goto bail; |
| 399 | } |
David Woodhouse | 575e321 | 2006-01-14 00:13:49 +0000 | [diff] [blame] | 400 | opaddr = r.start; |
Paul Mackerras | bbd0abd | 2005-10-26 21:45:56 +1000 | [diff] [blame] | 401 | oplen = 0; |
| 402 | } |
| 403 | |
| 404 | printk(KERN_INFO "OpenPIC at %lx\n", opaddr); |
| 405 | |
Stephen Rothwell | e2eb639 | 2007-04-03 22:26:41 +1000 | [diff] [blame] | 406 | iranges = of_get_property(np, "interrupt-ranges", &len); |
Paul Mackerras | bbd0abd | 2005-10-26 21:45:56 +1000 | [diff] [blame] | 407 | if (iranges == NULL) |
| 408 | len = 0; /* non-distributed mpic */ |
| 409 | else |
| 410 | len /= 2 * sizeof(unsigned int); |
| 411 | |
| 412 | /* |
| 413 | * The first pair of cells in interrupt-ranges refers to the |
| 414 | * IDU; subsequent pairs refer to the ISUs. |
| 415 | */ |
| 416 | if (oplen < len) { |
| 417 | printk(KERN_ERR "Insufficient addresses for distributed" |
David Woodhouse | 575e321 | 2006-01-14 00:13:49 +0000 | [diff] [blame] | 418 | " OpenPIC (%d < %d)\n", oplen, len); |
Paul Mackerras | bbd0abd | 2005-10-26 21:45:56 +1000 | [diff] [blame] | 419 | len = oplen; |
| 420 | } |
| 421 | |
| 422 | isu_size = 0; |
Paul Mackerras | bbd0abd | 2005-10-26 21:45:56 +1000 | [diff] [blame] | 423 | if (len > 0 && iranges[1] != 0) { |
| 424 | printk(KERN_INFO "OpenPIC irqs %d..%d in IDU\n", |
| 425 | iranges[0], iranges[0] + iranges[1] - 1); |
Paul Mackerras | bbd0abd | 2005-10-26 21:45:56 +1000 | [diff] [blame] | 426 | } |
| 427 | if (len > 1) |
| 428 | isu_size = iranges[3]; |
| 429 | |
Kyle Moffett | e55d7f7 | 2011-12-22 10:19:14 +0000 | [diff] [blame] | 430 | chrp_mpic = mpic_alloc(np, opaddr, MPIC_NO_RESET, |
| 431 | isu_size, 0, " MPIC "); |
Paul Mackerras | bbd0abd | 2005-10-26 21:45:56 +1000 | [diff] [blame] | 432 | if (chrp_mpic == NULL) { |
| 433 | printk(KERN_ERR "Failed to allocate MPIC structure\n"); |
Benjamin Herrenschmidt | 0ebfff1 | 2006-07-03 21:36:01 +1000 | [diff] [blame] | 434 | goto bail; |
Paul Mackerras | bbd0abd | 2005-10-26 21:45:56 +1000 | [diff] [blame] | 435 | } |
Paul Mackerras | bbd0abd | 2005-10-26 21:45:56 +1000 | [diff] [blame] | 436 | j = na - 1; |
| 437 | for (i = 1; i < len; ++i) { |
| 438 | iranges += 2; |
| 439 | j += na; |
| 440 | printk(KERN_INFO "OpenPIC irqs %d..%d in ISU at %x\n", |
| 441 | iranges[0], iranges[0] + iranges[1] - 1, |
| 442 | opprop[j]); |
| 443 | mpic_assign_isu(chrp_mpic, i - 1, opprop[j]); |
| 444 | } |
| 445 | |
| 446 | mpic_init(chrp_mpic); |
Benjamin Herrenschmidt | 0ebfff1 | 2006-07-03 21:36:01 +1000 | [diff] [blame] | 447 | ppc_md.get_irq = mpic_get_irq; |
| 448 | bail: |
| 449 | of_node_put(root); |
| 450 | of_node_put(np); |
Paul Mackerras | bbd0abd | 2005-10-26 21:45:56 +1000 | [diff] [blame] | 451 | } |
| 452 | |
Benjamin Herrenschmidt | 0ebfff1 | 2006-07-03 21:36:01 +1000 | [diff] [blame] | 453 | static void __init chrp_find_8259(void) |
Paul Mackerras | bbd0abd | 2005-10-26 21:45:56 +1000 | [diff] [blame] | 454 | { |
Benjamin Herrenschmidt | 0ebfff1 | 2006-07-03 21:36:01 +1000 | [diff] [blame] | 455 | struct device_node *np, *pic = NULL; |
Paul Mackerras | bbd0abd | 2005-10-26 21:45:56 +1000 | [diff] [blame] | 456 | unsigned long chrp_int_ack = 0; |
Benjamin Herrenschmidt | 0ebfff1 | 2006-07-03 21:36:01 +1000 | [diff] [blame] | 457 | unsigned int cascade_irq; |
Paul Mackerras | bbd0abd | 2005-10-26 21:45:56 +1000 | [diff] [blame] | 458 | |
Benjamin Herrenschmidt | 0ebfff1 | 2006-07-03 21:36:01 +1000 | [diff] [blame] | 459 | /* Look for cascade */ |
| 460 | for_each_node_by_type(np, "interrupt-controller") |
Stephen Rothwell | 55b61fe | 2007-05-03 17:26:52 +1000 | [diff] [blame] | 461 | if (of_device_is_compatible(np, "chrp,iic")) { |
Benjamin Herrenschmidt | 0ebfff1 | 2006-07-03 21:36:01 +1000 | [diff] [blame] | 462 | pic = np; |
| 463 | break; |
| 464 | } |
| 465 | /* Ok, 8259 wasn't found. We need to handle the case where |
| 466 | * we have a pegasos that claims to be chrp but doesn't have |
| 467 | * a proper interrupt tree |
| 468 | */ |
| 469 | if (pic == NULL && chrp_mpic != NULL) { |
| 470 | printk(KERN_ERR "i8259: Not found in device-tree" |
| 471 | " assuming no legacy interrupts\n"); |
| 472 | return; |
| 473 | } |
| 474 | |
| 475 | /* Look for intack. In a perfect world, we would look for it on |
| 476 | * the ISA bus that holds the 8259 but heh... Works that way. If |
| 477 | * we ever see a problem, we can try to re-use the pSeries code here. |
| 478 | * Also, Pegasos-type platforms don't have a proper node to start |
| 479 | * from anyway |
| 480 | */ |
Stephen Rothwell | 30686ba | 2007-04-24 13:53:04 +1000 | [diff] [blame] | 481 | for_each_node_by_name(np, "pci") { |
Stephen Rothwell | e2eb639 | 2007-04-03 22:26:41 +1000 | [diff] [blame] | 482 | const unsigned int *addrp = of_get_property(np, |
Jeremy Kerr | ae6b410 | 2006-07-12 15:40:05 +1000 | [diff] [blame] | 483 | "8259-interrupt-acknowledge", NULL); |
Paul Mackerras | bbd0abd | 2005-10-26 21:45:56 +1000 | [diff] [blame] | 484 | |
| 485 | if (addrp == NULL) |
| 486 | continue; |
Stephen Rothwell | a8bda5d | 2007-04-03 10:56:50 +1000 | [diff] [blame] | 487 | chrp_int_ack = addrp[of_n_addr_cells(np)-1]; |
Paul Mackerras | bbd0abd | 2005-10-26 21:45:56 +1000 | [diff] [blame] | 488 | break; |
| 489 | } |
Stephen Rothwell | 30686ba | 2007-04-24 13:53:04 +1000 | [diff] [blame] | 490 | of_node_put(np); |
Paul Mackerras | bbd0abd | 2005-10-26 21:45:56 +1000 | [diff] [blame] | 491 | if (np == NULL) |
Benjamin Herrenschmidt | 0ebfff1 | 2006-07-03 21:36:01 +1000 | [diff] [blame] | 492 | printk(KERN_WARNING "Cannot find PCI interrupt acknowledge" |
| 493 | " address, polling\n"); |
Paul Mackerras | bbd0abd | 2005-10-26 21:45:56 +1000 | [diff] [blame] | 494 | |
Benjamin Herrenschmidt | 0ebfff1 | 2006-07-03 21:36:01 +1000 | [diff] [blame] | 495 | i8259_init(pic, chrp_int_ack); |
Benjamin Herrenschmidt | f4d4c35 | 2006-10-25 13:22:27 +1000 | [diff] [blame] | 496 | if (ppc_md.get_irq == NULL) { |
Benjamin Herrenschmidt | 0ebfff1 | 2006-07-03 21:36:01 +1000 | [diff] [blame] | 497 | ppc_md.get_irq = i8259_irq; |
Benjamin Herrenschmidt | f4d4c35 | 2006-10-25 13:22:27 +1000 | [diff] [blame] | 498 | irq_set_default_host(i8259_get_host()); |
| 499 | } |
Benjamin Herrenschmidt | 0ebfff1 | 2006-07-03 21:36:01 +1000 | [diff] [blame] | 500 | if (chrp_mpic != NULL) { |
| 501 | cascade_irq = irq_of_parse_and_map(pic, 0); |
Michael Ellerman | ef24ba7 | 2016-09-06 21:53:24 +1000 | [diff] [blame] | 502 | if (!cascade_irq) |
Benjamin Herrenschmidt | 0ebfff1 | 2006-07-03 21:36:01 +1000 | [diff] [blame] | 503 | printk(KERN_ERR "i8259: failed to map cascade irq\n"); |
| 504 | else |
Thomas Gleixner | ec775d0 | 2011-03-25 16:45:20 +0100 | [diff] [blame] | 505 | irq_set_chained_handler(cascade_irq, |
Benjamin Herrenschmidt | 0ebfff1 | 2006-07-03 21:36:01 +1000 | [diff] [blame] | 506 | chrp_8259_cascade); |
| 507 | } |
| 508 | } |
| 509 | |
Mathieu Malaterre | f0e0b86 | 2018-04-04 22:09:11 +0200 | [diff] [blame] | 510 | static void __init chrp_init_IRQ(void) |
Benjamin Herrenschmidt | 0ebfff1 | 2006-07-03 21:36:01 +1000 | [diff] [blame] | 511 | { |
Robert P. J. Day | e85f008 | 2007-03-08 11:19:39 -0500 | [diff] [blame] | 512 | #if defined(CONFIG_VT) && defined(CONFIG_INPUT_ADBHID) && defined(CONFIG_XMON) |
Benjamin Herrenschmidt | 0ebfff1 | 2006-07-03 21:36:01 +1000 | [diff] [blame] | 513 | struct device_node *kbd; |
| 514 | #endif |
Paul Mackerras | bbd0abd | 2005-10-26 21:45:56 +1000 | [diff] [blame] | 515 | chrp_find_openpic(); |
Benjamin Herrenschmidt | 0ebfff1 | 2006-07-03 21:36:01 +1000 | [diff] [blame] | 516 | chrp_find_8259(); |
Paul Mackerras | bbd0abd | 2005-10-26 21:45:56 +1000 | [diff] [blame] | 517 | |
Benjamin Herrenschmidt | 1e031d6 | 2006-07-04 14:09:36 +1000 | [diff] [blame] | 518 | #ifdef CONFIG_SMP |
| 519 | /* Pegasos has no MPIC, those ops would make it crash. It might be an |
| 520 | * option to move setting them to after we probe the PIC though |
| 521 | */ |
| 522 | if (chrp_mpic != NULL) |
| 523 | smp_ops = &chrp_smp_ops; |
| 524 | #endif /* CONFIG_SMP */ |
| 525 | |
Paul Mackerras | bbd0abd | 2005-10-26 21:45:56 +1000 | [diff] [blame] | 526 | if (_chrp_type == _CHRP_Pegasos) |
| 527 | ppc_md.get_irq = i8259_irq; |
Paul Mackerras | bbd0abd | 2005-10-26 21:45:56 +1000 | [diff] [blame] | 528 | |
Robert P. J. Day | e85f008 | 2007-03-08 11:19:39 -0500 | [diff] [blame] | 529 | #if defined(CONFIG_VT) && defined(CONFIG_INPUT_ADBHID) && defined(CONFIG_XMON) |
Paul Mackerras | bbd0abd | 2005-10-26 21:45:56 +1000 | [diff] [blame] | 530 | /* see if there is a keyboard in the device tree |
| 531 | with a parent of type "adb" */ |
Stephen Rothwell | 30686ba | 2007-04-24 13:53:04 +1000 | [diff] [blame] | 532 | for_each_node_by_name(kbd, "keyboard") |
Rob Herring | 75a080c | 2019-01-18 08:12:10 -0600 | [diff] [blame] | 533 | if (of_node_is_type(kbd->parent, "adb")) |
Paul Mackerras | bbd0abd | 2005-10-26 21:45:56 +1000 | [diff] [blame] | 534 | break; |
Stephen Rothwell | 30686ba | 2007-04-24 13:53:04 +1000 | [diff] [blame] | 535 | of_node_put(kbd); |
afzal mohammed | b4f00d5 | 2020-03-12 12:12:55 +0530 | [diff] [blame] | 536 | if (kbd) { |
| 537 | if (request_irq(HYDRA_INT_ADB_NMI, xmon_irq, 0, "XMON break", |
| 538 | NULL)) |
| 539 | pr_err("Failed to register XMON break interrupt\n"); |
| 540 | } |
Paul Mackerras | bbd0abd | 2005-10-26 21:45:56 +1000 | [diff] [blame] | 541 | #endif |
| 542 | } |
| 543 | |
Mathieu Malaterre | f0e0b86 | 2018-04-04 22:09:11 +0200 | [diff] [blame] | 544 | static void __init |
Paul Mackerras | bbd0abd | 2005-10-26 21:45:56 +1000 | [diff] [blame] | 545 | chrp_init2(void) |
| 546 | { |
Finn Thain | f9c3a57 | 2019-01-15 15:18:56 +1100 | [diff] [blame] | 547 | #if IS_ENABLED(CONFIG_NVRAM) |
Olaf Hering | 35e95e6 | 2005-10-28 17:46:19 -0700 | [diff] [blame] | 548 | chrp_nvram_init(); |
| 549 | #endif |
| 550 | |
Paul Mackerras | bbd0abd | 2005-10-26 21:45:56 +1000 | [diff] [blame] | 551 | request_region(0x20,0x20,"pic1"); |
| 552 | request_region(0xa0,0x20,"pic2"); |
| 553 | request_region(0x00,0x20,"dma1"); |
| 554 | request_region(0x40,0x20,"timer"); |
| 555 | request_region(0x80,0x10,"dma page reg"); |
| 556 | request_region(0xc0,0x20,"dma2"); |
| 557 | |
| 558 | if (ppc_md.progress) |
| 559 | ppc_md.progress(" Have fun! ", 0x7777); |
| 560 | } |
| 561 | |
Benjamin Herrenschmidt | e822250 | 2006-03-28 23:15:54 +1100 | [diff] [blame] | 562 | static int __init chrp_probe(void) |
Paul Mackerras | bbd0abd | 2005-10-26 21:45:56 +1000 | [diff] [blame] | 563 | { |
Rob Herring | 9d0c4df | 2014-04-01 23:49:03 -0500 | [diff] [blame] | 564 | const char *dtype = of_get_flat_dt_prop(of_get_flat_dt_root(), |
| 565 | "device_type", NULL); |
Benjamin Herrenschmidt | e822250 | 2006-03-28 23:15:54 +1100 | [diff] [blame] | 566 | if (dtype == NULL) |
| 567 | return 0; |
| 568 | if (strcmp(dtype, "chrp")) |
| 569 | return 0; |
| 570 | |
Paul Mackerras | bbd0abd | 2005-10-26 21:45:56 +1000 | [diff] [blame] | 571 | DMA_MODE_READ = 0x44; |
| 572 | DMA_MODE_WRITE = 0x48; |
Paul Mackerras | bbd0abd | 2005-10-26 21:45:56 +1000 | [diff] [blame] | 573 | |
Alexander Graf | 9178ba2 | 2014-10-13 16:01:09 +0200 | [diff] [blame] | 574 | pm_power_off = rtas_power_off; |
| 575 | |
Benjamin Herrenschmidt | f2d5769 | 2016-07-05 15:04:06 +1000 | [diff] [blame] | 576 | chrp_init(); |
| 577 | |
Paul Mackerras | b86756a | 2006-04-03 16:37:23 +1000 | [diff] [blame] | 578 | return 1; |
Paul Mackerras | bbd0abd | 2005-10-26 21:45:56 +1000 | [diff] [blame] | 579 | } |
Paul Mackerras | b86756a | 2006-04-03 16:37:23 +1000 | [diff] [blame] | 580 | |
| 581 | define_machine(chrp) { |
| 582 | .name = "CHRP", |
| 583 | .probe = chrp_probe, |
| 584 | .setup_arch = chrp_setup_arch, |
| 585 | .init = chrp_init2, |
| 586 | .show_cpuinfo = chrp_show_cpuinfo, |
| 587 | .init_IRQ = chrp_init_IRQ, |
Paul Mackerras | b86756a | 2006-04-03 16:37:23 +1000 | [diff] [blame] | 588 | .restart = rtas_restart, |
Paul Mackerras | b86756a | 2006-04-03 16:37:23 +1000 | [diff] [blame] | 589 | .halt = rtas_halt, |
| 590 | .time_init = chrp_time_init, |
| 591 | .set_rtc_time = chrp_set_rtc_time, |
| 592 | .get_rtc_time = chrp_get_rtc_time, |
| 593 | .calibrate_decr = generic_calibrate_decr, |
| 594 | .phys_mem_access_prot = pci_phys_mem_access_prot, |
| 595 | }; |