Pull sony into release branch
[pandora-kernel.git] / arch / powerpc / platforms / 85xx / mpc85xx_cds.c
1 /*
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
14 #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>
25 #include <linux/root_dev.h>
26 #include <linux/initrd.h>
27 #include <linux/module.h>
28 #include <linux/fsl_devices.h>
29
30 #include <asm/system.h>
31 #include <asm/pgtable.h>
32 #include <asm/page.h>
33 #include <asm/atomic.h>
34 #include <asm/time.h>
35 #include <asm/io.h>
36 #include <asm/machdep.h>
37 #include <asm/ipic.h>
38 #include <asm/bootinfo.h>
39 #include <asm/pci-bridge.h>
40 #include <asm/mpc85xx.h>
41 #include <asm/irq.h>
42 #include <mm/mmu_decl.h>
43 #include <asm/prom.h>
44 #include <asm/udbg.h>
45 #include <asm/mpic.h>
46 #include <asm/i8259.h>
47
48 #include <sysdev/fsl_soc.h>
49 #include "mpc85xx.h"
50
51 #ifndef CONFIG_PCI
52 unsigned long isa_io_base = 0;
53 unsigned long isa_mem_base = 0;
54 #endif
55
56 static int cds_pci_slot = 2;
57 static volatile u8 *cadmus;
58
59 #ifdef CONFIG_PCI
60
61 #define ARCADIA_HOST_BRIDGE_IDSEL       17
62 #define ARCADIA_2ND_BRIDGE_IDSEL        3
63
64 extern int mpc85xx_pci2_busno;
65
66 static int mpc85xx_exclude_device(u_char bus, u_char devfn)
67 {
68         if (bus == 0 && PCI_SLOT(devfn) == 0)
69                 return PCIBIOS_DEVICE_NOT_FOUND;
70         if (mpc85xx_pci2_busno)
71                 if (bus == (mpc85xx_pci2_busno) && PCI_SLOT(devfn) == 0)
72                         return PCIBIOS_DEVICE_NOT_FOUND;
73         /* We explicitly do not go past the Tundra 320 Bridge */
74         if ((bus == 1) && (PCI_SLOT(devfn) == ARCADIA_2ND_BRIDGE_IDSEL))
75                 return PCIBIOS_DEVICE_NOT_FOUND;
76         if ((bus == 0) && (PCI_SLOT(devfn) == ARCADIA_2ND_BRIDGE_IDSEL))
77                 return PCIBIOS_DEVICE_NOT_FOUND;
78         else
79                 return PCIBIOS_SUCCESSFUL;
80 }
81
82 static void __init mpc85xx_cds_pcibios_fixup(void)
83 {
84         struct pci_dev *dev;
85         u_char          c;
86
87         if ((dev = pci_get_device(PCI_VENDOR_ID_VIA,
88                                         PCI_DEVICE_ID_VIA_82C586_1, NULL))) {
89                 /*
90                  * U-Boot does not set the enable bits
91                  * for the IDE device. Force them on here.
92                  */
93                 pci_read_config_byte(dev, 0x40, &c);
94                 c |= 0x03; /* IDE: Chip Enable Bits */
95                 pci_write_config_byte(dev, 0x40, c);
96
97                 /*
98                  * Since only primary interface works, force the
99                  * IDE function to standard primary IDE interrupt
100                  * w/ 8259 offset
101                  */
102                 dev->irq = 14;
103                 pci_write_config_byte(dev, PCI_INTERRUPT_LINE, dev->irq);
104                 pci_dev_put(dev);
105         }
106
107         /*
108          * Force legacy USB interrupt routing
109          */
110         if ((dev = pci_get_device(PCI_VENDOR_ID_VIA,
111                                         PCI_DEVICE_ID_VIA_82C586_2, NULL))) {
112                 dev->irq = 10;
113                 pci_write_config_byte(dev, PCI_INTERRUPT_LINE, 10);
114                 pci_dev_put(dev);
115         }
116
117         if ((dev = pci_get_device(PCI_VENDOR_ID_VIA,
118                                         PCI_DEVICE_ID_VIA_82C586_2, dev))) {
119                 dev->irq = 11;
120                 pci_write_config_byte(dev, PCI_INTERRUPT_LINE, 11);
121                 pci_dev_put(dev);
122         }
123
124         /* Now map all the PCI irqs */
125         dev = NULL;
126         for_each_pci_dev(dev)
127                 pci_read_irq_line(dev);
128 }
129
130 #ifdef CONFIG_PPC_I8259
131 #warning The i8259 PIC support is currently broken
132 static void mpc85xx_8259_cascade(unsigned int irq, struct irq_desc *desc)
133 {
134         unsigned int cascade_irq = i8259_irq();
135
136         if (cascade_irq != NO_IRQ)
137                 generic_handle_irq(cascade_irq);
138
139         desc->chip->eoi(irq);
140 }
141 #endif /* PPC_I8259 */
142 #endif /* CONFIG_PCI */
143
144 static void __init mpc85xx_cds_pic_init(void)
145 {
146         struct mpic *mpic;
147         struct resource r;
148         struct device_node *np = NULL;
149 #ifdef CONFIG_PPC_I8259
150         struct device_node *cascade_node = NULL;
151         int cascade_irq;
152 #endif
153
154         np = of_find_node_by_type(np, "open-pic");
155
156         if (np == NULL) {
157                 printk(KERN_ERR "Could not find open-pic node\n");
158                 return;
159         }
160
161         if (of_address_to_resource(np, 0, &r)) {
162                 printk(KERN_ERR "Failed to map mpic register space\n");
163                 of_node_put(np);
164                 return;
165         }
166
167         mpic = mpic_alloc(np, r.start,
168                         MPIC_PRIMARY | MPIC_WANTS_RESET | MPIC_BIG_ENDIAN,
169                         4, 0, " OpenPIC  ");
170         BUG_ON(mpic == NULL);
171
172         /* Return the mpic node */
173         of_node_put(np);
174
175         mpic_assign_isu(mpic, 0, r.start + 0x10200);
176         mpic_assign_isu(mpic, 1, r.start + 0x10280);
177         mpic_assign_isu(mpic, 2, r.start + 0x10300);
178         mpic_assign_isu(mpic, 3, r.start + 0x10380);
179         mpic_assign_isu(mpic, 4, r.start + 0x10400);
180         mpic_assign_isu(mpic, 5, r.start + 0x10480);
181         mpic_assign_isu(mpic, 6, r.start + 0x10500);
182         mpic_assign_isu(mpic, 7, r.start + 0x10580);
183
184         /* Used only for 8548 so far, but no harm in
185          * allocating them for everyone */
186         mpic_assign_isu(mpic, 8, r.start + 0x10600);
187         mpic_assign_isu(mpic, 9, r.start + 0x10680);
188         mpic_assign_isu(mpic, 10, r.start + 0x10700);
189         mpic_assign_isu(mpic, 11, r.start + 0x10780);
190
191         /* External Interrupts */
192         mpic_assign_isu(mpic, 12, r.start + 0x10000);
193         mpic_assign_isu(mpic, 13, r.start + 0x10080);
194         mpic_assign_isu(mpic, 14, r.start + 0x10100);
195
196         mpic_init(mpic);
197
198 #ifdef CONFIG_PPC_I8259
199         /* Initialize the i8259 controller */
200         for_each_node_by_type(np, "interrupt-controller")
201                 if (device_is_compatible(np, "chrp,iic")) {
202                         cascade_node = np;
203                         break;
204                 }
205
206         if (cascade_node == NULL) {
207                 printk(KERN_DEBUG "Could not find i8259 PIC\n");
208                 return;
209         }
210
211         cascade_irq = irq_of_parse_and_map(cascade_node, 0);
212         if (cascade_irq == NO_IRQ) {
213                 printk(KERN_ERR "Failed to map cascade interrupt\n");
214                 return;
215         }
216
217         i8259_init(cascade_node, 0);
218         of_node_put(cascade_node);
219
220         set_irq_chained_handler(cascade_irq, mpc85xx_8259_cascade);
221 #endif /* CONFIG_PPC_I8259 */
222 }
223
224 /*
225  * Setup the architecture
226  */
227 static void __init mpc85xx_cds_setup_arch(void)
228 {
229         struct device_node *cpu;
230 #ifdef CONFIG_PCI
231         struct device_node *np;
232 #endif
233
234         if (ppc_md.progress)
235                 ppc_md.progress("mpc85xx_cds_setup_arch()", 0);
236
237         cpu = of_find_node_by_type(NULL, "cpu");
238         if (cpu != 0) {
239                 const unsigned int *fp;
240
241                 fp = get_property(cpu, "clock-frequency", NULL);
242                 if (fp != 0)
243                         loops_per_jiffy = *fp / HZ;
244                 else
245                         loops_per_jiffy = 500000000 / HZ;
246                 of_node_put(cpu);
247         }
248
249         cadmus = ioremap(CADMUS_BASE, CADMUS_SIZE);
250         cds_pci_slot = ((cadmus[CM_CSR] >> 6) & 0x3) + 1;
251
252         if (ppc_md.progress) {
253                 char buf[40];
254                 snprintf(buf, 40, "CDS Version = 0x%x in slot %d\n",
255                                 cadmus[CM_VER], cds_pci_slot);
256                 ppc_md.progress(buf, 0);
257         }
258
259 #ifdef CONFIG_PCI
260         for (np = NULL; (np = of_find_node_by_type(np, "pci")) != NULL;)
261                 add_bridge(np);
262
263         ppc_md.pcibios_fixup = mpc85xx_cds_pcibios_fixup;
264         ppc_md.pci_exclude_device = mpc85xx_exclude_device;
265 #endif
266
267 #ifdef  CONFIG_ROOT_NFS
268         ROOT_DEV = Root_NFS;
269 #else
270         ROOT_DEV = Root_HDA1;
271 #endif
272 }
273
274 static void mpc85xx_cds_show_cpuinfo(struct seq_file *m)
275 {
276         uint pvid, svid, phid1;
277         uint memsize = total_memory;
278
279         pvid = mfspr(SPRN_PVR);
280         svid = mfspr(SPRN_SVR);
281
282         seq_printf(m, "Vendor\t\t: Freescale Semiconductor\n");
283         seq_printf(m, "Machine\t\t: MPC85xx CDS (0x%x)\n", cadmus[CM_VER]);
284         seq_printf(m, "PVR\t\t: 0x%x\n", pvid);
285         seq_printf(m, "SVR\t\t: 0x%x\n", svid);
286
287         /* Display cpu Pll setting */
288         phid1 = mfspr(SPRN_HID1);
289         seq_printf(m, "PLL setting\t: 0x%x\n", ((phid1 >> 24) & 0x3f));
290
291         /* Display the amount of memory */
292         seq_printf(m, "Memory\t\t: %d MB\n", memsize / (1024 * 1024));
293 }
294
295
296 /*
297  * Called very early, device-tree isn't unflattened
298  */
299 static int __init mpc85xx_cds_probe(void)
300 {
301         /* We always match for now, eventually we should look at
302          * the flat dev tree to ensure this is the board we are
303          * supposed to run on
304          */
305         return 1;
306 }
307
308 define_machine(mpc85xx_cds) {
309         .name           = "MPC85xx CDS",
310         .probe          = mpc85xx_cds_probe,
311         .setup_arch     = mpc85xx_cds_setup_arch,
312         .init_IRQ       = mpc85xx_cds_pic_init,
313         .show_cpuinfo   = mpc85xx_cds_show_cpuinfo,
314         .get_irq        = mpic_get_irq,
315         .restart        = mpc85xx_restart,
316         .calibrate_decr = generic_calibrate_decr,
317         .progress       = udbg_progress,
318 };