| Ivo Clarysse | 6b91edd | 2009-04-15 15:39:27 +0200 | [diff] [blame] | 1 | /* | 
 | 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. | 
 | 5 |  * | 
 | 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. | 
 | 10 |  * | 
 | 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. | 
| Ivo Clarysse | 6b91edd | 2009-04-15 15:39:27 +0200 | [diff] [blame] | 15 |  */ | 
 | 16 |  | 
 | 17 | #include <linux/platform_device.h> | 
 | 18 | #include <linux/mtd/mtd.h> | 
 | 19 | #include <linux/mtd/physmap.h> | 
 | 20 | #include <linux/gpio.h> | 
 | 21 | #include <mach/common.h> | 
 | 22 | #include <mach/hardware.h> | 
 | 23 | #include <asm/mach-types.h> | 
 | 24 | #include <asm/mach/arch.h> | 
 | 25 | #include <asm/mach/time.h> | 
 | 26 | #include <asm/mach/map.h> | 
| Ivo Clarysse | 6b91edd | 2009-04-15 15:39:27 +0200 | [diff] [blame] | 27 | #include <mach/imxfb.h> | 
| Uwe Kleine-König | e835d88 | 2010-02-16 11:07:49 +0100 | [diff] [blame] | 28 | #include <mach/iomux-mx21.h> | 
| Ivo Clarysse | 6b91edd | 2009-04-15 15:39:27 +0200 | [diff] [blame] | 29 | #include <mach/mxc_nand.h> | 
 | 30 | #include <mach/mmc.h> | 
| Ivo Clarysse | 6b91edd | 2009-04-15 15:39:27 +0200 | [diff] [blame] | 31 |  | 
| Uwe Kleine-König | 1f8d721 | 2010-06-16 11:17:45 +0200 | [diff] [blame] | 32 | #include "devices-imx21.h" | 
| Ivo Clarysse | 6b91edd | 2009-04-15 15:39:27 +0200 | [diff] [blame] | 33 | #include "devices.h" | 
 | 34 |  | 
| Uwe Kleine-König | d393d43 | 2010-03-08 11:59:25 +0100 | [diff] [blame] | 35 | /* | 
 | 36 |  * Memory-mapped I/O on MX21ADS base board | 
 | 37 |  */ | 
 | 38 | #define MX21ADS_MMIO_BASE_ADDR   0xf5000000 | 
 | 39 | #define MX21ADS_MMIO_SIZE        SZ_16M | 
 | 40 |  | 
 | 41 | #define MX21ADS_REG_ADDR(offset)    (void __force __iomem *) \ | 
 | 42 | 		(MX21ADS_MMIO_BASE_ADDR + (offset)) | 
 | 43 |  | 
 | 44 | #define MX21ADS_CS8900A_IRQ         IRQ_GPIOE(11) | 
 | 45 | #define MX21ADS_CS8900A_IOBASE_REG  MX21ADS_REG_ADDR(0x000000) | 
 | 46 | #define MX21ADS_ST16C255_IOBASE_REG MX21ADS_REG_ADDR(0x200000) | 
 | 47 | #define MX21ADS_VERSION_REG         MX21ADS_REG_ADDR(0x400000) | 
 | 48 | #define MX21ADS_IO_REG              MX21ADS_REG_ADDR(0x800000) | 
 | 49 |  | 
 | 50 | /* MX21ADS_IO_REG bit definitions */ | 
 | 51 | #define MX21ADS_IO_SD_WP        0x0001 /* read */ | 
 | 52 | #define MX21ADS_IO_TP6          0x0001 /* write */ | 
 | 53 | #define MX21ADS_IO_SW_SEL       0x0002 /* read */ | 
 | 54 | #define MX21ADS_IO_TP7          0x0002 /* write */ | 
 | 55 | #define MX21ADS_IO_RESET_E_UART 0x0004 | 
 | 56 | #define MX21ADS_IO_RESET_BASE   0x0008 | 
 | 57 | #define MX21ADS_IO_CSI_CTL2     0x0010 | 
 | 58 | #define MX21ADS_IO_CSI_CTL1     0x0020 | 
 | 59 | #define MX21ADS_IO_CSI_CTL0     0x0040 | 
 | 60 | #define MX21ADS_IO_UART1_EN     0x0080 | 
 | 61 | #define MX21ADS_IO_UART4_EN     0x0100 | 
 | 62 | #define MX21ADS_IO_LCDON        0x0200 | 
 | 63 | #define MX21ADS_IO_IRDA_EN      0x0400 | 
 | 64 | #define MX21ADS_IO_IRDA_FIR_SEL 0x0800 | 
 | 65 | #define MX21ADS_IO_IRDA_MD0_B   0x1000 | 
 | 66 | #define MX21ADS_IO_IRDA_MD1     0x2000 | 
 | 67 | #define MX21ADS_IO_LED4_ON      0x4000 | 
 | 68 | #define MX21ADS_IO_LED3_ON      0x8000 | 
 | 69 |  | 
