2 * arch/arm/mach-mv78x00/rd78x00-masa-setup.c
4 * Marvell RD-78x00-mASA 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/ata_platform.h>
15 #include <linux/mv643xx_eth.h>
16 #include <linux/ethtool.h>
17 #include <mach/mv78xx0.h>
18 #include <asm/mach-types.h>
19 #include <asm/mach/arch.h>
22 static struct mv643xx_eth_platform_data rd78x00_masa_ge00_data
= {
23 .phy_addr
= MV643XX_ETH_PHY_ADDR(8),
26 static struct mv643xx_eth_platform_data rd78x00_masa_ge01_data
= {
27 .phy_addr
= MV643XX_ETH_PHY_ADDR(9),
30 static struct mv643xx_eth_platform_data rd78x00_masa_ge10_data
= {
33 static struct mv643xx_eth_platform_data rd78x00_masa_ge11_data
= {
36 static struct mv_sata_platform_data rd78x00_masa_sata_data
= {
40 static void __init
rd78x00_masa_init(void)
43 * Basic MV78x00 setup. Needs to be called early.
48 * Partition on-chip peripherals between the two CPU cores.
50 if (mv78xx0_core_index() == 0) {
53 mv78xx0_ge00_init(&rd78x00_masa_ge00_data
);
54 mv78xx0_ge10_init(&rd78x00_masa_ge10_data
);
55 mv78xx0_sata_init(&rd78x00_masa_sata_data
);
60 mv78xx0_ge01_init(&rd78x00_masa_ge01_data
);
61 mv78xx0_ge11_init(&rd78x00_masa_ge11_data
);
67 static int __init
rd78x00_pci_init(void)
70 * Assign all PCIe devices to CPU core #0.
72 if (machine_is_rd78x00_masa() && mv78xx0_core_index() == 0)
73 mv78xx0_pcie_init(1, 1);
77 subsys_initcall(rd78x00_pci_init
);
79 MACHINE_START(RD78X00_MASA
, "Marvell RD-78x00-MASA Development Board")
80 /* Maintainer: Lennert Buytenhek <buytenh@marvell.com> */
82 .init_machine
= rd78x00_masa_init
,
83 .map_io
= mv78xx0_map_io
,
84 .init_early
= mv78xx0_init_early
,
85 .init_irq
= mv78xx0_init_irq
,
86 .timer
= &mv78xx0_timer
,
87 .restart
= mv78xx0_restart
,