2 * arch/arm/mach-kirkwood/db88f6281-bp-setup.c
4 * Marvell DB-88F6281-BP Development 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/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>
24 static struct mtd_partition db88f6281_nand_parts[] = {
31 .offset = MTDPART_OFS_NXTBLK,
35 .offset = MTDPART_OFS_NXTBLK,
36 .size = MTDPART_SIZ_FULL
40 static struct mv643xx_eth_platform_data db88f6281_ge00_data = {
41 .phy_addr = MV643XX_ETH_PHY_ADDR(8),
44 static struct mv_sata_platform_data db88f6281_sata_data = {
48 static struct mvsdio_platform_data db88f6281_mvsdio_data = {
49 .gpio_write_protect = 37,
50 .gpio_card_detect = 38,
53 static unsigned int db88f6281_mpp_config[] __initdata = {
59 static void __init db88f6281_init(void)
62 * Basic setup. Needs to be called early.
65 kirkwood_mpp_conf(db88f6281_mpp_config);
67 kirkwood_nand_init(ARRAY_AND_SIZE(db88f6281_nand_parts), 25);
69 kirkwood_ge00_init(&db88f6281_ge00_data);
70 kirkwood_sata_init(&db88f6281_sata_data);
71 kirkwood_uart0_init();
72 kirkwood_sdio_init(&db88f6281_mvsdio_data);
75 static int __init db88f6281_pci_init(void)
77 if (machine_is_db88f6281_bp())
82 subsys_initcall(db88f6281_pci_init);
84 MACHINE_START(DB88F6281_BP, "Marvell DB-88F6281-BP Development Board")
85 /* Maintainer: Saeed Bishara <saeed@marvell.com> */
86 .phys_io = KIRKWOOD_REGS_PHYS_BASE,
87 .io_pg_offst = ((KIRKWOOD_REGS_VIRT_BASE) >> 18) & 0xfffc,
88 .boot_params = 0x00000100,
89 .init_machine = db88f6281_init,
90 .map_io = kirkwood_map_io,
91 .init_irq = kirkwood_init_irq,
92 .timer = &kirkwood_timer,