blob: 869bce7c3f241697ab4262550b3d2e138bb4edad [file] [log] [blame]
eric miao2c8086a2007-09-11 19:13:17 -07001/*
2 * linux/arch/arm/mach-pxa/zylonite_pxa300.c
3 *
4 * PXA300/PXA310 specific support code for the
5 * PXA3xx Development Platform (aka Zylonite)
6 *
7 * Copyright (C) 2007 Marvell Internation Ltd.
eric miaoe9bba8e2007-10-30 08:01:38 +01008 * 2007-08-21: eric miao <eric.miao@marvell.com>
eric miao2c8086a2007-09-11 19:13:17 -07009 * initial version
10 *
11 * This program is free software; you can redistribute it and/or modify
12 * it under the terms of the GNU General Public License version 2 as
13 * published by the Free Software Foundation.
14 */
15
16#include <linux/module.h>
17#include <linux/kernel.h>
18#include <linux/init.h>
Eric Miaoa1f7fc42008-05-28 10:44:16 +080019#include <linux/i2c.h>
Sebastian Andrzej Siewiorb4593962011-02-23 12:38:16 +010020#include <linux/i2c/pxa-i2c.h>
Vivien Didelot58774572013-08-29 15:24:14 -040021#include <linux/platform_data/pca953x.h>
Eric Miao51c62982009-01-02 23:17:22 +080022#include <linux/gpio.h>
eric miao2c8086a2007-09-11 19:13:17 -070023
Eric Miao51c62982009-01-02 23:17:22 +080024#include <mach/pxa300.h>
Russell Kinga09e64f2008-08-05 16:14:15 +010025#include <mach/zylonite.h>
eric miao2c8086a2007-09-11 19:13:17 -070026
eric miao3d3934c2008-02-03 15:49:09 +080027#include "generic.h"
eric miao2c8086a2007-09-11 19:13:17 -070028
29/* PXA300/PXA310 common configurations */
30static mfp_cfg_t common_mfp_cfg[] __initdata = {
31 /* LCD */
32 GPIO54_LCD_LDD_0,
33 GPIO55_LCD_LDD_1,
34 GPIO56_LCD_LDD_2,
35 GPIO57_LCD_LDD_3,
36 GPIO58_LCD_LDD_4,
37 GPIO59_LCD_LDD_5,
38 GPIO60_LCD_LDD_6,
39 GPIO61_LCD_LDD_7,
40 GPIO62_LCD_LDD_8,
41 GPIO63_LCD_LDD_9,
42 GPIO64_LCD_LDD_10,
43 GPIO65_LCD_LDD_11,
44 GPIO66_LCD_LDD_12,
45 GPIO67_LCD_LDD_13,
46 GPIO68_LCD_LDD_14,
47 GPIO69_LCD_LDD_15,
48 GPIO70_LCD_LDD_16,
49 GPIO71_LCD_LDD_17,
50 GPIO72_LCD_FCLK,
51 GPIO73_LCD_LCLK,
52 GPIO74_LCD_PCLK,
53 GPIO75_LCD_BIAS,
54 GPIO76_LCD_VSYNC,
55 GPIO127_LCD_CS_N,
eric miao5cca9142008-04-13 21:46:34 +010056 GPIO20_PWM3_OUT, /* backlight */
eric miao2c8086a2007-09-11 19:13:17 -070057
58 /* BTUART */
59 GPIO111_UART2_RTS,
Russell Kinga10476d2008-01-08 15:25:01 +000060 GPIO112_UART2_RXD | MFP_LPM_EDGE_FALL,
eric miao2c8086a2007-09-11 19:13:17 -070061 GPIO113_UART2_TXD,
Russell Kinga10476d2008-01-08 15:25:01 +000062 GPIO114_UART2_CTS | MFP_LPM_EDGE_BOTH,
eric miao2c8086a2007-09-11 19:13:17 -070063
64 /* STUART */
65 GPIO109_UART3_TXD,
Russell Kinga10476d2008-01-08 15:25:01 +000066 GPIO110_UART3_RXD | MFP_LPM_EDGE_FALL,
eric miao2c8086a2007-09-11 19:13:17 -070067
68 /* AC97 */
69 GPIO23_AC97_nACRESET,
70 GPIO24_AC97_SYSCLK,
71 GPIO29_AC97_BITCLK,
72 GPIO25_AC97_SDATA_IN_0,
73 GPIO27_AC97_SDATA_OUT,
74 GPIO28_AC97_SYNC,
Eric Miao15fbc932009-04-22 18:34:36 +080075 GPIO17_GPIO, /* SDATA_IN_1 but unused - configure to GPIO */
eric miao2c8086a2007-09-11 19:13:17 -070076
Mark Brown58d27fc2008-07-10 17:52:10 +010077 /* SSP3 */
78 GPIO91_SSP3_SCLK,
79 GPIO92_SSP3_FRM,
80 GPIO93_SSP3_TXD,
81 GPIO94_SSP3_RXD,
82
Mark Brown768dec42008-04-15 15:50:49 +010083 /* WM9713 IRQ */
84 GPIO26_GPIO,
85
eric miao2c8086a2007-09-11 19:13:17 -070086 /* Keypad */
Russell Kinga10476d2008-01-08 15:25:01 +000087 GPIO107_KP_DKIN_0 | MFP_LPM_EDGE_BOTH,
88 GPIO108_KP_DKIN_1 | MFP_LPM_EDGE_BOTH,
89 GPIO115_KP_MKIN_0 | MFP_LPM_EDGE_BOTH,
90 GPIO116_KP_MKIN_1 | MFP_LPM_EDGE_BOTH,
91 GPIO117_KP_MKIN_2 | MFP_LPM_EDGE_BOTH,
92 GPIO118_KP_MKIN_3 | MFP_LPM_EDGE_BOTH,
93 GPIO119_KP_MKIN_4 | MFP_LPM_EDGE_BOTH,
94 GPIO120_KP_MKIN_5 | MFP_LPM_EDGE_BOTH,
95 GPIO2_2_KP_MKIN_6 | MFP_LPM_EDGE_BOTH,
96 GPIO3_2_KP_MKIN_7 | MFP_LPM_EDGE_BOTH,
eric miao2c8086a2007-09-11 19:13:17 -070097 GPIO121_KP_MKOUT_0,
98 GPIO122_KP_MKOUT_1,
99 GPIO123_KP_MKOUT_2,
100 GPIO124_KP_MKOUT_3,
101 GPIO125_KP_MKOUT_4,
102 GPIO4_2_KP_MKOUT_5,
103 GPIO5_2_KP_MKOUT_6,
104 GPIO6_2_KP_MKOUT_7,
Bridge Wufafc9d32007-12-21 19:00:13 +0800105
106 /* MMC1 */
107 GPIO3_MMC1_DAT0,
Russell Kinga10476d2008-01-08 15:25:01 +0000108 GPIO4_MMC1_DAT1 | MFP_LPM_EDGE_BOTH,
Bridge Wufafc9d32007-12-21 19:00:13 +0800109 GPIO5_MMC1_DAT2,
110 GPIO6_MMC1_DAT3,
111 GPIO7_MMC1_CLK,
112 GPIO8_MMC1_CMD, /* CMD0 for slot 0 */
113 GPIO15_GPIO, /* CMD1 default as GPIO for slot 0 */
Bridge Wu8d33b052007-12-21 19:15:36 +0800114
115 /* MMC2 */
116 GPIO9_MMC2_DAT0,
Russell Kinga10476d2008-01-08 15:25:01 +0000117 GPIO10_MMC2_DAT1 | MFP_LPM_EDGE_BOTH,
Bridge Wu8d33b052007-12-21 19:15:36 +0800118 GPIO11_MMC2_DAT2,
119 GPIO12_MMC2_DAT3,
120 GPIO13_MMC2_CLK,
121 GPIO14_MMC2_CMD,
Eric Miaoa1f7fc42008-05-28 10:44:16 +0800122
Eric Miao7ff43532008-09-27 18:05:49 +0800123 /* USB Host */
124 GPIO0_2_USBH_PEN,
125 GPIO1_2_USBH_PWR,
126
Eric Miaoa1f7fc42008-05-28 10:44:16 +0800127 /* Standard I2C */
128 GPIO21_I2C_SCL,
129 GPIO22_I2C_SDA,
Eric Miaob49e3852009-04-22 18:38:40 +0800130
131 /* GPIO */
Haojian Zhuangf91e4902009-12-22 07:29:40 -0500132 GPIO18_GPIO | MFP_PULL_HIGH, /* GPIO Expander #0 INT_N */
133 GPIO19_GPIO | MFP_PULL_HIGH, /* GPIO Expander #1 INT_N */
eric miao2c8086a2007-09-11 19:13:17 -0700134};
135
136static mfp_cfg_t pxa300_mfp_cfg[] __initdata = {
137 /* FFUART */
Russell Kinga10476d2008-01-08 15:25:01 +0000138 GPIO30_UART1_RXD | MFP_LPM_EDGE_FALL,
eric miao2c8086a2007-09-11 19:13:17 -0700139 GPIO31_UART1_TXD,
140 GPIO32_UART1_CTS,
141 GPIO37_UART1_RTS,
142 GPIO33_UART1_DCD,
Russell Kinga10476d2008-01-08 15:25:01 +0000143 GPIO34_UART1_DSR | MFP_LPM_EDGE_FALL,
eric miao2c8086a2007-09-11 19:13:17 -0700144 GPIO35_UART1_RI,
145 GPIO36_UART1_DTR,
146
147 /* Ethernet */
148 GPIO2_nCS3,
149 GPIO99_GPIO,
150};
151
152static mfp_cfg_t pxa310_mfp_cfg[] __initdata = {
153 /* FFUART */
Russell Kinga10476d2008-01-08 15:25:01 +0000154 GPIO99_UART1_RXD | MFP_LPM_EDGE_FALL,
eric miao2c8086a2007-09-11 19:13:17 -0700155 GPIO100_UART1_TXD,
156 GPIO101_UART1_CTS,
157 GPIO106_UART1_RTS,
158
159 /* Ethernet */
160 GPIO2_nCS3,
161 GPIO102_GPIO,
Bridge Wu5a1f21b2007-12-21 19:27:08 +0800162
163 /* MMC3 */
164 GPIO7_2_MMC3_DAT0,
Russell Kinga10476d2008-01-08 15:25:01 +0000165 GPIO8_2_MMC3_DAT1 | MFP_LPM_EDGE_BOTH,
Bridge Wu5a1f21b2007-12-21 19:27:08 +0800166 GPIO9_2_MMC3_DAT2,
167 GPIO10_2_MMC3_DAT3,
168 GPIO103_MMC3_CLK,
169 GPIO105_MMC3_CMD,
eric miao2c8086a2007-09-11 19:13:17 -0700170};
171
172#define NUM_LCD_DETECT_PINS 7
173
174static int lcd_detect_pins[] __initdata = {
175 MFP_PIN_GPIO71, /* LCD_LDD_17 - ORIENT */
176 MFP_PIN_GPIO70, /* LCD_LDD_16 - LCDID[5] */
177 MFP_PIN_GPIO75, /* LCD_BIAS - LCDID[4] */
178 MFP_PIN_GPIO73, /* LCD_LCLK - LCDID[3] */
179 MFP_PIN_GPIO72, /* LCD_FCLK - LCDID[2] */
180 MFP_PIN_GPIO127,/* LCD_CS_N - LCDID[1] */
181 MFP_PIN_GPIO76, /* LCD_VSYNC - LCDID[0] */
182};
183
184static void __init zylonite_detect_lcd_panel(void)
185{
186 unsigned long mfpr_save[NUM_LCD_DETECT_PINS];
187 int i, gpio, id = 0;
188
189 /* save the original MFP settings of these pins and configure
190 * them as GPIO Input, DS01X, Pull Neither, Edge Clear
191 */
192 for (i = 0; i < NUM_LCD_DETECT_PINS; i++) {
193 mfpr_save[i] = pxa3xx_mfp_read(lcd_detect_pins[i]);
194 pxa3xx_mfp_write(lcd_detect_pins[i], 0x8440);
195 }
196
197 for (i = 0; i < NUM_LCD_DETECT_PINS; i++) {
198 id = id << 1;
199 gpio = mfp_to_gpio(lcd_detect_pins[i]);
Haojian Zhuangeb906912009-07-15 19:47:24 +0800200 gpio_request(gpio, "LCD_ID_PINS");
eric miao2c8086a2007-09-11 19:13:17 -0700201 gpio_direction_input(gpio);
202
203 if (gpio_get_value(gpio))
204 id = id | 0x1;
Haojian Zhuangeb906912009-07-15 19:47:24 +0800205 gpio_free(gpio);
eric miao2c8086a2007-09-11 19:13:17 -0700206 }
207
208 /* lcd id, flush out bit 1 */
209 lcd_id = id & 0x3d;
210
211 /* lcd orientation, portrait or landscape */
212 lcd_orientation = (id >> 6) & 0x1;
213
214 /* restore the original MFP settings */
215 for (i = 0; i < NUM_LCD_DETECT_PINS; i++)
216 pxa3xx_mfp_write(lcd_detect_pins[i], mfpr_save[i]);
217}
218
Eric Miaoa1f7fc42008-05-28 10:44:16 +0800219#if defined(CONFIG_I2C) || defined(CONFIG_I2C_MODULE)
220static struct pca953x_platform_data gpio_exp[] = {
221 [0] = {
222 .gpio_base = 128,
223 },
224 [1] = {
225 .gpio_base = 144,
226 },
227};
228
Mark Browna461a8d2008-08-26 10:58:54 +0100229static struct i2c_board_info zylonite_i2c_board_info[] = {
Eric Miaoa1f7fc42008-05-28 10:44:16 +0800230 {
231 .type = "pca9539",
232 .addr = 0x74,
233 .platform_data = &gpio_exp[0],
Haojian Zhuang6384fda2011-10-10 14:21:08 +0800234 .irq = PXA_GPIO_TO_IRQ(18),
Eric Miaoa1f7fc42008-05-28 10:44:16 +0800235 }, {
236 .type = "pca9539",
237 .addr = 0x75,
238 .platform_data = &gpio_exp[1],
Haojian Zhuang6384fda2011-10-10 14:21:08 +0800239 .irq = PXA_GPIO_TO_IRQ(19),
Eric Miaoa1f7fc42008-05-28 10:44:16 +0800240 },
241};
242
243static void __init zylonite_init_i2c(void)
244{
245 pxa_set_i2c_info(NULL);
246 i2c_register_board_info(0, ARRAY_AND_SIZE(zylonite_i2c_board_info));
247}
248#else
249static inline void zylonite_init_i2c(void) {}
250#endif
251
eric miao2c8086a2007-09-11 19:13:17 -0700252void __init zylonite_pxa300_init(void)
253{
254 if (cpu_is_pxa300() || cpu_is_pxa310()) {
255 /* initialize MFP */
256 pxa3xx_mfp_config(ARRAY_AND_SIZE(common_mfp_cfg));
257
258 /* detect LCD panel */
259 zylonite_detect_lcd_panel();
260
Mark Brown768dec42008-04-15 15:50:49 +0100261 /* WM9713 IRQ */
262 wm9713_irq = mfp_to_gpio(MFP_PIN_GPIO26);
Eric Miaoa1f7fc42008-05-28 10:44:16 +0800263
264 zylonite_init_i2c();
eric miao2c8086a2007-09-11 19:13:17 -0700265 }
266
267 if (cpu_is_pxa300()) {
268 pxa3xx_mfp_config(ARRAY_AND_SIZE(pxa300_mfp_cfg));
269 gpio_eth_irq = mfp_to_gpio(MFP_PIN_GPIO99);
270 }
271
272 if (cpu_is_pxa310()) {
273 pxa3xx_mfp_config(ARRAY_AND_SIZE(pxa310_mfp_cfg));
274 gpio_eth_irq = mfp_to_gpio(MFP_PIN_GPIO102);
eric miao2c8086a2007-09-11 19:13:17 -0700275 }
Eric Miao5c9f50e2008-06-17 19:03:54 +0800276
277 /* GPIOs for Debug LEDs */
278 gpio_debug_led1 = EXT_GPIO(25);
279 gpio_debug_led2 = EXT_GPIO(26);
eric miao2c8086a2007-09-11 19:13:17 -0700280}