Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1 | /* |
| 2 | * linux/arch/arm/mach-integrator/pci_v3.c |
| 3 | * |
| 4 | * PCI functions for V3 host PCI bridge |
| 5 | * |
| 6 | * Copyright (C) 1999 ARM Limited |
| 7 | * Copyright (C) 2000-2001 Deep Blue Solutions Ltd |
| 8 | * |
| 9 | * This program is free software; you can redistribute it and/or modify |
| 10 | * it under the terms of the GNU General Public License as published by |
| 11 | * the Free Software Foundation; either version 2 of the License, or |
| 12 | * (at your option) any later version. |
| 13 | * |
| 14 | * This program is distributed in the hope that it will be useful, |
| 15 | * but WITHOUT ANY WARRANTY; without even the implied warranty of |
| 16 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
| 17 | * GNU General Public License for more details. |
| 18 | * |
| 19 | * You should have received a copy of the GNU General Public License |
| 20 | * along with this program; if not, write to the Free Software |
| 21 | * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA |
| 22 | */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 23 | #include <linux/kernel.h> |
| 24 | #include <linux/pci.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 25 | #include <linux/ioport.h> |
| 26 | #include <linux/interrupt.h> |
| 27 | #include <linux/spinlock.h> |
| 28 | #include <linux/init.h> |
Russell King | fced80c | 2008-09-06 12:10:45 +0100 | [diff] [blame] | 29 | #include <linux/io.h> |
Linus Walleij | 86adc39 | 2013-02-02 23:16:57 +0100 | [diff] [blame] | 30 | #include <linux/platform_device.h> |
Linus Walleij | 01ef310 | 2013-03-16 22:03:41 +0100 | [diff] [blame] | 31 | #include <video/vga.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 32 | |
Russell King | a09e64f | 2008-08-05 16:14:15 +0100 | [diff] [blame] | 33 | #include <mach/hardware.h> |
Russell King | a285edc | 2010-01-14 19:59:37 +0000 | [diff] [blame] | 34 | #include <mach/platform.h> |
Linus Walleij | 695436e | 2012-02-26 10:46:48 +0100 | [diff] [blame] | 35 | #include <mach/irqs.h> |
| 36 | |
Linus Walleij | ae9daf2 | 2013-03-19 19:58:49 +0100 | [diff] [blame^] | 37 | #include <asm/mach/map.h> |
Alexey Dobriyan | d43c36d | 2009-10-07 17:09:06 +0400 | [diff] [blame] | 38 | #include <asm/signal.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 39 | #include <asm/mach/pci.h> |
Russell King | c6af66b | 2007-05-17 10:16:55 +0100 | [diff] [blame] | 40 | #include <asm/irq_regs.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 41 | |
Linus Walleij | ae9daf2 | 2013-03-19 19:58:49 +0100 | [diff] [blame^] | 42 | #include "pci_v3.h" |
| 43 | |
| 44 | /* |
| 45 | * Where in the memory map does PCI live? |
| 46 | * |
| 47 | * This represents a fairly liberal usage of address space. Even though |
| 48 | * the V3 only has two windows (therefore we need to map stuff on the fly), |
| 49 | * we maintain the same addresses, even if they're not mapped. |
| 50 | */ |
| 51 | #define PHYS_PCI_MEM_BASE 0x40000000 /* 512M */ |
| 52 | #define PHYS_PCI_IO_BASE 0x60000000 /* 16M */ |
| 53 | #define PHYS_PCI_CONFIG_BASE 0x61000000 /* 16M */ |
| 54 | #define PHYS_PCI_V3_BASE 0x62000000 /* 64K */ |
| 55 | |
| 56 | #define PCI_MEMORY_VADDR IOMEM(0xe8000000) |
| 57 | #define PCI_CONFIG_VADDR IOMEM(0xec000000) |
| 58 | |
Linus Walleij | 207bcf4 | 2013-02-03 00:20:44 +0100 | [diff] [blame] | 59 | /* |
| 60 | * V3 Local Bus to PCI Bridge definitions |
| 61 | * |
| 62 | * Registers (these are taken from page 129 of the EPC User's Manual Rev 1.04 |
| 63 | * All V3 register names are prefaced by V3_ to avoid clashing with any other |
| 64 | * PCI definitions. Their names match the user's manual. |
| 65 | * |
| 66 | * I'm assuming that I20 is disabled. |
| 67 | * |
| 68 | */ |
| 69 | #define V3_PCI_VENDOR 0x00000000 |
| 70 | #define V3_PCI_DEVICE 0x00000002 |
| 71 | #define V3_PCI_CMD 0x00000004 |
| 72 | #define V3_PCI_STAT 0x00000006 |
| 73 | #define V3_PCI_CC_REV 0x00000008 |
| 74 | #define V3_PCI_HDR_CFG 0x0000000C |
| 75 | #define V3_PCI_IO_BASE 0x00000010 |
| 76 | #define V3_PCI_BASE0 0x00000014 |
| 77 | #define V3_PCI_BASE1 0x00000018 |
| 78 | #define V3_PCI_SUB_VENDOR 0x0000002C |
| 79 | #define V3_PCI_SUB_ID 0x0000002E |
| 80 | #define V3_PCI_ROM 0x00000030 |
| 81 | #define V3_PCI_BPARAM 0x0000003C |
| 82 | #define V3_PCI_MAP0 0x00000040 |
| 83 | #define V3_PCI_MAP1 0x00000044 |
| 84 | #define V3_PCI_INT_STAT 0x00000048 |
| 85 | #define V3_PCI_INT_CFG 0x0000004C |
| 86 | #define V3_LB_BASE0 0x00000054 |
| 87 | #define V3_LB_BASE1 0x00000058 |
| 88 | #define V3_LB_MAP0 0x0000005E |
| 89 | #define V3_LB_MAP1 0x00000062 |
| 90 | #define V3_LB_BASE2 0x00000064 |
| 91 | #define V3_LB_MAP2 0x00000066 |
| 92 | #define V3_LB_SIZE 0x00000068 |
| 93 | #define V3_LB_IO_BASE 0x0000006E |
| 94 | #define V3_FIFO_CFG 0x00000070 |
| 95 | #define V3_FIFO_PRIORITY 0x00000072 |
| 96 | #define V3_FIFO_STAT 0x00000074 |
| 97 | #define V3_LB_ISTAT 0x00000076 |
| 98 | #define V3_LB_IMASK 0x00000077 |
| 99 | #define V3_SYSTEM 0x00000078 |
| 100 | #define V3_LB_CFG 0x0000007A |
| 101 | #define V3_PCI_CFG 0x0000007C |
| 102 | #define V3_DMA_PCI_ADR0 0x00000080 |
| 103 | #define V3_DMA_PCI_ADR1 0x00000090 |
| 104 | #define V3_DMA_LOCAL_ADR0 0x00000084 |
| 105 | #define V3_DMA_LOCAL_ADR1 0x00000094 |
| 106 | #define V3_DMA_LENGTH0 0x00000088 |
| 107 | #define V3_DMA_LENGTH1 0x00000098 |
| 108 | #define V3_DMA_CSR0 0x0000008B |
| 109 | #define V3_DMA_CSR1 0x0000009B |
| 110 | #define V3_DMA_CTLB_ADR0 0x0000008C |
| 111 | #define V3_DMA_CTLB_ADR1 0x0000009C |
| 112 | #define V3_DMA_DELAY 0x000000E0 |
| 113 | #define V3_MAIL_DATA 0x000000C0 |
| 114 | #define V3_PCI_MAIL_IEWR 0x000000D0 |
| 115 | #define V3_PCI_MAIL_IERD 0x000000D2 |
| 116 | #define V3_LB_MAIL_IEWR 0x000000D4 |
| 117 | #define V3_LB_MAIL_IERD 0x000000D6 |
| 118 | #define V3_MAIL_WR_STAT 0x000000D8 |
| 119 | #define V3_MAIL_RD_STAT 0x000000DA |
| 120 | #define V3_QBA_MAP 0x000000DC |
| 121 | |
| 122 | /* PCI COMMAND REGISTER bits |
| 123 | */ |
| 124 | #define V3_COMMAND_M_FBB_EN (1 << 9) |
| 125 | #define V3_COMMAND_M_SERR_EN (1 << 8) |
| 126 | #define V3_COMMAND_M_PAR_EN (1 << 6) |
| 127 | #define V3_COMMAND_M_MASTER_EN (1 << 2) |
| 128 | #define V3_COMMAND_M_MEM_EN (1 << 1) |
| 129 | #define V3_COMMAND_M_IO_EN (1 << 0) |
| 130 | |
| 131 | /* SYSTEM REGISTER bits |
| 132 | */ |
| 133 | #define V3_SYSTEM_M_RST_OUT (1 << 15) |
| 134 | #define V3_SYSTEM_M_LOCK (1 << 14) |
| 135 | |
| 136 | /* PCI_CFG bits |
| 137 | */ |
| 138 | #define V3_PCI_CFG_M_I2O_EN (1 << 15) |
| 139 | #define V3_PCI_CFG_M_IO_REG_DIS (1 << 14) |
| 140 | #define V3_PCI_CFG_M_IO_DIS (1 << 13) |
| 141 | #define V3_PCI_CFG_M_EN3V (1 << 12) |
| 142 | #define V3_PCI_CFG_M_RETRY_EN (1 << 10) |
| 143 | #define V3_PCI_CFG_M_AD_LOW1 (1 << 9) |
| 144 | #define V3_PCI_CFG_M_AD_LOW0 (1 << 8) |
| 145 | |
| 146 | /* PCI_BASE register bits (PCI -> Local Bus) |
| 147 | */ |
| 148 | #define V3_PCI_BASE_M_ADR_BASE 0xFFF00000 |
| 149 | #define V3_PCI_BASE_M_ADR_BASEL 0x000FFF00 |
| 150 | #define V3_PCI_BASE_M_PREFETCH (1 << 3) |
| 151 | #define V3_PCI_BASE_M_TYPE (3 << 1) |
| 152 | #define V3_PCI_BASE_M_IO (1 << 0) |
| 153 | |
| 154 | /* PCI MAP register bits (PCI -> Local bus) |
| 155 | */ |
| 156 | #define V3_PCI_MAP_M_MAP_ADR 0xFFF00000 |
| 157 | #define V3_PCI_MAP_M_RD_POST_INH (1 << 15) |
| 158 | #define V3_PCI_MAP_M_ROM_SIZE (3 << 10) |
| 159 | #define V3_PCI_MAP_M_SWAP (3 << 8) |
| 160 | #define V3_PCI_MAP_M_ADR_SIZE 0x000000F0 |
| 161 | #define V3_PCI_MAP_M_REG_EN (1 << 1) |
| 162 | #define V3_PCI_MAP_M_ENABLE (1 << 0) |
| 163 | |
| 164 | /* |
| 165 | * LB_BASE0,1 register bits (Local bus -> PCI) |
| 166 | */ |
| 167 | #define V3_LB_BASE_ADR_BASE 0xfff00000 |
| 168 | #define V3_LB_BASE_SWAP (3 << 8) |
| 169 | #define V3_LB_BASE_ADR_SIZE (15 << 4) |
| 170 | #define V3_LB_BASE_PREFETCH (1 << 3) |
| 171 | #define V3_LB_BASE_ENABLE (1 << 0) |
| 172 | |
| 173 | #define V3_LB_BASE_ADR_SIZE_1MB (0 << 4) |
| 174 | #define V3_LB_BASE_ADR_SIZE_2MB (1 << 4) |
| 175 | #define V3_LB_BASE_ADR_SIZE_4MB (2 << 4) |
| 176 | #define V3_LB_BASE_ADR_SIZE_8MB (3 << 4) |
| 177 | #define V3_LB_BASE_ADR_SIZE_16MB (4 << 4) |
| 178 | #define V3_LB_BASE_ADR_SIZE_32MB (5 << 4) |
| 179 | #define V3_LB_BASE_ADR_SIZE_64MB (6 << 4) |
| 180 | #define V3_LB_BASE_ADR_SIZE_128MB (7 << 4) |
| 181 | #define V3_LB_BASE_ADR_SIZE_256MB (8 << 4) |
| 182 | #define V3_LB_BASE_ADR_SIZE_512MB (9 << 4) |
| 183 | #define V3_LB_BASE_ADR_SIZE_1GB (10 << 4) |
| 184 | #define V3_LB_BASE_ADR_SIZE_2GB (11 << 4) |
| 185 | |
| 186 | #define v3_addr_to_lb_base(a) ((a) & V3_LB_BASE_ADR_BASE) |
| 187 | |
| 188 | /* |
| 189 | * LB_MAP0,1 register bits (Local bus -> PCI) |
| 190 | */ |
| 191 | #define V3_LB_MAP_MAP_ADR 0xfff0 |
| 192 | #define V3_LB_MAP_TYPE (7 << 1) |
| 193 | #define V3_LB_MAP_AD_LOW_EN (1 << 0) |
| 194 | |
| 195 | #define V3_LB_MAP_TYPE_IACK (0 << 1) |
| 196 | #define V3_LB_MAP_TYPE_IO (1 << 1) |
| 197 | #define V3_LB_MAP_TYPE_MEM (3 << 1) |
| 198 | #define V3_LB_MAP_TYPE_CONFIG (5 << 1) |
| 199 | #define V3_LB_MAP_TYPE_MEM_MULTIPLE (6 << 1) |
| 200 | |
| 201 | #define v3_addr_to_lb_map(a) (((a) >> 16) & V3_LB_MAP_MAP_ADR) |
| 202 | |
| 203 | /* |
| 204 | * LB_BASE2 register bits (Local bus -> PCI IO) |
| 205 | */ |
| 206 | #define V3_LB_BASE2_ADR_BASE 0xff00 |
| 207 | #define V3_LB_BASE2_SWAP (3 << 6) |
| 208 | #define V3_LB_BASE2_ENABLE (1 << 0) |
| 209 | |
| 210 | #define v3_addr_to_lb_base2(a) (((a) >> 16) & V3_LB_BASE2_ADR_BASE) |
| 211 | |
| 212 | /* |
| 213 | * LB_MAP2 register bits (Local bus -> PCI IO) |
| 214 | */ |
| 215 | #define V3_LB_MAP2_MAP_ADR 0xff00 |
| 216 | |
| 217 | #define v3_addr_to_lb_map2(a) (((a) >> 16) & V3_LB_MAP2_MAP_ADR) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 218 | |
| 219 | /* |
| 220 | * The V3 PCI interface chip in Integrator provides several windows from |
| 221 | * local bus memory into the PCI memory areas. Unfortunately, there |
Rob Herring | 29d3960 | 2012-07-13 16:27:43 -0500 | [diff] [blame] | 222 | * are not really enough windows for our usage, therefore we reuse |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 223 | * one of the windows for access to PCI configuration space. The |
| 224 | * memory map is as follows: |
Rob Herring | 29d3960 | 2012-07-13 16:27:43 -0500 | [diff] [blame] | 225 | * |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 226 | * Local Bus Memory Usage |
Rob Herring | 29d3960 | 2012-07-13 16:27:43 -0500 | [diff] [blame] | 227 | * |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 228 | * 40000000 - 4FFFFFFF PCI memory. 256M non-prefetchable |
| 229 | * 50000000 - 5FFFFFFF PCI memory. 256M prefetchable |
| 230 | * 60000000 - 60FFFFFF PCI IO. 16M |
| 231 | * 61000000 - 61FFFFFF PCI Configuration. 16M |
Rob Herring | 29d3960 | 2012-07-13 16:27:43 -0500 | [diff] [blame] | 232 | * |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 233 | * There are three V3 windows, each described by a pair of V3 registers. |
| 234 | * These are LB_BASE0/LB_MAP0, LB_BASE1/LB_MAP1 and LB_BASE2/LB_MAP2. |
| 235 | * Base0 and Base1 can be used for any type of PCI memory access. Base2 |
| 236 | * can be used either for PCI I/O or for I20 accesses. By default, uHAL |
| 237 | * uses this only for PCI IO space. |
Rob Herring | 29d3960 | 2012-07-13 16:27:43 -0500 | [diff] [blame] | 238 | * |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 239 | * Normally these spaces are mapped using the following base registers: |
Rob Herring | 29d3960 | 2012-07-13 16:27:43 -0500 | [diff] [blame] | 240 | * |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 241 | * Usage Local Bus Memory Base/Map registers used |
Rob Herring | 29d3960 | 2012-07-13 16:27:43 -0500 | [diff] [blame] | 242 | * |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 243 | * Mem 40000000 - 4FFFFFFF LB_BASE0/LB_MAP0 |
| 244 | * Mem 50000000 - 5FFFFFFF LB_BASE1/LB_MAP1 |
| 245 | * IO 60000000 - 60FFFFFF LB_BASE2/LB_MAP2 |
| 246 | * Cfg 61000000 - 61FFFFFF |
Rob Herring | 29d3960 | 2012-07-13 16:27:43 -0500 | [diff] [blame] | 247 | * |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 248 | * This means that I20 and PCI configuration space accesses will fail. |
Rob Herring | 29d3960 | 2012-07-13 16:27:43 -0500 | [diff] [blame] | 249 | * When PCI configuration accesses are needed (via the uHAL PCI |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 250 | * configuration space primitives) we must remap the spaces as follows: |
Rob Herring | 29d3960 | 2012-07-13 16:27:43 -0500 | [diff] [blame] | 251 | * |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 252 | * Usage Local Bus Memory Base/Map registers used |
Rob Herring | 29d3960 | 2012-07-13 16:27:43 -0500 | [diff] [blame] | 253 | * |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 254 | * Mem 40000000 - 4FFFFFFF LB_BASE0/LB_MAP0 |
| 255 | * Mem 50000000 - 5FFFFFFF LB_BASE0/LB_MAP0 |
| 256 | * IO 60000000 - 60FFFFFF LB_BASE2/LB_MAP2 |
| 257 | * Cfg 61000000 - 61FFFFFF LB_BASE1/LB_MAP1 |
Rob Herring | 29d3960 | 2012-07-13 16:27:43 -0500 | [diff] [blame] | 258 | * |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 259 | * To make this work, the code depends on overlapping windows working. |
Rob Herring | 29d3960 | 2012-07-13 16:27:43 -0500 | [diff] [blame] | 260 | * The V3 chip translates an address by checking its range within |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 261 | * each of the BASE/MAP pairs in turn (in ascending register number |
| 262 | * order). It will use the first matching pair. So, for example, |
| 263 | * if the same address is mapped by both LB_BASE0/LB_MAP0 and |
Rob Herring | 29d3960 | 2012-07-13 16:27:43 -0500 | [diff] [blame] | 264 | * LB_BASE1/LB_MAP1, the V3 will use the translation from |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 265 | * LB_BASE0/LB_MAP0. |
Rob Herring | 29d3960 | 2012-07-13 16:27:43 -0500 | [diff] [blame] | 266 | * |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 267 | * To allow PCI Configuration space access, the code enlarges the |
| 268 | * window mapped by LB_BASE0/LB_MAP0 from 256M to 512M. This occludes |
| 269 | * the windows currently mapped by LB_BASE1/LB_MAP1 so that it can |
| 270 | * be remapped for use by configuration cycles. |
Rob Herring | 29d3960 | 2012-07-13 16:27:43 -0500 | [diff] [blame] | 271 | * |
| 272 | * At the end of the PCI Configuration space accesses, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 273 | * LB_BASE1/LB_MAP1 is reset to map PCI Memory. Finally the window |
| 274 | * mapped by LB_BASE0/LB_MAP0 is reduced in size from 512M to 256M to |
| 275 | * reveal the now restored LB_BASE1/LB_MAP1 window. |
Rob Herring | 29d3960 | 2012-07-13 16:27:43 -0500 | [diff] [blame] | 276 | * |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 277 | * NOTE: We do not set up I2O mapping. I suspect that this is only |
| 278 | * for an intelligent (target) device. Using I2O disables most of |
| 279 | * the mappings into PCI memory. |
| 280 | */ |
| 281 | |
Linus Walleij | a5ecbab | 2013-03-16 21:51:02 +0100 | [diff] [blame] | 282 | static void __iomem *pci_v3_base; |
| 283 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 284 | // V3 access routines |
Linus Walleij | a5ecbab | 2013-03-16 21:51:02 +0100 | [diff] [blame] | 285 | #define v3_writeb(o,v) __raw_writeb(v, pci_v3_base + (unsigned int)(o)) |
| 286 | #define v3_readb(o) (__raw_readb(pci_v3_base + (unsigned int)(o))) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 287 | |
Linus Walleij | a5ecbab | 2013-03-16 21:51:02 +0100 | [diff] [blame] | 288 | #define v3_writew(o,v) __raw_writew(v, pci_v3_base + (unsigned int)(o)) |
| 289 | #define v3_readw(o) (__raw_readw(pci_v3_base + (unsigned int)(o))) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 290 | |
Linus Walleij | a5ecbab | 2013-03-16 21:51:02 +0100 | [diff] [blame] | 291 | #define v3_writel(o,v) __raw_writel(v, pci_v3_base + (unsigned int)(o)) |
| 292 | #define v3_readl(o) (__raw_readl(pci_v3_base + (unsigned int)(o))) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 293 | |
| 294 | /*============================================================================ |
| 295 | * |
| 296 | * routine: uHALir_PCIMakeConfigAddress() |
| 297 | * |
| 298 | * parameters: bus = which bus |
| 299 | * device = which device |
| 300 | * function = which function |
| 301 | * offset = configuration space register we are interested in |
| 302 | * |
| 303 | * description: this routine will generate a platform dependent config |
| 304 | * address. |
| 305 | * |
| 306 | * calls: none |
| 307 | * |
| 308 | * returns: configuration address to play on the PCI bus |
| 309 | * |
Rob Herring | 29d3960 | 2012-07-13 16:27:43 -0500 | [diff] [blame] | 310 | * To generate the appropriate PCI configuration cycles in the PCI |
| 311 | * configuration address space, you present the V3 with the following pattern |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 312 | * (which is very nearly a type 1 (except that the lower two bits are 00 and |
| 313 | * not 01). In order for this mapping to work you need to set up one of |
| 314 | * the local to PCI aperatures to 16Mbytes in length translating to |
| 315 | * PCI configuration space starting at 0x0000.0000. |
| 316 | * |
| 317 | * PCI configuration cycles look like this: |
| 318 | * |
| 319 | * Type 0: |
| 320 | * |
Rob Herring | 29d3960 | 2012-07-13 16:27:43 -0500 | [diff] [blame] | 321 | * 3 3|3 3 2 2|2 2 2 2|2 2 2 2|1 1 1 1|1 1 1 1|1 1 |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 322 | * 3 2|1 0 9 8|7 6 5 4|3 2 1 0|9 8 7 6|5 4 3 2|1 0 9 8|7 6 5 4|3 2 1 0 |
| 323 | * +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+ |
| 324 | * | | |D|D|D|D|D|D|D|D|D|D|D|D|D|D|D|D|D|D|D|D|D|F|F|F|R|R|R|R|R|R|0|0| |
| 325 | * +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+ |
| 326 | * |
| 327 | * 31:11 Device select bit. |
| 328 | * 10:8 Function number |
| 329 | * 7:2 Register number |
| 330 | * |
| 331 | * Type 1: |
| 332 | * |
Rob Herring | 29d3960 | 2012-07-13 16:27:43 -0500 | [diff] [blame] | 333 | * 3 3|3 3 2 2|2 2 2 2|2 2 2 2|1 1 1 1|1 1 1 1|1 1 |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 334 | * 3 2|1 0 9 8|7 6 5 4|3 2 1 0|9 8 7 6|5 4 3 2|1 0 9 8|7 6 5 4|3 2 1 0 |
| 335 | * +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+ |
| 336 | * | | | | | | | | | | |B|B|B|B|B|B|B|B|D|D|D|D|D|F|F|F|R|R|R|R|R|R|0|1| |
| 337 | * +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+ |
| 338 | * |
| 339 | * 31:24 reserved |
| 340 | * 23:16 bus number (8 bits = 128 possible buses) |
| 341 | * 15:11 Device number (5 bits) |
| 342 | * 10:8 function number |
| 343 | * 7:2 register number |
Rob Herring | 29d3960 | 2012-07-13 16:27:43 -0500 | [diff] [blame] | 344 | * |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 345 | */ |
Thomas Gleixner | bd31b85 | 2009-07-03 08:44:46 -0500 | [diff] [blame] | 346 | static DEFINE_RAW_SPINLOCK(v3_lock); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 347 | |
| 348 | #define PCI_BUS_NONMEM_START 0x00000000 |
| 349 | #define PCI_BUS_NONMEM_SIZE SZ_256M |
| 350 | |
| 351 | #define PCI_BUS_PREMEM_START PCI_BUS_NONMEM_START + PCI_BUS_NONMEM_SIZE |
| 352 | #define PCI_BUS_PREMEM_SIZE SZ_256M |
| 353 | |
| 354 | #if PCI_BUS_NONMEM_START & 0x000fffff |
| 355 | #error PCI_BUS_NONMEM_START must be megabyte aligned |
| 356 | #endif |
| 357 | #if PCI_BUS_PREMEM_START & 0x000fffff |
| 358 | #error PCI_BUS_PREMEM_START must be megabyte aligned |
| 359 | #endif |
| 360 | |
| 361 | #undef V3_LB_BASE_PREFETCH |
| 362 | #define V3_LB_BASE_PREFETCH 0 |
| 363 | |
Arnd Bergmann | b7a3f8d | 2012-09-14 20:16:39 +0000 | [diff] [blame] | 364 | static void __iomem *v3_open_config_window(struct pci_bus *bus, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 365 | unsigned int devfn, int offset) |
| 366 | { |
| 367 | unsigned int address, mapaddress, busnr; |
| 368 | |
| 369 | busnr = bus->number; |
| 370 | |
| 371 | /* |
| 372 | * Trap out illegal values |
| 373 | */ |
Sasha Levin | f7a9b36 | 2012-11-08 15:23:08 -0500 | [diff] [blame] | 374 | BUG_ON(offset > 255); |
| 375 | BUG_ON(busnr > 255); |
| 376 | BUG_ON(devfn > 255); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 377 | |
| 378 | if (busnr == 0) { |
| 379 | int slot = PCI_SLOT(devfn); |
| 380 | |
| 381 | /* |
| 382 | * local bus segment so need a type 0 config cycle |
| 383 | * |
| 384 | * build the PCI configuration "address" with one-hot in |
| 385 | * A31-A11 |
| 386 | * |
| 387 | * mapaddress: |
| 388 | * 3:1 = config cycle (101) |
| 389 | * 0 = PCI A1 & A0 are 0 (0) |
| 390 | */ |
| 391 | address = PCI_FUNC(devfn) << 8; |
| 392 | mapaddress = V3_LB_MAP_TYPE_CONFIG; |
| 393 | |
| 394 | if (slot > 12) |
| 395 | /* |
| 396 | * high order bits are handled by the MAP register |
| 397 | */ |
| 398 | mapaddress |= 1 << (slot - 5); |
| 399 | else |
| 400 | /* |
| 401 | * low order bits handled directly in the address |
| 402 | */ |
| 403 | address |= 1 << (slot + 11); |
| 404 | } else { |
| 405 | /* |
| 406 | * not the local bus segment so need a type 1 config cycle |
| 407 | * |
| 408 | * address: |
| 409 | * 23:16 = bus number |
| 410 | * 15:11 = slot number (7:3 of devfn) |
| 411 | * 10:8 = func number (2:0 of devfn) |
| 412 | * |
| 413 | * mapaddress: |
| 414 | * 3:1 = config cycle (101) |
| 415 | * 0 = PCI A1 & A0 from host bus (1) |
| 416 | */ |
| 417 | mapaddress = V3_LB_MAP_TYPE_CONFIG | V3_LB_MAP_AD_LOW_EN; |
| 418 | address = (busnr << 16) | (devfn << 8); |
| 419 | } |
| 420 | |
| 421 | /* |
| 422 | * Set up base0 to see all 512Mbytes of memory space (not |
| 423 | * prefetchable), this frees up base1 for re-use by |
| 424 | * configuration memory |
| 425 | */ |
| 426 | v3_writel(V3_LB_BASE0, v3_addr_to_lb_base(PHYS_PCI_MEM_BASE) | |
| 427 | V3_LB_BASE_ADR_SIZE_512MB | V3_LB_BASE_ENABLE); |
| 428 | |
| 429 | /* |
| 430 | * Set up base1/map1 to point into configuration space. |
| 431 | */ |
| 432 | v3_writel(V3_LB_BASE1, v3_addr_to_lb_base(PHYS_PCI_CONFIG_BASE) | |
| 433 | V3_LB_BASE_ADR_SIZE_16MB | V3_LB_BASE_ENABLE); |
| 434 | v3_writew(V3_LB_MAP1, mapaddress); |
| 435 | |
| 436 | return PCI_CONFIG_VADDR + address + offset; |
| 437 | } |
| 438 | |
| 439 | static void v3_close_config_window(void) |
| 440 | { |
| 441 | /* |
| 442 | * Reassign base1 for use by prefetchable PCI memory |
| 443 | */ |
| 444 | v3_writel(V3_LB_BASE1, v3_addr_to_lb_base(PHYS_PCI_MEM_BASE + SZ_256M) | |
| 445 | V3_LB_BASE_ADR_SIZE_256MB | V3_LB_BASE_PREFETCH | |
| 446 | V3_LB_BASE_ENABLE); |
| 447 | v3_writew(V3_LB_MAP1, v3_addr_to_lb_map(PCI_BUS_PREMEM_START) | |
| 448 | V3_LB_MAP_TYPE_MEM_MULTIPLE); |
| 449 | |
| 450 | /* |
| 451 | * And shrink base0 back to a 256M window (NOTE: MAP0 already correct) |
| 452 | */ |
| 453 | v3_writel(V3_LB_BASE0, v3_addr_to_lb_base(PHYS_PCI_MEM_BASE) | |
| 454 | V3_LB_BASE_ADR_SIZE_256MB | V3_LB_BASE_ENABLE); |
| 455 | } |
| 456 | |
| 457 | static int v3_read_config(struct pci_bus *bus, unsigned int devfn, int where, |
| 458 | int size, u32 *val) |
| 459 | { |
Arnd Bergmann | b7a3f8d | 2012-09-14 20:16:39 +0000 | [diff] [blame] | 460 | void __iomem *addr; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 461 | unsigned long flags; |
| 462 | u32 v; |
| 463 | |
Thomas Gleixner | bd31b85 | 2009-07-03 08:44:46 -0500 | [diff] [blame] | 464 | raw_spin_lock_irqsave(&v3_lock, flags); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 465 | addr = v3_open_config_window(bus, devfn, where); |
| 466 | |
| 467 | switch (size) { |
| 468 | case 1: |
| 469 | v = __raw_readb(addr); |
| 470 | break; |
| 471 | |
| 472 | case 2: |
| 473 | v = __raw_readw(addr); |
| 474 | break; |
| 475 | |
| 476 | default: |
| 477 | v = __raw_readl(addr); |
| 478 | break; |
| 479 | } |
| 480 | |
| 481 | v3_close_config_window(); |
Thomas Gleixner | bd31b85 | 2009-07-03 08:44:46 -0500 | [diff] [blame] | 482 | raw_spin_unlock_irqrestore(&v3_lock, flags); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 483 | |
| 484 | *val = v; |
| 485 | return PCIBIOS_SUCCESSFUL; |
| 486 | } |
| 487 | |
| 488 | static int v3_write_config(struct pci_bus *bus, unsigned int devfn, int where, |
| 489 | int size, u32 val) |
| 490 | { |
Arnd Bergmann | b7a3f8d | 2012-09-14 20:16:39 +0000 | [diff] [blame] | 491 | void __iomem *addr; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 492 | unsigned long flags; |
| 493 | |
Thomas Gleixner | bd31b85 | 2009-07-03 08:44:46 -0500 | [diff] [blame] | 494 | raw_spin_lock_irqsave(&v3_lock, flags); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 495 | addr = v3_open_config_window(bus, devfn, where); |
| 496 | |
| 497 | switch (size) { |
| 498 | case 1: |
| 499 | __raw_writeb((u8)val, addr); |
| 500 | __raw_readb(addr); |
| 501 | break; |
| 502 | |
| 503 | case 2: |
| 504 | __raw_writew((u16)val, addr); |
| 505 | __raw_readw(addr); |
| 506 | break; |
| 507 | |
| 508 | case 4: |
| 509 | __raw_writel(val, addr); |
| 510 | __raw_readl(addr); |
| 511 | break; |
| 512 | } |
| 513 | |
| 514 | v3_close_config_window(); |
Thomas Gleixner | bd31b85 | 2009-07-03 08:44:46 -0500 | [diff] [blame] | 515 | raw_spin_unlock_irqrestore(&v3_lock, flags); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 516 | |
| 517 | return PCIBIOS_SUCCESSFUL; |
| 518 | } |
| 519 | |
Linus Walleij | f4bc4f0 | 2013-01-29 17:14:18 +0100 | [diff] [blame] | 520 | static struct pci_ops pci_v3_ops = { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 521 | .read = v3_read_config, |
| 522 | .write = v3_write_config, |
| 523 | }; |
| 524 | |
| 525 | static struct resource non_mem = { |
| 526 | .name = "PCI non-prefetchable", |
| 527 | .start = PHYS_PCI_MEM_BASE + PCI_BUS_NONMEM_START, |
| 528 | .end = PHYS_PCI_MEM_BASE + PCI_BUS_NONMEM_START + PCI_BUS_NONMEM_SIZE - 1, |
| 529 | .flags = IORESOURCE_MEM, |
| 530 | }; |
| 531 | |
| 532 | static struct resource pre_mem = { |
| 533 | .name = "PCI prefetchable", |
| 534 | .start = PHYS_PCI_MEM_BASE + PCI_BUS_PREMEM_START, |
| 535 | .end = PHYS_PCI_MEM_BASE + PCI_BUS_PREMEM_START + PCI_BUS_PREMEM_SIZE - 1, |
| 536 | .flags = IORESOURCE_MEM | IORESOURCE_PREFETCH, |
| 537 | }; |
| 538 | |
Bjorn Helgaas | 37d1590 | 2011-10-28 16:26:16 -0600 | [diff] [blame] | 539 | static int __init pci_v3_setup_resources(struct pci_sys_data *sys) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 540 | { |
| 541 | if (request_resource(&iomem_resource, &non_mem)) { |
| 542 | printk(KERN_ERR "PCI: unable to allocate non-prefetchable " |
| 543 | "memory region\n"); |
| 544 | return -EBUSY; |
| 545 | } |
| 546 | if (request_resource(&iomem_resource, &pre_mem)) { |
| 547 | release_resource(&non_mem); |
| 548 | printk(KERN_ERR "PCI: unable to allocate prefetchable " |
| 549 | "memory region\n"); |
| 550 | return -EBUSY; |
| 551 | } |
| 552 | |
| 553 | /* |
Bjorn Helgaas | 37d1590 | 2011-10-28 16:26:16 -0600 | [diff] [blame] | 554 | * the mem resource for this bus |
| 555 | * the prefetch mem resource for this bus |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 556 | */ |
Bjorn Helgaas | 9f786d03 | 2012-02-23 20:19:01 -0700 | [diff] [blame] | 557 | pci_add_resource_offset(&sys->resources, &non_mem, sys->mem_offset); |
| 558 | pci_add_resource_offset(&sys->resources, &pre_mem, sys->mem_offset); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 559 | |
| 560 | return 1; |
| 561 | } |
| 562 | |
| 563 | /* |
| 564 | * These don't seem to be implemented on the Integrator I have, which |
| 565 | * means I can't get additional information on the reason for the pm2fb |
| 566 | * problems. I suppose I'll just have to mind-meld with the machine. ;) |
| 567 | */ |
Linus Walleij | 379df27 | 2012-11-17 19:24:23 +0100 | [diff] [blame] | 568 | static void __iomem *ap_syscon_base; |
| 569 | #define INTEGRATOR_SC_PCIENABLE_OFFSET 0x18 |
| 570 | #define INTEGRATOR_SC_LBFADDR_OFFSET 0x20 |
| 571 | #define INTEGRATOR_SC_LBFCODE_OFFSET 0x24 |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 572 | |
| 573 | static int |
| 574 | v3_pci_fault(unsigned long addr, unsigned int fsr, struct pt_regs *regs) |
| 575 | { |
| 576 | unsigned long pc = instruction_pointer(regs); |
| 577 | unsigned long instr = *(unsigned long *)pc; |
| 578 | #if 0 |
| 579 | char buf[128]; |
| 580 | |
| 581 | sprintf(buf, "V3 fault: addr 0x%08lx, FSR 0x%03x, PC 0x%08lx [%08lx] LBFADDR=%08x LBFCODE=%02x ISTAT=%02x\n", |
Linus Walleij | 379df27 | 2012-11-17 19:24:23 +0100 | [diff] [blame] | 582 | addr, fsr, pc, instr, __raw_readl(ap_syscon_base + INTEGRATOR_SC_LBFADDR_OFFSET), __raw_readl(ap_syscon_base + INTEGRATOR_SC_LBFCODE_OFFSET) & 255, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 583 | v3_readb(V3_LB_ISTAT)); |
| 584 | printk(KERN_DEBUG "%s", buf); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 585 | #endif |
| 586 | |
| 587 | v3_writeb(V3_LB_ISTAT, 0); |
Linus Walleij | 379df27 | 2012-11-17 19:24:23 +0100 | [diff] [blame] | 588 | __raw_writel(3, ap_syscon_base + INTEGRATOR_SC_PCIENABLE_OFFSET); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 589 | |
| 590 | /* |
| 591 | * If the instruction being executed was a read, |
| 592 | * make it look like it read all-ones. |
| 593 | */ |
| 594 | if ((instr & 0x0c100000) == 0x04100000) { |
| 595 | int reg = (instr >> 12) & 15; |
| 596 | unsigned long val; |
| 597 | |
| 598 | if (instr & 0x00400000) |
| 599 | val = 255; |
| 600 | else |
| 601 | val = -1; |
| 602 | |
| 603 | regs->uregs[reg] = val; |
| 604 | regs->ARM_pc += 4; |
| 605 | return 0; |
| 606 | } |
| 607 | |
| 608 | if ((instr & 0x0e100090) == 0x00100090) { |
| 609 | int reg = (instr >> 12) & 15; |
| 610 | |
| 611 | regs->uregs[reg] = -1; |
| 612 | regs->ARM_pc += 4; |
| 613 | return 0; |
| 614 | } |
| 615 | |
| 616 | return 1; |
| 617 | } |
| 618 | |
Jeff Garzik | e8f2af1 | 2007-10-26 05:40:25 -0400 | [diff] [blame] | 619 | static irqreturn_t v3_irq(int dummy, void *devid) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 620 | { |
| 621 | #ifdef CONFIG_DEBUG_LL |
Linus Torvalds | 0cd61b6 | 2006-10-06 10:53:39 -0700 | [diff] [blame] | 622 | struct pt_regs *regs = get_irq_regs(); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 623 | unsigned long pc = instruction_pointer(regs); |
| 624 | unsigned long instr = *(unsigned long *)pc; |
| 625 | char buf[128]; |
Russell King | 7c28472 | 2008-05-23 19:35:52 +0100 | [diff] [blame] | 626 | extern void printascii(const char *); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 627 | |
Jeff Garzik | e8f2af1 | 2007-10-26 05:40:25 -0400 | [diff] [blame] | 628 | sprintf(buf, "V3 int %d: pc=0x%08lx [%08lx] LBFADDR=%08x LBFCODE=%02x " |
| 629 | "ISTAT=%02x\n", IRQ_AP_V3INT, pc, instr, |
Linus Walleij | 379df27 | 2012-11-17 19:24:23 +0100 | [diff] [blame] | 630 | __raw_readl(ap_syscon_base + INTEGRATOR_SC_LBFADDR_OFFSET), |
| 631 | __raw_readl(ap_syscon_base + INTEGRATOR_SC_LBFCODE_OFFSET) & 255, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 632 | v3_readb(V3_LB_ISTAT)); |
| 633 | printascii(buf); |
| 634 | #endif |
| 635 | |
| 636 | v3_writew(V3_PCI_STAT, 0xf000); |
| 637 | v3_writeb(V3_LB_ISTAT, 0); |
Linus Walleij | 379df27 | 2012-11-17 19:24:23 +0100 | [diff] [blame] | 638 | __raw_writel(3, ap_syscon_base + INTEGRATOR_SC_PCIENABLE_OFFSET); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 639 | |
| 640 | #ifdef CONFIG_DEBUG_LL |
| 641 | /* |
| 642 | * If the instruction being executed was a read, |
| 643 | * make it look like it read all-ones. |
| 644 | */ |
| 645 | if ((instr & 0x0c100000) == 0x04100000) { |
| 646 | int reg = (instr >> 16) & 15; |
| 647 | sprintf(buf, " reg%d = %08lx\n", reg, regs->uregs[reg]); |
| 648 | printascii(buf); |
| 649 | } |
| 650 | #endif |
| 651 | return IRQ_HANDLED; |
| 652 | } |
| 653 | |
Linus Walleij | f4bc4f0 | 2013-01-29 17:14:18 +0100 | [diff] [blame] | 654 | static int __init pci_v3_setup(int nr, struct pci_sys_data *sys) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 655 | { |
| 656 | int ret = 0; |
| 657 | |
Linus Walleij | 67c6b2e | 2013-01-10 10:18:49 +0100 | [diff] [blame] | 658 | if (!ap_syscon_base) |
| 659 | return -EINVAL; |
| 660 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 661 | if (nr == 0) { |
| 662 | sys->mem_offset = PHYS_PCI_MEM_BASE; |
Bjorn Helgaas | 37d1590 | 2011-10-28 16:26:16 -0600 | [diff] [blame] | 663 | ret = pci_v3_setup_resources(sys); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 664 | } |
| 665 | |
| 666 | return ret; |
| 667 | } |
| 668 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 669 | /* |
| 670 | * V3_LB_BASE? - local bus address |
| 671 | * V3_LB_MAP? - pci bus address |
| 672 | */ |
Linus Walleij | f4bc4f0 | 2013-01-29 17:14:18 +0100 | [diff] [blame] | 673 | static void __init pci_v3_preinit(void) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 674 | { |
| 675 | unsigned long flags; |
| 676 | unsigned int temp; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 677 | |
Rob Herring | c9d95fb | 2011-06-28 21:16:13 -0500 | [diff] [blame] | 678 | pcibios_min_mem = 0x00100000; |
| 679 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 680 | /* |
| 681 | * Hook in our fault handler for PCI errors |
| 682 | */ |
Kirill A. Shutemov | 6338a6a | 2010-07-22 13:18:19 +0100 | [diff] [blame] | 683 | hook_fault_code(4, v3_pci_fault, SIGBUS, 0, "external abort on linefetch"); |
| 684 | hook_fault_code(6, v3_pci_fault, SIGBUS, 0, "external abort on linefetch"); |
| 685 | hook_fault_code(8, v3_pci_fault, SIGBUS, 0, "external abort on non-linefetch"); |
| 686 | hook_fault_code(10, v3_pci_fault, SIGBUS, 0, "external abort on non-linefetch"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 687 | |
Thomas Gleixner | bd31b85 | 2009-07-03 08:44:46 -0500 | [diff] [blame] | 688 | raw_spin_lock_irqsave(&v3_lock, flags); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 689 | |
| 690 | /* |
| 691 | * Unlock V3 registers, but only if they were previously locked. |
| 692 | */ |
| 693 | if (v3_readw(V3_SYSTEM) & V3_SYSTEM_M_LOCK) |
| 694 | v3_writew(V3_SYSTEM, 0xa05f); |
| 695 | |
| 696 | /* |
| 697 | * Setup window 0 - PCI non-prefetchable memory |
| 698 | * Local: 0x40000000 Bus: 0x00000000 Size: 256MB |
| 699 | */ |
| 700 | v3_writel(V3_LB_BASE0, v3_addr_to_lb_base(PHYS_PCI_MEM_BASE) | |
| 701 | V3_LB_BASE_ADR_SIZE_256MB | V3_LB_BASE_ENABLE); |
| 702 | v3_writew(V3_LB_MAP0, v3_addr_to_lb_map(PCI_BUS_NONMEM_START) | |
| 703 | V3_LB_MAP_TYPE_MEM); |
| 704 | |
| 705 | /* |
| 706 | * Setup window 1 - PCI prefetchable memory |
| 707 | * Local: 0x50000000 Bus: 0x10000000 Size: 256MB |
| 708 | */ |
| 709 | v3_writel(V3_LB_BASE1, v3_addr_to_lb_base(PHYS_PCI_MEM_BASE + SZ_256M) | |
| 710 | V3_LB_BASE_ADR_SIZE_256MB | V3_LB_BASE_PREFETCH | |
| 711 | V3_LB_BASE_ENABLE); |
| 712 | v3_writew(V3_LB_MAP1, v3_addr_to_lb_map(PCI_BUS_PREMEM_START) | |
| 713 | V3_LB_MAP_TYPE_MEM_MULTIPLE); |
| 714 | |
| 715 | /* |
| 716 | * Setup window 2 - PCI IO |
| 717 | */ |
| 718 | v3_writel(V3_LB_BASE2, v3_addr_to_lb_base2(PHYS_PCI_IO_BASE) | |
| 719 | V3_LB_BASE_ENABLE); |
| 720 | v3_writew(V3_LB_MAP2, v3_addr_to_lb_map2(0)); |
| 721 | |
| 722 | /* |
| 723 | * Disable PCI to host IO cycles |
| 724 | */ |
| 725 | temp = v3_readw(V3_PCI_CFG) & ~V3_PCI_CFG_M_I2O_EN; |
| 726 | temp |= V3_PCI_CFG_M_IO_REG_DIS | V3_PCI_CFG_M_IO_DIS; |
| 727 | v3_writew(V3_PCI_CFG, temp); |
| 728 | |
| 729 | printk(KERN_DEBUG "FIFO_CFG: %04x FIFO_PRIO: %04x\n", |
| 730 | v3_readw(V3_FIFO_CFG), v3_readw(V3_FIFO_PRIORITY)); |
| 731 | |
| 732 | /* |
| 733 | * Set the V3 FIFO such that writes have higher priority than |
| 734 | * reads, and local bus write causes local bus read fifo flush. |
| 735 | * Same for PCI. |
| 736 | */ |
| 737 | v3_writew(V3_FIFO_PRIORITY, 0x0a0a); |
| 738 | |
| 739 | /* |
| 740 | * Re-lock the system register. |
| 741 | */ |
| 742 | temp = v3_readw(V3_SYSTEM) | V3_SYSTEM_M_LOCK; |
| 743 | v3_writew(V3_SYSTEM, temp); |
| 744 | |
| 745 | /* |
| 746 | * Clear any error conditions, and enable write errors. |
| 747 | */ |
| 748 | v3_writeb(V3_LB_ISTAT, 0); |
| 749 | v3_writew(V3_LB_CFG, v3_readw(V3_LB_CFG) | (1 << 10)); |
| 750 | v3_writeb(V3_LB_IMASK, 0x28); |
Linus Walleij | 379df27 | 2012-11-17 19:24:23 +0100 | [diff] [blame] | 751 | __raw_writel(3, ap_syscon_base + INTEGRATOR_SC_PCIENABLE_OFFSET); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 752 | |
Thomas Gleixner | bd31b85 | 2009-07-03 08:44:46 -0500 | [diff] [blame] | 753 | raw_spin_unlock_irqrestore(&v3_lock, flags); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 754 | } |
| 755 | |
Linus Walleij | f4bc4f0 | 2013-01-29 17:14:18 +0100 | [diff] [blame] | 756 | static void __init pci_v3_postinit(void) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 757 | { |
| 758 | unsigned int pci_cmd; |
| 759 | |
| 760 | pci_cmd = PCI_COMMAND_MEMORY | |
| 761 | PCI_COMMAND_MASTER | PCI_COMMAND_INVALIDATE; |
| 762 | |
| 763 | v3_writew(V3_PCI_CMD, pci_cmd); |
| 764 | |
| 765 | v3_writeb(V3_LB_ISTAT, ~0x40); |
| 766 | v3_writeb(V3_LB_IMASK, 0x68); |
| 767 | |
| 768 | #if 0 |
| 769 | ret = request_irq(IRQ_AP_LBUSTIMEOUT, lb_timeout, 0, "bus timeout", NULL); |
| 770 | if (ret) |
| 771 | printk(KERN_ERR "PCI: unable to grab local bus timeout " |
| 772 | "interrupt: %d\n", ret); |
| 773 | #endif |
Russell King | 863dab4 | 2006-08-28 12:47:05 +0100 | [diff] [blame] | 774 | |
| 775 | register_isa_ports(PHYS_PCI_MEM_BASE, PHYS_PCI_IO_BASE, 0); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 776 | } |
Linus Walleij | f4bc4f0 | 2013-01-29 17:14:18 +0100 | [diff] [blame] | 777 | |
| 778 | /* |
| 779 | * A small note about bridges and interrupts. The DECchip 21050 (and |
| 780 | * later) adheres to the PCI-PCI bridge specification. This says that |
| 781 | * the interrupts on the other side of a bridge are swizzled in the |
| 782 | * following manner: |
| 783 | * |
| 784 | * Dev Interrupt Interrupt |
| 785 | * Pin on Pin on |
| 786 | * Device Connector |
| 787 | * |
| 788 | * 4 A A |
| 789 | * B B |
| 790 | * C C |
| 791 | * D D |
| 792 | * |
| 793 | * 5 A B |
| 794 | * B C |
| 795 | * C D |
| 796 | * D A |
| 797 | * |
| 798 | * 6 A C |
| 799 | * B D |
| 800 | * C A |
| 801 | * D B |
| 802 | * |
| 803 | * 7 A D |
| 804 | * B A |
| 805 | * C B |
| 806 | * D C |
| 807 | * |
| 808 | * Where A = pin 1, B = pin 2 and so on and pin=0 = default = A. |
| 809 | * Thus, each swizzle is ((pin-1) + (device#-4)) % 4 |
| 810 | */ |
| 811 | |
| 812 | /* |
| 813 | * This routine handles multiple bridges. |
| 814 | */ |
Linus Walleij | 86adc39 | 2013-02-02 23:16:57 +0100 | [diff] [blame] | 815 | static u8 __init pci_v3_swizzle(struct pci_dev *dev, u8 *pinp) |
Linus Walleij | f4bc4f0 | 2013-01-29 17:14:18 +0100 | [diff] [blame] | 816 | { |
| 817 | if (*pinp == 0) |
| 818 | *pinp = 1; |
| 819 | |
| 820 | return pci_common_swizzle(dev, pinp); |
| 821 | } |
| 822 | |
| 823 | static int irq_tab[4] __initdata = { |
| 824 | IRQ_AP_PCIINT0, IRQ_AP_PCIINT1, IRQ_AP_PCIINT2, IRQ_AP_PCIINT3 |
| 825 | }; |
| 826 | |
| 827 | /* |
| 828 | * map the specified device/slot/pin to an IRQ. This works out such |
| 829 | * that slot 9 pin 1 is INT0, pin 2 is INT1, and slot 10 pin 1 is INT1. |
| 830 | */ |
Linus Walleij | 86adc39 | 2013-02-02 23:16:57 +0100 | [diff] [blame] | 831 | static int __init pci_v3_map_irq(const struct pci_dev *dev, u8 slot, u8 pin) |
Linus Walleij | f4bc4f0 | 2013-01-29 17:14:18 +0100 | [diff] [blame] | 832 | { |
| 833 | int intnr = ((slot - 9) + (pin - 1)) & 3; |
| 834 | |
| 835 | return irq_tab[intnr]; |
| 836 | } |
| 837 | |
Linus Walleij | 86adc39 | 2013-02-02 23:16:57 +0100 | [diff] [blame] | 838 | static struct hw_pci pci_v3 __initdata = { |
| 839 | .swizzle = pci_v3_swizzle, |
| 840 | .map_irq = pci_v3_map_irq, |
Linus Walleij | f4bc4f0 | 2013-01-29 17:14:18 +0100 | [diff] [blame] | 841 | .setup = pci_v3_setup, |
| 842 | .nr_controllers = 1, |
| 843 | .ops = &pci_v3_ops, |
| 844 | .preinit = pci_v3_preinit, |
| 845 | .postinit = pci_v3_postinit, |
| 846 | }; |
| 847 | |
Linus Walleij | 86adc39 | 2013-02-02 23:16:57 +0100 | [diff] [blame] | 848 | static int __init pci_v3_probe(struct platform_device *pdev) |
Linus Walleij | f4bc4f0 | 2013-01-29 17:14:18 +0100 | [diff] [blame] | 849 | { |
Linus Walleij | 5283456 | 2013-04-04 14:02:57 +0200 | [diff] [blame] | 850 | int ret; |
| 851 | |
Linus Walleij | 03884f4 | 2013-02-03 00:06:04 +0100 | [diff] [blame] | 852 | /* Remap the Integrator system controller */ |
| 853 | ap_syscon_base = ioremap(INTEGRATOR_SC_BASE, 0x100); |
| 854 | if (!ap_syscon_base) { |
| 855 | dev_err(&pdev->dev, "unable to remap the AP syscon for PCIv3\n"); |
| 856 | return -ENODEV; |
| 857 | } |
| 858 | |
Linus Walleij | a5ecbab | 2013-03-16 21:51:02 +0100 | [diff] [blame] | 859 | pci_v3_base = devm_ioremap(&pdev->dev, PHYS_PCI_V3_BASE, SZ_64K); |
| 860 | if (!pci_v3_base) { |
| 861 | dev_err(&pdev->dev, "unable to remap PCIv3 base\n"); |
| 862 | return -ENODEV; |
| 863 | } |
| 864 | |
Linus Walleij | 5283456 | 2013-04-04 14:02:57 +0200 | [diff] [blame] | 865 | ret = devm_request_irq(&pdev->dev, IRQ_AP_V3INT, v3_irq, 0, "V3", NULL); |
| 866 | if (ret) { |
| 867 | dev_err(&pdev->dev, "unable to grab PCI error interrupt: %d\n", |
| 868 | ret); |
| 869 | return -ENODEV; |
| 870 | } |
| 871 | |
Linus Walleij | 86adc39 | 2013-02-02 23:16:57 +0100 | [diff] [blame] | 872 | pci_common_init(&pci_v3); |
Linus Walleij | 5283456 | 2013-04-04 14:02:57 +0200 | [diff] [blame] | 873 | |
Linus Walleij | f4bc4f0 | 2013-01-29 17:14:18 +0100 | [diff] [blame] | 874 | return 0; |
| 875 | } |
| 876 | |
Linus Walleij | 86adc39 | 2013-02-02 23:16:57 +0100 | [diff] [blame] | 877 | static struct platform_driver pci_v3_driver = { |
| 878 | .driver = { |
| 879 | .name = "pci-v3", |
| 880 | }, |
| 881 | }; |
| 882 | |
| 883 | static int __init pci_v3_init(void) |
| 884 | { |
| 885 | return platform_driver_probe(&pci_v3_driver, pci_v3_probe); |
| 886 | } |
| 887 | |
| 888 | subsys_initcall(pci_v3_init); |
Linus Walleij | ae9daf2 | 2013-03-19 19:58:49 +0100 | [diff] [blame^] | 889 | |
| 890 | /* |
| 891 | * Static mappings for the PCIv3 bridge |
| 892 | * |
| 893 | * e8000000 40000000 PCI memory PHYS_PCI_MEM_BASE (max 512M) |
| 894 | * ec000000 61000000 PCI config space PHYS_PCI_CONFIG_BASE (max 16M) |
| 895 | * fee00000 60000000 PCI IO PHYS_PCI_IO_BASE (max 16M) |
| 896 | */ |
| 897 | static struct map_desc pci_v3_io_desc[] __initdata __maybe_unused = { |
| 898 | { |
| 899 | .virtual = (unsigned long)PCI_MEMORY_VADDR, |
| 900 | .pfn = __phys_to_pfn(PHYS_PCI_MEM_BASE), |
| 901 | .length = SZ_16M, |
| 902 | .type = MT_DEVICE |
| 903 | }, { |
| 904 | .virtual = (unsigned long)PCI_CONFIG_VADDR, |
| 905 | .pfn = __phys_to_pfn(PHYS_PCI_CONFIG_BASE), |
| 906 | .length = SZ_16M, |
| 907 | .type = MT_DEVICE |
| 908 | } |
| 909 | }; |
| 910 | |
| 911 | int __init pci_v3_early_init(void) |
| 912 | { |
| 913 | iotable_init(pci_v3_io_desc, ARRAY_SIZE(pci_v3_io_desc)); |
| 914 | vga_base = (unsigned long)PCI_MEMORY_VADDR; |
| 915 | pci_map_io_early(__phys_to_pfn(PHYS_PCI_IO_BASE)); |
| 916 | return 0; |
| 917 | } |