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/gpio.h>
35 #include <mach/pxafb.h>
37 #include <mach/ohci.h>
39 #include <mach/pxa3xx_nand.h>
41 #include <asm/mach/map.h>
45 #define CM_X300_ETH_PHYS 0x08000010
47 #define GPIO82_MMC2_IRQ (82)
48 #define GPIO85_MMC2_WP (85)
50 #define CM_X300_MMC2_IRQ IRQ_GPIO(GPIO82_MMC2_IRQ)
52 static mfp_cfg_t cm_x300_mfp_cfg
[] __initdata
= {
77 GPIO112_UART2_RXD
| MFP_LPM_EDGE_FALL
,
79 GPIO114_UART2_CTS
| MFP_LPM_EDGE_BOTH
,
83 GPIO110_UART3_RXD
| MFP_LPM_EDGE_FALL
,
89 GPIO25_AC97_SDATA_IN_0
,
90 GPIO27_AC97_SDATA_OUT
,
94 GPIO115_KP_MKIN_0
| MFP_LPM_EDGE_BOTH
,
95 GPIO116_KP_MKIN_1
| MFP_LPM_EDGE_BOTH
,
96 GPIO117_KP_MKIN_2
| MFP_LPM_EDGE_BOTH
,
97 GPIO118_KP_MKIN_3
| MFP_LPM_EDGE_BOTH
,
98 GPIO119_KP_MKIN_4
| MFP_LPM_EDGE_BOTH
,
99 GPIO120_KP_MKIN_5
| MFP_LPM_EDGE_BOTH
,
100 GPIO2_2_KP_MKIN_6
| MFP_LPM_EDGE_BOTH
,
101 GPIO3_2_KP_MKIN_7
| MFP_LPM_EDGE_BOTH
,
111 GPIO4_MMC1_DAT1
| MFP_LPM_EDGE_BOTH
,
115 GPIO8_MMC1_CMD
, /* CMD0 for slot 0 */
119 GPIO10_MMC2_DAT1
| MFP_LPM_EDGE_BOTH
,
126 GPIO30_UART1_RXD
| MFP_LPM_EDGE_FALL
,
131 GPIO34_UART1_DSR
| MFP_LPM_EDGE_FALL
,
136 GPIO79_GPIO
, /* LED */
137 GPIO82_GPIO
| MFP_PULL_HIGH
, /* MMC CD */
138 GPIO85_GPIO
, /* MMC WP */
139 GPIO99_GPIO
, /* Ethernet IRQ */
142 #if defined(CONFIG_DM9000) || defined(CONFIG_DM9000_MODULE)
143 static struct resource dm9000_resources
[] = {
145 .start
= CM_X300_ETH_PHYS
,
146 .end
= CM_X300_ETH_PHYS
+ 0x3,
147 .flags
= IORESOURCE_MEM
,
150 .start
= CM_X300_ETH_PHYS
+ 0x4,
151 .end
= CM_X300_ETH_PHYS
+ 0x4 + 500,
152 .flags
= IORESOURCE_MEM
,
155 .start
= IRQ_GPIO(mfp_to_gpio(MFP_PIN_GPIO99
)),
156 .end
= IRQ_GPIO(mfp_to_gpio(MFP_PIN_GPIO99
)),
157 .flags
= IORESOURCE_IRQ
| IORESOURCE_IRQ_HIGHEDGE
,
161 static struct dm9000_plat_data cm_x300_dm9000_platdata
= {
162 .flags
= DM9000_PLATF_16BITONLY
,
165 static struct platform_device dm9000_device
= {
168 .num_resources
= ARRAY_SIZE(dm9000_resources
),
169 .resource
= dm9000_resources
,
171 .platform_data
= &cm_x300_dm9000_platdata
,
176 static void __init
cm_x300_init_dm9000(void)
178 platform_device_register(&dm9000_device
);
181 static inline void cm_x300_init_dm9000(void) {}
184 #if defined(CONFIG_FB_PXA) || defined(CONFIG_FB_PXA_MODULE)
185 static struct pxafb_mode_info cm_x300_lcd_modes
[] = {
214 static struct pxafb_mach_info cm_x300_lcd
= {
215 .modes
= cm_x300_lcd_modes
,
217 .lcd_conn
= LCD_COLOR_TFT_16BPP
| LCD_PCLK_EDGE_FALL
,
220 static void __init
cm_x300_init_lcd(void)
222 set_pxa_fb_info(&cm_x300_lcd
);
225 static inline void cm_x300_init_lcd(void) {}
228 #if defined(CONFIG_MTD_NAND_PXA3xx) || defined(CONFIG_MTD_NAND_PXA3xx_MODULE)
229 static struct mtd_partition cm_x300_nand_partitions
[] = {
234 .mask_flags
= MTD_WRITEABLE
, /* force read-only */
238 .offset
= MTDPART_OFS_APPEND
,
240 .mask_flags
= MTD_WRITEABLE
, /* force read-only */
243 .name
= "Environment",
244 .offset
= MTDPART_OFS_APPEND
,
249 .offset
= MTDPART_OFS_APPEND
,
250 .size
= SZ_256K
+ SZ_1M
,
251 .mask_flags
= MTD_WRITEABLE
, /* force read-only */
255 .offset
= MTDPART_OFS_APPEND
,
260 .offset
= MTDPART_OFS_APPEND
,
261 .size
= MTDPART_SIZ_FULL
,
265 static struct pxa3xx_nand_platform_data cm_x300_nand_info
= {
267 .parts
= cm_x300_nand_partitions
,
268 .nr_parts
= ARRAY_SIZE(cm_x300_nand_partitions
),
271 static void __init
cm_x300_init_nand(void)
273 pxa3xx_set_nand_info(&cm_x300_nand_info
);
276 static inline void cm_x300_init_nand(void) {}
279 #if defined(CONFIG_MMC) || defined(CONFIG_MMC_MODULE)
280 /* The first MMC slot of CM-X300 is hardwired to Libertas card and has
281 no detection/ro pins */
282 static int cm_x300_mci_init(struct device
*dev
,
283 irq_handler_t cm_x300_detect_int
,
289 static void cm_x300_mci_exit(struct device
*dev
, void *data
)
293 static struct pxamci_platform_data cm_x300_mci_platform_data
= {
295 .ocr_mask
= MMC_VDD_32_33
|MMC_VDD_33_34
,
296 .init
= cm_x300_mci_init
,
297 .exit
= cm_x300_mci_exit
,
300 static int cm_x300_mci2_ro(struct device
*dev
)
302 return gpio_get_value(GPIO85_MMC2_WP
);
305 static int cm_x300_mci2_init(struct device
*dev
,
306 irq_handler_t cm_x300_detect_int
,
312 * setup GPIO for CM-X300 MMC controller
314 err
= gpio_request(GPIO82_MMC2_IRQ
, "mmc card detect");
317 gpio_direction_input(GPIO82_MMC2_IRQ
);
319 err
= gpio_request(GPIO85_MMC2_WP
, "mmc write protect");
322 gpio_direction_input(GPIO85_MMC2_WP
);
324 err
= request_irq(CM_X300_MMC2_IRQ
, cm_x300_detect_int
,
325 IRQF_TRIGGER_RISING
| IRQF_TRIGGER_FALLING
,
326 "MMC card detect", data
);
328 printk(KERN_ERR
"%s: MMC/SD/SDIO: "
329 "can't request card detect IRQ\n", __func__
);
330 goto err_request_irq
;
336 gpio_free(GPIO85_MMC2_WP
);
338 gpio_free(GPIO82_MMC2_IRQ
);
343 static void cm_x300_mci2_exit(struct device
*dev
, void *data
)
345 free_irq(CM_X300_MMC2_IRQ
, data
);
346 gpio_free(GPIO82_MMC2_IRQ
);
347 gpio_free(GPIO85_MMC2_WP
);
350 static struct pxamci_platform_data cm_x300_mci2_platform_data
= {
352 .ocr_mask
= MMC_VDD_32_33
|MMC_VDD_33_34
,
353 .init
= cm_x300_mci2_init
,
354 .exit
= cm_x300_mci2_exit
,
355 .get_ro
= cm_x300_mci2_ro
,
358 static void __init
cm_x300_init_mmc(void)
360 pxa_set_mci_info(&cm_x300_mci_platform_data
);
361 pxa3xx_set_mci2_info(&cm_x300_mci2_platform_data
);
364 static inline void cm_x300_init_mmc(void) {}
367 #if defined(CONFIG_USB_OHCI_HCD) || defined(CONFIG_USB_OHCI_HCD_MODULE)
368 static struct pxaohci_platform_data cm_x300_ohci_platform_data
= {
369 .port_mode
= PMM_PERPORT_MODE
,
370 .flags
= ENABLE_PORT1
| ENABLE_PORT2
| POWER_CONTROL_LOW
,
373 static void __init
cm_x300_init_ohci(void)
375 pxa_set_ohci_info(&cm_x300_ohci_platform_data
);
378 static inline void cm_x300_init_ohci(void) {}
381 #if defined(CONFIG_LEDS_GPIO) || defined(CONFIG_LEDS_GPIO_MODULE)
382 static struct gpio_led cm_x300_leds
[] = {
384 .name
= "cm-x300:green",
385 .default_trigger
= "heartbeat",
391 static struct gpio_led_platform_data cm_x300_gpio_led_pdata
= {
392 .num_leds
= ARRAY_SIZE(cm_x300_leds
),
393 .leds
= cm_x300_leds
,
396 static struct platform_device cm_x300_led_device
= {
400 .platform_data
= &cm_x300_gpio_led_pdata
,
404 static void __init
cm_x300_init_leds(void)
406 platform_device_register(&cm_x300_led_device
);
409 static inline void cm_x300_init_leds(void) {}
412 #if defined(CONFIG_I2C) || defined(CONFIG_I2C_MODULE)
414 static struct pca953x_platform_data cm_x300_gpio_ext_pdata_0
= {
418 static struct pca953x_platform_data cm_x300_gpio_ext_pdata_1
= {
422 static struct i2c_board_info cm_x300_gpio_ext_info
[] = {
424 I2C_BOARD_INFO("pca9555", 0x24),
425 .platform_data
= &cm_x300_gpio_ext_pdata_0
,
428 I2C_BOARD_INFO("pca9555", 0x25),
429 .platform_data
= &cm_x300_gpio_ext_pdata_1
,
433 static void __init
cm_x300_init_i2c(void)
435 pxa_set_i2c_info(NULL
);
436 i2c_register_board_info(0, cm_x300_gpio_ext_info
,
437 ARRAY_SIZE(cm_x300_gpio_ext_info
));
440 static inline void cm_x300_init_i2c(void) {}
443 static void __init
cm_x300_init(void)
445 /* board-processor specific GPIO initialization */
446 pxa3xx_mfp_config(ARRAY_AND_SIZE(cm_x300_mfp_cfg
));
448 cm_x300_init_dm9000();
457 MACHINE_START(CM_X300
, "CM-X300 module")
458 .phys_io
= 0x40000000,
459 .boot_params
= 0xa0000100,
460 .io_pg_offst
= (io_p2v(0x40000000) >> 18) & 0xfffc,
461 .map_io
= pxa_map_io
,
462 .init_irq
= pxa3xx_init_irq
,
464 .init_machine
= cm_x300_init
,