board-zoom-peripherals.c 7.5 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16
/*
 * Copyright (C) 2009 Texas Instruments Inc.
 *
 * Modified from mach-omap2/board-zoom2.c
 *
 * This program is free software; you can redistribute it and/or modify
 * it under the terms of the GNU General Public License version 2 as
 * published by the Free Software Foundation.
 */

#include <linux/kernel.h>
#include <linux/init.h>
#include <linux/platform_device.h>
#include <linux/input.h>
#include <linux/input/matrix_keypad.h>
#include <linux/gpio.h>
17
#include <linux/i2c/twl.h>
18
#include <linux/regulator/machine.h>
19
#include <linux/regulator/fixed.h>
20
#include <linux/wl12xx.h>
21
#include <linux/mmc/host.h>
22 23 24 25 26

#include <asm/mach-types.h>
#include <asm/mach/arch.h>
#include <asm/mach/map.h>

27
#include "common.h"
28 29
#include <plat/usb.h>

30 31
#include <mach/board-zoom.h>

32
#include "mux.h"
33
#include "hsmmc.h"
34
#include "common-board-devices.h"
35

36
#define OMAP_ZOOM_WLAN_PMENA_GPIO	(101)
37
#define OMAP_ZOOM_WLAN_IRQ_GPIO		(162)
38

39 40
#define LCD_PANEL_ENABLE_GPIO		(7 + OMAP_MAX_GPIO_LINES)

41
/* Zoom2 has Qwerty keyboard*/
42
static uint32_t board_keymap[] = {
43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77
	KEY(0, 0, KEY_E),
	KEY(0, 1, KEY_R),
	KEY(0, 2, KEY_T),
	KEY(0, 3, KEY_HOME),
	KEY(0, 6, KEY_I),
	KEY(0, 7, KEY_LEFTSHIFT),
	KEY(1, 0, KEY_D),
	KEY(1, 1, KEY_F),
	KEY(1, 2, KEY_G),
	KEY(1, 3, KEY_SEND),
	KEY(1, 6, KEY_K),
	KEY(1, 7, KEY_ENTER),
	KEY(2, 0, KEY_X),
	KEY(2, 1, KEY_C),
	KEY(2, 2, KEY_V),
	KEY(2, 3, KEY_END),
	KEY(2, 6, KEY_DOT),
	KEY(2, 7, KEY_CAPSLOCK),
	KEY(3, 0, KEY_Z),
	KEY(3, 1, KEY_KPPLUS),
	KEY(3, 2, KEY_B),
	KEY(3, 3, KEY_F1),
	KEY(3, 6, KEY_O),
	KEY(3, 7, KEY_SPACE),
	KEY(4, 0, KEY_W),
	KEY(4, 1, KEY_Y),
	KEY(4, 2, KEY_U),
	KEY(4, 3, KEY_F2),
	KEY(4, 4, KEY_VOLUMEUP),
	KEY(4, 6, KEY_L),
	KEY(4, 7, KEY_LEFT),
	KEY(5, 0, KEY_S),
	KEY(5, 1, KEY_H),
	KEY(5, 2, KEY_J),
	KEY(5, 3, KEY_F3),
78
	KEY(5, 4, KEY_UNKNOWN),
79 80
	KEY(5, 5, KEY_VOLUMEDOWN),
	KEY(5, 6, KEY_M),
81
	KEY(5, 7, KEY_RIGHT),
82 83 84 85 86
	KEY(6, 0, KEY_Q),
	KEY(6, 1, KEY_A),
	KEY(6, 2, KEY_N),
	KEY(6, 3, KEY_BACKSPACE),
	KEY(6, 6, KEY_P),
87
	KEY(6, 7, KEY_UP),
88 89 90 91
	KEY(7, 0, KEY_PROG1),	/*MACRO 1 <User defined> */
	KEY(7, 1, KEY_PROG2),	/*MACRO 2 <User defined> */
	KEY(7, 2, KEY_PROG3),	/*MACRO 3 <User defined> */
	KEY(7, 3, KEY_PROG4),	/*MACRO 4 <User defined> */
92
	KEY(7, 6, KEY_SELECT),
93 94 95 96 97 98 99 100
	KEY(7, 7, KEY_DOWN)
};

static struct matrix_keymap_data board_map_data = {
	.keymap			= board_keymap,
	.keymap_size		= ARRAY_SIZE(board_keymap),
};

101
static struct twl4030_keypad_data zoom_kp_twl4030_data = {
102 103 104 105 106 107
	.keymap_data	= &board_map_data,
	.rows		= 8,
	.cols		= 8,
	.rep		= 1,
};

