diff options
Diffstat (limited to 'arch/arm/mach-kirkwood/openrd_base-setup.c')
-rw-r--r-- | arch/arm/mach-kirkwood/openrd_base-setup.c | 84 |
1 files changed, 84 insertions, 0 deletions
diff --git a/arch/arm/mach-kirkwood/openrd_base-setup.c b/arch/arm/mach-kirkwood/openrd_base-setup.c new file mode 100644 index 000000000000..947dfb8cd5b2 --- /dev/null +++ b/arch/arm/mach-kirkwood/openrd_base-setup.c | |||
@@ -0,0 +1,84 @@ | |||
1 | /* | ||
2 | * arch/arm/mach-kirkwood/openrd_base-setup.c | ||
3 | * | ||
4 | * Marvell OpenRD Base Board Setup | ||
5 | * | ||
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 | */ | ||
10 | |||
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" | ||
23 | |||
24 | static struct mtd_partition openrd_base_nand_parts[] = { | ||
25 | { | ||
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 | ||
37 | }, | ||
38 | }; | ||
39 | |||
40 | static struct mv643xx_eth_platform_data openrd_base_ge00_data = { | ||
41 | .phy_addr = MV643XX_ETH_PHY_ADDR(8), | ||
42 | }; | ||
43 | |||
44 | static struct mv_sata_platform_data openrd_base_sata_data = { | ||
45 | .n_ports = 2, | ||
46 | }; | ||
47 | |||
48 | static struct mvsdio_platform_data openrd_base_mvsdio_data = { | ||
49 | .gpio_card_detect = 29, /* MPP29 used as SD card detect */ | ||
50 | }; | ||
51 | |||
52 | static unsigned int openrd_base_mpp_config[] __initdata = { | ||
53 | MPP29_GPIO, | ||
54 | 0 | ||
55 | }; | ||
56 | |||
57 | static void __init openrd_base_init(void) | ||
58 | { | ||
59 | /* | ||
60 | * Basic setup. Needs to be called early. | ||
61 | */ | ||
62 | kirkwood_init(); | ||
63 | kirkwood_mpp_conf(openrd_base_mpp_config); | ||
64 | |||
65 | kirkwood_uart0_init(); | ||
66 | kirkwood_nand_init(ARRAY_AND_SIZE(openrd_base_nand_parts), 25); | ||
67 | |||
68 | kirkwood_ehci_init(); | ||
69 | |||
70 | kirkwood_ge00_init(&openrd_base_ge00_data); | ||
71 | kirkwood_sata_init(&openrd_base_sata_data); | ||
72 | kirkwood_sdio_init(&openrd_base_mvsdio_data); | ||
73 | } | ||
74 | |||
75 | MACHINE_START(OPENRD_BASE, "Marvell OpenRD Base Board") | ||
76 | /* Maintainer: Dhaval Vasa <dhaval.vasa@einfochips.com> */ | ||
77 | .phys_io = KIRKWOOD_REGS_PHYS_BASE, | ||
78 | .io_pg_offst = ((KIRKWOOD_REGS_VIRT_BASE) >> 18) & 0xfffc, | ||
79 | .boot_params = 0x00000100, | ||
80 | .init_machine = openrd_base_init, | ||
81 | .map_io = kirkwood_map_io, | ||
82 | .init_irq = kirkwood_init_irq, | ||
83 | .timer = &kirkwood_timer, | ||
84 | MACHINE_END | ||