Path: blob/master/arch/arm/mach-orion5x/rd88f5181l-fxo-setup.c
10817 views
/*1* arch/arm/mach-orion5x/rd88f5181l-fxo-setup.c2*3* Marvell Orion-VoIP FXO Reference Design Setup4*5* This file is licensed under the terms of the GNU General Public6* License version 2. This program is licensed "as is" without any7* warranty of any kind, whether express or implied.8*/910#include <linux/kernel.h>11#include <linux/init.h>12#include <linux/platform_device.h>13#include <linux/pci.h>14#include <linux/irq.h>15#include <linux/mtd/physmap.h>16#include <linux/mv643xx_eth.h>17#include <linux/ethtool.h>18#include <net/dsa.h>19#include <asm/mach-types.h>20#include <asm/gpio.h>21#include <asm/leds.h>22#include <asm/mach/arch.h>23#include <asm/mach/pci.h>24#include <mach/orion5x.h>25#include "common.h"26#include "mpp.h"2728/*****************************************************************************29* RD-88F5181L FXO Info30****************************************************************************/31/*32* 8M NOR flash Device bus boot chip select33*/34#define RD88F5181L_FXO_NOR_BOOT_BASE 0xff80000035#define RD88F5181L_FXO_NOR_BOOT_SIZE SZ_8M363738/*****************************************************************************39* 8M NOR Flash on Device bus Boot chip select40****************************************************************************/41static struct physmap_flash_data rd88f5181l_fxo_nor_boot_flash_data = {42.width = 1,43};4445static struct resource rd88f5181l_fxo_nor_boot_flash_resource = {46.flags = IORESOURCE_MEM,47.start = RD88F5181L_FXO_NOR_BOOT_BASE,48.end = RD88F5181L_FXO_NOR_BOOT_BASE +49RD88F5181L_FXO_NOR_BOOT_SIZE - 1,50};5152static struct platform_device rd88f5181l_fxo_nor_boot_flash = {53.name = "physmap-flash",54.id = 0,55.dev = {56.platform_data = &rd88f5181l_fxo_nor_boot_flash_data,57},58.num_resources = 1,59.resource = &rd88f5181l_fxo_nor_boot_flash_resource,60};616263/*****************************************************************************64* General Setup65****************************************************************************/66static unsigned int rd88f5181l_fxo_mpp_modes[] __initdata = {67MPP0_GPIO, /* LED1 CardBus LED (front panel) */68MPP1_GPIO, /* PCI_intA */69MPP2_GPIO, /* Hard Reset / Factory Init*/70MPP3_GPIO, /* FXS or DAA select */71MPP4_GPIO, /* LED6 - phone LED (front panel) */72MPP5_GPIO, /* LED5 - phone LED (front panel) */73MPP6_PCI_CLK, /* CPU PCI refclk */74MPP7_PCI_CLK, /* PCI/PCIe refclk */75MPP8_GPIO, /* CardBus reset */76MPP9_GPIO, /* GE_RXERR */77MPP10_GPIO, /* LED2 MiniPCI LED (front panel) */78MPP11_GPIO, /* Lifeline control */79MPP12_GIGE, /* GE_TXD[4] */80MPP13_GIGE, /* GE_TXD[5] */81MPP14_GIGE, /* GE_TXD[6] */82MPP15_GIGE, /* GE_TXD[7] */83MPP16_GIGE, /* GE_RXD[4] */84MPP17_GIGE, /* GE_RXD[5] */85MPP18_GIGE, /* GE_RXD[6] */86MPP19_GIGE, /* GE_RXD[7] */870,88};8990static struct mv643xx_eth_platform_data rd88f5181l_fxo_eth_data = {91.phy_addr = MV643XX_ETH_PHY_NONE,92.speed = SPEED_1000,93.duplex = DUPLEX_FULL,94};9596static struct dsa_chip_data rd88f5181l_fxo_switch_chip_data = {97.port_names[0] = "lan2",98.port_names[1] = "lan1",99.port_names[2] = "wan",100.port_names[3] = "cpu",101.port_names[5] = "lan4",102.port_names[7] = "lan3",103};104105static struct dsa_platform_data rd88f5181l_fxo_switch_plat_data = {106.nr_chips = 1,107.chip = &rd88f5181l_fxo_switch_chip_data,108};109110static void __init rd88f5181l_fxo_init(void)111{112/*113* Setup basic Orion functions. Need to be called early.114*/115orion5x_init();116117orion5x_mpp_conf(rd88f5181l_fxo_mpp_modes);118119/*120* Configure peripherals.121*/122orion5x_ehci0_init();123orion5x_eth_init(&rd88f5181l_fxo_eth_data);124orion5x_eth_switch_init(&rd88f5181l_fxo_switch_plat_data, NO_IRQ);125orion5x_uart0_init();126127orion5x_setup_dev_boot_win(RD88F5181L_FXO_NOR_BOOT_BASE,128RD88F5181L_FXO_NOR_BOOT_SIZE);129platform_device_register(&rd88f5181l_fxo_nor_boot_flash);130}131132static int __init133rd88f5181l_fxo_pci_map_irq(struct pci_dev *dev, u8 slot, u8 pin)134{135int irq;136137/*138* Check for devices with hard-wired IRQs.139*/140irq = orion5x_pci_map_irq(dev, slot, pin);141if (irq != -1)142return irq;143144/*145* Mini-PCI / Cardbus slot.146*/147return gpio_to_irq(1);148}149150static struct hw_pci rd88f5181l_fxo_pci __initdata = {151.nr_controllers = 2,152.swizzle = pci_std_swizzle,153.setup = orion5x_pci_sys_setup,154.scan = orion5x_pci_sys_scan_bus,155.map_irq = rd88f5181l_fxo_pci_map_irq,156};157158static int __init rd88f5181l_fxo_pci_init(void)159{160if (machine_is_rd88f5181l_fxo()) {161orion5x_pci_set_cardbus_mode();162pci_common_init(&rd88f5181l_fxo_pci);163}164165return 0;166}167subsys_initcall(rd88f5181l_fxo_pci_init);168169MACHINE_START(RD88F5181L_FXO, "Marvell Orion-VoIP FXO Reference Design")170/* Maintainer: Nicolas Pitre <[email protected]> */171.boot_params = 0x00000100,172.init_machine = rd88f5181l_fxo_init,173.map_io = orion5x_map_io,174.init_early = orion5x_init_early,175.init_irq = orion5x_init_irq,176.timer = &orion5x_timer,177.fixup = tag_fixup_mem32,178MACHINE_END179180181