2 * linux/arch/arm/mach-pxa/cm-x255.c
4 * Copyright (C) 2007, 2008 CompuLab, Ltd.
5 * Mike Rapoport <mike@compulab.co.il>
7 * This program is free software; you can redistribute it and/or modify
8 * it under the terms of the GNU General Public License version 2 as
9 * published by the Free Software Foundation.
12 #include <linux/platform_device.h>
13 #include <linux/irq.h>
14 #include <linux/gpio.h>
15 #include <linux/mtd/partitions.h>
16 #include <linux/mtd/physmap.h>
17 #include <linux/mtd/nand-gpio.h>
19 #include <linux/spi/spi.h>
21 #include <asm/mach/arch.h>
22 #include <asm/mach-types.h>
23 #include <asm/mach/map.h>
25 #include <mach/pxa25x.h>
26 #include <mach/pxa2xx_spi.h>
30 #define GPIO_NAND_CS (5)
31 #define GPIO_NAND_ALE (4)
32 #define GPIO_NAND_CLE (3)
33 #define GPIO_NAND_RB (10)
35 static unsigned long cmx255_pin_config[] = {
38 GPIO29_AC97_SDATA_IN_0,
39 GPIO30_AC97_SDATA_OUT,
98 /* SDRAM and local bus */
107 GPIO0_GPIO | WAKEUP_ON_EDGE_BOTH,
108 GPIO9_GPIO, /* PC card reset */
111 GPIO5_GPIO | MFP_LPM_DRIVE_HIGH, /* NAND CE# */
112 GPIO4_GPIO | MFP_LPM_DRIVE_LOW, /* NAND ALE */
113 GPIO3_GPIO | MFP_LPM_DRIVE_LOW, /* NAND CLE */
114 GPIO10_GPIO, /* NAND Ready/Busy */
117 GPIO22_GPIO, /* DM9000 interrupt */
120 #if defined(CONFIG_SPI_PXA2XX)
121 static struct pxa2xx_spi_master pxa_ssp_master_info = {
125 static struct spi_board_info spi_board_info[] __initdata = {
127 .modalias = "rtc-max6902",
128 .max_speed_hz = 1000000,
134 static void __init cmx255_init_rtc(void)
136 pxa2xx_set_spi_info(1, &pxa_ssp_master_info);
137 spi_register_board_info(ARRAY_AND_SIZE(spi_board_info));
140 static inline void cmx255_init_rtc(void) {}
143 #if defined(CONFIG_MTD_PHYSMAP) || defined(CONFIG_MTD_PHYSMAP_MODULE)
144 static struct mtd_partition cmx255_nor_partitions[] = {
149 .mask_flags = MTD_WRITEABLE /* force read-only */
151 .name = "ARMmon setup block",
153 .offset = MTDPART_OFS_APPEND,
154 .mask_flags = MTD_WRITEABLE /* force read-only */
158 .offset = MTDPART_OFS_APPEND,
161 .size = MTDPART_SIZ_FULL,
162 .offset = MTDPART_OFS_APPEND
166 static struct physmap_flash_data cmx255_nor_flash_data[] = {
168 .width = 2, /* bankwidth in bytes */
169 .parts = cmx255_nor_partitions,
170 .nr_parts = ARRAY_SIZE(cmx255_nor_partitions)
174 static struct resource cmx255_nor_resource = {
175 .start = PXA_CS0_PHYS,
176 .end = PXA_CS0_PHYS + SZ_8M - 1,
177 .flags = IORESOURCE_MEM,
180 static struct platform_device cmx255_nor = {
181 .name = "physmap-flash",
184 .platform_data = cmx255_nor_flash_data,
186 .resource = &cmx255_nor_resource,
190 static void __init cmx255_init_nor(void)
192 platform_device_register(&cmx255_nor);
195 static inline void cmx255_init_nor(void) {}
198 #if defined(CONFIG_MTD_NAND_GPIO) || defined(CONFIG_MTD_NAND_GPIO_MODULE)
199 static struct resource cmx255_nand_resource[] = {
201 .start = PXA_CS1_PHYS,
202 .end = PXA_CS1_PHYS + 11,
203 .flags = IORESOURCE_MEM,
206 .start = PXA_CS5_PHYS,
207 .end = PXA_CS5_PHYS + 3,
208 .flags = IORESOURCE_MEM,
212 static struct mtd_partition cmx255_nand_parts[] = {
214 .name = "cmx255-nand",
215 .size = MTDPART_SIZ_FULL,
220 static struct gpio_nand_platdata cmx255_nand_platdata = {
221 .gpio_nce = GPIO_NAND_CS,
222 .gpio_cle = GPIO_NAND_CLE,
223 .gpio_ale = GPIO_NAND_ALE,
224 .gpio_rdy = GPIO_NAND_RB,
226 .parts = cmx255_nand_parts,
227 .num_parts = ARRAY_SIZE(cmx255_nand_parts),
231 static struct platform_device cmx255_nand = {
233 .num_resources = ARRAY_SIZE(cmx255_nand_resource),
234 .resource = cmx255_nand_resource,
237 .platform_data = &cmx255_nand_platdata,
241 static void __init cmx255_init_nand(void)
243 platform_device_register(&cmx255_nand);
246 static inline void cmx255_init_nand(void) {}
249 void __init cmx255_init(void)
251 pxa2xx_mfp_config(ARRAY_AND_SIZE(cmx255_pin_config));