m68knommu: simplify ColdFire "timers" clock initialization
[linux-2.6/linux-acpi-2.6/ibm-acpi-2.6.git] / arch / m68knommu / platform / 5407 / config.c
blobcc80029a4a00d754025e37c7dd0ef3381b055d73
1 /***************************************************************************/
3 /*
4 * linux/arch/m68knommu/platform/5407/config.c
6 * Copyright (C) 1999-2002, Greg Ungerer (gerg@snapgear.com)
7 * Copyright (C) 2000, Lineo (www.lineo.com)
8 */
10 /***************************************************************************/
12 #include <linux/kernel.h>
13 #include <linux/param.h>
14 #include <linux/init.h>
15 #include <linux/io.h>
16 #include <asm/machdep.h>
17 #include <asm/coldfire.h>
18 #include <asm/mcfsim.h>
19 #include <asm/mcfuart.h>
21 /***************************************************************************/
23 static struct mcf_platform_uart m5407_uart_platform[] = {
25 .mapbase = MCF_MBAR + MCFUART_BASE1,
26 .irq = 73,
29 .mapbase = MCF_MBAR + MCFUART_BASE2,
30 .irq = 74,
32 { },
35 static struct platform_device m5407_uart = {
36 .name = "mcfuart",
37 .id = 0,
38 .dev.platform_data = m5407_uart_platform,
41 static struct platform_device *m5407_devices[] __initdata = {
42 &m5407_uart,
45 /***************************************************************************/
47 static void __init m5407_uart_init_line(int line, int irq)
49 if (line == 0) {
50 writeb(MCFSIM_ICR_LEVEL6 | MCFSIM_ICR_PRI1, MCF_MBAR + MCFSIM_UART1ICR);
51 writeb(irq, MCF_MBAR + MCFUART_BASE1 + MCFUART_UIVR);
52 mcf_clrimr(MCFINTC_UART0);
53 } else if (line == 1) {
54 writeb(MCFSIM_ICR_LEVEL6 | MCFSIM_ICR_PRI2, MCF_MBAR + MCFSIM_UART2ICR);
55 writeb(irq, MCF_MBAR + MCFUART_BASE2 + MCFUART_UIVR);
56 mcf_setimr(mcf_getimr() & ~MCFSIM_IMR_UART2);
57 mcf_clrimr(MCFINTC_UART1);
61 static void __init m5407_uarts_init(void)
63 const int nrlines = ARRAY_SIZE(m5407_uart_platform);
64 int line;
66 for (line = 0; (line < nrlines); line++)
67 m5407_uart_init_line(line, m5407_uart_platform[line].irq);
70 /***************************************************************************/
72 static void __init m5407_timers_init(void)
74 /* Timer1 is always used as system timer */
75 writeb(MCFSIM_ICR_AUTOVEC | MCFSIM_ICR_LEVEL6 | MCFSIM_ICR_PRI3,
76 MCF_MBAR + MCFSIM_TIMER1ICR);
78 #ifdef CONFIG_HIGHPROFILE
79 /* Timer2 is to be used as a high speed profile timer */
80 writeb(MCFSIM_ICR_AUTOVEC | MCFSIM_ICR_LEVEL7 | MCFSIM_ICR_PRI3,
81 MCF_MBAR + MCFSIM_TIMER2ICR);
82 #endif
85 /***************************************************************************/
87 void m5407_cpu_reset(void)
89 local_irq_disable();
90 /* set watchdog to soft reset, and enabled */
91 __raw_writeb(0xc0, MCF_MBAR + MCFSIM_SYPCR);
92 for (;;)
93 /* wait for watchdog to timeout */;
96 /***************************************************************************/
98 void __init config_BSP(char *commandp, int size)
100 mach_reset = m5407_cpu_reset;
101 m5407_timers_init();
104 /***************************************************************************/
106 static int __init init_BSP(void)
108 m5407_uarts_init();
109 platform_add_devices(m5407_devices, ARRAY_SIZE(m5407_devices));
110 return 0;
113 arch_initcall(init_BSP);
115 /***************************************************************************/