blob: 3588a55841532f4dc0c6c5268ec87b0e0c40319a [file] [log] [blame]
Eric Miao49cbe782009-01-20 14:15:18 +08001/*
2 * linux/arch/arm/mach-mmp/aspenite.c
3 *
4 * Support for the Marvell PXA168-based Aspenite and Zylonite2
5 * Development Platform.
6 *
7 * This program is free software; you can redistribute it and/or modify
8 * it under the terms of the GNU General Public License version 2 as
9 * publishhed by the Free Software Foundation.
10 */
Russell King2f8163b2011-07-26 10:53:52 +010011#include <linux/gpio.h>
Eric Miao49cbe782009-01-20 14:15:18 +080012#include <linux/init.h>
Eric Miao9c291f02009-02-10 10:35:25 +080013#include <linux/kernel.h>
Eric Miaoa6b993c2009-02-18 16:38:22 +080014#include <linux/platform_device.h>
15#include <linux/smc91x.h>
Haojian Zhuangef559de2009-09-10 14:37:48 +080016#include <linux/mtd/mtd.h>
17#include <linux/mtd/partitions.h>
18#include <linux/mtd/nand.h>
Haojian Zhuang0bd86962010-09-08 09:42:42 -040019#include <linux/interrupt.h>
Eric Miao49cbe782009-01-20 14:15:18 +080020
21#include <asm/mach-types.h>
22#include <asm/mach/arch.h>
23#include <mach/addr-map.h>
Eric Miao9c291f02009-02-10 10:35:25 +080024#include <mach/mfp-pxa168.h>
25#include <mach/pxa168.h>
Mark F. Brown884646a2010-08-25 23:51:55 -040026#include <video/pxa168fb.h>
Mark F. Brown6aafc5f2010-09-03 18:28:11 -040027#include <linux/input.h>
28#include <plat/pxa27x_keypad.h>
Eric Miao49cbe782009-01-20 14:15:18 +080029
30#include "common.h"
31
Eric Miao9c291f02009-02-10 10:35:25 +080032static unsigned long common_pin_config[] __initdata = {
Eric Miaoa6b993c2009-02-18 16:38:22 +080033 /* Data Flash Interface */
34 GPIO0_DFI_D15,
35 GPIO1_DFI_D14,
36 GPIO2_DFI_D13,
37 GPIO3_DFI_D12,
38 GPIO4_DFI_D11,
39 GPIO5_DFI_D10,
40 GPIO6_DFI_D9,
41 GPIO7_DFI_D8,
42 GPIO8_DFI_D7,
43 GPIO9_DFI_D6,
44 GPIO10_DFI_D5,
45 GPIO11_DFI_D4,
46 GPIO12_DFI_D3,
47 GPIO13_DFI_D2,
48 GPIO14_DFI_D1,
49 GPIO15_DFI_D0,
50
51 /* Static Memory Controller */
52 GPIO18_SMC_nCS0,
53 GPIO34_SMC_nCS1,
54 GPIO23_SMC_nLUA,
55 GPIO25_SMC_nLLA,
56 GPIO28_SMC_RDY,
57 GPIO29_SMC_SCLK,
58 GPIO35_SMC_BE1,
59 GPIO36_SMC_BE2,
60 GPIO27_GPIO, /* Ethernet IRQ */
61
Eric Miao9c291f02009-02-10 10:35:25 +080062 /* UART1 */
63 GPIO107_UART1_RXD,
64 GPIO108_UART1_TXD,
Haojian Zhuang07871c12010-03-19 11:55:14 -040065
66 /* SSP1 */
67 GPIO113_I2S_MCLK,
68 GPIO114_I2S_FRM,
69 GPIO115_I2S_BCLK,
70 GPIO116_I2S_RXD,
71 GPIO117_I2S_TXD,
Mark F. Brown884646a2010-08-25 23:51:55 -040072
73 /* LCD */
74 GPIO56_LCD_FCLK_RD,
75 GPIO57_LCD_LCLK_A0,
76 GPIO58_LCD_PCLK_WR,
77 GPIO59_LCD_DENA_BIAS,
78 GPIO60_LCD_DD0,
79 GPIO61_LCD_DD1,
80 GPIO62_LCD_DD2,
81 GPIO63_LCD_DD3,
82 GPIO64_LCD_DD4,
83 GPIO65_LCD_DD5,
84 GPIO66_LCD_DD6,
85 GPIO67_LCD_DD7,
86 GPIO68_LCD_DD8,
87 GPIO69_LCD_DD9,
88 GPIO70_LCD_DD10,
89 GPIO71_LCD_DD11,
90 GPIO72_LCD_DD12,
91 GPIO73_LCD_DD13,
92 GPIO74_LCD_DD14,
93 GPIO75_LCD_DD15,
94 GPIO76_LCD_DD16,
95 GPIO77_LCD_DD17,
96 GPIO78_LCD_DD18,
97 GPIO79_LCD_DD19,
98 GPIO80_LCD_DD20,
99 GPIO81_LCD_DD21,
100 GPIO82_LCD_DD22,
101 GPIO83_LCD_DD23,
Mark F. Brown6aafc5f2010-09-03 18:28:11 -0400102
103 /* Keypad */
104 GPIO109_KP_MKIN1,
105 GPIO110_KP_MKIN0,
106 GPIO111_KP_MKOUT7,
107 GPIO112_KP_MKOUT6,
108 GPIO121_KP_MKIN4,
Eric Miao9c291f02009-02-10 10:35:25 +0800109};
110
Eric Miaoa6b993c2009-02-18 16:38:22 +0800111static struct smc91x_platdata smc91x_info = {
112 .flags = SMC91X_USE_16BIT | SMC91X_NOWAIT,
113};
114
115static struct resource smc91x_resources[] = {
116 [0] = {
117 .start = SMC_CS1_PHYS_BASE + 0x300,
118 .end = SMC_CS1_PHYS_BASE + 0xfffff,
119 .flags = IORESOURCE_MEM,
120 },
121 [1] = {
Haojian Zhuang4929f5a2011-10-10 16:03:51 +0800122 .start = MMP_GPIO_TO_IRQ(27),
123 .end = MMP_GPIO_TO_IRQ(27),
Eric Miaoa6b993c2009-02-18 16:38:22 +0800124 .flags = IORESOURCE_IRQ | IORESOURCE_IRQ_HIGHEDGE,
125 }
126};
127
128static struct platform_device smc91x_device = {
129 .name = "smc91x",
130 .id = 0,
131 .dev = {
132 .platform_data = &smc91x_info,
133 },
134 .num_resources = ARRAY_SIZE(smc91x_resources),
135 .resource = smc91x_resources,
136};
137
Haojian Zhuangef559de2009-09-10 14:37:48 +0800138static struct mtd_partition aspenite_nand_partitions[] = {
139 {
140 .name = "bootloader",
141 .offset = 0,
142 .size = SZ_1M,
143 .mask_flags = MTD_WRITEABLE,
144 }, {
145 .name = "reserved",
146 .offset = MTDPART_OFS_APPEND,
147 .size = SZ_128K,
148 .mask_flags = MTD_WRITEABLE,
149 }, {
150 .name = "reserved",
151 .offset = MTDPART_OFS_APPEND,
152 .size = SZ_8M,
153 .mask_flags = MTD_WRITEABLE,
154 }, {
155 .name = "kernel",
156 .offset = MTDPART_OFS_APPEND,
157 .size = (SZ_2M + SZ_1M),
158 .mask_flags = 0,
159 }, {
160 .name = "filesystem",
161 .offset = MTDPART_OFS_APPEND,
Stephen Boyd3f8e2882011-07-26 18:45:54 +0100162 .size = SZ_32M + SZ_16M,
Haojian Zhuangef559de2009-09-10 14:37:48 +0800163 .mask_flags = 0,
164 }
165};
166
167static struct pxa3xx_nand_platform_data aspenite_nand_info = {
168 .enable_arbiter = 1,
Lei Wenf3c8cfc2011-07-14 20:44:33 -0700169 .num_cs = 1,
170 .parts[0] = aspenite_nand_partitions,
171 .nr_parts[0] = ARRAY_SIZE(aspenite_nand_partitions),
Haojian Zhuangef559de2009-09-10 14:37:48 +0800172};
173
Haojian Zhuang07871c12010-03-19 11:55:14 -0400174static struct i2c_board_info aspenite_i2c_info[] __initdata = {
175 { I2C_BOARD_INFO("wm8753", 0x1b), },
176};
177
Mark F. Brown884646a2010-08-25 23:51:55 -0400178static struct fb_videomode video_modes[] = {
179 [0] = {
180 .pixclock = 30120,
181 .refresh = 60,
182 .xres = 800,
183 .yres = 480,
184 .hsync_len = 1,
185 .left_margin = 215,
186 .right_margin = 40,
187 .vsync_len = 1,
188 .upper_margin = 34,
189 .lower_margin = 10,
190 .sync = FB_SYNC_VERT_HIGH_ACT | FB_SYNC_HOR_HIGH_ACT,
191 },
192};
193
194struct pxa168fb_mach_info aspenite_lcd_info = {
195 .id = "Graphic Frame",
196 .modes = video_modes,
197 .num_modes = ARRAY_SIZE(video_modes),
198 .pix_fmt = PIX_FMT_RGB565,
199 .io_pin_allocation_mode = PIN_MODE_DUMB_24,
200 .dumb_mode = DUMB_MODE_RGB888,
201 .active = 1,
202 .panel_rbswap = 0,
203 .invert_pixclock = 0,
204};
205
Mark F. Brown6aafc5f2010-09-03 18:28:11 -0400206static unsigned int aspenite_matrix_key_map[] = {
207 KEY(0, 6, KEY_UP), /* SW 4 */
208 KEY(0, 7, KEY_DOWN), /* SW 5 */
209 KEY(1, 6, KEY_LEFT), /* SW 6 */
210 KEY(1, 7, KEY_RIGHT), /* SW 7 */
211 KEY(4, 6, KEY_ENTER), /* SW 8 */
212 KEY(4, 7, KEY_ESC), /* SW 9 */
213};
214
215static struct pxa27x_keypad_platform_data aspenite_keypad_info __initdata = {
216 .matrix_key_rows = 5,
217 .matrix_key_cols = 8,
218 .matrix_key_map = aspenite_matrix_key_map,
219 .matrix_key_map_size = ARRAY_SIZE(aspenite_matrix_key_map),
220 .debounce_interval = 30,
221};
222
Eric Miao49cbe782009-01-20 14:15:18 +0800223static void __init common_init(void)
224{
Eric Miao9c291f02009-02-10 10:35:25 +0800225 mfp_config(ARRAY_AND_SIZE(common_pin_config));
226
Eric Miaoa6b993c2009-02-18 16:38:22 +0800227 /* on-chip devices */
Eric Miao9c291f02009-02-10 10:35:25 +0800228 pxa168_add_uart(1);
Haojian Zhuang07871c12010-03-19 11:55:14 -0400229 pxa168_add_twsi(1, NULL, ARRAY_AND_SIZE(aspenite_i2c_info));
230 pxa168_add_ssp(1);
Haojian Zhuangef559de2009-09-10 14:37:48 +0800231 pxa168_add_nand(&aspenite_nand_info);
Mark F. Brown884646a2010-08-25 23:51:55 -0400232 pxa168_add_fb(&aspenite_lcd_info);
Mark F. Brown6aafc5f2010-09-03 18:28:11 -0400233 pxa168_add_keypad(&aspenite_keypad_info);
Haojian Zhuang157d2642011-10-17 20:37:52 +0800234 platform_device_register(&pxa168_device_gpio);
Eric Miaoa6b993c2009-02-18 16:38:22 +0800235
236 /* off-chip devices */
237 platform_device_register(&smc91x_device);
Eric Miao49cbe782009-01-20 14:15:18 +0800238}
239
240MACHINE_START(ASPENITE, "PXA168-based Aspenite Development Platform")
Eric Miao80228872010-07-15 17:50:13 +0800241 .map_io = mmp_map_io,
Haojian Zhuang0bd86962010-09-08 09:42:42 -0400242 .nr_irqs = IRQ_BOARD_START,
Eric Miao49cbe782009-01-20 14:15:18 +0800243 .init_irq = pxa168_init_irq,
244 .timer = &pxa168_timer,
245 .init_machine = common_init,
Russell King9854a382011-11-05 15:40:09 +0000246 .restart = pxa168_restart,
Eric Miao49cbe782009-01-20 14:15:18 +0800247MACHINE_END
248
249MACHINE_START(ZYLONITE2, "PXA168-based Zylonite2 Development Platform")
Eric Miao80228872010-07-15 17:50:13 +0800250 .map_io = mmp_map_io,
Haojian Zhuang0bd86962010-09-08 09:42:42 -0400251 .nr_irqs = IRQ_BOARD_START,
Eric Miao49cbe782009-01-20 14:15:18 +0800252 .init_irq = pxa168_init_irq,
253 .timer = &pxa168_timer,
254 .init_machine = common_init,
Russell King9854a382011-11-05 15:40:09 +0000255 .restart = pxa168_restart,
Eric Miao49cbe782009-01-20 14:15:18 +0800256MACHINE_END