blob: 7e2a4d231e74dce6b99d77fe5d5a8d19334fffaa [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>
Randy Vinson3620fc12007-06-06 16:26:15 -070026#include <linux/interrupt.h>
Andy Fleming591f0a42006-04-02 17:42:40 -050027#include <linux/fsl_devices.h>
Dave Jianga64887e2008-06-16 15:36:17 -070028#include <linux/of_platform.h>
Andy Fleming591f0a42006-04-02 17:42:40 -050029
30#include <asm/system.h>
31#include <asm/pgtable.h>
32#include <asm/page.h>
Arun Sharma600634972011-07-26 16:09:06 -070033#include <linux/atomic.h>
Andy Fleming591f0a42006-04-02 17:42:40 -050034#include <asm/time.h>
35#include <asm/io.h>
36#include <asm/machdep.h>
37#include <asm/ipic.h>
Andy Fleming591f0a42006-04-02 17:42:40 -050038#include <asm/pci-bridge.h>
Andy Fleming591f0a42006-04-02 17:42:40 -050039#include <asm/irq.h>
40#include <mm/mmu_decl.h>
41#include <asm/prom.h>
42#include <asm/udbg.h>
43#include <asm/mpic.h>
44#include <asm/i8259.h>
45
46#include <sysdev/fsl_soc.h>
Roy Zang3f6c5da2007-07-10 18:47:06 +080047#include <sysdev/fsl_pci.h>
Andy Fleming591f0a42006-04-02 17:42:40 -050048
Kumar Gala0bfd5df2007-10-11 09:13:41 -050049/* CADMUS info */
50/* xxx - galak, move into device tree */
51#define CADMUS_BASE (0xf8004000)
52#define CADMUS_SIZE (256)
53#define CM_VER (0)
54#define CM_CSR (1)
55#define CM_RST (2)
56
57
Andy Fleming591f0a42006-04-02 17:42:40 -050058static int cds_pci_slot = 2;
59static volatile u8 *cadmus;
60
Andy Fleming591f0a42006-04-02 17:42:40 -050061#ifdef CONFIG_PCI
Andy Fleming591f0a42006-04-02 17:42:40 -050062
63#define ARCADIA_HOST_BRIDGE_IDSEL 17
64#define ARCADIA_2ND_BRIDGE_IDSEL 3
65
Kumar Gala7d52c7b2007-06-22 00:23:57 -050066static int mpc85xx_exclude_device(struct pci_controller *hose,
67 u_char bus, u_char devfn)
Andy Fleming591f0a42006-04-02 17:42:40 -050068{
Andy Fleming591f0a42006-04-02 17:42:40 -050069 /* We explicitly do not go past the Tundra 320 Bridge */
70 if ((bus == 1) && (PCI_SLOT(devfn) == ARCADIA_2ND_BRIDGE_IDSEL))
71 return PCIBIOS_DEVICE_NOT_FOUND;
72 if ((bus == 0) && (PCI_SLOT(devfn) == ARCADIA_2ND_BRIDGE_IDSEL))
73 return PCIBIOS_DEVICE_NOT_FOUND;
74 else
75 return PCIBIOS_SUCCESSFUL;
76}
77
Randy Vinson637e9e12007-03-23 15:43:37 -070078static void mpc85xx_cds_restart(char *cmd)
79{
80 struct pci_dev *dev;
81 u_char tmp;
82
83 if ((dev = pci_get_device(PCI_VENDOR_ID_VIA, PCI_DEVICE_ID_VIA_82C686,
84 NULL))) {
85
86 /* Use the VIA Super Southbridge to force a PCI reset */
87 pci_read_config_byte(dev, 0x47, &tmp);
88 pci_write_config_byte(dev, 0x47, tmp | 1);
89
90 /* Flush the outbound PCI write queues */
91 pci_read_config_byte(dev, 0x47, &tmp);
92
93 /*
94 * At this point, the harware reset should have triggered.
95 * However, if it doesn't work for some mysterious reason,
96 * just fall through to the default reset below.
97 */
98
99 pci_dev_put(dev);
100 }
101
102 /*
103 * If we can't find the VIA chip (maybe the P2P bridge is disabled)
104 * or the VIA chip reset didn't work, just use the default reset.
105 */
Kumar Galae1c15752007-10-04 01:04:57 -0500106 fsl_rstcr_restart(NULL);
Randy Vinson637e9e12007-03-23 15:43:37 -0700107}
108
Roy Zang749e8082007-06-01 16:05:38 +0800109static void __init mpc85xx_cds_pci_irq_fixup(struct pci_dev *dev)
Andy Fleming591f0a42006-04-02 17:42:40 -0500110{
Roy Zang749e8082007-06-01 16:05:38 +0800111 u_char c;
112 if (dev->vendor == PCI_VENDOR_ID_VIA) {
113 switch (dev->device) {
114 case PCI_DEVICE_ID_VIA_82C586_1:
115 /*
116 * U-Boot does not set the enable bits
117 * for the IDE device. Force them on here.
118 */
119 pci_read_config_byte(dev, 0x40, &c);
120 c |= 0x03; /* IDE: Chip Enable Bits */
121 pci_write_config_byte(dev, 0x40, c);
Andy Fleming591f0a42006-04-02 17:42:40 -0500122
Roy Zang749e8082007-06-01 16:05:38 +0800123 /*
124 * Since only primary interface works, force the
125 * IDE function to standard primary IDE interrupt
126 * w/ 8259 offset
127 */
128 dev->irq = 14;
129 pci_write_config_byte(dev, PCI_INTERRUPT_LINE, dev->irq);
130 break;
Andy Fleming591f0a42006-04-02 17:42:40 -0500131 /*
Roy Zang749e8082007-06-01 16:05:38 +0800132 * Force legacy USB interrupt routing
Andy Fleming591f0a42006-04-02 17:42:40 -0500133 */
Roy Zang749e8082007-06-01 16:05:38 +0800134 case PCI_DEVICE_ID_VIA_82C586_2:
135 /* There are two USB controllers.
136 * Identify them by functon number
Andy Fleming591f0a42006-04-02 17:42:40 -0500137 */
Randy Vinson8d7bc8f2007-07-19 10:40:53 -0700138 if (PCI_FUNC(dev->devfn) == 3)
Roy Zang749e8082007-06-01 16:05:38 +0800139 dev->irq = 11;
140 else
141 dev->irq = 10;
142 pci_write_config_byte(dev, PCI_INTERRUPT_LINE, dev->irq);
143 default:
144 break;
145 }
Andy Fleming591f0a42006-04-02 17:42:40 -0500146 }
Andy Fleming591f0a42006-04-02 17:42:40 -0500147}
Andy Flemingddd64152006-08-17 20:24:48 -0500148
Kumar Gala4e798212007-07-19 15:39:24 -0500149static void __devinit skip_fake_bridge(struct pci_dev *dev)
150{
151 /* Make it an error to skip the fake bridge
152 * in pci_setup_device() in probe.c */
153 dev->hdr_type = 0x7f;
154}
155DECLARE_PCI_FIXUP_EARLY(0x1957, 0x3fff, skip_fake_bridge);
156DECLARE_PCI_FIXUP_EARLY(0x3fff, 0x1957, skip_fake_bridge);
157DECLARE_PCI_FIXUP_EARLY(0xff3f, 0x5719, skip_fake_bridge);
158
Andy Flemingddd64152006-08-17 20:24:48 -0500159#ifdef CONFIG_PPC_I8259
Randy Vinson3620fc12007-06-06 16:26:15 -0700160static void mpc85xx_8259_cascade_handler(unsigned int irq,
161 struct irq_desc *desc)
Andy Flemingddd64152006-08-17 20:24:48 -0500162{
Olaf Hering35a84c22006-10-07 22:08:26 +1000163 unsigned int cascade_irq = i8259_irq();
Andy Flemingddd64152006-08-17 20:24:48 -0500164
165 if (cascade_irq != NO_IRQ)
Randy Vinson3620fc12007-06-06 16:26:15 -0700166 /* handle an interrupt from the 8259 */
Olof Johansson49f19ce2006-10-05 20:31:10 -0500167 generic_handle_irq(cascade_irq);
Andy Flemingddd64152006-08-17 20:24:48 -0500168
Randy Vinson3620fc12007-06-06 16:26:15 -0700169 /* check for any interrupts from the shared IRQ line */
170 handle_fasteoi_irq(irq, desc);
Andy Flemingddd64152006-08-17 20:24:48 -0500171}
Randy Vinson3620fc12007-06-06 16:26:15 -0700172
173static irqreturn_t mpc85xx_8259_cascade_action(int irq, void *dev_id)
174{
175 return IRQ_HANDLED;
176}
177
178static struct irqaction mpc85xxcds_8259_irqaction = {
179 .handler = mpc85xx_8259_cascade_action,
Thomas Gleixnerc6c56bd2011-10-05 02:30:49 +0000180 .flags = IRQF_SHARED | IRQF_NO_THREAD,
Randy Vinson3620fc12007-06-06 16:26:15 -0700181 .name = "8259 cascade",
182};
Andy Flemingddd64152006-08-17 20:24:48 -0500183#endif /* PPC_I8259 */
Andy Fleming591f0a42006-04-02 17:42:40 -0500184#endif /* CONFIG_PCI */
185
Kumar Gala27630be2007-02-09 09:30:45 -0600186static void __init mpc85xx_cds_pic_init(void)
Andy Fleming591f0a42006-04-02 17:42:40 -0500187{
Andy Flemingddd64152006-08-17 20:24:48 -0500188 struct mpic *mpic;
189 struct resource r;
190 struct device_node *np = NULL;
Andy Fleming591f0a42006-04-02 17:42:40 -0500191
Andy Flemingddd64152006-08-17 20:24:48 -0500192 np = of_find_node_by_type(np, "open-pic");
Andy Fleming591f0a42006-04-02 17:42:40 -0500193
Andy Flemingddd64152006-08-17 20:24:48 -0500194 if (np == NULL) {
195 printk(KERN_ERR "Could not find open-pic node\n");
196 return;
197 }
198
199 if (of_address_to_resource(np, 0, &r)) {
200 printk(KERN_ERR "Failed to map mpic register space\n");
201 of_node_put(np);
202 return;
203 }
204
205 mpic = mpic_alloc(np, r.start,
Andy Fleming591f0a42006-04-02 17:42:40 -0500206 MPIC_PRIMARY | MPIC_WANTS_RESET | MPIC_BIG_ENDIAN,
Kumar Galab533f8a2007-07-03 02:35:35 -0500207 0, 256, " OpenPIC ");
Andy Flemingddd64152006-08-17 20:24:48 -0500208 BUG_ON(mpic == NULL);
Andy Fleming591f0a42006-04-02 17:42:40 -0500209
Andy Flemingddd64152006-08-17 20:24:48 -0500210 /* Return the mpic node */
211 of_node_put(np);
Andy Fleming591f0a42006-04-02 17:42:40 -0500212
Andy Flemingddd64152006-08-17 20:24:48 -0500213 mpic_init(mpic);
Randy Vinsonbca03c62007-06-14 11:02:54 -0700214}
Andy Flemingddd64152006-08-17 20:24:48 -0500215
Randy Vinson3620fc12007-06-06 16:26:15 -0700216#if defined(CONFIG_PPC_I8259) && defined(CONFIG_PCI)
Randy Vinsonbca03c62007-06-14 11:02:54 -0700217static int mpc85xx_cds_8259_attach(void)
218{
219 int ret;
220 struct device_node *np = NULL;
221 struct device_node *cascade_node = NULL;
222 int cascade_irq;
223
Andy Flemingddd64152006-08-17 20:24:48 -0500224 /* Initialize the i8259 controller */
225 for_each_node_by_type(np, "interrupt-controller")
Stephen Rothwell55b61fe2007-05-03 17:26:52 +1000226 if (of_device_is_compatible(np, "chrp,iic")) {
Andy Flemingddd64152006-08-17 20:24:48 -0500227 cascade_node = np;
228 break;
229 }
230
231 if (cascade_node == NULL) {
232 printk(KERN_DEBUG "Could not find i8259 PIC\n");
Randy Vinsonbca03c62007-06-14 11:02:54 -0700233 return -ENODEV;
Andy Flemingddd64152006-08-17 20:24:48 -0500234 }
235
236 cascade_irq = irq_of_parse_and_map(cascade_node, 0);
237 if (cascade_irq == NO_IRQ) {
238 printk(KERN_ERR "Failed to map cascade interrupt\n");
Randy Vinsonbca03c62007-06-14 11:02:54 -0700239 return -ENXIO;
Andy Flemingddd64152006-08-17 20:24:48 -0500240 }
241
242 i8259_init(cascade_node, 0);
243 of_node_put(cascade_node);
244
Randy Vinson3620fc12007-06-06 16:26:15 -0700245 /*
246 * Hook the interrupt to make sure desc->action is never NULL.
247 * This is required to ensure that the interrupt does not get
248 * disabled when the last user of the shared IRQ line frees their
249 * interrupt.
250 */
Randy Vinsonbca03c62007-06-14 11:02:54 -0700251 if ((ret = setup_irq(cascade_irq, &mpc85xxcds_8259_irqaction))) {
Randy Vinson3620fc12007-06-06 16:26:15 -0700252 printk(KERN_ERR "Failed to setup cascade interrupt\n");
Randy Vinsonbca03c62007-06-14 11:02:54 -0700253 return ret;
254 }
255
256 /* Success. Connect our low-level cascade handler. */
Thomas Gleixnerec775d02011-03-25 16:45:20 +0100257 irq_set_handler(cascade_irq, mpc85xx_8259_cascade_handler);
Randy Vinsonbca03c62007-06-14 11:02:54 -0700258
259 return 0;
Andy Fleming591f0a42006-04-02 17:42:40 -0500260}
Kumar Gala277982e2008-01-15 09:42:36 -0600261machine_device_initcall(mpc85xx_cds, mpc85xx_cds_8259_attach);
Randy Vinsonbca03c62007-06-14 11:02:54 -0700262
263#endif /* CONFIG_PPC_I8259 */
264
Andy Fleming591f0a42006-04-02 17:42:40 -0500265/*
266 * Setup the architecture
267 */
Kumar Gala27630be2007-02-09 09:30:45 -0600268static void __init mpc85xx_cds_setup_arch(void)
Andy Fleming591f0a42006-04-02 17:42:40 -0500269{
Andy Fleming591f0a42006-04-02 17:42:40 -0500270#ifdef CONFIG_PCI
271 struct device_node *np;
272#endif
273
274 if (ppc_md.progress)
275 ppc_md.progress("mpc85xx_cds_setup_arch()", 0);
276
Andy Fleming591f0a42006-04-02 17:42:40 -0500277 cadmus = ioremap(CADMUS_BASE, CADMUS_SIZE);
278 cds_pci_slot = ((cadmus[CM_CSR] >> 6) & 0x3) + 1;
279
280 if (ppc_md.progress) {
281 char buf[40];
282 snprintf(buf, 40, "CDS Version = 0x%x in slot %d\n",
283 cadmus[CM_VER], cds_pci_slot);
284 ppc_md.progress(buf, 0);
285 }
286
287#ifdef CONFIG_PCI
Kumar Galac9438af2007-10-04 00:28:43 -0500288 for_each_node_by_type(np, "pci") {
289 if (of_device_is_compatible(np, "fsl,mpc8540-pci") ||
290 of_device_is_compatible(np, "fsl,mpc8548-pcie")) {
291 struct resource rsrc;
292 of_address_to_resource(np, 0, &rsrc);
293 if ((rsrc.start & 0xfffff) == 0x8000)
294 fsl_add_bridge(np, 1);
295 else
296 fsl_add_bridge(np, 0);
297 }
Roy Zang3f6c5da2007-07-10 18:47:06 +0800298 }
Kumar Galac9438af2007-10-04 00:28:43 -0500299
Roy Zang749e8082007-06-01 16:05:38 +0800300 ppc_md.pci_irq_fixup = mpc85xx_cds_pci_irq_fixup;
Andy Fleming591f0a42006-04-02 17:42:40 -0500301 ppc_md.pci_exclude_device = mpc85xx_exclude_device;
302#endif
Andy Fleming591f0a42006-04-02 17:42:40 -0500303}
304
Kumar Gala27630be2007-02-09 09:30:45 -0600305static void mpc85xx_cds_show_cpuinfo(struct seq_file *m)
Andy Fleming591f0a42006-04-02 17:42:40 -0500306{
307 uint pvid, svid, phid1;
Andy Fleming591f0a42006-04-02 17:42:40 -0500308
309 pvid = mfspr(SPRN_PVR);
310 svid = mfspr(SPRN_SVR);
311
312 seq_printf(m, "Vendor\t\t: Freescale Semiconductor\n");
313 seq_printf(m, "Machine\t\t: MPC85xx CDS (0x%x)\n", cadmus[CM_VER]);
314 seq_printf(m, "PVR\t\t: 0x%x\n", pvid);
315 seq_printf(m, "SVR\t\t: 0x%x\n", svid);
316
317 /* Display cpu Pll setting */
318 phid1 = mfspr(SPRN_HID1);
319 seq_printf(m, "PLL setting\t: 0x%x\n", ((phid1 >> 24) & 0x3f));
Andy Fleming591f0a42006-04-02 17:42:40 -0500320}
321
322
323/*
324 * Called very early, device-tree isn't unflattened
325 */
326static int __init mpc85xx_cds_probe(void)
327{
Kumar Gala6936c622007-02-17 16:19:34 -0600328 unsigned long root = of_get_flat_dt_root();
329
330 return of_flat_dt_is_compatible(root, "MPC85xxCDS");
Andy Fleming591f0a42006-04-02 17:42:40 -0500331}
332
Dave Jianga64887e2008-06-16 15:36:17 -0700333static struct of_device_id __initdata of_bus_ids[] = {
334 { .type = "soc", },
335 { .compatible = "soc", },
336 { .compatible = "simple-bus", },
Anton Vorontsov84ba4a52009-03-19 21:01:48 +0300337 { .compatible = "gianfar", },
Dave Jianga64887e2008-06-16 15:36:17 -0700338 {},
339};
340
341static int __init declare_of_platform_devices(void)
342{
343 return of_platform_bus_probe(NULL, of_bus_ids, NULL);
344}
345machine_device_initcall(mpc85xx_cds, declare_of_platform_devices);
346
Andy Fleming591f0a42006-04-02 17:42:40 -0500347define_machine(mpc85xx_cds) {
348 .name = "MPC85xx CDS",
349 .probe = mpc85xx_cds_probe,
350 .setup_arch = mpc85xx_cds_setup_arch,
351 .init_IRQ = mpc85xx_cds_pic_init,
352 .show_cpuinfo = mpc85xx_cds_show_cpuinfo,
353 .get_irq = mpic_get_irq,
Randy Vinson637e9e12007-03-23 15:43:37 -0700354#ifdef CONFIG_PCI
355 .restart = mpc85xx_cds_restart,
Kumar Gala2af85692007-09-10 14:30:33 -0500356 .pcibios_fixup_bus = fsl_pcibios_fixup_bus,
Randy Vinson637e9e12007-03-23 15:43:37 -0700357#else
Kumar Galae1c15752007-10-04 01:04:57 -0500358 .restart = fsl_rstcr_restart,
Randy Vinson637e9e12007-03-23 15:43:37 -0700359#endif
Andy Fleming591f0a42006-04-02 17:42:40 -0500360 .calibrate_decr = generic_calibrate_decr,
361 .progress = udbg_progress,
Andy Fleming591f0a42006-04-02 17:42:40 -0500362};