2 * linux/arch/arm/mach-mmp/ttc_dkb.c
4 * Support for the Marvell PXA910-based TTC_DKB Development Platform.
6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License version 2 as
8 * publishhed by the Free Software Foundation.
11 #include <linux/init.h>
12 #include <linux/kernel.h>
13 #include <linux/platform_device.h>
14 #include <linux/mtd/mtd.h>
15 #include <linux/mtd/partitions.h>
16 #include <linux/mtd/onenand.h>
17 #include <linux/interrupt.h>
18 #include <linux/platform_data/pca953x.h>
19 #include <linux/gpio.h>
20 #include <linux/gpio-pxa.h>
21 #include <linux/mfd/88pm860x.h>
22 #include <linux/platform_data/mv_usb.h>
23 #include <linux/spi/spi.h>
24 #include <linux/delay.h>
26 #include <asm/mach-types.h>
27 #include <asm/mach/arch.h>
28 #include <asm/mach/flash.h>
29 #include <mach/addr-map.h>
30 #include <mach/mfp-pxa910.h>
31 #include <mach/pxa910.h>
32 #include <mach/irqs.h>
33 #include <mach/regs-usb.h>
37 #define TTCDKB_GPIO_EXT0(x) (MMP_NR_BUILTIN_GPIO + ((x < 0) ? 0 : \
39 #define TTCDKB_GPIO_EXT1(x) (MMP_NR_BUILTIN_GPIO + 16 + ((x < 0) ? 0 : \
43 * 16 board interrupts -- MAX7312 GPIO expander
44 * 16 board interrupts -- PCA9575 GPIO expander
45 * 24 board interrupts -- 88PM860x PMIC
47 #define TTCDKB_NR_IRQS (MMP_NR_IRQS + 16 + 16 + 24)
49 static unsigned long ttc_dkb_pin_config
[] __initdata
= {
79 static struct pxa_gpio_platform_data pxa910_gpio_pdata
= {
80 .irq_base
= MMP_GPIO_TO_IRQ(0),
83 static struct mtd_partition ttc_dkb_onenand_partitions
[] = {
88 .mask_flags
= MTD_WRITEABLE
,
91 .offset
= MTDPART_OFS_APPEND
,
93 .mask_flags
= MTD_WRITEABLE
,
96 .offset
= MTDPART_OFS_APPEND
,
98 .mask_flags
= MTD_WRITEABLE
,
101 .offset
= MTDPART_OFS_APPEND
,
102 .size
= (SZ_2M
+ SZ_1M
),
105 .name
= "filesystem",
106 .offset
= MTDPART_OFS_APPEND
,
107 .size
= SZ_32M
+ SZ_16M
,
112 static struct onenand_platform_data ttc_dkb_onenand_info
= {
113 .parts
= ttc_dkb_onenand_partitions
,
114 .nr_parts
= ARRAY_SIZE(ttc_dkb_onenand_partitions
),
117 static struct resource ttc_dkb_resource_onenand
[] = {
119 .start
= SMC_CS0_PHYS_BASE
,
120 .end
= SMC_CS0_PHYS_BASE
+ SZ_1M
,
121 .flags
= IORESOURCE_MEM
,
125 static struct platform_device ttc_dkb_device_onenand
= {
126 .name
= "onenand-flash",
128 .resource
= ttc_dkb_resource_onenand
,
129 .num_resources
= ARRAY_SIZE(ttc_dkb_resource_onenand
),
131 .platform_data
= &ttc_dkb_onenand_info
,
135 static struct platform_device
*ttc_dkb_devices
[] = {
138 &ttc_dkb_device_onenand
,
141 static struct pca953x_platform_data max7312_data
[] = {
143 .gpio_base
= TTCDKB_GPIO_EXT0(0),
144 .irq_base
= MMP_NR_IRQS
,
148 static struct pm860x_platform_data ttc_dkb_pm8607_info
= {
149 .irq_base
= IRQ_BOARD_START
,
152 static struct i2c_board_info ttc_dkb_i2c_info
[] = {
156 .platform_data
= &ttc_dkb_pm8607_info
,
157 .irq
= IRQ_PXA910_PMIC_INT
,
162 .irq
= MMP_GPIO_TO_IRQ(80),
163 .platform_data
= &max7312_data
,
167 #ifdef CONFIG_USB_SUPPORT
168 #if defined(CONFIG_USB_MV_UDC) || defined(CONFIG_USB_EHCI_MV_U2O)
170 static struct mv_usb_platform_data ttc_usb_pdata
= {
172 .mode
= MV_USB_MODE_OTG
,
173 .otg_force_a_bus_req
= 1,
174 .phy_init
= pxa_usb_phy_init
,
175 .phy_deinit
= pxa_usb_phy_deinit
,
181 #ifdef CONFIG_MTD_NAND_PXA3xx
182 static struct pxa3xx_nand_platform_data dkb_nand_info
= {
188 #ifdef CONFIG_MMP_DISP
190 #define CFG_IOPADMODE(iopad) (iopad) /* 0x0 ~ 0xd */
191 #define SCLK_SOURCE_SELECT(x) (x << 30) /* 0x0 ~ 0x3 */
193 #define CFG_DUMBMODE(mode) (mode << 28) /* 0x0 ~ 0x6*/
194 static struct mmp_mach_path_config dkb_disp_config
[] = {
196 .name
= "mmp-parallel",
198 .output_type
= PATH_OUT_PARALLEL
,
199 .path_config
= CFG_IOPADMODE(0x1)
200 | SCLK_SOURCE_SELECT(0x1),
201 .link_config
= CFG_DUMBMODE(0x2),
205 static struct mmp_mach_plat_info dkb_disp_info
= {
209 .paths
= dkb_disp_config
,
212 static struct mmp_buffer_driver_mach_info dkb_fb_info
= {
214 .path_name
= "mmp-parallel",
217 .default_pixfmt
= PIXFMT_RGB565
,
220 static void dkb_tpo_panel_power(int on
)
223 u32 spi_reset
= mfp_to_gpio(MFP_PIN_GPIO106
);
226 err
= gpio_request(spi_reset
, "TPO_LCD_SPI_RESET");
228 pr_err("failed to request GPIO for TPO LCD RESET\n");
231 gpio_direction_output(spi_reset
, 0);
233 gpio_set_value(spi_reset
, 1);
234 gpio_free(spi_reset
);
236 err
= gpio_request(spi_reset
, "TPO_LCD_SPI_RESET");
238 pr_err("failed to request LCD RESET gpio\n");
241 gpio_set_value(spi_reset
, 0);
242 gpio_free(spi_reset
);
246 static struct mmp_mach_panel_info dkb_tpo_panel_info
= {
248 .plat_path_name
= "mmp-parallel",
249 .plat_set_onoff
= dkb_tpo_panel_power
,
252 static struct spi_board_info spi_board_info
[] __initdata
= {
254 .modalias
= "tpo-hvga",
255 .platform_data
= &dkb_tpo_panel_info
,
260 static void __init
add_disp(void)
262 pxa_register_device(&pxa910_device_disp
,
263 &dkb_disp_info
, sizeof(dkb_disp_info
));
264 spi_register_board_info(spi_board_info
, ARRAY_SIZE(spi_board_info
));
265 pxa_register_device(&pxa910_device_fb
,
266 &dkb_fb_info
, sizeof(dkb_fb_info
));
267 pxa_register_device(&pxa910_device_panel
,
268 &dkb_tpo_panel_info
, sizeof(dkb_tpo_panel_info
));
272 static void __init
ttc_dkb_init(void)
274 mfp_config(ARRAY_AND_SIZE(ttc_dkb_pin_config
));
276 /* on-chip devices */
278 #ifdef CONFIG_MTD_NAND_PXA3xx
279 pxa910_add_nand(&dkb_nand_info
);
282 /* off-chip devices */
283 pxa910_add_twsi(0, NULL
, ARRAY_AND_SIZE(ttc_dkb_i2c_info
));
284 platform_device_add_data(&pxa910_device_gpio
, &pxa910_gpio_pdata
,
285 sizeof(struct pxa_gpio_platform_data
));
286 platform_add_devices(ARRAY_AND_SIZE(ttc_dkb_devices
));
288 #ifdef CONFIG_USB_MV_UDC
289 pxa168_device_u2o
.dev
.platform_data
= &ttc_usb_pdata
;
290 platform_device_register(&pxa168_device_u2o
);
293 #ifdef CONFIG_USB_EHCI_MV_U2O
294 pxa168_device_u2oehci
.dev
.platform_data
= &ttc_usb_pdata
;
295 platform_device_register(&pxa168_device_u2oehci
);
298 #ifdef CONFIG_USB_MV_OTG
299 pxa168_device_u2ootg
.dev
.platform_data
= &ttc_usb_pdata
;
300 platform_device_register(&pxa168_device_u2ootg
);
303 #ifdef CONFIG_MMP_DISP
308 MACHINE_START(TTC_DKB
, "PXA910-based TTC_DKB Development Platform")
309 .map_io
= mmp_map_io
,
310 .nr_irqs
= TTCDKB_NR_IRQS
,
311 .init_irq
= pxa910_init_irq
,
312 .init_time
= pxa910_timer_init
,
313 .init_machine
= ttc_dkb_init
,
314 .restart
= mmp_restart
,