diff options
Diffstat (limited to 'arch/arm/mach-orion5x')
-rw-r--r-- | arch/arm/mach-orion5x/addr-map.c | 14 | ||||
-rw-r--r-- | arch/arm/mach-orion5x/common.c | 42 | ||||
-rw-r--r-- | arch/arm/mach-orion5x/common.h | 2 | ||||
-rw-r--r-- | arch/arm/mach-orion5x/include/mach/bridge-regs.h | 4 | ||||
-rw-r--r-- | arch/arm/mach-orion5x/include/mach/orion5x.h | 6 | ||||
-rw-r--r-- | arch/arm/mach-orion5x/include/mach/system.h | 2 | ||||
-rw-r--r-- | arch/arm/mach-orion5x/mpp.c | 3 | ||||
-rw-r--r-- | arch/arm/mach-orion5x/mss2-setup.c | 4 | ||||
-rw-r--r-- | arch/arm/mach-orion5x/ts78xx-fpga.h | 1 | ||||
-rw-r--r-- | arch/arm/mach-orion5x/ts78xx-setup.c | 58 | ||||
-rw-r--r-- | arch/arm/mach-orion5x/wnr854t-setup.c | 16 |
11 files changed, 142 insertions, 10 deletions
diff --git a/arch/arm/mach-orion5x/addr-map.c b/arch/arm/mach-orion5x/addr-map.c index c14d12137276..6f3f77d031d0 100644 --- a/arch/arm/mach-orion5x/addr-map.c +++ b/arch/arm/mach-orion5x/addr-map.c | |||
@@ -14,6 +14,7 @@ | |||
14 | #include <linux/init.h> | 14 | #include <linux/init.h> |
15 | #include <linux/mbus.h> | 15 | #include <linux/mbus.h> |
16 | #include <linux/io.h> | 16 | #include <linux/io.h> |
17 | #include <linux/errno.h> | ||
17 | #include <mach/hardware.h> | 18 | #include <mach/hardware.h> |
18 | #include "common.h" | 19 | #include "common.h" |
19 | 20 | ||
@@ -44,6 +45,7 @@ | |||
44 | #define TARGET_DEV_BUS 1 | 45 | #define TARGET_DEV_BUS 1 |
45 | #define TARGET_PCI 3 | 46 | #define TARGET_PCI 3 |
46 | #define TARGET_PCIE 4 | 47 | #define TARGET_PCIE 4 |
48 | #define TARGET_SRAM 9 | ||
47 | #define ATTR_PCIE_MEM 0x59 | 49 | #define ATTR_PCIE_MEM 0x59 |
48 | #define ATTR_PCIE_IO 0x51 | 50 | #define ATTR_PCIE_IO 0x51 |
49 | #define ATTR_PCIE_WA 0x79 | 51 | #define ATTR_PCIE_WA 0x79 |
@@ -53,6 +55,7 @@ | |||
53 | #define ATTR_DEV_CS1 0x1d | 55 | #define ATTR_DEV_CS1 0x1d |
54 | #define ATTR_DEV_CS2 0x1b | 56 | #define ATTR_DEV_CS2 0x1b |
55 | #define ATTR_DEV_BOOT 0xf | 57 | #define ATTR_DEV_BOOT 0xf |
58 | #define ATTR_SRAM 0x0 | ||
56 | 59 | ||
57 | /* | 60 | /* |
58 | * Helpers to get DDR bank info | 61 | * Helpers to get DDR bank info |
@@ -87,13 +90,13 @@ static int __init orion5x_cpu_win_can_remap(int win) | |||
87 | return 0; | 90 | return 0; |
88 | } | 91 | } |
89 | 92 | ||
90 | static void __init setup_cpu_win(int win, u32 base, u32 size, | 93 | static int __init setup_cpu_win(int win, u32 base, u32 size, |
91 | u8 target, u8 attr, int remap) | 94 | u8 target, u8 attr, int remap) |
92 | { | 95 | { |
93 | if (win >= 8) { | 96 | if (win >= 8) { |
94 | printk(KERN_ERR "setup_cpu_win: trying to allocate " | 97 | printk(KERN_ERR "setup_cpu_win: trying to allocate " |
95 | "window %d\n", win); | 98 | "window %d\n", win); |
96 | return; | 99 | return -ENOSPC; |
97 | } | 100 | } |
98 | 101 | ||
99 | writel(base & 0xffff0000, CPU_WIN_BASE(win)); | 102 | writel(base & 0xffff0000, CPU_WIN_BASE(win)); |
@@ -107,6 +110,7 @@ static void __init setup_cpu_win(int win, u32 base, u32 size, | |||
107 | writel(remap & 0xffff0000, CPU_WIN_REMAP_LO(win)); | 110 | writel(remap & 0xffff0000, CPU_WIN_REMAP_LO(win)); |
108 | writel(0, CPU_WIN_REMAP_HI(win)); | 111 | writel(0, CPU_WIN_REMAP_HI(win)); |
109 | } | 112 | } |
113 | return 0; | ||
110 | } | 114 | } |
111 | 115 | ||
112 | void __init orion5x_setup_cpu_mbus_bridge(void) | 116 | void __init orion5x_setup_cpu_mbus_bridge(void) |
@@ -193,3 +197,9 @@ void __init orion5x_setup_pcie_wa_win(u32 base, u32 size) | |||
193 | setup_cpu_win(win_alloc_count++, base, size, | 197 | setup_cpu_win(win_alloc_count++, base, size, |
194 | TARGET_PCIE, ATTR_PCIE_WA, -1); | 198 | TARGET_PCIE, ATTR_PCIE_WA, -1); |
195 | } | 199 | } |
200 | |||
201 | int __init orion5x_setup_sram_win(void) | ||
202 | { | ||
203 | return setup_cpu_win(win_alloc_count, ORION5X_SRAM_PHYS_BASE, | ||
204 | ORION5X_SRAM_SIZE, TARGET_SRAM, ATTR_SRAM, -1); | ||
205 | } | ||
diff --git a/arch/arm/mach-orion5x/common.c b/arch/arm/mach-orion5x/common.c index b1c7778d9f96..eafcc49009ea 100644 --- a/arch/arm/mach-orion5x/common.c +++ b/arch/arm/mach-orion5x/common.c | |||
@@ -31,7 +31,7 @@ | |||
31 | #include <plat/ehci-orion.h> | 31 | #include <plat/ehci-orion.h> |
32 | #include <plat/mv_xor.h> | 32 | #include <plat/mv_xor.h> |
33 | #include <plat/orion_nand.h> | 33 | #include <plat/orion_nand.h> |
34 | #include <plat/orion5x_wdt.h> | 34 | #include <plat/orion_wdt.h> |
35 | #include <plat/time.h> | 35 | #include <plat/time.h> |
36 | #include "common.h" | 36 | #include "common.h" |
37 | 37 | ||
@@ -536,16 +536,52 @@ void __init orion5x_xor_init(void) | |||
536 | platform_device_register(&orion5x_xor1_channel); | 536 | platform_device_register(&orion5x_xor1_channel); |
537 | } | 537 | } |
538 | 538 | ||
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 | |||
565 | int __init orion5x_crypto_init(void) | ||
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 | } | ||
539 | 575 | ||
540 | /***************************************************************************** | 576 | /***************************************************************************** |
541 | * Watchdog | 577 | * Watchdog |
542 | ****************************************************************************/ | 578 | ****************************************************************************/ |
543 | static struct orion5x_wdt_platform_data orion5x_wdt_data = { | 579 | static struct orion_wdt_platform_data orion5x_wdt_data = { |
544 | .tclk = 0, | 580 | .tclk = 0, |
545 | }; | 581 | }; |
546 | 582 | ||
547 | static struct platform_device orion5x_wdt_device = { | 583 | static struct platform_device orion5x_wdt_device = { |
548 | .name = "orion5x_wdt", | 584 | .name = "orion_wdt", |
549 | .id = -1, | 585 | .id = -1, |
550 | .dev = { | 586 | .dev = { |
551 | .platform_data = &orion5x_wdt_data, | 587 | .platform_data = &orion5x_wdt_data, |
diff --git a/arch/arm/mach-orion5x/common.h b/arch/arm/mach-orion5x/common.h index 798b9a5e3da9..de483e83edd7 100644 --- a/arch/arm/mach-orion5x/common.h +++ b/arch/arm/mach-orion5x/common.h | |||
@@ -26,6 +26,7 @@ void orion5x_setup_dev0_win(u32 base, u32 size); | |||
26 | void orion5x_setup_dev1_win(u32 base, u32 size); | 26 | void orion5x_setup_dev1_win(u32 base, u32 size); |
27 | void orion5x_setup_dev2_win(u32 base, u32 size); | 27 | void orion5x_setup_dev2_win(u32 base, u32 size); |
28 | void orion5x_setup_pcie_wa_win(u32 base, u32 size); | 28 | void orion5x_setup_pcie_wa_win(u32 base, u32 size); |
29 | int orion5x_setup_sram_win(void); | ||
29 | 30 | ||
30 | void orion5x_ehci0_init(void); | 31 | void orion5x_ehci0_init(void); |
31 | void orion5x_ehci1_init(void); | 32 | void orion5x_ehci1_init(void); |
@@ -37,6 +38,7 @@ void orion5x_spi_init(void); | |||
37 | void orion5x_uart0_init(void); | 38 | void orion5x_uart0_init(void); |
38 | void orion5x_uart1_init(void); | 39 | void orion5x_uart1_init(void); |
39 | void orion5x_xor_init(void); | 40 | void orion5x_xor_init(void); |
41 | int orion5x_crypto_init(void); | ||
40 | 42 | ||
41 | /* | 43 | /* |
42 | * PCIe/PCI functions. | 44 | * PCIe/PCI functions. |
diff --git a/arch/arm/mach-orion5x/include/mach/bridge-regs.h b/arch/arm/mach-orion5x/include/mach/bridge-regs.h index be896e59d3e7..5c9744cd8ef6 100644 --- a/arch/arm/mach-orion5x/include/mach/bridge-regs.h +++ b/arch/arm/mach-orion5x/include/mach/bridge-regs.h | |||
@@ -17,8 +17,8 @@ | |||
17 | 17 | ||
18 | #define CPU_CTRL (ORION5X_BRIDGE_VIRT_BASE | 0x104) | 18 | #define CPU_CTRL (ORION5X_BRIDGE_VIRT_BASE | 0x104) |
19 | 19 | ||
20 | #define CPU_RESET_MASK (ORION5X_BRIDGE_VIRT_BASE | 0x108) | 20 | #define RSTOUTn_MASK (ORION5X_BRIDGE_VIRT_BASE | 0x108) |
21 | #define WDT_RESET 0x0002 | 21 | #define WDT_RESET_OUT_EN 0x0002 |
22 | 22 | ||
23 | #define CPU_SOFT_RESET (ORION5X_BRIDGE_VIRT_BASE | 0x10c) | 23 | #define CPU_SOFT_RESET (ORION5X_BRIDGE_VIRT_BASE | 0x10c) |
24 | 24 | ||
diff --git a/arch/arm/mach-orion5x/include/mach/orion5x.h b/arch/arm/mach-orion5x/include/mach/orion5x.h index 377a773ae53f..2d8766570531 100644 --- a/arch/arm/mach-orion5x/include/mach/orion5x.h +++ b/arch/arm/mach-orion5x/include/mach/orion5x.h | |||
@@ -24,6 +24,7 @@ | |||
24 | * f1000000 on-chip peripheral registers | 24 | * f1000000 on-chip peripheral registers |
25 | * f2000000 PCIe I/O space | 25 | * f2000000 PCIe I/O space |
26 | * f2100000 PCI I/O space | 26 | * f2100000 PCI I/O space |
27 | * f2200000 SRAM dedicated for the crypto unit | ||
27 | * f4000000 device bus mappings (boot) | 28 | * f4000000 device bus mappings (boot) |
28 | * fa000000 device bus mappings (cs0) | 29 | * fa000000 device bus mappings (cs0) |
29 | * fa800000 device bus mappings (cs2) | 30 | * fa800000 device bus mappings (cs2) |
@@ -49,6 +50,9 @@ | |||
49 | #define ORION5X_PCI_IO_BUS_BASE 0x00100000 | 50 | #define ORION5X_PCI_IO_BUS_BASE 0x00100000 |
50 | #define ORION5X_PCI_IO_SIZE SZ_1M | 51 | #define ORION5X_PCI_IO_SIZE SZ_1M |
51 | 52 | ||
53 | #define ORION5X_SRAM_PHYS_BASE (0xf2200000) | ||
54 | #define ORION5X_SRAM_SIZE SZ_8K | ||
55 | |||
52 | /* Relevant only for Orion-1/Orion-NAS */ | 56 | /* Relevant only for Orion-1/Orion-NAS */ |
53 | #define ORION5X_PCIE_WA_PHYS_BASE 0xf0000000 | 57 | #define ORION5X_PCIE_WA_PHYS_BASE 0xf0000000 |
54 | #define ORION5X_PCIE_WA_VIRT_BASE 0xfe000000 | 58 | #define ORION5X_PCIE_WA_VIRT_BASE 0xfe000000 |
@@ -94,6 +98,8 @@ | |||
94 | #define ORION5X_SATA_PHYS_BASE (ORION5X_REGS_PHYS_BASE | 0x80000) | 98 | #define ORION5X_SATA_PHYS_BASE (ORION5X_REGS_PHYS_BASE | 0x80000) |
95 | #define ORION5X_SATA_VIRT_BASE (ORION5X_REGS_VIRT_BASE | 0x80000) | 99 | #define ORION5X_SATA_VIRT_BASE (ORION5X_REGS_VIRT_BASE | 0x80000) |
96 | 100 | ||
101 | #define ORION5X_CRYPTO_PHYS_BASE (ORION5X_REGS_PHYS_BASE | 0x90000) | ||
102 | |||
97 | #define ORION5X_USB1_PHYS_BASE (ORION5X_REGS_PHYS_BASE | 0xa0000) | 103 | #define ORION5X_USB1_PHYS_BASE (ORION5X_REGS_PHYS_BASE | 0xa0000) |
98 | #define ORION5X_USB1_VIRT_BASE (ORION5X_REGS_VIRT_BASE | 0xa0000) | 104 | #define ORION5X_USB1_VIRT_BASE (ORION5X_REGS_VIRT_BASE | 0xa0000) |
99 | 105 | ||
diff --git a/arch/arm/mach-orion5x/include/mach/system.h b/arch/arm/mach-orion5x/include/mach/system.h index e912490fff23..60e734c10458 100644 --- a/arch/arm/mach-orion5x/include/mach/system.h +++ b/arch/arm/mach-orion5x/include/mach/system.h | |||
@@ -23,7 +23,7 @@ static inline void arch_reset(char mode, const char *cmd) | |||
23 | /* | 23 | /* |
24 | * Enable and issue soft reset | 24 | * Enable and issue soft reset |
25 | */ | 25 | */ |
26 | orion5x_setbits(CPU_RESET_MASK, (1 << 2)); | 26 | orion5x_setbits(RSTOUTn_MASK, (1 << 2)); |
27 | orion5x_setbits(CPU_SOFT_RESET, 1); | 27 | orion5x_setbits(CPU_SOFT_RESET, 1); |
28 | } | 28 | } |
29 | 29 | ||
diff --git a/arch/arm/mach-orion5x/mpp.c b/arch/arm/mach-orion5x/mpp.c index e23a3f91d6c6..bc4c3b9aaf83 100644 --- a/arch/arm/mach-orion5x/mpp.c +++ b/arch/arm/mach-orion5x/mpp.c | |||
@@ -124,6 +124,9 @@ void __init orion5x_mpp_conf(struct orion5x_mpp_mode *mode) | |||
124 | u32 mpp_8_15_ctrl = readl(MPP_8_15_CTRL); | 124 | u32 mpp_8_15_ctrl = readl(MPP_8_15_CTRL); |
125 | u32 mpp_16_19_ctrl = readl(MPP_16_19_CTRL); | 125 | u32 mpp_16_19_ctrl = readl(MPP_16_19_CTRL); |
126 | 126 | ||
127 | /* Initialize gpiolib. */ | ||
128 | orion_gpio_init(); | ||
129 | |||
127 | while (mode->mpp >= 0) { | 130 | while (mode->mpp >= 0) { |
128 | u32 *reg; | 131 | u32 *reg; |
129 | int num_type; | 132 | int num_type; |
diff --git a/arch/arm/mach-orion5x/mss2-setup.c b/arch/arm/mach-orion5x/mss2-setup.c index 41e6d5033d54..61c086b66723 100644 --- a/arch/arm/mach-orion5x/mss2-setup.c +++ b/arch/arm/mach-orion5x/mss2-setup.c | |||
@@ -181,9 +181,9 @@ static void mss2_power_off(void) | |||
181 | /* | 181 | /* |
182 | * Enable and issue soft reset | 182 | * Enable and issue soft reset |
183 | */ | 183 | */ |
184 | reg = readl(CPU_RESET_MASK); | 184 | reg = readl(RSTOUTn_MASK); |
185 | reg |= 1 << 2; | 185 | reg |= 1 << 2; |
186 | writel(reg, CPU_RESET_MASK); | 186 | writel(reg, RSTOUTn_MASK); |
187 | 187 | ||
188 | reg = readl(CPU_SOFT_RESET); | 188 | reg = readl(CPU_SOFT_RESET); |
189 | reg |= 1; | 189 | reg |= 1; |
diff --git a/arch/arm/mach-orion5x/ts78xx-fpga.h b/arch/arm/mach-orion5x/ts78xx-fpga.h index 0f9cdf458952..37b3d4875291 100644 --- a/arch/arm/mach-orion5x/ts78xx-fpga.h +++ b/arch/arm/mach-orion5x/ts78xx-fpga.h | |||
@@ -25,6 +25,7 @@ struct fpga_devices { | |||
25 | /* Technologic Systems */ | 25 | /* Technologic Systems */ |
26 | struct fpga_device ts_rtc; | 26 | struct fpga_device ts_rtc; |
27 | struct fpga_device ts_nand; | 27 | struct fpga_device ts_nand; |
28 | struct fpga_device ts_rng; | ||
28 | }; | 29 | }; |
29 | 30 | ||
30 | struct ts78xx_fpga_data { | 31 | struct ts78xx_fpga_data { |
diff --git a/arch/arm/mach-orion5x/ts78xx-setup.c b/arch/arm/mach-orion5x/ts78xx-setup.c index 9a6b397f972d..5041d1bc26b1 100644 --- a/arch/arm/mach-orion5x/ts78xx-setup.c +++ b/arch/arm/mach-orion5x/ts78xx-setup.c | |||
@@ -17,6 +17,7 @@ | |||
17 | #include <linux/m48t86.h> | 17 | #include <linux/m48t86.h> |
18 | #include <linux/mtd/nand.h> | 18 | #include <linux/mtd/nand.h> |
19 | #include <linux/mtd/partitions.h> | 19 | #include <linux/mtd/partitions.h> |
20 | #include <linux/timeriomem-rng.h> | ||
20 | #include <asm/mach-types.h> | 21 | #include <asm/mach-types.h> |
21 | #include <asm/mach/arch.h> | 22 | #include <asm/mach/arch.h> |
22 | #include <asm/mach/map.h> | 23 | #include <asm/mach/map.h> |
@@ -270,12 +271,57 @@ static void ts78xx_ts_nand_unload(void) | |||
270 | } | 271 | } |
271 | 272 | ||
272 | /***************************************************************************** | 273 | /***************************************************************************** |
274 | * HW RNG | ||
275 | ****************************************************************************/ | ||
276 | #define TS_RNG_DATA (TS78XX_FPGA_REGS_PHYS_BASE | 0x044) | ||
277 | |||
278 | static struct resource ts78xx_ts_rng_resource = { | ||
279 | .flags = IORESOURCE_MEM, | ||
280 | .start = TS_RNG_DATA, | ||
281 | .end = TS_RNG_DATA + 4 - 1, | ||
282 | }; | ||
283 | |||
284 | static struct timeriomem_rng_data ts78xx_ts_rng_data = { | ||
285 | .period = 1000000, /* one second */ | ||
286 | }; | ||
287 | |||
288 | static struct platform_device ts78xx_ts_rng_device = { | ||
289 | .name = "timeriomem_rng", | ||
290 | .id = -1, | ||
291 | .dev = { | ||
292 | .platform_data = &ts78xx_ts_rng_data, | ||
293 | }, | ||
294 | .resource = &ts78xx_ts_rng_resource, | ||
295 | .num_resources = 1, | ||
296 | }; | ||
297 | |||
298 | static int ts78xx_ts_rng_load(void) | ||
299 | { | ||
300 | int rc; | ||
301 | |||
302 | if (ts78xx_fpga.supports.ts_rng.init == 0) { | ||
303 | rc = platform_device_register(&ts78xx_ts_rng_device); | ||
304 | if (!rc) | ||
305 | ts78xx_fpga.supports.ts_rng.init = 1; | ||
306 | } else | ||
307 | rc = platform_device_add(&ts78xx_ts_rng_device); | ||
308 | |||
309 | return rc; | ||
310 | }; | ||
311 | |||
312 | static void ts78xx_ts_rng_unload(void) | ||
313 | { | ||
314 | platform_device_del(&ts78xx_ts_rng_device); | ||
315 | } | ||
316 | |||
317 | /***************************************************************************** | ||
273 | * FPGA 'hotplug' support code | 318 | * FPGA 'hotplug' support code |
274 | ****************************************************************************/ | 319 | ****************************************************************************/ |
275 | static void ts78xx_fpga_devices_zero_init(void) | 320 | static void ts78xx_fpga_devices_zero_init(void) |
276 | { | 321 | { |
277 | ts78xx_fpga.supports.ts_rtc.init = 0; | 322 | ts78xx_fpga.supports.ts_rtc.init = 0; |
278 | ts78xx_fpga.supports.ts_nand.init = 0; | 323 | ts78xx_fpga.supports.ts_nand.init = 0; |
324 | ts78xx_fpga.supports.ts_rng.init = 0; | ||
279 | } | 325 | } |
280 | 326 | ||
281 | static void ts78xx_fpga_supports(void) | 327 | static void ts78xx_fpga_supports(void) |
@@ -289,10 +335,12 @@ static void ts78xx_fpga_supports(void) | |||
289 | case TS7800_REV_5: | 335 | case TS7800_REV_5: |
290 | ts78xx_fpga.supports.ts_rtc.present = 1; | 336 | ts78xx_fpga.supports.ts_rtc.present = 1; |
291 | ts78xx_fpga.supports.ts_nand.present = 1; | 337 | ts78xx_fpga.supports.ts_nand.present = 1; |
338 | ts78xx_fpga.supports.ts_rng.present = 1; | ||
292 | break; | 339 | break; |
293 | default: | 340 | default: |
294 | ts78xx_fpga.supports.ts_rtc.present = 0; | 341 | ts78xx_fpga.supports.ts_rtc.present = 0; |
295 | ts78xx_fpga.supports.ts_nand.present = 0; | 342 | ts78xx_fpga.supports.ts_nand.present = 0; |
343 | ts78xx_fpga.supports.ts_rng.present = 0; | ||
296 | } | 344 | } |
297 | } | 345 | } |
298 | 346 | ||
@@ -316,6 +364,14 @@ static int ts78xx_fpga_load_devices(void) | |||
316 | } | 364 | } |
317 | ret |= tmp; | 365 | ret |= tmp; |
318 | } | 366 | } |
367 | if (ts78xx_fpga.supports.ts_rng.present == 1) { | ||
368 | tmp = ts78xx_ts_rng_load(); | ||
369 | if (tmp) { | ||
370 | printk(KERN_INFO "TS-78xx: RNG not registered\n"); | ||
371 | ts78xx_fpga.supports.ts_rng.present = 0; | ||
372 | } | ||
373 | ret |= tmp; | ||
374 | } | ||
319 | 375 | ||
320 | return ret; | 376 | return ret; |
321 | } | 377 | } |
@@ -328,6 +384,8 @@ static int ts78xx_fpga_unload_devices(void) | |||
328 | ts78xx_ts_rtc_unload(); | 384 | ts78xx_ts_rtc_unload(); |
329 | if (ts78xx_fpga.supports.ts_nand.present == 1) | 385 | if (ts78xx_fpga.supports.ts_nand.present == 1) |
330 | ts78xx_ts_nand_unload(); | 386 | ts78xx_ts_nand_unload(); |
387 | if (ts78xx_fpga.supports.ts_rng.present == 1) | ||
388 | ts78xx_ts_rng_unload(); | ||
331 | 389 | ||
332 | return ret; | 390 | return ret; |
333 | } | 391 | } |
diff --git a/arch/arm/mach-orion5x/wnr854t-setup.c b/arch/arm/mach-orion5x/wnr854t-setup.c index 7ddc22c2bb54..69208217b220 100644 --- a/arch/arm/mach-orion5x/wnr854t-setup.c +++ b/arch/arm/mach-orion5x/wnr854t-setup.c | |||
@@ -15,6 +15,7 @@ | |||
15 | #include <linux/mtd/physmap.h> | 15 | #include <linux/mtd/physmap.h> |
16 | #include <linux/mv643xx_eth.h> | 16 | #include <linux/mv643xx_eth.h> |
17 | #include <linux/ethtool.h> | 17 | #include <linux/ethtool.h> |
18 | #include <net/dsa.h> | ||
18 | #include <asm/mach-types.h> | 19 | #include <asm/mach-types.h> |
19 | #include <asm/gpio.h> | 20 | #include <asm/gpio.h> |
20 | #include <asm/mach/arch.h> | 21 | #include <asm/mach/arch.h> |
@@ -97,6 +98,20 @@ static struct mv643xx_eth_platform_data wnr854t_eth_data = { | |||
97 | .duplex = DUPLEX_FULL, | 98 | .duplex = DUPLEX_FULL, |
98 | }; | 99 | }; |
99 | 100 | ||
101 | static struct dsa_chip_data wnr854t_switch_chip_data = { | ||
102 | .port_names[0] = "lan3", | ||
103 | .port_names[1] = "lan4", | ||
104 | .port_names[2] = "wan", | ||
105 | .port_names[3] = "cpu", | ||
106 | .port_names[5] = "lan1", | ||
107 | .port_names[7] = "lan2", | ||
108 | }; | ||
109 | |||
110 | static struct dsa_platform_data wnr854t_switch_plat_data = { | ||
111 | .nr_chips = 1, | ||
112 | .chip = &wnr854t_switch_chip_data, | ||
113 | }; | ||
114 | |||
100 | static void __init wnr854t_init(void) | 115 | static void __init wnr854t_init(void) |
101 | { | 116 | { |
102 | /* | 117 | /* |
@@ -110,6 +125,7 @@ static void __init wnr854t_init(void) | |||
110 | * Configure peripherals. | 125 | * Configure peripherals. |
111 | */ | 126 | */ |
112 | orion5x_eth_init(&wnr854t_eth_data); | 127 | orion5x_eth_init(&wnr854t_eth_data); |
128 | orion5x_eth_switch_init(&wnr854t_switch_plat_data, NO_IRQ); | ||
113 | orion5x_uart0_init(); | 129 | orion5x_uart0_init(); |
114 | 130 | ||
115 | orion5x_setup_dev_boot_win(WNR854T_NOR_BOOT_BASE, | 131 | orion5x_setup_dev_boot_win(WNR854T_NOR_BOOT_BASE, |