| Uwe Kleine-König | 6c80ee5 | 2010-09-28 21:53:31 +0200 | [diff] [blame] | 70 | static const int mx21ads_pins[] __initconst = { | 
| Ivo Clarysse | 6b91edd | 2009-04-15 15:39:27 +0200 | [diff] [blame] | 71 |  | 
 | 72 | 	/* CS8900A */ | 
 | 73 | 	(GPIO_PORTE | GPIO_GPIO | GPIO_IN | 11), | 
 | 74 |  | 
 | 75 | 	/* UART1 */ | 
 | 76 | 	PE12_PF_UART1_TXD, | 
 | 77 | 	PE13_PF_UART1_RXD, | 
 | 78 | 	PE14_PF_UART1_CTS, | 
 | 79 | 	PE15_PF_UART1_RTS, | 
 | 80 |  | 
 | 81 | 	/* UART3 (IrDA) - only TXD and RXD */ | 
 | 82 | 	PE8_PF_UART3_TXD, | 
 | 83 | 	PE9_PF_UART3_RXD, | 
 | 84 |  | 
 | 85 | 	/* UART4 */ | 
 | 86 | 	PB26_AF_UART4_RTS, | 
 | 87 | 	PB28_AF_UART4_TXD, | 
 | 88 | 	PB29_AF_UART4_CTS, | 
 | 89 | 	PB31_AF_UART4_RXD, | 
 | 90 |  | 
 | 91 | 	/* LCDC */ | 
 | 92 | 	PA5_PF_LSCLK, | 
 | 93 | 	PA6_PF_LD0, | 
 | 94 | 	PA7_PF_LD1, | 
 | 95 | 	PA8_PF_LD2, | 
 | 96 | 	PA9_PF_LD3, | 
 | 97 | 	PA10_PF_LD4, | 
 | 98 | 	PA11_PF_LD5, | 
 | 99 | 	PA12_PF_LD6, | 
 | 100 | 	PA13_PF_LD7, | 
 | 101 | 	PA14_PF_LD8, | 
 | 102 | 	PA15_PF_LD9, | 
 | 103 | 	PA16_PF_LD10, | 
 | 104 | 	PA17_PF_LD11, | 
 | 105 | 	PA18_PF_LD12, | 
 | 106 | 	PA19_PF_LD13, | 
 | 107 | 	PA20_PF_LD14, | 
 | 108 | 	PA21_PF_LD15, | 
 | 109 | 	PA22_PF_LD16, | 
 | 110 | 	PA24_PF_REV,     /* Sharp panel dedicated signal */ | 
 | 111 | 	PA25_PF_CLS,     /* Sharp panel dedicated signal */ | 
 | 112 | 	PA26_PF_PS,      /* Sharp panel dedicated signal */ | 
 | 113 | 	PA27_PF_SPL_SPR, /* Sharp panel dedicated signal */ | 
 | 114 | 	PA28_PF_HSYNC, | 
 | 115 | 	PA29_PF_VSYNC, | 
 | 116 | 	PA30_PF_CONTRAST, | 
 | 117 | 	PA31_PF_OE_ACD, | 
 | 118 |  | 
 | 119 | 	/* MMC/SDHC */ | 
 | 120 | 	PE18_PF_SD1_D0, | 
 | 121 | 	PE19_PF_SD1_D1, | 
 | 122 | 	PE20_PF_SD1_D2, | 
 | 123 | 	PE21_PF_SD1_D3, | 
 | 124 | 	PE22_PF_SD1_CMD, | 
 | 125 | 	PE23_PF_SD1_CLK, | 
 | 126 |  | 
 | 127 | 	/* NFC */ | 
 | 128 | 	PF0_PF_NRFB, | 
 | 129 | 	PF1_PF_NFCE, | 
 | 130 | 	PF2_PF_NFWP, | 
 | 131 | 	PF3_PF_NFCLE, | 
 | 132 | 	PF4_PF_NFALE, | 
 | 133 | 	PF5_PF_NFRE, | 
 | 134 | 	PF6_PF_NFWE, | 
 | 135 | 	PF7_PF_NFIO0, | 
 | 136 | 	PF8_PF_NFIO1, | 
 | 137 | 	PF9_PF_NFIO2, | 
 | 138 | 	PF10_PF_NFIO3, | 
 | 139 | 	PF11_PF_NFIO4, | 
 | 140 | 	PF12_PF_NFIO5, | 
 | 141 | 	PF13_PF_NFIO6, | 
 | 142 | 	PF14_PF_NFIO7, | 
 | 143 | }; | 
 | 144 |  | 
 | 145 | /* ADS's NOR flash: 2x AM29BDS128HE9VKI on 32-bit bus */ | 
 | 146 | static struct physmap_flash_data mx21ads_flash_data = { | 
 | 147 | 	.width = 4, | 
 | 148 | }; | 
 | 149 |  | 
 | 150 | static struct resource mx21ads_flash_resource = { | 
| Uwe Kleine-König | 3f35d1f | 2009-12-09 11:32:11 +0100 | [diff] [blame] | 151 | 	.start = MX21_CS0_BASE_ADDR, | 
 | 152 | 	.end = MX21_CS0_BASE_ADDR + 0x02000000 - 1, | 
| Ivo Clarysse | 6b91edd | 2009-04-15 15:39:27 +0200 | [diff] [blame] | 153 | 	.flags = IORESOURCE_MEM, | 
 | 154 | }; | 
 | 155 |  | 
 | 156 | static struct platform_device mx21ads_nor_mtd_device = { | 
 | 157 | 	.name = "physmap-flash", | 
 | 158 | 	.id = 0, | 
 | 159 | 	.dev = { | 
 | 160 | 		.platform_data = &mx21ads_flash_data, | 
 | 161 | 	}, | 
 | 162 | 	.num_resources = 1, | 
 | 163 | 	.resource = &mx21ads_flash_resource, | 
 | 164 | }; | 
 | 165 |  | 
