| Brian Swetland | 495f71d | 2006-06-26 16:16:03 -0700 | [diff] [blame] | 1 | /* | 
 | 2 |  * linux/arch/arm/mach-omap1/board-fsample.c | 
 | 3 |  * | 
 | 4 |  * Modified from board-perseus2.c | 
 | 5 |  * | 
 | 6 |  * Original OMAP730 support by Jean Pihet <j-pihet@ti.com> | 
 | 7 |  * Updated for 2.6 by Kevin Hilman <kjh@hilman.org> | 
 | 8 |  * | 
 | 9 |  * This program is free software; you can redistribute it and/or modify | 
 | 10 |  * it under the terms of the GNU General Public License version 2 as | 
 | 11 |  * published by the Free Software Foundation. | 
 | 12 |  */ | 
 | 13 |  | 
 | 14 | #include <linux/kernel.h> | 
 | 15 | #include <linux/init.h> | 
 | 16 | #include <linux/platform_device.h> | 
 | 17 | #include <linux/delay.h> | 
 | 18 | #include <linux/mtd/mtd.h> | 
 | 19 | #include <linux/mtd/nand.h> | 
 | 20 | #include <linux/mtd/partitions.h> | 
 | 21 | #include <linux/input.h> | 
 | 22 |  | 
| Russell King | a09e64f | 2008-08-05 16:14:15 +0100 | [diff] [blame] | 23 | #include <mach/hardware.h> | 
| Brian Swetland | 495f71d | 2006-06-26 16:16:03 -0700 | [diff] [blame] | 24 | #include <asm/mach-types.h> | 
 | 25 | #include <asm/mach/arch.h> | 
 | 26 | #include <asm/mach/flash.h> | 
 | 27 | #include <asm/mach/map.h> | 
 | 28 |  | 
| Russell King | a09e64f | 2008-08-05 16:14:15 +0100 | [diff] [blame] | 29 | #include <mach/tc.h> | 
 | 30 | #include <mach/gpio.h> | 
 | 31 | #include <mach/mux.h> | 
 | 32 | #include <mach/fpga.h> | 
 | 33 | #include <mach/nand.h> | 
 | 34 | #include <mach/keypad.h> | 
 | 35 | #include <mach/common.h> | 
 | 36 | #include <mach/board.h> | 
| Tony Lindgren | d9558b1 | 2009-03-23 18:07:32 -0700 | [diff] [blame] | 37 |  | 
 | 38 | /* fsample is pretty close to p2-sample */ | 
 | 39 |  | 
 | 40 | #define fsample_cpld_read(reg) __raw_readb(reg) | 
 | 41 | #define fsample_cpld_write(val, reg) __raw_writeb(val, reg) | 
 | 42 |  | 
 | 43 | #define FSAMPLE_CPLD_BASE    0xE8100000 | 
 | 44 | #define FSAMPLE_CPLD_SIZE    SZ_4K | 
 | 45 | #define FSAMPLE_CPLD_START   0x05080000 | 
 | 46 |  | 
 | 47 | #define FSAMPLE_CPLD_REG_A   (FSAMPLE_CPLD_BASE + 0x00) | 
 | 48 | #define FSAMPLE_CPLD_SWITCH  (FSAMPLE_CPLD_BASE + 0x02) | 
 | 49 | #define FSAMPLE_CPLD_UART    (FSAMPLE_CPLD_BASE + 0x02) | 
 | 50 | #define FSAMPLE_CPLD_REG_B   (FSAMPLE_CPLD_BASE + 0x04) | 
 | 51 | #define FSAMPLE_CPLD_VERSION (FSAMPLE_CPLD_BASE + 0x06) | 
 | 52 | #define FSAMPLE_CPLD_SET_CLR (FSAMPLE_CPLD_BASE + 0x06) | 
 | 53 |  | 
 | 54 | #define FSAMPLE_CPLD_BIT_BT_RESET         0 | 
 | 55 | #define FSAMPLE_CPLD_BIT_LCD_RESET        1 | 
 | 56 | #define FSAMPLE_CPLD_BIT_CAM_PWDN         2 | 
 | 57 | #define FSAMPLE_CPLD_BIT_CHARGER_ENABLE   3 | 
 | 58 | #define FSAMPLE_CPLD_BIT_SD_MMC_EN        4 | 
 | 59 | #define FSAMPLE_CPLD_BIT_aGPS_PWREN       5 | 
 | 60 | #define FSAMPLE_CPLD_BIT_BACKLIGHT        6 | 
 | 61 | #define FSAMPLE_CPLD_BIT_aGPS_EN_RESET    7 | 
 | 62 | #define FSAMPLE_CPLD_BIT_aGPS_SLEEPx_N    8 | 
 | 63 | #define FSAMPLE_CPLD_BIT_OTG_RESET        9 | 
 | 64 |  | 
 | 65 | #define fsample_cpld_set(bit) \ | 
 | 66 |     fsample_cpld_write((((bit) & 15) << 4) | 0x0f, FSAMPLE_CPLD_SET_CLR) | 
 | 67 |  | 
 | 68 | #define fsample_cpld_clear(bit) \ | 
 | 69 |     fsample_cpld_write(0xf0 | ((bit) & 15), FSAMPLE_CPLD_SET_CLR) | 
