blob: 0a56b9444f1bc6b3a33f0a316bf112250f5141d5 [file] [log] [blame]
Ronen Shitrit817eb212007-10-17 14:51:34 -04001/*
Lennert Buytenhek9dd0b192008-03-27 14:51:41 -04002 * arch/arm/mach-orion5x/rd88f5182-setup.c
Ronen Shitrit817eb212007-10-17 14:51:34 -04003 *
4 * Marvell Orion-NAS Reference Design Setup
5 *
6 * Maintainer: Ronen Shitrit <rshitrit@marvell.com>
7 *
Lennert Buytenhek159ffb32008-03-27 14:51:41 -04008 * This file is licensed under the terms of the GNU General Public
9 * License version 2. This program is licensed "as is" without any
Ronen Shitrit817eb212007-10-17 14:51:34 -040010 * warranty of any kind, whether express or implied.
11 */
Russell King2f8163b2011-07-26 10:53:52 +010012#include <linux/gpio.h>
Ronen Shitrit817eb212007-10-17 14:51:34 -040013#include <linux/kernel.h>
14#include <linux/init.h>
15#include <linux/platform_device.h>
16#include <linux/pci.h>
17#include <linux/irq.h>
18#include <linux/mtd/physmap.h>
19#include <linux/mv643xx_eth.h>
Saeed Bisharaf244baa2008-01-29 11:33:32 -110020#include <linux/ata_platform.h>
Ronen Shitrit817eb212007-10-17 14:51:34 -040021#include <linux/i2c.h>
Bryan Wu77a49492012-03-14 01:43:51 +080022#include <linux/leds.h>
Ronen Shitrit817eb212007-10-17 14:51:34 -040023#include <asm/mach-types.h>
Ronen Shitrit817eb212007-10-17 14:51:34 -040024#include <asm/mach/arch.h>
25#include <asm/mach/pci.h>
Russell Kinga09e64f2008-08-05 16:14:15 +010026#include <mach/orion5x.h>
Ronen Shitrit817eb212007-10-17 14:51:34 -040027#include "common.h"
Lennert Buytenhek19cfd5c2008-05-10 23:25:46 +020028#include "mpp.h"
Ronen Shitrit817eb212007-10-17 14:51:34 -040029
30/*****************************************************************************
31 * RD-88F5182 Info
32 ****************************************************************************/
33
34/*
35 * 512K NOR flash Device bus boot chip select
36 */
37
38#define RD88F5182_NOR_BOOT_BASE 0xf4000000
39#define RD88F5182_NOR_BOOT_SIZE SZ_512K
40
41/*
42 * 16M NOR flash on Device bus chip select 1
43 */
44
45#define RD88F5182_NOR_BASE 0xfc000000
46#define RD88F5182_NOR_SIZE SZ_16M
47
48/*
49 * PCI
50 */
51
52#define RD88F5182_PCI_SLOT0_OFFS 7
53#define RD88F5182_PCI_SLOT0_IRQ_A_PIN 7
54#define RD88F5182_PCI_SLOT0_IRQ_B_PIN 6
55
Ronen Shitrit817eb212007-10-17 14:51:34 -040056/*****************************************************************************
57 * 16M NOR Flash on Device bus CS1
58 ****************************************************************************/
59
60static struct physmap_flash_data rd88f5182_nor_flash_data = {
61 .width = 1,
62};
63
64static struct resource rd88f5182_nor_flash_resource = {
65 .flags = IORESOURCE_MEM,
66 .start = RD88F5182_NOR_BASE,
67 .end = RD88F5182_NOR_BASE + RD88F5182_NOR_SIZE - 1,
68};
69
70static struct platform_device rd88f5182_nor_flash = {
71 .name = "physmap-flash",
72 .id = 0,
73 .dev = {
74 .platform_data = &rd88f5182_nor_flash_data,
75 },
76 .num_resources = 1,
77 .resource = &rd88f5182_nor_flash_resource,
78};
79
Ronen Shitrit817eb212007-10-17 14:51:34 -040080/*****************************************************************************
Bryan Wu77a49492012-03-14 01:43:51 +080081 * Use GPIO LED as CPU active indication
Ronen Shitrit817eb212007-10-17 14:51:34 -040082 ****************************************************************************/
83
Bryan Wu77a49492012-03-14 01:43:51 +080084#define RD88F5182_GPIO_LED 0
Ronen Shitrit817eb212007-10-17 14:51:34 -040085
Bryan Wu77a49492012-03-14 01:43:51 +080086static struct gpio_led rd88f5182_gpio_led_pins[] = {
87 {
88 .name = "rd88f5182:cpu",
89 .default_trigger = "cpu0",
90 .gpio = RD88F5182_GPIO_LED,
91 },
92};
Ronen Shitrit817eb212007-10-17 14:51:34 -040093
Bryan Wu77a49492012-03-14 01:43:51 +080094static struct gpio_led_platform_data rd88f5182_gpio_led_data = {
95 .leds = rd88f5182_gpio_led_pins,
96 .num_leds = ARRAY_SIZE(rd88f5182_gpio_led_pins),
97};
Ronen Shitrit817eb212007-10-17 14:51:34 -040098
Bryan Wu77a49492012-03-14 01:43:51 +080099static struct platform_device rd88f5182_gpio_leds = {
100 .name = "leds-gpio",
101 .id = -1,
102 .dev = {
103 .platform_data = &rd88f5182_gpio_led_data,
104 },
105};
Ronen Shitrit817eb212007-10-17 14:51:34 -0400106
107/*****************************************************************************
108 * PCI
109 ****************************************************************************/
110
111void __init rd88f5182_pci_preinit(void)
112{
113 int pin;
114
115 /*
116 * Configure PCI GPIO IRQ pins
117 */
118 pin = RD88F5182_PCI_SLOT0_IRQ_A_PIN;
119 if (gpio_request(pin, "PCI IntA") == 0) {
120 if (gpio_direction_input(pin) == 0) {
Thomas Gleixner6845664a2011-03-24 13:25:22 +0100121 irq_set_irq_type(gpio_to_irq(pin), IRQ_TYPE_LEVEL_LOW);
Ronen Shitrit817eb212007-10-17 14:51:34 -0400122 } else {
Masanari Iidaf8fcf532012-02-13 23:29:56 +0900123 printk(KERN_ERR "rd88f5182_pci_preinit failed to "
Ronen Shitrit817eb212007-10-17 14:51:34 -0400124 "set_irq_type pin %d\n", pin);
125 gpio_free(pin);
126 }
127 } else {
128 printk(KERN_ERR "rd88f5182_pci_preinit failed to request gpio %d\n", pin);
129 }
130
131 pin = RD88F5182_PCI_SLOT0_IRQ_B_PIN;
132 if (gpio_request(pin, "PCI IntB") == 0) {
133 if (gpio_direction_input(pin) == 0) {
Thomas Gleixner6845664a2011-03-24 13:25:22 +0100134 irq_set_irq_type(gpio_to_irq(pin), IRQ_TYPE_LEVEL_LOW);
Ronen Shitrit817eb212007-10-17 14:51:34 -0400135 } else {
Masanari Iidaf8fcf532012-02-13 23:29:56 +0900136 printk(KERN_ERR "rd88f5182_pci_preinit failed to "
Ronen Shitrit817eb212007-10-17 14:51:34 -0400137 "set_irq_type pin %d\n", pin);
138 gpio_free(pin);
139 }
140 } else {
141 printk(KERN_ERR "rd88f5182_pci_preinit failed to gpio_request %d\n", pin);
142 }
143}
144
Ralf Baechled5341942011-06-10 15:30:21 +0100145static int __init rd88f5182_pci_map_irq(const struct pci_dev *dev, u8 slot,
146 u8 pin)
Ronen Shitrit817eb212007-10-17 14:51:34 -0400147{
Lennert Buytenhek92b913b2008-04-25 16:28:33 -0400148 int irq;
149
Ronen Shitrit817eb212007-10-17 14:51:34 -0400150 /*
Lennert Buytenhek92b913b2008-04-25 16:28:33 -0400151 * Check for devices with hard-wired IRQs.
Ronen Shitrit817eb212007-10-17 14:51:34 -0400152 */
Lennert Buytenhek92b913b2008-04-25 16:28:33 -0400153 irq = orion5x_pci_map_irq(dev, slot, pin);
154 if (irq != -1)
155 return irq;
Ronen Shitrit817eb212007-10-17 14:51:34 -0400156
157 /*
158 * PCI IRQs are connected via GPIOs
159 */
160 switch (slot - RD88F5182_PCI_SLOT0_OFFS) {
161 case 0:
162 if (pin == 1)
163 return gpio_to_irq(RD88F5182_PCI_SLOT0_IRQ_A_PIN);
164 else
165 return gpio_to_irq(RD88F5182_PCI_SLOT0_IRQ_B_PIN);
166 default:
167 return -1;
168 }
169}
170
171static struct hw_pci rd88f5182_pci __initdata = {
172 .nr_controllers = 2,
173 .preinit = rd88f5182_pci_preinit,
Lennert Buytenhek9dd0b192008-03-27 14:51:41 -0400174 .setup = orion5x_pci_sys_setup,
175 .scan = orion5x_pci_sys_scan_bus,
Ronen Shitrit817eb212007-10-17 14:51:34 -0400176 .map_irq = rd88f5182_pci_map_irq,
177};
178
179static int __init rd88f5182_pci_init(void)
180{
181 if (machine_is_rd88f5182())
182 pci_common_init(&rd88f5182_pci);
183
184 return 0;
185}
186
187subsys_initcall(rd88f5182_pci_init);
188
189/*****************************************************************************
190 * Ethernet
191 ****************************************************************************/
192
193static struct mv643xx_eth_platform_data rd88f5182_eth_data = {
Lennert Buytenhekac8406052008-08-26 14:06:47 +0200194 .phy_addr = MV643XX_ETH_PHY_ADDR(8),
Ronen Shitrit817eb212007-10-17 14:51:34 -0400195};
196
197/*****************************************************************************
198 * RTC DS1338 on I2C bus
199 ****************************************************************************/
200static struct i2c_board_info __initdata rd88f5182_i2c_rtc = {
Jean Delvare3760f732008-04-29 23:11:40 +0200201 I2C_BOARD_INFO("ds1338", 0x68),
Ronen Shitrit817eb212007-10-17 14:51:34 -0400202};
203
204/*****************************************************************************
Saeed Bisharaf244baa2008-01-29 11:33:32 -1100205 * Sata
206 ****************************************************************************/
207static struct mv_sata_platform_data rd88f5182_sata_data = {
Lennert Buytenheke7068ad2008-05-10 16:30:01 +0200208 .n_ports = 2,
Saeed Bisharaf244baa2008-01-29 11:33:32 -1100209};
210
211/*****************************************************************************
Ronen Shitrit817eb212007-10-17 14:51:34 -0400212 * General Setup
213 ****************************************************************************/
Andrew Lunn554cdae2011-05-15 13:32:53 +0200214static unsigned int rd88f5182_mpp_modes[] __initdata = {
215 MPP0_GPIO, /* Debug Led */
216 MPP1_GPIO, /* Reset Switch */
217 MPP2_UNUSED,
218 MPP3_GPIO, /* RTC Int */
219 MPP4_GPIO,
220 MPP5_GPIO,
221 MPP6_GPIO, /* PCI_intA */
222 MPP7_GPIO, /* PCI_intB */
223 MPP8_UNUSED,
224 MPP9_UNUSED,
225 MPP10_UNUSED,
226 MPP11_UNUSED,
227 MPP12_SATA_LED, /* SATA 0 presence */
228 MPP13_SATA_LED, /* SATA 1 presence */
229 MPP14_SATA_LED, /* SATA 0 active */
230 MPP15_SATA_LED, /* SATA 1 active */
231 MPP16_UNUSED,
232 MPP17_UNUSED,
233 MPP18_UNUSED,
234 MPP19_UNUSED,
235 0,
Lennert Buytenhek19cfd5c2008-05-10 23:25:46 +0200236};
237
Ronen Shitrit817eb212007-10-17 14:51:34 -0400238static void __init rd88f5182_init(void)
239{
240 /*
241 * Setup basic Orion functions. Need to be called early.
242 */
Lennert Buytenhek9dd0b192008-03-27 14:51:41 -0400243 orion5x_init();
Ronen Shitrit817eb212007-10-17 14:51:34 -0400244
Lennert Buytenhek19cfd5c2008-05-10 23:25:46 +0200245 orion5x_mpp_conf(rd88f5182_mpp_modes);
246
Ronen Shitrit817eb212007-10-17 14:51:34 -0400247 /*
Ronen Shitrit817eb212007-10-17 14:51:34 -0400248 * MPP[20] PCI Clock to MV88F5182
249 * MPP[21] PCI Clock to mini PCI CON11
250 * MPP[22] USB 0 over current indication
251 * MPP[23] USB 1 over current indication
252 * MPP[24] USB 1 over current enable
253 * MPP[25] USB 0 over current enable
254 */
255
Lennert Buytenhek044f6c72008-04-22 05:37:12 +0200256 /*
257 * Configure peripherals.
258 */
259 orion5x_ehci0_init();
260 orion5x_ehci1_init();
Lennert Buytenhek9dd0b192008-03-27 14:51:41 -0400261 orion5x_eth_init(&rd88f5182_eth_data);
Lennert Buytenhek044f6c72008-04-22 05:37:12 +0200262 orion5x_i2c_init();
Lennert Buytenhek9dd0b192008-03-27 14:51:41 -0400263 orion5x_sata_init(&rd88f5182_sata_data);
Lennert Buytenhek044f6c72008-04-22 05:37:12 +0200264 orion5x_uart0_init();
Saeed Bishara1d5a1a62008-06-16 23:25:12 -1100265 orion5x_xor_init();
Lennert Buytenhek044f6c72008-04-22 05:37:12 +0200266
267 orion5x_setup_dev_boot_win(RD88F5182_NOR_BOOT_BASE,
268 RD88F5182_NOR_BOOT_SIZE);
269
270 orion5x_setup_dev1_win(RD88F5182_NOR_BASE, RD88F5182_NOR_SIZE);
271 platform_device_register(&rd88f5182_nor_flash);
Bryan Wu77a49492012-03-14 01:43:51 +0800272 platform_device_register(&rd88f5182_gpio_leds);
Lennert Buytenhek044f6c72008-04-22 05:37:12 +0200273
274 i2c_register_board_info(0, &rd88f5182_i2c_rtc, 1);
Ronen Shitrit817eb212007-10-17 14:51:34 -0400275}
276
277MACHINE_START(RD88F5182, "Marvell Orion-NAS Reference Design")
278 /* Maintainer: Ronen Shitrit <rshitrit@marvell.com> */
Nicolas Pitre65aa1b12011-07-05 22:38:15 -0400279 .atag_offset = 0x100,
Ronen Shitrit817eb212007-10-17 14:51:34 -0400280 .init_machine = rd88f5182_init,
Lennert Buytenhek9dd0b192008-03-27 14:51:41 -0400281 .map_io = orion5x_map_io,
Lennert Buytenhek4ee1f6b2010-10-15 16:50:26 +0200282 .init_early = orion5x_init_early,
Lennert Buytenhek9dd0b192008-03-27 14:51:41 -0400283 .init_irq = orion5x_init_irq,
284 .timer = &orion5x_timer,
Russell King764cbcc22011-11-05 10:13:41 +0000285 .restart = orion5x_restart,
Ronen Shitrit817eb212007-10-17 14:51:34 -0400286MACHINE_END