blob: d08904680245f470461436bfee4e248e11572114 [file] [log] [blame]
Saeed Bishara651c74c2008-06-22 22:45:06 +02001/*
2 * arch/arm/mach-kirkwood/rd88f6281-setup.c
3 *
4 * Marvell RD-88F6281 Reference 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>
Saeed Bishara651c74c2008-06-22 22:45:06 +020014#include <linux/irq.h>
Saeed Bishara651c74c2008-06-22 22:45:06 +020015#include <linux/mtd/nand.h>
Nicolas Pitre249cbfa2009-02-26 21:35:59 -050016#include <linux/mtd/partitions.h>
Saeed Bishara651c74c2008-06-22 22:45:06 +020017#include <linux/ata_platform.h>
18#include <linux/mv643xx_eth.h>
Lennert Buytenhek81600eea92008-07-14 14:29:40 +020019#include <linux/ethtool.h>
Lennert Buytenhekdcf1cec2008-09-25 16:23:48 +020020#include <net/dsa.h>
Saeed Bishara651c74c2008-06-22 22:45:06 +020021#include <asm/mach-types.h>
22#include <asm/mach/arch.h>
Russell Kinga09e64f2008-08-05 16:14:15 +010023#include <mach/kirkwood.h>
Nicolas Pitre8235ee02009-02-14 03:15:55 -050024#include <plat/mvsdio.h>
Lennert Buytenhek6f088f12008-08-09 13:44:58 +020025#include <plat/orion_nand.h>
Saeed Bishara651c74c2008-06-22 22:45:06 +020026#include "common.h"
Nicolas Pitre8235ee02009-02-14 03:15:55 -050027#include "mpp.h"
Saeed Bishara651c74c2008-06-22 22:45:06 +020028
29static struct mtd_partition rd88f6281_nand_parts[] = {
30 {
31 .name = "u-boot",
32 .offset = 0,
33 .size = SZ_1M
34 }, {
35 .name = "uImage",
36 .offset = MTDPART_OFS_NXTBLK,
37 .size = SZ_2M
38 }, {
39 .name = "root",
40 .offset = MTDPART_OFS_NXTBLK,
41 .size = MTDPART_SIZ_FULL
42 },
43};
44
45static struct resource rd88f6281_nand_resource = {
46 .flags = IORESOURCE_MEM,
47 .start = KIRKWOOD_NAND_MEM_PHYS_BASE,
48 .end = KIRKWOOD_NAND_MEM_PHYS_BASE +
49 KIRKWOOD_NAND_MEM_SIZE - 1,
50};
51
52static struct orion_nand_data rd88f6281_nand_data = {
53 .parts = rd88f6281_nand_parts,
54 .nr_parts = ARRAY_SIZE(rd88f6281_nand_parts),
55 .cle = 0,
56 .ale = 1,
57 .width = 8,
Saeed Bishara5b235382008-06-05 13:19:30 +020058 .chip_delay = 25,
Saeed Bishara651c74c2008-06-22 22:45:06 +020059};
60
61static struct platform_device rd88f6281_nand_flash = {
62 .name = "orion_nand",
63 .id = -1,
64 .dev = {
65 .platform_data = &rd88f6281_nand_data,
66 },
67 .resource = &rd88f6281_nand_resource,
68 .num_resources = 1,
69};
70
71static struct mv643xx_eth_platform_data rd88f6281_ge00_data = {
Lennert Buytenhekac840602008-08-26 14:06:47 +020072 .phy_addr = MV643XX_ETH_PHY_NONE,
Lennert Buytenhek81600eea92008-07-14 14:29:40 +020073 .speed = SPEED_1000,
74 .duplex = DUPLEX_FULL,
Saeed Bishara651c74c2008-06-22 22:45:06 +020075};
76
Lennert Buytenhekdcf1cec2008-09-25 16:23:48 +020077static struct dsa_platform_data rd88f6281_switch_data = {
78 .port_names[0] = "lan1",
79 .port_names[1] = "lan2",
80 .port_names[2] = "lan3",
81 .port_names[3] = "lan4",
Lennert Buytenhekdcf1cec2008-09-25 16:23:48 +020082 .port_names[5] = "cpu",
83};
84
Ronen Shitrit37787e42008-10-19 23:19:07 +020085static struct mv643xx_eth_platform_data rd88f6281_ge01_data = {
86 .phy_addr = MV643XX_ETH_PHY_ADDR(11),
87};
88
Saeed Bishara651c74c2008-06-22 22:45:06 +020089static struct mv_sata_platform_data rd88f6281_sata_data = {
90 .n_ports = 2,
91};
92
Nicolas Pitre8235ee02009-02-14 03:15:55 -050093static struct mvsdio_platform_data rd88f6281_mvsdio_data = {
94 .gpio_card_detect = 28,
95};
96
97static unsigned int rd88f6281_mpp_config[] __initdata = {
98 MPP28_GPIO,
99 0
100};
101
Saeed Bishara651c74c2008-06-22 22:45:06 +0200102static void __init rd88f6281_init(void)
103{
Ronen Shitrit37787e42008-10-19 23:19:07 +0200104 u32 dev, rev;
105
Saeed Bishara651c74c2008-06-22 22:45:06 +0200106 /*
107 * Basic setup. Needs to be called early.
108 */
109 kirkwood_init();
Nicolas Pitre8235ee02009-02-14 03:15:55 -0500110 kirkwood_mpp_conf(rd88f6281_mpp_config);
Saeed Bishara651c74c2008-06-22 22:45:06 +0200111
112 kirkwood_ehci_init();
Ronen Shitrit37787e42008-10-19 23:19:07 +0200113
Saeed Bishara651c74c2008-06-22 22:45:06 +0200114 kirkwood_ge00_init(&rd88f6281_ge00_data);
Ronen Shitrit37787e42008-10-19 23:19:07 +0200115 kirkwood_pcie_id(&dev, &rev);
116 if (rev == MV88F6281_REV_A0) {
117 rd88f6281_switch_data.sw_addr = 10;
118 kirkwood_ge01_init(&rd88f6281_ge01_data);
119 } else {
120 rd88f6281_switch_data.port_names[4] = "wan";
121 }
Lennert Buytenhekdcf1cec2008-09-25 16:23:48 +0200122 kirkwood_ge00_switch_init(&rd88f6281_switch_data, NO_IRQ);
Ronen Shitrit37787e42008-10-19 23:19:07 +0200123
Saeed Bishara651c74c2008-06-22 22:45:06 +0200124 kirkwood_rtc_init();
125 kirkwood_sata_init(&rd88f6281_sata_data);
Nicolas Pitre8235ee02009-02-14 03:15:55 -0500126 kirkwood_sdio_init(&rd88f6281_mvsdio_data);
Saeed Bishara651c74c2008-06-22 22:45:06 +0200127 kirkwood_uart0_init();
Lennert Buytenhek12f48152009-02-10 02:11:43 +0100128 kirkwood_xor0_init();
129 kirkwood_xor1_init();
Saeed Bishara651c74c2008-06-22 22:45:06 +0200130
131 platform_device_register(&rd88f6281_nand_flash);
132}
133
134static int __init rd88f6281_pci_init(void)
135{
136 if (machine_is_rd88f6281())
137 kirkwood_pcie_init();
138
139 return 0;
140}
141subsys_initcall(rd88f6281_pci_init);
142
143MACHINE_START(RD88F6281, "Marvell RD-88F6281 Reference Board")
144 /* Maintainer: Saeed Bishara <saeed@marvell.com> */
145 .phys_io = KIRKWOOD_REGS_PHYS_BASE,
146 .io_pg_offst = ((KIRKWOOD_REGS_VIRT_BASE) >> 18) & 0xfffc,
147 .boot_params = 0x00000100,
148 .init_machine = rd88f6281_init,
149 .map_io = kirkwood_map_io,
150 .init_irq = kirkwood_init_irq,
151 .timer = &kirkwood_timer,
152MACHINE_END