2 * arch/arm/mach-kirkwood/rd88f6281-setup.c
4 * Marvell RD-88F6281 Reference 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.
11 #include <linux/kernel.h>
12 #include <linux/init.h>
13 #include <linux/platform_device.h>
14 #include <linux/pci.h>
15 #include <linux/irq.h>
16 #include <linux/mtd/physmap.h>
17 #include <linux/mtd/nand.h>
18 #include <linux/timer.h>
19 #include <linux/ata_platform.h>
20 #include <linux/mv643xx_eth.h>
21 #include <linux/ethtool.h>
23 #include <asm/mach-types.h>
24 #include <asm/mach/arch.h>
25 #include <asm/mach/pci.h>
26 #include <mach/kirkwood.h>
27 #include <plat/orion_nand.h>
30 static struct mtd_partition rd88f6281_nand_parts
[] = {
37 .offset
= MTDPART_OFS_NXTBLK
,
41 .offset
= MTDPART_OFS_NXTBLK
,
42 .size
= MTDPART_SIZ_FULL
46 static struct resource rd88f6281_nand_resource
= {
47 .flags
= IORESOURCE_MEM
,
48 .start
= KIRKWOOD_NAND_MEM_PHYS_BASE
,
49 .end
= KIRKWOOD_NAND_MEM_PHYS_BASE
+
50 KIRKWOOD_NAND_MEM_SIZE
- 1,
53 static struct orion_nand_data rd88f6281_nand_data
= {
54 .parts
= rd88f6281_nand_parts
,
55 .nr_parts
= ARRAY_SIZE(rd88f6281_nand_parts
),
62 static struct platform_device rd88f6281_nand_flash
= {
66 .platform_data
= &rd88f6281_nand_data
,
68 .resource
= &rd88f6281_nand_resource
,
72 static struct mv643xx_eth_platform_data rd88f6281_ge00_data
= {
73 .phy_addr
= MV643XX_ETH_PHY_NONE
,
75 .duplex
= DUPLEX_FULL
,
78 static struct dsa_platform_data rd88f6281_switch_data
= {
79 .port_names
[0] = "lan1",
80 .port_names
[1] = "lan2",
81 .port_names
[2] = "lan3",
82 .port_names
[3] = "lan4",
83 .port_names
[5] = "cpu",
86 static struct mv643xx_eth_platform_data rd88f6281_ge01_data
= {
87 .phy_addr
= MV643XX_ETH_PHY_ADDR(11),
90 static struct mv_sata_platform_data rd88f6281_sata_data
= {
94 static void __init
rd88f6281_init(void)
99 * Basic setup. Needs to be called early.
103 kirkwood_ehci_init();
105 kirkwood_ge00_init(&rd88f6281_ge00_data
);
106 kirkwood_pcie_id(&dev
, &rev
);
107 if (rev
== MV88F6281_REV_A0
) {
108 rd88f6281_switch_data
.sw_addr
= 10;
109 kirkwood_ge01_init(&rd88f6281_ge01_data
);
111 rd88f6281_switch_data
.port_names
[4] = "wan";
113 kirkwood_ge00_switch_init(&rd88f6281_switch_data
, NO_IRQ
);
116 kirkwood_sata_init(&rd88f6281_sata_data
);
117 kirkwood_uart0_init();
119 platform_device_register(&rd88f6281_nand_flash
);
122 static int __init
rd88f6281_pci_init(void)
124 if (machine_is_rd88f6281())
125 kirkwood_pcie_init();
129 subsys_initcall(rd88f6281_pci_init
);
131 MACHINE_START(RD88F6281
, "Marvell RD-88F6281 Reference Board")
132 /* Maintainer: Saeed Bishara <saeed@marvell.com> */
133 .phys_io
= KIRKWOOD_REGS_PHYS_BASE
,
134 .io_pg_offst
= ((KIRKWOOD_REGS_VIRT_BASE
) >> 18) & 0xfffc,
135 .boot_params
= 0x00000100,
136 .init_machine
= rd88f6281_init
,
137 .map_io
= kirkwood_map_io
,
138 .init_irq
= kirkwood_init_irq
,
139 .timer
= &kirkwood_timer
,