diff options
| -rw-r--r-- | arch/mips/include/asm/netlogic/haldefs.h | 21 | ||||
| -rw-r--r-- | arch/mips/include/asm/netlogic/xlp-hal/bridge.h | 187 | ||||
| -rw-r--r-- | arch/mips/include/asm/netlogic/xlp-hal/cpucontrol.h | 83 | ||||
| -rw-r--r-- | arch/mips/include/asm/netlogic/xlp-hal/iomap.h | 153 | ||||
| -rw-r--r-- | arch/mips/include/asm/netlogic/xlp-hal/pic.h | 411 | ||||
| -rw-r--r-- | arch/mips/include/asm/netlogic/xlp-hal/sys.h | 129 | ||||
| -rw-r--r-- | arch/mips/include/asm/netlogic/xlp-hal/uart.h | 191 | ||||
| -rw-r--r-- | arch/mips/include/asm/netlogic/xlp-hal/xlp.h | 54 | ||||
| -rw-r--r-- | arch/mips/netlogic/common/earlycons.c | 9 | ||||
| -rw-r--r-- | arch/mips/netlogic/common/irq.c | 8 | ||||
| -rw-r--r-- | arch/mips/netlogic/common/smp.c | 16 | ||||
| -rw-r--r-- | arch/mips/netlogic/xlp/nlm_hal.c | 105 | ||||
| -rw-r--r-- | arch/mips/netlogic/xlp/platform.c | 108 | ||||
| -rw-r--r-- | arch/mips/netlogic/xlp/setup.c | 101 | ||||
| -rw-r--r-- | arch/mips/netlogic/xlp/smpboot.S | 217 | ||||
| -rw-r--r-- | arch/mips/netlogic/xlp/wakeup.c | 149 |
16 files changed, 1938 insertions, 4 deletions
diff --git a/arch/mips/include/asm/netlogic/haldefs.h b/arch/mips/include/asm/netlogic/haldefs.h index e3264c19aabe..72a0c788b472 100644 --- a/arch/mips/include/asm/netlogic/haldefs.h +++ b/arch/mips/include/asm/netlogic/haldefs.h | |||
| @@ -40,6 +40,9 @@ | |||
| 40 | * and will provide a way to read 32/64 bit memory mapped registers in | 40 | * and will provide a way to read 32/64 bit memory mapped registers in |
| 41 | * all ABIs | 41 | * all ABIs |
| 42 | */ | 42 | */ |
| 43 | #if !defined(CONFIG_64BIT) && defined(CONFIG_CPU_XLP) | ||
| 44 | #error "o32 compile not supported on XLP yet" | ||
| 45 | #endif | ||
| 43 | /* | 46 | /* |
| 44 | * For o32 compilation, we have to disable interrupts and enable KX bit to | 47 | * For o32 compilation, we have to disable interrupts and enable KX bit to |
| 45 | * access 64 bit addresses or data. | 48 | * access 64 bit addresses or data. |
| @@ -133,10 +136,28 @@ nlm_write_reg64_xkphys(uint64_t base, uint32_t reg, uint64_t val) | |||
| 133 | /* Location where IO base is mapped */ | 136 | /* Location where IO base is mapped */ |
| 134 | extern uint64_t nlm_io_base; | 137 | extern uint64_t nlm_io_base; |
| 135 | 138 | ||
| 139 | #if defined(CONFIG_CPU_XLP) | ||
| 140 | static inline uint64_t | ||
| 141 | nlm_pcicfg_base(uint32_t devoffset) | ||
| 142 | { | ||
| 143 | return nlm_io_base + devoffset; | ||
| 144 | } | ||
| 145 | |||
| 146 | static inline uint64_t | ||
| 147 | nlm_xkphys_map_pcibar0(uint64_t pcibase) | ||
| 148 | { | ||
| 149 | uint64_t paddr; | ||
| 150 | |||
| 151 | paddr = nlm_read_reg(pcibase, 0x4) & ~0xfu; | ||
| 152 | return (uint64_t)0x9000000000000000 | paddr; | ||
| 153 | } | ||
| 154 | #elif defined(CONFIG_CPU_XLR) | ||
| 155 | |||
| 136 | static inline uint64_t | 156 | static inline uint64_t |
| 137 | nlm_mmio_base(uint32_t devoffset) | 157 | nlm_mmio_base(uint32_t devoffset) |
| 138 | { | 158 | { |
| 139 | return nlm_io_base + devoffset; | 159 | return nlm_io_base + devoffset; |
| 140 | } | 160 | } |
| 161 | #endif | ||
| 141 | 162 | ||
| 142 | #endif | 163 | #endif |
diff --git a/arch/mips/include/asm/netlogic/xlp-hal/bridge.h b/arch/mips/include/asm/netlogic/xlp-hal/bridge.h new file mode 100644 index 000000000000..ca95133f1ad1 --- /dev/null +++ b/arch/mips/include/asm/netlogic/xlp-hal/bridge.h | |||
| @@ -0,0 +1,187 @@ | |||
| 1 | /* | ||
| 2 | * Copyright 2003-2011 NetLogic Microsystems, Inc. (NetLogic). All rights | ||
| 3 | * reserved. | ||
| 4 | * | ||
| 5 | * This software is available to you under a choice of one of two | ||
| 6 | * licenses. You may choose to be licensed under the terms of the GNU | ||
| 7 | * General Public License (GPL) Version 2, available from the file | ||
| 8 | * COPYING in the main directory of this source tree, or the NetLogic | ||
| 9 | * license below: | ||
| 10 | * | ||
| 11 | * Redistribution and use in source and binary forms, with or without | ||
| 12 | * modification, are permitted provided that the following conditions | ||
| 13 | * are met: | ||
| 14 | * | ||
| 15 | * 1. Redistributions of source code must retain the above copyright | ||
| 16 | * notice, this list of conditions and the following disclaimer. | ||
| 17 | * 2. Redistributions in binary form must reproduce the above copyright | ||
| 18 | * notice, this list of conditions and the following disclaimer in | ||
| 19 | * the documentation and/or other materials provided with the | ||
| 20 | * distribution. | ||
| 21 | * | ||
| 22 | * THIS SOFTWARE IS PROVIDED BY NETLOGIC ``AS IS'' AND ANY EXPRESS OR | ||
| 23 | * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED | ||
| 24 | * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE | ||
| 25 | * ARE DISCLAIMED. IN NO EVENT SHALL NETLOGIC OR CONTRIBUTORS BE LIABLE | ||
| 26 | * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR | ||
| 27 | * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF | ||
| 28 | * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR | ||
| 29 | * BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, | ||
| 30 | * WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE | ||
| 31 | * OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN | ||
| 32 | * IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. | ||
| 33 | */ | ||
| 34 | |||
| 35 | #ifndef __NLM_HAL_BRIDGE_H__ | ||
| 36 | #define __NLM_HAL_BRIDGE_H__ | ||
| 37 | |||
| 38 | /** | ||
| 39 | * @file_name mio.h | ||
| 40 | * @author Netlogic Microsystems | ||
| 41 | * @brief Basic definitions of XLP memory and io subsystem | ||
| 42 | */ | ||
| 43 | |||
| 44 | /* | ||
| 45 | * BRIDGE specific registers | ||
| 46 | * | ||
| 47 | * These registers start after the PCIe header, which has 0x40 | ||
| 48 | * standard entries | ||
| 49 | */ | ||
| 50 | #define BRIDGE_MODE 0x00 | ||
| 51 | #define BRIDGE_PCI_CFG_BASE 0x01 | ||
| 52 | #define BRIDGE_PCI_CFG_LIMIT 0x02 | ||
| 53 | #define BRIDGE_PCIE_CFG_BASE 0x03 | ||
| 54 | #define BRIDGE_PCIE_CFG_LIMIT 0x04 | ||
| 55 | #define BRIDGE_BUSNUM_BAR0 0x05 | ||
| 56 | #define BRIDGE_BUSNUM_BAR1 0x06 | ||
| 57 | #define BRIDGE_BUSNUM_BAR2 0x07 | ||
| 58 | #define BRIDGE_BUSNUM_BAR3 0x08 | ||
| 59 | #define BRIDGE_BUSNUM_BAR4 0x09 | ||
| 60 | #define BRIDGE_BUSNUM_BAR5 0x0a | ||
| 61 | #define BRIDGE_BUSNUM_BAR6 0x0b | ||
| 62 | #define BRIDGE_FLASH_BAR0 0x0c | ||
| 63 | #define BRIDGE_FLASH_BAR1 0x0d | ||
| 64 | #define BRIDGE_FLASH_BAR2 0x0e | ||
| 65 | #define BRIDGE_FLASH_BAR3 0x0f | ||
| 66 | #define BRIDGE_FLASH_LIMIT0 0x10 | ||
| 67 | #define BRIDGE_FLASH_LIMIT1 0x11 | ||
| 68 | #define BRIDGE_FLASH_LIMIT2 0x12 | ||
| 69 | #define BRIDGE_FLASH_LIMIT3 0x13 | ||
| 70 | |||
| 71 | #define BRIDGE_DRAM_BAR(i) (0x14 + (i)) | ||
| 72 | #define BRIDGE_DRAM_BAR0 0x14 | ||
| 73 | #define BRIDGE_DRAM_BAR1 0x15 | ||
| 74 | #define BRIDGE_DRAM_BAR2 0x16 | ||
| 75 | #define BRIDGE_DRAM_BAR3 0x17 | ||
| 76 | #define BRIDGE_DRAM_BAR4 0x18 | ||
| 77 | #define BRIDGE_DRAM_BAR5 0x19 | ||
| 78 | #define BRIDGE_DRAM_BAR6 0x1a | ||
| 79 | #define BRIDGE_DRAM_BAR7 0x1b | ||
| 80 | |||
| 81 | #define BRIDGE_DRAM_LIMIT(i) (0x1c + (i)) | ||
| 82 | #define BRIDGE_DRAM_LIMIT0 0x1c | ||
| 83 | #define BRIDGE_DRAM_LIMIT1 0x1d | ||
| 84 | #define BRIDGE_DRAM_LIMIT2 0x1e | ||
| 85 | #define BRIDGE_DRAM_LIMIT3 0x1f | ||
| 86 | #define BRIDGE_DRAM_LIMIT4 0x20 | ||
| 87 | #define BRIDGE_DRAM_LIMIT5 0x21 | ||
| 88 | #define BRIDGE_DRAM_LIMIT6 0x22 | ||
| 89 | #define BRIDGE_DRAM_LIMIT7 0x23 | ||
| 90 | |||
| 91 | #define BRIDGE_DRAM_NODE_TRANSLN0 0x24 | ||
| 92 | #define BRIDGE_DRAM_NODE_TRANSLN1 0x25 | ||
| 93 | #define BRIDGE_DRAM_NODE_TRANSLN2 0x26 | ||
| 94 | #define BRIDGE_DRAM_NODE_TRANSLN3 0x27 | ||
| 95 | #define BRIDGE_DRAM_NODE_TRANSLN4 0x28 | ||
| 96 | #define BRIDGE_DRAM_NODE_TRANSLN5 0x29 | ||
| 97 | #define BRIDGE_DRAM_NODE_TRANSLN6 0x2a | ||
| 98 | #define BRIDGE_DRAM_NODE_TRANSLN7 0x2b | ||
| 99 | #define BRIDGE_DRAM_CHNL_TRANSLN0 0x2c | ||
| 100 | #define BRIDGE_DRAM_CHNL_TRANSLN1 0x2d | ||
| 101 | #define BRIDGE_DRAM_CHNL_TRANSLN2 0x2e | ||
| 102 | #define BRIDGE_DRAM_CHNL_TRANSLN3 0x2f | ||
| 103 | #define BRIDGE_DRAM_CHNL_TRANSLN4 0x30 | ||
| 104 | #define BRIDGE_DRAM_CHNL_TRANSLN5 0x31 | ||
| 105 | #define BRIDGE_DRAM_CHNL_TRANSLN6 0x32 | ||
| 106 | #define BRIDGE_DRAM_CHNL_TRANSLN7 0x33 | ||
| 107 | #define BRIDGE_PCIEMEM_BASE0 0x34 | ||
| 108 | #define BRIDGE_PCIEMEM_BASE1 0x35 | ||
| 109 | #define BRIDGE_PCIEMEM_BASE2 0x36 | ||
| 110 | #define BRIDGE_PCIEMEM_BASE3 0x37 | ||
| 111 | #define BRIDGE_PCIEMEM_LIMIT0 0x38 | ||
| 112 | #define BRIDGE_PCIEMEM_LIMIT1 0x39 | ||
| 113 | #define BRIDGE_PCIEMEM_LIMIT2 0x3a | ||
| 114 | #define BRIDGE_PCIEMEM_LIMIT3 0x3b | ||
| 115 | #define BRIDGE_PCIEIO_BASE0 0x3c | ||
