Merge branch 'for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/dtor/input
[deliverable/linux.git] / arch / m68k / coldfire / m5272.c
CommitLineData
1da177e4
LT
1/***************************************************************************/
2
3/*
ece9ae65 4 * m5272.c -- platform support for ColdFire 5272 based boards
1da177e4
LT
5 *
6 * Copyright (C) 1999-2002, Greg Ungerer (gerg@snapgear.com)
7 * Copyright (C) 2001-2002, SnapGear Inc. (www.snapgear.com)
8 */
9
10/***************************************************************************/
11
1da177e4 12#include <linux/kernel.h>
1da177e4
LT
13#include <linux/param.h>
14#include <linux/init.h>
84e6defa 15#include <linux/io.h>
41a2159b
GU
16#include <linux/phy.h>
17#include <linux/phy_fixed.h>
1da177e4
LT
18#include <asm/machdep.h>
19#include <asm/coldfire.h>
1da177e4 20#include <asm/mcfsim.h>
84e6defa 21#include <asm/mcfuart.h>
7acef7a2 22#include <asm/mcfclk.h>
1da177e4
LT
23
24/***************************************************************************/
25
1da177e4
LT
26/*
27 * Some platforms need software versions of the GPIO data registers.
28 */
29unsigned short ppdata;
30unsigned char ledbank = 0xff;
31
32/***************************************************************************/
33
7acef7a2
GU
34DEFINE_CLK(pll, "pll.0", MCF_CLK);
35DEFINE_CLK(sys, "sys.0", MCF_BUSCLK);
36DEFINE_CLK(mcftmr0, "mcftmr.0", MCF_BUSCLK);
37DEFINE_CLK(mcftmr1, "mcftmr.1", MCF_BUSCLK);
38DEFINE_CLK(mcftmr2, "mcftmr.2", MCF_BUSCLK);
39DEFINE_CLK(mcftmr3, "mcftmr.3", MCF_BUSCLK);
40DEFINE_CLK(mcfuart0, "mcfuart.0", MCF_BUSCLK);
41DEFINE_CLK(mcfuart1, "mcfuart.1", MCF_BUSCLK);
74859523 42DEFINE_CLK(mcfqspi0, "mcfqspi.0", MCF_BUSCLK);
7acef7a2
GU
43DEFINE_CLK(fec0, "fec.0", MCF_BUSCLK);
44
45struct clk *mcf_clks[] = {
46 &clk_pll,
47 &clk_sys,
48 &clk_mcftmr0,
49 &clk_mcftmr1,
50 &clk_mcftmr2,
51 &clk_mcftmr3,
52 &clk_mcfuart0,
53 &clk_mcfuart1,
74859523 54 &clk_mcfqspi0,
7acef7a2
GU
55 &clk_fec0,
56 NULL
57};
58
59/***************************************************************************/
60
6b656e8a 61static void __init m5272_uarts_init(void)
84e6defa
GU
62{
63 u32 v;
64
6b656e8a 65 /* Enable the output lines for the serial ports */
4fb62ede 66 v = readl(MCFSIM_PBCNT);
6b656e8a 67 v = (v & ~0x000000ff) | 0x00000055;
4fb62ede 68 writel(v, MCFSIM_PBCNT);
84e6defa 69
4fb62ede 70 v = readl(MCFSIM_PDCNT);
6b656e8a 71 v = (v & ~0x000003fc) | 0x000002a8;
4fb62ede 72 writel(v, MCFSIM_PDCNT);
84e6defa 73}
1da177e4
LT
74
75/***************************************************************************/
76
05728aec
GU
77static void m5272_cpu_reset(void)
78{
79 local_irq_disable();
80 /* Set watchdog to reset, and enabled */
660b73e3
GU
81 __raw_writew(0, MCFSIM_WIRR);
82 __raw_writew(1, MCFSIM_WRRR);
83 __raw_writew(0, MCFSIM_WCR);
05728aec
GU
84 for (;;)
85 /* wait for watchdog to timeout */;
86}
87
88/***************************************************************************/
89
84e6defa 90void __init config_BSP(char *commandp, int size)
1da177e4 91{
a7962660 92#if defined (CONFIG_MOD5272)
1da177e4 93 /* Set base of device vectors to be 64 */
d72a5abb 94 writeb(0x40, MCFSIM_PIVR);
1da177e4
LT
95#endif
96
bc72450a 97#if defined(CONFIG_NETtel) || defined(CONFIG_SCALES)
1da177e4
LT
98 /* Copy command line from FLASH to local buffer... */
99 memcpy(commandp, (char *) 0xf0004000, size);
100 commandp[size-1] = 0;
1da177e4
LT
101#elif defined(CONFIG_CANCam)
102 /* Copy command line from FLASH to local buffer... */
103 memcpy(commandp, (char *) 0xf0010000, size);
104 commandp[size-1] = 0;
1da177e4
LT
105#endif
106
05728aec 107 mach_reset = m5272_cpu_reset;
35aefb26 108 mach_sched_init = hw_timer_init;
1da177e4
LT
109}
110
111/***************************************************************************/
84e6defa 112
41a2159b 113/*
86a8280a 114 * Some 5272 based boards have the FEC ethernet directly connected to
41a2159b
GU
115 * an ethernet switch. In this case we need to use the fixed phy type,
116 * and we need to declare it early in boot.
117 */
118static struct fixed_phy_status nettel_fixed_phy_status __initdata = {
119 .link = 1,
120 .speed = 100,
121 .duplex = 0,
122};
123
124/***************************************************************************/
125
84e6defa
GU
126static int __init init_BSP(void)
127{
128 m5272_uarts_init();
a5597008 129 fixed_phy_add(PHY_POLL, 0, &nettel_fixed_phy_status, -1);
84e6defa
GU
130 return 0;
131}
132
133arch_initcall(init_BSP);
134
135/***************************************************************************/
This page took 0.8313 seconds and 5 git commands to generate.