Lennert Buytenhek | 9dd0b19 | 2008-03-27 14:51:41 -0400 | [diff] [blame] | 1 | /* |
| 2 | * arch/arm/mach-orion5x/common.c |
| 3 | * |
| 4 | * Core functions for Marvell Orion 5x SoCs |
| 5 | * |
| 6 | * Maintainer: Tzachi Perelstein <tzachi@marvell.com> |
| 7 | * |
| 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. |
| 11 | */ |
| 12 | |
| 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> |
Lennert Buytenhek | d323ade | 2008-08-29 06:55:06 +0200 | [diff] [blame] | 21 | #include <linux/spi/orion_spi.h> |
Lennert Buytenhek | dcf1cec | 2008-09-25 16:23:48 +0200 | [diff] [blame] | 22 | #include <net/dsa.h> |
Lennert Buytenhek | 9dd0b19 | 2008-03-27 14:51:41 -0400 | [diff] [blame] | 23 | #include <asm/page.h> |
| 24 | #include <asm/setup.h> |
| 25 | #include <asm/timex.h> |
| 26 | #include <asm/mach/arch.h> |
| 27 | #include <asm/mach/map.h> |
| 28 | #include <asm/mach/time.h> |
Russell King | a09e64f | 2008-08-05 16:14:15 +0100 | [diff] [blame] | 29 | #include <mach/hardware.h> |
| 30 | #include <mach/orion5x.h> |
Lennert Buytenhek | 6f088f1 | 2008-08-09 13:44:58 +0200 | [diff] [blame] | 31 | #include <plat/ehci-orion.h> |
Saeed Bishara | 1d5a1a6 | 2008-06-16 23:25:12 -1100 | [diff] [blame] | 32 | #include <plat/mv_xor.h> |
Lennert Buytenhek | 6f088f1 | 2008-08-09 13:44:58 +0200 | [diff] [blame] | 33 | #include <plat/orion_nand.h> |
Nicolas Pitre | 3b937a7 | 2009-06-01 13:56:02 -0400 | [diff] [blame] | 34 | #include <plat/orion_wdt.h> |
Lennert Buytenhek | 6f088f1 | 2008-08-09 13:44:58 +0200 | [diff] [blame] | 35 | #include <plat/time.h> |
Lennert Buytenhek | 9dd0b19 | 2008-03-27 14:51:41 -0400 | [diff] [blame] | 36 | #include "common.h" |
| 37 | |
| 38 | /***************************************************************************** |
| 39 | * I/O Address Mapping |
| 40 | ****************************************************************************/ |
| 41 | static struct map_desc orion5x_io_desc[] __initdata = { |
| 42 | { |
| 43 | .virtual = ORION5X_REGS_VIRT_BASE, |
| 44 | .pfn = __phys_to_pfn(ORION5X_REGS_PHYS_BASE), |
| 45 | .length = ORION5X_REGS_SIZE, |
Lennert Buytenhek | e7068ad | 2008-05-10 16:30:01 +0200 | [diff] [blame] | 46 | .type = MT_DEVICE, |
| 47 | }, { |
Lennert Buytenhek | 9dd0b19 | 2008-03-27 14:51:41 -0400 | [diff] [blame] | 48 | .virtual = ORION5X_PCIE_IO_VIRT_BASE, |
| 49 | .pfn = __phys_to_pfn(ORION5X_PCIE_IO_PHYS_BASE), |
| 50 | .length = ORION5X_PCIE_IO_SIZE, |
Lennert Buytenhek | e7068ad | 2008-05-10 16:30:01 +0200 | [diff] [blame] | 51 | .type = MT_DEVICE, |
| 52 | }, { |
Lennert Buytenhek | 9dd0b19 | 2008-03-27 14:51:41 -0400 | [diff] [blame] | 53 | .virtual = ORION5X_PCI_IO_VIRT_BASE, |
| 54 | .pfn = __phys_to_pfn(ORION5X_PCI_IO_PHYS_BASE), |
| 55 | .length = ORION5X_PCI_IO_SIZE, |
Lennert Buytenhek | e7068ad | 2008-05-10 16:30:01 +0200 | [diff] [blame] | 56 | .type = MT_DEVICE, |
| 57 | }, { |
Lennert Buytenhek | 9dd0b19 | 2008-03-27 14:51:41 -0400 | [diff] [blame] | 58 | .virtual = ORION5X_PCIE_WA_VIRT_BASE, |
| 59 | .pfn = __phys_to_pfn(ORION5X_PCIE_WA_PHYS_BASE), |
| 60 | .length = ORION5X_PCIE_WA_SIZE, |
Lennert Buytenhek | e7068ad | 2008-05-10 16:30:01 +0200 | [diff] [blame] | 61 | .type = MT_DEVICE, |
Lennert Buytenhek | 9dd0b19 | 2008-03-27 14:51:41 -0400 | [diff] [blame] | 62 | }, |
| 63 | }; |
| 64 | |
| 65 | void __init orion5x_map_io(void) |
| 66 | { |
| 67 | iotable_init(orion5x_io_desc, ARRAY_SIZE(orion5x_io_desc)); |
| 68 | } |
| 69 | |
Lennert Buytenhek | 044f6c7 | 2008-04-22 05:37:12 +0200 | [diff] [blame] | 70 | |
Lennert Buytenhek | 9dd0b19 | 2008-03-27 14:51:41 -0400 | [diff] [blame] | 71 | /***************************************************************************** |
Lennert Buytenhek | 044f6c7 | 2008-04-22 05:37:12 +0200 | [diff] [blame] | 72 | * EHCI |
Lennert Buytenhek | 9dd0b19 | 2008-03-27 14:51:41 -0400 | [diff] [blame] | 73 | ****************************************************************************/ |
Lennert Buytenhek | 044f6c7 | 2008-04-22 05:37:12 +0200 | [diff] [blame] | 74 | static struct orion_ehci_data orion5x_ehci_data = { |
| 75 | .dram = &orion5x_mbus_dram_info, |
Ronen Shitrit | fb6f552 | 2008-09-17 10:08:05 +0300 | [diff] [blame] | 76 | .phy_version = EHCI_PHY_ORION, |
Lennert Buytenhek | 9dd0b19 | 2008-03-27 14:51:41 -0400 | [diff] [blame] | 77 | }; |
| 78 | |
Lennert Buytenhek | 044f6c7 | 2008-04-22 05:37:12 +0200 | [diff] [blame] | 79 | static u64 ehci_dmamask = 0xffffffffUL; |
Lennert Buytenhek | 9dd0b19 | 2008-03-27 14:51:41 -0400 | [diff] [blame] | 80 | |
Lennert Buytenhek | 9dd0b19 | 2008-03-27 14:51:41 -0400 | [diff] [blame] | 81 | |
Lennert Buytenhek | 044f6c7 | 2008-04-22 05:37:12 +0200 | [diff] [blame] | 82 | /***************************************************************************** |
| 83 | * EHCI0 |
| 84 | ****************************************************************************/ |
Lennert Buytenhek | 9dd0b19 | 2008-03-27 14:51:41 -0400 | [diff] [blame] | 85 | static struct resource orion5x_ehci0_resources[] = { |
| 86 | { |
| 87 | .start = ORION5X_USB0_PHYS_BASE, |
Lennert Buytenhek | 994cab8 | 2008-04-25 16:30:21 -0400 | [diff] [blame] | 88 | .end = ORION5X_USB0_PHYS_BASE + SZ_4K - 1, |
Lennert Buytenhek | 9dd0b19 | 2008-03-27 14:51:41 -0400 | [diff] [blame] | 89 | .flags = IORESOURCE_MEM, |
Lennert Buytenhek | e7068ad | 2008-05-10 16:30:01 +0200 | [diff] [blame] | 90 | }, { |
Lennert Buytenhek | 9dd0b19 | 2008-03-27 14:51:41 -0400 | [diff] [blame] | 91 | .start = IRQ_ORION5X_USB0_CTRL, |
| 92 | .end = IRQ_ORION5X_USB0_CTRL, |
| 93 | .flags = IORESOURCE_IRQ, |
| 94 | }, |
| 95 | }; |
| 96 | |
Lennert Buytenhek | 9dd0b19 | 2008-03-27 14:51:41 -0400 | [diff] [blame] | 97 | static struct platform_device orion5x_ehci0 = { |
| 98 | .name = "orion-ehci", |
| 99 | .id = 0, |
| 100 | .dev = { |
| 101 | .dma_mask = &ehci_dmamask, |
| 102 | .coherent_dma_mask = 0xffffffff, |
| 103 | .platform_data = &orion5x_ehci_data, |
| 104 | }, |
| 105 | .resource = orion5x_ehci0_resources, |
| 106 | .num_resources = ARRAY_SIZE(orion5x_ehci0_resources), |
| 107 | }; |
| 108 | |
Lennert Buytenhek | 044f6c7 | 2008-04-22 05:37:12 +0200 | [diff] [blame] | 109 | void __init orion5x_ehci0_init(void) |
| 110 | { |
| 111 | platform_device_register(&orion5x_ehci0); |
| 112 | } |
| 113 | |
| 114 | |
| 115 | /***************************************************************************** |
| 116 | * EHCI1 |
| 117 | ****************************************************************************/ |
| 118 | static struct resource orion5x_ehci1_resources[] = { |
| 119 | { |
| 120 | .start = ORION5X_USB1_PHYS_BASE, |
| 121 | .end = ORION5X_USB1_PHYS_BASE + SZ_4K - 1, |
| 122 | .flags = IORESOURCE_MEM, |
| 123 | }, { |
| 124 | .start = IRQ_ORION5X_USB1_CTRL, |
| 125 | .end = IRQ_ORION5X_USB1_CTRL, |
| 126 | .flags = IORESOURCE_IRQ, |
| 127 | }, |
| 128 | }; |
| 129 | |
Lennert Buytenhek | 9dd0b19 | 2008-03-27 14:51:41 -0400 | [diff] [blame] | 130 | static struct platform_device orion5x_ehci1 = { |
| 131 | .name = "orion-ehci", |
| 132 | .id = 1, |
| 133 | .dev = { |
| 134 | .dma_mask = &ehci_dmamask, |
| 135 | .coherent_dma_mask = 0xffffffff, |
| 136 | .platform_data = &orion5x_ehci_data, |
| 137 | }, |
| 138 | .resource = orion5x_ehci1_resources, |
| 139 | .num_resources = ARRAY_SIZE(orion5x_ehci1_resources), |
| 140 | }; |
| 141 | |
Lennert Buytenhek | 044f6c7 | 2008-04-22 05:37:12 +0200 | [diff] [blame] | 142 | void __init orion5x_ehci1_init(void) |
| 143 | { |
| 144 | platform_device_register(&orion5x_ehci1); |
| 145 | } |
Lennert Buytenhek | 9dd0b19 | 2008-03-27 14:51:41 -0400 | [diff] [blame] | 146 | |
Lennert Buytenhek | 044f6c7 | 2008-04-22 05:37:12 +0200 | [diff] [blame] | 147 | |
| 148 | /***************************************************************************** |
| 149 | * GigE |
| 150 | ****************************************************************************/ |
Lennert Buytenhek | d236f5a | 2008-04-26 14:48:11 -0400 | [diff] [blame] | 151 | struct mv643xx_eth_shared_platform_data orion5x_eth_shared_data = { |
| 152 | .dram = &orion5x_mbus_dram_info, |
| 153 | }; |
| 154 | |
Lennert Buytenhek | 9dd0b19 | 2008-03-27 14:51:41 -0400 | [diff] [blame] | 155 | static struct resource orion5x_eth_shared_resources[] = { |
| 156 | { |
| 157 | .start = ORION5X_ETH_PHYS_BASE + 0x2000, |
| 158 | .end = ORION5X_ETH_PHYS_BASE + 0x3fff, |
| 159 | .flags = IORESOURCE_MEM, |
Lennert Buytenhek | eeff6d8 | 2008-08-26 16:01:21 +0200 | [diff] [blame] | 160 | }, { |
| 161 | .start = IRQ_ORION5X_ETH_ERR, |
| 162 | .end = IRQ_ORION5X_ETH_ERR, |
| 163 | .flags = IORESOURCE_IRQ, |
Lennert Buytenhek | 9dd0b19 | 2008-03-27 14:51:41 -0400 | [diff] [blame] | 164 | }, |
| 165 | }; |
| 166 | |
| 167 | static struct platform_device orion5x_eth_shared = { |
| 168 | .name = MV643XX_ETH_SHARED_NAME, |
| 169 | .id = 0, |
Lennert Buytenhek | d236f5a | 2008-04-26 14:48:11 -0400 | [diff] [blame] | 170 | .dev = { |
| 171 | .platform_data = &orion5x_eth_shared_data, |
| 172 | }, |
Lennert Buytenhek | eeff6d8 | 2008-08-26 16:01:21 +0200 | [diff] [blame] | 173 | .num_resources = ARRAY_SIZE(orion5x_eth_shared_resources), |
Lennert Buytenhek | 9dd0b19 | 2008-03-27 14:51:41 -0400 | [diff] [blame] | 174 | .resource = orion5x_eth_shared_resources, |
| 175 | }; |
| 176 | |
| 177 | static struct resource orion5x_eth_resources[] = { |
| 178 | { |
| 179 | .name = "eth irq", |
| 180 | .start = IRQ_ORION5X_ETH_SUM, |
| 181 | .end = IRQ_ORION5X_ETH_SUM, |
| 182 | .flags = IORESOURCE_IRQ, |
Lennert Buytenhek | e7068ad | 2008-05-10 16:30:01 +0200 | [diff] [blame] | 183 | }, |
Lennert Buytenhek | 9dd0b19 | 2008-03-27 14:51:41 -0400 | [diff] [blame] | 184 | }; |
| 185 | |
| 186 | static struct platform_device orion5x_eth = { |
| 187 | .name = MV643XX_ETH_NAME, |
| 188 | .id = 0, |
| 189 | .num_resources = 1, |
| 190 | .resource = orion5x_eth_resources, |
Nicolas Pitre | a49a018 | 2009-05-22 16:53:40 -0400 | [diff] [blame] | 191 | .dev = { |
| 192 | .coherent_dma_mask = 0xffffffff, |
| 193 | }, |
Lennert Buytenhek | 9dd0b19 | 2008-03-27 14:51:41 -0400 | [diff] [blame] | 194 | }; |
| 195 | |
| 196 | void __init orion5x_eth_init(struct mv643xx_eth_platform_data *eth_data) |
| 197 | { |
Lennert Buytenhek | fa3959f | 2008-04-24 01:27:02 +0200 | [diff] [blame] | 198 | eth_data->shared = &orion5x_eth_shared; |
Lennert Buytenhek | 9dd0b19 | 2008-03-27 14:51:41 -0400 | [diff] [blame] | 199 | orion5x_eth.dev.platform_data = eth_data; |
Lennert Buytenhek | fa3959f | 2008-04-24 01:27:02 +0200 | [diff] [blame] | 200 | |
Lennert Buytenhek | 9dd0b19 | 2008-03-27 14:51:41 -0400 | [diff] [blame] | 201 | platform_device_register(&orion5x_eth_shared); |
| 202 | platform_device_register(&orion5x_eth); |
| 203 | } |
| 204 | |
Lennert Buytenhek | 9dd0b19 | 2008-03-27 14:51:41 -0400 | [diff] [blame] | 205 | |
Lennert Buytenhek | 044f6c7 | 2008-04-22 05:37:12 +0200 | [diff] [blame] | 206 | /***************************************************************************** |
Lennert Buytenhek | dcf1cec | 2008-09-25 16:23:48 +0200 | [diff] [blame] | 207 | * Ethernet switch |
| 208 | ****************************************************************************/ |
| 209 | static struct resource orion5x_switch_resources[] = { |
| 210 | { |
| 211 | .start = 0, |
| 212 | .end = 0, |
| 213 | .flags = IORESOURCE_IRQ, |
| 214 | }, |
| 215 | }; |
| 216 | |
| 217 | static struct platform_device orion5x_switch_device = { |
| 218 | .name = "dsa", |
| 219 | .id = 0, |
| 220 | .num_resources = 0, |
| 221 | .resource = orion5x_switch_resources, |
| 222 | }; |
| 223 | |
| 224 | void __init orion5x_eth_switch_init(struct dsa_platform_data *d, int irq) |
| 225 | { |
Lennert Buytenhek | e84665c | 2009-03-20 09:52:09 +0000 | [diff] [blame] | 226 | int i; |
| 227 | |
Lennert Buytenhek | dcf1cec | 2008-09-25 16:23:48 +0200 | [diff] [blame] | 228 | if (irq != NO_IRQ) { |
| 229 | orion5x_switch_resources[0].start = irq; |
| 230 | orion5x_switch_resources[0].end = irq; |
| 231 | orion5x_switch_device.num_resources = 1; |
| 232 | } |
| 233 | |
Lennert Buytenhek | dcf1cec | 2008-09-25 16:23:48 +0200 | [diff] [blame] | 234 | d->netdev = &orion5x_eth.dev; |
Lennert Buytenhek | e84665c | 2009-03-20 09:52:09 +0000 | [diff] [blame] | 235 | for (i = 0; i < d->nr_chips; i++) |
| 236 | d->chip[i].mii_bus = &orion5x_eth_shared.dev; |
Lennert Buytenhek | dcf1cec | 2008-09-25 16:23:48 +0200 | [diff] [blame] | 237 | orion5x_switch_device.dev.platform_data = d; |
| 238 | |
| 239 | platform_device_register(&orion5x_switch_device); |
| 240 | } |
| 241 | |
| 242 | |
| 243 | /***************************************************************************** |
Lennert Buytenhek | 044f6c7 | 2008-04-22 05:37:12 +0200 | [diff] [blame] | 244 | * I2C |
| 245 | ****************************************************************************/ |
Lennert Buytenhek | 9dd0b19 | 2008-03-27 14:51:41 -0400 | [diff] [blame] | 246 | static struct mv64xxx_i2c_pdata orion5x_i2c_pdata = { |
| 247 | .freq_m = 8, /* assumes 166 MHz TCLK */ |
| 248 | .freq_n = 3, |
| 249 | .timeout = 1000, /* Default timeout of 1 second */ |
| 250 | }; |
| 251 | |
| 252 | static struct resource orion5x_i2c_resources[] = { |
| 253 | { |
Lennert Buytenhek | e7068ad | 2008-05-10 16:30:01 +0200 | [diff] [blame] | 254 | .start = I2C_PHYS_BASE, |
Lennert Buytenhek | 044f6c7 | 2008-04-22 05:37:12 +0200 | [diff] [blame] | 255 | .end = I2C_PHYS_BASE + 0x1f, |
Lennert Buytenhek | e7068ad | 2008-05-10 16:30:01 +0200 | [diff] [blame] | 256 | .flags = IORESOURCE_MEM, |
| 257 | }, { |
Lennert Buytenhek | e7068ad | 2008-05-10 16:30:01 +0200 | [diff] [blame] | 258 | .start = IRQ_ORION5X_I2C, |
| 259 | .end = IRQ_ORION5X_I2C, |
| 260 | .flags = IORESOURCE_IRQ, |
Lennert Buytenhek | 9dd0b19 | 2008-03-27 14:51:41 -0400 | [diff] [blame] | 261 | }, |
| 262 | }; |
| 263 | |
| 264 | static struct platform_device orion5x_i2c = { |
| 265 | .name = MV64XXX_I2C_CTLR_NAME, |
| 266 | .id = 0, |
| 267 | .num_resources = ARRAY_SIZE(orion5x_i2c_resources), |
| 268 | .resource = orion5x_i2c_resources, |
| 269 | .dev = { |
Lennert Buytenhek | e7068ad | 2008-05-10 16:30:01 +0200 | [diff] [blame] | 270 | .platform_data = &orion5x_i2c_pdata, |
Lennert Buytenhek | 9dd0b19 | 2008-03-27 14:51:41 -0400 | [diff] [blame] | 271 | }, |
| 272 | }; |
| 273 | |
Lennert Buytenhek | 044f6c7 | 2008-04-22 05:37:12 +0200 | [diff] [blame] | 274 | void __init orion5x_i2c_init(void) |
| 275 | { |
| 276 | platform_device_register(&orion5x_i2c); |
| 277 | } |
| 278 | |
| 279 | |
Lennert Buytenhek | 9dd0b19 | 2008-03-27 14:51:41 -0400 | [diff] [blame] | 280 | /***************************************************************************** |
Lennert Buytenhek | 044f6c7 | 2008-04-22 05:37:12 +0200 | [diff] [blame] | 281 | * SATA |
Lennert Buytenhek | 9dd0b19 | 2008-03-27 14:51:41 -0400 | [diff] [blame] | 282 | ****************************************************************************/ |
| 283 | static struct resource orion5x_sata_resources[] = { |
Lennert Buytenhek | 9dd0b19 | 2008-03-27 14:51:41 -0400 | [diff] [blame] | 284 | { |
Lennert Buytenhek | e7068ad | 2008-05-10 16:30:01 +0200 | [diff] [blame] | 285 | .name = "sata base", |
| 286 | .start = ORION5X_SATA_PHYS_BASE, |
| 287 | .end = ORION5X_SATA_PHYS_BASE + 0x5000 - 1, |
| 288 | .flags = IORESOURCE_MEM, |
| 289 | }, { |
| 290 | .name = "sata irq", |
| 291 | .start = IRQ_ORION5X_SATA, |
| 292 | .end = IRQ_ORION5X_SATA, |
| 293 | .flags = IORESOURCE_IRQ, |
| 294 | }, |
Lennert Buytenhek | 9dd0b19 | 2008-03-27 14:51:41 -0400 | [diff] [blame] | 295 | }; |
| 296 | |
| 297 | static struct platform_device orion5x_sata = { |
Lennert Buytenhek | e7068ad | 2008-05-10 16:30:01 +0200 | [diff] [blame] | 298 | .name = "sata_mv", |
| 299 | .id = 0, |
Lennert Buytenhek | 9dd0b19 | 2008-03-27 14:51:41 -0400 | [diff] [blame] | 300 | .dev = { |
| 301 | .coherent_dma_mask = 0xffffffff, |
| 302 | }, |
Lennert Buytenhek | e7068ad | 2008-05-10 16:30:01 +0200 | [diff] [blame] | 303 | .num_resources = ARRAY_SIZE(orion5x_sata_resources), |
| 304 | .resource = orion5x_sata_resources, |
Lennert Buytenhek | 9dd0b19 | 2008-03-27 14:51:41 -0400 | [diff] [blame] | 305 | }; |
| 306 | |
| 307 | void __init orion5x_sata_init(struct mv_sata_platform_data *sata_data) |
| 308 | { |
| 309 | sata_data->dram = &orion5x_mbus_dram_info; |
| 310 | orion5x_sata.dev.platform_data = sata_data; |
| 311 | platform_device_register(&orion5x_sata); |
| 312 | } |
| 313 | |
Lennert Buytenhek | 044f6c7 | 2008-04-22 05:37:12 +0200 | [diff] [blame] | 314 | |
| 315 | /***************************************************************************** |
Lennert Buytenhek | d323ade | 2008-08-29 06:55:06 +0200 | [diff] [blame] | 316 | * SPI |
| 317 | ****************************************************************************/ |
| 318 | static struct orion_spi_info orion5x_spi_plat_data = { |
Nicolas Pitre | c0e1936 | 2008-10-19 14:18:25 -0400 | [diff] [blame] | 319 | .tclk = 0, |
| 320 | .enable_clock_fix = 1, |
Lennert Buytenhek | d323ade | 2008-08-29 06:55:06 +0200 | [diff] [blame] | 321 | }; |
| 322 | |
| 323 | static struct resource orion5x_spi_resources[] = { |
| 324 | { |
| 325 | .name = "spi base", |
| 326 | .start = SPI_PHYS_BASE, |
| 327 | .end = SPI_PHYS_BASE + 0x1f, |
| 328 | .flags = IORESOURCE_MEM, |
| 329 | }, |
| 330 | }; |
| 331 | |
| 332 | static struct platform_device orion5x_spi = { |
| 333 | .name = "orion_spi", |
| 334 | .id = 0, |
| 335 | .dev = { |
| 336 | .platform_data = &orion5x_spi_plat_data, |
| 337 | }, |
| 338 | .num_resources = ARRAY_SIZE(orion5x_spi_resources), |
| 339 | .resource = orion5x_spi_resources, |
| 340 | }; |
| 341 | |
| 342 | void __init orion5x_spi_init() |
| 343 | { |
| 344 | platform_device_register(&orion5x_spi); |
| 345 | } |
| 346 | |
| 347 | |
| 348 | /***************************************************************************** |
Lennert Buytenhek | 044f6c7 | 2008-04-22 05:37:12 +0200 | [diff] [blame] | 349 | * UART0 |
| 350 | ****************************************************************************/ |
| 351 | static struct plat_serial8250_port orion5x_uart0_data[] = { |
| 352 | { |
| 353 | .mapbase = UART0_PHYS_BASE, |
| 354 | .membase = (char *)UART0_VIRT_BASE, |
| 355 | .irq = IRQ_ORION5X_UART0, |
| 356 | .flags = UPF_SKIP_TEST | UPF_BOOT_AUTOCONF, |
| 357 | .iotype = UPIO_MEM, |
| 358 | .regshift = 2, |
Lennert Buytenhek | ebe35af | 2008-08-29 05:55:51 +0200 | [diff] [blame] | 359 | .uartclk = 0, |
Lennert Buytenhek | 044f6c7 | 2008-04-22 05:37:12 +0200 | [diff] [blame] | 360 | }, { |
| 361 | }, |
| 362 | }; |
| 363 | |
| 364 | static struct resource orion5x_uart0_resources[] = { |
| 365 | { |
| 366 | .start = UART0_PHYS_BASE, |
| 367 | .end = UART0_PHYS_BASE + 0xff, |
| 368 | .flags = IORESOURCE_MEM, |
| 369 | }, { |
| 370 | .start = IRQ_ORION5X_UART0, |
| 371 | .end = IRQ_ORION5X_UART0, |
| 372 | .flags = IORESOURCE_IRQ, |
| 373 | }, |
| 374 | }; |
| 375 | |
| 376 | static struct platform_device orion5x_uart0 = { |
| 377 | .name = "serial8250", |
| 378 | .id = PLAT8250_DEV_PLATFORM, |
| 379 | .dev = { |
| 380 | .platform_data = orion5x_uart0_data, |
| 381 | }, |
| 382 | .resource = orion5x_uart0_resources, |
| 383 | .num_resources = ARRAY_SIZE(orion5x_uart0_resources), |
| 384 | }; |
| 385 | |
| 386 | void __init orion5x_uart0_init(void) |
| 387 | { |
| 388 | platform_device_register(&orion5x_uart0); |
| 389 | } |
| 390 | |
| 391 | |
| 392 | /***************************************************************************** |
| 393 | * UART1 |
| 394 | ****************************************************************************/ |
| 395 | static struct plat_serial8250_port orion5x_uart1_data[] = { |
| 396 | { |
| 397 | .mapbase = UART1_PHYS_BASE, |
| 398 | .membase = (char *)UART1_VIRT_BASE, |
| 399 | .irq = IRQ_ORION5X_UART1, |
| 400 | .flags = UPF_SKIP_TEST | UPF_BOOT_AUTOCONF, |
| 401 | .iotype = UPIO_MEM, |
| 402 | .regshift = 2, |
Lennert Buytenhek | ebe35af | 2008-08-29 05:55:51 +0200 | [diff] [blame] | 403 | .uartclk = 0, |
Lennert Buytenhek | 044f6c7 | 2008-04-22 05:37:12 +0200 | [diff] [blame] | 404 | }, { |
| 405 | }, |
| 406 | }; |
| 407 | |
| 408 | static struct resource orion5x_uart1_resources[] = { |
| 409 | { |
| 410 | .start = UART1_PHYS_BASE, |
| 411 | .end = UART1_PHYS_BASE + 0xff, |
| 412 | .flags = IORESOURCE_MEM, |
| 413 | }, { |
| 414 | .start = IRQ_ORION5X_UART1, |
| 415 | .end = IRQ_ORION5X_UART1, |
| 416 | .flags = IORESOURCE_IRQ, |
| 417 | }, |
| 418 | }; |
| 419 | |
| 420 | static struct platform_device orion5x_uart1 = { |
| 421 | .name = "serial8250", |
| 422 | .id = PLAT8250_DEV_PLATFORM1, |
| 423 | .dev = { |
| 424 | .platform_data = orion5x_uart1_data, |
| 425 | }, |
| 426 | .resource = orion5x_uart1_resources, |
| 427 | .num_resources = ARRAY_SIZE(orion5x_uart1_resources), |
| 428 | }; |
| 429 | |
| 430 | void __init orion5x_uart1_init(void) |
| 431 | { |
| 432 | platform_device_register(&orion5x_uart1); |
| 433 | } |
| 434 | |
| 435 | |
Lennert Buytenhek | 9dd0b19 | 2008-03-27 14:51:41 -0400 | [diff] [blame] | 436 | /***************************************************************************** |
Saeed Bishara | 1d5a1a6 | 2008-06-16 23:25:12 -1100 | [diff] [blame] | 437 | * XOR engine |
| 438 | ****************************************************************************/ |
Saeed Bishara | f45964e | 2009-03-02 17:30:36 +0200 | [diff] [blame] | 439 | struct mv_xor_platform_shared_data orion5x_xor_shared_data = { |
| 440 | .dram = &orion5x_mbus_dram_info, |
| 441 | }; |
| 442 | |
Saeed Bishara | 1d5a1a6 | 2008-06-16 23:25:12 -1100 | [diff] [blame] | 443 | static struct resource orion5x_xor_shared_resources[] = { |
| 444 | { |
| 445 | .name = "xor low", |
| 446 | .start = ORION5X_XOR_PHYS_BASE, |
| 447 | .end = ORION5X_XOR_PHYS_BASE + 0xff, |
| 448 | .flags = IORESOURCE_MEM, |
| 449 | }, { |
| 450 | .name = "xor high", |
| 451 | .start = ORION5X_XOR_PHYS_BASE + 0x200, |
| 452 | .end = ORION5X_XOR_PHYS_BASE + 0x2ff, |
| 453 | .flags = IORESOURCE_MEM, |
| 454 | }, |
| 455 | }; |
| 456 | |
| 457 | static struct platform_device orion5x_xor_shared = { |
| 458 | .name = MV_XOR_SHARED_NAME, |
| 459 | .id = 0, |
Saeed Bishara | f45964e | 2009-03-02 17:30:36 +0200 | [diff] [blame] | 460 | .dev = { |
| 461 | .platform_data = &orion5x_xor_shared_data, |
| 462 | }, |
Saeed Bishara | 1d5a1a6 | 2008-06-16 23:25:12 -1100 | [diff] [blame] | 463 | .num_resources = ARRAY_SIZE(orion5x_xor_shared_resources), |
| 464 | .resource = orion5x_xor_shared_resources, |
| 465 | }; |
| 466 | |
Yang Hongyang | 284901a | 2009-04-06 19:01:15 -0700 | [diff] [blame] | 467 | static u64 orion5x_xor_dmamask = DMA_BIT_MASK(32); |
Saeed Bishara | 1d5a1a6 | 2008-06-16 23:25:12 -1100 | [diff] [blame] | 468 | |
| 469 | static struct resource orion5x_xor0_resources[] = { |
| 470 | [0] = { |
| 471 | .start = IRQ_ORION5X_XOR0, |
| 472 | .end = IRQ_ORION5X_XOR0, |
| 473 | .flags = IORESOURCE_IRQ, |
| 474 | }, |
| 475 | }; |
| 476 | |
| 477 | static struct mv_xor_platform_data orion5x_xor0_data = { |
| 478 | .shared = &orion5x_xor_shared, |
| 479 | .hw_id = 0, |
| 480 | .pool_size = PAGE_SIZE, |
| 481 | }; |
| 482 | |
| 483 | static struct platform_device orion5x_xor0_channel = { |
| 484 | .name = MV_XOR_NAME, |
| 485 | .id = 0, |
| 486 | .num_resources = ARRAY_SIZE(orion5x_xor0_resources), |
| 487 | .resource = orion5x_xor0_resources, |
| 488 | .dev = { |
| 489 | .dma_mask = &orion5x_xor_dmamask, |
Yang Hongyang | 6a35528 | 2009-04-06 19:01:13 -0700 | [diff] [blame] | 490 | .coherent_dma_mask = DMA_BIT_MASK(64), |
Saeed Bishara | 1d5a1a6 | 2008-06-16 23:25:12 -1100 | [diff] [blame] | 491 | .platform_data = (void *)&orion5x_xor0_data, |
| 492 | }, |
| 493 | }; |
| 494 | |
| 495 | static struct resource orion5x_xor1_resources[] = { |
| 496 | [0] = { |
| 497 | .start = IRQ_ORION5X_XOR1, |
| 498 | .end = IRQ_ORION5X_XOR1, |
| 499 | .flags = IORESOURCE_IRQ, |
| 500 | }, |
| 501 | }; |
| 502 | |
| 503 | static struct mv_xor_platform_data orion5x_xor1_data = { |
| 504 | .shared = &orion5x_xor_shared, |
| 505 | .hw_id = 1, |
| 506 | .pool_size = PAGE_SIZE, |
| 507 | }; |
| 508 | |
| 509 | static struct platform_device orion5x_xor1_channel = { |
| 510 | .name = MV_XOR_NAME, |
| 511 | .id = 1, |
| 512 | .num_resources = ARRAY_SIZE(orion5x_xor1_resources), |
| 513 | .resource = orion5x_xor1_resources, |
| 514 | .dev = { |
| 515 | .dma_mask = &orion5x_xor_dmamask, |
Yang Hongyang | 6a35528 | 2009-04-06 19:01:13 -0700 | [diff] [blame] | 516 | .coherent_dma_mask = DMA_BIT_MASK(64), |
Saeed Bishara | 1d5a1a6 | 2008-06-16 23:25:12 -1100 | [diff] [blame] | 517 | .platform_data = (void *)&orion5x_xor1_data, |
| 518 | }, |
| 519 | }; |
| 520 | |
| 521 | void __init orion5x_xor_init(void) |
| 522 | { |
| 523 | platform_device_register(&orion5x_xor_shared); |
| 524 | |
| 525 | /* |
| 526 | * two engines can't do memset simultaneously, this limitation |
| 527 | * satisfied by removing memset support from one of the engines. |
| 528 | */ |
| 529 | dma_cap_set(DMA_MEMCPY, orion5x_xor0_data.cap_mask); |
| 530 | dma_cap_set(DMA_XOR, orion5x_xor0_data.cap_mask); |
| 531 | platform_device_register(&orion5x_xor0_channel); |
| 532 | |
| 533 | dma_cap_set(DMA_MEMCPY, orion5x_xor1_data.cap_mask); |
| 534 | dma_cap_set(DMA_MEMSET, orion5x_xor1_data.cap_mask); |
| 535 | dma_cap_set(DMA_XOR, orion5x_xor1_data.cap_mask); |
| 536 | platform_device_register(&orion5x_xor1_channel); |
| 537 | } |
| 538 | |
Sebastian Andrzej Siewior | 3a8f744 | 2009-05-07 22:59:24 +0200 | [diff] [blame] | 539 | static struct resource orion5x_crypto_res[] = { |
| 540 | { |
| 541 | .name = "regs", |
| 542 | .start = ORION5X_CRYPTO_PHYS_BASE, |
| 543 | .end = ORION5X_CRYPTO_PHYS_BASE + 0xffff, |
| 544 | .flags = IORESOURCE_MEM, |
| 545 | }, { |
| 546 | .name = "sram", |
| 547 | .start = ORION5X_SRAM_PHYS_BASE, |
| 548 | .end = ORION5X_SRAM_PHYS_BASE + SZ_8K - 1, |
| 549 | .flags = IORESOURCE_MEM, |
| 550 | }, { |
| 551 | .name = "crypto interrupt", |
| 552 | .start = IRQ_ORION5X_CESA, |
| 553 | .end = IRQ_ORION5X_CESA, |
| 554 | .flags = IORESOURCE_IRQ, |
| 555 | }, |
| 556 | }; |
| 557 | |
| 558 | static struct platform_device orion5x_crypto_device = { |
| 559 | .name = "mv_crypto", |
| 560 | .id = -1, |
| 561 | .num_resources = ARRAY_SIZE(orion5x_crypto_res), |
| 562 | .resource = orion5x_crypto_res, |
| 563 | }; |
| 564 | |
Nicolas Pitre | 3fade49 | 2009-06-11 22:27:20 +0200 | [diff] [blame] | 565 | static int __init orion5x_crypto_init(void) |
Sebastian Andrzej Siewior | 3a8f744 | 2009-05-07 22:59:24 +0200 | [diff] [blame] | 566 | { |
| 567 | int ret; |
| 568 | |
| 569 | ret = orion5x_setup_sram_win(); |
| 570 | if (ret) |
| 571 | return ret; |
| 572 | |
| 573 | return platform_device_register(&orion5x_crypto_device); |
| 574 | } |
Saeed Bishara | 1d5a1a6 | 2008-06-16 23:25:12 -1100 | [diff] [blame] | 575 | |
| 576 | /***************************************************************************** |
Thomas Reitmayr | 9e058d4 | 2009-02-24 14:59:22 -0800 | [diff] [blame] | 577 | * Watchdog |
| 578 | ****************************************************************************/ |
Nicolas Pitre | 3b937a7 | 2009-06-01 13:56:02 -0400 | [diff] [blame] | 579 | static struct orion_wdt_platform_data orion5x_wdt_data = { |
Thomas Reitmayr | 9e058d4 | 2009-02-24 14:59:22 -0800 | [diff] [blame] | 580 | .tclk = 0, |
| 581 | }; |
| 582 | |
| 583 | static struct platform_device orion5x_wdt_device = { |
Nicolas Pitre | 3b937a7 | 2009-06-01 13:56:02 -0400 | [diff] [blame] | 584 | .name = "orion_wdt", |
Thomas Reitmayr | 9e058d4 | 2009-02-24 14:59:22 -0800 | [diff] [blame] | 585 | .id = -1, |
| 586 | .dev = { |
| 587 | .platform_data = &orion5x_wdt_data, |
| 588 | }, |
| 589 | .num_resources = 0, |
| 590 | }; |
| 591 | |
| 592 | void __init orion5x_wdt_init(void) |
| 593 | { |
| 594 | orion5x_wdt_data.tclk = orion5x_tclk; |
| 595 | platform_device_register(&orion5x_wdt_device); |
| 596 | } |
| 597 | |
| 598 | |
| 599 | /***************************************************************************** |
Lennert Buytenhek | 9dd0b19 | 2008-03-27 14:51:41 -0400 | [diff] [blame] | 600 | * Time handling |
| 601 | ****************************************************************************/ |
Lennert Buytenhek | ebe35af | 2008-08-29 05:55:51 +0200 | [diff] [blame] | 602 | int orion5x_tclk; |
| 603 | |
| 604 | int __init orion5x_find_tclk(void) |
| 605 | { |
Lennert Buytenhek | d323ade | 2008-08-29 06:55:06 +0200 | [diff] [blame] | 606 | u32 dev, rev; |
| 607 | |
| 608 | orion5x_pcie_id(&dev, &rev); |
| 609 | if (dev == MV88F6183_DEV_ID && |
| 610 | (readl(MPP_RESET_SAMPLE) & 0x00000200) == 0) |
| 611 | return 133333333; |
| 612 | |
Lennert Buytenhek | ebe35af | 2008-08-29 05:55:51 +0200 | [diff] [blame] | 613 | return 166666667; |
| 614 | } |
| 615 | |
Lennert Buytenhek | 9dd0b19 | 2008-03-27 14:51:41 -0400 | [diff] [blame] | 616 | static void orion5x_timer_init(void) |
| 617 | { |
Lennert Buytenhek | ebe35af | 2008-08-29 05:55:51 +0200 | [diff] [blame] | 618 | orion5x_tclk = orion5x_find_tclk(); |
| 619 | orion_time_init(IRQ_ORION5X_BRIDGE, orion5x_tclk); |
Lennert Buytenhek | 9dd0b19 | 2008-03-27 14:51:41 -0400 | [diff] [blame] | 620 | } |
| 621 | |
| 622 | struct sys_timer orion5x_timer = { |
Lennert Buytenhek | e7068ad | 2008-05-10 16:30:01 +0200 | [diff] [blame] | 623 | .init = orion5x_timer_init, |
Lennert Buytenhek | 9dd0b19 | 2008-03-27 14:51:41 -0400 | [diff] [blame] | 624 | }; |
| 625 | |
Lennert Buytenhek | 044f6c7 | 2008-04-22 05:37:12 +0200 | [diff] [blame] | 626 | |
Lennert Buytenhek | 9dd0b19 | 2008-03-27 14:51:41 -0400 | [diff] [blame] | 627 | /***************************************************************************** |
| 628 | * General |
| 629 | ****************************************************************************/ |
Lennert Buytenhek | 9dd0b19 | 2008-03-27 14:51:41 -0400 | [diff] [blame] | 630 | /* |
Lennert Buytenhek | b46926b | 2008-04-25 16:31:32 -0400 | [diff] [blame] | 631 | * Identify device ID and rev from PCIe configuration header space '0'. |
Lennert Buytenhek | 9dd0b19 | 2008-03-27 14:51:41 -0400 | [diff] [blame] | 632 | */ |
| 633 | static void __init orion5x_id(u32 *dev, u32 *rev, char **dev_name) |
| 634 | { |
| 635 | orion5x_pcie_id(dev, rev); |
| 636 | |
| 637 | if (*dev == MV88F5281_DEV_ID) { |
| 638 | if (*rev == MV88F5281_REV_D2) { |
| 639 | *dev_name = "MV88F5281-D2"; |
| 640 | } else if (*rev == MV88F5281_REV_D1) { |
| 641 | *dev_name = "MV88F5281-D1"; |
Lennert Buytenhek | ce72e36e | 2008-08-09 15:17:27 +0200 | [diff] [blame] | 642 | } else if (*rev == MV88F5281_REV_D0) { |
| 643 | *dev_name = "MV88F5281-D0"; |
Lennert Buytenhek | 9dd0b19 | 2008-03-27 14:51:41 -0400 | [diff] [blame] | 644 | } else { |
| 645 | *dev_name = "MV88F5281-Rev-Unsupported"; |
| 646 | } |
| 647 | } else if (*dev == MV88F5182_DEV_ID) { |
| 648 | if (*rev == MV88F5182_REV_A2) { |
| 649 | *dev_name = "MV88F5182-A2"; |
| 650 | } else { |
| 651 | *dev_name = "MV88F5182-Rev-Unsupported"; |
| 652 | } |
| 653 | } else if (*dev == MV88F5181_DEV_ID) { |
| 654 | if (*rev == MV88F5181_REV_B1) { |
| 655 | *dev_name = "MV88F5181-Rev-B1"; |
Lennert Buytenhek | d2b2a6b | 2008-05-31 08:30:40 +0200 | [diff] [blame] | 656 | } else if (*rev == MV88F5181L_REV_A1) { |
| 657 | *dev_name = "MV88F5181L-Rev-A1"; |
Lennert Buytenhek | 9dd0b19 | 2008-03-27 14:51:41 -0400 | [diff] [blame] | 658 | } else { |
Lennert Buytenhek | d2b2a6b | 2008-05-31 08:30:40 +0200 | [diff] [blame] | 659 | *dev_name = "MV88F5181(L)-Rev-Unsupported"; |
Lennert Buytenhek | 9dd0b19 | 2008-03-27 14:51:41 -0400 | [diff] [blame] | 660 | } |
Lennert Buytenhek | d323ade | 2008-08-29 06:55:06 +0200 | [diff] [blame] | 661 | } else if (*dev == MV88F6183_DEV_ID) { |
| 662 | if (*rev == MV88F6183_REV_B0) { |
| 663 | *dev_name = "MV88F6183-Rev-B0"; |
| 664 | } else { |
| 665 | *dev_name = "MV88F6183-Rev-Unsupported"; |
| 666 | } |
Lennert Buytenhek | 9dd0b19 | 2008-03-27 14:51:41 -0400 | [diff] [blame] | 667 | } else { |
| 668 | *dev_name = "Device-Unknown"; |
| 669 | } |
| 670 | } |
| 671 | |
| 672 | void __init orion5x_init(void) |
| 673 | { |
| 674 | char *dev_name; |
| 675 | u32 dev, rev; |
| 676 | |
| 677 | orion5x_id(&dev, &rev, &dev_name); |
Lennert Buytenhek | ebe35af | 2008-08-29 05:55:51 +0200 | [diff] [blame] | 678 | printk(KERN_INFO "Orion ID: %s. TCLK=%d.\n", dev_name, orion5x_tclk); |
| 679 | |
| 680 | orion5x_eth_shared_data.t_clk = orion5x_tclk; |
Lennert Buytenhek | d323ade | 2008-08-29 06:55:06 +0200 | [diff] [blame] | 681 | orion5x_spi_plat_data.tclk = orion5x_tclk; |
Lennert Buytenhek | ebe35af | 2008-08-29 05:55:51 +0200 | [diff] [blame] | 682 | orion5x_uart0_data[0].uartclk = orion5x_tclk; |
| 683 | orion5x_uart1_data[0].uartclk = orion5x_tclk; |
Lennert Buytenhek | 9dd0b19 | 2008-03-27 14:51:41 -0400 | [diff] [blame] | 684 | |
| 685 | /* |
| 686 | * Setup Orion address map |
| 687 | */ |
| 688 | orion5x_setup_cpu_mbus_bridge(); |
Lennert Buytenhek | ce72e36e | 2008-08-09 15:17:27 +0200 | [diff] [blame] | 689 | |
| 690 | /* |
| 691 | * Don't issue "Wait for Interrupt" instruction if we are |
| 692 | * running on D0 5281 silicon. |
| 693 | */ |
| 694 | if (dev == MV88F5281_DEV_ID && rev == MV88F5281_REV_D0) { |
| 695 | printk(KERN_INFO "Orion: Applying 5281 D0 WFI workaround.\n"); |
| 696 | disable_hlt(); |
| 697 | } |
Thomas Reitmayr | 9e058d4 | 2009-02-24 14:59:22 -0800 | [diff] [blame] | 698 | |
| 699 | /* |
Nicolas Pitre | 3fade49 | 2009-06-11 22:27:20 +0200 | [diff] [blame] | 700 | * The 5082/5181l/5182/6082/6082l/6183 have crypto |
| 701 | * while 5180n/5181/5281 don't have crypto. |
| 702 | */ |
| 703 | if ((dev == MV88F5181_DEV_ID && rev >= MV88F5181L_REV_A0) || |
| 704 | dev == MV88F5182_DEV_ID || dev == MV88F6183_DEV_ID) |
| 705 | orion5x_crypto_init(); |
| 706 | |
| 707 | /* |
Thomas Reitmayr | 9e058d4 | 2009-02-24 14:59:22 -0800 | [diff] [blame] | 708 | * Register watchdog driver |
| 709 | */ |
| 710 | orion5x_wdt_init(); |
Lennert Buytenhek | 9dd0b19 | 2008-03-27 14:51:41 -0400 | [diff] [blame] | 711 | } |
| 712 | |
| 713 | /* |
| 714 | * Many orion-based systems have buggy bootloader implementations. |
| 715 | * This is a common fixup for bogus memory tags. |
| 716 | */ |
| 717 | void __init tag_fixup_mem32(struct machine_desc *mdesc, struct tag *t, |
| 718 | char **from, struct meminfo *meminfo) |
| 719 | { |
| 720 | for (; t->hdr.size; t = tag_next(t)) |
| 721 | if (t->hdr.tag == ATAG_MEM && |
| 722 | (!t->u.mem.size || t->u.mem.size & ~PAGE_MASK || |
| 723 | t->u.mem.start & ~PAGE_MASK)) { |
| 724 | printk(KERN_WARNING |
| 725 | "Clearing invalid memory bank %dKB@0x%08x\n", |
| 726 | t->u.mem.size / 1024, t->u.mem.start); |
| 727 | t->hdr.tag = 0; |
| 728 | } |
| 729 | } |