blob: ceb31e5744a6f0c63dbe9429612a5d0d8847c44a [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/***************************************************************************/
2
3/*
4 * linux/arch/m68knommu/platform/5249/config.c
5 *
6 * Copyright (C) 2002, Greg Ungerer (gerg@snapgear.com)
7 */
8
9/***************************************************************************/
10
Linus Torvalds1da177e2005-04-16 15:20:36 -070011#include <linux/kernel.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070012#include <linux/param.h>
13#include <linux/init.h>
Greg Ungerer5f84bd52008-02-01 17:34:30 +100014#include <linux/io.h>
Steven King91d60412010-01-22 12:43:03 -080015#include <linux/spi/spi.h>
16#include <linux/gpio.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070017#include <asm/machdep.h>
18#include <asm/coldfire.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070019#include <asm/mcfsim.h>
Greg Ungerer5f84bd52008-02-01 17:34:30 +100020#include <asm/mcfuart.h>
Steven King91d60412010-01-22 12:43:03 -080021#include <asm/mcfqspi.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070022
23/***************************************************************************/
24
Greg Ungerer5f84bd52008-02-01 17:34:30 +100025static struct mcf_platform_uart m5249_uart_platform[] = {
26 {
27 .mapbase = MCF_MBAR + MCFUART_BASE1,
28 .irq = 73,
29 },
30 {
31 .mapbase = MCF_MBAR + MCFUART_BASE2,
32 .irq = 74,
Greg Ungerer4ce2cba2009-03-24 15:15:14 +100033 },
34 { },
Linus Torvalds1da177e2005-04-16 15:20:36 -070035};
36
Greg Ungerer5f84bd52008-02-01 17:34:30 +100037static struct platform_device m5249_uart = {
38 .name = "mcfuart",
39 .id = 0,
40 .dev.platform_data = m5249_uart_platform,
41};
42
Greg Ungerer4a1479b2009-06-12 16:17:20 +100043#ifdef CONFIG_M5249C3
44
45static struct resource m5249_smc91x_resources[] = {
46 {
47 .start = 0xe0000300,
48 .end = 0xe0000300 + 0x100,
49 .flags = IORESOURCE_MEM,
50 },
51 {
52 .start = MCFINTC2_GPIOIRQ6,
53 .end = MCFINTC2_GPIOIRQ6,
54 .flags = IORESOURCE_IRQ,
55 },
56};
57
58static struct platform_device m5249_smc91x = {
59 .name = "smc91x",
60 .id = 0,
61 .num_resources = ARRAY_SIZE(m5249_smc91x_resources),
62 .resource = m5249_smc91x_resources,
63};
64
65#endif /* CONFIG_M5249C3 */
66
Steven King91d60412010-01-22 12:43:03 -080067#if defined(CONFIG_SPI_COLDFIRE_QSPI) || defined(CONFIG_SPI_COLDFIRE_QSPI_MODULE)
68static struct resource m5249_qspi_resources[] = {
69 {
70 .start = MCFQSPI_IOBASE,
71 .end = MCFQSPI_IOBASE + MCFQSPI_IOSIZE - 1,
72 .flags = IORESOURCE_MEM,
73 },
74 {
75 .start = MCF_IRQ_QSPI,
76 .end = MCF_IRQ_QSPI,
77 .flags = IORESOURCE_IRQ,
78 },
79};
80
81#define MCFQSPI_CS0 29
82#define MCFQSPI_CS1 24
83#define MCFQSPI_CS2 21
84#define MCFQSPI_CS3 22
85
86static int m5249_cs_setup(struct mcfqspi_cs_control *cs_control)
87{
88 int status;
89
90 status = gpio_request(MCFQSPI_CS0, "MCFQSPI_CS0");
91 if (status) {
92 pr_debug("gpio_request for MCFQSPI_CS0 failed\n");
93 goto fail0;
94 }
95 status = gpio_direction_output(MCFQSPI_CS0, 1);
96 if (status) {
97 pr_debug("gpio_direction_output for MCFQSPI_CS0 failed\n");
98 goto fail1;
99 }
100
101 status = gpio_request(MCFQSPI_CS1, "MCFQSPI_CS1");
102 if (status) {
103 pr_debug("gpio_request for MCFQSPI_CS1 failed\n");
104 goto fail1;
105 }
106 status = gpio_direction_output(MCFQSPI_CS1, 1);
107 if (status) {
108 pr_debug("gpio_direction_output for MCFQSPI_CS1 failed\n");
109 goto fail2;
110 }
111
112 status = gpio_request(MCFQSPI_CS2, "MCFQSPI_CS2");
113 if (status) {
114 pr_debug("gpio_request for MCFQSPI_CS2 failed\n");
115 goto fail2;
116 }
117 status = gpio_direction_output(MCFQSPI_CS2, 1);
118 if (status) {
119 pr_debug("gpio_direction_output for MCFQSPI_CS2 failed\n");
120 goto fail3;
121 }
122
123 status = gpio_request(MCFQSPI_CS3, "MCFQSPI_CS3");
124 if (status) {
125 pr_debug("gpio_request for MCFQSPI_CS3 failed\n");
126 goto fail3;
127 }
128 status = gpio_direction_output(MCFQSPI_CS3, 1);
129 if (status) {
130 pr_debug("gpio_direction_output for MCFQSPI_CS3 failed\n");
131 goto fail4;
132 }
133
134 return 0;
135
136fail4:
137 gpio_free(MCFQSPI_CS3);
138fail3:
139 gpio_free(MCFQSPI_CS2);
140fail2:
141 gpio_free(MCFQSPI_CS1);
142fail1:
143 gpio_free(MCFQSPI_CS0);
144fail0:
145 return status;
146}
147
148static void m5249_cs_teardown(struct mcfqspi_cs_control *cs_control)
149{
150 gpio_free(MCFQSPI_CS3);
151 gpio_free(MCFQSPI_CS2);
152 gpio_free(MCFQSPI_CS1);
153 gpio_free(MCFQSPI_CS0);
154}
155
156static void m5249_cs_select(struct mcfqspi_cs_control *cs_control,
157 u8 chip_select, bool cs_high)
158{
159 switch (chip_select) {
160 case 0:
161 gpio_set_value(MCFQSPI_CS0, cs_high);
162 break;
163 case 1:
164 gpio_set_value(MCFQSPI_CS1, cs_high);
165 break;
166 case 2:
167 gpio_set_value(MCFQSPI_CS2, cs_high);
168 break;
169 case 3:
170 gpio_set_value(MCFQSPI_CS3, cs_high);
171 break;
172 }
173}
174
175static void m5249_cs_deselect(struct mcfqspi_cs_control *cs_control,
176 u8 chip_select, bool cs_high)
177{
178 switch (chip_select) {
179 case 0:
180 gpio_set_value(MCFQSPI_CS0, !cs_high);
181 break;
182 case 1:
183 gpio_set_value(MCFQSPI_CS1, !cs_high);
184 break;
185 case 2:
186 gpio_set_value(MCFQSPI_CS2, !cs_high);
187 break;
188 case 3:
189 gpio_set_value(MCFQSPI_CS3, !cs_high);
190 break;
191 }
192}
193
194static struct mcfqspi_cs_control m5249_cs_control = {
195 .setup = m5249_cs_setup,
196 .teardown = m5249_cs_teardown,
197 .select = m5249_cs_select,
198 .deselect = m5249_cs_deselect,
199};
200
201static struct mcfqspi_platform_data m5249_qspi_data = {
202 .bus_num = 0,
203 .num_chipselect = 4,
204 .cs_control = &m5249_cs_control,
205};
206
207static struct platform_device m5249_qspi = {
208 .name = "mcfqspi",
209 .id = 0,
210 .num_resources = ARRAY_SIZE(m5249_qspi_resources),
211 .resource = m5249_qspi_resources,
212 .dev.platform_data = &m5249_qspi_data,
213};
214
215static void __init m5249_qspi_init(void)
216{
217 /* QSPI irq setup */
218 writeb(MCFSIM_ICR_AUTOVEC | MCFSIM_ICR_LEVEL4 | MCFSIM_ICR_PRI0,
219 MCF_MBAR + MCFSIM_QSPIICR);
220 mcf_mapirq2imr(MCF_IRQ_QSPI, MCFINTC_QSPI);
221}
222#endif /* defined(CONFIG_SPI_COLDFIRE_QSPI) || defined(CONFIG_SPI_COLDFIRE_QSPI_MODULE) */
223
224
Greg Ungerer5f84bd52008-02-01 17:34:30 +1000225static struct platform_device *m5249_devices[] __initdata = {
226 &m5249_uart,
Greg Ungerer4a1479b2009-06-12 16:17:20 +1000227#ifdef CONFIG_M5249C3
228 &m5249_smc91x,
229#endif
Steven King91d60412010-01-22 12:43:03 -0800230#if defined(CONFIG_SPI_COLDFIRE_QSPI) || defined(CONFIG_SPI_COLDFIRE_QSPI_MODULE)
231 &m5249_qspi,
232#endif
Greg Ungerer5f84bd52008-02-01 17:34:30 +1000233};
234
235/***************************************************************************/
236
237static void __init m5249_uart_init_line(int line, int irq)
238{
239 if (line == 0) {
Greg Ungererde1fc5c2009-03-24 16:50:09 +1000240 writeb(MCFSIM_ICR_LEVEL6 | MCFSIM_ICR_PRI1, MCF_MBAR + MCFSIM_UART1ICR);
Greg Ungererd62db602009-03-24 17:14:32 +1000241 writeb(irq, MCF_MBAR + MCFUART_BASE1 + MCFUART_UIVR);
Greg Ungerer39f0fb62009-05-22 13:33:35 +1000242 mcf_mapirq2imr(irq, MCFINTC_UART0);
Greg Ungerer5f84bd52008-02-01 17:34:30 +1000243 } else if (line == 1) {
Greg Ungererde1fc5c2009-03-24 16:50:09 +1000244 writeb(MCFSIM_ICR_LEVEL6 | MCFSIM_ICR_PRI2, MCF_MBAR + MCFSIM_UART2ICR);
Greg Ungererd62db602009-03-24 17:14:32 +1000245 writeb(irq, MCF_MBAR + MCFUART_BASE2 + MCFUART_UIVR);
Greg Ungerer39f0fb62009-05-22 13:33:35 +1000246 mcf_mapirq2imr(irq, MCFINTC_UART1);
Greg Ungerer5f84bd52008-02-01 17:34:30 +1000247 }
248}
249
250static void __init m5249_uarts_init(void)
251{
252 const int nrlines = ARRAY_SIZE(m5249_uart_platform);
253 int line;
254
255 for (line = 0; (line < nrlines); line++)
256 m5249_uart_init_line(line, m5249_uart_platform[line].irq);
257}
258
Linus Torvalds1da177e2005-04-16 15:20:36 -0700259/***************************************************************************/
260
Greg Ungerer4a1479b2009-06-12 16:17:20 +1000261#ifdef CONFIG_M5249C3
262
263static void __init m5249_smc91x_init(void)
264{
265 u32 gpio;
266
267 /* Set the GPIO line as interrupt source for smc91x device */
268 gpio = readl(MCF_MBAR2 + MCFSIM2_GPIOINTENABLE);
269 writel(gpio | 0x40, MCF_MBAR2 + MCFSIM2_GPIOINTENABLE);
270
271 gpio = readl(MCF_MBAR2 + MCFSIM2_INTLEVEL5);
272 writel(gpio | 0x04000000, MCF_MBAR2 + MCFSIM2_INTLEVEL5);
273}
274
275#endif /* CONFIG_M5249C3 */
276
277/***************************************************************************/
278
Greg Ungerer04b75b12009-05-19 14:52:40 +1000279static void __init m5249_timers_init(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700280{
Greg Ungerer04b75b12009-05-19 14:52:40 +1000281 /* Timer1 is always used as system timer */
282 writeb(MCFSIM_ICR_AUTOVEC | MCFSIM_ICR_LEVEL6 | MCFSIM_ICR_PRI3,
283 MCF_MBAR + MCFSIM_TIMER1ICR);
Greg Ungerer39f0fb62009-05-22 13:33:35 +1000284 mcf_mapirq2imr(MCF_IRQ_TIMER, MCFINTC_TIMER1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700285
Greg Ungerer04b75b12009-05-19 14:52:40 +1000286#ifdef CONFIG_HIGHPROFILE
287 /* Timer2 is to be used as a high speed profile timer */
288 writeb(MCFSIM_ICR_AUTOVEC | MCFSIM_ICR_LEVEL7 | MCFSIM_ICR_PRI3,
289 MCF_MBAR + MCFSIM_TIMER2ICR);
Greg Ungerer39f0fb62009-05-22 13:33:35 +1000290 mcf_mapirq2imr(MCF_IRQ_PROFILER, MCFINTC_TIMER2);
Greg Ungerer04b75b12009-05-19 14:52:40 +1000291#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700292}
293
294/***************************************************************************/
295
Greg Ungerer6f5aa7c2009-04-30 17:31:19 +1000296void m5249_cpu_reset(void)
297{
298 local_irq_disable();
299 /* Set watchdog to soft reset, and enabled */
300 __raw_writeb(0xc0, MCF_MBAR + MCFSIM_SYPCR);
301 for (;;)
302 /* wait for watchdog to timeout */;
303}
304
305/***************************************************************************/
306
Greg Ungerer5f84bd52008-02-01 17:34:30 +1000307void __init config_BSP(char *commandp, int size)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700308{
Greg Ungerer6f5aa7c2009-04-30 17:31:19 +1000309 mach_reset = m5249_cpu_reset;
Greg Ungerer04b75b12009-05-19 14:52:40 +1000310 m5249_timers_init();
Greg Ungerer39f0fb62009-05-22 13:33:35 +1000311 m5249_uarts_init();
Greg Ungerer4a1479b2009-06-12 16:17:20 +1000312#ifdef CONFIG_M5249C3
313 m5249_smc91x_init();
314#endif
Steven King91d60412010-01-22 12:43:03 -0800315#if defined(CONFIG_SPI_COLDFIRE_QSPI) || defined(CONFIG_SPI_COLDFIRE_QSPI_MODULE)
316 m5249_qspi_init();
317#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700318}
319
320/***************************************************************************/
Greg Ungerer5f84bd52008-02-01 17:34:30 +1000321
322static int __init init_BSP(void)
323{
Greg Ungerer5f84bd52008-02-01 17:34:30 +1000324 platform_add_devices(m5249_devices, ARRAY_SIZE(m5249_devices));
325 return 0;
326}
327
328arch_initcall(init_BSP);
329
330/***************************************************************************/