blob: ac337d264093f0fd40e688c9191bf186c77aeda8 [file] [log] [blame]
Valentin Longchamp988d2d42008-11-23 17:35:08 +01001/*
2 * Copyright (C) 2008 Valentin Longchamp, EPFL Mobots group
3 *
4 * This program is free software; you can redistribute it and/or modify
5 * it under the terms of the GNU General Public License as published by
6 * the Free Software Foundation; either version 2 of the License, or
7 * (at your option) any later version.
8 *
9 * This program is distributed in the hope that it will be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 * GNU General Public License for more details.
13 *
14 * You should have received a copy of the GNU General Public License
15 * along with this program; if not, write to the Free Software
16 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
17 */
18
Valentin Longchampb23f1532009-08-10 18:33:11 +020019#include <linux/delay.h>
Valentin Longchamp88b05642009-08-10 18:33:12 +020020#include <linux/fsl_devices.h>
Valentin Longchamp45b131a2009-04-21 10:24:56 +020021#include <linux/gpio.h>
Valentin Longchamp988d2d42008-11-23 17:35:08 +010022#include <linux/init.h>
Valentin Longchamp45b131a2009-04-21 10:24:56 +020023#include <linux/interrupt.h>
Valentin Longchamp77aa5612009-08-12 11:29:19 +020024#include <linux/leds.h>
Valentin Longchamp220bbce2009-04-17 15:20:25 +020025#include <linux/memory.h>
Valentin Longchamp988d2d42008-11-23 17:35:08 +010026#include <linux/mtd/physmap.h>
27#include <linux/mtd/partitions.h>
Valentin Longchamp220bbce2009-04-17 15:20:25 +020028#include <linux/platform_device.h>
29#include <linux/types.h>
Valentin Longchamp988d2d42008-11-23 17:35:08 +010030
Valentin Longchamp988d2d42008-11-23 17:35:08 +010031#include <asm/mach-types.h>
32#include <asm/mach/arch.h>
33#include <asm/mach/time.h>
34#include <asm/mach/map.h>
Valentin Longchamp220bbce2009-04-17 15:20:25 +020035#include <mach/board-mx31moboard.h>
Valentin Longchamp988d2d42008-11-23 17:35:08 +010036#include <mach/common.h>
Valentin Longchamp220bbce2009-04-17 15:20:25 +020037#include <mach/hardware.h>
Valentin Longchamp988d2d42008-11-23 17:35:08 +010038#include <mach/imx-uart.h>
39#include <mach/iomux-mx3.h>
Valentin Longchamp4ec6ecc72009-04-21 10:24:22 +020040#include <mach/i2c.h>
Valentin Longchamp45b131a2009-04-21 10:24:56 +020041#include <mach/mmc.h>
Sascha Hauerc5aa0ad2009-05-25 17:36:19 +020042#include <mach/mx31.h>
Valentin Longchamp988d2d42008-11-23 17:35:08 +010043
44#include "devices.h"
45
Valentin Longchamp220bbce2009-04-17 15:20:25 +020046static unsigned int moboard_pins[] = {
47 /* UART0 */
48 MX31_PIN_CTS1__CTS1, MX31_PIN_RTS1__RTS1,
49 MX31_PIN_TXD1__TXD1, MX31_PIN_RXD1__RXD1,
50 /* UART4 */
51 MX31_PIN_PC_RST__CTS5, MX31_PIN_PC_VS2__RTS5,
52 MX31_PIN_PC_BVD2__TXD5, MX31_PIN_PC_BVD1__RXD5,
Valentin Longchamp56c7a452009-04-22 10:55:50 +020053 /* I2C0 */
54 MX31_PIN_I2C_DAT__I2C1_SDA, MX31_PIN_I2C_CLK__I2C1_SCL,
55 /* I2C1 */
56 MX31_PIN_DCD_DTE1__I2C2_SDA, MX31_PIN_RI_DTE1__I2C2_SCL,
57 /* SDHC1 */
58 MX31_PIN_SD1_DATA3__SD1_DATA3, MX31_PIN_SD1_DATA2__SD1_DATA2,
59 MX31_PIN_SD1_DATA1__SD1_DATA1, MX31_PIN_SD1_DATA0__SD1_DATA0,
60 MX31_PIN_SD1_CLK__SD1_CLK, MX31_PIN_SD1_CMD__SD1_CMD,
61 MX31_PIN_ATA_CS0__GPIO3_26, MX31_PIN_ATA_CS1__GPIO3_27,
Valentin Longchampb23f1532009-08-10 18:33:11 +020062 /* USB reset */
63 MX31_PIN_GPIO1_0__GPIO1_0,
Valentin Longchamp88b05642009-08-10 18:33:12 +020064 /* USB OTG */
65 MX31_PIN_USBOTG_DATA0__USBOTG_DATA0,
66 MX31_PIN_USBOTG_DATA1__USBOTG_DATA1,
67 MX31_PIN_USBOTG_DATA2__USBOTG_DATA2,
68 MX31_PIN_USBOTG_DATA3__USBOTG_DATA3,
69 MX31_PIN_USBOTG_DATA4__USBOTG_DATA4,
70 MX31_PIN_USBOTG_DATA5__USBOTG_DATA5,
71 MX31_PIN_USBOTG_DATA6__USBOTG_DATA6,
72 MX31_PIN_USBOTG_DATA7__USBOTG_DATA7,
73 MX31_PIN_USBOTG_CLK__USBOTG_CLK, MX31_PIN_USBOTG_DIR__USBOTG_DIR,
74 MX31_PIN_USBOTG_NXT__USBOTG_NXT, MX31_PIN_USBOTG_STP__USBOTG_STP,
75 MX31_PIN_USB_OC__GPIO1_30,
Valentin Longchamp77aa5612009-08-12 11:29:19 +020076 /* LEDs */
77 MX31_PIN_SVEN0__GPIO2_0, MX31_PIN_STX0__GPIO2_1,
78 MX31_PIN_SRX0__GPIO2_2, MX31_PIN_SIMPD0__GPIO2_3,
Valentin Longchamp220bbce2009-04-17 15:20:25 +020079};
80
Valentin Longchamp988d2d42008-11-23 17:35:08 +010081static struct physmap_flash_data mx31moboard_flash_data = {
82 .width = 2,
83};
84
85static struct resource mx31moboard_flash_resource = {
86 .start = 0xa0000000,
87 .end = 0xa1ffffff,
88 .flags = IORESOURCE_MEM,
89};
90
91static struct platform_device mx31moboard_flash = {
92 .name = "physmap-flash",
93 .id = 0,
94 .dev = {
95 .platform_data = &mx31moboard_flash_data,
96 },
97 .resource = &mx31moboard_flash_resource,
98 .num_resources = 1,
99};
100
101static struct imxuart_platform_data uart_pdata = {
102 .flags = IMXUART_HAVE_RTSCTS,
103};
104
Valentin Longchamp4ec6ecc72009-04-21 10:24:22 +0200105static struct imxi2c_platform_data moboard_i2c0_pdata = {
106 .bitrate = 400000,
107};
108
109static struct imxi2c_platform_data moboard_i2c1_pdata = {
110 .bitrate = 100000,
111};
112
Valentin Longchamp45b131a2009-04-21 10:24:56 +0200113#define SDHC1_CD IOMUX_TO_GPIO(MX31_PIN_ATA_CS0)
114#define SDHC1_WP IOMUX_TO_GPIO(MX31_PIN_ATA_CS1)
115
116static int moboard_sdhc1_get_ro(struct device *dev)
117{
118 return gpio_get_value(SDHC1_WP);
119}
120
121static int moboard_sdhc1_init(struct device *dev, irq_handler_t detect_irq,
122 void *data)
123{
Sascha Hauer4f163eb2009-05-06 12:55:50 +0200124 int ret;
125
126 ret = gpio_request(SDHC1_CD, "sdhc-detect");
127 if (ret)
128 return ret;
129
130 gpio_direction_input(SDHC1_CD);
131
132 ret = gpio_request(SDHC1_WP, "sdhc-wp");
133 if (ret)
134 goto err_gpio_free;
135 gpio_direction_input(SDHC1_WP);
136
137 ret = request_irq(gpio_to_irq(SDHC1_CD), detect_irq,
Valentin Longchamp45b131a2009-04-21 10:24:56 +0200138 IRQF_TRIGGER_RISING | IRQF_TRIGGER_FALLING,
139 "sdhc1-card-detect", data);
Sascha Hauer4f163eb2009-05-06 12:55:50 +0200140 if (ret)
141 goto err_gpio_free_2;
142
143 return 0;
144
145err_gpio_free_2:
146 gpio_free(SDHC1_WP);
147err_gpio_free:
148 gpio_free(SDHC1_CD);
149
150 return ret;
Valentin Longchamp45b131a2009-04-21 10:24:56 +0200151}
152
153static void moboard_sdhc1_exit(struct device *dev, void *data)
154{
155 free_irq(gpio_to_irq(SDHC1_CD), data);
Sascha Hauer4f163eb2009-05-06 12:55:50 +0200156 gpio_free(SDHC1_WP);
157 gpio_free(SDHC1_CD);
Valentin Longchamp45b131a2009-04-21 10:24:56 +0200158}
159
160static struct imxmmc_platform_data sdhc1_pdata = {
161 .get_ro = moboard_sdhc1_get_ro,
162 .init = moboard_sdhc1_init,
163 .exit = moboard_sdhc1_exit,
164};
165
Valentin Longchampb23f1532009-08-10 18:33:11 +0200166/*
167 * this pin is dedicated for all mx31moboard systems, so we do it here
168 */
169#define USB_RESET_B IOMUX_TO_GPIO(MX31_PIN_GPIO1_0)
170
171static void usb_xcvr_reset(void)
172{
173 gpio_request(USB_RESET_B, "usb-reset");
174 gpio_direction_output(USB_RESET_B, 0);
175 mdelay(1);
176 gpio_set_value(USB_RESET_B, 1);
177}
178
Valentin Longchamp88b05642009-08-10 18:33:12 +0200179#define USB_PAD_CFG (PAD_CTL_DRV_MAX | PAD_CTL_SRE_FAST | PAD_CTL_HYS_CMOS | \
180 PAD_CTL_ODE_CMOS | PAD_CTL_100K_PU)
181
182#define OTG_EN_B IOMUX_TO_GPIO(MX31_PIN_USB_OC)
183
184static void moboard_usbotg_init(void)
185{
186 mxc_iomux_set_pad(MX31_PIN_USBOTG_DATA0, USB_PAD_CFG);
187 mxc_iomux_set_pad(MX31_PIN_USBOTG_DATA1, USB_PAD_CFG);
188 mxc_iomux_set_pad(MX31_PIN_USBOTG_DATA2, USB_PAD_CFG);
189 mxc_iomux_set_pad(MX31_PIN_USBOTG_DATA3, USB_PAD_CFG);
190 mxc_iomux_set_pad(MX31_PIN_USBOTG_DATA4, USB_PAD_CFG);
191 mxc_iomux_set_pad(MX31_PIN_USBOTG_DATA5, USB_PAD_CFG);
192 mxc_iomux_set_pad(MX31_PIN_USBOTG_DATA6, USB_PAD_CFG);
193 mxc_iomux_set_pad(MX31_PIN_USBOTG_DATA7, USB_PAD_CFG);
194 mxc_iomux_set_pad(MX31_PIN_USBOTG_CLK, USB_PAD_CFG);
195 mxc_iomux_set_pad(MX31_PIN_USBOTG_DIR, USB_PAD_CFG);
196 mxc_iomux_set_pad(MX31_PIN_USBOTG_NXT, USB_PAD_CFG);
197 mxc_iomux_set_pad(MX31_PIN_USBOTG_STP, USB_PAD_CFG);
198
199 gpio_request(OTG_EN_B, "usb-udc-en");
200 gpio_direction_output(OTG_EN_B, 0);
201}
202
203static struct fsl_usb2_platform_data usb_pdata = {
204 .operating_mode = FSL_USB2_DR_DEVICE,
205 .phy_mode = FSL_USB2_PHY_ULPI,
206};
207
Valentin Longchamp77aa5612009-08-12 11:29:19 +0200208static struct gpio_led mx31moboard_leds[] = {
209 {
210 .name = "coreboard-led-0:red:running",
211 .default_trigger = "heartbeat",
212 .gpio = IOMUX_TO_GPIO(MX31_PIN_SVEN0),
213 }, {
214 .name = "coreboard-led-1:red",
215 .gpio = IOMUX_TO_GPIO(MX31_PIN_STX0),
216 }, {
217 .name = "coreboard-led-2:red",
218 .gpio = IOMUX_TO_GPIO(MX31_PIN_SRX0),
219 }, {
220 .name = "coreboard-led-3:red",
221 .gpio = IOMUX_TO_GPIO(MX31_PIN_SIMPD0),
222 },
223};
224
225static struct gpio_led_platform_data mx31moboard_led_pdata = {
226 .num_leds = ARRAY_SIZE(mx31moboard_leds),
227 .leds = mx31moboard_leds,
228};
229
230static struct platform_device mx31moboard_leds_device = {
231 .name = "leds-gpio",
232 .id = -1,
233 .dev = {
234 .platform_data = &mx31moboard_led_pdata,
235 },
236};
237
Valentin Longchamp988d2d42008-11-23 17:35:08 +0100238static struct platform_device *devices[] __initdata = {
239 &mx31moboard_flash,
Valentin Longchamp77aa5612009-08-12 11:29:19 +0200240 &mx31moboard_leds_device,
Valentin Longchamp988d2d42008-11-23 17:35:08 +0100241};
242
Valentin Longchampe00f0b42009-02-16 12:47:51 +0100243static int mx31moboard_baseboard;
244core_param(mx31moboard_baseboard, mx31moboard_baseboard, int, 0444);
245
Valentin Longchamp988d2d42008-11-23 17:35:08 +0100246/*
247 * Board specific initialization.
248 */
249static void __init mxc_board_init(void)
250{
Valentin Longchamp220bbce2009-04-17 15:20:25 +0200251 mxc_iomux_setup_multiple_pins(moboard_pins, ARRAY_SIZE(moboard_pins),
252 "moboard");
253
Valentin Longchamp988d2d42008-11-23 17:35:08 +0100254 platform_add_devices(devices, ARRAY_SIZE(devices));
255
Valentin Longchamp988d2d42008-11-23 17:35:08 +0100256 mxc_register_device(&mxc_uart_device0, &uart_pdata);
Valentin Longchamp988d2d42008-11-23 17:35:08 +0100257 mxc_register_device(&mxc_uart_device4, &uart_pdata);
Valentin Longchampe00f0b42009-02-16 12:47:51 +0100258
Valentin Longchamp4ec6ecc72009-04-21 10:24:22 +0200259 mxc_register_device(&mxc_i2c_device0, &moboard_i2c0_pdata);
260 mxc_register_device(&mxc_i2c_device1, &moboard_i2c1_pdata);
261
Valentin Longchamp45b131a2009-04-21 10:24:56 +0200262 mxc_register_device(&mxcsdhc_device0, &sdhc1_pdata);
263
Valentin Longchampb23f1532009-08-10 18:33:11 +0200264 usb_xcvr_reset();
265
Valentin Longchamp88b05642009-08-10 18:33:12 +0200266 moboard_usbotg_init();
267 mxc_register_device(&mxc_otg_udc_device, &usb_pdata);
268
Valentin Longchampe00f0b42009-02-16 12:47:51 +0100269 switch (mx31moboard_baseboard) {
270 case MX31NOBOARD:
271 break;
272 case MX31DEVBOARD:
273 mx31moboard_devboard_init();
274 break;
275 case MX31MARXBOT:
276 mx31moboard_marxbot_init();
277 break;
278 default:
Valentin Longchamp220bbce2009-04-17 15:20:25 +0200279 printk(KERN_ERR "Illegal mx31moboard_baseboard type %d\n",
280 mx31moboard_baseboard);
Valentin Longchampe00f0b42009-02-16 12:47:51 +0100281 }
Valentin Longchamp988d2d42008-11-23 17:35:08 +0100282}
283
Valentin Longchamp988d2d42008-11-23 17:35:08 +0100284static void __init mx31moboard_timer_init(void)
285{
Sascha Hauer30c730f2009-02-16 14:36:49 +0100286 mx31_clocks_init(26000000);
Valentin Longchamp988d2d42008-11-23 17:35:08 +0100287}
288
289struct sys_timer mx31moboard_timer = {
290 .init = mx31moboard_timer_init,
291};
292
293MACHINE_START(MX31MOBOARD, "EPFL Mobots mx31moboard")
294 /* Maintainer: Valentin Longchamp, EPFL Mobots group */
295 .phys_io = AIPS1_BASE_ADDR,
296 .io_pg_offst = ((AIPS1_BASE_ADDR_VIRT) >> 18) & 0xfffc,
297 .boot_params = PHYS_OFFSET + 0x100,
Sascha Hauercd4a05f2009-04-02 22:32:10 +0200298 .map_io = mx31_map_io,
Sascha Hauerc5aa0ad2009-05-25 17:36:19 +0200299 .init_irq = mx31_init_irq,
Valentin Longchamp988d2d42008-11-23 17:35:08 +0100300 .init_machine = mxc_board_init,
301 .timer = &mx31moboard_timer,
302MACHINE_END
303