blob: a1fe3257320d77732c121eeb9b7c07b25557909e [file] [log] [blame]
Lennert Buytenhek70129132008-06-30 14:25:24 -04001/*
2 * arch/arm/mach-orion5x/rd88f5181l-ge-setup.c
3 *
4 * Marvell Orion-VoIP GE 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 */
10
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 Buytenhek81600eea92008-07-14 14:29:40 +020018#include <linux/ethtool.h>
Lennert Buytenhek70129132008-06-30 14:25:24 -040019#include <linux/i2c.h>
20#include <asm/mach-types.h>
21#include <asm/gpio.h>
22#include <asm/leds.h>
23#include <asm/mach/arch.h>
24#include <asm/mach/pci.h>
Russell Kinga09e64f2008-08-05 16:14:15 +010025#include <mach/orion5x.h>
Lennert Buytenhek70129132008-06-30 14:25:24 -040026#include "common.h"
27#include "mpp.h"
28
29/*****************************************************************************
30 * RD-88F5181L GE Info
31 ****************************************************************************/
32/*
33 * 16M NOR flash Device bus boot chip select
34 */
35#define RD88F5181L_GE_NOR_BOOT_BASE 0xff000000
36#define RD88F5181L_GE_NOR_BOOT_SIZE SZ_16M
37
38
39/*****************************************************************************
40 * 16M NOR Flash on Device bus Boot chip select
41 ****************************************************************************/
42static struct physmap_flash_data rd88f5181l_ge_nor_boot_flash_data = {
43 .width = 1,
44};
45
46static struct resource rd88f5181l_ge_nor_boot_flash_resource = {
47 .flags = IORESOURCE_MEM,
48 .start = RD88F5181L_GE_NOR_BOOT_BASE,
49 .end = RD88F5181L_GE_NOR_BOOT_BASE +
50 RD88F5181L_GE_NOR_BOOT_SIZE - 1,
51};
52
53static struct platform_device rd88f5181l_ge_nor_boot_flash = {
54 .name = "physmap-flash",
55 .id = 0,
56 .dev = {
57 .platform_data = &rd88f5181l_ge_nor_boot_flash_data,
58 },
59 .num_resources = 1,
60 .resource = &rd88f5181l_ge_nor_boot_flash_resource,
61};
62
63
64/*****************************************************************************
65 * General Setup
66 ****************************************************************************/
67static struct orion5x_mpp_mode rd88f5181l_ge_mpp_modes[] __initdata = {
68 { 0, MPP_GPIO }, /* LED1 */
69 { 1, MPP_GPIO }, /* LED5 */
70 { 2, MPP_GPIO }, /* LED4 */
71 { 3, MPP_GPIO }, /* LED3 */
72 { 4, MPP_GPIO }, /* PCI_intA */
73 { 5, MPP_GPIO }, /* RTC interrupt */
74 { 6, MPP_PCI_CLK }, /* CPU PCI refclk */
75 { 7, MPP_PCI_CLK }, /* PCI/PCIe refclk */
76 { 8, MPP_GPIO }, /* 88e6131 interrupt */
77 { 9, MPP_GPIO }, /* GE_RXERR */
78 { 10, MPP_GPIO }, /* PCI_intB */
79 { 11, MPP_GPIO }, /* LED2 */
80 { 12, MPP_GIGE }, /* GE_TXD[4] */
81 { 13, MPP_GIGE }, /* GE_TXD[5] */
82 { 14, MPP_GIGE }, /* GE_TXD[6] */
83 { 15, MPP_GIGE }, /* GE_TXD[7] */
84 { 16, MPP_GIGE }, /* GE_RXD[4] */
85 { 17, MPP_GIGE }, /* GE_RXD[5] */
86 { 18, MPP_GIGE }, /* GE_RXD[6] */
87 { 19, MPP_GIGE }, /* GE_RXD[7] */
88 { -1 },
89};
90
91static struct mv643xx_eth_platform_data rd88f5181l_ge_eth_data = {
92 .phy_addr = -1,
Lennert Buytenhek81600eea92008-07-14 14:29:40 +020093 .speed = SPEED_1000,
94 .duplex = DUPLEX_FULL,
Lennert Buytenhek70129132008-06-30 14:25:24 -040095};
96
97static struct i2c_board_info __initdata rd88f5181l_ge_i2c_rtc = {
98 I2C_BOARD_INFO("ds1338", 0x68),
99};
100
101static void __init rd88f5181l_ge_init(void)
102{
103 /*
104 * Setup basic Orion functions. Need to be called early.
105 */
106 orion5x_init();
107
108 orion5x_mpp_conf(rd88f5181l_ge_mpp_modes);
109
110 /*
111 * Configure peripherals.
112 */
113 orion5x_ehci0_init();
114 orion5x_eth_init(&rd88f5181l_ge_eth_data);
115 orion5x_i2c_init();
116 orion5x_uart0_init();
117
118 orion5x_setup_dev_boot_win(RD88F5181L_GE_NOR_BOOT_BASE,
119 RD88F5181L_GE_NOR_BOOT_SIZE);
120 platform_device_register(&rd88f5181l_ge_nor_boot_flash);
121
122 i2c_register_board_info(0, &rd88f5181l_ge_i2c_rtc, 1);
123}
124
125static int __init
126rd88f5181l_ge_pci_map_irq(struct pci_dev *dev, u8 slot, u8 pin)
127{
128 int irq;
129
130 /*
131 * Check for devices with hard-wired IRQs.
132 */
133 irq = orion5x_pci_map_irq(dev, slot, pin);
134 if (irq != -1)
135 return irq;
136
137 /*
138 * Cardbus slot.
139 */
140 if (pin == 1)
141 return gpio_to_irq(4);
142 else
143 return gpio_to_irq(10);
144}
145
146static struct hw_pci rd88f5181l_ge_pci __initdata = {
147 .nr_controllers = 2,
148 .swizzle = pci_std_swizzle,
149 .setup = orion5x_pci_sys_setup,
150 .scan = orion5x_pci_sys_scan_bus,
151 .map_irq = rd88f5181l_ge_pci_map_irq,
152};
153
154static int __init rd88f5181l_ge_pci_init(void)
155{
156 if (machine_is_rd88f5181l_ge()) {
157 orion5x_pci_set_cardbus_mode();
158 pci_common_init(&rd88f5181l_ge_pci);
159 }
160
161 return 0;
162}
163subsys_initcall(rd88f5181l_ge_pci_init);
164
165MACHINE_START(RD88F5181L_GE, "Marvell Orion-VoIP GE Reference Design")
166 /* Maintainer: Lennert Buytenhek <buytenh@marvell.com> */
167 .phys_io = ORION5X_REGS_PHYS_BASE,
168 .io_pg_offst = ((ORION5X_REGS_VIRT_BASE) >> 18) & 0xFFFC,
169 .boot_params = 0x00000100,
170 .init_machine = rd88f5181l_ge_init,
171 .map_io = orion5x_map_io,
172 .init_irq = orion5x_init_irq,
173 .timer = &orion5x_timer,
174 .fixup = tag_fixup_mem32,
175MACHINE_END