POWERPC: Add support for the mpc8560 eval board
[sfrench/cifs-2.6.git] / arch / powerpc / platforms / 85xx / mpc85xx_ads.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/pci.h>
17 #include <linux/kdev_t.h>
18 #include <linux/delay.h>
19 #include <linux/seq_file.h>
20 #include <linux/root_dev.h>
21
22 #include <asm/system.h>
23 #include <asm/time.h>
24 #include <asm/machdep.h>
25 #include <asm/pci-bridge.h>
26 #include <asm/mpc85xx.h>
27 #include <asm/prom.h>
28 #include <asm/mpic.h>
29 #include <mm/mmu_decl.h>
30 #include <asm/udbg.h>
31
32 #include <sysdev/fsl_soc.h>
33 #include "mpc85xx.h"
34
35 #ifdef CONFIG_CPM2
36 #include <asm/cpm2.h>
37 #include <sysdev/cpm2_pic.h>
38 #include <asm/fs_pd.h>
39 #endif
40
41 #ifndef CONFIG_PCI
42 unsigned long isa_io_base = 0;
43 unsigned long isa_mem_base = 0;
44 #endif
45
46 #ifdef CONFIG_PCI
47 int
48 mpc85xx_exclude_device(u_char bus, u_char devfn)
49 {
50         if (bus == 0 && PCI_SLOT(devfn) == 0)
51                 return PCIBIOS_DEVICE_NOT_FOUND;
52         else
53                 return PCIBIOS_SUCCESSFUL;
54 }
55
56 void __init
57 mpc85xx_pcibios_fixup(void)
58 {
59         struct pci_dev *dev = NULL;
60
61         for_each_pci_dev(dev)
62                 pci_read_irq_line(dev);
63 }
64 #endif /* CONFIG_PCI */
65
66 #ifdef CONFIG_CPM2
67
68 static void cpm2_cascade(unsigned int irq, struct irq_desc *desc,
69                          struct pt_regs *regs)
70 {
71         int cascade_irq;
72
73         while ((cascade_irq = cpm2_get_irq(regs)) >= 0) {
74                 generic_handle_irq(cascade_irq, regs);
75         }
76         desc->chip->eoi(irq);
77 }
78
79 #endif /* CONFIG_CPM2 */
80
81 void __init mpc85xx_ads_pic_init(void)
82 {
83         struct mpic *mpic;
84         struct resource r;
85         struct device_node *np = NULL;
86 #ifdef CONFIG_CPM2
87         int irq;
88 #endif
89
90         np = of_find_node_by_type(np, "open-pic");
91
92         if (np == NULL) {
93                 printk(KERN_ERR "Could not find open-pic node\n");
94                 return;
95         }
96
97         if(of_address_to_resource(np, 0, &r)) {
98                 printk(KERN_ERR "Could not map mpic register space\n");
99                 of_node_put(np);
100                 return;
101         }
102
103         mpic = mpic_alloc(np, r.start,
104                         MPIC_PRIMARY | MPIC_WANTS_RESET | MPIC_BIG_ENDIAN,
105                         4, 0, " OpenPIC  ");
106         BUG_ON(mpic == NULL);
107         of_node_put(np);
108
109         mpic_assign_isu(mpic, 0, r.start + 0x10200);
110         mpic_assign_isu(mpic, 1, r.start + 0x10280);
111         mpic_assign_isu(mpic, 2, r.start + 0x10300);
112         mpic_assign_isu(mpic, 3, r.start + 0x10380);
113         mpic_assign_isu(mpic, 4, r.start + 0x10400);
114         mpic_assign_isu(mpic, 5, r.start + 0x10480);
115         mpic_assign_isu(mpic, 6, r.start + 0x10500);
116         mpic_assign_isu(mpic, 7, r.start + 0x10580);
117
118         /* Unused on this platform (leave room for 8548) */
119         mpic_assign_isu(mpic, 8, r.start + 0x10600);
120         mpic_assign_isu(mpic, 9, r.start + 0x10680);
121         mpic_assign_isu(mpic, 10, r.start + 0x10700);
122         mpic_assign_isu(mpic, 11, r.start + 0x10780);
123
124         /* External Interrupts */
125         mpic_assign_isu(mpic, 12, r.start + 0x10000);
126         mpic_assign_isu(mpic, 13, r.start + 0x10080);
127         mpic_assign_isu(mpic, 14, r.start + 0x10100);
128
129         mpic_init(mpic);
130
131 #ifdef CONFIG_CPM2
132         /* Setup CPM2 PIC */
133         np = of_find_node_by_type(NULL, "cpm-pic");
134         if (np == NULL) {
135                 printk(KERN_ERR "PIC init: can not find cpm-pic node\n");
136                 return;
137         }
138         irq = irq_of_parse_and_map(np, 0);
139
140         cpm2_pic_init(np);
141         set_irq_chained_handler(irq, cpm2_cascade);
142 #endif
143 }
144
145 /*
146  * Setup the architecture
147  */
148 #ifdef CONFIG_CPM2
149 static void init_fcc_ioports(void)
150 {
151         struct immap *immap;
152         struct io_port *io;
153         u32 tempval;
154
155         immap = cpm2_immr;
156
157         io = &immap->im_ioport;
158         /* FCC2/3 are on the ports B/C. */
159         tempval = in_be32(&io->iop_pdirb);
160         tempval &= ~PB2_DIRB0;
161         tempval |= PB2_DIRB1;
162         out_be32(&io->iop_pdirb, tempval);
163
164         tempval = in_be32(&io->iop_psorb);
165         tempval &= ~PB2_PSORB0;
166         tempval |= PB2_PSORB1;
167         out_be32(&io->iop_psorb, tempval);
168
169         tempval = in_be32(&io->iop_pparb);
170         tempval |= (PB2_DIRB0 | PB2_DIRB1);
171         out_be32(&io->iop_pparb, tempval);
172
173         tempval = in_be32(&io->iop_pdirb);
174         tempval &= ~PB3_DIRB0;
175         tempval |= PB3_DIRB1;
176         out_be32(&io->iop_pdirb, tempval);
177
178         tempval = in_be32(&io->iop_psorb);
179         tempval &= ~PB3_PSORB0;
180         tempval |= PB3_PSORB1;
181         out_be32(&io->iop_psorb, tempval);
182
183         tempval = in_be32(&io->iop_pparb);
184         tempval |= (PB3_DIRB0 | PB3_DIRB1);
185         out_be32(&io->iop_pparb, tempval);
186
187         tempval = in_be32(&io->iop_pdirc);
188         tempval |= PC3_DIRC1;
189         out_be32(&io->iop_pdirc, tempval);
190
191         tempval = in_be32(&io->iop_pparc);
192         tempval |= PC3_DIRC1;
193         out_be32(&io->iop_pparc, tempval);
194
195         /* Port C has clocks......  */
196         tempval = in_be32(&io->iop_psorc);
197         tempval &= ~(CLK_TRX);
198         out_be32(&io->iop_psorc, tempval);
199
200         tempval = in_be32(&io->iop_pdirc);
201         tempval &= ~(CLK_TRX);
202         out_be32(&io->iop_pdirc, tempval);
203         tempval = in_be32(&io->iop_pparc);
204         tempval |= (CLK_TRX);
205         out_be32(&io->iop_pparc, tempval);
206
207         /* Configure Serial Interface clock routing.
208          * First,  clear all FCC bits to zero,
209          * then set the ones we want.
210          */
211         immap->im_cpmux.cmx_fcr &= ~(CPMUX_CLK_MASK);
212         immap->im_cpmux.cmx_fcr |= CPMUX_CLK_ROUTE;
213 }
214 #endif
215
216 static void __init mpc85xx_ads_setup_arch(void)
217 {
218         struct device_node *cpu;
219 #ifdef CONFIG_PCI
220         struct device_node *np;
221 #endif
222
223         if (ppc_md.progress)
224                 ppc_md.progress("mpc85xx_ads_setup_arch()", 0);
225
226         cpu = of_find_node_by_type(NULL, "cpu");
227         if (cpu != 0) {
228                 const unsigned int *fp;
229
230                 fp = get_property(cpu, "clock-frequency", NULL);
231                 if (fp != 0)
232                         loops_per_jiffy = *fp / HZ;
233                 else
234                         loops_per_jiffy = 50000000 / HZ;
235                 of_node_put(cpu);
236         }
237
238 #ifdef CONFIG_CPM2
239         cpm2_reset();
240         init_fcc_ioports();
241 #endif
242
243 #ifdef CONFIG_PCI
244         for (np = NULL; (np = of_find_node_by_type(np, "pci")) != NULL;)
245                 add_bridge(np);
246
247         ppc_md.pcibios_fixup = mpc85xx_pcibios_fixup;
248         ppc_md.pci_exclude_device = mpc85xx_exclude_device;
249 #endif
250
251 #ifdef  CONFIG_ROOT_NFS
252         ROOT_DEV = Root_NFS;
253 #else
254         ROOT_DEV = Root_HDA1;
255 #endif
256 }
257
258 void mpc85xx_ads_show_cpuinfo(struct seq_file *m)
259 {
260         uint pvid, svid, phid1;
261         uint memsize = total_memory;
262
263         pvid = mfspr(SPRN_PVR);
264         svid = mfspr(SPRN_SVR);
265
266         seq_printf(m, "Vendor\t\t: Freescale Semiconductor\n");
267         seq_printf(m, "Machine\t\t: mpc85xx\n");
268         seq_printf(m, "PVR\t\t: 0x%x\n", pvid);
269         seq_printf(m, "SVR\t\t: 0x%x\n", svid);
270
271         /* Display cpu Pll setting */
272         phid1 = mfspr(SPRN_HID1);
273         seq_printf(m, "PLL setting\t: 0x%x\n", ((phid1 >> 24) & 0x3f));
274
275         /* Display the amount of memory */
276         seq_printf(m, "Memory\t\t: %d MB\n", memsize / (1024 * 1024));
277 }
278
279 /*
280  * Called very early, device-tree isn't unflattened
281  */
282 static int __init mpc85xx_ads_probe(void)
283 {
284         /* We always match for now, eventually we should look at the flat
285            dev tree to ensure this is the board we are suppose to run on
286         */
287         return 1;
288 }
289
290 define_machine(mpc85xx_ads) {
291         .name                   = "MPC85xx ADS",
292         .probe                  = mpc85xx_ads_probe,
293         .setup_arch             = mpc85xx_ads_setup_arch,
294         .init_IRQ               = mpc85xx_ads_pic_init,
295         .show_cpuinfo           = mpc85xx_ads_show_cpuinfo,
296         .get_irq                = mpic_get_irq,
297         .restart                = mpc85xx_restart,
298         .calibrate_decr         = generic_calibrate_decr,
299         .progress               = udbg_progress,
300 };