Nicolas Pitre | 6b5cdf0 | 2008-06-27 18:56:22 -0400 | [diff] [blame] | 1 | /* |
| 2 | * arch/arm/mach-orion5x/rd88f5181l-fxo-setup.c |
| 3 | * |
| 4 | * Marvell Orion-VoIP FXO Reference Design 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 | */ |
Russell King | 2f8163b | 2011-07-26 10:53:52 +0100 | [diff] [blame] | 10 | #include <linux/gpio.h> |
Nicolas Pitre | 6b5cdf0 | 2008-06-27 18:56:22 -0400 | [diff] [blame] | 11 | #include <linux/kernel.h> |
| 12 | #include <linux/init.h> |
| 13 | #include <linux/platform_device.h> |
| 14 | #include <linux/pci.h> |
| 15 | #include <linux/irq.h> |
| 16 | #include <linux/mtd/physmap.h> |
| 17 | #include <linux/mv643xx_eth.h> |
Lennert Buytenhek | 81600eea9 | 2008-07-14 14:29:40 +0200 | [diff] [blame] | 18 | #include <linux/ethtool.h> |
Lennert Buytenhek | dcf1cec | 2008-09-25 16:23:48 +0200 | [diff] [blame] | 19 | #include <net/dsa.h> |
Nicolas Pitre | 6b5cdf0 | 2008-06-27 18:56:22 -0400 | [diff] [blame] | 20 | #include <asm/mach-types.h> |
Nicolas Pitre | 6b5cdf0 | 2008-06-27 18:56:22 -0400 | [diff] [blame] | 21 | #include <asm/mach/arch.h> |
| 22 | #include <asm/mach/pci.h> |
Russell King | a09e64f | 2008-08-05 16:14:15 +0100 | [diff] [blame] | 23 | #include <mach/orion5x.h> |
Nicolas Pitre | 6b5cdf0 | 2008-06-27 18:56:22 -0400 | [diff] [blame] | 24 | #include "common.h" |
| 25 | #include "mpp.h" |
| 26 | |
| 27 | /***************************************************************************** |
| 28 | * RD-88F5181L FXO Info |
| 29 | ****************************************************************************/ |
| 30 | /* |
| 31 | * 8M NOR flash Device bus boot chip select |
| 32 | */ |
| 33 | #define RD88F5181L_FXO_NOR_BOOT_BASE 0xff800000 |
| 34 | #define RD88F5181L_FXO_NOR_BOOT_SIZE SZ_8M |
| 35 | |
| 36 | |
| 37 | /***************************************************************************** |
| 38 | * 8M NOR Flash on Device bus Boot chip select |
| 39 | ****************************************************************************/ |
| 40 | static struct physmap_flash_data rd88f5181l_fxo_nor_boot_flash_data = { |
| 41 | .width = 1, |
| 42 | }; |
| 43 | |
| 44 | static struct resource rd88f5181l_fxo_nor_boot_flash_resource = { |
| 45 | .flags = IORESOURCE_MEM, |
| 46 | .start = RD88F5181L_FXO_NOR_BOOT_BASE, |
| 47 | .end = RD88F5181L_FXO_NOR_BOOT_BASE + |
| 48 | RD88F5181L_FXO_NOR_BOOT_SIZE - 1, |
| 49 | }; |
| 50 | |
| 51 | static struct platform_device rd88f5181l_fxo_nor_boot_flash = { |
| 52 | .name = "physmap-flash", |
| 53 | .id = 0, |
| 54 | .dev = { |
| 55 | .platform_data = &rd88f5181l_fxo_nor_boot_flash_data, |
| 56 | }, |
| 57 | .num_resources = 1, |
| 58 | .resource = &rd88f5181l_fxo_nor_boot_flash_resource, |
| 59 | }; |
| 60 | |
| 61 | |
| 62 | /***************************************************************************** |
| 63 | * General Setup |
| 64 | ****************************************************************************/ |
Andrew Lunn | 554cdae | 2011-05-15 13:32:53 +0200 | [diff] [blame] | 65 | static unsigned int rd88f5181l_fxo_mpp_modes[] __initdata = { |
| 66 | MPP0_GPIO, /* LED1 CardBus LED (front panel) */ |
| 67 | MPP1_GPIO, /* PCI_intA */ |
| 68 | MPP2_GPIO, /* Hard Reset / Factory Init*/ |
| 69 | MPP3_GPIO, /* FXS or DAA select */ |
| 70 | MPP4_GPIO, /* LED6 - phone LED (front panel) */ |
| 71 | MPP5_GPIO, /* LED5 - phone LED (front panel) */ |
| 72 | MPP6_PCI_CLK, /* CPU PCI refclk */ |
| 73 | MPP7_PCI_CLK, /* PCI/PCIe refclk */ |
| 74 | MPP8_GPIO, /* CardBus reset */ |
| 75 | MPP9_GPIO, /* GE_RXERR */ |
| 76 | MPP10_GPIO, /* LED2 MiniPCI LED (front panel) */ |
| 77 | MPP11_GPIO, /* Lifeline control */ |
| 78 | MPP12_GIGE, /* GE_TXD[4] */ |
| 79 | MPP13_GIGE, /* GE_TXD[5] */ |
| 80 | MPP14_GIGE, /* GE_TXD[6] */ |
| 81 | MPP15_GIGE, /* GE_TXD[7] */ |
| 82 | MPP16_GIGE, /* GE_RXD[4] */ |
| 83 | MPP17_GIGE, /* GE_RXD[5] */ |
| 84 | MPP18_GIGE, /* GE_RXD[6] */ |
| 85 | MPP19_GIGE, /* GE_RXD[7] */ |
| 86 | 0, |
Nicolas Pitre | 6b5cdf0 | 2008-06-27 18:56:22 -0400 | [diff] [blame] | 87 | }; |
| 88 | |
| 89 | static struct mv643xx_eth_platform_data rd88f5181l_fxo_eth_data = { |
Lennert Buytenhek | ac840605 | 2008-08-26 14:06:47 +0200 | [diff] [blame] | 90 | .phy_addr = MV643XX_ETH_PHY_NONE, |
Lennert Buytenhek | 81600eea9 | 2008-07-14 14:29:40 +0200 | [diff] [blame] | 91 | .speed = SPEED_1000, |
| 92 | .duplex = DUPLEX_FULL, |
Nicolas Pitre | 6b5cdf0 | 2008-06-27 18:56:22 -0400 | [diff] [blame] | 93 | }; |
| 94 | |
Lennert Buytenhek | e84665c | 2009-03-20 09:52:09 +0000 | [diff] [blame] | 95 | static struct dsa_chip_data rd88f5181l_fxo_switch_chip_data = { |
Lennert Buytenhek | dcf1cec | 2008-09-25 16:23:48 +0200 | [diff] [blame] | 96 | .port_names[0] = "lan2", |
| 97 | .port_names[1] = "lan1", |
| 98 | .port_names[2] = "wan", |
| 99 | .port_names[3] = "cpu", |
| 100 | .port_names[5] = "lan4", |
| 101 | .port_names[7] = "lan3", |
| 102 | }; |
| 103 | |
Lennert Buytenhek | e84665c | 2009-03-20 09:52:09 +0000 | [diff] [blame] | 104 | static struct dsa_platform_data rd88f5181l_fxo_switch_plat_data = { |
| 105 | .nr_chips = 1, |
| 106 | .chip = &rd88f5181l_fxo_switch_chip_data, |
| 107 | }; |
| 108 | |
Nicolas Pitre | 6b5cdf0 | 2008-06-27 18:56:22 -0400 | [diff] [blame] | 109 | static void __init rd88f5181l_fxo_init(void) |
| 110 | { |
| 111 | /* |
| 112 | * Setup basic Orion functions. Need to be called early. |
| 113 | */ |
| 114 | orion5x_init(); |
| 115 | |
| 116 | orion5x_mpp_conf(rd88f5181l_fxo_mpp_modes); |
| 117 | |
| 118 | /* |
| 119 | * Configure peripherals. |
| 120 | */ |
| 121 | orion5x_ehci0_init(); |
| 122 | orion5x_eth_init(&rd88f5181l_fxo_eth_data); |
Lennert Buytenhek | e84665c | 2009-03-20 09:52:09 +0000 | [diff] [blame] | 123 | orion5x_eth_switch_init(&rd88f5181l_fxo_switch_plat_data, NO_IRQ); |
Nicolas Pitre | 6b5cdf0 | 2008-06-27 18:56:22 -0400 | [diff] [blame] | 124 | orion5x_uart0_init(); |
| 125 | |
| 126 | orion5x_setup_dev_boot_win(RD88F5181L_FXO_NOR_BOOT_BASE, |
| 127 | RD88F5181L_FXO_NOR_BOOT_SIZE); |
| 128 | platform_device_register(&rd88f5181l_fxo_nor_boot_flash); |
| 129 | } |
| 130 | |
| 131 | static int __init |
Ralf Baechle | d534194 | 2011-06-10 15:30:21 +0100 | [diff] [blame] | 132 | rd88f5181l_fxo_pci_map_irq(const struct pci_dev *dev, u8 slot, u8 pin) |
Nicolas Pitre | 6b5cdf0 | 2008-06-27 18:56:22 -0400 | [diff] [blame] | 133 | { |
| 134 | int irq; |
| 135 | |
| 136 | /* |
| 137 | * Check for devices with hard-wired IRQs. |
| 138 | */ |
| 139 | irq = orion5x_pci_map_irq(dev, slot, pin); |
| 140 | if (irq != -1) |
| 141 | return irq; |
| 142 | |
| 143 | /* |
| 144 | * Mini-PCI / Cardbus slot. |
| 145 | */ |
| 146 | return gpio_to_irq(1); |
| 147 | } |
| 148 | |
| 149 | static struct hw_pci rd88f5181l_fxo_pci __initdata = { |
| 150 | .nr_controllers = 2, |
Nicolas Pitre | 6b5cdf0 | 2008-06-27 18:56:22 -0400 | [diff] [blame] | 151 | .setup = orion5x_pci_sys_setup, |
| 152 | .scan = orion5x_pci_sys_scan_bus, |
| 153 | .map_irq = rd88f5181l_fxo_pci_map_irq, |
| 154 | }; |
| 155 | |
| 156 | static int __init rd88f5181l_fxo_pci_init(void) |
| 157 | { |
| 158 | if (machine_is_rd88f5181l_fxo()) { |
| 159 | orion5x_pci_set_cardbus_mode(); |
| 160 | pci_common_init(&rd88f5181l_fxo_pci); |
| 161 | } |
| 162 | |
| 163 | return 0; |
| 164 | } |
| 165 | subsys_initcall(rd88f5181l_fxo_pci_init); |
| 166 | |
| 167 | MACHINE_START(RD88F5181L_FXO, "Marvell Orion-VoIP FXO Reference Design") |
| 168 | /* Maintainer: Nicolas Pitre <nico@marvell.com> */ |
Nicolas Pitre | 65aa1b1 | 2011-07-05 22:38:15 -0400 | [diff] [blame] | 169 | .atag_offset = 0x100, |
Nicolas Pitre | 6b5cdf0 | 2008-06-27 18:56:22 -0400 | [diff] [blame] | 170 | .init_machine = rd88f5181l_fxo_init, |
| 171 | .map_io = orion5x_map_io, |
Lennert Buytenhek | 4ee1f6b | 2010-10-15 16:50:26 +0200 | [diff] [blame] | 172 | .init_early = orion5x_init_early, |
Nicolas Pitre | 6b5cdf0 | 2008-06-27 18:56:22 -0400 | [diff] [blame] | 173 | .init_irq = orion5x_init_irq, |
| 174 | .timer = &orion5x_timer, |
| 175 | .fixup = tag_fixup_mem32, |
Russell King | 764cbcc2 | 2011-11-05 10:13:41 +0000 | [diff] [blame] | 176 | .restart = orion5x_restart, |
Nicolas Pitre | 6b5cdf0 | 2008-06-27 18:56:22 -0400 | [diff] [blame] | 177 | MACHINE_END |