2 * linux/arch/arm/mach-pxa/cm-x300.c
4 * Support for the CompuLab CM-X300 modules
6 * Copyright (C) 2008 CompuLab Ltd.
8 * Mike Rapoport <mike@compulab.co.il>
10 * This program is free software; you can redistribute it and/or modify
11 * it under the terms of the GNU General Public License version 2 as
12 * published by the Free Software Foundation.
15 #include <linux/module.h>
16 #include <linux/kernel.h>
17 #include <linux/interrupt.h>
18 #include <linux/init.h>
19 #include <linux/platform_device.h>
21 #include <linux/gpio.h>
22 #include <linux/dm9000.h>
23 #include <linux/leds.h>
25 #include <linux/i2c.h>
26 #include <linux/i2c/pca953x.h>
28 #include <asm/mach-types.h>
29 #include <asm/mach/arch.h>
31 #include <mach/pxa300.h>
32 #include <mach/pxafb.h>
34 #include <mach/ohci.h>
36 #include <mach/pxa3xx_nand.h>
38 #include <asm/mach/map.h>
42 #define CM_X300_ETH_PHYS 0x08000010
44 #define GPIO82_MMC2_IRQ (82)
45 #define GPIO85_MMC2_WP (85)
47 #define CM_X300_MMC2_IRQ IRQ_GPIO(GPIO82_MMC2_IRQ)
49 static mfp_cfg_t cm_x300_mfp_cfg[] __initdata = {
74 GPIO112_UART2_RXD | MFP_LPM_EDGE_FALL,
76 GPIO114_UART2_CTS | MFP_LPM_EDGE_BOTH,
80 GPIO110_UART3_RXD | MFP_LPM_EDGE_FALL,
86 GPIO25_AC97_SDATA_IN_0,
87 GPIO27_AC97_SDATA_OUT,
91 GPIO115_KP_MKIN_0 | MFP_LPM_EDGE_BOTH,
92 GPIO116_KP_MKIN_1 | MFP_LPM_EDGE_BOTH,
93 GPIO117_KP_MKIN_2 | MFP_LPM_EDGE_BOTH,
94 GPIO118_KP_MKIN_3 | MFP_LPM_EDGE_BOTH,
95 GPIO119_KP_MKIN_4 | MFP_LPM_EDGE_BOTH,
96 GPIO120_KP_MKIN_5 | MFP_LPM_EDGE_BOTH,
97 GPIO2_2_KP_MKIN_6 | MFP_LPM_EDGE_BOTH,
98 GPIO3_2_KP_MKIN_7 | MFP_LPM_EDGE_BOTH,
108 GPIO4_MMC1_DAT1 | MFP_LPM_EDGE_BOTH,
112 GPIO8_MMC1_CMD, /* CMD0 for slot 0 */
116 GPIO10_MMC2_DAT1 | MFP_LPM_EDGE_BOTH,
123 GPIO30_UART1_RXD | MFP_LPM_EDGE_FALL,
128 GPIO34_UART1_DSR | MFP_LPM_EDGE_FALL,
133 GPIO79_GPIO, /* LED */
134 GPIO82_GPIO | MFP_PULL_HIGH, /* MMC CD */
135 GPIO85_GPIO, /* MMC WP */
136 GPIO99_GPIO, /* Ethernet IRQ */
143 #if defined(CONFIG_DM9000) || defined(CONFIG_DM9000_MODULE)
144 static struct resource dm9000_resources[] = {
146 .start = CM_X300_ETH_PHYS,
147 .end = CM_X300_ETH_PHYS + 0x3,
148 .flags = IORESOURCE_MEM,
151 .start = CM_X300_ETH_PHYS + 0x4,
152 .end = CM_X300_ETH_PHYS + 0x4 + 500,
153 .flags = IORESOURCE_MEM,
156 .start = IRQ_GPIO(mfp_to_gpio(MFP_PIN_GPIO99)),
157 .end = IRQ_GPIO(mfp_to_gpio(MFP_PIN_GPIO99)),
158 .flags = IORESOURCE_IRQ | IORESOURCE_IRQ_HIGHEDGE,
162 static struct dm9000_plat_data cm_x300_dm9000_platdata = {
163 .flags = DM9000_PLATF_16BITONLY | DM9000_PLATF_NO_EEPROM,
166 static struct platform_device dm9000_device = {
169 .num_resources = ARRAY_SIZE(dm9000_resources),
170 .resource = dm9000_resources,
172 .platform_data = &cm_x300_dm9000_platdata,
177 static void __init cm_x300_init_dm9000(void)
179 platform_device_register(&dm9000_device);
182 static inline void cm_x300_init_dm9000(void) {}
185 #if defined(CONFIG_FB_PXA) || defined(CONFIG_FB_PXA_MODULE)
186 static struct pxafb_mode_info cm_x300_lcd_modes[] = {
215 static struct pxafb_mach_info cm_x300_lcd = {
216 .modes = cm_x300_lcd_modes,
218 .lcd_conn = LCD_COLOR_TFT_16BPP | LCD_PCLK_EDGE_FALL,
221 static void __init cm_x300_init_lcd(void)
223 set_pxa_fb_info(&cm_x300_lcd);
226 static inline void cm_x300_init_lcd(void) {}
229 #if defined(CONFIG_MTD_NAND_PXA3xx) || defined(CONFIG_MTD_NAND_PXA3xx_MODULE)
230 static struct mtd_partition cm_x300_nand_partitions[] = {
235 .mask_flags = MTD_WRITEABLE, /* force read-only */
239 .offset = MTDPART_OFS_APPEND,
241 .mask_flags = MTD_WRITEABLE, /* force read-only */
244 .name = "Environment",
245 .offset = MTDPART_OFS_APPEND,
250 .offset = MTDPART_OFS_APPEND,
251 .size = SZ_256K + SZ_1M,
252 .mask_flags = MTD_WRITEABLE, /* force read-only */
256 .offset = MTDPART_OFS_APPEND,
261 .offset = MTDPART_OFS_APPEND,
262 .size = MTDPART_SIZ_FULL,
266 static struct pxa3xx_nand_platform_data cm_x300_nand_info = {
268 .parts = cm_x300_nand_partitions,
269 .nr_parts = ARRAY_SIZE(cm_x300_nand_partitions),
272 static void __init cm_x300_init_nand(void)
274 pxa3xx_set_nand_info(&cm_x300_nand_info);
277 static inline void cm_x300_init_nand(void) {}
280 #if defined(CONFIG_MMC) || defined(CONFIG_MMC_MODULE)
281 /* The first MMC slot of CM-X300 is hardwired to Libertas card and has
282 no detection/ro pins */
283 static int cm_x300_mci_init(struct device *dev,
284 irq_handler_t cm_x300_detect_int,
290 static void cm_x300_mci_exit(struct device *dev, void *data)
294 static struct pxamci_platform_data cm_x300_mci_platform_data = {
296 .ocr_mask = MMC_VDD_32_33|MMC_VDD_33_34,
297 .init = cm_x300_mci_init,
298 .exit = cm_x300_mci_exit,
301 static int cm_x300_mci2_ro(struct device *dev)
303 return gpio_get_value(GPIO85_MMC2_WP);
306 static int cm_x300_mci2_init(struct device *dev,
307 irq_handler_t cm_x300_detect_int,
313 * setup GPIO for CM-X300 MMC controller
315 err = gpio_request(GPIO82_MMC2_IRQ, "mmc card detect");
318 gpio_direction_input(GPIO82_MMC2_IRQ);
320 err = gpio_request(GPIO85_MMC2_WP, "mmc write protect");
323 gpio_direction_input(GPIO85_MMC2_WP);
325 err = request_irq(CM_X300_MMC2_IRQ, cm_x300_detect_int,
326 IRQF_TRIGGER_RISING | IRQF_TRIGGER_FALLING,
327 "MMC card detect", data);
329 printk(KERN_ERR "%s: MMC/SD/SDIO: "
330 "can't request card detect IRQ\n", __func__);
331 goto err_request_irq;
337 gpio_free(GPIO85_MMC2_WP);
339 gpio_free(GPIO82_MMC2_IRQ);
344 static void cm_x300_mci2_exit(struct device *dev, void *data)
346 free_irq(CM_X300_MMC2_IRQ, data);
347 gpio_free(GPIO82_MMC2_IRQ);
348 gpio_free(GPIO85_MMC2_WP);
351 static struct pxamci_platform_data cm_x300_mci2_platform_data = {
353 .ocr_mask = MMC_VDD_32_33|MMC_VDD_33_34,
354 .init = cm_x300_mci2_init,
355 .exit = cm_x300_mci2_exit,
356 .get_ro = cm_x300_mci2_ro,
359 static void __init cm_x300_init_mmc(void)
361 pxa_set_mci_info(&cm_x300_mci_platform_data);
362 pxa3xx_set_mci2_info(&cm_x300_mci2_platform_data);
365 static inline void cm_x300_init_mmc(void) {}
368 #if defined(CONFIG_USB_OHCI_HCD) || defined(CONFIG_USB_OHCI_HCD_MODULE)
369 static struct pxaohci_platform_data cm_x300_ohci_platform_data = {
370 .port_mode = PMM_PERPORT_MODE,
371 .flags = ENABLE_PORT1 | ENABLE_PORT2 | POWER_CONTROL_LOW,
374 static void __init cm_x300_init_ohci(void)
376 pxa_set_ohci_info(&cm_x300_ohci_platform_data);
379 static inline void cm_x300_init_ohci(void) {}
382 #if defined(CONFIG_LEDS_GPIO) || defined(CONFIG_LEDS_GPIO_MODULE)
383 static struct gpio_led cm_x300_leds[] = {
385 .name = "cm-x300:green",
386 .default_trigger = "heartbeat",
392 static struct gpio_led_platform_data cm_x300_gpio_led_pdata = {
393 .num_leds = ARRAY_SIZE(cm_x300_leds),
394 .leds = cm_x300_leds,
397 static struct platform_device cm_x300_led_device = {
401 .platform_data = &cm_x300_gpio_led_pdata,
405 static void __init cm_x300_init_leds(void)
407 platform_device_register(&cm_x300_led_device);
410 static inline void cm_x300_init_leds(void) {}
413 #if defined(CONFIG_I2C) || defined(CONFIG_I2C_MODULE)
415 static struct pca953x_platform_data cm_x300_gpio_ext_pdata_0 = {
419 static struct pca953x_platform_data cm_x300_gpio_ext_pdata_1 = {
423 static struct i2c_board_info cm_x300_gpio_ext_info[] = {
425 I2C_BOARD_INFO("pca9555", 0x24),
426 .platform_data = &cm_x300_gpio_ext_pdata_0,
429 I2C_BOARD_INFO("pca9555", 0x25),
430 .platform_data = &cm_x300_gpio_ext_pdata_1,
434 static void __init cm_x300_init_i2c(void)
436 pxa_set_i2c_info(NULL);
437 i2c_register_board_info(0, cm_x300_gpio_ext_info,
438 ARRAY_SIZE(cm_x300_gpio_ext_info));
441 static inline void cm_x300_init_i2c(void) {}
444 static void __init cm_x300_init(void)
446 /* board-processor specific GPIO initialization */
447 pxa3xx_mfp_config(ARRAY_AND_SIZE(cm_x300_mfp_cfg));
449 cm_x300_init_dm9000();
458 MACHINE_START(CM_X300, "CM-X300 module")
459 .phys_io = 0x40000000,
460 .boot_params = 0xa0000100,
461 .io_pg_offst = (io_p2v(0x40000000) >> 18) & 0xfffc,
462 .map_io = pxa_map_io,
463 .init_irq = pxa3xx_init_irq,
465 .init_machine = cm_x300_init,