blob: db902540bf2c980fb8f2e4e89c1915dddbf5dc88 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/***************************************************************************/
2
3/*
4 * linux/arch/m68knommu/platform/5206e/config.c
5 *
6 * Copyright (C) 1999-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>
Greg Ungerercf64c232008-02-01 17:34:08 +100013#include <linux/init.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070014#include <linux/interrupt.h>
Greg Ungerercf64c232008-02-01 17:34:08 +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>
19#include <asm/mcfdma.h>
Steven King9333d822009-03-10 12:55:57 -070020#include <asm/mcfuart.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070021
22/***************************************************************************/
23
Linus Torvalds1da177e2005-04-16 15:20:36 -070024void coldfire_reset(void);
25
26/***************************************************************************/
27
Greg Ungerercf64c232008-02-01 17:34:08 +100028static struct mcf_platform_uart m5206e_uart_platform[] = {
29 {
30 .mapbase = MCF_MBAR + MCFUART_BASE1,
31 .irq = 73,
32 },
33 {
34 .mapbase = MCF_MBAR + MCFUART_BASE2,
35 .irq = 74,
36 },
37 { },
Linus Torvalds1da177e2005-04-16 15:20:36 -070038};
39
Greg Ungerercf64c232008-02-01 17:34:08 +100040static struct platform_device m5206e_uart = {
41 .name = "mcfuart",
42 .id = 0,
43 .dev.platform_data = m5206e_uart_platform,
44};
45
46static struct platform_device *m5206e_devices[] __initdata = {
47 &m5206e_uart,
48};
49
50/***************************************************************************/
51
Greg Ungererd259c322008-05-01 12:16:53 +100052static void __init m5206e_uart_init_line(int line, int irq)
Greg Ungerercf64c232008-02-01 17:34:08 +100053{
54 if (line == 0) {
55 writel(MCFSIM_ICR_LEVEL6 | MCFSIM_ICR_PRI1, MCF_MBAR + MCFSIM_UART1ICR);
56 writeb(irq, MCFUART_BASE1 + MCFUART_UIVR);
57 mcf_setimr(mcf_getimr() & ~MCFSIM_IMR_UART1);
58 } else if (line == 1) {
59 writel(MCFSIM_ICR_LEVEL6 | MCFSIM_ICR_PRI2, MCF_MBAR + MCFSIM_UART2ICR);
60 writeb(irq, MCFUART_BASE2 + MCFUART_UIVR);
61 mcf_setimr(mcf_getimr() & ~MCFSIM_IMR_UART2);
62 }
63}
64
65static void __init m5206e_uarts_init(void)
66{
67 const int nrlines = ARRAY_SIZE(m5206e_uart_platform);
68 int line;
69
70 for (line = 0; (line < nrlines); line++)
71 m5206e_uart_init_line(line, m5206e_uart_platform[line].irq);
72}
Linus Torvalds1da177e2005-04-16 15:20:36 -070073
74/***************************************************************************/
75
76void mcf_autovector(unsigned int vec)
77{
78 volatile unsigned char *mbar;
79 unsigned char icr;
80
81 if ((vec >= 25) && (vec <= 31)) {
82 vec -= 25;
83 mbar = (volatile unsigned char *) MCF_MBAR;
84 icr = MCFSIM_ICR_AUTOVEC | (vec << 3);
85 *(mbar + MCFSIM_ICR1 + vec) = icr;
86 vec = 0x1 << (vec + 1);
87 mcf_setimr(mcf_getimr() & ~vec);
88 }
89}
90
91/***************************************************************************/
92
93void mcf_settimericr(unsigned int timer, unsigned int level)
94{
95 volatile unsigned char *icrp;
96 unsigned int icr, imr;
97
98 if (timer <= 2) {
99 switch (timer) {
100 case 2: icr = MCFSIM_TIMER2ICR; imr = MCFSIM_IMR_TIMER2; break;
101 default: icr = MCFSIM_TIMER1ICR; imr = MCFSIM_IMR_TIMER1; break;
102 }
103
104 icrp = (volatile unsigned char *) (MCF_MBAR + icr);
105 *icrp = MCFSIM_ICR_AUTOVEC | (level << 2) | MCFSIM_ICR_PRI3;
106 mcf_setimr(mcf_getimr() & ~imr);
107 }
108}
109
110/***************************************************************************/
111
Greg Ungerercf64c232008-02-01 17:34:08 +1000112void __init config_BSP(char *commandp, int size)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700113{
114 mcf_setimr(MCFSIM_IMR_MASKALL);
115
Greg Ungererbc724502007-07-25 22:07:20 +1000116#if defined(CONFIG_NETtel)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700117 /* Copy command line from FLASH to local buffer... */
118 memcpy(commandp, (char *) 0xf0004000, size);
119 commandp[size-1] = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700120#endif /* CONFIG_NETtel */
121
Linus Torvalds1da177e2005-04-16 15:20:36 -0700122 mach_reset = coldfire_reset;
123}
124
125/***************************************************************************/
Greg Ungerercf64c232008-02-01 17:34:08 +1000126
127static int __init init_BSP(void)
128{
129 m5206e_uarts_init();
130 platform_add_devices(m5206e_devices, ARRAY_SIZE(m5206e_devices));
131 return 0;
132}
133
134arch_initcall(init_BSP);
135
136/***************************************************************************/