2 * linux/arch/arm/mach-sa1100/cerf.c
4 * This program is free software; you can redistribute it and/or modify
5 * it under the terms of the GNU General Public License version 2 as
6 * published by the Free Software Foundation.
8 * Apr-2003 : Removed some old PDA crud [FB]
9 * Oct-2003 : Added uart2 resource [FB]
10 * Jan-2004 : Removed io map for flash [FB]
13 #include <linux/init.h>
14 #include <linux/kernel.h>
15 #include <linux/tty.h>
16 #include <linux/platform_device.h>
17 #include <linux/mtd/mtd.h>
18 #include <linux/mtd/partitions.h>
21 #include <asm/hardware.h>
22 #include <asm/setup.h>
24 #include <asm/mach-types.h>
25 #include <asm/mach/arch.h>
26 #include <asm/mach/flash.h>
27 #include <asm/mach/map.h>
28 #include <asm/mach/serial_sa1100.h>
30 #include <asm/arch/cerf.h>
31 #include <asm/arch/mcp.h>
34 static struct resource cerfuart2_resources[] = {
38 .flags = IORESOURCE_MEM,
42 static struct platform_device cerfuart2_device = {
43 .name = "sa11x0-uart",
45 .num_resources = ARRAY_SIZE(cerfuart2_resources),
46 .resource = cerfuart2_resources,
49 static struct platform_device *cerf_devices[] __initdata = {
53 #ifdef CONFIG_SA1100_CERF_FLASH_32MB
54 # define CERF_FLASH_SIZE 0x02000000
55 #elif defined CONFIG_SA1100_CERF_FLASH_16MB
56 # define CERF_FLASH_SIZE 0x01000000
57 #elif defined CONFIG_SA1100_CERF_FLASH_8MB
58 # define CERF_FLASH_SIZE 0x00800000
60 # error "Undefined flash size for CERF"
63 static struct mtd_partition cerf_partitions[] = {
78 .size = CERF_FLASH_SIZE-0x00160000,
83 static struct flash_platform_data cerf_flash_data = {
84 .map_name = "cfi_probe",
85 .parts = cerf_partitions,
86 .nr_parts = ARRAY_SIZE(cerf_partitions),
89 static struct resource cerf_flash_resource = {
90 .start = SA1100_CS0_PHYS,
91 .end = SA1100_CS0_PHYS + SZ_32M - 1,
92 .flags = IORESOURCE_MEM,
95 static void __init cerf_init_irq(void)
98 set_irq_type(CERF_ETH_IRQ, IRQT_RISING);
101 static struct map_desc cerf_io_desc[] __initdata = {
102 { /* Crystal Ethernet Chip */
103 .virtual = 0xf0000000,
104 .pfn = __phys_to_pfn(0x08000000),
105 .length = 0x00100000,
110 static void __init cerf_map_io(void)
113 iotable_init(cerf_io_desc, ARRAY_SIZE(cerf_io_desc));
115 sa1100_register_uart(0, 3);
116 sa1100_register_uart(1, 2); /* disable this and the uart2 device for sa1100_fir */
117 sa1100_register_uart(2, 1);
119 /* set some GPDR bits here while it's safe */
120 GPDR |= CERF_GPIO_CF_RESET;
123 static struct mcp_plat_data cerf_mcp_data = {
125 .sclk_rate = 11981000,
128 static void __init cerf_init(void)
130 platform_add_devices(cerf_devices, ARRAY_SIZE(cerf_devices));
131 sa11x0_set_flash_data(&cerf_flash_data, &cerf_flash_resource, 1);
132 sa11x0_set_mcp_data(&cerf_mcp_data);
135 MACHINE_START(CERF, "Intrinsyc CerfBoard/CerfCube")
136 /* Maintainer: support@intrinsyc.com */
137 .phys_io = 0x80000000,
138 .io_pg_offst = ((0xf8000000) >> 18) & 0xfffc,
139 .map_io = cerf_map_io,
140 .init_irq = cerf_init_irq,
141 .timer = &sa1100_timer,
142 .init_machine = cerf_init,