2 * Copyright 2009 Freescale Semiconductor, Inc. All Rights Reserved.
4 * Author: Fabio Estevam <fabio.estevam@freescale.com>
6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License as published by
8 * the Free Software Foundation; either version 2 of the License, or
9 * (at your option) any later version.
11 * This program is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 * GNU General Public License for more details.
18 * This machine is known as:
19 * - i.MX27 3-Stack Development System
20 * - i.MX27 Platform Development Kit (i.MX27 PDK)
23 #include <linux/platform_device.h>
24 #include <linux/gpio.h>
25 #include <linux/irq.h>
26 #include <linux/usb/otg.h>
27 #include <linux/usb/ulpi.h>
28 #include <linux/delay.h>
29 #include <linux/mfd/mc13783.h>
30 #include <linux/spi/spi.h>
31 #include <linux/regulator/machine.h>
33 #include <asm/mach-types.h>
34 #include <asm/mach/arch.h>
35 #include <asm/mach/time.h>
36 #include <mach/hardware.h>
37 #include <mach/common.h>
38 #include <mach/iomux-mx27.h>
39 #include <mach/ulpi.h>
40 #include <mach/irqs.h>
41 #include <mach/3ds_debugboard.h>
43 #include "devices-imx27.h"
45 #define SD1_EN_GPIO (GPIO_PORTB + 25)
46 #define OTG_PHY_RESET_GPIO (GPIO_PORTB + 23)
47 #define SPI2_SS0 (GPIO_PORTD + 21)
48 #define EXPIO_PARENT_INT (MXC_INTERNAL_IRQS + GPIO_PORTC + 28)
50 static const int mx27pdk_pins
[] __initconst
= {
82 SD1_EN_GPIO
| GPIO_GPIO
| GPIO_OUT
,
84 OTG_PHY_RESET_GPIO
| GPIO_GPIO
| GPIO_OUT
,
106 static const struct imxuart_platform_data uart_pdata __initconst
= {
107 .flags
= IMXUART_HAVE_RTSCTS
,
114 static const uint32_t mx27_3ds_keymap
[] = {
117 KEY(1, 0, KEY_RIGHT
),
119 KEY(1, 2, KEY_ENTER
),
126 static const struct matrix_keymap_data mx27_3ds_keymap_data __initconst
= {
127 .keymap
= mx27_3ds_keymap
,
128 .keymap_size
= ARRAY_SIZE(mx27_3ds_keymap
),
131 static int mx27_3ds_sdhc1_init(struct device
*dev
, irq_handler_t detect_irq
,
134 return request_irq(IRQ_GPIOB(26), detect_irq
, IRQF_TRIGGER_FALLING
|
135 IRQF_TRIGGER_RISING
, "sdhc1-card-detect", data
);
138 static void mx27_3ds_sdhc1_exit(struct device
*dev
, void *data
)
140 free_irq(IRQ_GPIOB(26), data
);
143 static const struct imxmmc_platform_data sdhc1_pdata __initconst
= {
144 .init
= mx27_3ds_sdhc1_init
,
145 .exit
= mx27_3ds_sdhc1_exit
,
148 static void mx27_3ds_sdhc1_enable_level_translator(void)
150 /* Turn on TXB0108 OE pin */
151 gpio_request(SD1_EN_GPIO
, "sd1_enable");
152 gpio_direction_output(SD1_EN_GPIO
, 1);
156 static int otg_phy_init(void)
158 gpio_request(OTG_PHY_RESET_GPIO
, "usb-otg-reset");
159 gpio_direction_output(OTG_PHY_RESET_GPIO
, 0);
161 gpio_set_value(OTG_PHY_RESET_GPIO
, 1);
165 static int mx27_3ds_otg_init(struct platform_device
*pdev
)
167 return mx27_initialize_usb_hw(pdev
->id
, MXC_EHCI_INTERFACE_DIFF_UNI
);
170 static struct mxc_usbh_platform_data otg_pdata __initdata
= {
171 .init
= mx27_3ds_otg_init
,
172 .portsc
= MXC_EHCI_MODE_ULPI
,
175 static const struct fsl_usb2_platform_data otg_device_pdata __initconst
= {
176 .operating_mode
= FSL_USB2_DR_DEVICE
,
177 .phy_mode
= FSL_USB2_PHY_ULPI
,
180 static int otg_mode_host
;
182 static int __init
mx27_3ds_otg_mode(char *options
)
184 if (!strcmp(options
, "host"))
186 else if (!strcmp(options
, "device"))
189 pr_info("otg_mode neither \"host\" nor \"device\". "
190 "Defaulting to device\n");
193 __setup("otg_mode=", mx27_3ds_otg_mode
);
196 static struct regulator_consumer_supply vmmc1_consumers
[] = {
197 REGULATOR_SUPPLY("lcd_2v8", NULL
),
200 static struct regulator_init_data vmmc1_init
= {
204 .valid_ops_mask
= REGULATOR_CHANGE_VOLTAGE
,
206 .num_consumer_supplies
= ARRAY_SIZE(vmmc1_consumers
),
207 .consumer_supplies
= vmmc1_consumers
,
210 static struct regulator_consumer_supply vgen_consumers
[] = {
211 REGULATOR_SUPPLY("vdd_lcdio", NULL
),
214 static struct regulator_init_data vgen_init
= {
218 .valid_ops_mask
= REGULATOR_CHANGE_VOLTAGE
,
220 .num_consumer_supplies
= ARRAY_SIZE(vgen_consumers
),
221 .consumer_supplies
= vgen_consumers
,
224 static struct mc13xxx_regulator_init_data mx27_3ds_regulators
[] = {
226 .id
= MC13783_REG_VMMC1
,
227 .init_data
= &vmmc1_init
,
229 .id
= MC13783_REG_VGEN
,
230 .init_data
= &vgen_init
,
235 static struct mc13xxx_platform_data mc13783_pdata
= {
237 .regulators
= mx27_3ds_regulators
,
238 .num_regulators
= ARRAY_SIZE(mx27_3ds_regulators
),
241 .flags
= MC13783_USE_REGULATOR
,
245 static int spi2_internal_chipselect
[] = {SPI2_SS0
};
247 static const struct spi_imx_master spi2_pdata __initconst
= {
248 .chipselect
= spi2_internal_chipselect
,
249 .num_chipselect
= ARRAY_SIZE(spi2_internal_chipselect
),
252 static struct spi_board_info mx27_3ds_spi_devs
[] __initdata
= {
254 .modalias
= "mc13783",
255 .max_speed_hz
= 1000000,
257 .chip_select
= 0, /* SS0 */
258 .platform_data
= &mc13783_pdata
,
259 .irq
= IRQ_GPIOC(14),
264 static const struct imxi2c_platform_data mx27_3ds_i2c0_data __initconst
= {
268 static void __init
mx27pdk_init(void)
270 mxc_gpio_setup_multiple_pins(mx27pdk_pins
, ARRAY_SIZE(mx27pdk_pins
),
272 mx27_3ds_sdhc1_enable_level_translator();
273 imx27_add_imx_uart0(&uart_pdata
);
275 imx27_add_imx_keypad(&mx27_3ds_keymap_data
);
276 imx27_add_mxc_mmc(0, &sdhc1_pdata
);
277 imx27_add_imx2_wdt(NULL
);
281 otg_pdata
.otg
= imx_otg_ulpi_create(ULPI_OTG_DRVVBUS
|
282 ULPI_OTG_DRVVBUS_EXT
);
285 imx27_add_mxc_ehci_otg(&otg_pdata
);
289 imx27_add_fsl_usb2_udc(&otg_device_pdata
);
291 imx27_add_spi_imx1(&spi2_pdata
);
292 spi_register_board_info(mx27_3ds_spi_devs
,
293 ARRAY_SIZE(mx27_3ds_spi_devs
));
295 if (mxc_expio_init(MX27_CS5_BASE_ADDR
, EXPIO_PARENT_INT
))
296 pr_warn("Init of the debugboard failed, all devices on the debugboard are unusable.\n");
297 imx27_add_imx_i2c(0, &mx27_3ds_i2c0_data
);
300 static void __init
mx27pdk_timer_init(void)
302 mx27_clocks_init(26000000);
305 static struct sys_timer mx27pdk_timer
= {
306 .init
= mx27pdk_timer_init
,
309 MACHINE_START(MX27_3DS
, "Freescale MX27PDK")
310 /* maintainer: Freescale Semiconductor, Inc. */
311 .boot_params
= MX27_PHYS_OFFSET
+ 0x100,
312 .map_io
= mx27_map_io
,
313 .init_early
= imx27_init_early
,
314 .init_irq
= mx27_init_irq
,
315 .timer
= &mx27pdk_timer
,
316 .init_machine
= mx27pdk_init
,