diff options
author | Linus Torvalds <torvalds@linux-foundation.org> | 2013-09-12 19:14:49 -0400 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2013-09-12 19:14:49 -0400 |
commit | 5a7d8a28080caed7fd4cb1b81d092adac4445e8e (patch) | |
tree | 7d410cdd62dfebb24c22ccb8895efd9acf74ddb9 /arch/mips/cavium-octeon/setup.c | |
parent | e0ea4045bce3cee84e35746fb98946ca36781248 (diff) | |
parent | eb37e6ddf75a3d4c59e38193a7c8d409f5bd7d57 (diff) |
Merge branch 'upstream' of git://git.linux-mips.org/pub/scm/ralf/upstream-linus
Pull MIPS updates from Ralf Baechle:
"This has been sitting in -next for a while with no objections and all
MIPS defconfigs except one are building fine; that one platform got
broken by another patch in your tree and I'm going to submit a patch
separately.
- a handful of fixes that didn't make 3.11
- a few bits of Octeon 3 support with more to come for a later
release
- platform enhancements for Octeon, ath79, Lantiq, Netlogic and
Ralink SOCs
- a GPIO driver for the Octeon
- some dusting off of the DECstation code
- the usual dose of cleanups"
* 'upstream' of git://git.linux-mips.org/pub/scm/ralf/upstream-linus: (65 commits)
MIPS: DMA: Fix BUG due to smp_processor_id() in preemptible code
MIPS: kexec: Fix random crashes while loading crashkernel
MIPS: kdump: Skip walking indirection page for crashkernels
MIPS: DECstation HRT calibration bug fixes
MIPS: Export copy_from_user_page() (needed by lustre)
MIPS: Add driver for the built-in PCI controller of the RT3883 SoC
MIPS: DMA: For BMIPS5000 cores flush region just like non-coherent R10000
MIPS: ralink: Add support for reset-controller API
MIPS: ralink: mt7620: Add cpu-feature-override header
MIPS: ralink: mt7620: Add spi clock definition
MIPS: ralink: mt7620: Add wdt clock definition
MIPS: ralink: mt7620: Improve clock frequency detection
MIPS: ralink: mt7620: This SoC has EHCI and OHCI hosts
MIPS: ralink: mt7620: Add verbose ram info
MIPS: ralink: Probe clocksources from OF
MIPS: ralink: Add support for systick timer found on newer ralink SoC
MIPS: ralink: Add support for periodic timer irq
MIPS: Netlogic: Built-in DTB for XLP2xx SoC boards
MIPS: Netlogic: Add support for USB on XLP2xx
MIPS: Netlogic: XLP2xx update for I2C controller
...
Diffstat (limited to 'arch/mips/cavium-octeon/setup.c')
-rw-r--r-- | arch/mips/cavium-octeon/setup.c | 28 |
1 files changed, 28 insertions, 0 deletions
diff --git a/arch/mips/cavium-octeon/setup.c b/arch/mips/cavium-octeon/setup.c index 48b08eb9d9e4..b212ae12e5ac 100644 --- a/arch/mips/cavium-octeon/setup.c +++ b/arch/mips/cavium-octeon/setup.c | |||
@@ -8,6 +8,7 @@ | |||
8 | * written by Ralf Baechle <ralf@linux-mips.org> | 8 | * written by Ralf Baechle <ralf@linux-mips.org> |
9 | */ | 9 | */ |
10 | #include <linux/compiler.h> | 10 | #include <linux/compiler.h> |
11 | #include <linux/vmalloc.h> | ||
11 | #include <linux/init.h> | 12 | #include <linux/init.h> |
12 | #include <linux/kernel.h> | 13 | #include <linux/kernel.h> |
13 | #include <linux/console.h> | 14 | #include <linux/console.h> |
@@ -1139,3 +1140,30 @@ static int __init edac_devinit(void) | |||
1139 | return err; | 1140 | return err; |
1140 | } | 1141 | } |
1141 | device_initcall(edac_devinit); | 1142 | device_initcall(edac_devinit); |
1143 | |||
1144 | static void __initdata *octeon_dummy_iospace; | ||
1145 | |||
1146 | static int __init octeon_no_pci_init(void) | ||
1147 | { | ||
1148 | /* | ||
1149 | * Initially assume there is no PCI. The PCI/PCIe platform code will | ||
1150 | * later re-initialize these to correct values if they are present. | ||
1151 | */ | ||
1152 | octeon_dummy_iospace = vzalloc(IO_SPACE_LIMIT); | ||
1153 | set_io_port_base((unsigned long)octeon_dummy_iospace); | ||
1154 | ioport_resource.start = MAX_RESOURCE; | ||
1155 | ioport_resource.end = 0; | ||
1156 | return 0; | ||
1157 | } | ||
1158 | core_initcall(octeon_no_pci_init); | ||
1159 | |||
1160 | static int __init octeon_no_pci_release(void) | ||
1161 | { | ||
1162 | /* | ||
1163 | * Release the allocated memory if a real IO space is there. | ||
1164 | */ | ||
1165 | if ((unsigned long)octeon_dummy_iospace != mips_io_port_base) | ||
1166 | vfree(octeon_dummy_iospace); | ||
1167 | return 0; | ||
1168 | } | ||
1169 | late_initcall(octeon_no_pci_release); | ||