2 * linux/arch/arm/mach-omap1/board-fsample.c
4 * Modified from board-perseus2.c
6 * Original OMAP730 support by Jean Pihet <j-pihet@ti.com>
7 * Updated for 2.6 by Kevin Hilman <kjh@hilman.org>
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.
13 #include <linux/gpio.h>
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/mtd/physmap.h>
22 #include <linux/input.h>
23 #include <linux/smc91x.h>
25 #include <mach/hardware.h>
26 #include <asm/mach-types.h>
27 #include <asm/mach/arch.h>
28 #include <asm/mach/map.h>
32 #include <plat/flash.h>
33 #include <plat/fpga.h>
34 #include <plat/keypad.h>
35 #include <plat/common.h>
36 #include <plat/board.h>
38 /* fsample is pretty close to p2-sample */
40 #define fsample_cpld_read(reg) __raw_readb(reg)
41 #define fsample_cpld_write(val, reg) __raw_writeb(val, reg)
43 #define FSAMPLE_CPLD_BASE 0xE8100000
44 #define FSAMPLE_CPLD_SIZE SZ_4K
45 #define FSAMPLE_CPLD_START 0x05080000
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)
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
65 #define fsample_cpld_set(bit) \
66 fsample_cpld_write((((bit) & 15) << 4) | 0x0f, FSAMPLE_CPLD_SET_CLR)
68 #define fsample_cpld_clear(bit) \
69 fsample_cpld_write(0xf0 | ((bit) & 15), FSAMPLE_CPLD_SET_CLR)
71 static const unsigned int fsample_keymap
[] = {
80 KEY(3, 1, KEY_VOLUMEDOWN
),
81 KEY(4, 1, KEY_VOLUMEUP
),
82 KEY(5, 1, KEY_RECORD
),
93 KEY(5, 3, KEY_KPSLASH
),
98 KEY(4, 4, KEY_KPASTERISK
),
102 static struct smc91x_platdata smc91x_info
= {
103 .flags
= SMC91X_USE_16BIT
| SMC91X_NOWAIT
,
104 .leda
= RPC_LED_100_10
,
105 .ledb
= RPC_LED_TX_RX
,
108 static struct resource smc91x_resources
[] = {
110 .start
= H2P2_DBG_FPGA_ETHR_START
, /* Physical */
111 .end
= H2P2_DBG_FPGA_ETHR_START
+ 0xf,
112 .flags
= IORESOURCE_MEM
,
115 .start
= INT_7XX_MPU_EXT_NIRQ
,
117 .flags
= IORESOURCE_IRQ
| IORESOURCE_IRQ_HIGHEDGE
,
121 static void __init
fsample_init_smc91x(void)
123 fpga_write(1, H2P2_DBG_FPGA_LAN_RESET
);
125 fpga_write(fpga_read(H2P2_DBG_FPGA_LAN_RESET
) & ~1,
126 H2P2_DBG_FPGA_LAN_RESET
);
130 static struct mtd_partition nor_partitions
[] = {
131 /* bootloader (U-Boot, etc) in first sector */
133 .name
= "bootloader",
136 .mask_flags
= MTD_WRITEABLE
, /* force read-only */
138 /* bootloader params in the next sector */
141 .offset
= MTDPART_OFS_APPEND
,
148 .offset
= MTDPART_OFS_APPEND
,
152 /* rest of flash is a file system */
155 .offset
= MTDPART_OFS_APPEND
,
156 .size
= MTDPART_SIZ_FULL
,
161 static struct physmap_flash_data nor_data
= {
163 .set_vpp
= omap1_set_vpp
,
164 .parts
= nor_partitions
,
165 .nr_parts
= ARRAY_SIZE(nor_partitions
),
168 static struct resource nor_resource
= {
169 .start
= OMAP_CS0_PHYS
,
170 .end
= OMAP_CS0_PHYS
+ SZ_32M
- 1,
171 .flags
= IORESOURCE_MEM
,
174 static struct platform_device nor_device
= {
175 .name
= "physmap-flash",
178 .platform_data
= &nor_data
,
181 .resource
= &nor_resource
,
184 static void nand_cmd_ctl(struct mtd_info
*mtd
, int cmd
, unsigned int ctrl
)
186 struct nand_chip
*this = mtd
->priv
;
189 if (cmd
== NAND_CMD_NONE
)
192 mask
= (ctrl
& NAND_CLE
) ? 0x02 : 0;
195 writeb(cmd
, (unsigned long)this->IO_ADDR_W
| mask
);
198 #define FSAMPLE_NAND_RB_GPIO_PIN 62
200 static int nand_dev_ready(struct mtd_info
*mtd
)
202 return gpio_get_value(FSAMPLE_NAND_RB_GPIO_PIN
);
205 static const char *part_probes
[] = { "cmdlinepart", NULL
};
207 static struct platform_nand_data nand_data
= {
211 .options
= NAND_SAMSUNG_LP_OPTIONS
,
212 .part_probe_types
= part_probes
,
215 .cmd_ctrl
= nand_cmd_ctl
,
216 .dev_ready
= nand_dev_ready
,
220 static struct resource nand_resource
= {
221 .start
= OMAP_CS3_PHYS
,
222 .end
= OMAP_CS3_PHYS
+ SZ_4K
- 1,
223 .flags
= IORESOURCE_MEM
,
226 static struct platform_device nand_device
= {
230 .platform_data
= &nand_data
,
233 .resource
= &nand_resource
,
236 static struct platform_device smc91x_device
= {
240 .platform_data
= &smc91x_info
,
242 .num_resources
= ARRAY_SIZE(smc91x_resources
),
243 .resource
= smc91x_resources
,
246 static struct resource kp_resources
[] = {
248 .start
= INT_7XX_MPUIO_KEYPAD
,
249 .end
= INT_7XX_MPUIO_KEYPAD
,
250 .flags
= IORESOURCE_IRQ
,
254 static const struct matrix_keymap_data fsample_keymap_data
= {
255 .keymap
= fsample_keymap
,
256 .keymap_size
= ARRAY_SIZE(fsample_keymap
),
259 static struct omap_kp_platform_data kp_data
= {
262 .keymap_data
= &fsample_keymap_data
,
266 static struct platform_device kp_device
= {
267 .name
= "omap-keypad",
270 .platform_data
= &kp_data
,
272 .num_resources
= ARRAY_SIZE(kp_resources
),
273 .resource
= kp_resources
,
276 static struct platform_device lcd_device
= {
281 static struct platform_device
*devices
[] __initdata
= {
289 static struct omap_lcd_config fsample_lcd_config
= {
290 .ctrl_name
= "internal",
293 static struct omap_board_config_kernel fsample_config
[] __initdata
= {
294 { OMAP_TAG_LCD
, &fsample_lcd_config
},
297 static void __init
omap_fsample_init(void)
299 fsample_init_smc91x();
301 if (gpio_request(FSAMPLE_NAND_RB_GPIO_PIN
, "NAND ready") < 0)
303 gpio_direction_input(FSAMPLE_NAND_RB_GPIO_PIN
);
305 omap_cfg_reg(L3_1610_FLASH_CS2B_OE
);
306 omap_cfg_reg(M8_1610_FLASH_CS2B_WE
);
308 /* Mux pins for keypad */
309 omap_cfg_reg(E2_7XX_KBR0
);
310 omap_cfg_reg(J7_7XX_KBR1
);
311 omap_cfg_reg(E1_7XX_KBR2
);
312 omap_cfg_reg(F3_7XX_KBR3
);
313 omap_cfg_reg(D2_7XX_KBR4
);
314 omap_cfg_reg(C2_7XX_KBC0
);
315 omap_cfg_reg(D3_7XX_KBC1
);
316 omap_cfg_reg(E4_7XX_KBC2
);
317 omap_cfg_reg(F4_7XX_KBC3
);
318 omap_cfg_reg(E3_7XX_KBC4
);
320 platform_add_devices(devices
, ARRAY_SIZE(devices
));
322 omap_board_config
= fsample_config
;
323 omap_board_config_size
= ARRAY_SIZE(fsample_config
);
325 omap_register_i2c_bus(1, 100, NULL
, 0);
328 static void __init
omap_fsample_init_irq(void)
330 omap1_init_common_hw();
334 /* Only FPGA needs to be mapped here. All others are done with ioremap */
335 static struct map_desc omap_fsample_io_desc
[] __initdata
= {
337 .virtual = H2P2_DBG_FPGA_BASE
,
338 .pfn
= __phys_to_pfn(H2P2_DBG_FPGA_START
),
339 .length
= H2P2_DBG_FPGA_SIZE
,
343 .virtual = FSAMPLE_CPLD_BASE
,
344 .pfn
= __phys_to_pfn(FSAMPLE_CPLD_START
),
345 .length
= FSAMPLE_CPLD_SIZE
,
350 static void __init
omap_fsample_map_io(void)
352 omap1_map_common_io();
353 iotable_init(omap_fsample_io_desc
,
354 ARRAY_SIZE(omap_fsample_io_desc
));
356 /* Early, board-dependent init */
359 * Hold GSM Reset until needed
361 omap_writew(omap_readw(OMAP7XX_DSP_M_CTL
) & ~1, OMAP7XX_DSP_M_CTL
);
364 * UARTs -> done automagically by 8250 driver
368 * CSx timings, GPIO Mux ... setup
371 /* Flash: CS0 timings setup */
372 omap_writel(0x0000fff3, OMAP7XX_FLASH_CFG_0
);
373 omap_writel(0x00000088, OMAP7XX_FLASH_ACFG_0
);
376 * Ethernet support through the debug board
379 omap_writel(0x0000fff3, OMAP7XX_FLASH_CFG_1
);
380 omap_writel(0x00000000, OMAP7XX_FLASH_ACFG_1
);
383 * Configure MPU_EXT_NIRQ IO in IO_CONF9 register,
384 * It is used as the Ethernet controller interrupt
386 omap_writel(omap_readl(OMAP7XX_IO_CONF_9
) & 0x1FFFFFFF, OMAP7XX_IO_CONF_9
);
389 MACHINE_START(OMAP_FSAMPLE
, "OMAP730 F-Sample")
390 /* Maintainer: Brian Swetland <swetland@google.com> */
391 .atag_offset
= 0x100,
392 .map_io
= omap_fsample_map_io
,
393 .reserve
= omap_reserve
,
394 .init_irq
= omap_fsample_init_irq
,
395 .init_machine
= omap_fsample_init
,
396 .timer
= &omap1_timer
,