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/mfp-pxa300.h>
33 #include <mach/hardware.h>
34 #include <mach/pxafb.h>
36 #include <mach/ohci.h>
38 #include <mach/pxa3xx_nand.h>
40 #include <asm/mach/map.h>
44 #define CM_X300_ETH_PHYS 0x08000010
46 #define GPIO82_MMC2_IRQ (82)
47 #define GPIO85_MMC2_WP (85)
49 #define CM_X300_MMC2_IRQ IRQ_GPIO(GPIO82_MMC2_IRQ)
51 static mfp_cfg_t cm_x300_mfp_cfg[] __initdata = {
76 GPIO112_UART2_RXD | MFP_LPM_EDGE_FALL,
78 GPIO114_UART2_CTS | MFP_LPM_EDGE_BOTH,
82 GPIO110_UART3_RXD | MFP_LPM_EDGE_FALL,
88 GPIO25_AC97_SDATA_IN_0,
89 GPIO27_AC97_SDATA_OUT,
93 GPIO115_KP_MKIN_0 | MFP_LPM_EDGE_BOTH,
94 GPIO116_KP_MKIN_1 | MFP_LPM_EDGE_BOTH,
95 GPIO117_KP_MKIN_2 | MFP_LPM_EDGE_BOTH,
96 GPIO118_KP_MKIN_3 | MFP_LPM_EDGE_BOTH,
97 GPIO119_KP_MKIN_4 | MFP_LPM_EDGE_BOTH,
98 GPIO120_KP_MKIN_5 | MFP_LPM_EDGE_BOTH,
99 GPIO2_2_KP_MKIN_6 | MFP_LPM_EDGE_BOTH,
100 GPIO3_2_KP_MKIN_7 | MFP_LPM_EDGE_BOTH,
110 GPIO4_MMC1_DAT1 | MFP_LPM_EDGE_BOTH,
114 GPIO8_MMC1_CMD, /* CMD0 for slot 0 */
118 GPIO10_MMC2_DAT1 | MFP_LPM_EDGE_BOTH,
125 GPIO30_UART1_RXD | MFP_LPM_EDGE_FALL,
130 GPIO34_UART1_DSR | MFP_LPM_EDGE_FALL,
135 GPIO79_GPIO, /* LED */
136 GPIO82_GPIO | MFP_PULL_HIGH, /* MMC CD */
137 GPIO85_GPIO, /* MMC WP */
138 GPIO99_GPIO, /* Ethernet IRQ */
145 #if defined(CONFIG_DM9000) || defined(CONFIG_DM9000_MODULE)
146 static struct resource dm9000_resources[] = {
148 .start = CM_X300_ETH_PHYS,
149 .end = CM_X300_ETH_PHYS + 0x3,
150 .flags = IORESOURCE_MEM,
153 .start = CM_X300_ETH_PHYS + 0x4,
154 .end = CM_X300_ETH_PHYS + 0x4 + 500,
155 .flags = IORESOURCE_MEM,
158 .start = IRQ_GPIO(mfp_to_gpio(MFP_PIN_GPIO99)),
159 .end = IRQ_GPIO(mfp_to_gpio(MFP_PIN_GPIO99)),
160 .flags = IORESOURCE_IRQ | IORESOURCE_IRQ_HIGHEDGE,
164 static struct dm9000_plat_data cm_x300_dm9000_platdata = {
165 .flags = DM9000_PLATF_16BITONLY,
168 static struct platform_device dm9000_device = {
171 .num_resources = ARRAY_SIZE(dm9000_resources),
172 .resource = dm9000_resources,
174 .platform_data = &cm_x300_dm9000_platdata,
179 static void __init cm_x300_init_dm9000(void)
181 platform_device_register(&dm9000_device);
184 static inline void cm_x300_init_dm9000(void) {}
187 #if defined(CONFIG_FB_PXA) || defined(CONFIG_FB_PXA_MODULE)
188 static struct pxafb_mode_info cm_x300_lcd_modes[] = {
217 static struct pxafb_mach_info cm_x300_lcd = {
218 .modes = cm_x300_lcd_modes,
220 .lcd_conn = LCD_COLOR_TFT_16BPP | LCD_PCLK_EDGE_FALL,
223 static void __init cm_x300_init_lcd(void)
225 set_pxa_fb_info(&cm_x300_lcd);
228 static inline void cm_x300_init_lcd(void) {}
231 #if defined(CONFIG_MTD_NAND_PXA3xx) || defined(CONFIG_MTD_NAND_PXA3xx_MODULE)
232 static struct mtd_partition cm_x300_nand_partitions[] = {
237 .mask_flags = MTD_WRITEABLE, /* force read-only */
241 .offset = MTDPART_OFS_APPEND,
243 .mask_flags = MTD_WRITEABLE, /* force read-only */
246 .name = "Environment",
247 .offset = MTDPART_OFS_APPEND,
252 .offset = MTDPART_OFS_APPEND,
253 .size = SZ_256K + SZ_1M,
254 .mask_flags = MTD_WRITEABLE, /* force read-only */
258 .offset = MTDPART_OFS_APPEND,
263 .offset = MTDPART_OFS_APPEND,
264 .size = MTDPART_SIZ_FULL,
268 static struct pxa3xx_nand_platform_data cm_x300_nand_info = {
270 .parts = cm_x300_nand_partitions,
271 .nr_parts = ARRAY_SIZE(cm_x300_nand_partitions),
274 static void __init cm_x300_init_nand(void)
276 pxa3xx_set_nand_info(&cm_x300_nand_info);
279 static inline void cm_x300_init_nand(void) {}
282 #if defined(CONFIG_MMC) || defined(CONFIG_MMC_MODULE)
283 /* The first MMC slot of CM-X300 is hardwired to Libertas card and has
284 no detection/ro pins */
285 static int cm_x300_mci_init(struct device *dev,
286 irq_handler_t cm_x300_detect_int,
292 static void cm_x300_mci_exit(struct device *dev, void *data)
296 static struct pxamci_platform_data cm_x300_mci_platform_data = {
298 .ocr_mask = MMC_VDD_32_33|MMC_VDD_33_34,
299 .init = cm_x300_mci_init,
300 .exit = cm_x300_mci_exit,
303 static int cm_x300_mci2_ro(struct device *dev)
305 return gpio_get_value(GPIO85_MMC2_WP);
308 static int cm_x300_mci2_init(struct device *dev,
309 irq_handler_t cm_x300_detect_int,
315 * setup GPIO for CM-X300 MMC controller
317 err = gpio_request(GPIO82_MMC2_IRQ, "mmc card detect");
320 gpio_direction_input(GPIO82_MMC2_IRQ);
322 err = gpio_request(GPIO85_MMC2_WP, "mmc write protect");
325 gpio_direction_input(GPIO85_MMC2_WP);
327 err = request_irq(CM_X300_MMC2_IRQ, cm_x300_detect_int,
328 IRQF_TRIGGER_RISING | IRQF_TRIGGER_FALLING,
329 "MMC card detect", data);
331 printk(KERN_ERR "%s: MMC/SD/SDIO: "
332 "can't request card detect IRQ\n", __func__);
333 goto err_request_irq;
339 gpio_free(GPIO85_MMC2_WP);
341 gpio_free(GPIO82_MMC2_IRQ);
346 static void cm_x300_mci2_exit(struct device *dev, void *data)
348 free_irq(CM_X300_MMC2_IRQ, data);
349 gpio_free(GPIO82_MMC2_IRQ);
350 gpio_free(GPIO85_MMC2_WP);
353 static struct pxamci_platform_data cm_x300_mci2_platform_data = {
355 .ocr_mask = MMC_VDD_32_33|MMC_VDD_33_34,
356 .init = cm_x300_mci2_init,
357 .exit = cm_x300_mci2_exit,
358 .get_ro = cm_x300_mci2_ro,
361 static void __init cm_x300_init_mmc(void)
363 pxa_set_mci_info(&cm_x300_mci_platform_data);
364 pxa3xx_set_mci2_info(&cm_x300_mci2_platform_data);
367 static inline void cm_x300_init_mmc(void) {}
370 #if defined(CONFIG_USB_OHCI_HCD) || defined(CONFIG_USB_OHCI_HCD_MODULE)
371 static struct pxaohci_platform_data cm_x300_ohci_platform_data = {
372 .port_mode = PMM_PERPORT_MODE,
373 .flags = ENABLE_PORT1 | ENABLE_PORT2 | POWER_CONTROL_LOW,
376 static void __init cm_x300_init_ohci(void)
378 pxa_set_ohci_info(&cm_x300_ohci_platform_data);
381 static inline void cm_x300_init_ohci(void) {}
384 #if defined(CONFIG_LEDS_GPIO) || defined(CONFIG_LEDS_GPIO_MODULE)
385 static struct gpio_led cm_x300_leds[] = {
387 .name = "cm-x300:green",
388 .default_trigger = "heartbeat",
394 static struct gpio_led_platform_data cm_x300_gpio_led_pdata = {
395 .num_leds = ARRAY_SIZE(cm_x300_leds),
396 .leds = cm_x300_leds,
399 static struct platform_device cm_x300_led_device = {
403 .platform_data = &cm_x300_gpio_led_pdata,
407 static void __init cm_x300_init_leds(void)
409 platform_device_register(&cm_x300_led_device);
412 static inline void cm_x300_init_leds(void) {}
415 #if defined(CONFIG_I2C) || defined(CONFIG_I2C_MODULE)
417 static struct pca953x_platform_data cm_x300_gpio_ext_pdata_0 = {
421 static struct pca953x_platform_data cm_x300_gpio_ext_pdata_1 = {
425 static struct i2c_board_info cm_x300_gpio_ext_info[] = {
427 I2C_BOARD_INFO("pca9555", 0x24),
428 .platform_data = &cm_x300_gpio_ext_pdata_0,
431 I2C_BOARD_INFO("pca9555", 0x25),
432 .platform_data = &cm_x300_gpio_ext_pdata_1,
436 static void __init cm_x300_init_i2c(void)
438 pxa_set_i2c_info(NULL);
439 i2c_register_board_info(0, cm_x300_gpio_ext_info,
440 ARRAY_SIZE(cm_x300_gpio_ext_info));
443 static inline void cm_x300_init_i2c(void) {}
446 static void __init cm_x300_init(void)
448 /* board-processor specific GPIO initialization */
449 pxa3xx_mfp_config(ARRAY_AND_SIZE(cm_x300_mfp_cfg));
451 cm_x300_init_dm9000();
460 MACHINE_START(CM_X300, "CM-X300 module")
461 .phys_io = 0x40000000,
462 .boot_params = 0xa0000100,
463 .io_pg_offst = (io_p2v(0x40000000) >> 18) & 0xfffc,
464 .map_io = pxa_map_io,
465 .init_irq = pxa3xx_init_irq,
467 .init_machine = cm_x300_init,