2 * linux/arch/arm/mach-omap1/board-h3.c
4 * This file contains OMAP1710 H3 specific code.
6 * Copyright (C) 2004 Texas Instruments, Inc.
7 * Copyright (C) 2002 MontaVista Software, Inc.
8 * Copyright (C) 2001 RidgeRun, Inc.
9 * Author: RidgeRun, Inc.
10 * Greg Lonnon (glonnon@ridgerun.com) or info@ridgerun.com
12 * This program is free software; you can redistribute it and/or modify
13 * it under the terms of the GNU General Public License version 2 as
14 * published by the Free Software Foundation.
17 #include <linux/config.h>
18 #include <linux/types.h>
19 #include <linux/init.h>
20 #include <linux/major.h>
21 #include <linux/kernel.h>
22 #include <linux/platform_device.h>
23 #include <linux/errno.h>
24 #include <linux/workqueue.h>
25 #include <linux/mtd/mtd.h>
26 #include <linux/mtd/nand.h>
27 #include <linux/mtd/partitions.h>
28 #include <linux/input.h>
30 #include <asm/setup.h>
32 #include <asm/hardware.h>
33 #include <asm/mach-types.h>
34 #include <asm/mach/arch.h>
35 #include <asm/mach/flash.h>
36 #include <asm/mach/map.h>
38 #include <asm/arch/gpio.h>
39 #include <asm/arch/gpioexpander.h>
40 #include <asm/arch/irqs.h>
41 #include <asm/arch/mux.h>
42 #include <asm/arch/tc.h>
43 #include <asm/arch/irda.h>
44 #include <asm/arch/usb.h>
45 #include <asm/arch/keypad.h>
46 #include <asm/arch/dma.h>
47 #include <asm/arch/common.h>
49 extern int omap_gpio_init(void);
51 static int h3_keymap[] = {
91 static struct mtd_partition nor_partitions[] = {
92 /* bootloader (U-Boot, etc) in first sector */
97 .mask_flags = MTD_WRITEABLE, /* force read-only */
99 /* bootloader params in the next sector */
102 .offset = MTDPART_OFS_APPEND,
109 .offset = MTDPART_OFS_APPEND,
115 .name = "filesystem",
116 .offset = MTDPART_OFS_APPEND,
117 .size = MTDPART_SIZ_FULL,
122 static struct flash_platform_data nor_data = {
123 .map_name = "cfi_probe",
125 .parts = nor_partitions,
126 .nr_parts = ARRAY_SIZE(nor_partitions),
129 static struct resource nor_resource = {
130 /* This is on CS3, wherever it's mapped */
131 .flags = IORESOURCE_MEM,
134 static struct platform_device nor_device = {
138 .platform_data = &nor_data,
141 .resource = &nor_resource,
144 static struct mtd_partition nand_partitions[] = {
146 /* REVISIT: enable these partitions if you make NAND BOOT work */
151 .mask_flags = MTD_WRITEABLE, /* force read-only */
154 .name = "bootloader",
155 .offset = MTDPART_OFS_APPEND,
157 .mask_flags = MTD_WRITEABLE, /* force read-only */
161 .offset = MTDPART_OFS_APPEND,
166 .offset = MTDPART_OFS_APPEND,
171 .name = "filesystem",
172 .size = MTDPART_SIZ_FULL,
173 .offset = MTDPART_OFS_APPEND,
177 /* dip switches control NAND chip access: 8 bit, 16 bit, or neither */
178 static struct nand_platform_data nand_data = {
179 .options = NAND_SAMSUNG_LP_OPTIONS,
180 .parts = nand_partitions,
181 .nr_parts = ARRAY_SIZE(nand_partitions),
184 static struct resource nand_resource = {
185 .flags = IORESOURCE_MEM,
188 static struct platform_device nand_device = {
192 .platform_data = &nand_data,
195 .resource = &nand_resource,
198 static struct resource smc91x_resources[] = {
200 .start = OMAP1710_ETHR_START, /* Physical */
201 .end = OMAP1710_ETHR_START + 0xf,
202 .flags = IORESOURCE_MEM,
205 .start = OMAP_GPIO_IRQ(40),
206 .end = OMAP_GPIO_IRQ(40),
207 .flags = IORESOURCE_IRQ,
211 static struct platform_device smc91x_device = {
214 .num_resources = ARRAY_SIZE(smc91x_resources),
215 .resource = smc91x_resources,
218 #define GPTIMER_BASE 0xFFFB1400
219 #define GPTIMER_REGS(x) (0xFFFB1400 + (x * 0x800))
220 #define GPTIMER_REGS_SIZE 0x46
222 static struct resource intlat_resources[] = {
224 .start = GPTIMER_REGS(0), /* Physical */
225 .end = GPTIMER_REGS(0) + GPTIMER_REGS_SIZE,
226 .flags = IORESOURCE_MEM,
229 .start = INT_1610_GPTIMER1,
230 .end = INT_1610_GPTIMER1,
231 .flags = IORESOURCE_IRQ,
235 static struct platform_device intlat_device = {
236 .name = "omap_intlat",
238 .num_resources = ARRAY_SIZE(intlat_resources),
239 .resource = intlat_resources,
242 static struct resource h3_kp_resources[] = {
244 .start = INT_KEYBOARD,
246 .flags = IORESOURCE_IRQ,
250 static struct omap_kp_platform_data h3_kp_data = {
257 static struct platform_device h3_kp_device = {
258 .name = "omap-keypad",
261 .platform_data = &h3_kp_data,
263 .num_resources = ARRAY_SIZE(h3_kp_resources),
264 .resource = h3_kp_resources,
268 /* Select between the IrDA and aGPS module
270 static int h3_select_irda(struct device *dev, int state)
275 if ((err = read_gpio_expa(&expa, 0x26))) {
276 printk(KERN_ERR "Error reading from I/O EXPANDER \n");
280 /* 'P6' enable/disable IRDA_TX and IRDA_RX */
281 if (state & IR_SEL) { /* IrDA */
282 if ((err = write_gpio_expa(expa | 0x40, 0x26))) {
283 printk(KERN_ERR "Error writing to I/O EXPANDER \n");
287 if ((err = write_gpio_expa(expa & ~0x40, 0x26))) {
288 printk(KERN_ERR "Error writing to I/O EXPANDER \n");
295 static void set_trans_mode(void *data)
301 if ((err = read_gpio_expa(&expa, 0x27)) != 0) {
302 printk(KERN_ERR "Error reading from I/O expander\n");
307 if (*mode & IR_SIRMODE) {
309 } else { /* MIR/FIR */
313 if ((err = write_gpio_expa(expa, 0x27)) != 0) {
314 printk(KERN_ERR "Error writing to I/O expander\n");
318 static int h3_transceiver_mode(struct device *dev, int mode)
320 struct omap_irda_config *irda_config = dev->platform_data;
322 cancel_delayed_work(&irda_config->gpio_expa);
323 PREPARE_WORK(&irda_config->gpio_expa, set_trans_mode, &mode);
324 schedule_work(&irda_config->gpio_expa);
329 static struct omap_irda_config h3_irda_data = {
330 .transceiver_cap = IR_SIRMODE | IR_MIRMODE | IR_FIRMODE,
331 .transceiver_mode = h3_transceiver_mode,
332 .select_irda = h3_select_irda,
333 .rx_channel = OMAP_DMA_UART3_RX,
334 .tx_channel = OMAP_DMA_UART3_TX,
335 .dest_start = UART3_THR,
336 .src_start = UART3_RHR,
341 static struct resource h3_irda_resources[] = {
345 .flags = IORESOURCE_IRQ,
349 static struct platform_device h3_irda_device = {
353 .platform_data = &h3_irda_data,
355 .num_resources = ARRAY_SIZE(h3_irda_resources),
356 .resource = h3_irda_resources,
359 static struct platform_device h3_lcd_device = {
364 static struct platform_device *devices[] __initdata = {
374 static struct omap_usb_config h3_usb_config __initdata = {
375 /* usb1 has a Mini-AB port and external isp1301 transceiver */
378 #ifdef CONFIG_USB_GADGET_OMAP
379 .hmc_mode = 19, /* 0:host(off) 1:dev|otg 2:disabled */
380 #elif defined(CONFIG_USB_OHCI_HCD) || defined(CONFIG_USB_OHCI_HCD_MODULE)
381 /* NONSTANDARD CABLE NEEDED (B-to-Mini-B) */
382 .hmc_mode = 20, /* 1:dev|otg(off) 1:host 2:disabled */
388 static struct omap_mmc_config h3_mmc_config __initdata = {
391 .power_pin = -1, /* tps65010 GPIO4 */
392 .switch_pin = OMAP_MPUIO(1),
396 static struct omap_uart_config h3_uart_config __initdata = {
397 .enabled_uarts = ((1 << 0) | (1 << 1) | (1 << 2)),
400 static struct omap_lcd_config h3_lcd_config __initdata = {
401 .ctrl_name = "internal",
404 static struct omap_board_config_kernel h3_config[] = {
405 { OMAP_TAG_USB, &h3_usb_config },
406 { OMAP_TAG_MMC, &h3_mmc_config },
407 { OMAP_TAG_UART, &h3_uart_config },
408 { OMAP_TAG_LCD, &h3_lcd_config },
411 #define H3_NAND_RB_GPIO_PIN 10
413 static int nand_dev_ready(struct nand_platform_data *data)
415 return omap_get_gpio_datain(H3_NAND_RB_GPIO_PIN);
418 static void __init h3_init(void)
420 /* Here we assume the NOR boot config: NOR on CS3 (possibly swapped
421 * to address 0 by a dip switch), NAND on CS2B. The NAND driver will
422 * notice whether a NAND chip is enabled at probe time.
424 * H3 support NAND-boot, with a dip switch to put NOR on CS2B and NAND
425 * (which on H2 may be 16bit) on CS3. Try detecting that in code here,
426 * to avoid probing every possible flash configuration...
428 nor_resource.end = nor_resource.start = omap_cs3_phys();
429 nor_resource.end += SZ_32M - 1;
431 nand_resource.end = nand_resource.start = OMAP_CS2B_PHYS;
432 nand_resource.end += SZ_4K - 1;
433 if (!(omap_request_gpio(H3_NAND_RB_GPIO_PIN)))
434 nand_data.dev_ready = nand_dev_ready;
436 /* GPIO10 Func_MUX_CTRL reg bit 29:27, Configure V2 to mode1 as GPIO */
437 /* GPIO10 pullup/down register, Enable pullup on GPIO10 */
438 omap_cfg_reg(V2_1710_GPIO10);
440 platform_add_devices(devices, ARRAY_SIZE(devices));
441 omap_board_config = h3_config;
442 omap_board_config_size = ARRAY_SIZE(h3_config);
446 static void __init h3_init_smc91x(void)
448 omap_cfg_reg(W15_1710_GPIO40);
449 if (omap_request_gpio(40) < 0) {
450 printk("Error requesting gpio 40 for smc91x irq\n");
455 void h3_init_irq(void)
457 omap1_init_common_hw();
463 static void __init h3_map_io(void)
465 omap1_map_common_io();
468 MACHINE_START(OMAP_H3, "TI OMAP1710 H3 board")
469 /* Maintainer: Texas Instruments, Inc. */
470 .phys_io = 0xfff00000,
471 .io_pg_offst = ((0xfef00000) >> 18) & 0xfffc,
472 .boot_params = 0x10000100,
474 .init_irq = h3_init_irq,
475 .init_machine = h3_init,
476 .timer = &omap_timer,