2 * linux/arch/arm/mach-omap1/board-perseus2.c
4 * Modified from board-generic.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/partitions.h>
21 #include <asm/hardware.h>
22 #include <asm/mach-types.h>
23 #include <asm/mach/arch.h>
24 #include <asm/mach/flash.h>
25 #include <asm/mach/map.h>
27 #include <asm/arch/tc.h>
28 #include <asm/arch/gpio.h>
29 #include <asm/arch/mux.h>
30 #include <asm/arch/fpga.h>
31 #include <asm/arch/common.h>
33 static struct resource smc91x_resources[] = {
35 .start = H2P2_DBG_FPGA_ETHR_START, /* Physical */
36 .end = H2P2_DBG_FPGA_ETHR_START + 0xf,
37 .flags = IORESOURCE_MEM,
40 .start = INT_730_MPU_EXT_NIRQ,
42 .flags = IORESOURCE_IRQ,
46 static int __initdata p2_serial_ports[OMAP_MAX_NR_PORTS] = {1, 1, 0};
48 static struct mtd_partition p2_partitions[] = {
49 /* bootloader (U-Boot, etc) in first sector */
54 .mask_flags = MTD_WRITEABLE, /* force read-only */
56 /* bootloader params in the next sector */
59 .offset = MTDPART_OFS_APPEND,
66 .offset = MTDPART_OFS_APPEND,
70 /* rest of flash is a file system */
73 .offset = MTDPART_OFS_APPEND,
74 .size = MTDPART_SIZ_FULL,
79 static struct flash_platform_data p2_flash_data = {
80 .map_name = "cfi_probe",
82 .parts = p2_partitions,
83 .nr_parts = ARRAY_SIZE(p2_partitions),
86 static struct resource p2_flash_resource = {
87 .start = OMAP_CS0_PHYS,
88 .end = OMAP_CS0_PHYS + SZ_32M - 1,
89 .flags = IORESOURCE_MEM,
92 static struct platform_device p2_flash_device = {
96 .platform_data = &p2_flash_data,
99 .resource = &p2_flash_resource,
102 static struct platform_device smc91x_device = {
105 .num_resources = ARRAY_SIZE(smc91x_resources),
106 .resource = smc91x_resources,
109 static struct platform_device *devices[] __initdata = {
114 static void __init omap_perseus2_init(void)
116 (void) platform_add_devices(devices, ARRAY_SIZE(devices));
119 static void __init perseus2_init_smc91x(void)
121 fpga_write(1, H2P2_DBG_FPGA_LAN_RESET);
123 fpga_write(fpga_read(H2P2_DBG_FPGA_LAN_RESET) & ~1,
124 H2P2_DBG_FPGA_LAN_RESET);
128 void omap_perseus2_init_irq(void)
132 perseus2_init_smc91x();
135 /* Only FPGA needs to be mapped here. All others are done with ioremap */
136 static struct map_desc omap_perseus2_io_desc[] __initdata = {
138 .virtual = H2P2_DBG_FPGA_BASE,
139 .pfn = __phys_to_pfn(H2P2_DBG_FPGA_START),
140 .length = H2P2_DBG_FPGA_SIZE,
145 static void __init omap_perseus2_map_io(void)
147 omap_map_common_io();
148 iotable_init(omap_perseus2_io_desc,
149 ARRAY_SIZE(omap_perseus2_io_desc));
151 /* Early, board-dependent init */
154 * Hold GSM Reset until needed
156 omap_writew(omap_readw(OMAP730_DSP_M_CTL) & ~1, OMAP730_DSP_M_CTL);
159 * UARTs -> done automagically by 8250 driver
163 * CSx timings, GPIO Mux ... setup
166 /* Flash: CS0 timings setup */
167 omap_writel(0x0000fff3, OMAP730_FLASH_CFG_0);
168 omap_writel(0x00000088, OMAP730_FLASH_ACFG_0);
171 * Ethernet support trough the debug board
174 omap_writel(0x0000fff3, OMAP730_FLASH_CFG_1);
175 omap_writel(0x00000000, OMAP730_FLASH_ACFG_1);
178 * Configure MPU_EXT_NIRQ IO in IO_CONF9 register,
179 * It is used as the Ethernet controller interrupt
181 omap_writel(omap_readl(OMAP730_IO_CONF_9) & 0x1FFFFFFF, OMAP730_IO_CONF_9);
182 omap_serial_init(p2_serial_ports);
185 MACHINE_START(OMAP_PERSEUS2, "OMAP730 Perseus2")
186 /* Maintainer: Kevin Hilman <kjh@hilman.org> */
187 .phys_ram = 0x10000000,
188 .phys_io = 0xfff00000,
189 .io_pg_offst = ((0xfef00000) >> 18) & 0xfffc,
190 .boot_params = 0x10000100,
191 .map_io = omap_perseus2_map_io,
192 .init_irq = omap_perseus2_init_irq,
193 .init_machine = omap_perseus2_init,
194 .timer = &omap_timer,