Merge remote-tracking branch 'omap_dss2/for-next'
[deliverable/linux.git] / arch / m68k / coldfire / m54xx.c
CommitLineData
ea49f8ff
PDM
1/***************************************************************************/
2
3/*
ece9ae65 4 * m54xx.c -- platform support for ColdFire 54xx based boards
ea49f8ff
PDM
5 *
6 * Copyright (C) 2010, Philippe De Muyter <phdm@macqel.be>
7 */
8
9/***************************************************************************/
10
11#include <linux/kernel.h>
12#include <linux/param.h>
13#include <linux/init.h>
14#include <linux/interrupt.h>
15#include <linux/io.h>
88be3515 16#include <linux/mm.h>
98122d73 17#include <linux/clk.h>
88be3515
GU
18#include <linux/bootmem.h>
19#include <asm/pgalloc.h>
ea49f8ff
PDM
20#include <asm/machdep.h>
21#include <asm/coldfire.h>
5b2e6555 22#include <asm/m54xxsim.h>
ea49f8ff 23#include <asm/mcfuart.h>
98122d73 24#include <asm/mcfclk.h>
5b2e6555 25#include <asm/m54xxgpt.h>
88be3515
GU
26#ifdef CONFIG_MMU
27#include <asm/mmu_context.h>
28#endif
ea49f8ff 29
ea49f8ff
PDM
30/***************************************************************************/
31
98122d73
GU
32DEFINE_CLK(pll, "pll.0", MCF_CLK);
33DEFINE_CLK(sys, "sys.0", MCF_BUSCLK);
34DEFINE_CLK(mcfslt0, "mcfslt.0", MCF_BUSCLK);
35DEFINE_CLK(mcfslt1, "mcfslt.1", MCF_BUSCLK);
36DEFINE_CLK(mcfuart0, "mcfuart.0", MCF_BUSCLK);
37DEFINE_CLK(mcfuart1, "mcfuart.1", MCF_BUSCLK);
38DEFINE_CLK(mcfuart2, "mcfuart.2", MCF_BUSCLK);
39DEFINE_CLK(mcfuart3, "mcfuart.3", MCF_BUSCLK);
40
41struct clk *mcf_clks[] = {
42 &clk_pll,
43 &clk_sys,
44 &clk_mcfslt0,
45 &clk_mcfslt1,
46 &clk_mcfuart0,
47 &clk_mcfuart1,
48 &clk_mcfuart2,
49 &clk_mcfuart3,
50 NULL
51};
52
53/***************************************************************************/
54
5b2e6555 55static void __init m54xx_uarts_init(void)
ea49f8ff 56{
b9a0c3f8 57 /* enable io pins */
632306f2 58 __raw_writeb(MCF_PAR_PSC_TXD | MCF_PAR_PSC_RXD, MCFGPIO_PAR_PSC0);
b9a0c3f8 59 __raw_writeb(MCF_PAR_PSC_TXD | MCF_PAR_PSC_RXD | MCF_PAR_PSC_RTS_RTS,
632306f2 60 MCFGPIO_PAR_PSC1);
b9a0c3f8 61 __raw_writeb(MCF_PAR_PSC_TXD | MCF_PAR_PSC_RXD | MCF_PAR_PSC_RTS_RTS |
632306f2
GU
62 MCF_PAR_PSC_CTS_CTS, MCFGPIO_PAR_PSC2);
63 __raw_writeb(MCF_PAR_PSC_TXD | MCF_PAR_PSC_RXD, MCFGPIO_PAR_PSC3);
ea49f8ff
PDM
64}
65
66/***************************************************************************/
67
5b2e6555 68static void mcf54xx_reset(void)
ea49f8ff
PDM
69{
70 /* disable interrupts and enable the watchdog */
71 asm("movew #0x2700, %sr\n");
944c3d81
GU
72 __raw_writel(0, MCF_GPT_GMS0);
73 __raw_writel(MCF_GPT_GCIR_CNT(1), MCF_GPT_GCIR0);
ea49f8ff 74 __raw_writel(MCF_GPT_GMS_WDEN | MCF_GPT_GMS_CE | MCF_GPT_GMS_TMS(4),
944c3d81 75 MCF_GPT_GMS0);
ea49f8ff
PDM
76}
77
78/***************************************************************************/
79
80void __init config_BSP(char *commandp, int size)
81{
88be3515 82#ifdef CONFIG_MMU
a77e489f 83 cf_bootmem_alloc();
88be3515
GU
84 mmu_context_init();
85#endif
5b2e6555 86 mach_reset = mcf54xx_reset;
35aefb26 87 mach_sched_init = hw_timer_init;
5b2e6555 88 m54xx_uarts_init();
ea49f8ff
PDM
89}
90
91/***************************************************************************/
This page took 0.321237 seconds and 5 git commands to generate.