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.
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>
23 #include <mach/hardware.h>
24 #include <asm/mach-types.h>
25 #include <asm/mach/arch.h>
26 #include <asm/mach/flash.h>
27 #include <asm/mach/map.h>
30 #include <mach/gpio.h>
32 #include <plat/fpga.h>
33 #include <plat/nand.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 int fsample_keymap
[] = {
80 KEY(1,3,KEY_VOLUMEDOWN
),
81 KEY(1,4,KEY_VOLUMEUP
),
98 KEY(4,4,KEY_KPASTERISK
),
103 static struct resource smc91x_resources
[] = {
105 .start
= H2P2_DBG_FPGA_ETHR_START
, /* Physical */
106 .end
= H2P2_DBG_FPGA_ETHR_START
+ 0xf,
107 .flags
= IORESOURCE_MEM
,
110 .start
= INT_7XX_MPU_EXT_NIRQ
,
112 .flags
= IORESOURCE_IRQ
| IORESOURCE_IRQ_HIGHEDGE
,
116 static struct mtd_partition nor_partitions
[] = {
117 /* bootloader (U-Boot, etc) in first sector */
119 .name
= "bootloader",
122 .mask_flags
= MTD_WRITEABLE
, /* force read-only */
124 /* bootloader params in the next sector */
127 .offset
= MTDPART_OFS_APPEND
,
134 .offset
= MTDPART_OFS_APPEND
,
138 /* rest of flash is a file system */
141 .offset
= MTDPART_OFS_APPEND
,
142 .size
= MTDPART_SIZ_FULL
,
147 static struct flash_platform_data nor_data
= {
148 .map_name
= "cfi_probe",
150 .parts
= nor_partitions
,
151 .nr_parts
= ARRAY_SIZE(nor_partitions
),
154 static struct resource nor_resource
= {
155 .start
= OMAP_CS0_PHYS
,
156 .end
= OMAP_CS0_PHYS
+ SZ_32M
- 1,
157 .flags
= IORESOURCE_MEM
,
160 static struct platform_device nor_device
= {
164 .platform_data
= &nor_data
,
167 .resource
= &nor_resource
,
170 static struct omap_nand_platform_data nand_data
= {
171 .options
= NAND_SAMSUNG_LP_OPTIONS
,
174 static struct resource nand_resource
= {
175 .start
= OMAP_CS3_PHYS
,
176 .end
= OMAP_CS3_PHYS
+ SZ_4K
- 1,
177 .flags
= IORESOURCE_MEM
,
180 static struct platform_device nand_device
= {
184 .platform_data
= &nand_data
,
187 .resource
= &nand_resource
,
190 static struct platform_device smc91x_device
= {
193 .num_resources
= ARRAY_SIZE(smc91x_resources
),
194 .resource
= smc91x_resources
,
197 static struct resource kp_resources
[] = {
199 .start
= INT_7XX_MPUIO_KEYPAD
,
200 .end
= INT_7XX_MPUIO_KEYPAD
,
201 .flags
= IORESOURCE_IRQ
,
205 static struct omap_kp_platform_data kp_data
= {
208 .keymap
= fsample_keymap
,
209 .keymapsize
= ARRAY_SIZE(fsample_keymap
),
213 static struct platform_device kp_device
= {
214 .name
= "omap-keypad",
217 .platform_data
= &kp_data
,
219 .num_resources
= ARRAY_SIZE(kp_resources
),
220 .resource
= kp_resources
,
223 static struct platform_device lcd_device
= {
228 static struct platform_device
*devices
[] __initdata
= {
236 #define P2_NAND_RB_GPIO_PIN 62
238 static int nand_dev_ready(struct omap_nand_platform_data
*data
)
240 return gpio_get_value(P2_NAND_RB_GPIO_PIN
);
243 static struct omap_lcd_config fsample_lcd_config __initdata
= {
244 .ctrl_name
= "internal",
247 static struct omap_board_config_kernel fsample_config
[] = {
248 { OMAP_TAG_LCD
, &fsample_lcd_config
},
251 static void __init
omap_fsample_init(void)
253 if (gpio_request(P2_NAND_RB_GPIO_PIN
, "NAND ready") < 0)
255 nand_data
.dev_ready
= nand_dev_ready
;
257 omap_cfg_reg(L3_1610_FLASH_CS2B_OE
);
258 omap_cfg_reg(M8_1610_FLASH_CS2B_WE
);
260 platform_add_devices(devices
, ARRAY_SIZE(devices
));
262 omap_board_config
= fsample_config
;
263 omap_board_config_size
= ARRAY_SIZE(fsample_config
);
265 omap_register_i2c_bus(1, 100, NULL
, 0);
268 static void __init
fsample_init_smc91x(void)
270 fpga_write(1, H2P2_DBG_FPGA_LAN_RESET
);
272 fpga_write(fpga_read(H2P2_DBG_FPGA_LAN_RESET
) & ~1,
273 H2P2_DBG_FPGA_LAN_RESET
);
277 static void __init
omap_fsample_init_irq(void)
279 omap1_init_common_hw();
282 fsample_init_smc91x();
285 /* Only FPGA needs to be mapped here. All others are done with ioremap */
286 static struct map_desc omap_fsample_io_desc
[] __initdata
= {
288 .virtual = H2P2_DBG_FPGA_BASE
,
289 .pfn
= __phys_to_pfn(H2P2_DBG_FPGA_START
),
290 .length
= H2P2_DBG_FPGA_SIZE
,
294 .virtual = FSAMPLE_CPLD_BASE
,
295 .pfn
= __phys_to_pfn(FSAMPLE_CPLD_START
),
296 .length
= FSAMPLE_CPLD_SIZE
,
301 static void __init
omap_fsample_map_io(void)
303 omap1_map_common_io();
304 iotable_init(omap_fsample_io_desc
,
305 ARRAY_SIZE(omap_fsample_io_desc
));
307 /* Early, board-dependent init */
310 * Hold GSM Reset until needed
312 omap_writew(omap_readw(OMAP7XX_DSP_M_CTL
) & ~1, OMAP7XX_DSP_M_CTL
);
315 * UARTs -> done automagically by 8250 driver
319 * CSx timings, GPIO Mux ... setup
322 /* Flash: CS0 timings setup */
323 omap_writel(0x0000fff3, OMAP7XX_FLASH_CFG_0
);
324 omap_writel(0x00000088, OMAP7XX_FLASH_ACFG_0
);
327 * Ethernet support through the debug board
330 omap_writel(0x0000fff3, OMAP7XX_FLASH_CFG_1
);
331 omap_writel(0x00000000, OMAP7XX_FLASH_ACFG_1
);
334 * Configure MPU_EXT_NIRQ IO in IO_CONF9 register,
335 * It is used as the Ethernet controller interrupt
337 omap_writel(omap_readl(OMAP7XX_IO_CONF_9
) & 0x1FFFFFFF, OMAP7XX_IO_CONF_9
);
340 MACHINE_START(OMAP_FSAMPLE
, "OMAP730 F-Sample")
341 /* Maintainer: Brian Swetland <swetland@google.com> */
342 .phys_io
= 0xfff00000,
343 .io_pg_offst
= ((0xfef00000) >> 18) & 0xfffc,
344 .boot_params
= 0x10000100,
345 .map_io
= omap_fsample_map_io
,
346 .init_irq
= omap_fsample_init_irq
,
347 .init_machine
= omap_fsample_init
,
348 .timer
= &omap_timer
,