Loading...
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 | /* * linux/arch/alpha/kernel/core_tsunami.c * * Code common to all TSUNAMI core logic chips. * * Based on code written by David A. Rusling (david.rusling@reo.mts.dec.com). * */ #include <linux/config.h> #include <linux/kernel.h> #include <linux/types.h> #include <linux/pci.h> #include <linux/sched.h> #include <linux/init.h> #include <asm/ptrace.h> #include <asm/system.h> #include <asm/pci.h> #define __EXTERN_INLINE inline #include <asm/io.h> #include <asm/core_tsunami.h> #undef __EXTERN_INLINE #include "proto.h" #include "bios32.h" /* * NOTE: Herein lie back-to-back mb instructions. They are magic. * One plausible explanation is that the I/O controller does not properly * handle the system transaction. Another involves timing. Ho hum. */ /* * BIOS32-style PCI interface: */ #define DEBUG_MCHECK 0 /* 0 = minimum, 1 = debug, 2 = dump */ #define DEBUG_CONFIG 0 #if DEBUG_CONFIG > 0 # define DBG_CFG(args) printk args #else # define DBG_CFG(args) #endif static volatile unsigned int TSUNAMI_mcheck_expected[NR_CPUS]; static volatile unsigned int TSUNAMI_mcheck_taken[NR_CPUS]; static unsigned int TSUNAMI_jd[NR_CPUS]; int TSUNAMI_bootcpu; /* * Given a bus, device, and function number, compute resulting * configuration space address * accordingly. It is therefore not safe to have concurrent * invocations to configuration space access routines, but there * really shouldn't be any need for this. * * Note that all config space accesses use Type 1 address format. * * Note also that type 1 is determined by non-zero bus number. * * Type 1: * * 3 3|3 3 2 2|2 2 2 2|2 2 2 2|1 1 1 1|1 1 1 1|1 1 * 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 * +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+ * | | | | | | | | | | |B|B|B|B|B|B|B|B|D|D|D|D|D|F|F|F|R|R|R|R|R|R|0|1| * +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+ * * 31:24 reserved * 23:16 bus number (8 bits = 128 possible buses) * 15:11 Device number (5 bits) * 10:8 function number * 7:2 register number * * Notes: * The function number selects which function of a multi-function device * (e.g., SCSI and Ethernet). * * The register selects a DWORD (32 bit) register offset. Hence it * doesn't get shifted by 2 bits as we want to "drop" the bottom two * bits. */ static int mk_conf_addr(u8 bus, u8 device_fn, u8 where, struct linux_hose_info *hose, unsigned long *pci_addr, unsigned char *type1) { unsigned long addr; if (!pci_probe_enabled || !hose->pci_config_space) return -1; DBG_CFG(("mk_conf_addr(bus=%d ,device_fn=0x%x, where=0x%x, " "pci_addr=0x%p, type1=0x%p)\n", bus, device_fn, where, pci_addr, type1)); *type1 = (bus != 0); if (hose->pci_first_busno == bus) bus = 0; addr = (bus << 16) | (device_fn << 8) | where; addr |= hose->pci_config_space; *pci_addr = addr; DBG_CFG(("mk_conf_addr: returning pci_addr 0x%lx\n", addr)); return 0; } int tsunami_hose_read_config_byte (u8 bus, u8 device_fn, u8 where, u8 *value, struct linux_hose_info *hose) { unsigned long addr; unsigned char type1; if (mk_conf_addr(bus, device_fn, where, hose, &addr, &type1)) return PCIBIOS_DEVICE_NOT_FOUND; *value = __kernel_ldbu(*(vucp)addr); return PCIBIOS_SUCCESSFUL; } int tsunami_hose_read_config_word (u8 bus, u8 device_fn, u8 where, u16 *value, struct linux_hose_info *hose) { unsigned long addr; unsigned char type1; if (mk_conf_addr(bus, device_fn, where, hose, &addr, &type1)) return PCIBIOS_DEVICE_NOT_FOUND; *value = __kernel_ldwu(*(vusp)addr); return PCIBIOS_SUCCESSFUL; } int tsunami_hose_read_config_dword (u8 bus, u8 device_fn, u8 where, u32 *value, struct linux_hose_info *hose) { unsigned long addr; unsigned char type1; if (mk_conf_addr(bus, device_fn, where, hose, &addr, &type1)) return PCIBIOS_DEVICE_NOT_FOUND; *value = *(vuip)addr; return PCIBIOS_SUCCESSFUL; } int tsunami_hose_write_config_byte (u8 bus, u8 device_fn, u8 where, u8 value, struct linux_hose_info *hose) { unsigned long addr; unsigned char type1; if (mk_conf_addr(bus, device_fn, where, hose, &addr, &type1)) return PCIBIOS_DEVICE_NOT_FOUND; __kernel_stb(value, *(vucp)addr); mb(); __kernel_ldbu(*(vucp)addr); return PCIBIOS_SUCCESSFUL; } int tsunami_hose_write_config_word (u8 bus, u8 device_fn, u8 where, u16 value, struct linux_hose_info *hose) { unsigned long addr; unsigned char type1; if (mk_conf_addr(bus, device_fn, where, hose, &addr, &type1)) return PCIBIOS_DEVICE_NOT_FOUND; __kernel_stw(value, *(vusp)addr); mb(); __kernel_ldwu(*(vusp)addr); return PCIBIOS_SUCCESSFUL; } int tsunami_hose_write_config_dword (u8 bus, u8 device_fn, u8 where, u32 value, struct linux_hose_info *hose) { unsigned long addr; unsigned char type1; if (mk_conf_addr(bus, device_fn, where, hose, &addr, &type1)) return PCIBIOS_DEVICE_NOT_FOUND; *(vuip)addr = value; mb(); *(vuip)addr; return PCIBIOS_SUCCESSFUL; } #ifdef NXM_MACHINE_CHECKS_ON_TSUNAMI static long tsunami_probe_read(volatile unsigned long *vaddr) { long dont_care, probe_result; int cpu = smp_processor_id(); int s = swpipl(6); /* Block everything but machine checks. */ TSUNAMI_mcheck_taken[cpu] = 0; TSUNAMI_mcheck_expected[cpu] = 1; dont_care = *vaddr; draina(); TSUNAMI_mcheck_expected[cpu] = 0; probe_result = !TSUNAMI_mcheck_taken[cpu]; TSUNAMI_mcheck_taken[cpu] = 0; setipl(s); printk("dont_care == 0x%lx\n", dont_care); return probe_result; } static long tsunami_probe_write(volatile unsigned long *vaddr) { long true_contents, probe_result = 1; TSUNAMI_cchip->misc.csr |= (1L << 28); /* clear NXM... */ true_contents = *vaddr; *vaddr = 0; draina(); if (TSUNAMI_cchip->misc.csr & (1L << 28)) { int source = (TSUNAMI_cchip->misc.csr >> 29) & 7; TSUNAMI_cchip->misc.csr |= (1L << 28); /* ...and unlock NXS. */ probe_result = 0; printk("tsunami_probe_write: unit %d at 0x%016lx\n", source, (unsigned long)vaddr); } if (probe_result) *vaddr = true_contents; return probe_result; } #else #define tsunami_probe_read(ADDR) 1 #endif /* NXM_MACHINE_CHECKS_ON_TSUNAMI */ #define FN __FUNCTION__ static void __init tsunami_init_one_pchip(tsunami_pchip *pchip, int index, unsigned long *mem_start) { struct linux_hose_info *hose; int i; if (tsunami_probe_read(&pchip->pctl.csr) == 0) return; hose = (struct linux_hose_info *)*mem_start; *mem_start = (unsigned long)(hose + 1); memset(hose, 0, sizeof(*hose)); *hose_tail = hose; hose_tail = &hose->next; hose->pci_config_space = TSUNAMI_CONF(index); hose->pci_hose_index = index; /* This is for userland consumption. For some reason, the 40-bit PIO bias that we use in the kernel through KSEG didn't work for the page table based user mappings. So make sure we get the 43-bit PIO bias. */ hose->pci_sparse_io_space = 0; hose->pci_sparse_mem_space = 0; hose->pci_dense_io_space = (TSUNAMI_IO(index) & 0xffffffffff) | 0x80000000000; hose->pci_dense_mem_space = (TSUNAMI_MEM(index) & 0xffffffffff) | 0x80000000000; switch (alpha_use_srm_setup) { default: #if defined(CONFIG_ALPHA_GENERIC) || defined(CONFIG_ALPHA_SRM_SETUP) for (i = 0; i < 4; ++i) { if ((pchip->wsba[i].csr & 3) == 1 && pchip->tba[i].csr == 0 && (pchip->wsm[i].csr & 0xfff00000) > 0x0ff00000) { TSUNAMI_DMA_WIN_BASE = pchip->wsba[i].csr & 0xfff00000; TSUNAMI_DMA_WIN_SIZE = pchip->wsm[i].csr & 0xfff00000; TSUNAMI_DMA_WIN_SIZE += 0x00100000; #if 1 printk("%s: using Window %d settings\n", FN, i); printk("%s: BASE 0x%lx MASK 0x%lx TRANS 0x%lx\n", FN, pchip->wsba[i].csr, pchip->wsm[i].csr, pchip->tba[i].csr); #endif goto found; } } /* Otherwise, we must use our defaults. */ TSUNAMI_DMA_WIN_BASE = TSUNAMI_DMA_WIN_BASE_DEFAULT; TSUNAMI_DMA_WIN_SIZE = TSUNAMI_DMA_WIN_SIZE_DEFAULT; #endif case 0: /* * Set up the PCI->physical memory translation windows. * For now, windows 1,2 and 3 are disabled. In the future, * we may want to use them to do scatter/gather DMA. * * Window 0 goes at 1 GB and is 1 GB large, mapping to 0. * Window 1 goes at 2 GB and is 1 GB large, mapping to 1GB. */ pchip->wsba[0].csr = TSUNAMI_DMA_WIN0_BASE_DEFAULT | 1UL; pchip->wsm[0].csr = (TSUNAMI_DMA_WIN0_SIZE_DEFAULT - 1) & 0xfff00000UL; pchip->tba[0].csr = TSUNAMI_DMA_WIN0_TRAN_DEFAULT; pchip->wsba[1].csr = TSUNAMI_DMA_WIN1_BASE_DEFAULT | 1UL; pchip->wsm[1].csr = (TSUNAMI_DMA_WIN1_SIZE_DEFAULT - 1) & 0xfff00000UL; pchip->tba[1].csr = TSUNAMI_DMA_WIN1_TRAN_DEFAULT; pchip->wsba[2].csr = 0; pchip->wsba[3].csr = 0; mb(); } found:; } void __init tsunami_init_arch(unsigned long *mem_start, unsigned long *mem_end) { #ifdef NXM_MACHINE_CHECKS_ON_TSUNAMI extern asmlinkage void entInt(void); unsigned long tmp; /* Ho hum.. init_arch is called before init_IRQ, but we need to be able to handle machine checks. So install the handler now. */ wrent(entInt, 0); /* NXMs just don't matter to Tsunami--unless they make it choke completely. */ tmp = (unsigned long)(TSUNAMI_cchip - 1); printk("%s: probing bogus address: 0x%016lx\n", FN, bogus_addr); printk("\tprobe %s\n", tsunami_probe_write((unsigned long *)bogus_addr) ? "succeeded" : "failed"); #endif /* NXM_MACHINE_CHECKS_ON_TSUNAMI */ #if 0 printk("%s: CChip registers:\n", FN); printk("%s: CSR_CSC 0x%lx\n", FN, TSUNAMI_cchip->csc.csr); printk("%s: CSR_MTR 0x%lx\n", FN, TSUNAMI_cchip.mtr.csr); printk("%s: CSR_MISC 0x%lx\n", FN, TSUNAMI_cchip->misc.csr); printk("%s: CSR_DIM0 0x%lx\n", FN, TSUNAMI_cchip->dim0.csr); printk("%s: CSR_DIM1 0x%lx\n", FN, TSUNAMI_cchip->dim1.csr); printk("%s: CSR_DIR0 0x%lx\n", FN, TSUNAMI_cchip->dir0.csr); printk("%s: CSR_DIR1 0x%lx\n", FN, TSUNAMI_cchip->dir1.csr); printk("%s: CSR_DRIR 0x%lx\n", FN, TSUNAMI_cchip->drir.csr); printk("%s: DChip registers:\n"); printk("%s: CSR_DSC 0x%lx\n", FN, TSUNAMI_dchip->dsc.csr); printk("%s: CSR_STR 0x%lx\n", FN, TSUNAMI_dchip->str.csr); printk("%s: CSR_DREV 0x%lx\n", FN, TSUNAMI_dchip->drev.csr); #endif /* Align memory to cache line; we'll be allocating from it. */ *mem_start = (*mem_start | 31) + 1; /* Find how many hoses we have, and initialize them. */ /* TSUNAMI and TYPHOON can have 2, but might only have 1 (DS10) */ tsunami_init_one_pchip(TSUNAMI_pchip0, 0, mem_start); if (TSUNAMI_cchip->csc.csr & 1L<<14) tsunami_init_one_pchip(TSUNAMI_pchip1, 1, mem_start); } static inline void tsunami_pci_clr_err_1(tsunami_pchip *pchip, int cpu) { TSUNAMI_jd[cpu] = pchip->perror.csr; pchip->perror.csr = 0x040; mb(); TSUNAMI_jd[cpu] = pchip->perror.csr; } static int tsunami_pci_clr_err(void) { int cpu = smp_processor_id(); tsunami_pci_clr_err_1(TSUNAMI_pchip0, cpu); /* TSUNAMI and TYPHOON can have 2, but might only have 1 (DS10) */ if (TSUNAMI_cchip->csc.csr & 1L<<14) tsunami_pci_clr_err_1(TSUNAMI_pchip1, cpu); return 0; } void tsunami_machine_check(unsigned long vector, unsigned long la_ptr, struct pt_regs * regs) { struct el_common *mchk_header; struct el_TSUNAMI_sysdata_mcheck *mchk_sysdata; unsigned int cpu = smp_processor_id(); mb(); mchk_header = (struct el_common *)la_ptr; mchk_sysdata = (struct el_TSUNAMI_sysdata_mcheck *) (la_ptr + mchk_header->sys_offset); /* Clear error before any reporting. */ mb(); mb(); /* magic */ draina(); tsunami_pci_clr_err(); wrmces(0x7); mb(); /* * Check if machine check is due to a badaddr() and if so, * ignore the machine check. */ process_mcheck_info(vector, la_ptr, regs, "TSUNAMI", DEBUG_MCHECK, TSUNAMI_mcheck_expected[cpu]); TSUNAMI_mcheck_expected[cpu] = 0; TSUNAMI_mcheck_taken[cpu] = 1; } |