diff options
author | Linus Torvalds <torvalds@linux-foundation.org> | 2013-07-13 17:52:21 -0400 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2013-07-13 17:52:21 -0400 |
commit | d1447464789918db1e1a3d0aaf50d3d0f6487a4f (patch) | |
tree | 490bd5c493cdba742dc90d3731962226838e5f33 /arch/mips/bcm63xx/reset.c | |
parent | 833e68340d108d88f4cb79b7d7223f6859d362ca (diff) | |
parent | 6ac5310e649df5fcd240d764503bf16a1317ea39 (diff) |
Merge branch 'upstream' of git://git.linux-mips.org/pub/scm/ralf/upstream-linus
Pull MIPS updates from Ralf Baechle:
"MIPS updates:
- All the things that didn't make 3.10.
- Removes the Windriver PPMC platform. Nobody will miss it.
- Remove a workaround from kernel/irq/irqdomain.c which was there
exclusivly for MIPS. Patch by Grant Likely.
- More small improvments for the SEAD 3 platform
- Improvments on the BMIPS / SMP support for the BCM63xx series.
- Various cleanups of dead leftovers.
- Platform support for the Cavium Octeon-based EdgeRouter Lite.
Two large KVM patchsets didn't make it for this pull request because
their respective authors are vacationing"
* 'upstream' of git://git.linux-mips.org/pub/scm/ralf/upstream-linus: (124 commits)
MIPS: Kconfig: Add missing MODULES dependency to VPE_LOADER
MIPS: BCM63xx: CLK: Add dummy clk_{set,round}_rate() functions
MIPS: SEAD3: Disable L2 cache on SEAD-3.
MIPS: BCM63xx: Enable second core SMP on BCM6328 if available
MIPS: BCM63xx: Add SMP support to prom.c
MIPS: define write{b,w,l,q}_relaxed
MIPS: Expose missing pci_io{map,unmap} declarations
MIPS: Malta: Update GCMP detection.
Revert "MIPS: make CAC_ADDR and UNCAC_ADDR account for PHYS_OFFSET"
MIPS: APSP: Remove <asm/kspd.h>
SSB: Kconfig: Amend SSB_EMBEDDED dependencies
MIPS: microMIPS: Fix improper definition of ISA exception bit.
MIPS: Don't try to decode microMIPS branch instructions where they cannot exist.
MIPS: Declare emulate_load_store_microMIPS as a static function.
MIPS: Fix typos and cleanup comment
MIPS: Cleanup indentation and whitespace
MIPS: BMIPS: support booting from physical CPU other than 0
MIPS: Only set cpu_has_mmips if SYS_SUPPORTS_MICROMIPS
MIPS: GIC: Fix gic_set_affinity infinite loop
MIPS: Don't save/restore OCTEON wide multiplier state on syscalls.
...
Diffstat (limited to 'arch/mips/bcm63xx/reset.c')
-rw-r--r-- | arch/mips/bcm63xx/reset.c | 29 |
1 files changed, 28 insertions, 1 deletions
diff --git a/arch/mips/bcm63xx/reset.c b/arch/mips/bcm63xx/reset.c index 317931c6cf58..acbeb1fe7c57 100644 --- a/arch/mips/bcm63xx/reset.c +++ b/arch/mips/bcm63xx/reset.c | |||
@@ -30,6 +30,19 @@ | |||
30 | [BCM63XX_RESET_PCIE] = BCM## __cpu ##_RESET_PCIE, \ | 30 | [BCM63XX_RESET_PCIE] = BCM## __cpu ##_RESET_PCIE, \ |
31 | [BCM63XX_RESET_PCIE_EXT] = BCM## __cpu ##_RESET_PCIE_EXT, | 31 | [BCM63XX_RESET_PCIE_EXT] = BCM## __cpu ##_RESET_PCIE_EXT, |
32 | 32 | ||
33 | #define BCM3368_RESET_SPI SOFTRESET_3368_SPI_MASK | ||
34 | #define BCM3368_RESET_ENET SOFTRESET_3368_ENET_MASK | ||
35 | #define BCM3368_RESET_USBH 0 | ||
36 | #define BCM3368_RESET_USBD SOFTRESET_3368_USBS_MASK | ||
37 | #define BCM3368_RESET_DSL 0 | ||
38 | #define BCM3368_RESET_SAR 0 | ||
39 | #define BCM3368_RESET_EPHY SOFTRESET_3368_EPHY_MASK | ||
40 | #define BCM3368_RESET_ENETSW 0 | ||
41 | #define BCM3368_RESET_PCM SOFTRESET_3368_PCM_MASK | ||
42 | #define BCM3368_RESET_MPI SOFTRESET_3368_MPI_MASK | ||
43 | #define BCM3368_RESET_PCIE 0 | ||
44 | #define BCM3368_RESET_PCIE_EXT 0 | ||
45 | |||
33 | #define BCM6328_RESET_SPI SOFTRESET_6328_SPI_MASK | 46 | #define BCM6328_RESET_SPI SOFTRESET_6328_SPI_MASK |
34 | #define BCM6328_RESET_ENET 0 | 47 | #define BCM6328_RESET_ENET 0 |
35 | #define BCM6328_RESET_USBH SOFTRESET_6328_USBH_MASK | 48 | #define BCM6328_RESET_USBH SOFTRESET_6328_USBH_MASK |
@@ -117,6 +130,10 @@ | |||
117 | /* | 130 | /* |
118 | * core reset bits | 131 | * core reset bits |
119 | */ | 132 | */ |
133 | static const u32 bcm3368_reset_bits[] = { | ||
134 | __GEN_RESET_BITS_TABLE(3368) | ||
135 | }; | ||
136 | |||
120 | static const u32 bcm6328_reset_bits[] = { | 137 | static const u32 bcm6328_reset_bits[] = { |
121 | __GEN_RESET_BITS_TABLE(6328) | 138 | __GEN_RESET_BITS_TABLE(6328) |
122 | }; | 139 | }; |
@@ -146,7 +163,10 @@ static int reset_reg; | |||
146 | 163 | ||
147 | static int __init bcm63xx_reset_bits_init(void) | 164 | static int __init bcm63xx_reset_bits_init(void) |
148 | { | 165 | { |
149 | if (BCMCPU_IS_6328()) { | 166 | if (BCMCPU_IS_3368()) { |
167 | reset_reg = PERF_SOFTRESET_6358_REG; | ||
168 | bcm63xx_reset_bits = bcm3368_reset_bits; | ||
169 | } else if (BCMCPU_IS_6328()) { | ||
150 | reset_reg = PERF_SOFTRESET_6328_REG; | 170 | reset_reg = PERF_SOFTRESET_6328_REG; |
151 | bcm63xx_reset_bits = bcm6328_reset_bits; | 171 | bcm63xx_reset_bits = bcm6328_reset_bits; |
152 | } else if (BCMCPU_IS_6338()) { | 172 | } else if (BCMCPU_IS_6338()) { |
@@ -170,6 +190,13 @@ static int __init bcm63xx_reset_bits_init(void) | |||
170 | } | 190 | } |
171 | #else | 191 | #else |
172 | 192 | ||
193 | #ifdef CONFIG_BCM63XX_CPU_3368 | ||
194 | static const u32 bcm63xx_reset_bits[] = { | ||
195 | __GEN_RESET_BITS_TABLE(3368) | ||
196 | }; | ||
197 | #define reset_reg PERF_SOFTRESET_6358_REG | ||
198 | #endif | ||
199 | |||
173 | #ifdef CONFIG_BCM63XX_CPU_6328 | 200 | #ifdef CONFIG_BCM63XX_CPU_6328 |
174 | static const u32 bcm63xx_reset_bits[] = { | 201 | static const u32 bcm63xx_reset_bits[] = { |
175 | __GEN_RESET_BITS_TABLE(6328) | 202 | __GEN_RESET_BITS_TABLE(6328) |