blob: 6528a5fa6a26ce924cf3538684c1f828137809d5 [file] [log] [blame]
Eric Miao01215e32009-03-20 13:33:49 +08001/*
2 * linux/arch/arm/mach-mmp/ttc_dkb.c
3 *
4 * Support for the Marvell PXA910-based TTC_DKB Development Platform.
5 *
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.
9 */
10
11#include <linux/init.h>
12#include <linux/kernel.h>
13#include <linux/platform_device.h>
Haojian Zhuangd6587c32009-09-23 01:57:35 +080014#include <linux/mtd/mtd.h>
15#include <linux/mtd/partitions.h>
16#include <linux/mtd/onenand.h>
Haojian Zhuang0bd86962010-09-08 09:42:42 -040017#include <linux/interrupt.h>
Haojian Zhuange04eb142011-04-01 10:39:28 +080018#include <linux/i2c/pca953x.h>
19#include <linux/gpio.h>
Chao Xief4466942012-05-07 11:24:00 +080020#include <linux/mfd/88pm860x.h>
Neil Zhang673eef92012-05-03 14:19:14 +080021#include <linux/platform_data/mv_usb.h>
Zhou Zhu74a014f2013-02-21 16:42:21 -080022#include <linux/spi/spi.h>
23#include <linux/delay.h>
Eric Miao01215e32009-03-20 13:33:49 +080024
25#include <asm/mach-types.h>
26#include <asm/mach/arch.h>
Haojian Zhuangd6587c32009-09-23 01:57:35 +080027#include <asm/mach/flash.h>
Eric Miao01215e32009-03-20 13:33:49 +080028#include <mach/addr-map.h>
29#include <mach/mfp-pxa910.h>
30#include <mach/pxa910.h>
Haojian Zhuang1a8d5fa2011-11-08 14:15:59 +080031#include <mach/irqs.h>
Neil Zhang673eef92012-05-03 14:19:14 +080032#include <mach/regs-usb.h>
Eric Miao01215e32009-03-20 13:33:49 +080033
34#include "common.h"
35
Haojian Zhuang1a8d5fa2011-11-08 14:15:59 +080036#define TTCDKB_GPIO_EXT0(x) (MMP_NR_BUILTIN_GPIO + ((x < 0) ? 0 : \
Haojian Zhuange04eb142011-04-01 10:39:28 +080037 ((x < 16) ? x : 15)))
Haojian Zhuang1a8d5fa2011-11-08 14:15:59 +080038#define TTCDKB_GPIO_EXT1(x) (MMP_NR_BUILTIN_GPIO + 16 + ((x < 0) ? 0 : \
Haojian Zhuange04eb142011-04-01 10:39:28 +080039 ((x < 16) ? x : 15)))
40
41/*
42 * 16 board interrupts -- MAX7312 GPIO expander
43 * 16 board interrupts -- PCA9575 GPIO expander
44 * 24 board interrupts -- 88PM860x PMIC
45 */
Rob Herring8661fb92012-01-03 16:50:40 -060046#define TTCDKB_NR_IRQS (MMP_NR_IRQS + 16 + 16 + 24)
Haojian Zhuang0bd86962010-09-08 09:42:42 -040047
Eric Miao01215e32009-03-20 13:33:49 +080048static unsigned long ttc_dkb_pin_config[] __initdata = {
49 /* UART2 */
50 GPIO47_UART2_RXD,
51 GPIO48_UART2_TXD,
Haojian Zhuangd6587c32009-09-23 01:57:35 +080052
53 /* DFI */
54 DF_IO0_ND_IO0,
55 DF_IO1_ND_IO1,
56 DF_IO2_ND_IO2,
57 DF_IO3_ND_IO3,
58 DF_IO4_ND_IO4,
59 DF_IO5_ND_IO5,
60 DF_IO6_ND_IO6,
61 DF_IO7_ND_IO7,
62 DF_IO8_ND_IO8,
63 DF_IO9_ND_IO9,
64 DF_IO10_ND_IO10,
65 DF_IO11_ND_IO11,
66 DF_IO12_ND_IO12,
67 DF_IO13_ND_IO13,
68 DF_IO14_ND_IO14,
69 DF_IO15_ND_IO15,
70 DF_nCS0_SM_nCS2_nCS0,
71 DF_ALE_SM_WEn_ND_ALE,
72 DF_CLE_SM_OEn_ND_CLE,
73 DF_WEn_DF_WEn,
74 DF_REn_DF_REn,
75 DF_RDY0_DF_RDY0,
76};
77
78static struct mtd_partition ttc_dkb_onenand_partitions[] = {
79 {
80 .name = "bootloader",
81 .offset = 0,
82 .size = SZ_1M,
83 .mask_flags = MTD_WRITEABLE,
84 }, {
85 .name = "reserved",
86 .offset = MTDPART_OFS_APPEND,
87 .size = SZ_128K,
88 .mask_flags = MTD_WRITEABLE,
89 }, {
90 .name = "reserved",
91 .offset = MTDPART_OFS_APPEND,
92 .size = SZ_8M,
93 .mask_flags = MTD_WRITEABLE,
94 }, {
95 .name = "kernel",
96 .offset = MTDPART_OFS_APPEND,
97 .size = (SZ_2M + SZ_1M),
98 .mask_flags = 0,
99 }, {
100 .name = "filesystem",
101 .offset = MTDPART_OFS_APPEND,
Stephen Boyd3f8e2882011-07-26 18:45:54 +0100102 .size = SZ_32M + SZ_16M,
Haojian Zhuangd6587c32009-09-23 01:57:35 +0800103 .mask_flags = 0,
104 }
105};
106
Haojian Zhuangd6223872009-11-20 10:57:16 -0500107static struct onenand_platform_data ttc_dkb_onenand_info = {
Haojian Zhuangd6587c32009-09-23 01:57:35 +0800108 .parts = ttc_dkb_onenand_partitions,
109 .nr_parts = ARRAY_SIZE(ttc_dkb_onenand_partitions),
110};
111
112static struct resource ttc_dkb_resource_onenand[] = {
113 [0] = {
114 .start = SMC_CS0_PHYS_BASE,
115 .end = SMC_CS0_PHYS_BASE + SZ_1M,
116 .flags = IORESOURCE_MEM,
117 },
118};
119
120static struct platform_device ttc_dkb_device_onenand = {
121 .name = "onenand-flash",
122 .id = -1,
123 .resource = ttc_dkb_resource_onenand,
124 .num_resources = ARRAY_SIZE(ttc_dkb_resource_onenand),
125 .dev = {
126 .platform_data = &ttc_dkb_onenand_info,
127 },
128};
129
130static struct platform_device *ttc_dkb_devices[] = {
Haojian Zhuang157d2642011-10-17 20:37:52 +0800131 &pxa910_device_gpio,
Haojian Zhuang4128e272012-02-23 23:37:33 +0800132 &pxa910_device_rtc,
Haojian Zhuangd6587c32009-09-23 01:57:35 +0800133 &ttc_dkb_device_onenand,
Eric Miao01215e32009-03-20 13:33:49 +0800134};
135
Haojian Zhuange04eb142011-04-01 10:39:28 +0800136static struct pca953x_platform_data max7312_data[] = {
137 {
138 .gpio_base = TTCDKB_GPIO_EXT0(0),
Rob Herring8661fb92012-01-03 16:50:40 -0600139 .irq_base = MMP_NR_IRQS,
Haojian Zhuange04eb142011-04-01 10:39:28 +0800140 },
141};
142
Chao Xief4466942012-05-07 11:24:00 +0800143static struct pm860x_platform_data ttc_dkb_pm8607_info = {
144 .irq_base = IRQ_BOARD_START,
145};
146
Haojian Zhuange04eb142011-04-01 10:39:28 +0800147static struct i2c_board_info ttc_dkb_i2c_info[] = {
148 {
Chao Xief4466942012-05-07 11:24:00 +0800149 .type = "88PM860x",
150 .addr = 0x34,
151 .platform_data = &ttc_dkb_pm8607_info,
152 .irq = IRQ_PXA910_PMIC_INT,
153 },
154 {
Haojian Zhuange04eb142011-04-01 10:39:28 +0800155 .type = "max7312",
156 .addr = 0x23,
Haojian Zhuang1a8d5fa2011-11-08 14:15:59 +0800157 .irq = MMP_GPIO_TO_IRQ(80),
Haojian Zhuange04eb142011-04-01 10:39:28 +0800158 .platform_data = &max7312_data,
159 },
160};
161
Neil Zhang673eef92012-05-03 14:19:14 +0800162#ifdef CONFIG_USB_SUPPORT
163#if defined(CONFIG_USB_MV_UDC) || defined(CONFIG_USB_EHCI_MV_U2O)
164
Neil Zhang673eef92012-05-03 14:19:14 +0800165static struct mv_usb_platform_data ttc_usb_pdata = {
Neil Zhang673eef92012-05-03 14:19:14 +0800166 .vbus = NULL,
167 .mode = MV_USB_MODE_OTG,
168 .otg_force_a_bus_req = 1,
169 .phy_init = pxa_usb_phy_init,
170 .phy_deinit = pxa_usb_phy_deinit,
171 .set_vbus = NULL,
172};
173#endif
174#endif
175
Lei Wen0f74da32012-07-30 21:59:41 +0800176#ifdef CONFIG_MTD_NAND_PXA3xx
177static struct pxa3xx_nand_platform_data dkb_nand_info = {
178 .enable_arbiter = 1,
179 .num_cs = 1,
180};
181#endif
182
Zhou Zhu74a014f2013-02-21 16:42:21 -0800183#ifdef CONFIG_MMP_DISP
184/* path config */
185#define CFG_IOPADMODE(iopad) (iopad) /* 0x0 ~ 0xd */
186#define SCLK_SOURCE_SELECT(x) (x << 30) /* 0x0 ~ 0x3 */
187/* link config */
188#define CFG_DUMBMODE(mode) (mode << 28) /* 0x0 ~ 0x6*/
189#define CFG_GRA_SWAPRB(x) (x << 0) /* 1: rbswap enabled */
190static struct mmp_mach_path_config dkb_disp_config[] = {
191 [0] = {
192 .name = "mmp-parallel",
193 .overlay_num = 2,
194 .output_type = PATH_OUT_PARALLEL,
195 .path_config = CFG_IOPADMODE(0x1)
196 | SCLK_SOURCE_SELECT(0x1),
197 .link_config = CFG_DUMBMODE(0x2)
198 | CFG_GRA_SWAPRB(0x1),
199 },
200};
201
202static struct mmp_mach_plat_info dkb_disp_info = {
203 .name = "mmp-disp",
204 .clk_name = "disp0",
205 .path_num = 1,
206 .paths = dkb_disp_config,
207};
208
209static struct mmp_buffer_driver_mach_info dkb_fb_info = {
210 .name = "mmp-fb",
211 .path_name = "mmp-parallel",
212 .overlay_id = 0,
213 .dmafetch_id = 1,
214 .default_pixfmt = PIXFMT_RGB565,
215};
216
217static void dkb_tpo_panel_power(int on)
218{
219 int err;
220 u32 spi_reset = mfp_to_gpio(MFP_PIN_GPIO106);
221
222 if (on) {
223 err = gpio_request(spi_reset, "TPO_LCD_SPI_RESET");
224 if (err) {
225 pr_err("failed to request GPIO for TPO LCD RESET\n");
226 return;
227 }
228 gpio_direction_output(spi_reset, 0);
229 udelay(100);
230 gpio_set_value(spi_reset, 1);
231 gpio_free(spi_reset);
232 } else {
233 err = gpio_request(spi_reset, "TPO_LCD_SPI_RESET");
234 if (err) {
235 pr_err("failed to request LCD RESET gpio\n");
236 return;
237 }
238 gpio_set_value(spi_reset, 0);
239 gpio_free(spi_reset);
240 }
241}
242
243static struct mmp_mach_panel_info dkb_tpo_panel_info = {
244 .name = "tpo-hvga",
245 .plat_path_name = "mmp-parallel",
246 .plat_set_onoff = dkb_tpo_panel_power,
247};
248
249static struct spi_board_info spi_board_info[] __initdata = {
250 {
251 .modalias = "tpo-hvga",
252 .platform_data = &dkb_tpo_panel_info,
253 .bus_num = 5,
254 }
255};
256
257static void __init add_disp(void)
258{
259 pxa_register_device(&pxa910_device_disp,
260 &dkb_disp_info, sizeof(dkb_disp_info));
261 spi_register_board_info(spi_board_info, ARRAY_SIZE(spi_board_info));
262 pxa_register_device(&pxa910_device_fb,
263 &dkb_fb_info, sizeof(dkb_fb_info));
264 pxa_register_device(&pxa910_device_panel,
265 &dkb_tpo_panel_info, sizeof(dkb_tpo_panel_info));
266}
267#endif
268
Eric Miao01215e32009-03-20 13:33:49 +0800269static void __init ttc_dkb_init(void)
270{
271 mfp_config(ARRAY_AND_SIZE(ttc_dkb_pin_config));
272
273 /* on-chip devices */
274 pxa910_add_uart(1);
Lei Wen0f74da32012-07-30 21:59:41 +0800275#ifdef CONFIG_MTD_NAND_PXA3xx
276 pxa910_add_nand(&dkb_nand_info);
277#endif
Haojian Zhuangd6587c32009-09-23 01:57:35 +0800278
279 /* off-chip devices */
Haojian Zhuange04eb142011-04-01 10:39:28 +0800280 pxa910_add_twsi(0, NULL, ARRAY_AND_SIZE(ttc_dkb_i2c_info));
Haojian Zhuangd6587c32009-09-23 01:57:35 +0800281 platform_add_devices(ARRAY_AND_SIZE(ttc_dkb_devices));
Neil Zhang673eef92012-05-03 14:19:14 +0800282
283#ifdef CONFIG_USB_MV_UDC
284 pxa168_device_u2o.dev.platform_data = &ttc_usb_pdata;
285 platform_device_register(&pxa168_device_u2o);
286#endif
287
288#ifdef CONFIG_USB_EHCI_MV_U2O
289 pxa168_device_u2oehci.dev.platform_data = &ttc_usb_pdata;
290 platform_device_register(&pxa168_device_u2oehci);
291#endif
292
293#ifdef CONFIG_USB_MV_OTG
294 pxa168_device_u2ootg.dev.platform_data = &ttc_usb_pdata;
295 platform_device_register(&pxa168_device_u2ootg);
296#endif
Zhou Zhu74a014f2013-02-21 16:42:21 -0800297
298#ifdef CONFIG_MMP_DISP
299 add_disp();
300#endif
Eric Miao01215e32009-03-20 13:33:49 +0800301}
302
303MACHINE_START(TTC_DKB, "PXA910-based TTC_DKB Development Platform")
Eric Miao80228872010-07-15 17:50:13 +0800304 .map_io = mmp_map_io,
Haojian Zhuang0bd86962010-09-08 09:42:42 -0400305 .nr_irqs = TTCDKB_NR_IRQS,
Eric Miao01215e32009-03-20 13:33:49 +0800306 .init_irq = pxa910_init_irq,
Stephen Warren6bb27d72012-11-08 12:40:59 -0700307 .init_time = pxa910_timer_init,
Eric Miao01215e32009-03-20 13:33:49 +0800308 .init_machine = ttc_dkb_init,
Russell King9854a382011-11-05 15:40:09 +0000309 .restart = mmp_restart,
Eric Miao01215e32009-03-20 13:33:49 +0800310MACHINE_END