2 * arch/ppc/platforms/85xx/tqm85xx.c
4 * TQM85xx (40/41/55/60) board specific routines
6 * Copyright (c) 2005 DENX Software Engineering
7 * Stefan Roese <sr@denx.de>
9 * Based on original work by
10 * Kumar Gala <galak@kernel.crashing.org>
11 * Copyright 2004 Freescale Semiconductor Inc.
13 * This program is free software; you can redistribute it and/or modify it
14 * under the terms of the GNU General Public License as published by the
15 * Free Software Foundation; either version 2 of the License, or (at your
16 * option) any later version.
19 #include <linux/config.h>
20 #include <linux/stddef.h>
21 #include <linux/kernel.h>
22 #include <linux/init.h>
23 #include <linux/errno.h>
24 #include <linux/reboot.h>
25 #include <linux/pci.h>
26 #include <linux/kdev_t.h>
27 #include <linux/major.h>
28 #include <linux/console.h>
29 #include <linux/delay.h>
30 #include <linux/seq_file.h>
31 #include <linux/root_dev.h>
32 #include <linux/serial.h>
33 #include <linux/tty.h> /* for linux/serial_core.h */
34 #include <linux/serial_core.h>
35 #include <linux/initrd.h>
36 #include <linux/module.h>
37 #include <linux/fsl_devices.h>
39 #include <asm/system.h>
40 #include <asm/pgtable.h>
42 #include <asm/atomic.h>
45 #include <asm/machdep.h>
46 #include <asm/open_pic.h>
47 #include <asm/bootinfo.h>
48 #include <asm/pci-bridge.h>
49 #include <asm/mpc85xx.h>
51 #include <asm/immap_85xx.h>
53 #include <asm/ppc_sys.h>
55 #include <mm/mmu_decl.h>
57 #include <syslib/ppc85xx_setup.h>
58 #include <syslib/cpm2_pic.h>
59 #include <syslib/ppc85xx_common.h>
60 #include <syslib/ppc85xx_rio.h>
63 unsigned long isa_io_base = 0;
64 unsigned long isa_mem_base = 0;
68 extern unsigned long total_memory; /* in mm/init */
70 unsigned char __res[sizeof (bd_t)];
72 /* Internal interrupts are all Level Sensitive, and Positive Polarity */
73 static u_char tqm85xx_openpic_initsenses[] __initdata = {
74 MPC85XX_INTERNAL_IRQ_SENSES,
75 0x0, /* External 0: */
76 0x0, /* External 1: */
77 #if defined(CONFIG_PCI)
78 (IRQ_SENSE_LEVEL | IRQ_POLARITY_NEGATIVE), /* External 2: PCI INTA */
79 (IRQ_SENSE_LEVEL | IRQ_POLARITY_NEGATIVE), /* External 3: PCI INTB */
81 0x0, /* External 2: */
82 0x0, /* External 3: */
84 0x0, /* External 4: */
85 0x0, /* External 5: */
86 0x0, /* External 6: */
87 0x0, /* External 7: */
88 (IRQ_SENSE_LEVEL | IRQ_POLARITY_NEGATIVE), /* External 8: PHY */
89 0x0, /* External 9: */
90 0x0, /* External 10: */
91 0x0, /* External 11: */
94 /* ************************************************************************
96 * Setup the architecture
100 tqm85xx_setup_arch(void)
102 bd_t *binfo = (bd_t *) __res;
104 struct gianfar_platform_data *pdata;
105 struct gianfar_mdio_data *mdata;
107 #ifdef CONFIG_MPC8560
111 /* get the core frequency */
112 freq = binfo->bi_intfreq;
115 ppc_md.progress("tqm85xx_setup_arch()", 0);
117 /* Set loops_per_jiffy to a half-way reasonable value,
118 for use until calibrate_delay gets called. */
119 loops_per_jiffy = freq / HZ;
122 /* setup PCI host bridges */
123 mpc85xx_setup_hose();
126 #ifndef CONFIG_MPC8560
127 #if defined(CONFIG_SERIAL_8250)
128 mpc85xx_early_serial_map();
131 #ifdef CONFIG_SERIAL_TEXT_DEBUG
132 /* Invalidate the entry we stole earlier the serial ports
133 * should be properly mapped */
134 invalidate_tlbcam_entry(num_tlbcam_entries - 1);
136 #endif /* CONFIG_MPC8560 */
138 /* setup the board related info for the MDIO bus */
139 mdata = (struct gianfar_mdio_data *) ppc_sys_get_pdata(MPC85xx_MDIO);
141 mdata->irq[0] = MPC85xx_IRQ_EXT8;
142 mdata->irq[1] = MPC85xx_IRQ_EXT8;
144 mdata->irq[3] = MPC85xx_IRQ_EXT8;
147 /* setup the board related information for the enet controllers */
148 pdata = (struct gianfar_platform_data *) ppc_sys_get_pdata(MPC85xx_TSEC1);
150 pdata->board_flags = FSL_GIANFAR_BRD_HAS_PHY_INTR;
153 memcpy(pdata->mac_addr, binfo->bi_enetaddr, 6);
156 pdata = (struct gianfar_platform_data *) ppc_sys_get_pdata(MPC85xx_TSEC2);
158 pdata->board_flags = FSL_GIANFAR_BRD_HAS_PHY_INTR;
161 memcpy(pdata->mac_addr, binfo->bi_enet1addr, 6);
164 #ifdef CONFIG_MPC8540
165 pdata = (struct gianfar_platform_data *) ppc_sys_get_pdata(MPC85xx_FEC);
167 pdata->board_flags = 0;
170 memcpy(pdata->mac_addr, binfo->bi_enet2addr, 6);
174 #ifdef CONFIG_BLK_DEV_INITRD
176 ROOT_DEV = Root_RAM0;
179 #ifdef CONFIG_ROOT_NFS
182 ROOT_DEV = Root_HDA1;
186 #ifdef CONFIG_MPC8560
187 static irqreturn_t cpm2_cascade(int irq, void *dev_id, struct pt_regs *regs)
189 while ((irq = cpm2_get_irq(regs)) >= 0)
194 static struct irqaction cpm2_irqaction = {
195 .handler = cpm2_cascade,
196 .flags = SA_INTERRUPT,
197 .mask = CPU_MASK_NONE,
198 .name = "cpm2_cascade",
200 #endif /* CONFIG_MPC8560 */
203 tqm85xx_init_IRQ(void)
205 bd_t *binfo = (bd_t *) __res;
207 /* Determine the Physical Address of the OpenPIC regs */
208 phys_addr_t OpenPIC_PAddr =
209 binfo->bi_immr_base + MPC85xx_OPENPIC_OFFSET;
210 OpenPIC_Addr = ioremap(OpenPIC_PAddr, MPC85xx_OPENPIC_SIZE);
211 OpenPIC_InitSenses = tqm85xx_openpic_initsenses;
212 OpenPIC_NumInitSenses = sizeof (tqm85xx_openpic_initsenses);
214 /* Skip reserved space and internal sources */
215 openpic_set_sources(0, 32, OpenPIC_Addr + 0x10200);
217 /* Map PIC IRQs 0-11 */
218 openpic_set_sources(48, 12, OpenPIC_Addr + 0x10000);
220 /* we let openpic interrupts starting from an offset, to
221 * leave space for cascading interrupts underneath.
223 openpic_init(MPC85xx_OPENPIC_IRQ_OFFSET);
225 #ifdef CONFIG_MPC8560
229 setup_irq(MPC85xx_IRQ_CPM, &cpm2_irqaction);
230 #endif /* CONFIG_MPC8560 */
235 int tqm85xx_show_cpuinfo(struct seq_file *m)
237 uint pvid, svid, phid1;
238 uint memsize = total_memory;
239 bd_t *binfo = (bd_t *) __res;
242 /* get the core frequency */
243 freq = binfo->bi_intfreq;
245 pvid = mfspr(SPRN_PVR);
246 svid = mfspr(SPRN_SVR);
248 seq_printf(m, "Vendor\t\t: TQ Components\n");
249 seq_printf(m, "Machine\t\t: TQM%s\n", cur_ppc_sys_spec->ppc_sys_name);
250 seq_printf(m, "clock\t\t: %dMHz\n", freq / 1000000);
251 seq_printf(m, "PVR\t\t: 0x%x\n", pvid);
252 seq_printf(m, "SVR\t\t: 0x%x\n", svid);
254 /* Display cpu Pll setting */
255 phid1 = mfspr(SPRN_HID1);
256 seq_printf(m, "PLL setting\t: 0x%x\n", ((phid1 >> 24) & 0x3f));
258 /* Display the amount of memory */
259 seq_printf(m, "Memory\t\t: %d MB\n", memsize / (1024 * 1024));
264 #if defined(CONFIG_I2C) && defined(CONFIG_SENSORS_DS1337)
265 extern ulong ds1337_get_rtc_time(void);
266 extern int ds1337_set_rtc_time(unsigned long nowtime);
269 tqm85xx_rtc_hookup(void)
273 ppc_md.set_rtc_time = ds1337_set_rtc_time;
274 ppc_md.get_rtc_time = ds1337_get_rtc_time;
277 tv.tv_sec = (ppc_md.get_rtc_time)();
278 do_settimeofday(&tv);
282 late_initcall(tqm85xx_rtc_hookup);
289 int mpc85xx_map_irq(struct pci_dev *dev, unsigned char idsel, unsigned char pin)
291 static char pci_irq_table[][4] =
293 * PCI IDSEL/INTPIN->INTLINE
297 {PIRQA, PIRQB, 0, 0},
300 const long min_idsel = 0x1c, max_idsel = 0x1c, irqs_per_slot = 4;
301 return PCI_IRQ_TABLE_LOOKUP;
304 int mpc85xx_exclude_device(u_char bus, u_char devfn)
306 if (bus == 0 && PCI_SLOT(devfn) == 0)
307 return PCIBIOS_DEVICE_NOT_FOUND;
309 return PCIBIOS_SUCCESSFUL;
312 #endif /* CONFIG_PCI */
314 #ifdef CONFIG_RAPIDIO
315 void platform_rio_init(void)
317 /* 512MB RIO LAW at 0xc0000000 */
318 mpc85xx_rio_setup(0xc0000000, 0x20000000);
320 #endif /* CONFIG_RAPIDIO */
322 /* ************************************************************************ */
324 platform_init(unsigned long r3, unsigned long r4, unsigned long r5,
325 unsigned long r6, unsigned long r7)
327 /* parse_bootinfo must always be called first */
328 parse_bootinfo(find_bootinfo());
331 * If we were passed in a board information, copy it into the
332 * residual data area.
335 memcpy((void *) __res, (void *) (r3 + KERNELBASE),
339 #if defined(CONFIG_SERIAL_TEXT_DEBUG) && !defined(CONFIG_MPC8560)
341 bd_t *binfo = (bd_t *) __res;
344 /* Use the last TLB entry to map CCSRBAR to allow access to DUART regs */
345 settlbcam(num_tlbcam_entries - 1, binfo->bi_immr_base,
346 binfo->bi_immr_base, MPC85xx_CCSRBAR_SIZE, _PAGE_IO, 0);
348 memset(&p, 0, sizeof (p));
349 p.iotype = SERIAL_IO_MEM;
350 p.membase = (void *) binfo->bi_immr_base + MPC85xx_UART0_OFFSET;
351 p.uartclk = binfo->bi_busfreq;
355 memset(&p, 0, sizeof (p));
356 p.iotype = SERIAL_IO_MEM;
357 p.membase = (void *) binfo->bi_immr_base + MPC85xx_UART1_OFFSET;
358 p.uartclk = binfo->bi_busfreq;
364 #if defined(CONFIG_BLK_DEV_INITRD)
366 * If the init RAM disk has been configured in, and there's a valid
367 * starting address for it, set it up.
370 initrd_start = r4 + KERNELBASE;
371 initrd_end = r5 + KERNELBASE;
373 #endif /* CONFIG_BLK_DEV_INITRD */
375 /* Copy the kernel command line arguments to a safe place. */
378 *(char *) (r7 + KERNELBASE) = 0;
379 strcpy(cmd_line, (char *) (r6 + KERNELBASE));
382 identify_ppc_sys_by_id(mfspr(SPRN_SVR));
384 /* setup the PowerPC module struct */
385 ppc_md.setup_arch = tqm85xx_setup_arch;
386 ppc_md.show_cpuinfo = tqm85xx_show_cpuinfo;
388 ppc_md.init_IRQ = tqm85xx_init_IRQ;
389 ppc_md.get_irq = openpic_get_irq;
391 ppc_md.restart = mpc85xx_restart;
392 ppc_md.power_off = mpc85xx_power_off;
393 ppc_md.halt = mpc85xx_halt;
395 ppc_md.find_end_of_memory = mpc85xx_find_end_of_memory;
397 ppc_md.time_init = NULL;
398 ppc_md.set_rtc_time = NULL;
399 ppc_md.get_rtc_time = NULL;
400 ppc_md.calibrate_decr = mpc85xx_calibrate_decr;
402 #ifndef CONFIG_MPC8560
403 #if defined(CONFIG_SERIAL_8250) && defined(CONFIG_SERIAL_TEXT_DEBUG)
404 ppc_md.progress = gen550_progress;
405 #endif /* CONFIG_SERIAL_8250 && CONFIG_SERIAL_TEXT_DEBUG */
406 #if defined(CONFIG_SERIAL_8250) && defined(CONFIG_KGDB)
407 ppc_md.early_serial_map = mpc85xx_early_serial_map;
408 #endif /* CONFIG_SERIAL_8250 && CONFIG_KGDB */
409 #endif /* CONFIG_MPC8560 */
412 ppc_md.progress("tqm85xx_init(): exit", 0);