2 * linux/arch/arm/mach-omap2/board-rx51-flash.c
4 * Copyright (C) 2008-2009 Nokia
6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License version 2 as
8 * published by the Free Software Foundation.
11 #include <linux/kernel.h>
12 #include <linux/init.h>
13 #include <linux/platform_device.h>
14 #include <linux/input.h>
15 #include <linux/spi/spi.h>
16 #include <linux/i2c.h>
17 #include <linux/i2c/twl4030.h>
18 #include <linux/clk.h>
19 #include <linux/delay.h>
20 #include <linux/regulator/machine.h>
21 #include <linux/gpio.h>
23 #include <mach/mcspi.h>
25 #include <mach/board.h>
26 #include <mach/common.h>
28 #include <mach/gpmc.h>
29 #include <mach/keypad.h>
30 #include <mach/onenand.h>
31 #include <mach/gpmc-smc91x.h>
33 #include "mmc-twl4030.h"
35 static int rx51_keymap[] = {
58 KEY(4, 0, KEY_BACKSPACE),
61 KEY(4, 4, KEY_LEFTCTRL),
65 KEY(5, 4, KEY_LEFTSHIFT),
79 KEY(0xff, 5, KEY_F10),
82 static struct twl4030_keypad_data rx51_kp_data = {
85 .keymap = rx51_keymap,
86 .keymapsize = ARRAY_SIZE(rx51_keymap),
90 static struct twl4030_madc_platform_data rx51_madc_data = {
94 static struct twl4030_hsmmc_info mmc[] = {
113 static struct regulator_consumer_supply rx51_vmmc1_supply = {
117 static struct regulator_consumer_supply rx51_vmmc2_supply = {
121 static struct regulator_consumer_supply rx51_vsim_supply = {
122 .supply = "vmmc_aux",
125 static struct regulator_init_data rx51_vaux1 = {
130 .valid_modes_mask = REGULATOR_MODE_NORMAL
131 | REGULATOR_MODE_STANDBY,
132 .valid_ops_mask = REGULATOR_CHANGE_MODE
133 | REGULATOR_CHANGE_STATUS,
137 static struct regulator_init_data rx51_vaux2 = {
142 .valid_modes_mask = REGULATOR_MODE_NORMAL
143 | REGULATOR_MODE_STANDBY,
144 .valid_ops_mask = REGULATOR_CHANGE_MODE
145 | REGULATOR_CHANGE_STATUS,
149 /* VAUX3 - adds more power to VIO_18 rail */
150 static struct regulator_init_data rx51_vaux3 = {
152 .name = "VCAM_DIG_18",
156 .valid_modes_mask = REGULATOR_MODE_NORMAL
157 | REGULATOR_MODE_STANDBY,
158 .valid_ops_mask = REGULATOR_CHANGE_MODE
159 | REGULATOR_CHANGE_STATUS,
163 static struct regulator_init_data rx51_vaux4 = {
165 .name = "VCAM_ANA_28",
169 .valid_modes_mask = REGULATOR_MODE_NORMAL
170 | REGULATOR_MODE_STANDBY,
171 .valid_ops_mask = REGULATOR_CHANGE_MODE
172 | REGULATOR_CHANGE_STATUS,
176 static struct regulator_init_data rx51_vmmc1 = {
180 .valid_modes_mask = REGULATOR_MODE_NORMAL
181 | REGULATOR_MODE_STANDBY,
182 .valid_ops_mask = REGULATOR_CHANGE_VOLTAGE
183 | REGULATOR_CHANGE_MODE
184 | REGULATOR_CHANGE_STATUS,
186 .num_consumer_supplies = 1,
187 .consumer_supplies = &rx51_vmmc1_supply,
190 static struct regulator_init_data rx51_vmmc2 = {
196 .valid_modes_mask = REGULATOR_MODE_NORMAL
197 | REGULATOR_MODE_STANDBY,
198 .valid_ops_mask = REGULATOR_CHANGE_VOLTAGE
199 | REGULATOR_CHANGE_MODE
200 | REGULATOR_CHANGE_STATUS,
202 .num_consumer_supplies = 1,
203 .consumer_supplies = &rx51_vmmc2_supply,
206 static struct regulator_init_data rx51_vsim = {
208 .name = "VMMC2_IO_18",
212 .valid_modes_mask = REGULATOR_MODE_NORMAL
213 | REGULATOR_MODE_STANDBY,
214 .valid_ops_mask = REGULATOR_CHANGE_MODE
215 | REGULATOR_CHANGE_STATUS,
217 .num_consumer_supplies = 1,
218 .consumer_supplies = &rx51_vsim_supply,
221 static struct regulator_init_data rx51_vdac = {
225 .valid_modes_mask = REGULATOR_MODE_NORMAL
226 | REGULATOR_MODE_STANDBY,
227 .valid_ops_mask = REGULATOR_CHANGE_VOLTAGE
228 | REGULATOR_CHANGE_MODE
229 | REGULATOR_CHANGE_STATUS,
233 static int rx51_twlgpio_setup(struct device *dev, unsigned gpio, unsigned n)
235 /* FIXME this gpio setup is just a placeholder for now */
236 gpio_request(gpio + 6, "backlight_pwm");
237 gpio_direction_output(gpio + 6, 0);
238 gpio_request(gpio + 7, "speaker_en");
239 gpio_direction_output(gpio + 7, 1);
241 /* set up MMC adapters, linking their regulators to them */
242 twl4030_mmc_init(mmc);
243 rx51_vmmc1_supply.dev = mmc[0].dev;
244 rx51_vmmc2_supply.dev = mmc[1].dev;
245 rx51_vsim_supply.dev = mmc[1].dev;
250 static struct twl4030_gpio_platform_data rx51_gpio_data = {
251 .gpio_base = OMAP_MAX_GPIO_LINES,
252 .irq_base = TWL4030_GPIO_IRQ_BASE,
253 .irq_end = TWL4030_GPIO_IRQ_END,
254 .pulldowns = BIT(0) | BIT(1) | BIT(2) | BIT(3)
256 | BIT(8) | BIT(9) | BIT(10) | BIT(11)
257 | BIT(12) | BIT(13) | BIT(14) | BIT(15)
258 | BIT(16) | BIT(17) ,
259 .setup = rx51_twlgpio_setup,
262 static struct twl4030_platform_data rx51_twldata = {
263 .irq_base = TWL4030_IRQ_BASE,
264 .irq_end = TWL4030_IRQ_END,
266 /* platform_data for children goes here */
267 .gpio = &rx51_gpio_data,
268 .keypad = &rx51_kp_data,
269 .madc = &rx51_madc_data,
271 .vaux1 = &rx51_vaux1,
272 .vaux2 = &rx51_vaux2,
273 .vaux3 = &rx51_vaux3,
274 .vaux4 = &rx51_vaux4,
275 .vmmc1 = &rx51_vmmc1,
276 .vmmc2 = &rx51_vmmc2,
281 static struct i2c_board_info __initdata rx51_peripherals_i2c_board_info_1[] = {
283 I2C_BOARD_INFO("twl5030", 0x48),
284 .flags = I2C_CLIENT_WAKE,
285 .irq = INT_34XX_SYS_NIRQ,
286 .platform_data = &rx51_twldata,
290 static int __init rx51_i2c_init(void)
292 omap_register_i2c_bus(1, 2600, rx51_peripherals_i2c_board_info_1,
293 ARRAY_SIZE(rx51_peripherals_i2c_board_info_1));
294 omap_register_i2c_bus(2, 100, NULL, 0);
295 omap_register_i2c_bus(3, 400, NULL, 0);
299 #if defined(CONFIG_MTD_ONENAND_OMAP2) || \
300 defined(CONFIG_MTD_ONENAND_OMAP2_MODULE)
302 static struct mtd_partition onenand_partitions[] = {
304 .name = "bootloader",
307 .mask_flags = MTD_WRITEABLE, /* Force read-only */
311 .offset = MTDPART_OFS_APPEND,
316 .offset = MTDPART_OFS_APPEND,
321 .offset = MTDPART_OFS_APPEND,
326 .offset = MTDPART_OFS_APPEND,
331 .offset = MTDPART_OFS_APPEND,
332 .size = MTDPART_SIZ_FULL,
336 static struct omap_onenand_platform_data board_onenand_data = {
339 .parts = onenand_partitions,
340 .nr_parts = ARRAY_SIZE(onenand_partitions),
343 static void __init board_onenand_init(void)
345 gpmc_onenand_init(&board_onenand_data);
350 static inline void board_onenand_init(void)
356 #if defined(CONFIG_SMC91X) || defined(CONFIG_SMC91X_MODULE)
358 static struct omap_smc91x_platform_data board_smc91x_data = {
363 .flags = GPMC_TIMINGS_SMC91C96 | IORESOURCE_IRQ_HIGHLEVEL,
366 static void __init board_smc91x_init(void)
368 omap_cfg_reg(U8_34XX_GPIO54_DOWN);
369 omap_cfg_reg(G25_34XX_GPIO86_OUT);
370 omap_cfg_reg(H19_34XX_GPIO164_OUT);
372 gpmc_smc91x_init(&board_smc91x_data);
377 static inline void board_smc91x_init(void)
383 void __init rx51_peripherals_init(void)
386 board_onenand_init();