This patchset adds support for Netlogic's new XLP processor series. Please see http://netlogicmicro.com/Products/ProductBriefs/MultiCore/XLP832.htm for more details on this processor, The changes here has the platform support with UART, PIC and 32-way SMP. Comments on the code and suggestions are very welcome. Changes from the previous patchset: - Fixes for review comments for the first patchset - Remove 32-bit support code for now, this will be added when 32-bit support works. - Removed unused assembly macros and BSD code from include/netlogic Jayachandran C (4): MIPS: Netlogic: XLP CPU support. MIPS: Netlogic: Platform files for XLP processors. MIPS: Netlogic: Build support for netlogic XLP MIPS: Netlogic: Add default XLP config. arch/mips/Kconfig | 44 ++ arch/mips/configs/nlm_xlp_defconfig | 590 ++++++++++++++++++++ arch/mips/include/asm/cpu.h | 3 +- .../asm/mach-netlogic/cpu-feature-overrides.h | 18 +- arch/mips/include/asm/module.h | 2 + arch/mips/include/asm/netlogic/xlp-hal/bridge.h | 187 +++++++ .../mips/include/asm/netlogic/xlp-hal/cpucontrol.h | 83 +++ arch/mips/include/asm/netlogic/xlp-hal/haldefs.h | 154 +++++ arch/mips/include/asm/netlogic/xlp-hal/iomap.h | 155 +++++ arch/mips/include/asm/netlogic/xlp-hal/pic.h | 383 +++++++++++++ arch/mips/include/asm/netlogic/xlp-hal/sys.h | 128 +++++ arch/mips/include/asm/netlogic/xlp-hal/uart.h | 191 +++++++ arch/mips/include/asm/netlogic/xlp-hal/xlp.h | 71 +++ arch/mips/kernel/Makefile | 1 + arch/mips/kernel/cpu-probe.c | 19 +- arch/mips/lib/Makefile | 1 + arch/mips/mm/Makefile | 1 + arch/mips/mm/c-r4k.c | 3 + arch/mips/netlogic/Kconfig | 3 + arch/mips/netlogic/Platform | 7 + arch/mips/netlogic/xlp/Makefile | 5 + arch/mips/netlogic/xlp/irq.c | 240 ++++++++ arch/mips/netlogic/xlp/nlm_hal.c | 85 +++ arch/mips/netlogic/xlp/platform.c | 108 ++++ arch/mips/netlogic/xlp/setup.c | 98 ++++ arch/mips/netlogic/xlp/smp.c | 285 ++++++++++ arch/mips/netlogic/xlp/smpboot.S | 217 +++++++ arch/mips/netlogic/xlp/time.c | 74 +++ arch/mips/netlogic/xlp/xlp_console.c | 50 ++ 29 files changed, 3198 insertions(+), 8 deletions(-) create mode 100644 arch/mips/configs/nlm_xlp_defconfig create mode 100644 arch/mips/include/asm/netlogic/xlp-hal/bridge.h create mode 100644 arch/mips/include/asm/netlogic/xlp-hal/cpucontrol.h create mode 100644 arch/mips/include/asm/netlogic/xlp-hal/haldefs.h create mode 100644 arch/mips/include/asm/netlogic/xlp-hal/iomap.h create mode 100644 arch/mips/include/asm/netlogic/xlp-hal/pic.h create mode 100644 arch/mips/include/asm/netlogic/xlp-hal/sys.h create mode 100644 arch/mips/include/asm/netlogic/xlp-hal/uart.h create mode 100644 arch/mips/include/asm/netlogic/xlp-hal/xlp.h create mode 100644 arch/mips/netlogic/xlp/Makefile create mode 100644 arch/mips/netlogic/xlp/irq.c create mode 100644 arch/mips/netlogic/xlp/nlm_hal.c create mode 100644 arch/mips/netlogic/xlp/platform.c create mode 100644 arch/mips/netlogic/xlp/setup.c create mode 100644 arch/mips/netlogic/xlp/smp.c create mode 100644 arch/mips/netlogic/xlp/smpboot.S create mode 100644 arch/mips/netlogic/xlp/time.c create mode 100644 arch/mips/netlogic/xlp/xlp_console.c -- 1.7.4.1