blob: 3ed9b029428b8291c912816968b0881de8ee48f9 [file] [log] [blame]
Marek Vasut0f6ff0f2008-11-20 00:58:38 +01001/*
2 * Hardware definitions for Palm Tungsten|T5
3 *
4 * Author: Marek Vasut <marek.vasut@gmail.com>
5 *
6 * Based on work of:
7 * Ales Snuparek <snuparek@atlas.cz>
8 * Justin Kendrick <twilightsentry@gmail.com>
9 * RichardT5 <richard_t5@users.sourceforge.net>
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 * (find more info at www.hackndev.com)
16 *
17 */
18
19#include <linux/platform_device.h>
20#include <linux/delay.h>
21#include <linux/irq.h>
22#include <linux/gpio_keys.h>
23#include <linux/input.h>
Russell King8d717a52010-05-22 19:47:18 +010024#include <linux/memblock.h>
Marek Vasut0f6ff0f2008-11-20 00:58:38 +010025#include <linux/pda_power.h>
26#include <linux/pwm_backlight.h>
27#include <linux/gpio.h>
Marek Vasut241cf472010-06-04 03:07:33 +020028#include <linux/wm97xx.h>
Marek Vasut0f6ff0f2008-11-20 00:58:38 +010029#include <linux/power_supply.h>
Marek Vasut8768dc92009-04-23 11:12:37 +020030#include <linux/usb/gpio_vbus.h>
Marek Vasut0f6ff0f2008-11-20 00:58:38 +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>
Marek Vasut0f6ff0f2008-11-20 00:58:38 +010037#include <mach/audio.h>
38#include <mach/palmt5.h>
Arnd Bergmann293b2da2012-08-24 15:16:48 +020039#include <linux/platform_data/mmc-pxamci.h>
40#include <linux/platform_data/video-pxafb.h>
41#include <linux/platform_data/irda-pxaficp.h>
42#include <linux/platform_data/keypad-pxa27x.h>
Marek Vasut0f6ff0f2008-11-20 00:58:38 +010043#include <mach/udc.h>
Arnd Bergmann293b2da2012-08-24 15:16:48 +020044#include <linux/platform_data/asoc-palm27x.h>
Marek Vasut31620e22010-07-13 08:16:45 +020045#include <mach/palm27x.h>
Marek Vasut0f6ff0f2008-11-20 00:58:38 +010046
47#include "generic.h"
48#include "devices.h"
49
50/******************************************************************************
51 * Pin configuration
52 ******************************************************************************/
53static unsigned long palmt5_pin_config[] __initdata = {
54 /* MMC */
55 GPIO32_MMC_CLK,
56 GPIO92_MMC_DAT_0,
57 GPIO109_MMC_DAT_1,
58 GPIO110_MMC_DAT_2,
59 GPIO111_MMC_DAT_3,
60 GPIO112_MMC_CMD,
61 GPIO14_GPIO, /* SD detect */
62 GPIO114_GPIO, /* SD power */
63 GPIO115_GPIO, /* SD r/o switch */
64
65 /* AC97 */
66 GPIO28_AC97_BITCLK,
67 GPIO29_AC97_SDATA_IN_0,
68 GPIO30_AC97_SDATA_OUT,
69 GPIO31_AC97_SYNC,
Marek Vasut6ec04f42009-05-22 01:39:10 +020070 GPIO89_AC97_SYSCLK,
Marek Vasutefb12cd2009-04-12 16:37:23 +020071 GPIO95_AC97_nRESET,
Marek Vasut0f6ff0f2008-11-20 00:58:38 +010072
73 /* IrDA */
74 GPIO40_GPIO, /* ir disable */
75 GPIO46_FICP_RXD,
76 GPIO47_FICP_TXD,
77
78 /* USB */
79 GPIO15_GPIO, /* usb detect */
Marek Vasutefb12cd2009-04-12 16:37:23 +020080 GPIO93_GPIO, /* usb power */
Marek Vasut0f6ff0f2008-11-20 00:58:38 +010081
82 /* MATRIX KEYPAD */
Marek Vasut81854f82009-03-28 12:37:42 +010083 GPIO100_KP_MKIN_0 | WAKEUP_ON_LEVEL_HIGH,
84 GPIO101_KP_MKIN_1 | WAKEUP_ON_LEVEL_HIGH,
85 GPIO102_KP_MKIN_2 | WAKEUP_ON_LEVEL_HIGH,
86 GPIO97_KP_MKIN_3 | WAKEUP_ON_LEVEL_HIGH,
Marek Vasut0f6ff0f2008-11-20 00:58:38 +010087 GPIO103_KP_MKOUT_0,
88 GPIO104_KP_MKOUT_1,
89 GPIO105_KP_MKOUT_2,
90
91 /* LCD */
Eric Miaobedbda92010-01-04 11:37:14 +080092 GPIOxx_LCD_TFT_16BPP,
Marek Vasut0f6ff0f2008-11-20 00:58:38 +010093
94 /* PWM */
95 GPIO16_PWM0_OUT,
96
Marek Vasutecf763c2009-07-16 19:37:29 +020097 /* FFUART */
98 GPIO34_FFUART_RXD,
99 GPIO39_FFUART_TXD,
100
Marek Vasut0f6ff0f2008-11-20 00:58:38 +0100101 /* MISC */
102 GPIO10_GPIO, /* hotsync button */
103 GPIO90_GPIO, /* power detect */
104 GPIO107_GPIO, /* earphone detect */
105};
106
107/******************************************************************************
Marek Vasut0f6ff0f2008-11-20 00:58:38 +0100108 * GPIO keyboard
109 ******************************************************************************/
Marek Vasut31620e22010-07-13 08:16:45 +0200110#if defined(CONFIG_KEYBOARD_PXA27x) || defined(CONFIG_KEYBOARD_PXA27x_MODULE)
Chao Xie0a085a92013-05-05 20:24:58 -0700111static const unsigned int palmt5_matrix_keys[] = {
Marek Vasut0f6ff0f2008-11-20 00:58:38 +0100112 KEY(0, 0, KEY_POWER),
113 KEY(0, 1, KEY_F1),
114 KEY(0, 2, KEY_ENTER),
115
116 KEY(1, 0, KEY_F2),
117 KEY(1, 1, KEY_F3),
118 KEY(1, 2, KEY_F4),
119
120 KEY(2, 0, KEY_UP),
121 KEY(2, 2, KEY_DOWN),
122
123 KEY(3, 0, KEY_RIGHT),
124 KEY(3, 2, KEY_LEFT),
125};
126
Chao Xie0a085a92013-05-05 20:24:58 -0700127static struct matrix_keymap_data palmt5_matrix_keymap_data = {
128 .keymap = palmt5_matrix_keys,
129 .keymap_size = ARRAY_SIZE(palmt5_matrix_keys),
130};
131
Marek Vasut0f6ff0f2008-11-20 00:58:38 +0100132static struct pxa27x_keypad_platform_data palmt5_keypad_platform_data = {
133 .matrix_key_rows = 4,
134 .matrix_key_cols = 3,
Chao Xie0a085a92013-05-05 20:24:58 -0700135 .matrix_keymap_data = &palmt5_matrix_keymap_data,
Marek Vasut0f6ff0f2008-11-20 00:58:38 +0100136
137 .debounce_interval = 30,
138};
139
Marek Vasut31620e22010-07-13 08:16:45 +0200140static void __init palmt5_kpc_init(void)
141{
142 pxa_set_keypad_info(&palmt5_keypad_platform_data);
143}
144#else
145static inline void palmt5_kpc_init(void) {}
146#endif
147
Marek Vasut0f6ff0f2008-11-20 00:58:38 +0100148/******************************************************************************
149 * GPIO keys
150 ******************************************************************************/
Marek Vasut31620e22010-07-13 08:16:45 +0200151#if defined(CONFIG_KEYBOARD_GPIO) || defined(CONFIG_KEYBOARD_GPIO_MODULE)
Marek Vasut0f6ff0f2008-11-20 00:58:38 +0100152static struct gpio_keys_button palmt5_pxa_buttons[] = {
153 {KEY_F8, GPIO_NR_PALMT5_HOTSYNC_BUTTON_N, 1, "HotSync Button" },
154};
155
156static struct gpio_keys_platform_data palmt5_pxa_keys_data = {
157 .buttons = palmt5_pxa_buttons,
158 .nbuttons = ARRAY_SIZE(palmt5_pxa_buttons),
159};
160
161static struct platform_device palmt5_pxa_keys = {
162 .name = "gpio-keys",
163 .id = -1,
164 .dev = {
165 .platform_data = &palmt5_pxa_keys_data,
166 },
167};
168
Marek Vasut31620e22010-07-13 08:16:45 +0200169static void __init palmt5_keys_init(void)
Marek Vasut0f6ff0f2008-11-20 00:58:38 +0100170{
Marek Vasut31620e22010-07-13 08:16:45 +0200171 platform_device_register(&palmt5_pxa_keys);
Marek Vasut0f6ff0f2008-11-20 00:58:38 +0100172}
Marek Vasut31620e22010-07-13 08:16:45 +0200173#else
174static inline void palmt5_keys_init(void) {}
175#endif
Marek Vasut81854f82009-03-28 12:37:42 +0100176
Marek Vasut81854f82009-03-28 12:37:42 +0100177/******************************************************************************
Marek Vasut0f6ff0f2008-11-20 00:58:38 +0100178 * Machine init
179 ******************************************************************************/
Russell King98c672c2010-05-22 18:18:57 +0100180static void __init palmt5_reserve(void)
181{
Russell King8d717a52010-05-22 19:47:18 +0100182 memblock_reserve(0xa0200000, 0x1000);
Russell King98c672c2010-05-22 18:18:57 +0100183}
184
Marek Vasut0f6ff0f2008-11-20 00:58:38 +0100185static void __init palmt5_init(void)
186{
187 pxa2xx_mfp_config(ARRAY_AND_SIZE(palmt5_pin_config));
Russell Kingcc155c62009-11-09 13:34:08 +0800188 pxa_set_ffuart_info(NULL);
189 pxa_set_btuart_info(NULL);
190 pxa_set_stuart_info(NULL);
191
Marek Vasut31620e22010-07-13 08:16:45 +0200192 palm27x_mmc_init(GPIO_NR_PALMT5_SD_DETECT_N, GPIO_NR_PALMT5_SD_READONLY,
193 GPIO_NR_PALMT5_SD_POWER, 0);
194 palm27x_pm_init(PALMT5_STR_BASE);
195 palm27x_lcd_init(-1, &palm_320x480_lcd_mode);
196 palm27x_udc_init(GPIO_NR_PALMT5_USB_DETECT_N,
197 GPIO_NR_PALMT5_USB_PULLUP, 1);
198 palm27x_irda_init(GPIO_NR_PALMT5_IR_DISABLE);
199 palm27x_ac97_init(PALMT5_BAT_MIN_VOLTAGE, PALMT5_BAT_MAX_VOLTAGE,
200 GPIO_NR_PALMT5_EARPHONE_DETECT, 95);
201 palm27x_pwm_init(GPIO_NR_PALMT5_BL_POWER, GPIO_NR_PALMT5_LCD_POWER);
202 palm27x_power_init(GPIO_NR_PALMT5_POWER_DETECT, -1);
203 palm27x_pmic_init();
204 palmt5_kpc_init();
205 palmt5_keys_init();
Marek Vasut0f6ff0f2008-11-20 00:58:38 +0100206}
207
208MACHINE_START(PALMT5, "Palm Tungsten|T5")
Nicolas Pitre7375aba2011-07-05 22:38:15 -0400209 .atag_offset = 0x100,
Marek Vasut851982c2010-10-11 02:20:19 +0200210 .map_io = pxa27x_map_io,
Russell King98c672c2010-05-22 18:18:57 +0100211 .reserve = palmt5_reserve,
Rob Herring4e611092012-01-03 16:53:48 -0600212 .nr_irqs = PXA_NR_IRQS,
Marek Vasut0f6ff0f2008-11-20 00:58:38 +0100213 .init_irq = pxa27x_init_irq,
Eric Miao8a97ae22011-05-18 21:30:04 +0800214 .handle_irq = pxa27x_handle_irq,
Stephen Warren6bb27d72012-11-08 12:40:59 -0700215 .init_time = pxa_timer_init,
Russell King271a74f2011-11-04 14:15:53 +0000216 .init_machine = palmt5_init,
217 .restart = pxa_restart,
Marek Vasut0f6ff0f2008-11-20 00:58:38 +0100218MACHINE_END