| Brian Swetland | 495f71d | 2006-06-26 16:16:03 -0700 | [diff] [blame] | 70 |  | 
 | 71 | static int fsample_keymap[] = { | 
 | 72 | 	KEY(0,0,KEY_UP), | 
 | 73 | 	KEY(0,1,KEY_RIGHT), | 
 | 74 | 	KEY(0,2,KEY_LEFT), | 
 | 75 | 	KEY(0,3,KEY_DOWN), | 
| Vivek Kutal | 496bcb8 | 2008-01-07 12:04:00 -0200 | [diff] [blame] | 76 | 	KEY(0,4,KEY_ENTER), | 
 | 77 | 	KEY(1,0,KEY_F10), | 
| Brian Swetland | 495f71d | 2006-06-26 16:16:03 -0700 | [diff] [blame] | 78 | 	KEY(1,1,KEY_SEND), | 
 | 79 | 	KEY(1,2,KEY_END), | 
 | 80 | 	KEY(1,3,KEY_VOLUMEDOWN), | 
 | 81 | 	KEY(1,4,KEY_VOLUMEUP), | 
 | 82 | 	KEY(1,5,KEY_RECORD), | 
| Vivek Kutal | 496bcb8 | 2008-01-07 12:04:00 -0200 | [diff] [blame] | 83 | 	KEY(2,0,KEY_F9), | 
| Brian Swetland | 495f71d | 2006-06-26 16:16:03 -0700 | [diff] [blame] | 84 | 	KEY(2,1,KEY_3), | 
 | 85 | 	KEY(2,2,KEY_6), | 
 | 86 | 	KEY(2,3,KEY_9), | 
| Vivek Kutal | 496bcb8 | 2008-01-07 12:04:00 -0200 | [diff] [blame] | 87 | 	KEY(2,4,KEY_KPDOT), | 
| Brian Swetland | 495f71d | 2006-06-26 16:16:03 -0700 | [diff] [blame] | 88 | 	KEY(3,0,KEY_BACK), | 
 | 89 | 	KEY(3,1,KEY_2), | 
 | 90 | 	KEY(3,2,KEY_5), | 
 | 91 | 	KEY(3,3,KEY_8), | 
 | 92 | 	KEY(3,4,KEY_0), | 
| Vivek Kutal | 496bcb8 | 2008-01-07 12:04:00 -0200 | [diff] [blame] | 93 | 	KEY(3,5,KEY_KPSLASH), | 
| Brian Swetland | 495f71d | 2006-06-26 16:16:03 -0700 | [diff] [blame] | 94 | 	KEY(4,0,KEY_HOME), | 
 | 95 | 	KEY(4,1,KEY_1), | 
 | 96 | 	KEY(4,2,KEY_4), | 
 | 97 | 	KEY(4,3,KEY_7), | 
| Vivek Kutal | 496bcb8 | 2008-01-07 12:04:00 -0200 | [diff] [blame] | 98 | 	KEY(4,4,KEY_KPASTERISK), | 
| Brian Swetland | 495f71d | 2006-06-26 16:16:03 -0700 | [diff] [blame] | 99 | 	KEY(4,5,KEY_POWER), | 
 | 100 | 	0 | 
 | 101 | }; | 
 | 102 |  | 
 | 103 | static struct resource smc91x_resources[] = { | 
 | 104 | 	[0] = { | 
 | 105 | 		.start	= H2P2_DBG_FPGA_ETHR_START,	/* Physical */ | 
 | 106 | 		.end	= H2P2_DBG_FPGA_ETHR_START + 0xf, | 
 | 107 | 		.flags	= IORESOURCE_MEM, | 
 | 108 | 	}, | 
 | 109 | 	[1] = { | 
 | 110 | 		.start	= INT_730_MPU_EXT_NIRQ, | 
 | 111 | 		.end	= 0, | 
| Russell King | e7b3dc7 | 2008-01-14 22:30:10 +0000 | [diff] [blame] | 112 | 		.flags	= IORESOURCE_IRQ | IORESOURCE_IRQ_HIGHEDGE, | 
| Brian Swetland | 495f71d | 2006-06-26 16:16:03 -0700 | [diff] [blame] | 113 | 	}, | 
 | 114 | }; | 
 | 115 |  | 
 | 116 | static struct mtd_partition nor_partitions[] = { | 
 | 117 | 	/* bootloader (U-Boot, etc) in first sector */ | 
 | 118 | 	{ | 
 | 119 | 	      .name		= "bootloader", | 
 | 120 | 	      .offset		= 0, | 
 | 121 | 	      .size		= SZ_128K, | 
 | 122 | 	      .mask_flags	= MTD_WRITEABLE, /* force read-only */ | 
 | 123 | 	}, | 
 | 124 | 	/* bootloader params in the next sector */ | 
 | 125 | 	{ | 
 | 126 | 	      .name		= "params", | 
 | 127 | 	      .offset		= MTDPART_OFS_APPEND, | 
 | 128 | 	      .size		= SZ_128K, | 
 | 129 | 	      .mask_flags	= 0, | 
 | 130 | 	}, | 
 | 131 | 	/* kernel */ | 
 | 132 | 	{ | 
 | 133 | 	      .name		= "kernel", | 
 | 134 | 	      .offset		= MTDPART_OFS_APPEND, | 
 | 135 | 	      .size		= SZ_2M, | 
 | 136 | 	      .mask_flags	= 0 | 
 | 137 | 	}, | 
 | 138 | 	/* rest of flash is a file system */ | 
 | 139 | 	{ | 
 | 140 | 	      .name		= "rootfs", | 
 | 141 | 	      .offset		= MTDPART_OFS_APPEND, | 
 | 142 | 	      .size		= MTDPART_SIZ_FULL, | 
 | 143 | 	      .mask_flags	= 0 | 
 | 144 | 	}, | 
 | 145 | }; | 
 | 146 |  | 
 | 147 | static struct flash_platform_data nor_data = { | 
 | 148 | 	.map_name	= "cfi_probe", | 
 | 149 | 	.width		= 2, | 
 | 150 | 	.parts		= nor_partitions, | 
 | 151 | 	.nr_parts	= ARRAY_SIZE(nor_partitions), | 
 | 152 | }; | 
 | 153 |  | 
 | 154 | static struct resource nor_resource = { | 
 | 155 | 	.start		= OMAP_CS0_PHYS, | 
 | 156 | 	.end		= OMAP_CS0_PHYS + SZ_32M - 1, | 
 | 157 | 	.flags		= IORESOURCE_MEM, | 
 | 158 | }; | 
 | 159 |  | 
 | 160 | static struct platform_device nor_device = { | 
 | 161 | 	.name		= "omapflash", | 
 | 162 | 	.id		= 0, | 
 | 163 | 	.dev		= { | 
 | 164 | 		.platform_data	= &nor_data, | 
 | 165 | 	}, | 
 | 166 | 	.num_resources	= 1, | 
 | 167 | 	.resource	= &nor_resource, | 
 | 168 | }; | 
 | 169 |  | 