| Uwe Kleine-König | 3c5227f | 2010-06-22 17:59:58 +0200 | [diff] [blame] | 166 | static const struct imxuart_platform_data uart_pdata_rts __initconst = { | 
| Ivo Clarysse | 6b91edd | 2009-04-15 15:39:27 +0200 | [diff] [blame] | 167 | 	.flags = IMXUART_HAVE_RTSCTS, | 
 | 168 | }; | 
 | 169 |  | 
| Uwe Kleine-König | 3c5227f | 2010-06-22 17:59:58 +0200 | [diff] [blame] | 170 | static const struct imxuart_platform_data uart_pdata_norts __initconst = { | 
| Ivo Clarysse | 6b91edd | 2009-04-15 15:39:27 +0200 | [diff] [blame] | 171 | }; | 
 | 172 |  | 
| Ivo Clarysse | 6b91edd | 2009-04-15 15:39:27 +0200 | [diff] [blame] | 173 | static int mx21ads_fb_init(struct platform_device *pdev) | 
 | 174 | { | 
 | 175 | 	u16 tmp; | 
 | 176 |  | 
 | 177 | 	tmp = __raw_readw(MX21ADS_IO_REG); | 
 | 178 | 	tmp |= MX21ADS_IO_LCDON; | 
 | 179 | 	__raw_writew(tmp, MX21ADS_IO_REG); | 
 | 180 | 	return 0; | 
 | 181 | } | 
 | 182 |  | 
 | 183 | static void mx21ads_fb_exit(struct platform_device *pdev) | 
 | 184 | { | 
 | 185 | 	u16 tmp; | 
 | 186 |  | 
 | 187 | 	tmp = __raw_readw(MX21ADS_IO_REG); | 
 | 188 | 	tmp &= ~MX21ADS_IO_LCDON; | 
 | 189 | 	__raw_writew(tmp, MX21ADS_IO_REG); | 
 | 190 | } | 
 | 191 |  | 
 | 192 | /* | 
 | 193 |  * Connected is a portrait Sharp-QVGA display | 
 | 194 |  * of type: LQ035Q7DB02 | 
 | 195 |  */ | 
