blob: e2e52031f0565e09d4c815b6c0e9f026b5e13467 [file] [log] [blame]
Syed Mohammed, Khasim2885f002008-10-09 17:51:42 +03001/*
2 * linux/arch/arm/mach-omap2/board-omap3beagle.c
3 *
4 * Copyright (C) 2008 Texas Instruments
5 *
6 * Modified from mach-omap2/board-3430sdp.c
7 *
8 * Initial code: Syed Mohammed Khasim
9 *
10 * This program is free software; you can redistribute it and/or modify
11 * it under the terms of the GNU General Public License version 2 as
12 * published by the Free Software Foundation.
13 */
14
15#include <linux/kernel.h>
16#include <linux/init.h>
17#include <linux/platform_device.h>
18#include <linux/delay.h>
19#include <linux/err.h>
20#include <linux/clk.h>
21#include <linux/io.h>
22#include <linux/leds.h>
Peter Ujfalusib8e21302012-11-07 15:25:30 +010023#include <linux/pwm.h>
24#include <linux/leds_pwm.h>
Syed Mohammed, Khasim2885f002008-10-09 17:51:42 +030025#include <linux/gpio.h>
26#include <linux/input.h>
27#include <linux/gpio_keys.h>
Nishanth Menone4db1c72013-09-19 16:03:52 -050028#include <linux/pm_opp.h>
Kevin Hilman65bf7ca2012-10-22 11:08:27 -070029#include <linux/cpu.h>
Syed Mohammed, Khasim2885f002008-10-09 17:51:42 +030030
31#include <linux/mtd/mtd.h>
32#include <linux/mtd/partitions.h>
33#include <linux/mtd/nand.h>
Sukumar Ghorai3a638332010-09-15 14:49:23 +000034#include <linux/mmc/host.h>
Kishon Vijay Abraham I51482be2013-02-06 18:58:50 +053035#include <linux/usb/phy.h>
Syed Mohammed, Khasim2885f002008-10-09 17:51:42 +030036
David Brownellbb3b9d82009-05-28 14:04:03 -070037#include <linux/regulator/machine.h>
Santosh Shilimkarb07682b2009-12-13 20:05:51 +010038#include <linux/i2c/twl.h>
Tony Lindgren145d9c92009-01-15 13:09:53 +020039
Syed Mohammed, Khasim2885f002008-10-09 17:51:42 +030040#include <asm/mach-types.h>
41#include <asm/mach/arch.h>
42#include <asm/mach/map.h>
43#include <asm/mach/flash.h>
44
Tomi Valkeinena0b38cc2011-05-11 14:05:07 +030045#include <video/omapdss.h>
Archit Tanejaa0d8dde2013-02-12 16:46:46 +053046#include <video/omap-panel-data.h>
Arnd Bergmann22037472012-08-24 15:21:06 +020047#include <linux/platform_data/mtd-nand-omap2.h>
Syed Mohammed, Khasim2885f002008-10-09 17:51:42 +030048
Tony Lindgren6d026432012-10-24 15:05:45 -070049#include "common.h"
50#include "omap_device.h"
51#include "gpmc.h"
Tony Lindgrene4c060d2012-10-05 13:25:59 -070052#include "soc.h"
Tony Lindgrenca5742b2009-12-11 16:16:32 -080053#include "mux.h"
Adrian Hunterd02a900b2010-02-15 10:03:34 -080054#include "hsmmc.h"
Nishanth Menon87434102011-01-07 09:41:13 -060055#include "pm.h"
Afzal Mohammed2e618262012-02-29 18:11:56 +053056#include "board-flash.h"
Mike Rapoportfbd80712011-04-25 01:09:06 +030057#include "common-board-devices.h"
Syed Mohammed, Khasim2885f002008-10-09 17:51:42 +030058
Afzal Mohammed2e618262012-02-29 18:11:56 +053059#define NAND_CS 0
60
Peter Ujfalusib8e21302012-11-07 15:25:30 +010061static struct pwm_lookup pwm_lookup[] = {
62 /* LEDB -> PMU_STAT */
Alexandre Bellonidee401e2014-05-19 22:42:38 +020063 PWM_LOOKUP("twl-pwmled", 1, "leds_pwm", "beagleboard::pmu_stat",
64 7812500, PWM_POLARITY_NORMAL),
Peter Ujfalusib8e21302012-11-07 15:25:30 +010065};
66
67static struct led_pwm pwm_leds[] = {
68 {
69 .name = "beagleboard::pmu_stat",
70 .max_brightness = 127,
71 .pwm_period_ns = 7812500,
72 },
73};
74
75static struct led_pwm_platform_data pwm_data = {
76 .num_leds = ARRAY_SIZE(pwm_leds),
77 .leds = pwm_leds,
78};
79
80static struct platform_device leds_pwm = {
81 .name = "leds_pwm",
82 .id = -1,
83 .dev = {
84 .platform_data = &pwm_data,
85 },
86};
87
Robert Nelson954bed02010-09-23 18:22:47 -070088/*
89 * OMAP3 Beagle revision
90 * Run time detection of Beagle revision is done by reading GPIO.
91 * GPIO ID -
92 * AXBX = GPIO173, GPIO172, GPIO171: 1 1 1
93 * C1_3 = GPIO173, GPIO172, GPIO171: 1 1 0
94 * C4 = GPIO173, GPIO172, GPIO171: 1 0 1
Joel A Fernandes5fe8b4c2011-07-05 03:38:22 -070095 * XMA/XMB = GPIO173, GPIO172, GPIO171: 0 0 0
96 * XMC = GPIO173, GPIO172, GPIO171: 0 1 0
Robert Nelson954bed02010-09-23 18:22:47 -070097 */
98enum {
99 OMAP3BEAGLE_BOARD_UNKN = 0,
100 OMAP3BEAGLE_BOARD_AXBX,
101 OMAP3BEAGLE_BOARD_C1_3,
102 OMAP3BEAGLE_BOARD_C4,
103 OMAP3BEAGLE_BOARD_XM,
Joel A Fernandes5fe8b4c2011-07-05 03:38:22 -0700104 OMAP3BEAGLE_BOARD_XMC,
Robert Nelson954bed02010-09-23 18:22:47 -0700105};
106
107static u8 omap3_beagle_version;
108
Joel A Fernandes5fe8b4c2011-07-05 03:38:22 -0700109/*
110 * Board-specific configuration
111 * Defaults to BeagleBoard-xMC
112 */
113static struct {
114 int mmc1_gpio_wp;
Roger Quadroscf7dd652013-05-08 16:48:00 -0700115 bool usb_pwr_level; /* 0 - Active Low, 1 - Active High */
Russ Dillaef2b892012-05-09 15:15:03 -0700116 int dvi_pd_gpio;
Joel A Fernandes5fe8b4c2011-07-05 03:38:22 -0700117 int usr_button_gpio;
Russ Dill1afb82e2012-05-09 14:19:15 -0700118 int mmc_caps;
Joel A Fernandes5fe8b4c2011-07-05 03:38:22 -0700119} beagle_config = {
120 .mmc1_gpio_wp = -EINVAL,
Roger Quadroscf7dd652013-05-08 16:48:00 -0700121 .usb_pwr_level = 0,
Russ Dillaef2b892012-05-09 15:15:03 -0700122 .dvi_pd_gpio = -EINVAL,
Joel A Fernandes5fe8b4c2011-07-05 03:38:22 -0700123 .usr_button_gpio = 4,
Russ Dill1afb82e2012-05-09 14:19:15 -0700124 .mmc_caps = MMC_CAP_4_BIT_DATA | MMC_CAP_8_BIT_DATA,
Joel A Fernandes5fe8b4c2011-07-05 03:38:22 -0700125};
Robert Nelson954bed02010-09-23 18:22:47 -0700126
Igor Grinbergbc593f52011-05-03 18:22:09 +0300127static struct gpio omap3_beagle_rev_gpios[] __initdata = {
128 { 171, GPIOF_IN, "rev_id_0" },
129 { 172, GPIOF_IN, "rev_id_1" },
130 { 173, GPIOF_IN, "rev_id_2" },
131};
132
Robert Nelson954bed02010-09-23 18:22:47 -0700133static void __init omap3_beagle_init_rev(void)
134{
135 int ret;
136 u16 beagle_rev = 0;
137
138 omap_mux_init_gpio(171, OMAP_PIN_INPUT_PULLUP);
139 omap_mux_init_gpio(172, OMAP_PIN_INPUT_PULLUP);
140 omap_mux_init_gpio(173, OMAP_PIN_INPUT_PULLUP);
141
Igor Grinbergbc593f52011-05-03 18:22:09 +0300142 ret = gpio_request_array(omap3_beagle_rev_gpios,
143 ARRAY_SIZE(omap3_beagle_rev_gpios));
144 if (ret < 0) {
145 printk(KERN_ERR "Unable to get revision detection GPIO pins\n");
146 omap3_beagle_version = OMAP3BEAGLE_BOARD_UNKN;
147 return;
148 }
Robert Nelson954bed02010-09-23 18:22:47 -0700149
150 beagle_rev = gpio_get_value(171) | (gpio_get_value(172) << 1)
151 | (gpio_get_value(173) << 2);
152
Tasslehoff Kjappfot5e2ffc32011-05-31 04:58:56 -0700153 gpio_free_array(omap3_beagle_rev_gpios,
154 ARRAY_SIZE(omap3_beagle_rev_gpios));
155
Robert Nelson954bed02010-09-23 18:22:47 -0700156 switch (beagle_rev) {
157 case 7:
158 printk(KERN_INFO "OMAP3 Beagle Rev: Ax/Bx\n");
159 omap3_beagle_version = OMAP3BEAGLE_BOARD_AXBX;
Joel A Fernandes5fe8b4c2011-07-05 03:38:22 -0700160 beagle_config.mmc1_gpio_wp = 29;
Russ Dillaef2b892012-05-09 15:15:03 -0700161 beagle_config.dvi_pd_gpio = 170;
Joel A Fernandes5fe8b4c2011-07-05 03:38:22 -0700162 beagle_config.usr_button_gpio = 7;
Robert Nelson954bed02010-09-23 18:22:47 -0700163 break;
164 case 6:
165 printk(KERN_INFO "OMAP3 Beagle Rev: C1/C2/C3\n");
166 omap3_beagle_version = OMAP3BEAGLE_BOARD_C1_3;
Joel A Fernandes5fe8b4c2011-07-05 03:38:22 -0700167 beagle_config.mmc1_gpio_wp = 23;
Russ Dillaef2b892012-05-09 15:15:03 -0700168 beagle_config.dvi_pd_gpio = 170;
Joel A Fernandes5fe8b4c2011-07-05 03:38:22 -0700169 beagle_config.usr_button_gpio = 7;
Robert Nelson954bed02010-09-23 18:22:47 -0700170 break;
171 case 5:
172 printk(KERN_INFO "OMAP3 Beagle Rev: C4\n");
173 omap3_beagle_version = OMAP3BEAGLE_BOARD_C4;
Joel A Fernandes5fe8b4c2011-07-05 03:38:22 -0700174 beagle_config.mmc1_gpio_wp = 23;
Russ Dillaef2b892012-05-09 15:15:03 -0700175 beagle_config.dvi_pd_gpio = 170;
Joel A Fernandes5fe8b4c2011-07-05 03:38:22 -0700176 beagle_config.usr_button_gpio = 7;
Robert Nelson954bed02010-09-23 18:22:47 -0700177 break;
178 case 0:
Joel A Fernandes5fe8b4c2011-07-05 03:38:22 -0700179 printk(KERN_INFO "OMAP3 Beagle Rev: xM Ax/Bx\n");
Robert Nelson954bed02010-09-23 18:22:47 -0700180 omap3_beagle_version = OMAP3BEAGLE_BOARD_XM;
Roger Quadroscf7dd652013-05-08 16:48:00 -0700181 beagle_config.usb_pwr_level = 1;
Russ Dill1afb82e2012-05-09 14:19:15 -0700182 beagle_config.mmc_caps &= ~MMC_CAP_8_BIT_DATA;
Joel A Fernandes5fe8b4c2011-07-05 03:38:22 -0700183 break;
184 case 2:
185 printk(KERN_INFO "OMAP3 Beagle Rev: xM C\n");
186 omap3_beagle_version = OMAP3BEAGLE_BOARD_XMC;
Russ Dill1afb82e2012-05-09 14:19:15 -0700187 beagle_config.mmc_caps &= ~MMC_CAP_8_BIT_DATA;
Robert Nelson954bed02010-09-23 18:22:47 -0700188 break;
189 default:
190 printk(KERN_INFO "OMAP3 Beagle Rev: unknown %hd\n", beagle_rev);
191 omap3_beagle_version = OMAP3BEAGLE_BOARD_UNKN;
192 }
Robert Nelson954bed02010-09-23 18:22:47 -0700193}
194
Syed Mohammed, Khasim2885f002008-10-09 17:51:42 +0300195static struct mtd_partition omap3beagle_nand_partitions[] = {
196 /* All the partition sizes are listed in terms of NAND block size */
197 {
198 .name = "X-Loader",
199 .offset = 0,
200 .size = 4 * NAND_BLOCK_SIZE,
201 .mask_flags = MTD_WRITEABLE, /* force read-only */
202 },
203 {
204 .name = "U-Boot",
205 .offset = MTDPART_OFS_APPEND, /* Offset = 0x80000 */
206 .size = 15 * NAND_BLOCK_SIZE,
207 .mask_flags = MTD_WRITEABLE, /* force read-only */
208 },
209 {
210 .name = "U-Boot Env",
211 .offset = MTDPART_OFS_APPEND, /* Offset = 0x260000 */
212 .size = 1 * NAND_BLOCK_SIZE,
213 },
214 {
215 .name = "Kernel",
216 .offset = MTDPART_OFS_APPEND, /* Offset = 0x280000 */
217 .size = 32 * NAND_BLOCK_SIZE,
218 },
219 {
220 .name = "File System",
221 .offset = MTDPART_OFS_APPEND, /* Offset = 0x680000 */
222 .size = MTDPART_SIZ_FULL,
223 },
224};
225
Koen Kooi044d32f2010-04-22 10:23:42 +0200226/* DSS */
227
Tomi Valkeinen53025562013-05-17 14:00:19 +0300228static struct connector_dvi_platform_data beagle_dvi_connector_pdata = {
229 .name = "dvi",
230 .source = "tfp410.0",
231 .i2c_bus_num = 3,
Bryan Wu89747c92010-11-17 13:34:34 +0000232};
233
Tomi Valkeinen53025562013-05-17 14:00:19 +0300234static struct platform_device beagle_dvi_connector_device = {
235 .name = "connector-dvi",
236 .id = 0,
237 .dev.platform_data = &beagle_dvi_connector_pdata,
Koen Kooi044d32f2010-04-22 10:23:42 +0200238};
239
Tomi Valkeinen53025562013-05-17 14:00:19 +0300240static struct encoder_tfp410_platform_data beagle_tfp410_pdata = {
241 .name = "tfp410.0",
242 .source = "dpi.0",
243 .data_lines = 24,
244 .power_down_gpio = -1,
245};
246
247static struct platform_device beagle_tfp410_device = {
248 .name = "tfp410",
249 .id = 0,
250 .dev.platform_data = &beagle_tfp410_pdata,
251};
252
253static struct connector_atv_platform_data beagle_tv_pdata = {
Koen Kooi044d32f2010-04-22 10:23:42 +0200254 .name = "tv",
Tomi Valkeinen53025562013-05-17 14:00:19 +0300255 .source = "venc.0",
256 .connector_type = OMAP_DSS_VENC_TYPE_SVIDEO,
257 .invert_polarity = false,
Koen Kooi044d32f2010-04-22 10:23:42 +0200258};
259
Tomi Valkeinen53025562013-05-17 14:00:19 +0300260static struct platform_device beagle_tv_connector_device = {
261 .name = "connector-analog-tv",
262 .id = 0,
263 .dev.platform_data = &beagle_tv_pdata,
Koen Kooi044d32f2010-04-22 10:23:42 +0200264};
265
266static struct omap_dss_board_info beagle_dss_data = {
Tomi Valkeinen53025562013-05-17 14:00:19 +0300267 .default_display_name = "dvi",
Koen Kooi044d32f2010-04-22 10:23:42 +0200268};
269
Paul Walmsley2e12bd72009-05-28 14:03:59 -0700270#include "sdram-micron-mt46h32m32lf-6.h"
271
Adrian Hunter68ff0422010-02-15 10:03:34 -0800272static struct omap2_hsmmc_info mmc[] = {
Tony Lindgren90c62bf2008-12-10 17:37:17 -0800273 {
274 .mmc = 1,
Russ Dill1afb82e2012-05-09 14:19:15 -0700275 .caps = MMC_CAP_4_BIT_DATA,
Joel A Fernandes5fe8b4c2011-07-05 03:38:22 -0700276 .gpio_wp = -EINVAL,
Tony Lindgren3b972bf2012-02-20 09:43:29 -0800277 .deferred = true,
Tony Lindgren90c62bf2008-12-10 17:37:17 -0800278 },
279 {} /* Terminator */
280};
281
Oleg Drokin786b01a2011-06-06 18:57:07 +0000282static struct regulator_consumer_supply beagle_vmmc1_supply[] = {
283 REGULATOR_SUPPLY("vmmc", "omap_hsmmc.0"),
David Brownellbb3b9d82009-05-28 14:04:03 -0700284};
285
Oleg Drokin786b01a2011-06-06 18:57:07 +0000286static struct regulator_consumer_supply beagle_vsim_supply[] = {
287 REGULATOR_SUPPLY("vmmc_aux", "omap_hsmmc.0"),
David Brownellbb3b9d82009-05-28 14:04:03 -0700288};
289
Tony Lindgren90c62bf2008-12-10 17:37:17 -0800290static struct gpio_led gpio_leds[];
291
Roger Quadros60226712013-03-20 17:44:43 +0200292static struct usbhs_phy_data phy_data[] = {
293 {
294 .port = 2,
295 .reset_gpio = 147,
296 .vcc_gpio = -1, /* updated in beagle_twl_gpio_setup */
297 .vcc_polarity = 1, /* updated in beagle_twl_gpio_setup */
Roger Quadros60226712013-03-20 17:44:43 +0200298 },
299};
300
Tony Lindgren90c62bf2008-12-10 17:37:17 -0800301static int beagle_twl_gpio_setup(struct device *dev,
302 unsigned gpio, unsigned ngpio)
303{
Joel A Fernandes5fe8b4c2011-07-05 03:38:22 -0700304 int r;
Koen Kooi1bd9ef12011-01-12 00:23:29 +0000305
Joel A Fernandes5fe8b4c2011-07-05 03:38:22 -0700306 mmc[0].gpio_wp = beagle_config.mmc1_gpio_wp;
Tony Lindgren90c62bf2008-12-10 17:37:17 -0800307 /* gpio + 0 is "mmc0_cd" (input/IRQ) */
Tony Lindgren145d9c92009-01-15 13:09:53 +0200308 mmc[0].gpio_cd = gpio + 0;
Tony Lindgren3b972bf2012-02-20 09:43:29 -0800309 omap_hsmmc_late_init(mmc);
Tony Lindgren90c62bf2008-12-10 17:37:17 -0800310
Koen Kooi68fc3e12011-01-11 17:13:35 +0000311 /*
312 * TWL4030_GPIO_MAX + 0 == ledA, EHCI nEN_USB_PWR (out, XM active
313 * high / others active low)
Igor Grinbergbc593f52011-05-03 18:22:09 +0300314 * DVI reset GPIO is different between beagle revisions
Koen Kooi1bd9ef12011-01-12 00:23:29 +0000315 */
Joel A Fernandes5fe8b4c2011-07-05 03:38:22 -0700316 /* Valid for all -xM revisions */
317 if (cpu_is_omap3630()) {
Igor Grinbergbc593f52011-05-03 18:22:09 +0300318 /*
319 * gpio + 1 on Xm controls the TFP410's enable line (active low)
320 * gpio + 2 control varies depending on the board rev as below:
321 * P7/P8 revisions(prototype): Camera EN
322 * A2+ revisions (production): LDO (DVI, serial, led blocks)
323 */
324 r = gpio_request_one(gpio + 1, GPIOF_OUT_INIT_LOW,
325 "nDVI_PWR_EN");
Koen Kooi1bd9ef12011-01-12 00:23:29 +0000326 if (r)
327 pr_err("%s: unable to configure nDVI_PWR_EN\n",
328 __func__);
Russ Dillaef2b892012-05-09 15:15:03 -0700329
330 beagle_config.dvi_pd_gpio = gpio + 2;
331
Igor Grinbergbc593f52011-05-03 18:22:09 +0300332 } else {
Igor Grinbergbc593f52011-05-03 18:22:09 +0300333 /*
334 * REVISIT: need ehci-omap hooks for external VBUS
335 * power switch and overcurrent detect
336 */
337 if (gpio_request_one(gpio + 1, GPIOF_IN, "EHCI_nOC"))
338 pr_err("%s: unable to configure EHCI_nOC\n", __func__);
Koen Kooi1bd9ef12011-01-12 00:23:29 +0000339 }
Tomi Valkeinen53025562013-05-17 14:00:19 +0300340 beagle_tfp410_pdata.power_down_gpio = beagle_config.dvi_pd_gpio;
341
342 platform_device_register(&beagle_tfp410_device);
343 platform_device_register(&beagle_dvi_connector_device);
344 platform_device_register(&beagle_tv_connector_device);
Koen Kooi1bd9ef12011-01-12 00:23:29 +0000345
Roger Quadros60226712013-03-20 17:44:43 +0200346 /* TWL4030_GPIO_MAX i.e. LED_GPO controls HS USB Port 2 power */
347 phy_data[0].vcc_gpio = gpio + TWL4030_GPIO_MAX;
348 phy_data[0].vcc_polarity = beagle_config.usb_pwr_level;
Igor Grinbergbc593f52011-05-03 18:22:09 +0300349
Roger Quadros60226712013-03-20 17:44:43 +0200350 usbhs_init_phys(phy_data, ARRAY_SIZE(phy_data));
Tony Lindgren90c62bf2008-12-10 17:37:17 -0800351 return 0;
352}
353
354static struct twl4030_gpio_platform_data beagle_gpio_data = {
Tony Lindgren90c62bf2008-12-10 17:37:17 -0800355 .use_leds = true,
356 .pullups = BIT(1),
357 .pulldowns = BIT(2) | BIT(6) | BIT(7) | BIT(8) | BIT(13)
358 | BIT(15) | BIT(16) | BIT(17),
359 .setup = beagle_twl_gpio_setup,
360};
361
David Brownellbb3b9d82009-05-28 14:04:03 -0700362/* VMMC1 for MMC1 pins CMD, CLK, DAT0..DAT3 (20 mA, plus card == max 220 mA) */
363static struct regulator_init_data beagle_vmmc1 = {
364 .constraints = {
365 .min_uV = 1850000,
366 .max_uV = 3150000,
367 .valid_modes_mask = REGULATOR_MODE_NORMAL
368 | REGULATOR_MODE_STANDBY,
369 .valid_ops_mask = REGULATOR_CHANGE_VOLTAGE
370 | REGULATOR_CHANGE_MODE
371 | REGULATOR_CHANGE_STATUS,
372 },
Oleg Drokin786b01a2011-06-06 18:57:07 +0000373 .num_consumer_supplies = ARRAY_SIZE(beagle_vmmc1_supply),
374 .consumer_supplies = beagle_vmmc1_supply,
David Brownellbb3b9d82009-05-28 14:04:03 -0700375};
376
377/* VSIM for MMC1 pins DAT4..DAT7 (2 mA, plus card == max 50 mA) */
378static struct regulator_init_data beagle_vsim = {
379 .constraints = {
380 .min_uV = 1800000,
381 .max_uV = 3000000,
382 .valid_modes_mask = REGULATOR_MODE_NORMAL
383 | REGULATOR_MODE_STANDBY,
384 .valid_ops_mask = REGULATOR_CHANGE_VOLTAGE
385 | REGULATOR_CHANGE_MODE
386 | REGULATOR_CHANGE_STATUS,
387 },
Oleg Drokin786b01a2011-06-06 18:57:07 +0000388 .num_consumer_supplies = ARRAY_SIZE(beagle_vsim_supply),
389 .consumer_supplies = beagle_vsim_supply,
David Brownellbb3b9d82009-05-28 14:04:03 -0700390};
391
Tony Lindgren90c62bf2008-12-10 17:37:17 -0800392static struct twl4030_platform_data beagle_twldata = {
Tony Lindgren90c62bf2008-12-10 17:37:17 -0800393 /* platform_data for children goes here */
394 .gpio = &beagle_gpio_data,
David Brownellbb3b9d82009-05-28 14:04:03 -0700395 .vmmc1 = &beagle_vmmc1,
396 .vsim = &beagle_vsim,
Tony Lindgren90c62bf2008-12-10 17:37:17 -0800397};
398
Mathieu J. Poiriere3333f42010-09-23 18:22:48 -0700399static struct i2c_board_info __initdata beagle_i2c_eeprom[] = {
400 {
401 I2C_BOARD_INFO("eeprom", 0x50),
402 },
403};
404
Tony Lindgren90c62bf2008-12-10 17:37:17 -0800405static int __init omap3_beagle_i2c_init(void)
406{
Peter Ujfalusi827ed9a2011-06-07 10:28:54 +0300407 omap3_pmic_get_config(&beagle_twldata,
Kyle Mannacdcc9662011-08-11 22:33:15 -0500408 TWL_COMMON_PDATA_USB | TWL_COMMON_PDATA_MADC |
409 TWL_COMMON_PDATA_AUDIO,
Peter Ujfalusib252b0e2011-06-07 11:38:24 +0300410 TWL_COMMON_REGULATOR_VDAC | TWL_COMMON_REGULATOR_VPLL2);
411
412 beagle_twldata.vpll2->constraints.name = "VDVI";
413
Mike Rapoportfbd80712011-04-25 01:09:06 +0300414 omap3_pmic_init("twl4030", &beagle_twldata);
Koen Kooi8ca7fe22009-03-04 10:07:42 -0800415 /* Bus 3 is attached to the DVI port where devices like the pico DLP
416 * projector don't work reliably with 400kHz */
Mathieu J. Poiriere3333f42010-09-23 18:22:48 -0700417 omap_register_i2c_bus(3, 100, beagle_i2c_eeprom, ARRAY_SIZE(beagle_i2c_eeprom));
Tony Lindgren90c62bf2008-12-10 17:37:17 -0800418 return 0;
419}
420
Syed Mohammed, Khasim2885f002008-10-09 17:51:42 +0300421static struct gpio_led gpio_leds[] = {
422 {
423 .name = "beagleboard::usr0",
424 .default_trigger = "heartbeat",
425 .gpio = 150,
426 },
427 {
428 .name = "beagleboard::usr1",
429 .default_trigger = "mmc0",
430 .gpio = 149,
431 },
432};
433
434static struct gpio_led_platform_data gpio_led_info = {
435 .leds = gpio_leds,
436 .num_leds = ARRAY_SIZE(gpio_leds),
437};
438
439static struct platform_device leds_gpio = {
440 .name = "leds-gpio",
441 .id = -1,
442 .dev = {
443 .platform_data = &gpio_led_info,
444 },
445};
446
447static struct gpio_keys_button gpio_buttons[] = {
448 {
449 .code = BTN_EXTRA,
Joel A Fernandes5fe8b4c2011-07-05 03:38:22 -0700450 /* Dynamically assigned depending on board */
451 .gpio = -EINVAL,
Syed Mohammed, Khasim2885f002008-10-09 17:51:42 +0300452 .desc = "user",
453 .wakeup = 1,
454 },
455};
456
457static struct gpio_keys_platform_data gpio_key_info = {
458 .buttons = gpio_buttons,
459 .nbuttons = ARRAY_SIZE(gpio_buttons),
460};
461
462static struct platform_device keys_gpio = {
463 .name = "gpio-keys",
464 .id = -1,
465 .dev = {
466 .platform_data = &gpio_key_info,
467 },
468};
469
Kyle Mannacdcc9662011-08-11 22:33:15 -0500470static struct platform_device madc_hwmon = {
471 .name = "twl4030_madc_hwmon",
472 .id = -1,
473};
474
Syed Mohammed, Khasim2885f002008-10-09 17:51:42 +0300475static struct platform_device *omap3_beagle_devices[] __initdata = {
Syed Mohammed, Khasim2885f002008-10-09 17:51:42 +0300476 &leds_gpio,
477 &keys_gpio,
Kyle Mannacdcc9662011-08-11 22:33:15 -0500478 &madc_hwmon,
Peter Ujfalusib8e21302012-11-07 15:25:30 +0100479 &leds_pwm,
Syed Mohammed, Khasim2885f002008-10-09 17:51:42 +0300480};
481
Roger Quadros42973152013-02-14 10:13:48 +0200482static struct usbhs_omap_platform_data usbhs_bdata __initdata = {
Keshava Munegowda181b2502011-03-01 20:08:16 +0530483 .port_mode[1] = OMAP_EHCI_PORT_MODE_PHY,
Felipe Balbi58a54912009-11-22 10:11:01 -0800484};
485
Tony Lindgrenca5742b2009-12-11 16:16:32 -0800486#ifdef CONFIG_OMAP_MUX
487static struct omap_board_mux board_mux[] __initdata = {
488 { .reg_offset = OMAP_MUX_TERMINATOR },
489};
Tony Lindgrenca5742b2009-12-11 16:16:32 -0800490#endif
491
Kevin Hilman65bf7ca2012-10-22 11:08:27 -0700492static int __init beagle_opp_init(void)
Nishanth Menon87434102011-01-07 09:41:13 -0600493{
494 int r = 0;
495
Kevin Hilman65bf7ca2012-10-22 11:08:27 -0700496 if (!machine_is_omap3_beagle())
497 return 0;
498
499 /* Initialize the omap3 opp table if not already created. */
500 r = omap3_opp_init();
Russell Kingc48cd652013-03-13 20:44:21 +0000501 if (r < 0 && (r != -EEXIST)) {
Nishanth Menon87434102011-01-07 09:41:13 -0600502 pr_err("%s: opp default init failed\n", __func__);
Kevin Hilman65bf7ca2012-10-22 11:08:27 -0700503 return r;
Nishanth Menon87434102011-01-07 09:41:13 -0600504 }
505
Joel A Fernandes5fe8b4c2011-07-05 03:38:22 -0700506 /* Custom OPP enabled for all xM versions */
507 if (cpu_is_omap3630()) {
Kevin Hilman8c7f6592011-07-21 11:43:48 -0700508 struct device *mpu_dev, *iva_dev;
Nishanth Menon87434102011-01-07 09:41:13 -0600509
Kevin Hilman65bf7ca2012-10-22 11:08:27 -0700510 mpu_dev = get_cpu_device(0);
Benoit Coussonb1621fc2011-08-16 14:01:23 +0200511 iva_dev = omap_device_get_by_hwmod_name("iva");
Kevin Hilman8c7f6592011-07-21 11:43:48 -0700512
Wei Yongjunc27f2de2013-10-30 13:23:21 +0800513 if (!mpu_dev || IS_ERR(iva_dev)) {
Nishanth Menon87434102011-01-07 09:41:13 -0600514 pr_err("%s: Aiee.. no mpu/dsp devices? %p %p\n",
Kevin Hilman8c7f6592011-07-21 11:43:48 -0700515 __func__, mpu_dev, iva_dev);
Kevin Hilman65bf7ca2012-10-22 11:08:27 -0700516 return -ENODEV;
Nishanth Menon87434102011-01-07 09:41:13 -0600517 }
518 /* Enable MPU 1GHz and lower opps */
Nishanth Menon5d4879c2013-09-19 16:03:50 -0500519 r = dev_pm_opp_enable(mpu_dev, 800000000);
Nishanth Menon87434102011-01-07 09:41:13 -0600520 /* TODO: MPU 1GHz needs SR and ABB */
521
522 /* Enable IVA 800MHz and lower opps */
Nishanth Menon5d4879c2013-09-19 16:03:50 -0500523 r |= dev_pm_opp_enable(iva_dev, 660000000);
Nishanth Menon87434102011-01-07 09:41:13 -0600524 /* TODO: DSP 800MHz needs SR and ABB */
525 if (r) {
526 pr_err("%s: failed to enable higher opp %d\n",
527 __func__, r);
528 /*
529 * Cleanup - disable the higher freqs - we dont care
530 * about the results
531 */
Nishanth Menon5d4879c2013-09-19 16:03:50 -0500532 dev_pm_opp_disable(mpu_dev, 800000000);
533 dev_pm_opp_disable(iva_dev, 660000000);
Nishanth Menon87434102011-01-07 09:41:13 -0600534 }
535 }
Kevin Hilman65bf7ca2012-10-22 11:08:27 -0700536 return 0;
Nishanth Menon87434102011-01-07 09:41:13 -0600537}
Tony Lindgrenb76c8b12013-01-11 11:24:18 -0800538omap_device_initcall(beagle_opp_init);
Nishanth Menon87434102011-01-07 09:41:13 -0600539
Syed Mohammed, Khasim2885f002008-10-09 17:51:42 +0300540static void __init omap3_beagle_init(void)
541{
Tony Lindgrenca5742b2009-12-11 16:16:32 -0800542 omap3_mux_init(board_mux, OMAP_PACKAGE_CBB);
Robert Nelson954bed02010-09-23 18:22:47 -0700543 omap3_beagle_init_rev();
Tony Lindgrend1589f02012-02-20 09:43:30 -0800544
Russ Dillaef2b892012-05-09 15:15:03 -0700545 if (gpio_is_valid(beagle_config.mmc1_gpio_wp))
Tony Lindgrend1589f02012-02-20 09:43:30 -0800546 omap_mux_init_gpio(beagle_config.mmc1_gpio_wp, OMAP_PIN_INPUT);
Russ Dill1afb82e2012-05-09 14:19:15 -0700547 mmc[0].caps = beagle_config.mmc_caps;
Tony Lindgren3b972bf2012-02-20 09:43:29 -0800548 omap_hsmmc_init(mmc);
Tony Lindgrend1589f02012-02-20 09:43:30 -0800549
Tony Lindgren90c62bf2008-12-10 17:37:17 -0800550 omap3_beagle_i2c_init();
Joel A Fernandes5fe8b4c2011-07-05 03:38:22 -0700551
552 gpio_buttons[0].gpio = beagle_config.usr_button_gpio;
553
Syed Mohammed, Khasim2885f002008-10-09 17:51:42 +0300554 platform_add_devices(omap3_beagle_devices,
555 ARRAY_SIZE(omap3_beagle_devices));
Russ Dillaef2b892012-05-09 15:15:03 -0700556 if (gpio_is_valid(beagle_config.dvi_pd_gpio))
557 omap_mux_init_gpio(beagle_config.dvi_pd_gpio, OMAP_PIN_OUTPUT);
Senthilvadivu Guruswamyd5e13222011-02-22 11:24:50 +0200558 omap_display_init(&beagle_dss_data);
Tomi Valkeinen53025562013-05-17 14:00:19 +0300559
Syed Mohammed, Khasim2885f002008-10-09 17:51:42 +0300560 omap_serial_init();
Tony Lindgrena4ca9db2011-08-22 23:57:23 -0700561 omap_sdrc_init(mt46h32m32lf6_sdrc_params,
562 mt46h32m32lf6_sdrc_params);
Tony Lindgren90c62bf2008-12-10 17:37:17 -0800563
Kishon Vijay Abraham I51482be2013-02-06 18:58:50 +0530564 usb_bind_phy("musb-hdrc.0.auto", 0, "twl4030_usb");
Mike Rapoport9e186302011-04-27 11:56:12 +0300565 usb_musb_init(NULL);
Roger Quadros60226712013-03-20 17:44:43 +0200566
Keshava Munegowda9e64bb12011-03-01 20:08:19 +0530567 usbhs_init(&usbhs_bdata);
Roger Quadros60226712013-03-20 17:44:43 +0200568
Afzal Mohammed2e618262012-02-29 18:11:56 +0530569 board_nand_init(omap3beagle_nand_partitions,
570 ARRAY_SIZE(omap3beagle_nand_partitions), NAND_CS,
571 NAND_BUSWIDTH_16, NULL);
Peter Ujfalusi40234bf2012-12-05 14:45:23 +0100572 omap_twl4030_audio_init("omap3beagle", NULL);
Jean Pihet9fb97412009-07-24 19:43:25 -0600573
Alexander Hollere2a346a2011-04-05 15:40:08 +0200574 /* Ensure msecure is mux'd to be able to set the RTC. */
575 omap_mux_init_signal("sys_drm_msecure", OMAP_PIN_OFF_OUTPUT_HIGH);
576
Jean Pihet9fb97412009-07-24 19:43:25 -0600577 /* Ensure SDRC pins are mux'd for self-refresh */
Tony Lindgren4896e392009-12-11 16:16:32 -0800578 omap_mux_init_signal("sdrc_cke0", OMAP_PIN_OUTPUT);
579 omap_mux_init_signal("sdrc_cke1", OMAP_PIN_OUTPUT);
Peter Ujfalusib8e21302012-11-07 15:25:30 +0100580
581 pwm_add_table(pwm_lookup, ARRAY_SIZE(pwm_lookup));
Syed Mohammed, Khasim2885f002008-10-09 17:51:42 +0300582}
583
Syed Mohammed, Khasim2885f002008-10-09 17:51:42 +0300584MACHINE_START(OMAP3_BEAGLE, "OMAP3 Beagle Board")
585 /* Maintainer: Syed Mohammed Khasim - http://beagleboard.org */
Nicolas Pitre5e52b432011-07-05 22:38:15 -0400586 .atag_offset = 0x100,
Russell King71ee7da2010-05-23 10:18:16 +0100587 .reserve = omap_reserve,
Russell King - ARM Linux3dc3bad2011-02-14 15:40:20 -0800588 .map_io = omap3_map_io,
Tony Lindgren7b250af2011-10-04 18:26:28 -0700589 .init_early = omap3_init_early,
Tony Lindgrenbe732462011-09-26 15:25:22 -0700590 .init_irq = omap3_init_irq,
Marc Zyngier6b2f55d2011-09-06 10:23:45 +0100591 .handle_irq = omap3_intc_handle_irq,
Syed Mohammed, Khasim2885f002008-10-09 17:51:42 +0300592 .init_machine = omap3_beagle_init,
Shawn Guobbd707a2012-04-26 16:06:50 +0800593 .init_late = omap3_init_late,
Stephen Warren6bb27d72012-11-08 12:40:59 -0700594 .init_time = omap3_secure_sync32k_timer_init,
Paul Walmsley187e3e02012-10-29 20:56:12 -0600595 .restart = omap3xxx_restart,
Syed Mohammed, Khasim2885f002008-10-09 17:51:42 +0300596MACHINE_END