blob: 83d020879581f5438fc1165885fae3140ec11d68 [file] [log] [blame]
Marek Vašutb5e4ad52008-07-07 17:25:46 +01001/*
2 * Hardware definitions for PalmTX
3 *
4 * Author: Marek Vasut <marek.vasut@gmail.com>
5 *
6 * Based on work of:
7 * Alex Osborne <ato@meshy.org>
8 * Cristiano P. <cristianop@users.sourceforge.net>
9 * Jan Herman <2hp@seznam.cz>
10 * Michal Hrusecky
11 *
12 * This program is free software; you can redistribute it and/or modify
13 * it under the terms of the GNU General Public License version 2 as
14 * published by the Free Software Foundation.
15 *
16 * (find more info at www.hackndev.com)
17 *
18 */
19
20#include <linux/platform_device.h>
21#include <linux/delay.h>
22#include <linux/irq.h>
23#include <linux/gpio_keys.h>
24#include <linux/input.h>
Marek Vašutd4b19c42008-07-07 17:31:58 +010025#include <linux/pda_power.h>
Marek Vašutb5e4ad52008-07-07 17:25:46 +010026#include <linux/pwm_backlight.h>
27#include <linux/gpio.h>
Marek Vašut4e9687d2008-09-11 19:37:32 +010028#include <linux/wm97xx_batt.h>
29#include <linux/power_supply.h>
Marek Vasut8768dc92009-04-23 11:12:37 +020030#include <linux/usb/gpio_vbus.h>
Marek Vašutb5e4ad52008-07-07 17:25:46 +010031
32#include <asm/mach-types.h>
33#include <asm/mach/arch.h>
34#include <asm/mach/map.h>
35
Eric Miao51c62982009-01-02 23:17:22 +080036#include <mach/pxa27x.h>
Russell Kinga09e64f2008-08-05 16:14:15 +010037#include <mach/audio.h>
38#include <mach/palmtx.h>
39#include <mach/mmc.h>
40#include <mach/pxafb.h>
Russell Kinga09e64f2008-08-05 16:14:15 +010041#include <mach/irda.h>
42#include <mach/pxa27x_keypad.h>
43#include <mach/udc.h>
Marek Vasute91fb912009-04-17 11:37:35 +020044#include <mach/palmasoc.h>
Marek Vašutb5e4ad52008-07-07 17:25:46 +010045
46#include "generic.h"
47#include "devices.h"
48
49/******************************************************************************
50 * Pin configuration
51 ******************************************************************************/
52static unsigned long palmtx_pin_config[] __initdata = {
53 /* MMC */
54 GPIO32_MMC_CLK,
55 GPIO92_MMC_DAT_0,
56 GPIO109_MMC_DAT_1,
57 GPIO110_MMC_DAT_2,
58 GPIO111_MMC_DAT_3,
59 GPIO112_MMC_CMD,
Marek Vasuta730b322008-11-20 17:34:57 +010060 GPIO14_GPIO, /* SD detect */
61 GPIO114_GPIO, /* SD power */
62 GPIO115_GPIO, /* SD r/o switch */
Marek Vašutb5e4ad52008-07-07 17:25:46 +010063
64 /* AC97 */
65 GPIO28_AC97_BITCLK,
66 GPIO29_AC97_SDATA_IN_0,
67 GPIO30_AC97_SDATA_OUT,
68 GPIO31_AC97_SYNC,
Marek Vasut6ec04f42009-05-22 01:39:10 +020069 GPIO89_AC97_SYSCLK,
Marek Vasutefb12cd2009-04-12 16:37:23 +020070 GPIO95_AC97_nRESET,
Marek Vašutb5e4ad52008-07-07 17:25:46 +010071
72 /* IrDA */
Marek Vasuta730b322008-11-20 17:34:57 +010073 GPIO40_GPIO, /* ir disable */
Marek Vašutb5e4ad52008-07-07 17:25:46 +010074 GPIO46_FICP_RXD,
75 GPIO47_FICP_TXD,
76
77 /* PWM */
78 GPIO16_PWM0_OUT,
79
80 /* USB */
Marek Vasuta730b322008-11-20 17:34:57 +010081 GPIO13_GPIO, /* usb detect */
Marek Vasutefb12cd2009-04-12 16:37:23 +020082 GPIO93_GPIO, /* usb power */
Marek Vašut35978402008-07-07 17:28:59 +010083
84 /* PCMCIA */
85 GPIO48_nPOE,
86 GPIO49_nPWE,
87 GPIO50_nPIOR,
88 GPIO51_nPIOW,
89 GPIO85_nPCE_1,
90 GPIO54_nPCE_2,
91 GPIO79_PSKTSEL,
92 GPIO55_nPREG,
93 GPIO56_nPWAIT,
94 GPIO57_nIOIS16,
Marek Vasuta730b322008-11-20 17:34:57 +010095 GPIO94_GPIO, /* wifi power 1 */
96 GPIO108_GPIO, /* wifi power 2 */
97 GPIO116_GPIO, /* wifi ready */
98
99 /* MATRIX KEYPAD */
Marek Vasut81854f82009-03-28 12:37:42 +0100100 GPIO100_KP_MKIN_0 | WAKEUP_ON_LEVEL_HIGH,
101 GPIO101_KP_MKIN_1 | WAKEUP_ON_LEVEL_HIGH,
102 GPIO102_KP_MKIN_2 | WAKEUP_ON_LEVEL_HIGH,
103 GPIO97_KP_MKIN_3 | WAKEUP_ON_LEVEL_HIGH,
Marek Vasuta730b322008-11-20 17:34:57 +0100104 GPIO103_KP_MKOUT_0,
105 GPIO104_KP_MKOUT_1,
106 GPIO105_KP_MKOUT_2,
107
108 /* LCD */
109 GPIO58_LCD_LDD_0,
110 GPIO59_LCD_LDD_1,
111 GPIO60_LCD_LDD_2,
112 GPIO61_LCD_LDD_3,
113 GPIO62_LCD_LDD_4,
114 GPIO63_LCD_LDD_5,
115 GPIO64_LCD_LDD_6,
116 GPIO65_LCD_LDD_7,
117 GPIO66_LCD_LDD_8,
118 GPIO67_LCD_LDD_9,
119 GPIO68_LCD_LDD_10,
120 GPIO69_LCD_LDD_11,
121 GPIO70_LCD_LDD_12,
122 GPIO71_LCD_LDD_13,
123 GPIO72_LCD_LDD_14,
124 GPIO73_LCD_LDD_15,
125 GPIO74_LCD_FCLK,
126 GPIO75_LCD_LCLK,
127 GPIO76_LCD_PCLK,
128 GPIO77_LCD_BIAS,
129
Marek Vasutecf763c2009-07-16 19:37:29 +0200130 /* FFUART */
131 GPIO34_FFUART_RXD,
132 GPIO39_FFUART_TXD,
133
Marek Vasuta730b322008-11-20 17:34:57 +0100134 /* MISC. */
135 GPIO10_GPIO, /* hotsync button */
136 GPIO12_GPIO, /* power detect */
137 GPIO107_GPIO, /* earphone detect */
Marek Vašutb5e4ad52008-07-07 17:25:46 +0100138};
139
140/******************************************************************************
141 * SD/MMC card controller
142 ******************************************************************************/
143static int palmtx_mci_init(struct device *dev, irq_handler_t palmtx_detect_int,
144 void *data)
145{
146 int err = 0;
147
148 /* Setup an interrupt for detecting card insert/remove events */
Marek Vasuta730b322008-11-20 17:34:57 +0100149 err = gpio_request(GPIO_NR_PALMTX_SD_DETECT_N, "SD IRQ");
150 if (err)
151 goto err;
152 err = gpio_direction_input(GPIO_NR_PALMTX_SD_DETECT_N);
153 if (err)
154 goto err2;
155 err = request_irq(gpio_to_irq(GPIO_NR_PALMTX_SD_DETECT_N),
156 palmtx_detect_int, IRQF_DISABLED | IRQF_SAMPLE_RANDOM |
Marek Vašutb5e4ad52008-07-07 17:25:46 +0100157 IRQF_TRIGGER_FALLING | IRQF_TRIGGER_RISING,
158 "SD/MMC card detect", data);
159 if (err) {
160 printk(KERN_ERR "%s: cannot request SD/MMC card detect IRQ\n",
161 __func__);
Marek Vasuta730b322008-11-20 17:34:57 +0100162 goto err2;
Marek Vašutb5e4ad52008-07-07 17:25:46 +0100163 }
164
165 err = gpio_request(GPIO_NR_PALMTX_SD_POWER, "SD_POWER");
166 if (err)
Marek Vasuta730b322008-11-20 17:34:57 +0100167 goto err3;
168 err = gpio_direction_output(GPIO_NR_PALMTX_SD_POWER, 0);
169 if (err)
170 goto err4;
Marek Vašutb5e4ad52008-07-07 17:25:46 +0100171
172 err = gpio_request(GPIO_NR_PALMTX_SD_READONLY, "SD_READONLY");
173 if (err)
Marek Vasuta730b322008-11-20 17:34:57 +0100174 goto err4;
175 err = gpio_direction_input(GPIO_NR_PALMTX_SD_READONLY);
176 if (err)
177 goto err5;
Marek Vašutb5e4ad52008-07-07 17:25:46 +0100178
179 printk(KERN_DEBUG "%s: irq registered\n", __func__);
180
181 return 0;
182
Marek Vasuta730b322008-11-20 17:34:57 +0100183err5:
184 gpio_free(GPIO_NR_PALMTX_SD_READONLY);
185err4:
Marek Vašutb5e4ad52008-07-07 17:25:46 +0100186 gpio_free(GPIO_NR_PALMTX_SD_POWER);
Marek Vasuta730b322008-11-20 17:34:57 +0100187err3:
188 free_irq(gpio_to_irq(GPIO_NR_PALMTX_SD_DETECT_N), data);
189err2:
190 gpio_free(GPIO_NR_PALMTX_SD_DETECT_N);
191err:
Marek Vašutb5e4ad52008-07-07 17:25:46 +0100192 return err;
193}
194
195static void palmtx_mci_exit(struct device *dev, void *data)
196{
197 gpio_free(GPIO_NR_PALMTX_SD_READONLY);
198 gpio_free(GPIO_NR_PALMTX_SD_POWER);
Marek Vasuta730b322008-11-20 17:34:57 +0100199 free_irq(gpio_to_irq(GPIO_NR_PALMTX_SD_DETECT_N), data);
200 gpio_free(GPIO_NR_PALMTX_SD_DETECT_N);
Marek Vašutb5e4ad52008-07-07 17:25:46 +0100201}
202
203static void palmtx_mci_power(struct device *dev, unsigned int vdd)
204{
205 struct pxamci_platform_data *p_d = dev->platform_data;
206 gpio_set_value(GPIO_NR_PALMTX_SD_POWER, p_d->ocr_mask & (1 << vdd));
207}
208
209static int palmtx_mci_get_ro(struct device *dev)
210{
211 return gpio_get_value(GPIO_NR_PALMTX_SD_READONLY);
212}
213
214static struct pxamci_platform_data palmtx_mci_platform_data = {
215 .ocr_mask = MMC_VDD_32_33 | MMC_VDD_33_34,
216 .setpower = palmtx_mci_power,
217 .get_ro = palmtx_mci_get_ro,
218 .init = palmtx_mci_init,
219 .exit = palmtx_mci_exit,
220};
221
222/******************************************************************************
223 * GPIO keyboard
224 ******************************************************************************/
225static unsigned int palmtx_matrix_keys[] = {
226 KEY(0, 0, KEY_POWER),
227 KEY(0, 1, KEY_F1),
228 KEY(0, 2, KEY_ENTER),
229
230 KEY(1, 0, KEY_F2),
231 KEY(1, 1, KEY_F3),
232 KEY(1, 2, KEY_F4),
233
234 KEY(2, 0, KEY_UP),
235 KEY(2, 2, KEY_DOWN),
236
237 KEY(3, 0, KEY_RIGHT),
238 KEY(3, 2, KEY_LEFT),
Marek Vašutb5e4ad52008-07-07 17:25:46 +0100239};
240
241static struct pxa27x_keypad_platform_data palmtx_keypad_platform_data = {
242 .matrix_key_rows = 4,
243 .matrix_key_cols = 3,
244 .matrix_key_map = palmtx_matrix_keys,
245 .matrix_key_map_size = ARRAY_SIZE(palmtx_matrix_keys),
246
247 .debounce_interval = 30,
248};
249
250/******************************************************************************
251 * GPIO keys
252 ******************************************************************************/
253static struct gpio_keys_button palmtx_pxa_buttons[] = {
254 {KEY_F8, GPIO_NR_PALMTX_HOTSYNC_BUTTON_N, 1, "HotSync Button" },
255};
256
257static struct gpio_keys_platform_data palmtx_pxa_keys_data = {
258 .buttons = palmtx_pxa_buttons,
259 .nbuttons = ARRAY_SIZE(palmtx_pxa_buttons),
260};
261
262static struct platform_device palmtx_pxa_keys = {
263 .name = "gpio-keys",
264 .id = -1,
265 .dev = {
266 .platform_data = &palmtx_pxa_keys_data,
267 },
268};
269
270/******************************************************************************
271 * Backlight
272 ******************************************************************************/
273static int palmtx_backlight_init(struct device *dev)
274{
275 int ret;
276
277 ret = gpio_request(GPIO_NR_PALMTX_BL_POWER, "BL POWER");
278 if (ret)
279 goto err;
Marek Vasuta730b322008-11-20 17:34:57 +0100280 ret = gpio_direction_output(GPIO_NR_PALMTX_BL_POWER, 0);
281 if (ret)
282 goto err2;
Marek Vašutb5e4ad52008-07-07 17:25:46 +0100283 ret = gpio_request(GPIO_NR_PALMTX_LCD_POWER, "LCD POWER");
284 if (ret)
285 goto err2;
Marek Vasuta730b322008-11-20 17:34:57 +0100286 ret = gpio_direction_output(GPIO_NR_PALMTX_LCD_POWER, 0);
287 if (ret)
288 goto err3;
Marek Vašutb5e4ad52008-07-07 17:25:46 +0100289
290 return 0;
Marek Vasuta730b322008-11-20 17:34:57 +0100291err3:
292 gpio_free(GPIO_NR_PALMTX_LCD_POWER);
Marek Vašutb5e4ad52008-07-07 17:25:46 +0100293err2:
294 gpio_free(GPIO_NR_PALMTX_BL_POWER);
295err:
296 return ret;
297}
298
299static int palmtx_backlight_notify(int brightness)
300{
301 gpio_set_value(GPIO_NR_PALMTX_BL_POWER, brightness);
302 gpio_set_value(GPIO_NR_PALMTX_LCD_POWER, brightness);
303 return brightness;
304}
305
306static void palmtx_backlight_exit(struct device *dev)
307{
308 gpio_free(GPIO_NR_PALMTX_BL_POWER);
309 gpio_free(GPIO_NR_PALMTX_LCD_POWER);
310}
311
312static struct platform_pwm_backlight_data palmtx_backlight_data = {
313 .pwm_id = 0,
314 .max_brightness = PALMTX_MAX_INTENSITY,
315 .dft_brightness = PALMTX_MAX_INTENSITY,
316 .pwm_period_ns = PALMTX_PERIOD_NS,
317 .init = palmtx_backlight_init,
318 .notify = palmtx_backlight_notify,
319 .exit = palmtx_backlight_exit,
320};
321
322static struct platform_device palmtx_backlight = {
323 .name = "pwm-backlight",
324 .dev = {
325 .parent = &pxa27x_device_pwm0.dev,
326 .platform_data = &palmtx_backlight_data,
327 },
328};
329
330/******************************************************************************
331 * IrDA
332 ******************************************************************************/
Marek Vasuta730b322008-11-20 17:34:57 +0100333static int palmtx_irda_startup(struct device *dev)
334{
335 int err;
336 err = gpio_request(GPIO_NR_PALMTX_IR_DISABLE, "IR DISABLE");
337 if (err)
338 goto err;
339 err = gpio_direction_output(GPIO_NR_PALMTX_IR_DISABLE, 1);
340 if (err)
341 gpio_free(GPIO_NR_PALMTX_IR_DISABLE);
342err:
343 return err;
344}
345
346static void palmtx_irda_shutdown(struct device *dev)
347{
348 gpio_free(GPIO_NR_PALMTX_IR_DISABLE);
349}
350
Marek Vašutb5e4ad52008-07-07 17:25:46 +0100351static void palmtx_irda_transceiver_mode(struct device *dev, int mode)
352{
353 gpio_set_value(GPIO_NR_PALMTX_IR_DISABLE, mode & IR_OFF);
354 pxa2xx_transceiver_mode(dev, mode);
355}
356
357static struct pxaficp_platform_data palmtx_ficp_platform_data = {
Marek Vasuta730b322008-11-20 17:34:57 +0100358 .startup = palmtx_irda_startup,
359 .shutdown = palmtx_irda_shutdown,
Marek Vašutb5e4ad52008-07-07 17:25:46 +0100360 .transceiver_cap = IR_SIRMODE | IR_FIRMODE | IR_OFF,
361 .transceiver_mode = palmtx_irda_transceiver_mode,
362};
363
364/******************************************************************************
365 * UDC
366 ******************************************************************************/
Marek Vasut8768dc92009-04-23 11:12:37 +0200367static struct gpio_vbus_mach_info palmtx_udc_info = {
Marek Vašutb5e4ad52008-07-07 17:25:46 +0100368 .gpio_vbus = GPIO_NR_PALMTX_USB_DETECT_N,
369 .gpio_vbus_inverted = 1,
Marek Vasutefb12cd2009-04-12 16:37:23 +0200370 .gpio_pullup = GPIO_NR_PALMTX_USB_PULLUP,
Marek Vasut8768dc92009-04-23 11:12:37 +0200371};
372
373static struct platform_device palmtx_gpio_vbus = {
374 .name = "gpio-vbus",
375 .id = -1,
376 .dev = {
377 .platform_data = &palmtx_udc_info,
378 },
Marek Vašutb5e4ad52008-07-07 17:25:46 +0100379};
380
381/******************************************************************************
Marek Vašutd4b19c42008-07-07 17:31:58 +0100382 * Power supply
383 ******************************************************************************/
384static int power_supply_init(struct device *dev)
385{
386 int ret;
387
388 ret = gpio_request(GPIO_NR_PALMTX_POWER_DETECT, "CABLE_STATE_AC");
389 if (ret)
Marek Vasuta730b322008-11-20 17:34:57 +0100390 goto err1;
391 ret = gpio_direction_input(GPIO_NR_PALMTX_POWER_DETECT);
Marek Vašutd4b19c42008-07-07 17:31:58 +0100392 if (ret)
Marek Vasuta730b322008-11-20 17:34:57 +0100393 goto err2;
Marek Vašutd4b19c42008-07-07 17:31:58 +0100394
395 return 0;
396
Marek Vasuta730b322008-11-20 17:34:57 +0100397err2:
Marek Vašutd4b19c42008-07-07 17:31:58 +0100398 gpio_free(GPIO_NR_PALMTX_POWER_DETECT);
Marek Vasuta730b322008-11-20 17:34:57 +0100399err1:
Marek Vašutd4b19c42008-07-07 17:31:58 +0100400 return ret;
401}
402
403static int palmtx_is_ac_online(void)
404{
405 return gpio_get_value(GPIO_NR_PALMTX_POWER_DETECT);
406}
407
Marek Vašutd4b19c42008-07-07 17:31:58 +0100408static void power_supply_exit(struct device *dev)
409{
Marek Vašutd4b19c42008-07-07 17:31:58 +0100410 gpio_free(GPIO_NR_PALMTX_POWER_DETECT);
411}
412
413static char *palmtx_supplicants[] = {
414 "main-battery",
415};
416
417static struct pda_power_pdata power_supply_info = {
418 .init = power_supply_init,
419 .is_ac_online = palmtx_is_ac_online,
Marek Vašutd4b19c42008-07-07 17:31:58 +0100420 .exit = power_supply_exit,
421 .supplied_to = palmtx_supplicants,
422 .num_supplicants = ARRAY_SIZE(palmtx_supplicants),
423};
424
425static struct platform_device power_supply = {
426 .name = "pda-power",
427 .id = -1,
428 .dev = {
429 .platform_data = &power_supply_info,
430 },
431};
432
433/******************************************************************************
Marek Vašut4e9687d2008-09-11 19:37:32 +0100434 * WM97xx battery
435 ******************************************************************************/
436static struct wm97xx_batt_info wm97xx_batt_pdata = {
437 .batt_aux = WM97XX_AUX_ID3,
438 .temp_aux = WM97XX_AUX_ID2,
439 .charge_gpio = -1,
440 .max_voltage = PALMTX_BAT_MAX_VOLTAGE,
441 .min_voltage = PALMTX_BAT_MIN_VOLTAGE,
442 .batt_mult = 1000,
443 .batt_div = 414,
444 .temp_mult = 1,
445 .temp_div = 1,
446 .batt_tech = POWER_SUPPLY_TECHNOLOGY_LIPO,
447 .batt_name = "main-batt",
448};
449
450/******************************************************************************
Marek Vasute91fb912009-04-17 11:37:35 +0200451 * aSoC audio
452 ******************************************************************************/
453static struct palm27x_asoc_info palmtx_asoc_pdata = {
454 .jack_gpio = GPIO_NR_PALMTX_EARPHONE_DETECT,
455};
456
457static pxa2xx_audio_ops_t palmtx_ac97_pdata = {
458 .reset_gpio = 95,
459};
460
461static struct platform_device palmtx_asoc = {
462 .name = "palm27x-asoc",
463 .id = -1,
464 .dev = {
465 .platform_data = &palmtx_asoc_pdata,
466 },
467};
468
469/******************************************************************************
Marek Vašutb5e4ad52008-07-07 17:25:46 +0100470 * Framebuffer
471 ******************************************************************************/
472static struct pxafb_mode_info palmtx_lcd_modes[] = {
473{
474 .pixclock = 57692,
475 .xres = 320,
476 .yres = 480,
477 .bpp = 16,
478
479 .left_margin = 32,
480 .right_margin = 1,
481 .upper_margin = 7,
482 .lower_margin = 1,
483
484 .hsync_len = 4,
485 .vsync_len = 1,
486},
487};
488
489static struct pxafb_mach_info palmtx_lcd_screen = {
490 .modes = palmtx_lcd_modes,
491 .num_modes = ARRAY_SIZE(palmtx_lcd_modes),
492 .lcd_conn = LCD_COLOR_TFT_16BPP | LCD_PCLK_EDGE_FALL,
493};
494
495/******************************************************************************
Marek Vasut81854f82009-03-28 12:37:42 +0100496 * Power management - standby
497 ******************************************************************************/
Marek Vasutfc9c1b62009-05-14 11:27:00 +0200498static void __init palmtx_pm_init(void)
Marek Vasut81854f82009-03-28 12:37:42 +0100499{
Marek Vasutfc9c1b62009-05-14 11:27:00 +0200500 static u32 resume[] = {
501 0xe3a00101, /* mov r0, #0x40000000 */
502 0xe380060f, /* orr r0, r0, #0x00f00000 */
503 0xe590f008, /* ldr pc, [r0, #0x08] */
504 };
Marek Vasut81854f82009-03-28 12:37:42 +0100505
Marek Vasutfc9c1b62009-05-14 11:27:00 +0200506 /* copy the bootloader */
507 memcpy(phys_to_virt(PALMTX_STR_BASE), resume, sizeof(resume));
Marek Vasut81854f82009-03-28 12:37:42 +0100508}
509
Marek Vasut81854f82009-03-28 12:37:42 +0100510/******************************************************************************
Marek Vašutb5e4ad52008-07-07 17:25:46 +0100511 * Machine init
512 ******************************************************************************/
513static struct platform_device *devices[] __initdata = {
514#if defined(CONFIG_KEYBOARD_GPIO) || defined(CONFIG_KEYBOARD_GPIO_MODULE)
515 &palmtx_pxa_keys,
516#endif
517 &palmtx_backlight,
Marek Vašutd4b19c42008-07-07 17:31:58 +0100518 &power_supply,
Marek Vasute91fb912009-04-17 11:37:35 +0200519 &palmtx_asoc,
Marek Vasut8768dc92009-04-23 11:12:37 +0200520 &palmtx_gpio_vbus,
Marek Vašutb5e4ad52008-07-07 17:25:46 +0100521};
522
523static struct map_desc palmtx_io_desc[] __initdata = {
524{
525 .virtual = PALMTX_PCMCIA_VIRT,
526 .pfn = __phys_to_pfn(PALMTX_PCMCIA_PHYS),
527 .length = PALMTX_PCMCIA_SIZE,
528 .type = MT_DEVICE
529},
530};
531
532static void __init palmtx_map_io(void)
533{
534 pxa_map_io();
535 iotable_init(palmtx_io_desc, ARRAY_SIZE(palmtx_io_desc));
536}
537
Marek Vasuta730b322008-11-20 17:34:57 +0100538/* setup udc GPIOs initial state */
539static void __init palmtx_udc_init(void)
540{
Marek Vasutefb12cd2009-04-12 16:37:23 +0200541 if (!gpio_request(GPIO_NR_PALMTX_USB_PULLUP, "UDC Vbus")) {
542 gpio_direction_output(GPIO_NR_PALMTX_USB_PULLUP, 1);
543 gpio_free(GPIO_NR_PALMTX_USB_PULLUP);
Marek Vasuta730b322008-11-20 17:34:57 +0100544 }
545}
546
547
Marek Vašutb5e4ad52008-07-07 17:25:46 +0100548static void __init palmtx_init(void)
549{
550 pxa2xx_mfp_config(ARRAY_AND_SIZE(palmtx_pin_config));
551
Marek Vasutfc9c1b62009-05-14 11:27:00 +0200552 palmtx_pm_init();
Marek Vašutb5e4ad52008-07-07 17:25:46 +0100553 set_pxa_fb_info(&palmtx_lcd_screen);
554 pxa_set_mci_info(&palmtx_mci_platform_data);
Marek Vasuta730b322008-11-20 17:34:57 +0100555 palmtx_udc_init();
Marek Vasute91fb912009-04-17 11:37:35 +0200556 pxa_set_ac97_info(&palmtx_ac97_pdata);
Marek Vašutb5e4ad52008-07-07 17:25:46 +0100557 pxa_set_ficp_info(&palmtx_ficp_platform_data);
558 pxa_set_keypad_info(&palmtx_keypad_platform_data);
Marek Vašut4e9687d2008-09-11 19:37:32 +0100559 wm97xx_bat_set_pdata(&wm97xx_batt_pdata);
Marek Vašutb5e4ad52008-07-07 17:25:46 +0100560
561 platform_add_devices(devices, ARRAY_SIZE(devices));
562}
563
564MACHINE_START(PALMTX, "Palm T|X")
565 .phys_io = PALMTX_PHYS_IO_START,
566 .io_pg_offst = io_p2v(0x40000000),
567 .boot_params = 0xa0000100,
568 .map_io = palmtx_map_io,
569 .init_irq = pxa27x_init_irq,
570 .timer = &pxa_timer,
571 .init_machine = palmtx_init
572MACHINE_END