| Sascha Hauer | c35d3a4 | 2009-08-13 10:04:44 +0200 | [diff] [blame] | 196 | static struct imx_fb_videomode mx21ads_modes[] = { | 
 | 197 | 	{ | 
 | 198 | 		.mode = { | 
 | 199 | 			.name		= "Sharp-LQ035Q7", | 
 | 200 | 			.refresh	= 60, | 
 | 201 | 			.xres		= 240, | 
 | 202 | 			.yres		= 320, | 
 | 203 | 			.pixclock	= 188679, /* in ps (5.3MHz) */ | 
 | 204 | 			.hsync_len	= 2, | 
 | 205 | 			.left_margin	= 6, | 
 | 206 | 			.right_margin	= 16, | 
 | 207 | 			.vsync_len	= 1, | 
 | 208 | 			.upper_margin	= 8, | 
 | 209 | 			.lower_margin	= 10, | 
 | 210 | 		}, | 
 | 211 | 		.pcr		= 0xfb108bc7, | 
 | 212 | 		.bpp		= 16, | 
 | 213 | 	}, | 
 | 214 | }; | 
 | 215 |  | 
| Ivo Clarysse | 6b91edd | 2009-04-15 15:39:27 +0200 | [diff] [blame] | 216 | static struct imx_fb_platform_data mx21ads_fb_data = { | 
| Sascha Hauer | c35d3a4 | 2009-08-13 10:04:44 +0200 | [diff] [blame] | 217 | 	.mode = mx21ads_modes, | 
 | 218 | 	.num_modes = ARRAY_SIZE(mx21ads_modes), | 
| Ivo Clarysse | 6b91edd | 2009-04-15 15:39:27 +0200 | [diff] [blame] | 219 |  | 
| Sascha Hauer | c35d3a4 | 2009-08-13 10:04:44 +0200 | [diff] [blame] | 220 | 	.pwmr		= 0x00a903ff, | 
 | 221 | 	.lscr1		= 0x00120300, | 
 | 222 | 	.dmacr		= 0x00020008, | 
| Ivo Clarysse | 6b91edd | 2009-04-15 15:39:27 +0200 | [diff] [blame] | 223 |  | 
 | 224 | 	.init = mx21ads_fb_init, | 
 | 225 | 	.exit = mx21ads_fb_exit, | 
 | 226 | }; | 
 | 227 |  | 
 | 228 | static int mx21ads_sdhc_get_ro(struct device *dev) | 
 | 229 | { | 
 | 230 | 	return (__raw_readw(MX21ADS_IO_REG) & MX21ADS_IO_SD_WP) ? 1 : 0; | 
 | 231 | } | 
 | 232 |  | 
 | 233 | static int mx21ads_sdhc_init(struct device *dev, irq_handler_t detect_irq, | 
 | 234 | 	void *data) | 
 | 235 | { | 
 | 236 | 	int ret; | 
 | 237 |  | 
 | 238 | 	ret = request_irq(IRQ_GPIOD(25), detect_irq, | 
 | 239 | 		IRQF_TRIGGER_FALLING, "mmc-detect", data); | 
 | 240 | 	if (ret) | 
 | 241 | 		goto out; | 
 | 242 | 	return 0; | 
 | 243 | out: | 
 | 244 | 	return ret; | 
 | 245 | } | 
 | 246 |  | 
 | 247 | static void mx21ads_sdhc_exit(struct device *dev, void *data) | 
 | 248 | { | 
 | 249 | 	free_irq(IRQ_GPIOD(25), data); | 
 | 250 | } | 
 | 251 |  | 
 | 252 | static struct imxmmc_platform_data mx21ads_sdhc_pdata = { | 
 | 253 | 	.ocr_avail = MMC_VDD_29_30 | MMC_VDD_30_31, /* 3.0V */ | 
 | 254 | 	.get_ro = mx21ads_sdhc_get_ro, | 
 | 255 | 	.init = mx21ads_sdhc_init, | 
 | 256 | 	.exit = mx21ads_sdhc_exit, | 
 | 257 | }; | 
 | 258 |  | 
