1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17#include <linux/stddef.h>
18#include <linux/kernel.h>
19#include <linux/init.h>
20#include <linux/errno.h>
21#include <linux/reboot.h>
22#include <linux/pci.h>
23#include <linux/kdev_t.h>
24#include <linux/major.h>
25#include <linux/console.h>
26#include <linux/delay.h>
27#include <linux/seq_file.h>
28#include <linux/root_dev.h>
29#include <linux/serial.h>
30#include <linux/tty.h>
31#include <linux/serial_core.h>
32#include <linux/initrd.h>
33#include <linux/module.h>
34#include <linux/fsl_devices.h>
35
36#include <asm/system.h>
37#include <asm/pgtable.h>
38#include <asm/page.h>
39#include <asm/atomic.h>
40#include <asm/time.h>
41#include <asm/io.h>
42#include <asm/machdep.h>
43#include <asm/open_pic.h>
44#include <asm/bootinfo.h>
45#include <asm/pci-bridge.h>
46#include <asm/mpc85xx.h>
47#include <asm/irq.h>
48#include <asm/immap_85xx.h>
49#include <asm/kgdb.h>
50#include <asm/ppc_sys.h>
51#include <asm/cpm2.h>
52#include <mm/mmu_decl.h>
53
54#include <syslib/ppc85xx_setup.h>
55#include <syslib/cpm2_pic.h>
56#include <syslib/ppc85xx_common.h>
57#include <syslib/ppc85xx_rio.h>
58
59#ifndef CONFIG_PCI
60unsigned long isa_io_base = 0;
61unsigned long isa_mem_base = 0;
62#endif
63
64
65extern unsigned long total_memory;
66
67unsigned char __res[sizeof (bd_t)];
68
69
70static u_char tqm85xx_openpic_initsenses[] __initdata = {
71 MPC85XX_INTERNAL_IRQ_SENSES,
72 0x0,
73 0x0,
74#if defined(CONFIG_PCI)
75 (IRQ_SENSE_LEVEL | IRQ_POLARITY_NEGATIVE),
76 (IRQ_SENSE_LEVEL | IRQ_POLARITY_NEGATIVE),
77#else
78 0x0,
79 0x0,
80#endif
81 0x0,
82 0x0,
83 0x0,
84 0x0,
85 (IRQ_SENSE_LEVEL | IRQ_POLARITY_NEGATIVE),
86 0x0,
87 0x0,
88 0x0,
89};
90
91
92
93
94
95
96static void __init
97tqm85xx_setup_arch(void)
98{
99 bd_t *binfo = (bd_t *) __res;
100 unsigned int freq;
101 struct gianfar_platform_data *pdata;
102 struct gianfar_mdio_data *mdata;
103
104#ifdef CONFIG_MPC8560
105 cpm2_reset();
106#endif
107
108
109 freq = binfo->bi_intfreq;
110
111 if (ppc_md.progress)
112 ppc_md.progress("tqm85xx_setup_arch()", 0);
113
114
115
116 loops_per_jiffy = freq / HZ;
117
118#ifdef CONFIG_PCI
119
120 mpc85xx_setup_hose();
121#endif
122
123#ifndef CONFIG_MPC8560
124#if defined(CONFIG_SERIAL_8250)
125 mpc85xx_early_serial_map();
126#endif
127
128#ifdef CONFIG_SERIAL_TEXT_DEBUG
129
130
131 invalidate_tlbcam_entry(num_tlbcam_entries - 1);
132#endif
133#endif
134
135
136 mdata = (struct gianfar_mdio_data *) ppc_sys_get_pdata(MPC85xx_MDIO);
137
138 mdata->irq[0] = MPC85xx_IRQ_EXT8;
139 mdata->irq[1] = MPC85xx_IRQ_EXT8;
140 mdata->irq[2] = PHY_POLL;
141 mdata->irq[3] = MPC85xx_IRQ_EXT8;
142 mdata->irq[31] = PHY_POLL;
143
144
145 pdata = (struct gianfar_platform_data *) ppc_sys_get_pdata(MPC85xx_TSEC1);
146 if (pdata) {
147 pdata->board_flags = FSL_GIANFAR_BRD_HAS_PHY_INTR;
148 pdata->bus_id = 0;
149 pdata->phy_id = 2;
150 memcpy(pdata->mac_addr, binfo->bi_enetaddr, 6);
151 }
152
153 pdata = (struct gianfar_platform_data *) ppc_sys_get_pdata(MPC85xx_TSEC2);
154 if (pdata) {
155 pdata->board_flags = FSL_GIANFAR_BRD_HAS_PHY_INTR;
156 pdata->bus_id = 0;
157 pdata->phy_id = 1;
158 memcpy(pdata->mac_addr, binfo->bi_enet1addr, 6);
159 }
160
161#ifdef CONFIG_MPC8540
162 pdata = (struct gianfar_platform_data *) ppc_sys_get_pdata(MPC85xx_FEC);
163 if (pdata) {
164 pdata->board_flags = 0;
165 pdata->bus_id = 0;
166 pdata->phy_id = 3;
167 memcpy(pdata->mac_addr, binfo->bi_enet2addr, 6);
168 }
169#endif
170
171#ifdef CONFIG_BLK_DEV_INITRD
172 if (initrd_start)
173 ROOT_DEV = Root_RAM0;
174 else
175#endif
176#ifdef CONFIG_ROOT_NFS
177 ROOT_DEV = Root_NFS;
178#else
179 ROOT_DEV = Root_HDA1;
180#endif
181}
182
183#ifdef CONFIG_MPC8560
184static irqreturn_t cpm2_cascade(int irq, void *dev_id)
185{
186 while ((irq = cpm2_get_irq()) >= 0)
187 __do_IRQ(irq);
188 return IRQ_HANDLED;
189}
190
191static struct irqaction cpm2_irqaction = {
192 .handler = cpm2_cascade,
193 .flags = IRQF_DISABLED,
194 .mask = CPU_MASK_NONE,
195 .name = "cpm2_cascade",
196};
197#endif
198
199void __init
200tqm85xx_init_IRQ(void)
201{
202 bd_t *binfo = (bd_t *) __res;
203
204
205 phys_addr_t OpenPIC_PAddr =
206 binfo->bi_immr_base + MPC85xx_OPENPIC_OFFSET;
207 OpenPIC_Addr = ioremap(OpenPIC_PAddr, MPC85xx_OPENPIC_SIZE);
208 OpenPIC_InitSenses = tqm85xx_openpic_initsenses;
209 OpenPIC_NumInitSenses = sizeof (tqm85xx_openpic_initsenses);
210
211
212 openpic_set_sources(0, 32, OpenPIC_Addr + 0x10200);
213
214
215 openpic_set_sources(48, 12, OpenPIC_Addr + 0x10000);
216
217
218
219
220 openpic_init(MPC85xx_OPENPIC_IRQ_OFFSET);
221
222#ifdef CONFIG_MPC8560
223
224 cpm2_init_IRQ();
225
226 setup_irq(MPC85xx_IRQ_CPM, &cpm2_irqaction);
227#endif
228
229 return;
230}
231
232int tqm85xx_show_cpuinfo(struct seq_file *m)
233{
234 uint pvid, svid, phid1;
235 uint memsize = total_memory;
236 bd_t *binfo = (bd_t *) __res;
237 unsigned int freq;
238
239
240 freq = binfo->bi_intfreq;
241
242 pvid = mfspr(SPRN_PVR);
243 svid = mfspr(SPRN_SVR);
244
245 seq_printf(m, "Vendor\t\t: TQ Components\n");
246 seq_printf(m, "Machine\t\t: TQM%s\n", cur_ppc_sys_spec->ppc_sys_name);
247 seq_printf(m, "clock\t\t: %dMHz\n", freq / 1000000);
248 seq_printf(m, "PVR\t\t: 0x%x\n", pvid);
249 seq_printf(m, "SVR\t\t: 0x%x\n", svid);
250
251
252 phid1 = mfspr(SPRN_HID1);
253 seq_printf(m, "PLL setting\t: 0x%x\n", ((phid1 >> 24) & 0x3f));
254
255
256 seq_printf(m, "Memory\t\t: %d MB\n", memsize / (1024 * 1024));
257
258 return 0;
259}
260
261#if defined(CONFIG_I2C) && defined(CONFIG_SENSORS_DS1337)
262extern ulong ds1337_get_rtc_time(void);
263extern int ds1337_set_rtc_time(unsigned long nowtime);
264
265static int __init
266tqm85xx_rtc_hookup(void)
267{
268 struct timespec tv;
269
270 ppc_md.set_rtc_time = ds1337_set_rtc_time;
271 ppc_md.get_rtc_time = ds1337_get_rtc_time;
272
273 tv.tv_nsec = 0;
274 tv.tv_sec = (ppc_md.get_rtc_time)();
275 do_settimeofday(&tv);
276
277 return 0;
278}
279late_initcall(tqm85xx_rtc_hookup);
280#endif
281
282#ifdef CONFIG_PCI
283
284
285
286int mpc85xx_map_irq(struct pci_dev *dev, unsigned char idsel, unsigned char pin)
287{
288 static char pci_irq_table[][4] =
289
290
291
292
293 {
294 {PIRQA, PIRQB, 0, 0},
295 };
296
297 const long min_idsel = 0x1c, max_idsel = 0x1c, irqs_per_slot = 4;
298 return PCI_IRQ_TABLE_LOOKUP;
299}
300
301int mpc85xx_exclude_device(u_char bus, u_char devfn)
302{
303 if (bus == 0 && PCI_SLOT(devfn) == 0)
304 return PCIBIOS_DEVICE_NOT_FOUND;
305 else
306 return PCIBIOS_SUCCESSFUL;
307}
308
309#endif
310
311#ifdef CONFIG_RAPIDIO
312void platform_rio_init(void)
313{
314
315 mpc85xx_rio_setup(0xc0000000, 0x20000000);
316}
317#endif
318
319
320void __init
321platform_init(unsigned long r3, unsigned long r4, unsigned long r5,
322 unsigned long r6, unsigned long r7)
323{
324
325 parse_bootinfo(find_bootinfo());
326
327
328
329
330
331 if (r3) {
332 memcpy((void *) __res, (void *) (r3 + KERNELBASE),
333 sizeof (bd_t));
334 }
335
336#if defined(CONFIG_SERIAL_TEXT_DEBUG) && !defined(CONFIG_MPC8560)
337 {
338 bd_t *binfo = (bd_t *) __res;
339 struct uart_port p;
340
341
342 settlbcam(num_tlbcam_entries - 1, binfo->bi_immr_base,
343 binfo->bi_immr_base, MPC85xx_CCSRBAR_SIZE, _PAGE_IO, 0);
344
345 memset(&p, 0, sizeof (p));
346 p.iotype = UPIO_MEM;
347 p.membase = (void *) binfo->bi_immr_base + MPC85xx_UART0_OFFSET;
348 p.uartclk = binfo->bi_busfreq;
349
350 gen550_init(0, &p);
351
352 memset(&p, 0, sizeof (p));
353 p.iotype = UPIO_MEM;
354 p.membase = (void *) binfo->bi_immr_base + MPC85xx_UART1_OFFSET;
355 p.uartclk = binfo->bi_busfreq;
356
357 gen550_init(1, &p);
358 }
359#endif
360
361#if defined(CONFIG_BLK_DEV_INITRD)
362
363
364
365
366 if (r4) {
367 initrd_start = r4 + KERNELBASE;
368 initrd_end = r5 + KERNELBASE;
369 }
370#endif
371
372
373
374 if (r6) {
375 *(char *) (r7 + KERNELBASE) = 0;
376 strcpy(cmd_line, (char *) (r6 + KERNELBASE));
377 }
378
379 identify_ppc_sys_by_id(mfspr(SPRN_SVR));
380
381
382 ppc_md.setup_arch = tqm85xx_setup_arch;
383 ppc_md.show_cpuinfo = tqm85xx_show_cpuinfo;
384
385 ppc_md.init_IRQ = tqm85xx_init_IRQ;
386 ppc_md.get_irq = openpic_get_irq;
387
388 ppc_md.restart = mpc85xx_restart;
389 ppc_md.power_off = mpc85xx_power_off;
390 ppc_md.halt = mpc85xx_halt;
391
392 ppc_md.find_end_of_memory = mpc85xx_find_end_of_memory;
393
394 ppc_md.time_init = NULL;
395 ppc_md.set_rtc_time = NULL;
396 ppc_md.get_rtc_time = NULL;
397 ppc_md.calibrate_decr = mpc85xx_calibrate_decr;
398
399#ifndef CONFIG_MPC8560
400#if defined(CONFIG_SERIAL_8250) && defined(CONFIG_SERIAL_TEXT_DEBUG)
401 ppc_md.progress = gen550_progress;
402#endif
403#if defined(CONFIG_SERIAL_8250) && defined(CONFIG_KGDB)
404 ppc_md.early_serial_map = mpc85xx_early_serial_map;
405#endif
406#endif
407
408 if (ppc_md.progress)
409 ppc_md.progress("tqm85xx_init(): exit", 0);
410
411 return;
412}
413