blob: 2bf99786d249580c4aaf0c138b87c0ef507802de [file] [log] [blame]
Andy Fleming591f0a42006-04-02 17:42:40 -05001/*
2 * MPC85xx setup and early boot code plus other random bits.
3 *
4 * Maintained by Kumar Gala (see MAINTAINERS for contact information)
5 *
6 * Copyright 2005 Freescale Semiconductor Inc.
7 *
8 * This program is free software; you can redistribute it and/or modify it
9 * under the terms of the GNU General Public License as published by the
10 * Free Software Foundation; either version 2 of the License, or (at your
11 * option) any later version.
12 */
13
Andy Fleming591f0a42006-04-02 17:42:40 -050014#include <linux/stddef.h>
15#include <linux/kernel.h>
16#include <linux/init.h>
17#include <linux/errno.h>
18#include <linux/reboot.h>
19#include <linux/pci.h>
20#include <linux/kdev_t.h>
21#include <linux/major.h>
22#include <linux/console.h>
23#include <linux/delay.h>
24#include <linux/seq_file.h>
Andy Fleming591f0a42006-04-02 17:42:40 -050025#include <linux/initrd.h>
26#include <linux/module.h>
Randy Vinson3620fc12007-06-06 16:26:15 -070027#include <linux/interrupt.h>
Andy Fleming591f0a42006-04-02 17:42:40 -050028#include <linux/fsl_devices.h>
Dave Jianga64887e2008-06-16 15:36:17 -070029#include <linux/of_platform.h>
Andy Fleming591f0a42006-04-02 17:42:40 -050030
31#include <asm/system.h>
32#include <asm/pgtable.h>
33#include <asm/page.h>
Arun Sharma60063492011-07-26 16:09:06 -070034#include <linux/atomic.h>
Andy Fleming591f0a42006-04-02 17:42:40 -050035#include <asm/time.h>
36#include <asm/io.h>
37#include <asm/machdep.h>
38#include <asm/ipic.h>
Andy Fleming591f0a42006-04-02 17:42:40 -050039#include <asm/pci-bridge.h>
Andy Fleming591f0a42006-04-02 17:42:40 -050040#include <asm/irq.h>
41#include <mm/mmu_decl.h>
42#include <asm/prom.h>
43#include <asm/udbg.h>
44#include <asm/mpic.h>
45#include <asm/i8259.h>
46
47#include <sysdev/fsl_soc.h>
Roy Zang3f6c5da2007-07-10 18:47:06 +080048#include <sysdev/fsl_pci.h>
Andy Fleming591f0a42006-04-02 17:42:40 -050049
Kumar Gala0bfd5df2007-10-11 09:13:41 -050050/* CADMUS info */
51/* xxx - galak, move into device tree */
52#define CADMUS_BASE (0xf8004000)
53#define CADMUS_SIZE (256)
54#define CM_VER (0)
55#define CM_CSR (1)
56#define CM_RST (2)
57
58
Andy Fleming591f0a42006-04-02 17:42:40 -050059static int cds_pci_slot = 2;
60static volatile u8 *cadmus;
61
Andy Fleming591f0a42006-04-02 17:42:40 -050062#ifdef CONFIG_PCI
Andy Fleming591f0a42006-04-02 17:42:40 -050063
64#define ARCADIA_HOST_BRIDGE_IDSEL 17
65#define ARCADIA_2ND_BRIDGE_IDSEL 3
66
Kumar Gala7d52c7b2007-06-22 00:23:57 -050067static int mpc85xx_exclude_device(struct pci_controller *hose,
68 u_char bus, u_char devfn)
Andy Fleming591f0a42006-04-02 17:42:40 -050069{
Andy Fleming591f0a42006-04-02 17:42:40 -050070 /* We explicitly do not go past the Tundra 320 Bridge */
71 if ((bus == 1) && (PCI_SLOT(devfn) == ARCADIA_2ND_BRIDGE_IDSEL))
72 return PCIBIOS_DEVICE_NOT_FOUND;
73 if ((bus == 0) && (PCI_SLOT(devfn) == ARCADIA_2ND_BRIDGE_IDSEL))
74 return PCIBIOS_DEVICE_NOT_FOUND;
75 else
76 return PCIBIOS_SUCCESSFUL;
77}
78
Randy Vinson637e9e12007-03-23 15:43:37 -070079static void mpc85xx_cds_restart(char *cmd)
80{
81 struct pci_dev *dev;
82 u_char tmp;
83
84 if ((dev = pci_get_device(PCI_VENDOR_ID_VIA, PCI_DEVICE_ID_VIA_82C686,
85 NULL))) {
86
87 /* Use the VIA Super Southbridge to force a PCI reset */
88 pci_read_config_byte(dev, 0x47, &tmp);
89 pci_write_config_byte(dev, 0x47, tmp | 1);
90
91 /* Flush the outbound PCI write queues */
92 pci_read_config_byte(dev, 0x47, &tmp);
93
94 /*
95 * At this point, the harware reset should have triggered.
96 * However, if it doesn't work for some mysterious reason,
97 * just fall through to the default reset below.
98 */
99
100 pci_dev_put(dev);
101 }
102
103 /*
104 * If we can't find the VIA chip (maybe the P2P bridge is disabled)
105 * or the VIA chip reset didn't work, just use the default reset.
106 */
Kumar Galae1c15752007-10-04 01:04:57 -0500107 fsl_rstcr_restart(NULL);
Randy Vinson637e9e12007-03-23 15:43:37 -0700108}
109
Roy Zang749e8082007-06-01 16:05:38 +0800110static void __init mpc85xx_cds_pci_irq_fixup(struct pci_dev *dev)
Andy Fleming591f0a42006-04-02 17:42:40 -0500111{
Roy Zang749e8082007-06-01 16:05:38 +0800112 u_char c;
113 if (dev->vendor == PCI_VENDOR_ID_VIA) {
114 switch (dev->device) {
115 case PCI_DEVICE_ID_VIA_82C586_1:
116 /*
117 * U-Boot does not set the enable bits
118 * for the IDE device. Force them on here.
119 */
120 pci_read_config_byte(dev, 0x40, &c);
121 c |= 0x03; /* IDE: Chip Enable Bits */
122 pci_write_config_byte(dev, 0x40, c);
Andy Fleming591f0a42006-04-02 17:42:40 -0500123
Roy Zang749e8082007-06-01 16:05:38 +0800124 /*
125 * Since only primary interface works, force the
126 * IDE function to standard primary IDE interrupt
127 * w/ 8259 offset
128 */
129 dev->irq = 14;
130 pci_write_config_byte(dev, PCI_INTERRUPT_LINE, dev->irq);
131 break;
Andy Fleming591f0a42006-04-02 17:42:40 -0500132 /*
Roy Zang749e8082007-06-01 16:05:38 +0800133 * Force legacy USB interrupt routing
Andy Fleming591f0a42006-04-02 17:42:40 -0500134 */
Roy Zang749e8082007-06-01 16:05:38 +0800135 case PCI_DEVICE_ID_VIA_82C586_2:
136 /* There are two USB controllers.
137 * Identify them by functon number
Andy Fleming591f0a42006-04-02 17:42:40 -0500138 */
Randy Vinson8d7bc8f2007-07-19 10:40:53 -0700139 if (PCI_FUNC(dev->devfn) == 3)
Roy Zang749e8082007-06-01 16:05:38 +0800140 dev->irq = 11;
141 else
142 dev->irq = 10;
143 pci_write_config_byte(dev, PCI_INTERRUPT_LINE, dev->irq);
144 default:
145 break;
146 }
Andy Fleming591f0a42006-04-02 17:42:40 -0500147 }
Andy Fleming591f0a42006-04-02 17:42:40 -0500148}
Andy Flemingddd64152006-08-17 20:24:48 -0500149
Kumar Gala4e798212007-07-19 15:39:24 -0500150static void __devinit skip_fake_bridge(struct pci_dev *dev)
151{
152 /* Make it an error to skip the fake bridge
153 * in pci_setup_device() in probe.c */
154 dev->hdr_type = 0x7f;
155}
156DECLARE_PCI_FIXUP_EARLY(0x1957, 0x3fff, skip_fake_bridge);
157DECLARE_PCI_FIXUP_EARLY(0x3fff, 0x1957, skip_fake_bridge);
158DECLARE_PCI_FIXUP_EARLY(0xff3f, 0x5719, skip_fake_bridge);
159
Andy Flemingddd64152006-08-17 20:24:48 -0500160#ifdef CONFIG_PPC_I8259
Randy Vinson3620fc12007-06-06 16:26:15 -0700161static void mpc85xx_8259_cascade_handler(unsigned int irq,
162 struct irq_desc *desc)
Andy Flemingddd64152006-08-17 20:24:48 -0500163{
Olaf Hering35a84c22006-10-07 22:08:26 +1000164 unsigned int cascade_irq = i8259_irq();
Andy Flemingddd64152006-08-17 20:24:48 -0500165
166 if (cascade_irq != NO_IRQ)
Randy Vinson3620fc12007-06-06 16:26:15 -0700167 /* handle an interrupt from the 8259 */
Olof Johansson49f19ce2006-10-05 20:31:10 -0500168 generic_handle_irq(cascade_irq);
Andy Flemingddd64152006-08-17 20:24:48 -0500169
Randy Vinson3620fc12007-06-06 16:26:15 -0700170 /* check for any interrupts from the shared IRQ line */
171 handle_fasteoi_irq(irq, desc);
Andy Flemingddd64152006-08-17 20:24:48 -0500172}
Randy Vinson3620fc12007-06-06 16:26:15 -0700173
174static irqreturn_t mpc85xx_8259_cascade_action(int irq, void *dev_id)
175{
176 return IRQ_HANDLED;
177}
178
179static struct irqaction mpc85xxcds_8259_irqaction = {
180 .handler = mpc85xx_8259_cascade_action,
181 .flags = IRQF_SHARED,
Randy Vinson3620fc12007-06-06 16:26:15 -0700182 .name = "8259 cascade",
183};
Andy Flemingddd64152006-08-17 20:24:48 -0500184#endif /* PPC_I8259 */
Andy Fleming591f0a42006-04-02 17:42:40 -0500185#endif /* CONFIG_PCI */
186
Kumar Gala27630be2007-02-09 09:30:45 -0600187static void __init mpc85xx_cds_pic_init(void)
Andy Fleming591f0a42006-04-02 17:42:40 -0500188{
Andy Flemingddd64152006-08-17 20:24:48 -0500189 struct mpic *mpic;
190 struct resource r;
191 struct device_node *np = NULL;
Andy Fleming591f0a42006-04-02 17:42:40 -0500192
Andy Flemingddd64152006-08-17 20:24:48 -0500193 np = of_find_node_by_type(np, "open-pic");
Andy Fleming591f0a42006-04-02 17:42:40 -0500194
Andy Flemingddd64152006-08-17 20:24:48 -0500195 if (np == NULL) {
196 printk(KERN_ERR "Could not find open-pic node\n");
197 return;
198 }
199
200 if (of_address_to_resource(np, 0, &r)) {
201 printk(KERN_ERR "Failed to map mpic register space\n");
202 of_node_put(np);
203 return;
204 }
205
206 mpic = mpic_alloc(np, r.start,
Andy Fleming591f0a42006-04-02 17:42:40 -0500207 MPIC_PRIMARY | MPIC_WANTS_RESET | MPIC_BIG_ENDIAN,
Kumar Galab533f8a2007-07-03 02:35:35 -0500208 0, 256, " OpenPIC ");
Andy Flemingddd64152006-08-17 20:24:48 -0500209 BUG_ON(mpic == NULL);
Andy Fleming591f0a42006-04-02 17:42:40 -0500210
Andy Flemingddd64152006-08-17 20:24:48 -0500211 /* Return the mpic node */
212 of_node_put(np);
Andy Fleming591f0a42006-04-02 17:42:40 -0500213
Andy Flemingddd64152006-08-17 20:24:48 -0500214 mpic_init(mpic);
Randy Vinsonbca03c62007-06-14 11:02:54 -0700215}
Andy Flemingddd64152006-08-17 20:24:48 -0500216
Randy Vinson3620fc12007-06-06 16:26:15 -0700217#if defined(CONFIG_PPC_I8259) && defined(CONFIG_PCI)
Randy Vinsonbca03c62007-06-14 11:02:54 -0700218static int mpc85xx_cds_8259_attach(void)
219{
220 int ret;
221 struct device_node *np = NULL;
222 struct device_node *cascade_node = NULL;
223 int cascade_irq;
224
Andy Flemingddd64152006-08-17 20:24:48 -0500225 /* Initialize the i8259 controller */
226 for_each_node_by_type(np, "interrupt-controller")
Stephen Rothwell55b61fe2007-05-03 17:26:52 +1000227 if (of_device_is_compatible(np, "chrp,iic")) {
Andy Flemingddd64152006-08-17 20:24:48 -0500228 cascade_node = np;
229 break;
230 }
231
232 if (cascade_node == NULL) {
233 printk(KERN_DEBUG "Could not find i8259 PIC\n");
Randy Vinsonbca03c62007-06-14 11:02:54 -0700234 return -ENODEV;
Andy Flemingddd64152006-08-17 20:24:48 -0500235 }
236
237 cascade_irq = irq_of_parse_and_map(cascade_node, 0);
238 if (cascade_irq == NO_IRQ) {
239 printk(KERN_ERR "Failed to map cascade interrupt\n");
Randy Vinsonbca03c62007-06-14 11:02:54 -0700240 return -ENXIO;
Andy Flemingddd64152006-08-17 20:24:48 -0500241 }
242
243 i8259_init(cascade_node, 0);
244 of_node_put(cascade_node);
245
Randy Vinson3620fc12007-06-06 16:26:15 -0700246 /*
247 * Hook the interrupt to make sure desc->action is never NULL.
248 * This is required to ensure that the interrupt does not get
249 * disabled when the last user of the shared IRQ line frees their
250 * interrupt.
251 */
Randy Vinsonbca03c62007-06-14 11:02:54 -0700252 if ((ret = setup_irq(cascade_irq, &mpc85xxcds_8259_irqaction))) {
Randy Vinson3620fc12007-06-06 16:26:15 -0700253 printk(KERN_ERR "Failed to setup cascade interrupt\n");
Randy Vinsonbca03c62007-06-14 11:02:54 -0700254 return ret;
255 }
256
257 /* Success. Connect our low-level cascade handler. */
Thomas Gleixnerec775d02011-03-25 16:45:20 +0100258 irq_set_handler(cascade_irq, mpc85xx_8259_cascade_handler);
Randy Vinsonbca03c62007-06-14 11:02:54 -0700259
260 return 0;
Andy Fleming591f0a42006-04-02 17:42:40 -0500261}
Kumar Gala277982e2008-01-15 09:42:36 -0600262machine_device_initcall(mpc85xx_cds, mpc85xx_cds_8259_attach);
Randy Vinsonbca03c62007-06-14 11:02:54 -0700263
264#endif /* CONFIG_PPC_I8259 */
265
Andy Fleming591f0a42006-04-02 17:42:40 -0500266/*
267 * Setup the architecture
268 */
Kumar Gala27630be2007-02-09 09:30:45 -0600269static void __init mpc85xx_cds_setup_arch(void)
Andy Fleming591f0a42006-04-02 17:42:40 -0500270{
Andy Fleming591f0a42006-04-02 17:42:40 -0500271#ifdef CONFIG_PCI
272 struct device_node *np;
273#endif
274
275 if (ppc_md.progress)
276 ppc_md.progress("mpc85xx_cds_setup_arch()", 0);
277
Andy Fleming591f0a42006-04-02 17:42:40 -0500278 cadmus = ioremap(CADMUS_BASE, CADMUS_SIZE);
279 cds_pci_slot = ((cadmus[CM_CSR] >> 6) & 0x3) + 1;
280
281 if (ppc_md.progress) {
282 char buf[40];
283 snprintf(buf, 40, "CDS Version = 0x%x in slot %d\n",
284 cadmus[CM_VER], cds_pci_slot);
285 ppc_md.progress(buf, 0);
286 }
287
288#ifdef CONFIG_PCI
Kumar Galac9438af2007-10-04 00:28:43 -0500289 for_each_node_by_type(np, "pci") {
290 if (of_device_is_compatible(np, "fsl,mpc8540-pci") ||
291 of_device_is_compatible(np, "fsl,mpc8548-pcie")) {
292 struct resource rsrc;
293 of_address_to_resource(np, 0, &rsrc);
294 if ((rsrc.start & 0xfffff) == 0x8000)
295 fsl_add_bridge(np, 1);
296 else
297 fsl_add_bridge(np, 0);
298 }
Roy Zang3f6c5da2007-07-10 18:47:06 +0800299 }
Kumar Galac9438af2007-10-04 00:28:43 -0500300
Roy Zang749e8082007-06-01 16:05:38 +0800301 ppc_md.pci_irq_fixup = mpc85xx_cds_pci_irq_fixup;
Andy Fleming591f0a42006-04-02 17:42:40 -0500302 ppc_md.pci_exclude_device = mpc85xx_exclude_device;
303#endif
Andy Fleming591f0a42006-04-02 17:42:40 -0500304}
305
Kumar Gala27630be2007-02-09 09:30:45 -0600306static void mpc85xx_cds_show_cpuinfo(struct seq_file *m)
Andy Fleming591f0a42006-04-02 17:42:40 -0500307{
308 uint pvid, svid, phid1;
Andy Fleming591f0a42006-04-02 17:42:40 -0500309
310 pvid = mfspr(SPRN_PVR);
311 svid = mfspr(SPRN_SVR);
312
313 seq_printf(m, "Vendor\t\t: Freescale Semiconductor\n");
314 seq_printf(m, "Machine\t\t: MPC85xx CDS (0x%x)\n", cadmus[CM_VER]);
315 seq_printf(m, "PVR\t\t: 0x%x\n", pvid);
316 seq_printf(m, "SVR\t\t: 0x%x\n", svid);
317
318 /* Display cpu Pll setting */
319 phid1 = mfspr(SPRN_HID1);
320 seq_printf(m, "PLL setting\t: 0x%x\n", ((phid1 >> 24) & 0x3f));
Andy Fleming591f0a42006-04-02 17:42:40 -0500321}
322
323
324/*
325 * Called very early, device-tree isn't unflattened
326 */
327static int __init mpc85xx_cds_probe(void)
328{
Kumar Gala6936c622007-02-17 16:19:34 -0600329 unsigned long root = of_get_flat_dt_root();
330
331 return of_flat_dt_is_compatible(root, "MPC85xxCDS");
Andy Fleming591f0a42006-04-02 17:42:40 -0500332}
333
Dave Jianga64887e2008-06-16 15:36:17 -0700334static struct of_device_id __initdata of_bus_ids[] = {
335 { .type = "soc", },
336 { .compatible = "soc", },
337 { .compatible = "simple-bus", },
Anton Vorontsov84ba4a52009-03-19 21:01:48 +0300338 { .compatible = "gianfar", },
Dave Jianga64887e2008-06-16 15:36:17 -0700339 {},
340};
341
342static int __init declare_of_platform_devices(void)
343{
344 return of_platform_bus_probe(NULL, of_bus_ids, NULL);
345}
346machine_device_initcall(mpc85xx_cds, declare_of_platform_devices);
347
Andy Fleming591f0a42006-04-02 17:42:40 -0500348define_machine(mpc85xx_cds) {
349 .name = "MPC85xx CDS",
350 .probe = mpc85xx_cds_probe,
351 .setup_arch = mpc85xx_cds_setup_arch,
352 .init_IRQ = mpc85xx_cds_pic_init,
353 .show_cpuinfo = mpc85xx_cds_show_cpuinfo,
354 .get_irq = mpic_get_irq,
Randy Vinson637e9e12007-03-23 15:43:37 -0700355#ifdef CONFIG_PCI
356 .restart = mpc85xx_cds_restart,
Kumar Gala2af85692007-09-10 14:30:33 -0500357 .pcibios_fixup_bus = fsl_pcibios_fixup_bus,
Randy Vinson637e9e12007-03-23 15:43:37 -0700358#else
Kumar Galae1c15752007-10-04 01:04:57 -0500359 .restart = fsl_rstcr_restart,
Randy Vinson637e9e12007-03-23 15:43:37 -0700360#endif
Andy Fleming591f0a42006-04-02 17:42:40 -0500361 .calibrate_decr = generic_calibrate_decr,
362 .progress = udbg_progress,
Andy Fleming591f0a42006-04-02 17:42:40 -0500363};