| Tony Lindgren | 78be632 | 2007-12-11 13:50:17 -0800 | [diff] [blame] | 170 | static struct omap_nand_platform_data nand_data = { | 
| Brian Swetland | 495f71d | 2006-06-26 16:16:03 -0700 | [diff] [blame] | 171 | 	.options	= NAND_SAMSUNG_LP_OPTIONS, | 
 | 172 | }; | 
 | 173 |  | 
 | 174 | static struct resource nand_resource = { | 
 | 175 | 	.start		= OMAP_CS3_PHYS, | 
 | 176 | 	.end		= OMAP_CS3_PHYS + SZ_4K - 1, | 
 | 177 | 	.flags		= IORESOURCE_MEM, | 
 | 178 | }; | 
 | 179 |  | 
 | 180 | static struct platform_device nand_device = { | 
 | 181 | 	.name		= "omapnand", | 
 | 182 | 	.id		= 0, | 
 | 183 | 	.dev		= { | 
 | 184 | 		.platform_data	= &nand_data, | 
 | 185 | 	}, | 
 | 186 | 	.num_resources	= 1, | 
 | 187 | 	.resource	= &nand_resource, | 
 | 188 | }; | 
 | 189 |  | 
 | 190 | static struct platform_device smc91x_device = { | 
 | 191 | 	.name		= "smc91x", | 
 | 192 | 	.id		= 0, | 
 | 193 | 	.num_resources	= ARRAY_SIZE(smc91x_resources), | 
 | 194 | 	.resource	= smc91x_resources, | 
 | 195 | }; | 
 | 196 |  | 
 | 197 | static struct resource kp_resources[] = { | 
 | 198 | 	[0] = { | 
 | 199 | 		.start	= INT_730_MPUIO_KEYPAD, | 
 | 200 | 		.end	= INT_730_MPUIO_KEYPAD, | 
 | 201 | 		.flags	= IORESOURCE_IRQ, | 
 | 202 | 	}, | 
 | 203 | }; | 
 | 204 |  | 
 | 205 | static struct omap_kp_platform_data kp_data = { | 
| Komal Shah | 4d24607 | 2006-09-29 01:59:20 -0700 | [diff] [blame] | 206 | 	.rows		= 8, | 
 | 207 | 	.cols		= 8, | 
 | 208 | 	.keymap		= fsample_keymap, | 
 | 209 | 	.keymapsize	= ARRAY_SIZE(fsample_keymap), | 
 | 210 | 	.delay		= 4, | 
| Brian Swetland | 495f71d | 2006-06-26 16:16:03 -0700 | [diff] [blame] | 211 | }; | 
 | 212 |  | 
 | 213 | static struct platform_device kp_device = { | 
 | 214 | 	.name		= "omap-keypad", | 
 | 215 | 	.id		= -1, | 
 | 216 | 	.dev		= { | 
 | 217 | 		.platform_data = &kp_data, | 
 | 218 | 	}, | 
 | 219 | 	.num_resources	= ARRAY_SIZE(kp_resources), | 
 | 220 | 	.resource	= kp_resources, | 
 | 221 | }; | 
 | 222 |  | 
 | 223 | static struct platform_device lcd_device = { | 
 | 224 | 	.name		= "lcd_p2", | 
 | 225 | 	.id		= -1, | 
 | 226 | }; | 
 | 227 |  | 
 | 228 | static struct platform_device *devices[] __initdata = { | 
 | 229 | 	&nor_device, | 
 | 230 | 	&nand_device, | 
 | 231 | 	&smc91x_device, | 
 | 232 | 	&kp_device, | 
 | 233 | 	&lcd_device, | 
 | 234 | }; | 
 | 235 |  | 
 | 236 | #define P2_NAND_RB_GPIO_PIN	62 | 
 | 237 |  | 
