blob: 36f08f45b0cad4c3fe45eb3e72f95ad4925d8e7d [file] [log] [blame]
Thomas Gleixnerc942fdd2019-05-27 08:55:06 +02001// SPDX-License-Identifier: GPL-2.0-or-later
Valentin Longchamp988d2d42008-11-23 17:35:08 +01002/*
3 * Copyright (C) 2008 Valentin Longchamp, EPFL Mobots group
Valentin Longchamp988d2d42008-11-23 17:35:08 +01004 */
5
Valentin Longchampb23f1532009-08-10 18:33:11 +02006#include <linux/delay.h>
Valentin Longchamp04ea3c82009-11-03 18:09:51 +01007#include <linux/dma-mapping.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +09008#include <linux/gfp.h>
Valentin Longchamp45b131a2009-04-21 10:24:56 +02009#include <linux/gpio.h>
Valentin Longchamp988d2d42008-11-23 17:35:08 +010010#include <linux/init.h>
Valentin Longchamp45b131a2009-04-21 10:24:56 +020011#include <linux/interrupt.h>
Paul Gortmaker9e907412011-07-31 19:01:27 -040012#include <linux/moduleparam.h>
Valentin Longchamp77aa5612009-08-12 11:29:19 +020013#include <linux/leds.h>
Valentin Longchamp220bbce2009-04-17 15:20:25 +020014#include <linux/memory.h>
Valentin Longchamp988d2d42008-11-23 17:35:08 +010015#include <linux/mtd/physmap.h>
16#include <linux/mtd/partitions.h>
Valentin Longchamp220bbce2009-04-17 15:20:25 +020017#include <linux/platform_device.h>
Valentin Longchamp65da9792009-11-03 18:09:49 +010018#include <linux/regulator/machine.h>
19#include <linux/mfd/mc13783.h>
20#include <linux/spi/spi.h>
Valentin Longchamp220bbce2009-04-17 15:20:25 +020021#include <linux/types.h>
Uwe Kleine-König031e9122011-03-03 14:21:53 +010022#include <linux/memblock.h>
Philippe Rétornaz40d97b892011-09-20 10:57:43 +020023#include <linux/clk.h>
24#include <linux/io.h>
25#include <linux/err.h>
Philippe Rétornaz1f08c112011-07-22 16:17:12 +020026#include <linux/input.h>
Valentin Longchamp988d2d42008-11-23 17:35:08 +010027
Valentin Longchampd67d1072009-11-23 19:16:37 +010028#include <linux/usb/otg.h>
29#include <linux/usb/ulpi.h>
30
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>
Russell King716a3dc2012-01-13 15:00:51 +000035#include <asm/memblock.h>
Arnd Bergmann82906b12012-08-24 15:14:29 +020036#include <linux/platform_data/asoc-imx-ssi.h>
Valentin Longchamp988d2d42008-11-23 17:35:08 +010037
Shawn Guo3ed0bcb2012-09-13 09:37:49 +080038#include "board-mx31moboard.h"
Shawn Guoe3372472012-09-13 21:01:00 +080039#include "common.h"
Uwe Kleine-König4a9b8b02010-06-16 18:03:05 +020040#include "devices-imx31.h"
Shawn Guo641dfe82014-05-19 20:41:52 +080041#include "ehci.h"
Shawn Guo50f2de62012-09-14 14:14:45 +080042#include "hardware.h"
Shawn Guo267dd342012-09-13 13:26:00 +080043#include "iomux-mx3.h"
Shawn Guo39ef6342012-09-13 21:46:09 +080044#include "ulpi.h"
Valentin Longchamp988d2d42008-11-23 17:35:08 +010045
Valentin Longchamp220bbce2009-04-17 15:20:25 +020046static unsigned int moboard_pins[] = {
47 /* UART0 */
Valentin Longchamp220bbce2009-04-17 15:20:25 +020048 MX31_PIN_TXD1__TXD1, MX31_PIN_RXD1__RXD1,
Valentin Longchamp421bf822009-11-03 18:09:47 +010049 MX31_PIN_CTS1__GPIO2_7,
Valentin Longchamp220bbce2009-04-17 15:20:25 +020050 /* 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 Longchampd67d1072009-11-23 19:16:37 +010076 /* USB H2 */
77 MX31_PIN_USBH2_DATA0__USBH2_DATA0,
78 MX31_PIN_USBH2_DATA1__USBH2_DATA1,
79 MX31_PIN_STXD3__USBH2_DATA2, MX31_PIN_SRXD3__USBH2_DATA3,
80 MX31_PIN_SCK3__USBH2_DATA4, MX31_PIN_SFS3__USBH2_DATA5,
81 MX31_PIN_STXD6__USBH2_DATA6, MX31_PIN_SRXD6__USBH2_DATA7,
82 MX31_PIN_USBH2_CLK__USBH2_CLK, MX31_PIN_USBH2_DIR__USBH2_DIR,
83 MX31_PIN_USBH2_NXT__USBH2_NXT, MX31_PIN_USBH2_STP__USBH2_STP,
84 MX31_PIN_SCK6__GPIO1_25,
Valentin Longchamp77aa5612009-08-12 11:29:19 +020085 /* LEDs */
86 MX31_PIN_SVEN0__GPIO2_0, MX31_PIN_STX0__GPIO2_1,
87 MX31_PIN_SRX0__GPIO2_2, MX31_PIN_SIMPD0__GPIO2_3,
Valentin Longchamp65da9792009-11-03 18:09:49 +010088 /* SPI1 */
89 MX31_PIN_CSPI2_MOSI__MOSI, MX31_PIN_CSPI2_MISO__MISO,
90 MX31_PIN_CSPI2_SCLK__SCLK, MX31_PIN_CSPI2_SPI_RDY__SPI_RDY,
91 MX31_PIN_CSPI2_SS0__SS0, MX31_PIN_CSPI2_SS2__SS2,
92 /* Atlas IRQ */
93 MX31_PIN_GPIO1_3__GPIO1_3,
94 /* SPI2 */
95 MX31_PIN_CSPI3_MOSI__MOSI, MX31_PIN_CSPI3_MISO__MISO,
96 MX31_PIN_CSPI3_SCLK__SCLK, MX31_PIN_CSPI3_SPI_RDY__SPI_RDY,
97 MX31_PIN_CSPI2_SS1__CSPI3_SS1,
Philippe Rétornaz2f7b9452012-05-15 13:53:52 +020098 /* SSI */
99 MX31_PIN_STXD4__STXD4, MX31_PIN_SRXD4__SRXD4,
100 MX31_PIN_SCK4__SCK4, MX31_PIN_SFS4__SFS4,
Valentin Longchamp220bbce2009-04-17 15:20:25 +0200101};
102
Valentin Longchamp988d2d42008-11-23 17:35:08 +0100103static struct physmap_flash_data mx31moboard_flash_data = {
Uwe Kleine-König27ad4bf2011-03-17 09:40:29 +0100104 .width = 2,
Valentin Longchamp988d2d42008-11-23 17:35:08 +0100105};
106
107static struct resource mx31moboard_flash_resource = {
108 .start = 0xa0000000,
109 .end = 0xa1ffffff,
110 .flags = IORESOURCE_MEM,
111};
112
113static struct platform_device mx31moboard_flash = {
114 .name = "physmap-flash",
115 .id = 0,
116 .dev = {
117 .platform_data = &mx31moboard_flash_data,
118 },
119 .resource = &mx31moboard_flash_resource,
120 .num_resources = 1,
121};
122
Alexander Shiyan45af7802014-02-22 16:01:35 +0400123static void __init moboard_uart0_init(void)
Valentin Longchamp421bf822009-11-03 18:09:47 +0100124{
Alexander Shiyan45af7802014-02-22 16:01:35 +0400125 if (!gpio_request(IOMUX_TO_GPIO(MX31_PIN_CTS1), "uart0-cts-hack")) {
126 gpio_direction_output(IOMUX_TO_GPIO(MX31_PIN_CTS1), 0);
Uwe Kleine-König5109a452010-06-23 11:57:19 +0200127 gpio_free(IOMUX_TO_GPIO(MX31_PIN_CTS1));
Alexander Shiyan45af7802014-02-22 16:01:35 +0400128 }
Valentin Longchamp421bf822009-11-03 18:09:47 +0100129}
130
Uwe Kleine-König16cf5c42010-06-23 11:46:16 +0200131static const struct imxuart_platform_data uart0_pdata __initconst = {
Valentin Longchamp421bf822009-11-03 18:09:47 +0100132};
133
Uwe Kleine-König16cf5c42010-06-23 11:46:16 +0200134static const struct imxuart_platform_data uart4_pdata __initconst = {
Valentin Longchamp988d2d42008-11-23 17:35:08 +0100135 .flags = IMXUART_HAVE_RTSCTS,
136};
137
Uwe Kleine-König4a9b8b02010-06-16 18:03:05 +0200138static const struct imxi2c_platform_data moboard_i2c0_data __initconst = {
Valentin Longchamp4ec6ecc2009-04-21 10:24:22 +0200139 .bitrate = 400000,
140};
141
Uwe Kleine-König4a9b8b02010-06-16 18:03:05 +0200142static const struct imxi2c_platform_data moboard_i2c1_data __initconst = {
Valentin Longchamp4ec6ecc2009-04-21 10:24:22 +0200143 .bitrate = 100000,
144};
145
Uwe Kleine-König06606ff2010-06-22 10:09:14 +0200146static const struct spi_imx_master moboard_spi1_pdata __initconst = {
Trent Piephofe1bd782018-04-02 13:06:05 -0700147 .num_chipselect = 3,
Valentin Longchamp65da9792009-11-03 18:09:49 +0100148};
149
150static struct regulator_consumer_supply sdhc_consumers[] = {
151 {
Shawn Guo7f917a82012-09-16 16:54:30 +0800152 .dev_name = "imx31-mmc.0",
Valentin Longchamp65da9792009-11-03 18:09:49 +0100153 .supply = "sdhc0_vcc",
154 },
155 {
Shawn Guo7f917a82012-09-16 16:54:30 +0800156 .dev_name = "imx31-mmc.1",
Valentin Longchamp65da9792009-11-03 18:09:49 +0100157 .supply = "sdhc1_vcc",
158 },
159};
160
161static struct regulator_init_data sdhc_vreg_data = {
162 .constraints = {
163 .min_uV = 2700000,
164 .max_uV = 3000000,
165 .valid_ops_mask = REGULATOR_CHANGE_VOLTAGE |
166 REGULATOR_CHANGE_MODE | REGULATOR_CHANGE_STATUS,
167 .valid_modes_mask = REGULATOR_MODE_NORMAL |
168 REGULATOR_MODE_FAST,
169 .always_on = 0,
170 .boot_on = 1,
171 },
172 .num_consumer_supplies = ARRAY_SIZE(sdhc_consumers),
173 .consumer_supplies = sdhc_consumers,
174};
175
176static struct regulator_consumer_supply cam_consumers[] = {
177 {
Uwe Kleine-Königafa77ef2011-03-03 21:32:02 +0100178 .dev_name = "mx3_camera.0",
179 .supply = "cam_vcc",
Valentin Longchamp65da9792009-11-03 18:09:49 +0100180 },
181};
182
183static struct regulator_init_data cam_vreg_data = {
184 .constraints = {
185 .min_uV = 2700000,
186 .max_uV = 3000000,
187 .valid_ops_mask = REGULATOR_CHANGE_VOLTAGE |
188 REGULATOR_CHANGE_MODE | REGULATOR_CHANGE_STATUS,
189 .valid_modes_mask = REGULATOR_MODE_NORMAL |
190 REGULATOR_MODE_FAST,
191 .always_on = 0,
192 .boot_on = 1,
193 },
194 .num_consumer_supplies = ARRAY_SIZE(cam_consumers),
195 .consumer_supplies = cam_consumers,
196};
197
David Jander58363722011-02-10 10:59:44 +0100198static struct mc13xxx_regulator_init_data moboard_regulators[] = {
Valentin Longchamp65da9792009-11-03 18:09:49 +0100199 {
Yong Shen57c78e32010-12-14 14:00:53 +0800200 .id = MC13783_REG_VMMC1,
Valentin Longchamp65da9792009-11-03 18:09:49 +0100201 .init_data = &sdhc_vreg_data,
202 },
203 {
Yong Shen57c78e32010-12-14 14:00:53 +0800204 .id = MC13783_REG_VCAM,
Valentin Longchamp65da9792009-11-03 18:09:49 +0100205 .init_data = &cam_vreg_data,
206 },
207};
208
Uwe Kleine-Königd3efa4e2011-09-26 08:50:55 +0200209static struct mc13xxx_led_platform_data moboard_led[] = {
Philippe Rétornaza7cca8a2010-05-19 09:24:32 +0200210 {
211 .id = MC13783_LED_R1,
212 .name = "coreboard-led-4:red",
Philippe Rétornaza7cca8a2010-05-19 09:24:32 +0200213 },
214 {
215 .id = MC13783_LED_G1,
216 .name = "coreboard-led-4:green",
Philippe Rétornaza7cca8a2010-05-19 09:24:32 +0200217 },
218 {
219 .id = MC13783_LED_B1,
220 .name = "coreboard-led-4:blue",
Philippe Rétornaza7cca8a2010-05-19 09:24:32 +0200221 },
222 {
223 .id = MC13783_LED_R2,
224 .name = "coreboard-led-5:red",
Philippe Rétornaza7cca8a2010-05-19 09:24:32 +0200225 },
226 {
227 .id = MC13783_LED_G2,
228 .name = "coreboard-led-5:green",
Philippe Rétornaza7cca8a2010-05-19 09:24:32 +0200229 },
230 {
231 .id = MC13783_LED_B2,
232 .name = "coreboard-led-5:blue",
Philippe Rétornaza7cca8a2010-05-19 09:24:32 +0200233 },
234};
235
Uwe Kleine-Königd3efa4e2011-09-26 08:50:55 +0200236static struct mc13xxx_leds_platform_data moboard_leds = {
Philippe Rétornaza7cca8a2010-05-19 09:24:32 +0200237 .num_leds = ARRAY_SIZE(moboard_led),
238 .led = moboard_led,
Alexander Shiyan9d2638132013-06-10 09:59:30 -0700239 .led_control[0] = MC13783_LED_C0_ENABLE | MC13783_LED_C0_ABMODE(0),
240 .led_control[1] = MC13783_LED_C1_SLEWLIM,
241 .led_control[2] = MC13783_LED_C2_SLEWLIM,
Alexander Shiyan01a7a062013-12-06 22:22:18 -0800242 .led_control[3] = MC13783_LED_C3_PERIOD(0) |
243 MC13783_LED_C3_CURRENT_R1(2) |
244 MC13783_LED_C3_CURRENT_G1(2) |
245 MC13783_LED_C3_CURRENT_B1(2),
246 .led_control[4] = MC13783_LED_C4_PERIOD(0) |
247 MC13783_LED_C4_CURRENT_R2(3) |
248 MC13783_LED_C4_CURRENT_G2(3) |
249 MC13783_LED_C4_CURRENT_B2(3),
Philippe Rétornaza7cca8a2010-05-19 09:24:32 +0200250};
251
Uwe Kleine-Königd3efa4e2011-09-26 08:50:55 +0200252static struct mc13xxx_buttons_platform_data moboard_buttons = {
Philippe Rétornaz1f08c112011-07-22 16:17:12 +0200253 .b1on_flags = MC13783_BUTTON_DBNC_750MS | MC13783_BUTTON_ENABLE |
254 MC13783_BUTTON_POL_INVERT,
255 .b1on_key = KEY_POWER,
256};
257
Philippe Rétornaz2f7b9452012-05-15 13:53:52 +0200258static struct mc13xxx_codec_platform_data moboard_codec = {
259 .dac_ssi_port = MC13783_SSI1_PORT,
260 .adc_ssi_port = MC13783_SSI1_PORT,
261};
262
David Jander58363722011-02-10 10:59:44 +0100263static struct mc13xxx_platform_data moboard_pmic = {
Andres Salomon4ec1b542011-02-17 19:07:23 -0800264 .regulators = {
265 .regulators = moboard_regulators,
266 .num_regulators = ARRAY_SIZE(moboard_regulators),
267 },
Philippe Rétornaza7cca8a2010-05-19 09:24:32 +0200268 .leds = &moboard_leds,
Philippe Rétornaz1f08c112011-07-22 16:17:12 +0200269 .buttons = &moboard_buttons,
Philippe Rétornaz2f7b9452012-05-15 13:53:52 +0200270 .codec = &moboard_codec,
271 .flags = MC13XXX_USE_RTC | MC13XXX_USE_ADC | MC13XXX_USE_CODEC,
272};
273
274static struct imx_ssi_platform_data moboard_ssi_pdata = {
275 .flags = IMX_SSI_DMA | IMX_SSI_NET,
Valentin Longchamp65da9792009-11-03 18:09:49 +0100276};
277
278static struct spi_board_info moboard_spi_board_info[] __initdata = {
279 {
280 .modalias = "mc13783",
Shawn Guoed175342011-12-02 20:00:33 +0800281 /* irq number is run-time assigned */
Valentin Longchamp65da9792009-11-03 18:09:49 +0100282 .max_speed_hz = 300000,
283 .bus_num = 1,
Trent Piephofe1bd782018-04-02 13:06:05 -0700284 .chip_select = 0,
Valentin Longchamp65da9792009-11-03 18:09:49 +0100285 .platform_data = &moboard_pmic,
286 .mode = SPI_CS_HIGH,
287 },
Valentin Longchamp65da9792009-11-03 18:09:49 +0100288};
289
Uwe Kleine-König06606ff2010-06-22 10:09:14 +0200290static const struct spi_imx_master moboard_spi2_pdata __initconst = {
Trent Piephofe1bd782018-04-02 13:06:05 -0700291 .num_chipselect = 2,
Valentin Longchamp65da9792009-11-03 18:09:49 +0100292};
293
Valentin Longchamp45b131a2009-04-21 10:24:56 +0200294#define SDHC1_CD IOMUX_TO_GPIO(MX31_PIN_ATA_CS0)
295#define SDHC1_WP IOMUX_TO_GPIO(MX31_PIN_ATA_CS1)
296
297static int moboard_sdhc1_get_ro(struct device *dev)
298{
Valentin Longchamp563abb42009-08-11 17:29:21 +0200299 return !gpio_get_value(SDHC1_WP);
Valentin Longchamp45b131a2009-04-21 10:24:56 +0200300}
301
302static int moboard_sdhc1_init(struct device *dev, irq_handler_t detect_irq,
303 void *data)
304{
Sascha Hauer4f163eb2009-05-06 12:55:50 +0200305 int ret;
306
307 ret = gpio_request(SDHC1_CD, "sdhc-detect");
308 if (ret)
309 return ret;
310
311 gpio_direction_input(SDHC1_CD);
312
313 ret = gpio_request(SDHC1_WP, "sdhc-wp");
314 if (ret)
315 goto err_gpio_free;
316 gpio_direction_input(SDHC1_WP);
317
318 ret = request_irq(gpio_to_irq(SDHC1_CD), detect_irq,
Valentin Longchamp45b131a2009-04-21 10:24:56 +0200319 IRQF_TRIGGER_RISING | IRQF_TRIGGER_FALLING,
320 "sdhc1-card-detect", data);
Sascha Hauer4f163eb2009-05-06 12:55:50 +0200321 if (ret)
322 goto err_gpio_free_2;
323
324 return 0;
325
326err_gpio_free_2:
327 gpio_free(SDHC1_WP);
328err_gpio_free:
329 gpio_free(SDHC1_CD);
330
331 return ret;
Valentin Longchamp45b131a2009-04-21 10:24:56 +0200332}
333
334static void moboard_sdhc1_exit(struct device *dev, void *data)
335{
336 free_irq(gpio_to_irq(SDHC1_CD), data);
Sascha Hauer4f163eb2009-05-06 12:55:50 +0200337 gpio_free(SDHC1_WP);
338 gpio_free(SDHC1_CD);
Valentin Longchamp45b131a2009-04-21 10:24:56 +0200339}
340
Uwe Kleine-König6a697e32010-11-12 11:10:55 +0100341static const struct imxmmc_platform_data sdhc1_pdata __initconst = {
Valentin Longchamp45b131a2009-04-21 10:24:56 +0200342 .get_ro = moboard_sdhc1_get_ro,
343 .init = moboard_sdhc1_init,
344 .exit = moboard_sdhc1_exit,
345};
346
Valentin Longchampb23f1532009-08-10 18:33:11 +0200347/*
348 * this pin is dedicated for all mx31moboard systems, so we do it here
349 */
350#define USB_RESET_B IOMUX_TO_GPIO(MX31_PIN_GPIO1_0)
Philippe Rétornaz25783602010-05-11 16:57:49 +0200351#define USB_PAD_CFG (PAD_CTL_DRV_MAX | PAD_CTL_SRE_FAST | PAD_CTL_HYS_CMOS | \
352 PAD_CTL_ODE_CMOS)
353
354#define OTG_EN_B IOMUX_TO_GPIO(MX31_PIN_USB_OC)
355#define USBH2_EN_B IOMUX_TO_GPIO(MX31_PIN_SCK6)
Valentin Longchampb23f1532009-08-10 18:33:11 +0200356
357static void usb_xcvr_reset(void)
358{
Philippe Rétornaz25783602010-05-11 16:57:49 +0200359 mxc_iomux_set_pad(MX31_PIN_USBOTG_DATA0, USB_PAD_CFG | PAD_CTL_100K_PD);
360 mxc_iomux_set_pad(MX31_PIN_USBOTG_DATA1, USB_PAD_CFG | PAD_CTL_100K_PD);
361 mxc_iomux_set_pad(MX31_PIN_USBOTG_DATA2, USB_PAD_CFG | PAD_CTL_100K_PD);
362 mxc_iomux_set_pad(MX31_PIN_USBOTG_DATA3, USB_PAD_CFG | PAD_CTL_100K_PD);
363 mxc_iomux_set_pad(MX31_PIN_USBOTG_DATA4, USB_PAD_CFG | PAD_CTL_100K_PD);
364 mxc_iomux_set_pad(MX31_PIN_USBOTG_DATA5, USB_PAD_CFG | PAD_CTL_100K_PD);
365 mxc_iomux_set_pad(MX31_PIN_USBOTG_DATA6, USB_PAD_CFG | PAD_CTL_100K_PD);
366 mxc_iomux_set_pad(MX31_PIN_USBOTG_DATA7, USB_PAD_CFG | PAD_CTL_100K_PD);
367 mxc_iomux_set_pad(MX31_PIN_USBOTG_CLK, USB_PAD_CFG | PAD_CTL_100K_PU);
368 mxc_iomux_set_pad(MX31_PIN_USBOTG_DIR, USB_PAD_CFG | PAD_CTL_100K_PU);
369 mxc_iomux_set_pad(MX31_PIN_USBOTG_NXT, USB_PAD_CFG | PAD_CTL_100K_PU);
370 mxc_iomux_set_pad(MX31_PIN_USBOTG_STP, USB_PAD_CFG | PAD_CTL_100K_PU);
371
372 mxc_iomux_set_gpr(MUX_PGP_UH2, true);
373 mxc_iomux_set_pad(MX31_PIN_USBH2_CLK, USB_PAD_CFG | PAD_CTL_100K_PU);
374 mxc_iomux_set_pad(MX31_PIN_USBH2_DIR, USB_PAD_CFG | PAD_CTL_100K_PU);
375 mxc_iomux_set_pad(MX31_PIN_USBH2_NXT, USB_PAD_CFG | PAD_CTL_100K_PU);
376 mxc_iomux_set_pad(MX31_PIN_USBH2_STP, USB_PAD_CFG | PAD_CTL_100K_PU);
377 mxc_iomux_set_pad(MX31_PIN_USBH2_DATA0, USB_PAD_CFG | PAD_CTL_100K_PD);
378 mxc_iomux_set_pad(MX31_PIN_USBH2_DATA1, USB_PAD_CFG | PAD_CTL_100K_PD);
379 mxc_iomux_set_pad(MX31_PIN_SRXD6, USB_PAD_CFG | PAD_CTL_100K_PD);
380 mxc_iomux_set_pad(MX31_PIN_STXD6, USB_PAD_CFG | PAD_CTL_100K_PD);
381 mxc_iomux_set_pad(MX31_PIN_SFS3, USB_PAD_CFG | PAD_CTL_100K_PD);
382 mxc_iomux_set_pad(MX31_PIN_SCK3, USB_PAD_CFG | PAD_CTL_100K_PD);
383 mxc_iomux_set_pad(MX31_PIN_SRXD3, USB_PAD_CFG | PAD_CTL_100K_PD);
384 mxc_iomux_set_pad(MX31_PIN_STXD3, USB_PAD_CFG | PAD_CTL_100K_PD);
385
386 gpio_request(OTG_EN_B, "usb-udc-en");
387 gpio_direction_output(OTG_EN_B, 0);
388 gpio_request(USBH2_EN_B, "usbh2-en");
389 gpio_direction_output(USBH2_EN_B, 0);
390
Valentin Longchampb23f1532009-08-10 18:33:11 +0200391 gpio_request(USB_RESET_B, "usb-reset");
392 gpio_direction_output(USB_RESET_B, 0);
393 mdelay(1);
394 gpio_set_value(USB_RESET_B, 1);
Philippe Rétornaz25783602010-05-11 16:57:49 +0200395 mdelay(1);
Valentin Longchamp88b05642009-08-10 18:33:12 +0200396}
397
Sascha Hauer4bd597b2011-01-03 11:30:28 +0100398static int moboard_usbh2_init_hw(struct platform_device *pdev)
399{
400 return mx31_initialize_usb_hw(pdev->id, MXC_EHCI_POWER_PINS_ENABLED);
401}
Uwe Kleine-Königf9ffaa92009-12-22 17:31:05 +0100402
Uwe Kleine-König2d58de22010-11-15 11:57:49 +0100403static struct mxc_usbh_platform_data usbh2_pdata __initdata = {
Sascha Hauer4bd597b2011-01-03 11:30:28 +0100404 .init = moboard_usbh2_init_hw,
Valentin Longchampd67d1072009-11-23 19:16:37 +0100405 .portsc = MXC_EHCI_MODE_ULPI | MXC_EHCI_UTMI_8BIT,
Valentin Longchampd67d1072009-11-23 19:16:37 +0100406};
407
408static int __init moboard_usbh2_init(void)
409{
Uwe Kleine-König2d58de22010-11-15 11:57:49 +0100410 struct platform_device *pdev;
411
Sascha Hauer48f6b092011-03-02 09:27:42 +0100412 usbh2_pdata.otg = imx_otg_ulpi_create(ULPI_OTG_DRVVBUS |
413 ULPI_OTG_DRVVBUS_EXT);
414 if (!usbh2_pdata.otg)
415 return -ENODEV;
Valentin Longchampd67d1072009-11-23 19:16:37 +0100416
Uwe Kleine-König2d58de22010-11-15 11:57:49 +0100417 pdev = imx31_add_mxc_ehci_hs(2, &usbh2_pdata);
Uwe Kleine-König2d58de22010-11-15 11:57:49 +0100418
Fabian Frederickd3a22442014-07-04 21:03:10 +0200419 return PTR_ERR_OR_ZERO(pdev);
Valentin Longchampd67d1072009-11-23 19:16:37 +0100420}
Valentin Longchampd67d1072009-11-23 19:16:37 +0100421
Uwe Kleine-König47e837b2011-05-28 21:05:01 +0200422static const struct gpio_led mx31moboard_leds[] __initconst = {
Valentin Longchamp77aa5612009-08-12 11:29:19 +0200423 {
Uwe Kleine-König27ad4bf2011-03-17 09:40:29 +0100424 .name = "coreboard-led-0:red:running",
Valentin Longchamp77aa5612009-08-12 11:29:19 +0200425 .default_trigger = "heartbeat",
Uwe Kleine-König27ad4bf2011-03-17 09:40:29 +0100426 .gpio = IOMUX_TO_GPIO(MX31_PIN_SVEN0),
Valentin Longchamp77aa5612009-08-12 11:29:19 +0200427 }, {
428 .name = "coreboard-led-1:red",
429 .gpio = IOMUX_TO_GPIO(MX31_PIN_STX0),
430 }, {
431 .name = "coreboard-led-2:red",
432 .gpio = IOMUX_TO_GPIO(MX31_PIN_SRX0),
433 }, {
434 .name = "coreboard-led-3:red",
435 .gpio = IOMUX_TO_GPIO(MX31_PIN_SIMPD0),
436 },
437};
438
Uwe Kleine-König47e837b2011-05-28 21:05:01 +0200439static const struct gpio_led_platform_data mx31moboard_led_pdata __initconst = {
Uwe Kleine-König27ad4bf2011-03-17 09:40:29 +0100440 .num_leds = ARRAY_SIZE(mx31moboard_leds),
Valentin Longchamp77aa5612009-08-12 11:29:19 +0200441 .leds = mx31moboard_leds,
442};
443
Valentin Longchamp988d2d42008-11-23 17:35:08 +0100444static struct platform_device *devices[] __initdata = {
445 &mx31moboard_flash,
446};
447
Uwe Kleine-Königafa77ef2011-03-03 21:32:02 +0100448static struct mx3_camera_pdata camera_pdata __initdata = {
Valentin Longchamp04ea3c82009-11-03 18:09:51 +0100449 .flags = MX3_CAMERA_DATAWIDTH_8 | MX3_CAMERA_DATAWIDTH_10,
450 .mclk_10khz = 4800,
451};
452
Uwe Kleine-König031e9122011-03-03 14:21:53 +0100453static phys_addr_t mx3_camera_base __initdata;
454#define MX3_CAMERA_BUF_SIZE SZ_4M
Valentin Longchamp04ea3c82009-11-03 18:09:51 +0100455
Uwe Kleine-Königafa77ef2011-03-03 21:32:02 +0100456static int __init mx31moboard_init_cam(void)
Valentin Longchamp04ea3c82009-11-03 18:09:51 +0100457{
Fabio Estevamedeb8e42017-09-04 11:58:14 -0300458 int ret;
Uwe Kleine-Königafa77ef2011-03-03 21:32:02 +0100459 struct platform_device *pdev;
Valentin Longchamp04ea3c82009-11-03 18:09:51 +0100460
Shawn Guo88289c82012-06-13 14:07:31 +0800461 imx31_add_ipu_core();
Valentin Longchamp04ea3c82009-11-03 18:09:51 +0100462
Uwe Kleine-Königafa77ef2011-03-03 21:32:02 +0100463 pdev = imx31_alloc_mx3_camera(&camera_pdata);
464 if (IS_ERR(pdev))
465 return PTR_ERR(pdev);
466
Christoph Hellwig2436bdc2017-08-25 17:13:09 +0200467 ret = dma_declare_coherent_memory(&pdev->dev,
468 mx3_camera_base, mx3_camera_base,
Christoph Hellwig82c5de02018-12-25 13:29:54 +0100469 MX3_CAMERA_BUF_SIZE);
Christoph Hellwig2436bdc2017-08-25 17:13:09 +0200470 if (ret)
Uwe Kleine-Königafa77ef2011-03-03 21:32:02 +0100471 goto err;
Valentin Longchamp04ea3c82009-11-03 18:09:51 +0100472
Uwe Kleine-Königafa77ef2011-03-03 21:32:02 +0100473 ret = platform_device_add(pdev);
474 if (ret)
475err:
476 platform_device_put(pdev);
477
478 return ret;
479
Valentin Longchamp04ea3c82009-11-03 18:09:51 +0100480}
481
Philippe Rétornaz40d97b892011-09-20 10:57:43 +0200482static void mx31moboard_poweroff(void)
483{
484 struct clk *clk = clk_get_sys("imx2-wdt.0", NULL);
485
486 if (!IS_ERR(clk))
Richard Zhao81860642011-11-15 14:48:04 +0800487 clk_prepare_enable(clk);
Philippe Rétornaz40d97b892011-09-20 10:57:43 +0200488
489 mxc_iomux_mode(MX31_PIN_WATCHDOG_RST__WATCHDOG_RST);
490
Johannes Bergc5531382016-01-27 17:59:35 +0100491 imx_writew(1 << 6 | 1 << 2, MX31_IO_ADDRESS(MX31_WDOG_BASE_ADDR));
Philippe Rétornaz40d97b892011-09-20 10:57:43 +0200492}
493
Valentin Longchampe00f0b42009-02-16 12:47:51 +0100494static int mx31moboard_baseboard;
495core_param(mx31moboard_baseboard, mx31moboard_baseboard, int, 0444);
496
Valentin Longchamp988d2d42008-11-23 17:35:08 +0100497/*
498 * Board specific initialization.
499 */
Uwe Kleine-Könige134fb22011-02-11 10:23:19 +0100500static void __init mx31moboard_init(void)
Valentin Longchamp988d2d42008-11-23 17:35:08 +0100501{
Shawn Guob78d8e52011-06-06 00:07:55 +0800502 imx31_soc_init();
503
Valentin Longchamp220bbce2009-04-17 15:20:25 +0200504 mxc_iomux_setup_multiple_pins(moboard_pins, ARRAY_SIZE(moboard_pins),
505 "moboard");
506
Valentin Longchamp988d2d42008-11-23 17:35:08 +0100507 platform_add_devices(devices, ARRAY_SIZE(devices));
508
Benoît Thébaudeaubec31a82012-07-04 16:35:54 +0200509 imx31_add_imx2_wdt();
Philippe Rétornaz31776fb2012-01-20 18:58:23 +0100510
Uwe Kleine-König16cf5c42010-06-23 11:46:16 +0200511 imx31_add_imx_uart0(&uart0_pdata);
512 imx31_add_imx_uart4(&uart4_pdata);
Valentin Longchampe00f0b42009-02-16 12:47:51 +0100513
Uwe Kleine-König4a9b8b02010-06-16 18:03:05 +0200514 imx31_add_imx_i2c0(&moboard_i2c0_data);
515 imx31_add_imx_i2c1(&moboard_i2c1_data);
Valentin Longchamp4ec6ecc2009-04-21 10:24:22 +0200516
Uwe Kleine-König06606ff2010-06-22 10:09:14 +0200517 imx31_add_spi_imx1(&moboard_spi1_pdata);
518 imx31_add_spi_imx2(&moboard_spi2_pdata);
Valentin Longchamp65da9792009-11-03 18:09:49 +0100519
Vladimir Zapolskiy1cecfa42016-09-19 04:37:21 +0300520 mx31moboard_init_cam();
521
522 imx31_add_imx_ssi(0, &moboard_ssi_pdata);
523
524 pm_power_off = mx31moboard_poweroff;
525}
526
527static void __init mx31moboard_late(void)
528{
529 gpio_led_register_device(-1, &mx31moboard_led_pdata);
530
531 moboard_uart0_init();
532
Valentin Longchamp65da9792009-11-03 18:09:49 +0100533 gpio_request(IOMUX_TO_GPIO(MX31_PIN_GPIO1_3), "pmic-irq");
534 gpio_direction_input(IOMUX_TO_GPIO(MX31_PIN_GPIO1_3));
Shawn Guoed175342011-12-02 20:00:33 +0800535 moboard_spi_board_info[0].irq =
536 gpio_to_irq(IOMUX_TO_GPIO(MX31_PIN_GPIO1_3));
Valentin Longchamp65da9792009-11-03 18:09:49 +0100537 spi_register_board_info(moboard_spi_board_info,
538 ARRAY_SIZE(moboard_spi_board_info));
539
Uwe Kleine-König6a697e32010-11-12 11:10:55 +0100540 imx31_add_mxc_mmc(0, &sdhc1_pdata);
Valentin Longchamp45b131a2009-04-21 10:24:56 +0200541
Valentin Longchampb23f1532009-08-10 18:33:11 +0200542 usb_xcvr_reset();
Valentin Longchampd67d1072009-11-23 19:16:37 +0100543 moboard_usbh2_init();
Valentin Longchamp88b05642009-08-10 18:33:12 +0200544
Philippe Rétornaz2f7b9452012-05-15 13:53:52 +0200545 imx_add_platform_device("imx_mc13783", 0, NULL, 0, NULL, 0);
546
Valentin Longchampe00f0b42009-02-16 12:47:51 +0100547 switch (mx31moboard_baseboard) {
548 case MX31NOBOARD:
549 break;
550 case MX31DEVBOARD:
551 mx31moboard_devboard_init();
552 break;
553 case MX31MARXBOT:
554 mx31moboard_marxbot_init();
555 break;
Valentin Longchampe335c752010-02-09 18:13:36 +0100556 case MX31SMARTBOT:
Philippe Rétornaz3a47b1a2010-05-11 16:57:51 +0200557 case MX31EYEBOT:
558 mx31moboard_smartbot_init(mx31moboard_baseboard);
Valentin Longchampe335c752010-02-09 18:13:36 +0100559 break;
Valentin Longchampe00f0b42009-02-16 12:47:51 +0100560 default:
Valentin Longchamp220bbce2009-04-17 15:20:25 +0200561 printk(KERN_ERR "Illegal mx31moboard_baseboard type %d\n",
562 mx31moboard_baseboard);
Valentin Longchampe00f0b42009-02-16 12:47:51 +0100563 }
Valentin Longchamp988d2d42008-11-23 17:35:08 +0100564}
565
Valentin Longchamp988d2d42008-11-23 17:35:08 +0100566static void __init mx31moboard_timer_init(void)
567{
Sascha Hauer30c730f2009-02-16 14:36:49 +0100568 mx31_clocks_init(26000000);
Valentin Longchamp988d2d42008-11-23 17:35:08 +0100569}
570
Uwe Kleine-König031e9122011-03-03 14:21:53 +0100571static void __init mx31moboard_reserve(void)
572{
573 /* reserve 4 MiB for mx3-camera */
Russell King716a3dc2012-01-13 15:00:51 +0000574 mx3_camera_base = arm_memblock_steal(MX3_CAMERA_BUF_SIZE,
Uwe Kleine-König031e9122011-03-03 14:21:53 +0100575 MX3_CAMERA_BUF_SIZE);
Uwe Kleine-König031e9122011-03-03 14:21:53 +0100576}
577
Valentin Longchamp988d2d42008-11-23 17:35:08 +0100578MACHINE_START(MX31MOBOARD, "EPFL Mobots mx31moboard")
Philippe Rétornaz0fbe6b02012-01-20 18:58:22 +0100579 /* Maintainer: Philippe Retornaz, EPFL Mobots group */
Nicolas Pitredc8f1902011-07-05 22:38:12 -0400580 .atag_offset = 0x100,
Uwe Kleine-König031e9122011-03-03 14:21:53 +0100581 .reserve = mx31moboard_reserve,
Uwe Kleine-König97976e22011-02-07 16:35:20 +0100582 .map_io = mx31_map_io,
583 .init_early = imx31_init_early,
584 .init_irq = mx31_init_irq,
Stephen Warren6bb27d72012-11-08 12:40:59 -0700585 .init_time = mx31moboard_timer_init,
Uwe Kleine-Könige134fb22011-02-11 10:23:19 +0100586 .init_machine = mx31moboard_init,
Vladimir Zapolskiy1cecfa42016-09-19 04:37:21 +0300587 .init_late = mx31moboard_late,
Russell King65ea7882011-11-06 17:12:08 +0000588 .restart = mxc_restart,
Valentin Longchamp988d2d42008-11-23 17:35:08 +0100589MACHINE_END