[ARM] Kirkwood: register internal devices in a common place
[deliverable/linux.git] / arch / arm / mach-kirkwood / rd88f6192-nas-setup.c
CommitLineData
651c74c7
SB
1/*
2 * arch/arm/mach-kirkwood/rd88f6192-nas-setup.c
3 *
4 * Marvell RD-88F6192-NAS Reference 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>
651c74c7 14#include <linux/mtd/nand.h>
249cbfa3 15#include <linux/mtd/partitions.h>
651c74c7
SB
16#include <linux/ata_platform.h>
17#include <linux/mv643xx_eth.h>
18365d18
LB
18#include <linux/spi/flash.h>
19#include <linux/spi/spi.h>
20#include <linux/spi/orion_spi.h>
651c74c7
SB
21#include <asm/mach-types.h>
22#include <asm/mach/arch.h>
a09e64fb 23#include <mach/kirkwood.h>
651c74c7
SB
24#include "common.h"
25
26#define RD88F6192_GPIO_USB_VBUS 10
27
28static struct mv643xx_eth_platform_data rd88f6192_ge00_data = {
ac840605 29 .phy_addr = MV643XX_ETH_PHY_ADDR(8),
651c74c7
SB
30};
31
32static struct mv_sata_platform_data rd88f6192_sata_data = {
33 .n_ports = 2,
34};
35
18365d18
LB
36static const struct flash_platform_data rd88F6192_spi_slave_data = {
37 .type = "m25p128",
38};
39
40static struct spi_board_info __initdata rd88F6192_spi_slave_info[] = {
41 {
42 .modalias = "m25p80",
43 .platform_data = &rd88F6192_spi_slave_data,
44 .irq = -1,
45 .max_speed_hz = 20000000,
46 .bus_num = 0,
47 .chip_select = 0,
48 },
49};
50
651c74c7
SB
51static void __init rd88f6192_init(void)
52{
53 /*
54 * Basic setup. Needs to be called early.
55 */
56 kirkwood_init();
57
58 kirkwood_ehci_init();
59 kirkwood_ge00_init(&rd88f6192_ge00_data);
651c74c7 60 kirkwood_sata_init(&rd88f6192_sata_data);
18365d18
LB
61 spi_register_board_info(rd88F6192_spi_slave_info,
62 ARRAY_SIZE(rd88F6192_spi_slave_info));
63 kirkwood_spi_init();
651c74c7
SB
64 kirkwood_uart0_init();
65}
66
67static int __init rd88f6192_pci_init(void)
68{
69 if (machine_is_rd88f6192_nas())
70 kirkwood_pcie_init();
71
72 return 0;
73}
74subsys_initcall(rd88f6192_pci_init);
75
76MACHINE_START(RD88F6192_NAS, "Marvell RD-88F6192-NAS Development Board")
77 /* Maintainer: Saeed Bishara <saeed@marvell.com> */
78 .phys_io = KIRKWOOD_REGS_PHYS_BASE,
79 .io_pg_offst = ((KIRKWOOD_REGS_VIRT_BASE) >> 18) & 0xfffc,
80 .boot_params = 0x00000100,
81 .init_machine = rd88f6192_init,
82 .map_io = kirkwood_map_io,
83 .init_irq = kirkwood_init_irq,
84 .timer = &kirkwood_timer,
85MACHINE_END
This page took 0.13503 seconds and 5 git commands to generate.