| Tony Lindgren | 78be632 | 2007-12-11 13:50:17 -0800 | [diff] [blame] | 238 | static int nand_dev_ready(struct omap_nand_platform_data *data) | 
| Brian Swetland | 495f71d | 2006-06-26 16:16:03 -0700 | [diff] [blame] | 239 | { | 
| David Brownell | 0b84b5c | 2008-12-10 17:35:25 -0800 | [diff] [blame] | 240 | 	return gpio_get_value(P2_NAND_RB_GPIO_PIN); | 
| Brian Swetland | 495f71d | 2006-06-26 16:16:03 -0700 | [diff] [blame] | 241 | } | 
 | 242 |  | 
 | 243 | static struct omap_uart_config fsample_uart_config __initdata = { | 
 | 244 | 	.enabled_uarts = ((1 << 0) | (1 << 1)), | 
 | 245 | }; | 
 | 246 |  | 
 | 247 | static struct omap_lcd_config fsample_lcd_config __initdata = { | 
 | 248 | 	.ctrl_name	= "internal", | 
 | 249 | }; | 
 | 250 |  | 
 | 251 | static struct omap_board_config_kernel fsample_config[] = { | 
 | 252 | 	{ OMAP_TAG_UART,	&fsample_uart_config }, | 
 | 253 | 	{ OMAP_TAG_LCD,		&fsample_lcd_config }, | 
 | 254 | }; | 
 | 255 |  | 
 | 256 | static void __init omap_fsample_init(void) | 
 | 257 | { | 
| Jarkko Nikula | f2d18fe | 2008-12-10 17:35:30 -0800 | [diff] [blame] | 258 | 	if (gpio_request(P2_NAND_RB_GPIO_PIN, "NAND ready") < 0) | 
 | 259 | 		BUG(); | 
 | 260 | 	nand_data.dev_ready = nand_dev_ready; | 
| Brian Swetland | 495f71d | 2006-06-26 16:16:03 -0700 | [diff] [blame] | 261 |  | 
 | 262 | 	omap_cfg_reg(L3_1610_FLASH_CS2B_OE); | 
 | 263 | 	omap_cfg_reg(M8_1610_FLASH_CS2B_WE); | 
 | 264 |  | 
 | 265 | 	platform_add_devices(devices, ARRAY_SIZE(devices)); | 
 | 266 |  | 
 | 267 | 	omap_board_config = fsample_config; | 
 | 268 | 	omap_board_config_size = ARRAY_SIZE(fsample_config); | 
 | 269 | 	omap_serial_init(); | 
| Jarkko Nikula | 1ed16a8 | 2007-11-07 06:54:32 +0200 | [diff] [blame] | 270 | 	omap_register_i2c_bus(1, 100, NULL, 0); | 
| Brian Swetland | 495f71d | 2006-06-26 16:16:03 -0700 | [diff] [blame] | 271 | } | 
 | 272 |  | 
 | 273 | static void __init fsample_init_smc91x(void) | 
 | 274 | { | 
 | 275 | 	fpga_write(1, H2P2_DBG_FPGA_LAN_RESET); | 
 | 276 | 	mdelay(50); | 
 | 277 | 	fpga_write(fpga_read(H2P2_DBG_FPGA_LAN_RESET) & ~1, | 
 | 278 | 		   H2P2_DBG_FPGA_LAN_RESET); | 
 | 279 | 	mdelay(50); | 
 | 280 | } | 
 | 281 |  | 
