2 * arch/arm/mach-orion5x/common.c
4 * Core functions for Marvell Orion 5x SoCs
6 * Maintainer: Tzachi Perelstein <tzachi@marvell.com>
8 * This file is licensed under the terms of the GNU General Public
9 * License version 2. This program is licensed "as is" without any
10 * warranty of any kind, whether express or implied.
13 #include <linux/kernel.h>
14 #include <linux/init.h>
15 #include <linux/platform_device.h>
16 #include <linux/serial_8250.h>
17 #include <linux/mbus.h>
18 #include <linux/mv643xx_eth.h>
19 #include <linux/mv643xx_i2c.h>
20 #include <linux/ata_platform.h>
22 #include <asm/setup.h>
23 #include <asm/timex.h>
24 #include <asm/mach/arch.h>
25 #include <asm/mach/map.h>
26 #include <asm/mach/time.h>
27 #include <asm/arch/hardware.h>
28 #include <asm/arch/orion5x.h>
29 #include <asm/plat-orion/ehci-orion.h>
30 #include <asm/plat-orion/orion_nand.h>
31 #include <asm/plat-orion/time.h>
34 /*****************************************************************************
36 ****************************************************************************/
37 static struct map_desc orion5x_io_desc[] __initdata = {
39 .virtual = ORION5X_REGS_VIRT_BASE,
40 .pfn = __phys_to_pfn(ORION5X_REGS_PHYS_BASE),
41 .length = ORION5X_REGS_SIZE,
44 .virtual = ORION5X_PCIE_IO_VIRT_BASE,
45 .pfn = __phys_to_pfn(ORION5X_PCIE_IO_PHYS_BASE),
46 .length = ORION5X_PCIE_IO_SIZE,
49 .virtual = ORION5X_PCI_IO_VIRT_BASE,
50 .pfn = __phys_to_pfn(ORION5X_PCI_IO_PHYS_BASE),
51 .length = ORION5X_PCI_IO_SIZE,
54 .virtual = ORION5X_PCIE_WA_VIRT_BASE,
55 .pfn = __phys_to_pfn(ORION5X_PCIE_WA_PHYS_BASE),
56 .length = ORION5X_PCIE_WA_SIZE,
61 void __init orion5x_map_io(void)
63 iotable_init(orion5x_io_desc, ARRAY_SIZE(orion5x_io_desc));
67 /*****************************************************************************
69 ****************************************************************************/
70 static struct orion_ehci_data orion5x_ehci_data = {
71 .dram = &orion5x_mbus_dram_info,
74 static u64 ehci_dmamask = 0xffffffffUL;
77 /*****************************************************************************
79 ****************************************************************************/
80 static struct resource orion5x_ehci0_resources[] = {
82 .start = ORION5X_USB0_PHYS_BASE,
83 .end = ORION5X_USB0_PHYS_BASE + SZ_4K - 1,
84 .flags = IORESOURCE_MEM,
86 .start = IRQ_ORION5X_USB0_CTRL,
87 .end = IRQ_ORION5X_USB0_CTRL,
88 .flags = IORESOURCE_IRQ,
92 static struct platform_device orion5x_ehci0 = {
96 .dma_mask = &ehci_dmamask,
97 .coherent_dma_mask = 0xffffffff,
98 .platform_data = &orion5x_ehci_data,
100 .resource = orion5x_ehci0_resources,
101 .num_resources = ARRAY_SIZE(orion5x_ehci0_resources),
104 void __init orion5x_ehci0_init(void)
106 platform_device_register(&orion5x_ehci0);
110 /*****************************************************************************
112 ****************************************************************************/
113 static struct resource orion5x_ehci1_resources[] = {
115 .start = ORION5X_USB1_PHYS_BASE,
116 .end = ORION5X_USB1_PHYS_BASE + SZ_4K - 1,
117 .flags = IORESOURCE_MEM,
119 .start = IRQ_ORION5X_USB1_CTRL,
120 .end = IRQ_ORION5X_USB1_CTRL,
121 .flags = IORESOURCE_IRQ,
125 static struct platform_device orion5x_ehci1 = {
126 .name = "orion-ehci",
129 .dma_mask = &ehci_dmamask,
130 .coherent_dma_mask = 0xffffffff,
131 .platform_data = &orion5x_ehci_data,
133 .resource = orion5x_ehci1_resources,
134 .num_resources = ARRAY_SIZE(orion5x_ehci1_resources),
137 void __init orion5x_ehci1_init(void)
139 platform_device_register(&orion5x_ehci1);
143 /*****************************************************************************
145 ****************************************************************************/
146 struct mv643xx_eth_shared_platform_data orion5x_eth_shared_data = {
147 .dram = &orion5x_mbus_dram_info,
148 .t_clk = ORION5X_TCLK,
151 static struct resource orion5x_eth_shared_resources[] = {
153 .start = ORION5X_ETH_PHYS_BASE + 0x2000,
154 .end = ORION5X_ETH_PHYS_BASE + 0x3fff,
155 .flags = IORESOURCE_MEM,
159 static struct platform_device orion5x_eth_shared = {
160 .name = MV643XX_ETH_SHARED_NAME,
163 .platform_data = &orion5x_eth_shared_data,
166 .resource = orion5x_eth_shared_resources,
169 static struct resource orion5x_eth_resources[] = {
172 .start = IRQ_ORION5X_ETH_SUM,
173 .end = IRQ_ORION5X_ETH_SUM,
174 .flags = IORESOURCE_IRQ,
178 static struct platform_device orion5x_eth = {
179 .name = MV643XX_ETH_NAME,
182 .resource = orion5x_eth_resources,
185 void __init orion5x_eth_init(struct mv643xx_eth_platform_data *eth_data)
187 eth_data->shared = &orion5x_eth_shared;
188 orion5x_eth.dev.platform_data = eth_data;
190 platform_device_register(&orion5x_eth_shared);
191 platform_device_register(&orion5x_eth);
195 /*****************************************************************************
197 ****************************************************************************/
198 static struct mv64xxx_i2c_pdata orion5x_i2c_pdata = {
199 .freq_m = 8, /* assumes 166 MHz TCLK */
201 .timeout = 1000, /* Default timeout of 1 second */
204 static struct resource orion5x_i2c_resources[] = {
207 .start = I2C_PHYS_BASE,
208 .end = I2C_PHYS_BASE + 0x1f,
209 .flags = IORESOURCE_MEM,
212 .start = IRQ_ORION5X_I2C,
213 .end = IRQ_ORION5X_I2C,
214 .flags = IORESOURCE_IRQ,
218 static struct platform_device orion5x_i2c = {
219 .name = MV64XXX_I2C_CTLR_NAME,
221 .num_resources = ARRAY_SIZE(orion5x_i2c_resources),
222 .resource = orion5x_i2c_resources,
224 .platform_data = &orion5x_i2c_pdata,
228 void __init orion5x_i2c_init(void)
230 platform_device_register(&orion5x_i2c);
234 /*****************************************************************************
236 ****************************************************************************/
237 static struct resource orion5x_sata_resources[] = {
240 .start = ORION5X_SATA_PHYS_BASE,
241 .end = ORION5X_SATA_PHYS_BASE + 0x5000 - 1,
242 .flags = IORESOURCE_MEM,
245 .start = IRQ_ORION5X_SATA,
246 .end = IRQ_ORION5X_SATA,
247 .flags = IORESOURCE_IRQ,
251 static struct platform_device orion5x_sata = {
255 .coherent_dma_mask = 0xffffffff,
257 .num_resources = ARRAY_SIZE(orion5x_sata_resources),
258 .resource = orion5x_sata_resources,
261 void __init orion5x_sata_init(struct mv_sata_platform_data *sata_data)
263 sata_data->dram = &orion5x_mbus_dram_info;
264 orion5x_sata.dev.platform_data = sata_data;
265 platform_device_register(&orion5x_sata);
269 /*****************************************************************************
271 ****************************************************************************/
272 static struct plat_serial8250_port orion5x_uart0_data[] = {
274 .mapbase = UART0_PHYS_BASE,
275 .membase = (char *)UART0_VIRT_BASE,
276 .irq = IRQ_ORION5X_UART0,
277 .flags = UPF_SKIP_TEST | UPF_BOOT_AUTOCONF,
280 .uartclk = ORION5X_TCLK,
285 static struct resource orion5x_uart0_resources[] = {
287 .start = UART0_PHYS_BASE,
288 .end = UART0_PHYS_BASE + 0xff,
289 .flags = IORESOURCE_MEM,
291 .start = IRQ_ORION5X_UART0,
292 .end = IRQ_ORION5X_UART0,
293 .flags = IORESOURCE_IRQ,
297 static struct platform_device orion5x_uart0 = {
298 .name = "serial8250",
299 .id = PLAT8250_DEV_PLATFORM,
301 .platform_data = orion5x_uart0_data,
303 .resource = orion5x_uart0_resources,
304 .num_resources = ARRAY_SIZE(orion5x_uart0_resources),
307 void __init orion5x_uart0_init(void)
309 platform_device_register(&orion5x_uart0);
313 /*****************************************************************************
315 ****************************************************************************/
316 static struct plat_serial8250_port orion5x_uart1_data[] = {
318 .mapbase = UART1_PHYS_BASE,
319 .membase = (char *)UART1_VIRT_BASE,
320 .irq = IRQ_ORION5X_UART1,
321 .flags = UPF_SKIP_TEST | UPF_BOOT_AUTOCONF,
324 .uartclk = ORION5X_TCLK,
329 static struct resource orion5x_uart1_resources[] = {
331 .start = UART1_PHYS_BASE,
332 .end = UART1_PHYS_BASE + 0xff,
333 .flags = IORESOURCE_MEM,
335 .start = IRQ_ORION5X_UART1,
336 .end = IRQ_ORION5X_UART1,
337 .flags = IORESOURCE_IRQ,
341 static struct platform_device orion5x_uart1 = {
342 .name = "serial8250",
343 .id = PLAT8250_DEV_PLATFORM1,
345 .platform_data = orion5x_uart1_data,
347 .resource = orion5x_uart1_resources,
348 .num_resources = ARRAY_SIZE(orion5x_uart1_resources),
351 void __init orion5x_uart1_init(void)
353 platform_device_register(&orion5x_uart1);
357 /*****************************************************************************
359 ****************************************************************************/
360 static void orion5x_timer_init(void)
362 orion_time_init(IRQ_ORION5X_BRIDGE, ORION5X_TCLK);
365 struct sys_timer orion5x_timer = {
366 .init = orion5x_timer_init,
370 /*****************************************************************************
372 ****************************************************************************/
374 * Identify device ID and rev from PCIe configuration header space '0'.
376 static void __init orion5x_id(u32 *dev, u32 *rev, char **dev_name)
378 orion5x_pcie_id(dev, rev);
380 if (*dev == MV88F5281_DEV_ID) {
381 if (*rev == MV88F5281_REV_D2) {
382 *dev_name = "MV88F5281-D2";
383 } else if (*rev == MV88F5281_REV_D1) {
384 *dev_name = "MV88F5281-D1";
386 *dev_name = "MV88F5281-Rev-Unsupported";
388 } else if (*dev == MV88F5182_DEV_ID) {
389 if (*rev == MV88F5182_REV_A2) {
390 *dev_name = "MV88F5182-A2";
392 *dev_name = "MV88F5182-Rev-Unsupported";
394 } else if (*dev == MV88F5181_DEV_ID) {
395 if (*rev == MV88F5181_REV_B1) {
396 *dev_name = "MV88F5181-Rev-B1";
397 } else if (*rev == MV88F5181L_REV_A1) {
398 *dev_name = "MV88F5181L-Rev-A1";
400 *dev_name = "MV88F5181(L)-Rev-Unsupported";
403 *dev_name = "Device-Unknown";
407 void __init orion5x_init(void)
412 orion5x_id(&dev, &rev, &dev_name);
413 printk(KERN_INFO "Orion ID: %s. TCLK=%d.\n", dev_name, ORION5X_TCLK);
416 * Setup Orion address map
418 orion5x_setup_cpu_mbus_bridge();
422 * Many orion-based systems have buggy bootloader implementations.
423 * This is a common fixup for bogus memory tags.
425 void __init tag_fixup_mem32(struct machine_desc *mdesc, struct tag *t,
426 char **from, struct meminfo *meminfo)
428 for (; t->hdr.size; t = tag_next(t))
429 if (t->hdr.tag == ATAG_MEM &&
430 (!t->u.mem.size || t->u.mem.size & ~PAGE_MASK ||
431 t->u.mem.start & ~PAGE_MASK)) {
433 "Clearing invalid memory bank %dKB@0x%08x\n",
434 t->u.mem.size / 1024, t->u.mem.start);