2 * Copyright (C) 2000 Deep Blue Solutions Ltd
3 * Copyright (C) 2002 Shane Nay (shane@minirl.com)
4 * Copyright 2006-2007 Freescale Semiconductor, Inc. All Rights Reserved.
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.
17 #include <linux/platform_device.h>
18 #include <linux/mtd/mtd.h>
19 #include <linux/mtd/physmap.h>
20 #include <linux/gpio/driver.h>
21 #include <linux/gpio.h>
22 #include <linux/regulator/fixed.h>
23 #include <linux/regulator/machine.h>
24 #include <asm/mach-types.h>
25 #include <asm/mach/arch.h>
28 #include "devices-imx21.h"
30 #include "iomux-mx21.h"
32 #define MX21ADS_CS8900A_REG (MX21_CS1_BASE_ADDR + 0x000000)
33 #define MX21ADS_ST16C255_IOBASE_REG (MX21_CS1_BASE_ADDR + 0x200000)
34 #define MX21ADS_VERSION_REG (MX21_CS1_BASE_ADDR + 0x400000)
35 #define MX21ADS_IO_REG (MX21_CS1_BASE_ADDR + 0x800000)
37 #define MX21ADS_MMC_CD IMX_GPIO_NR(4, 25)
38 #define MX21ADS_CS8900A_IRQ_GPIO IMX_GPIO_NR(5, 11)
39 #define MX21ADS_MMGPIO_BASE (6 * 32)
41 /* MX21ADS_IO_REG bit definitions */
42 #define MX21ADS_IO_SD_WP (MX21ADS_MMGPIO_BASE + 0)
43 #define MX21ADS_IO_TP6 (MX21ADS_IO_SD_WP)
44 #define MX21ADS_IO_SW_SEL (MX21ADS_MMGPIO_BASE + 1)
45 #define MX21ADS_IO_TP7 (MX21ADS_IO_SW_SEL)
46 #define MX21ADS_IO_RESET_E_UART (MX21ADS_MMGPIO_BASE + 2)
47 #define MX21ADS_IO_RESET_BASE (MX21ADS_MMGPIO_BASE + 3)
48 #define MX21ADS_IO_CSI_CTL2 (MX21ADS_MMGPIO_BASE + 4)
49 #define MX21ADS_IO_CSI_CTL1 (MX21ADS_MMGPIO_BASE + 5)
50 #define MX21ADS_IO_CSI_CTL0 (MX21ADS_MMGPIO_BASE + 6)
51 #define MX21ADS_IO_UART1_EN (MX21ADS_MMGPIO_BASE + 7)
52 #define MX21ADS_IO_UART4_EN (MX21ADS_MMGPIO_BASE + 8)
53 #define MX21ADS_IO_LCDON (MX21ADS_MMGPIO_BASE + 9)
54 #define MX21ADS_IO_IRDA_EN (MX21ADS_MMGPIO_BASE + 10)
55 #define MX21ADS_IO_IRDA_FIR_SEL (MX21ADS_MMGPIO_BASE + 11)
56 #define MX21ADS_IO_IRDA_MD0_B (MX21ADS_MMGPIO_BASE + 12)
57 #define MX21ADS_IO_IRDA_MD1 (MX21ADS_MMGPIO_BASE + 13)
58 #define MX21ADS_IO_LED4_ON (MX21ADS_MMGPIO_BASE + 14)
59 #define MX21ADS_IO_LED3_ON (MX21ADS_MMGPIO_BASE + 15)
61 static const int mx21ads_pins[] __initconst = {
64 (GPIO_PORTE | GPIO_GPIO | GPIO_IN | 11),
72 /* UART3 (IrDA) - only TXD and RXD */
101 PA24_PF_REV, /* Sharp panel dedicated signal */
102 PA25_PF_CLS, /* Sharp panel dedicated signal */
103 PA26_PF_PS, /* Sharp panel dedicated signal */
104 PA27_PF_SPL_SPR, /* Sharp panel dedicated signal */
136 /* ADS's NOR flash: 2x AM29BDS128HE9VKI on 32-bit bus */
137 static struct physmap_flash_data mx21ads_flash_data = {
141 static struct resource mx21ads_flash_resource =
142 DEFINE_RES_MEM(MX21_CS0_BASE_ADDR, SZ_32M);
144 static struct platform_device mx21ads_nor_mtd_device = {
145 .name = "physmap-flash",
148 .platform_data = &mx21ads_flash_data,
151 .resource = &mx21ads_flash_resource,
154 static struct resource mx21ads_cs8900_resources[] __initdata = {
155 DEFINE_RES_MEM(MX21ADS_CS8900A_REG, SZ_1K),
156 /* irq number is run-time assigned */
160 static const struct platform_device_info mx21ads_cs8900_devinfo __initconst = {
163 .res = mx21ads_cs8900_resources,
164 .num_res = ARRAY_SIZE(mx21ads_cs8900_resources),
167 static const struct imxuart_platform_data uart_pdata_rts __initconst = {
168 .flags = IMXUART_HAVE_RTSCTS,
171 static const struct imxuart_platform_data uart_pdata_norts __initconst = {
174 static struct resource mx21ads_mmgpio_resource =
175 DEFINE_RES_MEM_NAMED(MX21ADS_IO_REG, SZ_2, "dat");
177 static struct bgpio_pdata mx21ads_mmgpio_pdata = {
178 .base = MX21ADS_MMGPIO_BASE,
182 static struct platform_device mx21ads_mmgpio = {
183 .name = "basic-mmio-gpio",
184 .id = PLATFORM_DEVID_AUTO,
185 .resource = &mx21ads_mmgpio_resource,
188 .platform_data = &mx21ads_mmgpio_pdata,
192 static struct regulator_consumer_supply mx21ads_lcd_regulator_consumer =
193 REGULATOR_SUPPLY("lcd", "imx-fb.0");
195 static struct regulator_init_data mx21ads_lcd_regulator_init_data = {
197 .valid_ops_mask = REGULATOR_CHANGE_STATUS,
199 .consumer_supplies = &mx21ads_lcd_regulator_consumer,
200 .num_consumer_supplies = 1,
203 static struct fixed_voltage_config mx21ads_lcd_regulator_pdata = {
204 .supply_name = "LCD",
205 .microvolts = 3300000,
206 .gpio = MX21ADS_IO_LCDON,
208 .init_data = &mx21ads_lcd_regulator_init_data,
211 static struct platform_device mx21ads_lcd_regulator = {
212 .name = "reg-fixed-voltage",
213 .id = PLATFORM_DEVID_AUTO,
215 .platform_data = &mx21ads_lcd_regulator_pdata,
220 * Connected is a portrait Sharp-QVGA display
221 * of type: LQ035Q7DB02
223 static struct imx_fb_videomode mx21ads_modes[] = {
226 .name = "Sharp-LQ035Q7",
230 .pixclock = 188679, /* in ps (5.3MHz) */
243 static const struct imx_fb_platform_data mx21ads_fb_data __initconst = {
244 .mode = mx21ads_modes,
245 .num_modes = ARRAY_SIZE(mx21ads_modes),
252 static int mx21ads_sdhc_get_ro(struct device *dev)
254 return gpio_get_value(MX21ADS_IO_SD_WP);
257 static int mx21ads_sdhc_init(struct device *dev, irq_handler_t detect_irq,
262 ret = gpio_request(MX21ADS_IO_SD_WP, "mmc-ro");
266 return request_irq(gpio_to_irq(MX21ADS_MMC_CD), detect_irq,
267 IRQF_TRIGGER_FALLING, "mmc-detect", data);
270 static void mx21ads_sdhc_exit(struct device *dev, void *data)
272 free_irq(gpio_to_irq(MX21ADS_MMC_CD), data);
273 gpio_free(MX21ADS_IO_SD_WP);
276 static const struct imxmmc_platform_data mx21ads_sdhc_pdata __initconst = {
277 .ocr_avail = MMC_VDD_29_30 | MMC_VDD_30_31, /* 3.0V */
278 .get_ro = mx21ads_sdhc_get_ro,
279 .init = mx21ads_sdhc_init,
280 .exit = mx21ads_sdhc_exit,
283 static const struct mxc_nand_platform_data
284 mx21ads_nand_board_info __initconst = {
289 static struct platform_device *platform_devices[] __initdata = {
291 &mx21ads_lcd_regulator,
292 &mx21ads_nor_mtd_device,
295 static void __init mx21ads_board_init(void)
299 mxc_gpio_setup_multiple_pins(mx21ads_pins, ARRAY_SIZE(mx21ads_pins),
302 imx21_add_imx_uart0(&uart_pdata_rts);
303 imx21_add_imx_uart2(&uart_pdata_norts);
304 imx21_add_imx_uart3(&uart_pdata_rts);
305 imx21_add_mxc_nand(&mx21ads_nand_board_info);
307 imx21_add_imx_fb(&mx21ads_fb_data);
310 static void __init mx21ads_late_init(void)
312 imx21_add_mxc_mmc(0, &mx21ads_sdhc_pdata);
314 platform_add_devices(platform_devices, ARRAY_SIZE(platform_devices));
316 mx21ads_cs8900_resources[1].start =
317 gpio_to_irq(MX21ADS_CS8900A_IRQ_GPIO);
318 mx21ads_cs8900_resources[1].end =
319 gpio_to_irq(MX21ADS_CS8900A_IRQ_GPIO);
320 platform_device_register_full(&mx21ads_cs8900_devinfo);
323 static void __init mx21ads_timer_init(void)
325 mx21_clocks_init(32768, 26000000);
328 MACHINE_START(MX21ADS, "Freescale i.MX21ADS")
329 /* maintainer: Freescale Semiconductor, Inc. */
330 .atag_offset = 0x100,
331 .map_io = mx21_map_io,
332 .init_early = imx21_init_early,
333 .init_irq = mx21_init_irq,
334 .init_time = mx21ads_timer_init,
335 .init_machine = mx21ads_board_init,
336 .init_late = mx21ads_late_init,
337 .restart = mxc_restart,