]> git.karo-electronics.de Git - karo-tx-linux.git/commitdiff
MIPS: Octeon: Remove vestiges of CONFIG_CAVIUM_OCTEON_2ND_KERNEL
authorDavid Daney <david.daney@cavium.com>
Fri, 17 Feb 2017 19:45:55 +0000 (11:45 -0800)
committerRalf Baechle <ralf@linux-mips.org>
Mon, 10 Apr 2017 09:56:05 +0000 (11:56 +0200)
This config option never really worked, and has bit-rotted to the
point of being completely useless.  Remove it completely.

Signed-off-by: David Daney <david.daney@cavium.com>
Cc: James Hogan <james.hogan@imgtec.com>
Cc: Steven J. Hill <steven.hill@cavium.com>
Cc: linux-mips@linux-mips.org
Cc: linux-kernel@vger.kernel.org
Patchwork: https://patchwork.linux-mips.org/patch/15314/
Signed-off-by: Ralf Baechle <ralf@linux-mips.org>
arch/mips/cavium-octeon/Kconfig
arch/mips/cavium-octeon/Platform
arch/mips/cavium-octeon/setup.c

index c370426a7322f9cca6ce50a03a5fec21fefe75d6..5c0b56203baef0a3f4d804850933a3031990c76c 100644 (file)
@@ -25,15 +25,6 @@ endif # CPU_CAVIUM_OCTEON
 
 if CAVIUM_OCTEON_SOC
 
-config CAVIUM_OCTEON_2ND_KERNEL
-       bool "Build the kernel to be used as a 2nd kernel on the same chip"
-       default "n"
-       help
-         This option configures this kernel to be linked at a different
-         address and use the 2nd uart for output. This allows a kernel built
-         with this option to be run at the same time as one built without this
-         option.
-
 config CAVIUM_OCTEON_LOCK_L2
        bool "Lock often used kernel code in the L2"
        default "y"
index 8a301cb12d68cf7d36b0638df1c480e8df0558ab..45be853700e6a8b1e929ed523dbd54c5610d7360 100644 (file)
@@ -4,8 +4,4 @@
 platform-$(CONFIG_CAVIUM_OCTEON_SOC)   += cavium-octeon/
 cflags-$(CONFIG_CAVIUM_OCTEON_SOC)     +=                              \
                -I$(srctree)/arch/mips/include/asm/mach-cavium-octeon
-ifdef CONFIG_CAVIUM_OCTEON_2ND_KERNEL
-load-$(CONFIG_CAVIUM_OCTEON_SOC)       += 0xffffffff84100000
-else
 load-$(CONFIG_CAVIUM_OCTEON_SOC)       += 0xffffffff81100000
-endif
index d9dbeb0b165bcd4d6720eb2a82ca2f00af22ba2d..a8034d0dcadeb5ce361bfd23dc737a6f48d6f5b4 100644 (file)
@@ -374,14 +374,8 @@ void octeon_write_lcd(const char *s)
  */
 int octeon_get_boot_uart(void)
 {
-       int uart;
-#ifdef CONFIG_CAVIUM_OCTEON_2ND_KERNEL
-       uart = 1;
-#else
-       uart = (octeon_boot_desc_ptr->flags & OCTEON_BL_FLAG_CONSOLE_UART1) ?
+       return (octeon_boot_desc_ptr->flags & OCTEON_BL_FLAG_CONSOLE_UART1) ?
                1 : 0;
-#endif
-       return uart;
 }
 
 /**
@@ -901,14 +895,10 @@ void __init prom_init(void)
        }
 
        if (strstr(arcs_cmdline, "console=") == NULL) {
-#ifdef CONFIG_CAVIUM_OCTEON_2ND_KERNEL
-               strcat(arcs_cmdline, " console=ttyS0,115200");
-#else
                if (octeon_uart == 1)
                        strcat(arcs_cmdline, " console=ttyS1,115200");
                else
                        strcat(arcs_cmdline, " console=ttyS0,115200");
-#endif
        }
 
        mips_hpt_frequency = octeon_get_clock_rate();