| David Brownell | 277d58e | 2006-12-06 17:13:59 -0800 | [diff] [blame] | 282 | static void __init omap_fsample_init_irq(void) | 
| Brian Swetland | 495f71d | 2006-06-26 16:16:03 -0700 | [diff] [blame] | 283 | { | 
 | 284 | 	omap1_init_common_hw(); | 
 | 285 | 	omap_init_irq(); | 
 | 286 | 	omap_gpio_init(); | 
 | 287 | 	fsample_init_smc91x(); | 
 | 288 | } | 
 | 289 |  | 
 | 290 | /* Only FPGA needs to be mapped here. All others are done with ioremap */ | 
 | 291 | static struct map_desc omap_fsample_io_desc[] __initdata = { | 
 | 292 | 	{ | 
 | 293 | 		.virtual	= H2P2_DBG_FPGA_BASE, | 
 | 294 | 		.pfn		= __phys_to_pfn(H2P2_DBG_FPGA_START), | 
 | 295 | 		.length		= H2P2_DBG_FPGA_SIZE, | 
 | 296 | 		.type		= MT_DEVICE | 
 | 297 | 	}, | 
 | 298 | 	{ | 
 | 299 | 		.virtual	= FSAMPLE_CPLD_BASE, | 
 | 300 | 		.pfn		= __phys_to_pfn(FSAMPLE_CPLD_START), | 
 | 301 | 		.length		= FSAMPLE_CPLD_SIZE, | 
 | 302 | 		.type		= MT_DEVICE | 
 | 303 | 	} | 
 | 304 | }; | 
 | 305 |  | 
 | 306 | static void __init omap_fsample_map_io(void) | 
 | 307 | { | 
 | 308 | 	omap1_map_common_io(); | 
 | 309 | 	iotable_init(omap_fsample_io_desc, | 
 | 310 | 		     ARRAY_SIZE(omap_fsample_io_desc)); | 
 | 311 |  | 
 | 312 | 	/* Early, board-dependent init */ | 
 | 313 |  | 
 | 314 | 	/* | 
 | 315 | 	 * Hold GSM Reset until needed | 
 | 316 | 	 */ | 
 | 317 | 	omap_writew(omap_readw(OMAP730_DSP_M_CTL) & ~1, OMAP730_DSP_M_CTL); | 
 | 318 |  | 
 | 319 | 	/* | 
 | 320 | 	 * UARTs -> done automagically by 8250 driver | 
 | 321 | 	 */ | 
 | 322 |  | 
 | 323 | 	/* | 
 | 324 | 	 * CSx timings, GPIO Mux ... setup | 
 | 325 | 	 */ | 
 | 326 |  | 
 | 327 | 	/* Flash: CS0 timings setup */ | 
 | 328 | 	omap_writel(0x0000fff3, OMAP730_FLASH_CFG_0); | 
 | 329 | 	omap_writel(0x00000088, OMAP730_FLASH_ACFG_0); | 
 | 330 |  | 
 | 331 | 	/* | 
 | 332 | 	 * Ethernet support through the debug board | 
 | 333 | 	 * CS1 timings setup | 
 | 334 | 	 */ | 
 | 335 | 	omap_writel(0x0000fff3, OMAP730_FLASH_CFG_1); | 
 | 336 | 	omap_writel(0x00000000, OMAP730_FLASH_ACFG_1); | 
 | 337 |  | 
 | 338 | 	/* | 
 | 339 | 	 * Configure MPU_EXT_NIRQ IO in IO_CONF9 register, | 
 | 340 | 	 * It is used as the Ethernet controller interrupt | 
 | 341 | 	 */ | 
 | 342 | 	omap_writel(omap_readl(OMAP730_IO_CONF_9) & 0x1FFFFFFF, OMAP730_IO_CONF_9); | 
 | 343 | } | 
 | 344 |  | 
 | 345 | MACHINE_START(OMAP_FSAMPLE, "OMAP730 F-Sample") | 
 | 346 | /* Maintainer: Brian Swetland <swetland@google.com> */ | 
 | 347 | 	.phys_io	= 0xfff00000, | 
 | 348 | 	.io_pg_offst	= ((0xfef00000) >> 18) & 0xfffc, | 
 | 349 | 	.boot_params	= 0x10000100, | 
 | 350 | 	.map_io		= omap_fsample_map_io, | 
 | 351 | 	.init_irq	= omap_fsample_init_irq, | 
 | 352 | 	.init_machine	= omap_fsample_init, | 
 | 353 | 	.timer		= &omap_timer, | 
 | 354 | MACHINE_END |