blob: f742a66a7045478a8428c35e8bc65ef65b14e23a [file] [log] [blame]
Saeed Bishara651c74c2008-06-22 22:45:06 +02001/*
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>
Saeed Bishara651c74c2008-06-22 22:45:06 +020014#include <linux/ata_platform.h>
15#include <linux/mv643xx_eth.h>
Saeed Bishara81143d22008-06-05 13:26:28 +020016#include <linux/gpio.h>
Lennert Buytenhek18365d12008-08-09 15:38:18 +020017#include <linux/spi/flash.h>
18#include <linux/spi/spi.h>
Saeed Bishara651c74c2008-06-22 22:45:06 +020019#include <asm/mach-types.h>
20#include <asm/mach/arch.h>
Russell Kinga09e64f2008-08-05 16:14:15 +010021#include <mach/kirkwood.h>
Saeed Bishara651c74c2008-06-22 22:45:06 +020022#include "common.h"
23
24#define RD88F6192_GPIO_USB_VBUS 10
25
26static struct mv643xx_eth_platform_data rd88f6192_ge00_data = {
Lennert Buytenhekac8406052008-08-26 14:06:47 +020027 .phy_addr = MV643XX_ETH_PHY_ADDR(8),
Saeed Bishara651c74c2008-06-22 22:45:06 +020028};
29
30static struct mv_sata_platform_data rd88f6192_sata_data = {
31 .n_ports = 2,
32};
33
Lennert Buytenhek18365d12008-08-09 15:38:18 +020034static const struct flash_platform_data rd88F6192_spi_slave_data = {
35 .type = "m25p128",
36};
37
38static struct spi_board_info __initdata rd88F6192_spi_slave_info[] = {
39 {
40 .modalias = "m25p80",
41 .platform_data = &rd88F6192_spi_slave_data,
42 .irq = -1,
43 .max_speed_hz = 20000000,
44 .bus_num = 0,
45 .chip_select = 0,
46 },
47};
48
Saeed Bishara651c74c2008-06-22 22:45:06 +020049static void __init rd88f6192_init(void)
50{
51 /*
52 * Basic setup. Needs to be called early.
53 */
54 kirkwood_init();
55
Saeed Bishara81143d22008-06-05 13:26:28 +020056 orion_gpio_set_valid(RD88F6192_GPIO_USB_VBUS, 1);
57 if (gpio_request(RD88F6192_GPIO_USB_VBUS, "USB VBUS") != 0 ||
58 gpio_direction_output(RD88F6192_GPIO_USB_VBUS, 1) != 0)
59 pr_err("RD-88F6192-NAS: failed to setup USB VBUS GPIO\n");
60
Saeed Bishara651c74c2008-06-22 22:45:06 +020061 kirkwood_ehci_init();
62 kirkwood_ge00_init(&rd88f6192_ge00_data);
Saeed Bishara651c74c2008-06-22 22:45:06 +020063 kirkwood_sata_init(&rd88f6192_sata_data);
Lennert Buytenhek18365d12008-08-09 15:38:18 +020064 spi_register_board_info(rd88F6192_spi_slave_info,
65 ARRAY_SIZE(rd88F6192_spi_slave_info));
66 kirkwood_spi_init();
Saeed Bishara651c74c2008-06-22 22:45:06 +020067 kirkwood_uart0_init();
Saeed Bishara651c74c2008-06-22 22:45:06 +020068}
69
70static int __init rd88f6192_pci_init(void)
71{
72 if (machine_is_rd88f6192_nas())
Saeed Bisharaffd58bd2010-06-08 14:21:34 +030073 kirkwood_pcie_init(KW_PCIE0);
Saeed Bishara651c74c2008-06-22 22:45:06 +020074
75 return 0;
76}
77subsys_initcall(rd88f6192_pci_init);
78
79MACHINE_START(RD88F6192_NAS, "Marvell RD-88F6192-NAS Development Board")
80 /* Maintainer: Saeed Bishara <saeed@marvell.com> */
Nicolas Pitre1b7bd282011-07-05 22:38:13 -040081 .atag_offset = 0x100,
Saeed Bishara651c74c2008-06-22 22:45:06 +020082 .init_machine = rd88f6192_init,
83 .map_io = kirkwood_map_io,
Lennert Buytenhek4ee1f6b2010-10-15 16:50:26 +020084 .init_early = kirkwood_init_early,
Saeed Bishara651c74c2008-06-22 22:45:06 +020085 .init_irq = kirkwood_init_irq,
86 .timer = &kirkwood_timer,
Russell Kingcb15dff2011-11-05 10:03:47 +000087 .restart = kirkwood_restart,
Saeed Bishara651c74c2008-06-22 22:45:06 +020088MACHINE_END