blob: 7826b70b1741a04866838e6ad93d1ea5dc97c44a [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/***************************************************************************/
2
3/*
4 * linux/arch/m68knommu/platform/5206/config.c
5 *
6 * Copyright (C) 1999-2002, Greg Ungerer (gerg@snapgear.com)
7 * Copyright (C) 2000-2001, Lineo Inc. (www.lineo.com)
8 */
9
10/***************************************************************************/
11
Linus Torvalds1da177e2005-04-16 15:20:36 -070012#include <linux/kernel.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070013#include <linux/param.h>
14#include <linux/init.h>
Greg Ungerer9685c432008-02-01 17:34:04 +100015#include <linux/io.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070016#include <asm/machdep.h>
17#include <asm/coldfire.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070018#include <asm/mcfsim.h>
Greg Ungerer9685c432008-02-01 17:34:04 +100019#include <asm/mcfuart.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070020
21/***************************************************************************/
22
Greg Ungerer9685c432008-02-01 17:34:04 +100023static struct mcf_platform_uart m5206_uart_platform[] = {
24 {
25 .mapbase = MCF_MBAR + MCFUART_BASE1,
26 .irq = 73,
27 },
28 {
29 .mapbase = MCF_MBAR + MCFUART_BASE2,
30 .irq = 74,
31 },
32 { },
Linus Torvalds1da177e2005-04-16 15:20:36 -070033};
34
Greg Ungerer9685c432008-02-01 17:34:04 +100035static struct platform_device m5206_uart = {
36 .name = "mcfuart",
37 .id = 0,
38 .dev.platform_data = m5206_uart_platform,
39};
40
41static struct platform_device *m5206_devices[] __initdata = {
42 &m5206_uart,
43};
44
45/***************************************************************************/
46
47static void __init m5206_uart_init_line(int line, int irq)
48{
49 if (line == 0) {
50 writel(MCFSIM_ICR_LEVEL6 | MCFSIM_ICR_PRI1, MCF_MBAR + MCFSIM_UART1ICR);
51 writeb(irq, MCFUART_BASE1 + MCFUART_UIVR);
Greg Ungerer39f0fb62009-05-22 13:33:35 +100052 mcf_mapirq2imr(irq, MCFINTC_UART0);
Greg Ungerer9685c432008-02-01 17:34:04 +100053 } else if (line == 1) {
54 writel(MCFSIM_ICR_LEVEL6 | MCFSIM_ICR_PRI2, MCF_MBAR + MCFSIM_UART2ICR);
55 writeb(irq, MCFUART_BASE2 + MCFUART_UIVR);
Greg Ungerer39f0fb62009-05-22 13:33:35 +100056 mcf_mapirq2imr(irq, MCFINTC_UART1);
Greg Ungerer9685c432008-02-01 17:34:04 +100057 }
58}
59
60static void __init m5206_uarts_init(void)
61{
62 const int nrlines = ARRAY_SIZE(m5206_uart_platform);
63 int line;
64
65 for (line = 0; (line < nrlines); line++)
66 m5206_uart_init_line(line, m5206_uart_platform[line].irq);
67}
Linus Torvalds1da177e2005-04-16 15:20:36 -070068
69/***************************************************************************/
70
Greg Ungerer04b75b12009-05-19 14:52:40 +100071static void __init m5206_timers_init(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -070072{
Greg Ungerer04b75b12009-05-19 14:52:40 +100073 /* Timer1 is always used as system timer */
74 writeb(MCFSIM_ICR_AUTOVEC | MCFSIM_ICR_LEVEL6 | MCFSIM_ICR_PRI3,
75 MCF_MBAR + MCFSIM_TIMER1ICR);
Greg Ungerer39f0fb62009-05-22 13:33:35 +100076 mcf_mapirq2imr(MCF_IRQ_TIMER, MCFINTC_TIMER1);
Linus Torvalds1da177e2005-04-16 15:20:36 -070077
Greg Ungerer04b75b12009-05-19 14:52:40 +100078#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);
Greg Ungerer39f0fb62009-05-22 13:33:35 +100082 mcf_mapirq2imr(MCF_IRQ_PROFILER, MCFINTC_TIMER2);
Greg Ungerer04b75b12009-05-19 14:52:40 +100083#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -070084}
85
86/***************************************************************************/
87
Greg Ungerer851377b2009-04-30 17:22:05 +100088void m5206_cpu_reset(void)
89{
90 local_irq_disable();
91 /* Set watchdog to soft reset, and enabled */
92 __raw_writeb(0xc0, MCF_MBAR + MCFSIM_SYPCR);
93 for (;;)
94 /* wait for watchdog to timeout */;
95}
96
97/***************************************************************************/
98
Greg Ungerer9685c432008-02-01 17:34:04 +100099void __init config_BSP(char *commandp, int size)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700100{
Greg Ungererf4a54372011-06-06 13:33:11 +1000101#if defined(CONFIG_NETtel)
102 /* Copy command line from FLASH to local buffer... */
103 memcpy(commandp, (char *) 0xf0004000, size);
104 commandp[size-1] = 0;
105#endif /* CONFIG_NETtel */
106
Greg Ungerer851377b2009-04-30 17:22:05 +1000107 mach_reset = m5206_cpu_reset;
Greg Ungerer35aefb22012-01-23 15:34:58 +1000108 mach_sched_init = hw_timer_init;
Greg Ungerer04b75b12009-05-19 14:52:40 +1000109 m5206_timers_init();
Greg Ungerer39f0fb62009-05-22 13:33:35 +1000110 m5206_uarts_init();
111
112 /* Only support the external interrupts on their primary level */
113 mcf_mapirq2imr(25, MCFINTC_EINT1);
114 mcf_mapirq2imr(28, MCFINTC_EINT4);
115 mcf_mapirq2imr(31, MCFINTC_EINT7);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700116}
117
118/***************************************************************************/
Greg Ungerer9685c432008-02-01 17:34:04 +1000119
120static int __init init_BSP(void)
121{
Greg Ungerer9685c432008-02-01 17:34:04 +1000122 platform_add_devices(m5206_devices, ARRAY_SIZE(m5206_devices));
123 return 0;
124}
125
126arch_initcall(init_BSP);
127
128/***************************************************************************/