Saeed Bishara | 651c74c | 2008-06-22 22:45:06 +0200 | [diff] [blame] | 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> |
Saeed Bishara | 651c74c | 2008-06-22 22:45:06 +0200 | [diff] [blame] | 14 | #include <linux/ata_platform.h> |
| 15 | #include <linux/mv643xx_eth.h> |
Lennert Buytenhek | 18365d1 | 2008-08-09 15:38:18 +0200 | [diff] [blame] | 16 | #include <linux/spi/flash.h> |
| 17 | #include <linux/spi/spi.h> |
| 18 | #include <linux/spi/orion_spi.h> |
Saeed Bishara | 651c74c | 2008-06-22 22:45:06 +0200 | [diff] [blame] | 19 | #include <asm/mach-types.h> |
| 20 | #include <asm/mach/arch.h> |
Russell King | a09e64f | 2008-08-05 16:14:15 +0100 | [diff] [blame] | 21 | #include <mach/kirkwood.h> |
Saeed Bishara | 651c74c | 2008-06-22 22:45:06 +0200 | [diff] [blame] | 22 | #include "common.h" |
| 23 | |
| 24 | #define RD88F6192_GPIO_USB_VBUS 10 |
| 25 | |
| 26 | static struct mv643xx_eth_platform_data rd88f6192_ge00_data = { |
Lennert Buytenhek | ac840605 | 2008-08-26 14:06:47 +0200 | [diff] [blame] | 27 | .phy_addr = MV643XX_ETH_PHY_ADDR(8), |
Saeed Bishara | 651c74c | 2008-06-22 22:45:06 +0200 | [diff] [blame] | 28 | }; |
| 29 | |
| 30 | static struct mv_sata_platform_data rd88f6192_sata_data = { |
| 31 | .n_ports = 2, |
| 32 | }; |
| 33 | |
Lennert Buytenhek | 18365d1 | 2008-08-09 15:38:18 +0200 | [diff] [blame] | 34 | static const struct flash_platform_data rd88F6192_spi_slave_data = { |
| 35 | .type = "m25p128", |
| 36 | }; |
| 37 | |
| 38 | static 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 Bishara | 651c74c | 2008-06-22 22:45:06 +0200 | [diff] [blame] | 49 | static void __init rd88f6192_init(void) |
| 50 | { |
| 51 | /* |
| 52 | * Basic setup. Needs to be called early. |
| 53 | */ |
| 54 | kirkwood_init(); |
| 55 | |
| 56 | kirkwood_ehci_init(); |
| 57 | kirkwood_ge00_init(&rd88f6192_ge00_data); |
Saeed Bishara | 651c74c | 2008-06-22 22:45:06 +0200 | [diff] [blame] | 58 | kirkwood_sata_init(&rd88f6192_sata_data); |
Lennert Buytenhek | 18365d1 | 2008-08-09 15:38:18 +0200 | [diff] [blame] | 59 | spi_register_board_info(rd88F6192_spi_slave_info, |
| 60 | ARRAY_SIZE(rd88F6192_spi_slave_info)); |
| 61 | kirkwood_spi_init(); |
Saeed Bishara | 651c74c | 2008-06-22 22:45:06 +0200 | [diff] [blame] | 62 | kirkwood_uart0_init(); |
Saeed Bishara | 651c74c | 2008-06-22 22:45:06 +0200 | [diff] [blame] | 63 | } |
| 64 | |
| 65 | static int __init rd88f6192_pci_init(void) |
| 66 | { |
| 67 | if (machine_is_rd88f6192_nas()) |
| 68 | kirkwood_pcie_init(); |
| 69 | |
| 70 | return 0; |
| 71 | } |
| 72 | subsys_initcall(rd88f6192_pci_init); |
| 73 | |
| 74 | MACHINE_START(RD88F6192_NAS, "Marvell RD-88F6192-NAS Development Board") |
| 75 | /* Maintainer: Saeed Bishara <saeed@marvell.com> */ |
| 76 | .phys_io = KIRKWOOD_REGS_PHYS_BASE, |
| 77 | .io_pg_offst = ((KIRKWOOD_REGS_VIRT_BASE) >> 18) & 0xfffc, |
| 78 | .boot_params = 0x00000100, |
| 79 | .init_machine = rd88f6192_init, |
| 80 | .map_io = kirkwood_map_io, |
| 81 | .init_irq = kirkwood_init_irq, |
| 82 | .timer = &kirkwood_timer, |
| 83 | MACHINE_END |