blob: be90b7d0e10bee11eaa9b70013413b0d1d964637 [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>
Andrew Lunn4fd20572012-08-30 07:39:12 +020013#include <linux/sizes.h>
Saeed Bishara651c74c2008-06-22 22:45:06 +020014#include <linux/platform_device.h>
Nicolas Pitre3c2613d2009-02-22 12:56:33 -050015#include <linux/mtd/partitions.h>
Saeed Bishara651c74c2008-06-22 22:45:06 +020016#include <linux/ata_platform.h>
17#include <linux/mv643xx_eth.h>
18#include <asm/mach-types.h>
19#include <asm/mach/arch.h>
Russell Kinga09e64f2008-08-05 16:14:15 +010020#include <mach/kirkwood.h>
Nicolas Pitre8235ee02009-02-14 03:15:55 -050021#include <plat/mvsdio.h>
Saeed Bishara651c74c2008-06-22 22:45:06 +020022#include "common.h"
Nicolas Pitre8235ee02009-02-14 03:15:55 -050023#include "mpp.h"
Saeed Bishara651c74c2008-06-22 22:45:06 +020024
Nicolas Pitre3c2613d2009-02-22 12:56:33 -050025static struct mtd_partition db88f6281_nand_parts[] = {
26 {
27 .name = "u-boot",
28 .offset = 0,
29 .size = SZ_1M
30 }, {
31 .name = "uImage",
32 .offset = MTDPART_OFS_NXTBLK,
33 .size = SZ_4M
34 }, {
35 .name = "root",
36 .offset = MTDPART_OFS_NXTBLK,
37 .size = MTDPART_SIZ_FULL
38 },
39};
40
Saeed Bishara651c74c2008-06-22 22:45:06 +020041static struct mv643xx_eth_platform_data db88f6281_ge00_data = {
Lennert Buytenhekac8406052008-08-26 14:06:47 +020042 .phy_addr = MV643XX_ETH_PHY_ADDR(8),
Saeed Bishara651c74c2008-06-22 22:45:06 +020043};
44
45static struct mv_sata_platform_data db88f6281_sata_data = {
46 .n_ports = 2,
47};
48
Nicolas Pitre8235ee02009-02-14 03:15:55 -050049static struct mvsdio_platform_data db88f6281_mvsdio_data = {
50 .gpio_write_protect = 37,
51 .gpio_card_detect = 38,
52};
53
54static unsigned int db88f6281_mpp_config[] __initdata = {
Saeed Bishara29333cf2010-06-08 14:30:37 +030055 MPP0_NF_IO2,
56 MPP1_NF_IO3,
57 MPP2_NF_IO4,
58 MPP3_NF_IO5,
59 MPP4_NF_IO6,
60 MPP5_NF_IO7,
61 MPP18_NF_IO0,
62 MPP19_NF_IO1,
Nicolas Pitre8235ee02009-02-14 03:15:55 -050063 MPP37_GPIO,
64 MPP38_GPIO,
65 0
66};
67
Saeed Bishara651c74c2008-06-22 22:45:06 +020068static void __init db88f6281_init(void)
69{
70 /*
71 * Basic setup. Needs to be called early.
72 */
73 kirkwood_init();
Nicolas Pitre8235ee02009-02-14 03:15:55 -050074 kirkwood_mpp_conf(db88f6281_mpp_config);
Saeed Bishara651c74c2008-06-22 22:45:06 +020075
Nicolas Pitrefb7b2d32009-06-01 15:36:36 -040076 kirkwood_nand_init(ARRAY_AND_SIZE(db88f6281_nand_parts), 25);
Saeed Bishara651c74c2008-06-22 22:45:06 +020077 kirkwood_ehci_init();
78 kirkwood_ge00_init(&db88f6281_ge00_data);
Saeed Bishara651c74c2008-06-22 22:45:06 +020079 kirkwood_sata_init(&db88f6281_sata_data);
80 kirkwood_uart0_init();
Nicolas Pitre8235ee02009-02-14 03:15:55 -050081 kirkwood_sdio_init(&db88f6281_mvsdio_data);
Saeed Bishara651c74c2008-06-22 22:45:06 +020082}
83
84static int __init db88f6281_pci_init(void)
85{
Saeed Bisharaffd58bd2010-06-08 14:21:34 +030086 if (machine_is_db88f6281_bp()) {
87 u32 dev, rev;
Saeed Bishara651c74c2008-06-22 22:45:06 +020088
Saeed Bisharaffd58bd2010-06-08 14:21:34 +030089 kirkwood_pcie_id(&dev, &rev);
90 if (dev == MV88F6282_DEV_ID)
91 kirkwood_pcie_init(KW_PCIE1 | KW_PCIE0);
92 else
93 kirkwood_pcie_init(KW_PCIE0);
94 }
Saeed Bishara651c74c2008-06-22 22:45:06 +020095 return 0;
96}
97subsys_initcall(db88f6281_pci_init);
98
99MACHINE_START(DB88F6281_BP, "Marvell DB-88F6281-BP Development Board")
100 /* Maintainer: Saeed Bishara <saeed@marvell.com> */
Nicolas Pitre1b7bd282011-07-05 22:38:13 -0400101 .atag_offset = 0x100,
Saeed Bishara651c74c2008-06-22 22:45:06 +0200102 .init_machine = db88f6281_init,
103 .map_io = kirkwood_map_io,
Lennert Buytenhek4ee1f6b2010-10-15 16:50:26 +0200104 .init_early = kirkwood_init_early,
Saeed Bishara651c74c2008-06-22 22:45:06 +0200105 .init_irq = kirkwood_init_irq,
106 .timer = &kirkwood_timer,
Russell Kingcb15dff2011-11-05 10:03:47 +0000107 .restart = kirkwood_restart,
Saeed Bishara651c74c2008-06-22 22:45:06 +0200108MACHINE_END