blob: d933593795985749fce168849dd04b8edf917506 [file] [log] [blame]
Saeed Bishara651c74c2008-06-22 22:45:06 +02001/*
2 * arch/arm/mach-kirkwood/db88f6281-bp-setup.c
3 *
4 * Marvell DB-88F6281-BP Development 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>
Nicolas Pitre3c2613d2009-02-22 12:56:33 -050014#include <linux/mtd/partitions.h>
Saeed Bishara651c74c2008-06-22 22:45:06 +020015#include <linux/ata_platform.h>
16#include <linux/mv643xx_eth.h>
17#include <asm/mach-types.h>
18#include <asm/mach/arch.h>
Russell Kinga09e64f2008-08-05 16:14:15 +010019#include <mach/kirkwood.h>
Nicolas Pitre8235ee02009-02-14 03:15:55 -050020#include <plat/mvsdio.h>
Saeed Bishara651c74c2008-06-22 22:45:06 +020021#include "common.h"
Nicolas Pitre8235ee02009-02-14 03:15:55 -050022#include "mpp.h"
Saeed Bishara651c74c2008-06-22 22:45:06 +020023
Nicolas Pitre3c2613d2009-02-22 12:56:33 -050024static struct mtd_partition db88f6281_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
Saeed Bishara651c74c2008-06-22 22:45:06 +020040static struct mv643xx_eth_platform_data db88f6281_ge00_data = {
Lennert Buytenhekac8406052008-08-26 14:06:47 +020041 .phy_addr = MV643XX_ETH_PHY_ADDR(8),
Saeed Bishara651c74c2008-06-22 22:45:06 +020042};
43
44static struct mv_sata_platform_data db88f6281_sata_data = {
45 .n_ports = 2,
46};
47
Nicolas Pitre8235ee02009-02-14 03:15:55 -050048static struct mvsdio_platform_data db88f6281_mvsdio_data = {
49 .gpio_write_protect = 37,
50 .gpio_card_detect = 38,
51};
52
53static unsigned int db88f6281_mpp_config[] __initdata = {
Saeed Bishara29333cf2010-06-08 14:30:37 +030054 MPP0_NF_IO2,
55 MPP1_NF_IO3,
56 MPP2_NF_IO4,
57 MPP3_NF_IO5,
58 MPP4_NF_IO6,
59 MPP5_NF_IO7,
60 MPP18_NF_IO0,
61 MPP19_NF_IO1,
Nicolas Pitre8235ee02009-02-14 03:15:55 -050062 MPP37_GPIO,
63 MPP38_GPIO,
64 0
65};
66
Saeed Bishara651c74c2008-06-22 22:45:06 +020067static void __init db88f6281_init(void)
68{
69 /*
70 * Basic setup. Needs to be called early.
71 */
72 kirkwood_init();
Nicolas Pitre8235ee02009-02-14 03:15:55 -050073 kirkwood_mpp_conf(db88f6281_mpp_config);
Saeed Bishara651c74c2008-06-22 22:45:06 +020074
Nicolas Pitrefb7b2d32009-06-01 15:36:36 -040075 kirkwood_nand_init(ARRAY_AND_SIZE(db88f6281_nand_parts), 25);
Saeed Bishara651c74c2008-06-22 22:45:06 +020076 kirkwood_ehci_init();
77 kirkwood_ge00_init(&db88f6281_ge00_data);
Saeed Bishara651c74c2008-06-22 22:45:06 +020078 kirkwood_sata_init(&db88f6281_sata_data);
79 kirkwood_uart0_init();
Nicolas Pitre8235ee02009-02-14 03:15:55 -050080 kirkwood_sdio_init(&db88f6281_mvsdio_data);
Saeed Bishara651c74c2008-06-22 22:45:06 +020081}
82
83static int __init db88f6281_pci_init(void)
84{
Saeed Bisharaffd58bd2010-06-08 14:21:34 +030085 if (machine_is_db88f6281_bp()) {
86 u32 dev, rev;
Saeed Bishara651c74c2008-06-22 22:45:06 +020087
Saeed Bisharaffd58bd2010-06-08 14:21:34 +030088 kirkwood_pcie_id(&dev, &rev);
89 if (dev == MV88F6282_DEV_ID)
90 kirkwood_pcie_init(KW_PCIE1 | KW_PCIE0);
91 else
92 kirkwood_pcie_init(KW_PCIE0);
93 }
Saeed Bishara651c74c2008-06-22 22:45:06 +020094 return 0;
95}
96subsys_initcall(db88f6281_pci_init);
97
98MACHINE_START(DB88F6281_BP, "Marvell DB-88F6281-BP Development Board")
99 /* Maintainer: Saeed Bishara <saeed@marvell.com> */
Nicolas Pitre1b7bd282011-07-05 22:38:13 -0400100 .atag_offset = 0x100,
Saeed Bishara651c74c2008-06-22 22:45:06 +0200101 .init_machine = db88f6281_init,
102 .map_io = kirkwood_map_io,
Lennert Buytenhek4ee1f6b2010-10-15 16:50:26 +0200103 .init_early = kirkwood_init_early,
Saeed Bishara651c74c2008-06-22 22:45:06 +0200104 .init_irq = kirkwood_init_irq,
105 .timer = &kirkwood_timer,
Russell Kingcb15dff2011-11-05 10:03:47 +0000106 .restart = kirkwood_restart,
Saeed Bishara651c74c2008-06-22 22:45:06 +0200107MACHINE_END