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/nand.h>
15 #include <linux/mtd/partitions.h>
16 #include <linux/ata_platform.h>
17 #include <linux/mv643xx_eth.h>
18 #include <asm/mach-types.h>
19 #include <asm/mach/arch.h>
20 #include <mach/kirkwood.h>
21 #include <plat/orion_nand.h>
22 #include <plat/mvsdio.h>
26 static struct mtd_partition db88f6281_nand_parts
[] = {
33 .offset
= MTDPART_OFS_NXTBLK
,
37 .offset
= MTDPART_OFS_NXTBLK
,
38 .size
= MTDPART_SIZ_FULL
42 static struct resource db88f6281_nand_resource
= {
43 .flags
= IORESOURCE_MEM
,
44 .start
= KIRKWOOD_NAND_MEM_PHYS_BASE
,
45 .end
= KIRKWOOD_NAND_MEM_PHYS_BASE
+
46 KIRKWOOD_NAND_MEM_SIZE
- 1,
49 static struct orion_nand_data db88f6281_nand_data
= {
50 .parts
= db88f6281_nand_parts
,
51 .nr_parts
= ARRAY_SIZE(db88f6281_nand_parts
),
58 static struct platform_device db88f6281_nand_flash
= {
62 .platform_data
= &db88f6281_nand_data
,
64 .resource
= &db88f6281_nand_resource
,
68 static struct mv643xx_eth_platform_data db88f6281_ge00_data
= {
69 .phy_addr
= MV643XX_ETH_PHY_ADDR(8),
72 static struct mv_sata_platform_data db88f6281_sata_data
= {
76 static struct mvsdio_platform_data db88f6281_mvsdio_data
= {
77 .gpio_write_protect
= 37,
78 .gpio_card_detect
= 38,
81 static unsigned int db88f6281_mpp_config
[] __initdata
= {
87 static void __init
db88f6281_init(void)
90 * Basic setup. Needs to be called early.
93 kirkwood_mpp_conf(db88f6281_mpp_config
);
96 kirkwood_ge00_init(&db88f6281_ge00_data
);
98 kirkwood_sata_init(&db88f6281_sata_data
);
99 kirkwood_uart0_init();
100 kirkwood_sdio_init(&db88f6281_mvsdio_data
);
102 platform_device_register(&db88f6281_nand_flash
);
105 static int __init
db88f6281_pci_init(void)
107 if (machine_is_db88f6281_bp())
108 kirkwood_pcie_init();
112 subsys_initcall(db88f6281_pci_init
);
114 MACHINE_START(DB88F6281_BP
, "Marvell DB-88F6281-BP Development Board")
115 /* Maintainer: Saeed Bishara <saeed@marvell.com> */
116 .phys_io
= KIRKWOOD_REGS_PHYS_BASE
,
117 .io_pg_offst
= ((KIRKWOOD_REGS_VIRT_BASE
) >> 18) & 0xfffc,
118 .boot_params
= 0x00000100,
119 .init_machine
= db88f6281_init
,
120 .map_io
= kirkwood_map_io
,
121 .init_irq
= kirkwood_init_irq
,
122 .timer
= &kirkwood_timer
,