108 109
static struct regulator_consumer_supply zoom_vmmc1_supply[] = {
	REGULATOR_SUPPLY("vmmc", "omap_hsmmc.0"),
110 111
};

112 113
static struct regulator_consumer_supply zoom_vsim_supply[] = {
	REGULATOR_SUPPLY("vmmc_aux", "omap_hsmmc.0"),
114 115
};

116 117
static struct regulator_consumer_supply zoom_vmmc2_supply[] = {
	REGULATOR_SUPPLY("vmmc", "omap_hsmmc.1"),
118 119
};

120 121
static struct regulator_consumer_supply zoom_vmmc3_supply[] = {
	REGULATOR_SUPPLY("vmmc", "omap_hsmmc.2"),
122 123
};

124
/* VMMC1 for OMAP VDD_MMC1 (i/o) and MMC1 card */
125
static struct regulator_init_data zoom_vmmc1 = {
126 127 128 129 130 131 132 133 134
	.constraints = {
		.min_uV			= 1850000,
		.max_uV			= 3150000,
		.valid_modes_mask	= REGULATOR_MODE_NORMAL
					| REGULATOR_MODE_STANDBY,
		.valid_ops_mask		= REGULATOR_CHANGE_VOLTAGE
					| REGULATOR_CHANGE_MODE
					| REGULATOR_CHANGE_STATUS,
	},
135 136
	.num_consumer_supplies  = ARRAY_SIZE(zoom_vmmc1_supply),
	.consumer_supplies      = zoom_vmmc1_supply,
137 138 139
};

/* VMMC2 for MMC2 card */
140
static struct regulator_init_data zoom_vmmc2 = {
141 142 143 144 145 146 147 148 149
	.constraints = {
		.min_uV			= 1850000,
		.max_uV			= 1850000,
		.apply_uV		= true,
		.valid_modes_mask	= REGULATOR_MODE_NORMAL
					| REGULATOR_MODE_STANDBY,
		.valid_ops_mask		= REGULATOR_CHANGE_MODE
					| REGULATOR_CHANGE_STATUS,
	},
150 151
	.num_consumer_supplies  = ARRAY_SIZE(zoom_vmmc2_supply),
	.consumer_supplies      = zoom_vmmc2_supply,
152 153 154
};

/* VSIM for OMAP VDD_MMC1A (i/o for DAT4..DAT7) */
155
static struct regulator_init_data zoom_vsim = {
156 157 158 159 160 161 162 163 164
	.constraints = {
		.min_uV			= 1800000,
		.max_uV			= 3000000,
		.valid_modes_mask	= REGULATOR_MODE_NORMAL
					| REGULATOR_MODE_STANDBY,
		.valid_ops_mask		= REGULATOR_CHANGE_VOLTAGE
					| REGULATOR_CHANGE_MODE
					| REGULATOR_CHANGE_STATUS,
	},
165 166
	.num_consumer_supplies  = ARRAY_SIZE(zoom_vsim_supply),
	.consumer_supplies      = zoom_vsim_supply,
167 168
};

169 170 171 172
static struct regulator_init_data zoom_vmmc3 = {
	.constraints = {
		.valid_ops_mask	= REGULATOR_CHANGE_STATUS,
	},
173 174
	.num_consumer_supplies	= ARRAY_SIZE(zoom_vmmc3_supply),
	.consumer_supplies	= zoom_vmmc3_supply,
175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194
};

static struct fixed_voltage_config zoom_vwlan = {
	.supply_name		= "vwl1271",
	.microvolts		= 1800000, /* 1.8V */
	.gpio			= OMAP_ZOOM_WLAN_PMENA_GPIO,
	.startup_delay		= 70000, /* 70msec */
	.enable_high		= 1,
	.enabled_at_boot	= 0,
	.init_data		= &zoom_vmmc3,
};

static struct platform_device omap_vwlan_device = {
	.name		= "reg-fixed-voltage",
	.id		= 1,
	.dev = {
		.platform_data	= &zoom_vwlan,
	},
};

195
static struct wl12xx_platform_data omap_zoom_wlan_data __initdata = {
196 197 198 199 200
	.irq = OMAP_GPIO_IRQ(OMAP_ZOOM_WLAN_IRQ_GPIO),
	/* ZOOM ref clock is 26 MHz */
	.board_ref_clock = 1,
};

