blob: 1262d1b8a4427fa6b5e6985007ba93b172d64ad3 [file] [log] [blame]
Becky Bruce63dafe52006-01-14 16:57:39 -06001/*
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
Becky Bruce63dafe52006-01-14 16:57:39 -060014#include <linux/stddef.h>
15#include <linux/kernel.h>
Becky Bruce63dafe52006-01-14 16:57:39 -060016#include <linux/pci.h>
17#include <linux/kdev_t.h>
Becky Bruce63dafe52006-01-14 16:57:39 -060018#include <linux/delay.h>
Becky Bruce63dafe52006-01-14 16:57:39 -060019#include <linux/seq_file.h>
Becky Bruce63dafe52006-01-14 16:57:39 -060020
21#include <asm/system.h>
Becky Bruce63dafe52006-01-14 16:57:39 -060022#include <asm/time.h>
Becky Bruce63dafe52006-01-14 16:57:39 -060023#include <asm/machdep.h>
Becky Bruce63dafe52006-01-14 16:57:39 -060024#include <asm/pci-bridge.h>
25#include <asm/mpc85xx.h>
Becky Bruce63dafe52006-01-14 16:57:39 -060026#include <asm/prom.h>
27#include <asm/mpic.h>
28#include <mm/mmu_decl.h>
29#include <asm/udbg.h>
30
31#include <sysdev/fsl_soc.h>
32#include "mpc85xx.h"
33
Vitaly Bordug902f3922006-09-21 22:31:26 +040034#ifdef CONFIG_CPM2
Vitaly Bordugd3465c92006-09-21 22:38:05 +040035#include <linux/fs_enet_pd.h>
Vitaly Bordug902f3922006-09-21 22:31:26 +040036#include <asm/cpm2.h>
37#include <sysdev/cpm2_pic.h>
38#include <asm/fs_pd.h>
39#endif
40
Andy Fleming8080d542006-02-10 17:01:06 -060041#ifdef CONFIG_PCI
Kumar Gala7d52c7b2007-06-22 00:23:57 -050042static int mpc85xx_exclude_device(struct pci_controller *hose,
43 u_char bus, u_char devfn)
Andy Fleming8080d542006-02-10 17:01:06 -060044{
45 if (bus == 0 && PCI_SLOT(devfn) == 0)
46 return PCIBIOS_DEVICE_NOT_FOUND;
47 else
48 return PCIBIOS_SUCCESSFUL;
49}
Andy Fleming8080d542006-02-10 17:01:06 -060050#endif /* CONFIG_PCI */
51
Vitaly Bordug902f3922006-09-21 22:31:26 +040052#ifdef CONFIG_CPM2
53
Olaf Hering35a84c22006-10-07 22:08:26 +100054static void cpm2_cascade(unsigned int irq, struct irq_desc *desc)
Vitaly Bordug902f3922006-09-21 22:31:26 +040055{
56 int cascade_irq;
57
Olaf Hering35a84c22006-10-07 22:08:26 +100058 while ((cascade_irq = cpm2_get_irq()) >= 0) {
Olof Johansson49f19ce2006-10-05 20:31:10 -050059 generic_handle_irq(cascade_irq);
Vitaly Bordug902f3922006-09-21 22:31:26 +040060 }
61 desc->chip->eoi(irq);
62}
63
64#endif /* CONFIG_CPM2 */
Andy Fleming8080d542006-02-10 17:01:06 -060065
Kumar Gala27630be2007-02-09 09:30:45 -060066static void __init mpc85xx_ads_pic_init(void)
Becky Bruce63dafe52006-01-14 16:57:39 -060067{
Andy Fleming4c86cd92006-08-18 18:03:08 -050068 struct mpic *mpic;
69 struct resource r;
70 struct device_node *np = NULL;
Vitaly Bordug902f3922006-09-21 22:31:26 +040071#ifdef CONFIG_CPM2
72 int irq;
73#endif
Becky Bruce63dafe52006-01-14 16:57:39 -060074
Andy Fleming4c86cd92006-08-18 18:03:08 -050075 np = of_find_node_by_type(np, "open-pic");
Becky Bruce63dafe52006-01-14 16:57:39 -060076
Andy Fleming4c86cd92006-08-18 18:03:08 -050077 if (np == NULL) {
78 printk(KERN_ERR "Could not find open-pic node\n");
79 return;
80 }
Becky Bruce63dafe52006-01-14 16:57:39 -060081
Andy Fleming4c86cd92006-08-18 18:03:08 -050082 if(of_address_to_resource(np, 0, &r)) {
83 printk(KERN_ERR "Could not map mpic register space\n");
84 of_node_put(np);
85 return;
86 }
Becky Bruce63dafe52006-01-14 16:57:39 -060087
Andy Fleming4c86cd92006-08-18 18:03:08 -050088 mpic = mpic_alloc(np, r.start,
89 MPIC_PRIMARY | MPIC_WANTS_RESET | MPIC_BIG_ENDIAN,
90 4, 0, " OpenPIC ");
91 BUG_ON(mpic == NULL);
92 of_node_put(np);
93
94 mpic_assign_isu(mpic, 0, r.start + 0x10200);
95 mpic_assign_isu(mpic, 1, r.start + 0x10280);
96 mpic_assign_isu(mpic, 2, r.start + 0x10300);
97 mpic_assign_isu(mpic, 3, r.start + 0x10380);
98 mpic_assign_isu(mpic, 4, r.start + 0x10400);
99 mpic_assign_isu(mpic, 5, r.start + 0x10480);
100 mpic_assign_isu(mpic, 6, r.start + 0x10500);
101 mpic_assign_isu(mpic, 7, r.start + 0x10580);
102
103 /* Unused on this platform (leave room for 8548) */
104 mpic_assign_isu(mpic, 8, r.start + 0x10600);
105 mpic_assign_isu(mpic, 9, r.start + 0x10680);
106 mpic_assign_isu(mpic, 10, r.start + 0x10700);
107 mpic_assign_isu(mpic, 11, r.start + 0x10780);
108
109 /* External Interrupts */
110 mpic_assign_isu(mpic, 12, r.start + 0x10000);
111 mpic_assign_isu(mpic, 13, r.start + 0x10080);
112 mpic_assign_isu(mpic, 14, r.start + 0x10100);
113
114 mpic_init(mpic);
Vitaly Bordug902f3922006-09-21 22:31:26 +0400115
116#ifdef CONFIG_CPM2
117 /* Setup CPM2 PIC */
118 np = of_find_node_by_type(NULL, "cpm-pic");
119 if (np == NULL) {
120 printk(KERN_ERR "PIC init: can not find cpm-pic node\n");
121 return;
122 }
123 irq = irq_of_parse_and_map(np, 0);
124
125 cpm2_pic_init(np);
126 set_irq_chained_handler(irq, cpm2_cascade);
127#endif
Becky Bruce63dafe52006-01-14 16:57:39 -0600128}
129
Becky Bruce63dafe52006-01-14 16:57:39 -0600130/*
131 * Setup the architecture
132 */
Vitaly Bordug902f3922006-09-21 22:31:26 +0400133#ifdef CONFIG_CPM2
Vitaly Bordugd3465c92006-09-21 22:38:05 +0400134void init_fcc_ioports(struct fs_platform_info *fpi)
Vitaly Bordug902f3922006-09-21 22:31:26 +0400135{
Vitaly Bordugd3465c92006-09-21 22:38:05 +0400136 struct io_port *io = cpm2_map(im_ioport);
137 int fcc_no = fs_get_fcc_index(fpi->fs_no);
138 int target;
Vitaly Bordug902f3922006-09-21 22:31:26 +0400139 u32 tempval;
140
Vitaly Bordugd3465c92006-09-21 22:38:05 +0400141 switch(fcc_no) {
142 case 1:
143 tempval = in_be32(&io->iop_pdirb);
144 tempval &= ~PB2_DIRB0;
145 tempval |= PB2_DIRB1;
146 out_be32(&io->iop_pdirb, tempval);
Vitaly Bordug902f3922006-09-21 22:31:26 +0400147
Vitaly Bordugd3465c92006-09-21 22:38:05 +0400148 tempval = in_be32(&io->iop_psorb);
149 tempval &= ~PB2_PSORB0;
150 tempval |= PB2_PSORB1;
151 out_be32(&io->iop_psorb, tempval);
Vitaly Bordug902f3922006-09-21 22:31:26 +0400152
Vitaly Bordugd3465c92006-09-21 22:38:05 +0400153 tempval = in_be32(&io->iop_pparb);
154 tempval |= (PB2_DIRB0 | PB2_DIRB1);
155 out_be32(&io->iop_pparb, tempval);
Vitaly Bordug902f3922006-09-21 22:31:26 +0400156
Vitaly Bordugd3465c92006-09-21 22:38:05 +0400157 target = CPM_CLK_FCC2;
158 break;
159 case 2:
160 tempval = in_be32(&io->iop_pdirb);
161 tempval &= ~PB3_DIRB0;
162 tempval |= PB3_DIRB1;
163 out_be32(&io->iop_pdirb, tempval);
Vitaly Bordug902f3922006-09-21 22:31:26 +0400164
Vitaly Bordugd3465c92006-09-21 22:38:05 +0400165 tempval = in_be32(&io->iop_psorb);
166 tempval &= ~PB3_PSORB0;
167 tempval |= PB3_PSORB1;
168 out_be32(&io->iop_psorb, tempval);
Vitaly Bordug902f3922006-09-21 22:31:26 +0400169
Vitaly Bordugd3465c92006-09-21 22:38:05 +0400170 tempval = in_be32(&io->iop_pparb);
171 tempval |= (PB3_DIRB0 | PB3_DIRB1);
172 out_be32(&io->iop_pparb, tempval);
Vitaly Bordug902f3922006-09-21 22:31:26 +0400173
Vitaly Bordugd3465c92006-09-21 22:38:05 +0400174 tempval = in_be32(&io->iop_pdirc);
175 tempval |= PC3_DIRC1;
176 out_be32(&io->iop_pdirc, tempval);
Vitaly Bordug902f3922006-09-21 22:31:26 +0400177
Vitaly Bordugd3465c92006-09-21 22:38:05 +0400178 tempval = in_be32(&io->iop_pparc);
179 tempval |= PC3_DIRC1;
180 out_be32(&io->iop_pparc, tempval);
Vitaly Bordug902f3922006-09-21 22:31:26 +0400181
Vitaly Bordugd3465c92006-09-21 22:38:05 +0400182 target = CPM_CLK_FCC3;
183 break;
184 default:
185 printk(KERN_ERR "init_fcc_ioports: invalid FCC number\n");
186 return;
187 }
Vitaly Bordug902f3922006-09-21 22:31:26 +0400188
189 /* Port C has clocks...... */
190 tempval = in_be32(&io->iop_psorc);
Vitaly Bordugd3465c92006-09-21 22:38:05 +0400191 tempval &= ~(PC_CLK(fpi->clk_rx - 8) | PC_CLK(fpi->clk_tx - 8));
Vitaly Bordug902f3922006-09-21 22:31:26 +0400192 out_be32(&io->iop_psorc, tempval);
193
194 tempval = in_be32(&io->iop_pdirc);
Vitaly Bordugd3465c92006-09-21 22:38:05 +0400195 tempval &= ~(PC_CLK(fpi->clk_rx - 8) | PC_CLK(fpi->clk_tx - 8));
Vitaly Bordug902f3922006-09-21 22:31:26 +0400196 out_be32(&io->iop_pdirc, tempval);
197 tempval = in_be32(&io->iop_pparc);
Vitaly Bordugd3465c92006-09-21 22:38:05 +0400198 tempval |= (PC_CLK(fpi->clk_rx - 8) | PC_CLK(fpi->clk_tx - 8));
Vitaly Bordug902f3922006-09-21 22:31:26 +0400199 out_be32(&io->iop_pparc, tempval);
200
Vitaly Bordugd3465c92006-09-21 22:38:05 +0400201 cpm2_unmap(io);
202
Vitaly Bordug902f3922006-09-21 22:31:26 +0400203 /* Configure Serial Interface clock routing.
Vitaly Bordugd3465c92006-09-21 22:38:05 +0400204 * First, clear FCC bits to zero,
Vitaly Bordug902f3922006-09-21 22:31:26 +0400205 * then set the ones we want.
206 */
Vitaly Bordugd3465c92006-09-21 22:38:05 +0400207 cpm2_clk_setup(target, fpi->clk_rx, CPM_CLK_RX);
208 cpm2_clk_setup(target, fpi->clk_tx, CPM_CLK_TX);
Vitaly Bordug902f3922006-09-21 22:31:26 +0400209}
210#endif
211
Becky Brucefbc94e72006-02-07 21:29:42 -0600212static void __init mpc85xx_ads_setup_arch(void)
Becky Bruce63dafe52006-01-14 16:57:39 -0600213{
214 struct device_node *cpu;
Andy Fleming4c86cd92006-08-18 18:03:08 -0500215#ifdef CONFIG_PCI
Andy Fleming8080d542006-02-10 17:01:06 -0600216 struct device_node *np;
Andy Fleming4c86cd92006-08-18 18:03:08 -0500217#endif
Becky Bruce63dafe52006-01-14 16:57:39 -0600218
219 if (ppc_md.progress)
220 ppc_md.progress("mpc85xx_ads_setup_arch()", 0);
221
222 cpu = of_find_node_by_type(NULL, "cpu");
223 if (cpu != 0) {
Jeremy Kerr8efca492006-07-12 15:39:42 +1000224 const unsigned int *fp;
Becky Bruce63dafe52006-01-14 16:57:39 -0600225
Stephen Rothwelle2eb6392007-04-03 22:26:41 +1000226 fp = of_get_property(cpu, "clock-frequency", NULL);
Becky Bruce63dafe52006-01-14 16:57:39 -0600227 if (fp != 0)
228 loops_per_jiffy = *fp / HZ;
229 else
230 loops_per_jiffy = 50000000 / HZ;
231 of_node_put(cpu);
232 }
Andy Fleming8080d542006-02-10 17:01:06 -0600233
Vitaly Bordug902f3922006-09-21 22:31:26 +0400234#ifdef CONFIG_CPM2
235 cpm2_reset();
Vitaly Bordug902f3922006-09-21 22:31:26 +0400236#endif
237
Andy Fleming8080d542006-02-10 17:01:06 -0600238#ifdef CONFIG_PCI
239 for (np = NULL; (np = of_find_node_by_type(np, "pci")) != NULL;)
Arnd Bergmann09b55f72007-06-18 01:06:54 +0200240 mpc85xx_add_bridge(np);
Andy Fleming8080d542006-02-10 17:01:06 -0600241 ppc_md.pci_exclude_device = mpc85xx_exclude_device;
242#endif
Becky Bruce63dafe52006-01-14 16:57:39 -0600243}
244
Kumar Gala27630be2007-02-09 09:30:45 -0600245static void mpc85xx_ads_show_cpuinfo(struct seq_file *m)
Becky Bruce63dafe52006-01-14 16:57:39 -0600246{
247 uint pvid, svid, phid1;
248 uint memsize = total_memory;
249
250 pvid = mfspr(SPRN_PVR);
251 svid = mfspr(SPRN_SVR);
252
253 seq_printf(m, "Vendor\t\t: Freescale Semiconductor\n");
254 seq_printf(m, "Machine\t\t: mpc85xx\n");
255 seq_printf(m, "PVR\t\t: 0x%x\n", pvid);
256 seq_printf(m, "SVR\t\t: 0x%x\n", svid);
257
258 /* Display cpu Pll setting */
259 phid1 = mfspr(SPRN_HID1);
260 seq_printf(m, "PLL setting\t: 0x%x\n", ((phid1 >> 24) & 0x3f));
261
262 /* Display the amount of memory */
263 seq_printf(m, "Memory\t\t: %d MB\n", memsize / (1024 * 1024));
264}
265
Kumar Gala72d2c3e2006-03-30 23:39:57 -0600266/*
267 * Called very early, device-tree isn't unflattened
268 */
269static int __init mpc85xx_ads_probe(void)
Becky Bruce63dafe52006-01-14 16:57:39 -0600270{
Kumar Gala6936c622007-02-17 16:19:34 -0600271 unsigned long root = of_get_flat_dt_root();
272
273 return of_flat_dt_is_compatible(root, "MPC85xxADS");
Becky Bruce63dafe52006-01-14 16:57:39 -0600274}
Kumar Gala72d2c3e2006-03-30 23:39:57 -0600275
276define_machine(mpc85xx_ads) {
277 .name = "MPC85xx ADS",
278 .probe = mpc85xx_ads_probe,
279 .setup_arch = mpc85xx_ads_setup_arch,
280 .init_IRQ = mpc85xx_ads_pic_init,
281 .show_cpuinfo = mpc85xx_ads_show_cpuinfo,
282 .get_irq = mpic_get_irq,
283 .restart = mpc85xx_restart,
284 .calibrate_decr = generic_calibrate_decr,
285 .progress = udbg_progress,
286};