1 /***************************************************************************/
4 * linux/arch/m68knommu/platform/54xx/config.c
6 * Copyright (C) 2010, Philippe De Muyter <phdm@macqel.be>
9 /***************************************************************************/
11 #include <linux/kernel.h>
12 #include <linux/param.h>
13 #include <linux/init.h>
14 #include <linux/interrupt.h>
17 #include <linux/bootmem.h>
18 #include <asm/pgalloc.h>
19 #include <asm/machdep.h>
20 #include <asm/coldfire.h>
21 #include <asm/m54xxsim.h>
22 #include <asm/mcfuart.h>
23 #include <asm/m54xxgpt.h>
25 #include <asm/mmu_context.h>
28 /***************************************************************************/
30 static struct mcf_platform_uart m54xx_uart_platform
[] = {
32 .mapbase
= MCF_MBAR
+ MCFUART_BASE1
,
36 .mapbase
= MCF_MBAR
+ MCFUART_BASE2
,
40 .mapbase
= MCF_MBAR
+ MCFUART_BASE3
,
44 .mapbase
= MCF_MBAR
+ MCFUART_BASE4
,
49 static struct platform_device m54xx_uart
= {
52 .dev
.platform_data
= m54xx_uart_platform
,
55 static struct platform_device
*m54xx_devices
[] __initdata
= {
60 /***************************************************************************/
62 static void __init
m54xx_uart_init_line(int line
, int irq
)
71 rts_cts
= MCF_PAR_PSC_RTS_RTS
; break;
73 rts_cts
= MCF_PAR_PSC_RTS_RTS
| MCF_PAR_PSC_CTS_CTS
; break;
77 __raw_writeb(MCF_PAR_PSC_TXD
| rts_cts
| MCF_PAR_PSC_RXD
,
78 MCF_MBAR
+ MCF_PAR_PSC(line
));
81 static void __init
m54xx_uarts_init(void)
83 const int nrlines
= ARRAY_SIZE(m54xx_uart_platform
);
86 for (line
= 0; (line
< nrlines
); line
++)
87 m54xx_uart_init_line(line
, m54xx_uart_platform
[line
].irq
);
90 /***************************************************************************/
92 static void mcf54xx_reset(void)
94 /* disable interrupts and enable the watchdog */
95 asm("movew #0x2700, %sr\n");
96 __raw_writel(0, MCF_MBAR
+ MCF_GPT_GMS0
);
97 __raw_writel(MCF_GPT_GCIR_CNT(1), MCF_MBAR
+ MCF_GPT_GCIR0
);
98 __raw_writel(MCF_GPT_GMS_WDEN
| MCF_GPT_GMS_CE
| MCF_GPT_GMS_TMS(4),
99 MCF_MBAR
+ MCF_GPT_GMS0
);
102 /***************************************************************************/
106 unsigned long num_pages
;
108 static void __init
mcf54xx_bootmem_alloc(void)
110 unsigned long start_pfn
;
111 unsigned long memstart
;
113 /* _rambase and _ramend will be naturally page aligned */
114 m68k_memory
[0].addr
= _rambase
;
115 m68k_memory
[0].size
= _ramend
- _rambase
;
117 /* compute total pages in system */
118 num_pages
= (_ramend
- _rambase
) >> PAGE_SHIFT
;
121 memstart
= PAGE_ALIGN(_ramstart
);
122 min_low_pfn
= _rambase
>> PAGE_SHIFT
;
123 start_pfn
= memstart
>> PAGE_SHIFT
;
124 max_low_pfn
= _ramend
>> PAGE_SHIFT
;
125 high_memory
= (void *)_ramend
;
127 m68k_virt_to_node_shift
= fls(_ramend
- _rambase
- 1) - 6;
128 module_fixup(NULL
, __start_fixup
, __stop_fixup
);
130 /* setup bootmem data */
132 memstart
+= init_bootmem_node(NODE_DATA(0), start_pfn
,
133 min_low_pfn
, max_low_pfn
);
134 free_bootmem_node(NODE_DATA(0), memstart
, _ramend
- memstart
);
137 #endif /* CONFIG_MMU */
139 /***************************************************************************/
141 void __init
config_BSP(char *commandp
, int size
)
144 mcf54xx_bootmem_alloc();
147 mach_reset
= mcf54xx_reset
;
151 /***************************************************************************/
153 static int __init
init_BSP(void)
156 platform_add_devices(m54xx_devices
, ARRAY_SIZE(m54xx_devices
));
160 arch_initcall(init_BSP
);
162 /***************************************************************************/