| Uwe Kleine-König | 1f8d721 | 2010-06-16 11:17:45 +0200 | [diff] [blame] | 259 | static const struct mxc_nand_platform_data | 
 | 260 | mx21ads_nand_board_info __initconst = { | 
| Ivo Clarysse | 6b91edd | 2009-04-15 15:39:27 +0200 | [diff] [blame] | 261 | 	.width = 1, | 
 | 262 | 	.hw_ecc = 1, | 
 | 263 | }; | 
 | 264 |  | 
 | 265 | static struct map_desc mx21ads_io_desc[] __initdata = { | 
 | 266 | 	/* | 
 | 267 | 	 * Memory-mapped I/O on MX21ADS Base board: | 
 | 268 | 	 *   - CS8900A Ethernet controller | 
 | 269 | 	 *   - ST16C2552CJ UART | 
 | 270 | 	 *   - CPU and Base board version | 
 | 271 | 	 *   - Base board I/O register | 
 | 272 | 	 */ | 
 | 273 | 	{ | 
 | 274 | 		.virtual = MX21ADS_MMIO_BASE_ADDR, | 
| Uwe Kleine-König | 3f35d1f | 2009-12-09 11:32:11 +0100 | [diff] [blame] | 275 | 		.pfn = __phys_to_pfn(MX21_CS1_BASE_ADDR), | 
| Ivo Clarysse | 6b91edd | 2009-04-15 15:39:27 +0200 | [diff] [blame] | 276 | 		.length = MX21ADS_MMIO_SIZE, | 
 | 277 | 		.type = MT_DEVICE, | 
 | 278 | 	}, | 
 | 279 | }; | 
 | 280 |  | 
 | 281 | static void __init mx21ads_map_io(void) | 
 | 282 | { | 
 | 283 | 	mx21_map_io(); | 
 | 284 | 	iotable_init(mx21ads_io_desc, ARRAY_SIZE(mx21ads_io_desc)); | 
 | 285 | } | 
 | 286 |  | 
 | 287 | static struct platform_device *platform_devices[] __initdata = { | 
 | 288 | 	&mx21ads_nor_mtd_device, | 
 | 289 | }; | 
 | 290 |  | 
 | 291 | static void __init mx21ads_board_init(void) | 
 | 292 | { | 
 | 293 | 	mxc_gpio_setup_multiple_pins(mx21ads_pins, ARRAY_SIZE(mx21ads_pins), | 
 | 294 | 			"mx21ads"); | 
 | 295 |  | 
| Uwe Kleine-König | 3c5227f | 2010-06-22 17:59:58 +0200 | [diff] [blame] | 296 | 	imx21_add_imx_uart0(&uart_pdata_rts); | 
 | 297 | 	imx21_add_imx_uart2(&uart_pdata_norts); | 
 | 298 | 	imx21_add_imx_uart3(&uart_pdata_rts); | 
| Ivo Clarysse | 6b91edd | 2009-04-15 15:39:27 +0200 | [diff] [blame] | 299 | 	mxc_register_device(&mxc_fb_device, &mx21ads_fb_data); | 
 | 300 | 	mxc_register_device(&mxc_sdhc_device0, &mx21ads_sdhc_pdata); | 
| Uwe Kleine-König | 1f8d721 | 2010-06-16 11:17:45 +0200 | [diff] [blame] | 301 | 	imx21_add_mxc_nand(&mx21ads_nand_board_info); | 
| Ivo Clarysse | 6b91edd | 2009-04-15 15:39:27 +0200 | [diff] [blame] | 302 |  | 
 | 303 | 	platform_add_devices(platform_devices, ARRAY_SIZE(platform_devices)); | 
 | 304 | } | 
 | 305 |  | 
 | 306 | static void __init mx21ads_timer_init(void) | 
 | 307 | { | 
 | 308 | 	mx21_clocks_init(32768, 26000000); | 
 | 309 | } | 
 | 310 |  | 
 | 311 | static struct sys_timer mx21ads_timer = { | 
 | 312 | 	.init	= mx21ads_timer_init, | 
 | 313 | }; | 
 | 314 |  | 
 | 315 | MACHINE_START(MX21ADS, "Freescale i.MX21ADS") | 
 | 316 | 	/* maintainer: Freescale Semiconductor, Inc. */ | 
| Uwe Kleine-König | 3410123 | 2010-01-29 17:36:05 +0100 | [diff] [blame] | 317 | 	.boot_params    = MX21_PHYS_OFFSET + 0x100, | 
| Ivo Clarysse | 6b91edd | 2009-04-15 15:39:27 +0200 | [diff] [blame] | 318 | 	.map_io         = mx21ads_map_io, | 
| Sascha Hauer | c5aa0ad | 2009-05-25 17:36:19 +0200 | [diff] [blame] | 319 | 	.init_irq       = mx21_init_irq, | 
| Ivo Clarysse | 6b91edd | 2009-04-15 15:39:27 +0200 | [diff] [blame] | 320 | 	.init_machine   = mx21ads_board_init, | 
 | 321 | 	.timer          = &mx21ads_timer, | 
 | 322 | MACHINE_END |