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> |
| 21 | #include <asm/page.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> |
| 32 | #include "common.h" |
| 33 | |
| 34 | /***************************************************************************** |
| 35 | * I/O Address Mapping |
| 36 | ****************************************************************************/ |
| 37 | static struct map_desc orion5x_io_desc[] __initdata = { |
| 38 | { |
| 39 | .virtual = ORION5X_REGS_VIRT_BASE, |
| 40 | .pfn = __phys_to_pfn(ORION5X_REGS_PHYS_BASE), |
| 41 | .length = ORION5X_REGS_SIZE, |
Lennert Buytenhek | e7068ad | 2008-05-10 16:30:01 +0200 | [diff] [blame] | 42 | .type = MT_DEVICE, |
| 43 | }, { |
Lennert Buytenhek | 9dd0b19 | 2008-03-27 14:51:41 -0400 | [diff] [blame] | 44 | .virtual = ORION5X_PCIE_IO_VIRT_BASE, |
| 45 | .pfn = __phys_to_pfn(ORION5X_PCIE_IO_PHYS_BASE), |
| 46 | .length = ORION5X_PCIE_IO_SIZE, |
Lennert Buytenhek | e7068ad | 2008-05-10 16:30:01 +0200 | [diff] [blame] | 47 | .type = MT_DEVICE, |
| 48 | }, { |
Lennert Buytenhek | 9dd0b19 | 2008-03-27 14:51:41 -0400 | [diff] [blame] | 49 | .virtual = ORION5X_PCI_IO_VIRT_BASE, |
| 50 | .pfn = __phys_to_pfn(ORION5X_PCI_IO_PHYS_BASE), |
| 51 | .length = ORION5X_PCI_IO_SIZE, |
Lennert Buytenhek | e7068ad | 2008-05-10 16:30:01 +0200 | [diff] [blame] | 52 | .type = MT_DEVICE, |
| 53 | }, { |
Lennert Buytenhek | 9dd0b19 | 2008-03-27 14:51:41 -0400 | [diff] [blame] | 54 | .virtual = ORION5X_PCIE_WA_VIRT_BASE, |
| 55 | .pfn = __phys_to_pfn(ORION5X_PCIE_WA_PHYS_BASE), |
| 56 | .length = ORION5X_PCIE_WA_SIZE, |
Lennert Buytenhek | e7068ad | 2008-05-10 16:30:01 +0200 | [diff] [blame] | 57 | .type = MT_DEVICE, |
Lennert Buytenhek | 9dd0b19 | 2008-03-27 14:51:41 -0400 | [diff] [blame] | 58 | }, |
| 59 | }; |
| 60 | |
| 61 | void __init orion5x_map_io(void) |
| 62 | { |
| 63 | iotable_init(orion5x_io_desc, ARRAY_SIZE(orion5x_io_desc)); |
| 64 | } |
| 65 | |
Lennert Buytenhek | 044f6c7 | 2008-04-22 05:37:12 +0200 | [diff] [blame] | 66 | |
Lennert Buytenhek | 9dd0b19 | 2008-03-27 14:51:41 -0400 | [diff] [blame] | 67 | /***************************************************************************** |
Lennert Buytenhek | 044f6c7 | 2008-04-22 05:37:12 +0200 | [diff] [blame] | 68 | * EHCI |
Lennert Buytenhek | 9dd0b19 | 2008-03-27 14:51:41 -0400 | [diff] [blame] | 69 | ****************************************************************************/ |
Lennert Buytenhek | 044f6c7 | 2008-04-22 05:37:12 +0200 | [diff] [blame] | 70 | static struct orion_ehci_data orion5x_ehci_data = { |
| 71 | .dram = &orion5x_mbus_dram_info, |
Lennert Buytenhek | 9dd0b19 | 2008-03-27 14:51:41 -0400 | [diff] [blame] | 72 | }; |
| 73 | |
Lennert Buytenhek | 044f6c7 | 2008-04-22 05:37:12 +0200 | [diff] [blame] | 74 | static u64 ehci_dmamask = 0xffffffffUL; |
Lennert Buytenhek | 9dd0b19 | 2008-03-27 14:51:41 -0400 | [diff] [blame] | 75 | |
Lennert Buytenhek | 9dd0b19 | 2008-03-27 14:51:41 -0400 | [diff] [blame] | 76 | |
Lennert Buytenhek | 044f6c7 | 2008-04-22 05:37:12 +0200 | [diff] [blame] | 77 | /***************************************************************************** |
| 78 | * EHCI0 |
| 79 | ****************************************************************************/ |
Lennert Buytenhek | 9dd0b19 | 2008-03-27 14:51:41 -0400 | [diff] [blame] | 80 | static struct resource orion5x_ehci0_resources[] = { |
| 81 | { |
| 82 | .start = ORION5X_USB0_PHYS_BASE, |
Lennert Buytenhek | 994cab8 | 2008-04-25 16:30:21 -0400 | [diff] [blame] | 83 | .end = ORION5X_USB0_PHYS_BASE + SZ_4K - 1, |
Lennert Buytenhek | 9dd0b19 | 2008-03-27 14:51:41 -0400 | [diff] [blame] | 84 | .flags = IORESOURCE_MEM, |
Lennert Buytenhek | e7068ad | 2008-05-10 16:30:01 +0200 | [diff] [blame] | 85 | }, { |
Lennert Buytenhek | 9dd0b19 | 2008-03-27 14:51:41 -0400 | [diff] [blame] | 86 | .start = IRQ_ORION5X_USB0_CTRL, |
| 87 | .end = IRQ_ORION5X_USB0_CTRL, |
| 88 | .flags = IORESOURCE_IRQ, |
| 89 | }, |
| 90 | }; |
| 91 | |
Lennert Buytenhek | 9dd0b19 | 2008-03-27 14:51:41 -0400 | [diff] [blame] | 92 | static struct platform_device orion5x_ehci0 = { |
| 93 | .name = "orion-ehci", |
| 94 | .id = 0, |
| 95 | .dev = { |
| 96 | .dma_mask = &ehci_dmamask, |
| 97 | .coherent_dma_mask = 0xffffffff, |
| 98 | .platform_data = &orion5x_ehci_data, |
| 99 | }, |
| 100 | .resource = orion5x_ehci0_resources, |
| 101 | .num_resources = ARRAY_SIZE(orion5x_ehci0_resources), |
| 102 | }; |
| 103 | |
Lennert Buytenhek | 044f6c7 | 2008-04-22 05:37:12 +0200 | [diff] [blame] | 104 | void __init orion5x_ehci0_init(void) |
| 105 | { |
| 106 | platform_device_register(&orion5x_ehci0); |
| 107 | } |
| 108 | |
| 109 | |
| 110 | /***************************************************************************** |
| 111 | * EHCI1 |
| 112 | ****************************************************************************/ |
| 113 | static struct resource orion5x_ehci1_resources[] = { |
| 114 | { |
| 115 | .start = ORION5X_USB1_PHYS_BASE, |
| 116 | .end = ORION5X_USB1_PHYS_BASE + SZ_4K - 1, |
| 117 | .flags = IORESOURCE_MEM, |
| 118 | }, { |
| 119 | .start = IRQ_ORION5X_USB1_CTRL, |
| 120 | .end = IRQ_ORION5X_USB1_CTRL, |
| 121 | .flags = IORESOURCE_IRQ, |
| 122 | }, |
| 123 | }; |
| 124 | |
Lennert Buytenhek | 9dd0b19 | 2008-03-27 14:51:41 -0400 | [diff] [blame] | 125 | static struct platform_device orion5x_ehci1 = { |
| 126 | .name = "orion-ehci", |
| 127 | .id = 1, |
| 128 | .dev = { |
| 129 | .dma_mask = &ehci_dmamask, |
| 130 | .coherent_dma_mask = 0xffffffff, |
| 131 | .platform_data = &orion5x_ehci_data, |
| 132 | }, |
| 133 | .resource = orion5x_ehci1_resources, |
| 134 | .num_resources = ARRAY_SIZE(orion5x_ehci1_resources), |
| 135 | }; |
| 136 | |
Lennert Buytenhek | 044f6c7 | 2008-04-22 05:37:12 +0200 | [diff] [blame] | 137 | void __init orion5x_ehci1_init(void) |
| 138 | { |
| 139 | platform_device_register(&orion5x_ehci1); |
| 140 | } |
Lennert Buytenhek | 9dd0b19 | 2008-03-27 14:51:41 -0400 | [diff] [blame] | 141 | |
Lennert Buytenhek | 044f6c7 | 2008-04-22 05:37:12 +0200 | [diff] [blame] | 142 | |
| 143 | /***************************************************************************** |
| 144 | * GigE |
| 145 | ****************************************************************************/ |
Lennert Buytenhek | d236f5a | 2008-04-26 14:48:11 -0400 | [diff] [blame] | 146 | struct mv643xx_eth_shared_platform_data orion5x_eth_shared_data = { |
| 147 | .dram = &orion5x_mbus_dram_info, |
Lennert Buytenhek | b8c15a6 | 2008-04-26 14:48:11 -0400 | [diff] [blame] | 148 | .t_clk = ORION5X_TCLK, |
Lennert Buytenhek | d236f5a | 2008-04-26 14:48:11 -0400 | [diff] [blame] | 149 | }; |
| 150 | |
Lennert Buytenhek | 9dd0b19 | 2008-03-27 14:51:41 -0400 | [diff] [blame] | 151 | static struct resource orion5x_eth_shared_resources[] = { |
| 152 | { |
| 153 | .start = ORION5X_ETH_PHYS_BASE + 0x2000, |
| 154 | .end = ORION5X_ETH_PHYS_BASE + 0x3fff, |
| 155 | .flags = IORESOURCE_MEM, |
| 156 | }, |
| 157 | }; |
| 158 | |
| 159 | static struct platform_device orion5x_eth_shared = { |
| 160 | .name = MV643XX_ETH_SHARED_NAME, |
| 161 | .id = 0, |
Lennert Buytenhek | d236f5a | 2008-04-26 14:48:11 -0400 | [diff] [blame] | 162 | .dev = { |
| 163 | .platform_data = &orion5x_eth_shared_data, |
| 164 | }, |
Lennert Buytenhek | 9dd0b19 | 2008-03-27 14:51:41 -0400 | [diff] [blame] | 165 | .num_resources = 1, |
| 166 | .resource = orion5x_eth_shared_resources, |
| 167 | }; |
| 168 | |
| 169 | static struct resource orion5x_eth_resources[] = { |
| 170 | { |
| 171 | .name = "eth irq", |
| 172 | .start = IRQ_ORION5X_ETH_SUM, |
| 173 | .end = IRQ_ORION5X_ETH_SUM, |
| 174 | .flags = IORESOURCE_IRQ, |
Lennert Buytenhek | e7068ad | 2008-05-10 16:30:01 +0200 | [diff] [blame] | 175 | }, |
Lennert Buytenhek | 9dd0b19 | 2008-03-27 14:51:41 -0400 | [diff] [blame] | 176 | }; |
| 177 | |
| 178 | static struct platform_device orion5x_eth = { |
| 179 | .name = MV643XX_ETH_NAME, |
| 180 | .id = 0, |
| 181 | .num_resources = 1, |
| 182 | .resource = orion5x_eth_resources, |
| 183 | }; |
| 184 | |
| 185 | void __init orion5x_eth_init(struct mv643xx_eth_platform_data *eth_data) |
| 186 | { |
Lennert Buytenhek | fa3959f | 2008-04-24 01:27:02 +0200 | [diff] [blame] | 187 | eth_data->shared = &orion5x_eth_shared; |
Lennert Buytenhek | 9dd0b19 | 2008-03-27 14:51:41 -0400 | [diff] [blame] | 188 | orion5x_eth.dev.platform_data = eth_data; |
Lennert Buytenhek | fa3959f | 2008-04-24 01:27:02 +0200 | [diff] [blame] | 189 | |
Lennert Buytenhek | 9dd0b19 | 2008-03-27 14:51:41 -0400 | [diff] [blame] | 190 | platform_device_register(&orion5x_eth_shared); |
| 191 | platform_device_register(&orion5x_eth); |
| 192 | } |
| 193 | |
Lennert Buytenhek | 9dd0b19 | 2008-03-27 14:51:41 -0400 | [diff] [blame] | 194 | |
Lennert Buytenhek | 044f6c7 | 2008-04-22 05:37:12 +0200 | [diff] [blame] | 195 | /***************************************************************************** |
| 196 | * I2C |
| 197 | ****************************************************************************/ |
Lennert Buytenhek | 9dd0b19 | 2008-03-27 14:51:41 -0400 | [diff] [blame] | 198 | static struct mv64xxx_i2c_pdata orion5x_i2c_pdata = { |
| 199 | .freq_m = 8, /* assumes 166 MHz TCLK */ |
| 200 | .freq_n = 3, |
| 201 | .timeout = 1000, /* Default timeout of 1 second */ |
| 202 | }; |
| 203 | |
| 204 | static struct resource orion5x_i2c_resources[] = { |
| 205 | { |
Lennert Buytenhek | e7068ad | 2008-05-10 16:30:01 +0200 | [diff] [blame] | 206 | .name = "i2c base", |
| 207 | .start = I2C_PHYS_BASE, |
Lennert Buytenhek | 044f6c7 | 2008-04-22 05:37:12 +0200 | [diff] [blame] | 208 | .end = I2C_PHYS_BASE + 0x1f, |
Lennert Buytenhek | e7068ad | 2008-05-10 16:30:01 +0200 | [diff] [blame] | 209 | .flags = IORESOURCE_MEM, |
| 210 | }, { |
| 211 | .name = "i2c irq", |
| 212 | .start = IRQ_ORION5X_I2C, |
| 213 | .end = IRQ_ORION5X_I2C, |
| 214 | .flags = IORESOURCE_IRQ, |
Lennert Buytenhek | 9dd0b19 | 2008-03-27 14:51:41 -0400 | [diff] [blame] | 215 | }, |
| 216 | }; |
| 217 | |
| 218 | static struct platform_device orion5x_i2c = { |
| 219 | .name = MV64XXX_I2C_CTLR_NAME, |
| 220 | .id = 0, |
| 221 | .num_resources = ARRAY_SIZE(orion5x_i2c_resources), |
| 222 | .resource = orion5x_i2c_resources, |
| 223 | .dev = { |
Lennert Buytenhek | e7068ad | 2008-05-10 16:30:01 +0200 | [diff] [blame] | 224 | .platform_data = &orion5x_i2c_pdata, |
Lennert Buytenhek | 9dd0b19 | 2008-03-27 14:51:41 -0400 | [diff] [blame] | 225 | }, |
| 226 | }; |
| 227 | |
Lennert Buytenhek | 044f6c7 | 2008-04-22 05:37:12 +0200 | [diff] [blame] | 228 | void __init orion5x_i2c_init(void) |
| 229 | { |
| 230 | platform_device_register(&orion5x_i2c); |
| 231 | } |
| 232 | |
| 233 | |
Lennert Buytenhek | 9dd0b19 | 2008-03-27 14:51:41 -0400 | [diff] [blame] | 234 | /***************************************************************************** |
Lennert Buytenhek | 044f6c7 | 2008-04-22 05:37:12 +0200 | [diff] [blame] | 235 | * SATA |
Lennert Buytenhek | 9dd0b19 | 2008-03-27 14:51:41 -0400 | [diff] [blame] | 236 | ****************************************************************************/ |
| 237 | static struct resource orion5x_sata_resources[] = { |
Lennert Buytenhek | 9dd0b19 | 2008-03-27 14:51:41 -0400 | [diff] [blame] | 238 | { |
Lennert Buytenhek | e7068ad | 2008-05-10 16:30:01 +0200 | [diff] [blame] | 239 | .name = "sata base", |
| 240 | .start = ORION5X_SATA_PHYS_BASE, |
| 241 | .end = ORION5X_SATA_PHYS_BASE + 0x5000 - 1, |
| 242 | .flags = IORESOURCE_MEM, |
| 243 | }, { |
| 244 | .name = "sata irq", |
| 245 | .start = IRQ_ORION5X_SATA, |
| 246 | .end = IRQ_ORION5X_SATA, |
| 247 | .flags = IORESOURCE_IRQ, |
| 248 | }, |
Lennert Buytenhek | 9dd0b19 | 2008-03-27 14:51:41 -0400 | [diff] [blame] | 249 | }; |
| 250 | |
| 251 | static struct platform_device orion5x_sata = { |
Lennert Buytenhek | e7068ad | 2008-05-10 16:30:01 +0200 | [diff] [blame] | 252 | .name = "sata_mv", |
| 253 | .id = 0, |
Lennert Buytenhek | 9dd0b19 | 2008-03-27 14:51:41 -0400 | [diff] [blame] | 254 | .dev = { |
| 255 | .coherent_dma_mask = 0xffffffff, |
| 256 | }, |
Lennert Buytenhek | e7068ad | 2008-05-10 16:30:01 +0200 | [diff] [blame] | 257 | .num_resources = ARRAY_SIZE(orion5x_sata_resources), |
| 258 | .resource = orion5x_sata_resources, |
Lennert Buytenhek | 9dd0b19 | 2008-03-27 14:51:41 -0400 | [diff] [blame] | 259 | }; |
| 260 | |
| 261 | void __init orion5x_sata_init(struct mv_sata_platform_data *sata_data) |
| 262 | { |
| 263 | sata_data->dram = &orion5x_mbus_dram_info; |
| 264 | orion5x_sata.dev.platform_data = sata_data; |
| 265 | platform_device_register(&orion5x_sata); |
| 266 | } |
| 267 | |
Lennert Buytenhek | 044f6c7 | 2008-04-22 05:37:12 +0200 | [diff] [blame] | 268 | |
| 269 | /***************************************************************************** |
| 270 | * UART0 |
| 271 | ****************************************************************************/ |
| 272 | static struct plat_serial8250_port orion5x_uart0_data[] = { |
| 273 | { |
| 274 | .mapbase = UART0_PHYS_BASE, |
| 275 | .membase = (char *)UART0_VIRT_BASE, |
| 276 | .irq = IRQ_ORION5X_UART0, |
| 277 | .flags = UPF_SKIP_TEST | UPF_BOOT_AUTOCONF, |
| 278 | .iotype = UPIO_MEM, |
| 279 | .regshift = 2, |
| 280 | .uartclk = ORION5X_TCLK, |
| 281 | }, { |
| 282 | }, |
| 283 | }; |
| 284 | |
| 285 | static struct resource orion5x_uart0_resources[] = { |
| 286 | { |
| 287 | .start = UART0_PHYS_BASE, |
| 288 | .end = UART0_PHYS_BASE + 0xff, |
| 289 | .flags = IORESOURCE_MEM, |
| 290 | }, { |
| 291 | .start = IRQ_ORION5X_UART0, |
| 292 | .end = IRQ_ORION5X_UART0, |
| 293 | .flags = IORESOURCE_IRQ, |
| 294 | }, |
| 295 | }; |
| 296 | |
| 297 | static struct platform_device orion5x_uart0 = { |
| 298 | .name = "serial8250", |
| 299 | .id = PLAT8250_DEV_PLATFORM, |
| 300 | .dev = { |
| 301 | .platform_data = orion5x_uart0_data, |
| 302 | }, |
| 303 | .resource = orion5x_uart0_resources, |
| 304 | .num_resources = ARRAY_SIZE(orion5x_uart0_resources), |
| 305 | }; |
| 306 | |
| 307 | void __init orion5x_uart0_init(void) |
| 308 | { |
| 309 | platform_device_register(&orion5x_uart0); |
| 310 | } |
| 311 | |
| 312 | |
| 313 | /***************************************************************************** |
| 314 | * UART1 |
| 315 | ****************************************************************************/ |
| 316 | static struct plat_serial8250_port orion5x_uart1_data[] = { |
| 317 | { |
| 318 | .mapbase = UART1_PHYS_BASE, |
| 319 | .membase = (char *)UART1_VIRT_BASE, |
| 320 | .irq = IRQ_ORION5X_UART1, |
| 321 | .flags = UPF_SKIP_TEST | UPF_BOOT_AUTOCONF, |
| 322 | .iotype = UPIO_MEM, |
| 323 | .regshift = 2, |
| 324 | .uartclk = ORION5X_TCLK, |
| 325 | }, { |
| 326 | }, |
| 327 | }; |
| 328 | |
| 329 | static struct resource orion5x_uart1_resources[] = { |
| 330 | { |
| 331 | .start = UART1_PHYS_BASE, |
| 332 | .end = UART1_PHYS_BASE + 0xff, |
| 333 | .flags = IORESOURCE_MEM, |
| 334 | }, { |
| 335 | .start = IRQ_ORION5X_UART1, |
| 336 | .end = IRQ_ORION5X_UART1, |
| 337 | .flags = IORESOURCE_IRQ, |
| 338 | }, |
| 339 | }; |
| 340 | |
| 341 | static struct platform_device orion5x_uart1 = { |
| 342 | .name = "serial8250", |
| 343 | .id = PLAT8250_DEV_PLATFORM1, |
| 344 | .dev = { |
| 345 | .platform_data = orion5x_uart1_data, |
| 346 | }, |
| 347 | .resource = orion5x_uart1_resources, |
| 348 | .num_resources = ARRAY_SIZE(orion5x_uart1_resources), |
| 349 | }; |
| 350 | |
| 351 | void __init orion5x_uart1_init(void) |
| 352 | { |
| 353 | platform_device_register(&orion5x_uart1); |
| 354 | } |
| 355 | |
| 356 | |
Lennert Buytenhek | 9dd0b19 | 2008-03-27 14:51:41 -0400 | [diff] [blame] | 357 | /***************************************************************************** |
| 358 | * Time handling |
| 359 | ****************************************************************************/ |
Lennert Buytenhek | 9dd0b19 | 2008-03-27 14:51:41 -0400 | [diff] [blame] | 360 | static void orion5x_timer_init(void) |
| 361 | { |
| 362 | orion_time_init(IRQ_ORION5X_BRIDGE, ORION5X_TCLK); |
| 363 | } |
| 364 | |
| 365 | struct sys_timer orion5x_timer = { |
Lennert Buytenhek | e7068ad | 2008-05-10 16:30:01 +0200 | [diff] [blame] | 366 | .init = orion5x_timer_init, |
Lennert Buytenhek | 9dd0b19 | 2008-03-27 14:51:41 -0400 | [diff] [blame] | 367 | }; |
| 368 | |
Lennert Buytenhek | 044f6c7 | 2008-04-22 05:37:12 +0200 | [diff] [blame] | 369 | |
Lennert Buytenhek | 9dd0b19 | 2008-03-27 14:51:41 -0400 | [diff] [blame] | 370 | /***************************************************************************** |
| 371 | * General |
| 372 | ****************************************************************************/ |
Lennert Buytenhek | 9dd0b19 | 2008-03-27 14:51:41 -0400 | [diff] [blame] | 373 | /* |
Lennert Buytenhek | b46926b | 2008-04-25 16:31:32 -0400 | [diff] [blame] | 374 | * Identify device ID and rev from PCIe configuration header space '0'. |
Lennert Buytenhek | 9dd0b19 | 2008-03-27 14:51:41 -0400 | [diff] [blame] | 375 | */ |
| 376 | static void __init orion5x_id(u32 *dev, u32 *rev, char **dev_name) |
| 377 | { |
| 378 | orion5x_pcie_id(dev, rev); |
| 379 | |
| 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"; |
| 385 | } else { |
| 386 | *dev_name = "MV88F5281-Rev-Unsupported"; |
| 387 | } |
| 388 | } else if (*dev == MV88F5182_DEV_ID) { |
| 389 | if (*rev == MV88F5182_REV_A2) { |
| 390 | *dev_name = "MV88F5182-A2"; |
| 391 | } else { |
| 392 | *dev_name = "MV88F5182-Rev-Unsupported"; |
| 393 | } |
| 394 | } else if (*dev == MV88F5181_DEV_ID) { |
| 395 | if (*rev == MV88F5181_REV_B1) { |
| 396 | *dev_name = "MV88F5181-Rev-B1"; |
Lennert Buytenhek | d2b2a6b | 2008-05-31 08:30:40 +0200 | [diff] [blame^] | 397 | } else if (*rev == MV88F5181L_REV_A1) { |
| 398 | *dev_name = "MV88F5181L-Rev-A1"; |
Lennert Buytenhek | 9dd0b19 | 2008-03-27 14:51:41 -0400 | [diff] [blame] | 399 | } else { |
Lennert Buytenhek | d2b2a6b | 2008-05-31 08:30:40 +0200 | [diff] [blame^] | 400 | *dev_name = "MV88F5181(L)-Rev-Unsupported"; |
Lennert Buytenhek | 9dd0b19 | 2008-03-27 14:51:41 -0400 | [diff] [blame] | 401 | } |
| 402 | } else { |
| 403 | *dev_name = "Device-Unknown"; |
| 404 | } |
| 405 | } |
| 406 | |
| 407 | void __init orion5x_init(void) |
| 408 | { |
| 409 | char *dev_name; |
| 410 | u32 dev, rev; |
| 411 | |
| 412 | orion5x_id(&dev, &rev, &dev_name); |
| 413 | printk(KERN_INFO "Orion ID: %s. TCLK=%d.\n", dev_name, ORION5X_TCLK); |
| 414 | |
| 415 | /* |
| 416 | * Setup Orion address map |
| 417 | */ |
| 418 | orion5x_setup_cpu_mbus_bridge(); |
Lennert Buytenhek | 9dd0b19 | 2008-03-27 14:51:41 -0400 | [diff] [blame] | 419 | } |
| 420 | |
| 421 | /* |
| 422 | * Many orion-based systems have buggy bootloader implementations. |
| 423 | * This is a common fixup for bogus memory tags. |
| 424 | */ |
| 425 | void __init tag_fixup_mem32(struct machine_desc *mdesc, struct tag *t, |
| 426 | char **from, struct meminfo *meminfo) |
| 427 | { |
| 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)) { |
| 432 | printk(KERN_WARNING |
| 433 | "Clearing invalid memory bank %dKB@0x%08x\n", |
| 434 | t->u.mem.size / 1024, t->u.mem.start); |
| 435 | t->hdr.tag = 0; |
| 436 | } |
| 437 | } |