201
static struct omap2_hsmmc_info mmc[] = {
202
	{
203
		.name		= "external",
204
		.mmc		= 1,
205
		.caps		= MMC_CAP_4_BIT_DATA,
206
		.gpio_wp	= -EINVAL,
207
		.power_saving	= true,
208 209
	},
	{
210
		.name		= "internal",
211
		.mmc		= 2,
212
		.caps		= MMC_CAP_4_BIT_DATA | MMC_CAP_8_BIT_DATA,
213
		.gpio_cd	= -EINVAL,
214
		.gpio_wp	= -EINVAL,
215 216
		.nonremovable	= true,
		.power_saving	= true,
217
	},
218 219 220
	{
		.name		= "wl1271",
		.mmc		= 3,
221
		.caps		= MMC_CAP_4_BIT_DATA | MMC_CAP_POWER_OFF_CARD,
222 223 224 225
		.gpio_wp	= -EINVAL,
		.gpio_cd	= -EINVAL,
		.nonremovable	= true,
	},
226 227 228
	{}      /* Terminator */
};

229
static int zoom_twl_gpio_setup(struct device *dev,
230 231
		unsigned gpio, unsigned ngpio)
{
232 233
	int ret;

234
	/* gpio + 0 is "mmc0_cd" (input/IRQ) */
235
	mmc[0].gpio_cd = gpio + 0;
236
	omap2_hsmmc_init(mmc);
237

I
Igor Grinberg 已提交
238 239 240
	ret = gpio_request_one(LCD_PANEL_ENABLE_GPIO, GPIOF_OUT_INIT_LOW,
			       "lcd enable");
	if (ret)
241 242 243 244
		pr_err("Failed to get LCD_PANEL_ENABLE_GPIO (gpio%d).\n",
				LCD_PANEL_ENABLE_GPIO);

	return ret;
245 246
}

247
/* EXTMUTE callback function */
248
static void zoom2_set_hs_extmute(int mute)
249 250 251
{
	gpio_set_value(ZOOM2_HEADSET_EXTMUTE_GPIO, mute);
}
252

253
static struct twl4030_gpio_platform_data zoom_gpio_data = {
254 255 256
	.gpio_base	= OMAP_MAX_GPIO_LINES,
	.irq_base	= TWL4030_GPIO_IRQ_BASE,
	.irq_end	= TWL4030_GPIO_IRQ_END,
257
	.setup		= zoom_twl_gpio_setup,
258 259
};

260
static struct twl4030_platform_data zoom_twldata = {
261
	/* platform_data for children goes here */
262 263
	.gpio		= &zoom_gpio_data,
	.keypad		= &zoom_kp_twl4030_data,
264
	.vmmc1          = &zoom_vmmc1,
265 266
	.vmmc2          = &zoom_vmmc2,
	.vsim           = &zoom_vsim,
267 268 269 270
};

static int __init omap_i2c_init(void)
{
271
	omap3_pmic_get_config(&zoom_twldata,
272 273 274
			TWL_COMMON_PDATA_USB | TWL_COMMON_PDATA_BCI |
			TWL_COMMON_PDATA_MADC | TWL_COMMON_PDATA_AUDIO,
			TWL_COMMON_REGULATOR_VDAC | TWL_COMMON_REGULATOR_VPLL2);
275

276
	if (machine_is_omap_zoom2()) {
277 278
		struct twl4030_codec_data *codec_data;
		codec_data = zoom_twldata.audio->codec;
279

280 281 282
		codec_data->ramp_delay_value = 3;	/* 161 ms */
		codec_data->hs_extmute = 1;
		codec_data->set_hs_extmute = zoom2_set_hs_extmute;
283
	}
284
	omap_pmic_init(1, 2400, "twl5030", INT_34XX_SYS_NIRQ, &zoom_twldata);
285 286 287 288 289
	omap_register_i2c_bus(2, 400, NULL, 0);
	omap_register_i2c_bus(3, 400, NULL, 0);
	return 0;
}

290 291 292 293 294 295 296
static void enable_board_wakeup_source(void)
{
	/* T2 interrupt line (keypad) */
	omap_mux_init_signal("sys_nirq",
		OMAP_WAKEUP_EN | OMAP_PIN_INPUT_PULLUP);
}

297 298
void __init zoom_peripherals_init(void)
{
299 300 301 302
	int ret = wl12xx_set_platform_data(&omap_zoom_wlan_data);

	if (ret)
		pr_err("error setting wl12xx data: %d\n", ret);
303

304
	omap_i2c_init();
305
	platform_device_register(&omap_vwlan_device);
306
	usb_musb_init(NULL);
307
	enable_board_wakeup_source();
308
	omap_serial_init();
309
}