Input: appletouch - fix integer overflow issue
[linux-2.6-xlnx.git] / arch / arm / mach-kirkwood / openrd_base-setup.c
blob77617c72229957e1bc37d8abecb147097326ccdd
1 /*
2 * arch/arm/mach-kirkwood/openrd_base-setup.c
4 * Marvell OpenRD Base Board Setup
6 * This file is licensed under the terms of the GNU General Public
7 * License version 2. This program is licensed "as is" without any
8 * warranty of any kind, whether express or implied.
9 */
11 #include <linux/kernel.h>
12 #include <linux/init.h>
13 #include <linux/platform_device.h>
14 #include <linux/mtd/partitions.h>
15 #include <linux/ata_platform.h>
16 #include <linux/mv643xx_eth.h>
17 #include <asm/mach-types.h>
18 #include <asm/mach/arch.h>
19 #include <mach/kirkwood.h>
20 #include <plat/mvsdio.h>
21 #include "common.h"
22 #include "mpp.h"
24 static struct mtd_partition openrd_base_nand_parts[] = {
26 .name = "u-boot",
27 .offset = 0,
28 .size = SZ_1M
29 }, {
30 .name = "uImage",
31 .offset = MTDPART_OFS_NXTBLK,
32 .size = SZ_4M
33 }, {
34 .name = "root",
35 .offset = MTDPART_OFS_NXTBLK,
36 .size = MTDPART_SIZ_FULL
40 static struct mv643xx_eth_platform_data openrd_base_ge00_data = {
41 .phy_addr = MV643XX_ETH_PHY_ADDR(8),
44 static struct mv_sata_platform_data openrd_base_sata_data = {
45 .n_ports = 2,
48 static struct mvsdio_platform_data openrd_base_mvsdio_data = {
49 .gpio_card_detect = 29, /* MPP29 used as SD card detect */
52 static unsigned int openrd_base_mpp_config[] __initdata = {
53 MPP29_GPIO,
57 static void __init openrd_base_init(void)
60 * Basic setup. Needs to be called early.
62 kirkwood_init();
63 kirkwood_mpp_conf(openrd_base_mpp_config);
65 kirkwood_uart0_init();
66 kirkwood_nand_init(ARRAY_AND_SIZE(openrd_base_nand_parts), 25);
68 kirkwood_ehci_init();
70 kirkwood_ge00_init(&openrd_base_ge00_data);
71 kirkwood_sata_init(&openrd_base_sata_data);
72 kirkwood_sdio_init(&openrd_base_mvsdio_data);
74 kirkwood_i2c_init();
77 static int __init openrd_base_pci_init(void)
79 if (machine_is_openrd_base())
80 kirkwood_pcie_init();
82 return 0;
84 subsys_initcall(openrd_base_pci_init);
87 MACHINE_START(OPENRD_BASE, "Marvell OpenRD Base Board")
88 /* Maintainer: Dhaval Vasa <dhaval.vasa@einfochips.com> */
89 .phys_io = KIRKWOOD_REGS_PHYS_BASE,
90 .io_pg_offst = ((KIRKWOOD_REGS_VIRT_BASE) >> 18) & 0xfffc,
91 .boot_params = 0x00000100,
92 .init_machine = openrd_base_init,
93 .map_io = kirkwood_map_io,
94 .init_irq = kirkwood_init_irq,
95 .timer = &kirkwood_timer,
96 MACHINE_END