Merge git://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux-2.6
[wrt350n-kernel.git] / arch / ia64 / sn / pci / tioce_provider.c
blob5d169ab148875c7502f401403028b0c5e8196e8f
1 /*
2 * This file is subject to the terms and conditions of the GNU General Public
3 * License. See the file "COPYING" in the main directory of this archive
4 * for more details.
6 * Copyright (C) 2003-2006 Silicon Graphics, Inc. All Rights Reserved.
7 */
9 #include <linux/types.h>
10 #include <linux/interrupt.h>
11 #include <linux/pci.h>
12 #include <asm/sn/sn_sal.h>
13 #include <asm/sn/addrs.h>
14 #include <asm/sn/io.h>
15 #include <asm/sn/pcidev.h>
16 #include <asm/sn/pcibus_provider_defs.h>
17 #include <asm/sn/tioce_provider.h>
20 * 1/26/2006
22 * WAR for SGI PV 944642. For revA TIOCE, need to use the following recipe
23 * (taken from the above PV) before and after accessing tioce internal MMR's
24 * to avoid tioce lockups.
26 * The recipe as taken from the PV:
28 * if(mmr address < 0x45000) {
29 * if(mmr address == 0 or 0x80)
30 * mmr wrt or read address 0xc0
31 * else if(mmr address == 0x148 or 0x200)
32 * mmr wrt or read address 0x28
33 * else
34 * mmr wrt or read address 0x158
36 * do desired mmr access (rd or wrt)
38 * if(mmr address == 0x100)
39 * mmr wrt or read address 0x38
40 * mmr wrt or read address 0xb050
41 * } else
42 * do desired mmr access
44 * According to hw, we can use reads instead of writes to the above address
46 * Note this WAR can only to be used for accessing internal MMR's in the
47 * TIOCE Coretalk Address Range 0x0 - 0x07ff_ffff. This includes the
48 * "Local CE Registers and Memories" and "PCI Compatible Config Space" address
49 * spaces from table 2-1 of the "CE Programmer's Reference Overview" document.
51 * All registers defined in struct tioce will meet that criteria.
54 static void inline
55 tioce_mmr_war_pre(struct tioce_kernel *kern, void __iomem *mmr_addr)
57 u64 mmr_base;
58 u64 mmr_offset;
60 if (kern->ce_common->ce_rev != TIOCE_REV_A)
61 return;
63 mmr_base = kern->ce_common->ce_pcibus.bs_base;
64 mmr_offset = (unsigned long)mmr_addr - mmr_base;
66 if (mmr_offset < 0x45000) {
67 u64 mmr_war_offset;
69 if (mmr_offset == 0 || mmr_offset == 0x80)
70 mmr_war_offset = 0xc0;
71 else if (mmr_offset == 0x148 || mmr_offset == 0x200)
72 mmr_war_offset = 0x28;
73 else
74 mmr_war_offset = 0x158;
76 readq_relaxed((void __iomem *)(mmr_base + mmr_war_offset));
80 static void inline
81 tioce_mmr_war_post(struct tioce_kernel *kern, void __iomem *mmr_addr)
83 u64 mmr_base;
84 u64 mmr_offset;
86 if (kern->ce_common->ce_rev != TIOCE_REV_A)
87 return;
89 mmr_base = kern->ce_common->ce_pcibus.bs_base;
90 mmr_offset = (unsigned long)mmr_addr - mmr_base;
92 if (mmr_offset < 0x45000) {
93 if (mmr_offset == 0x100)
94 readq_relaxed((void __iomem *)(mmr_base + 0x38));
95 readq_relaxed((void __iomem *)(mmr_base + 0xb050));
99 /* load mmr contents into a variable */
100 #define tioce_mmr_load(kern, mmrp, varp) do {\
101 tioce_mmr_war_pre(kern, mmrp); \
102 *(varp) = readq_relaxed(mmrp); \
103 tioce_mmr_war_post(kern, mmrp); \
104 } while (0)
106 /* store variable contents into mmr */
107 #define tioce_mmr_store(kern, mmrp, varp) do {\
108 tioce_mmr_war_pre(kern, mmrp); \
109 writeq(*varp, mmrp); \
110 tioce_mmr_war_post(kern, mmrp); \
111 } while (0)
113 /* store immediate value into mmr */
114 #define tioce_mmr_storei(kern, mmrp, val) do {\
115 tioce_mmr_war_pre(kern, mmrp); \
116 writeq(val, mmrp); \
117 tioce_mmr_war_post(kern, mmrp); \
118 } while (0)
120 /* set bits (immediate value) into mmr */
121 #define tioce_mmr_seti(kern, mmrp, bits) do {\
122 u64 tmp; \
123 tioce_mmr_load(kern, mmrp, &tmp); \
124 tmp |= (bits); \
125 tioce_mmr_store(kern, mmrp, &tmp); \
126 } while (0)
128 /* clear bits (immediate value) into mmr */
129 #define tioce_mmr_clri(kern, mmrp, bits) do { \
130 u64 tmp; \
131 tioce_mmr_load(kern, mmrp, &tmp); \
132 tmp &= ~(bits); \
133 tioce_mmr_store(kern, mmrp, &tmp); \
134 } while (0)
137 * Bus address ranges for the 5 flavors of TIOCE DMA
140 #define TIOCE_D64_MIN 0x8000000000000000UL
141 #define TIOCE_D64_MAX 0xffffffffffffffffUL
142 #define TIOCE_D64_ADDR(a) ((a) >= TIOCE_D64_MIN)
144 #define TIOCE_D32_MIN 0x0000000080000000UL
145 #define TIOCE_D32_MAX 0x00000000ffffffffUL
146 #define TIOCE_D32_ADDR(a) ((a) >= TIOCE_D32_MIN && (a) <= TIOCE_D32_MAX)
148 #define TIOCE_M32_MIN 0x0000000000000000UL
149 #define TIOCE_M32_MAX 0x000000007fffffffUL
150 #define TIOCE_M32_ADDR(a) ((a) >= TIOCE_M32_MIN && (a) <= TIOCE_M32_MAX)
152 #define TIOCE_M40_MIN 0x0000004000000000UL
153 #define TIOCE_M40_MAX 0x0000007fffffffffUL
154 #define TIOCE_M40_ADDR(a) ((a) >= TIOCE_M40_MIN && (a) <= TIOCE_M40_MAX)
156 #define TIOCE_M40S_MIN 0x0000008000000000UL
157 #define TIOCE_M40S_MAX 0x000000ffffffffffUL
158 #define TIOCE_M40S_ADDR(a) ((a) >= TIOCE_M40S_MIN && (a) <= TIOCE_M40S_MAX)
161 * ATE manipulation macros.
164 #define ATE_PAGESHIFT(ps) (__ffs(ps))
165 #define ATE_PAGEMASK(ps) ((ps)-1)
167 #define ATE_PAGE(x, ps) ((x) >> ATE_PAGESHIFT(ps))
168 #define ATE_NPAGES(start, len, pagesize) \
169 (ATE_PAGE((start)+(len)-1, pagesize) - ATE_PAGE(start, pagesize) + 1)
171 #define ATE_VALID(ate) ((ate) & (1UL << 63))
172 #define ATE_MAKE(addr, ps, msi) \
173 (((addr) & ~ATE_PAGEMASK(ps)) | (1UL << 63) | ((msi)?(1UL << 62):0))
176 * Flavors of ate-based mapping supported by tioce_alloc_map()
179 #define TIOCE_ATE_M32 1
180 #define TIOCE_ATE_M40 2
181 #define TIOCE_ATE_M40S 3
183 #define KB(x) ((u64)(x) << 10)
184 #define MB(x) ((u64)(x) << 20)
185 #define GB(x) ((u64)(x) << 30)
188 * tioce_dma_d64 - create a DMA mapping using 64-bit direct mode
189 * @ct_addr: system coretalk address
191 * Map @ct_addr into 64-bit CE bus space. No device context is necessary
192 * and no CE mapping are consumed.
194 * Bits 53:0 come from the coretalk address. The remaining bits are set as
195 * follows:
197 * 63 - must be 1 to indicate d64 mode to CE hardware
198 * 62 - barrier bit ... controlled with tioce_dma_barrier()
199 * 61 - msi bit ... specified through dma_flags
200 * 60:54 - reserved, MBZ
202 static u64
203 tioce_dma_d64(unsigned long ct_addr, int dma_flags)
205 u64 bus_addr;
207 bus_addr = ct_addr | (1UL << 63);
208 if (dma_flags & SN_DMA_MSI)
209 bus_addr |= (1UL << 61);
211 return bus_addr;
215 * pcidev_to_tioce - return misc ce related pointers given a pci_dev
216 * @pci_dev: pci device context
217 * @base: ptr to store struct tioce_mmr * for the CE holding this device
218 * @kernel: ptr to store struct tioce_kernel * for the CE holding this device
219 * @port: ptr to store the CE port number that this device is on
221 * Return pointers to various CE-related structures for the CE upstream of
222 * @pci_dev.
224 static inline void
225 pcidev_to_tioce(struct pci_dev *pdev, struct tioce __iomem **base,
226 struct tioce_kernel **kernel, int *port)
228 struct pcidev_info *pcidev_info;
229 struct tioce_common *ce_common;
230 struct tioce_kernel *ce_kernel;
232 pcidev_info = SN_PCIDEV_INFO(pdev);
233 ce_common = (struct tioce_common *)pcidev_info->pdi_pcibus_info;
234 ce_kernel = (struct tioce_kernel *)ce_common->ce_kernel_private;
236 if (base)
237 *base = (struct tioce __iomem *)ce_common->ce_pcibus.bs_base;
238 if (kernel)
239 *kernel = ce_kernel;
242 * we use port as a zero-based value internally, even though the
243 * documentation is 1-based.
245 if (port)
246 *port =
247 (pdev->bus->number < ce_kernel->ce_port1_secondary) ? 0 : 1;
251 * tioce_alloc_map - Given a coretalk address, map it to pcie bus address
252 * space using one of the various ATE-based address modes.
253 * @ce_kern: tioce context
254 * @type: map mode to use
255 * @port: 0-based port that the requesting device is downstream of
256 * @ct_addr: the coretalk address to map
257 * @len: number of bytes to map
259 * Given the addressing type, set up various parameters that define the
260 * ATE pool to use. Search for a contiguous block of entries to cover the
261 * length, and if enough resources exist, fill in the ATEs and construct a
262 * tioce_dmamap struct to track the mapping.
264 static u64
265 tioce_alloc_map(struct tioce_kernel *ce_kern, int type, int port,
266 u64 ct_addr, int len, int dma_flags)
268 int i;
269 int j;
270 int first;
271 int last;
272 int entries;
273 int nates;
274 u64 pagesize;
275 int msi_capable, msi_wanted;
276 u64 *ate_shadow;
277 u64 __iomem *ate_reg;
278 u64 addr;
279 struct tioce __iomem *ce_mmr;
280 u64 bus_base;
281 struct tioce_dmamap *map;
283 ce_mmr = (struct tioce __iomem *)ce_kern->ce_common->ce_pcibus.bs_base;
285 switch (type) {
286 case TIOCE_ATE_M32:
288 * The first 64 entries of the ate3240 pool are dedicated to
289 * super-page (TIOCE_ATE_M40S) mode.
291 first = 64;
292 entries = TIOCE_NUM_M3240_ATES - 64;
293 ate_shadow = ce_kern->ce_ate3240_shadow;
294 ate_reg = ce_mmr->ce_ure_ate3240;
295 pagesize = ce_kern->ce_ate3240_pagesize;
296 bus_base = TIOCE_M32_MIN;
297 msi_capable = 1;
298 break;
299 case TIOCE_ATE_M40:
300 first = 0;
301 entries = TIOCE_NUM_M40_ATES;
302 ate_shadow = ce_kern->ce_ate40_shadow;
303 ate_reg = ce_mmr->ce_ure_ate40;
304 pagesize = MB(64);
305 bus_base = TIOCE_M40_MIN;
306 msi_capable = 0;
307 break;
308 case TIOCE_ATE_M40S:
310 * ate3240 entries 0-31 are dedicated to port1 super-page
311 * mappings. ate3240 entries 32-63 are dedicated to port2.
313 first = port * 32;
314 entries = 32;
315 ate_shadow = ce_kern->ce_ate3240_shadow;
316 ate_reg = ce_mmr->ce_ure_ate3240;
317 pagesize = GB(16);
318 bus_base = TIOCE_M40S_MIN;
319 msi_capable = 0;
320 break;
321 default:
322 return 0;
325 msi_wanted = dma_flags & SN_DMA_MSI;
326 if (msi_wanted && !msi_capable)
327 return 0;
329 nates = ATE_NPAGES(ct_addr, len, pagesize);
330 if (nates > entries)
331 return 0;
333 last = first + entries - nates;
334 for (i = first; i <= last; i++) {
335 if (ATE_VALID(ate_shadow[i]))
336 continue;
338 for (j = i; j < i + nates; j++)
339 if (ATE_VALID(ate_shadow[j]))
340 break;
342 if (j >= i + nates)
343 break;
346 if (i > last)
347 return 0;
349 map = kzalloc(sizeof(struct tioce_dmamap), GFP_ATOMIC);
350 if (!map)
351 return 0;
353 addr = ct_addr;
354 for (j = 0; j < nates; j++) {
355 u64 ate;
357 ate = ATE_MAKE(addr, pagesize, msi_wanted);
358 ate_shadow[i + j] = ate;
359 tioce_mmr_storei(ce_kern, &ate_reg[i + j], ate);
360 addr += pagesize;
363 map->refcnt = 1;
364 map->nbytes = nates * pagesize;
365 map->ct_start = ct_addr & ~ATE_PAGEMASK(pagesize);
366 map->pci_start = bus_base + (i * pagesize);
367 map->ate_hw = &ate_reg[i];
368 map->ate_shadow = &ate_shadow[i];
369 map->ate_count = nates;
371 list_add(&map->ce_dmamap_list, &ce_kern->ce_dmamap_list);
373 return (map->pci_start + (ct_addr - map->ct_start));
377 * tioce_dma_d32 - create a DMA mapping using 32-bit direct mode
378 * @pdev: linux pci_dev representing the function
379 * @paddr: system physical address
381 * Map @paddr into 32-bit bus space of the CE associated with @pcidev_info.
383 static u64
384 tioce_dma_d32(struct pci_dev *pdev, u64 ct_addr, int dma_flags)
386 int dma_ok;
387 int port;
388 struct tioce __iomem *ce_mmr;
389 struct tioce_kernel *ce_kern;
390 u64 ct_upper;
391 u64 ct_lower;
392 dma_addr_t bus_addr;
394 if (dma_flags & SN_DMA_MSI)
395 return 0;
397 ct_upper = ct_addr & ~0x3fffffffUL;
398 ct_lower = ct_addr & 0x3fffffffUL;
400 pcidev_to_tioce(pdev, &ce_mmr, &ce_kern, &port);
402 if (ce_kern->ce_port[port].dirmap_refcnt == 0) {
403 u64 tmp;
405 ce_kern->ce_port[port].dirmap_shadow = ct_upper;
406 tioce_mmr_storei(ce_kern, &ce_mmr->ce_ure_dir_map[port],
407 ct_upper);
408 tmp = ce_mmr->ce_ure_dir_map[port];
409 dma_ok = 1;
410 } else
411 dma_ok = (ce_kern->ce_port[port].dirmap_shadow == ct_upper);
413 if (dma_ok) {
414 ce_kern->ce_port[port].dirmap_refcnt++;
415 bus_addr = TIOCE_D32_MIN + ct_lower;
416 } else
417 bus_addr = 0;
419 return bus_addr;
423 * tioce_dma_barrier - swizzle a TIOCE bus address to include or exclude
424 * the barrier bit.
425 * @bus_addr: bus address to swizzle
427 * Given a TIOCE bus address, set the appropriate bit to indicate barrier
428 * attributes.
430 static u64
431 tioce_dma_barrier(u64 bus_addr, int on)
433 u64 barrier_bit;
435 /* barrier not supported in M40/M40S mode */
436 if (TIOCE_M40_ADDR(bus_addr) || TIOCE_M40S_ADDR(bus_addr))
437 return bus_addr;
439 if (TIOCE_D64_ADDR(bus_addr))
440 barrier_bit = (1UL << 62);
441 else /* must be m32 or d32 */
442 barrier_bit = (1UL << 30);
444 return (on) ? (bus_addr | barrier_bit) : (bus_addr & ~barrier_bit);
448 * tioce_dma_unmap - release CE mapping resources
449 * @pdev: linux pci_dev representing the function
450 * @bus_addr: bus address returned by an earlier tioce_dma_map
451 * @dir: mapping direction (unused)
453 * Locate mapping resources associated with @bus_addr and release them.
454 * For mappings created using the direct modes there are no resources
455 * to release.
457 void
458 tioce_dma_unmap(struct pci_dev *pdev, dma_addr_t bus_addr, int dir)
460 int i;
461 int port;
462 struct tioce_kernel *ce_kern;
463 struct tioce __iomem *ce_mmr;
464 unsigned long flags;
466 bus_addr = tioce_dma_barrier(bus_addr, 0);
467 pcidev_to_tioce(pdev, &ce_mmr, &ce_kern, &port);
469 /* nothing to do for D64 */
471 if (TIOCE_D64_ADDR(bus_addr))
472 return;
474 spin_lock_irqsave(&ce_kern->ce_lock, flags);
476 if (TIOCE_D32_ADDR(bus_addr)) {
477 if (--ce_kern->ce_port[port].dirmap_refcnt == 0) {
478 ce_kern->ce_port[port].dirmap_shadow = 0;
479 tioce_mmr_storei(ce_kern, &ce_mmr->ce_ure_dir_map[port],
482 } else {
483 struct tioce_dmamap *map;
485 list_for_each_entry(map, &ce_kern->ce_dmamap_list,
486 ce_dmamap_list) {
487 u64 last;
489 last = map->pci_start + map->nbytes - 1;
490 if (bus_addr >= map->pci_start && bus_addr <= last)
491 break;
494 if (&map->ce_dmamap_list == &ce_kern->ce_dmamap_list) {
495 printk(KERN_WARNING
496 "%s: %s - no map found for bus_addr 0x%lx\n",
497 <<<<<<< HEAD:arch/ia64/sn/pci/tioce_provider.c
498 __FUNCTION__, pci_name(pdev), bus_addr);
499 =======
500 __func__, pci_name(pdev), bus_addr);
501 >>>>>>> 264e3e889d86e552b4191d69bb60f4f3b383135a:arch/ia64/sn/pci/tioce_provider.c
502 } else if (--map->refcnt == 0) {
503 for (i = 0; i < map->ate_count; i++) {
504 map->ate_shadow[i] = 0;
505 tioce_mmr_storei(ce_kern, &map->ate_hw[i], 0);
508 list_del(&map->ce_dmamap_list);
509 kfree(map);
513 spin_unlock_irqrestore(&ce_kern->ce_lock, flags);
517 * tioce_do_dma_map - map pages for PCI DMA
518 * @pdev: linux pci_dev representing the function
519 * @paddr: host physical address to map
520 * @byte_count: bytes to map
522 * This is the main wrapper for mapping host physical pages to CE PCI space.
523 * The mapping mode used is based on the device's dma_mask.
525 static u64
526 tioce_do_dma_map(struct pci_dev *pdev, u64 paddr, size_t byte_count,
527 int barrier, int dma_flags)
529 unsigned long flags;
530 u64 ct_addr;
531 u64 mapaddr = 0;
532 struct tioce_kernel *ce_kern;
533 struct tioce_dmamap *map;
534 int port;
535 u64 dma_mask;
537 dma_mask = (barrier) ? pdev->dev.coherent_dma_mask : pdev->dma_mask;
539 /* cards must be able to address at least 31 bits */
540 if (dma_mask < 0x7fffffffUL)
541 return 0;
543 if (SN_DMA_ADDRTYPE(dma_flags) == SN_DMA_ADDR_PHYS)
544 ct_addr = PHYS_TO_TIODMA(paddr);
545 else
546 ct_addr = paddr;
549 * If the device can generate 64 bit addresses, create a D64 map.
551 if (dma_mask == ~0UL) {
552 mapaddr = tioce_dma_d64(ct_addr, dma_flags);
553 if (mapaddr)
554 goto dma_map_done;
557 pcidev_to_tioce(pdev, NULL, &ce_kern, &port);
559 spin_lock_irqsave(&ce_kern->ce_lock, flags);
562 * D64 didn't work ... See if we have an existing map that covers
563 * this address range. Must account for devices dma_mask here since
564 * an existing map might have been done in a mode using more pci
565 * address bits than this device can support.
567 list_for_each_entry(map, &ce_kern->ce_dmamap_list, ce_dmamap_list) {
568 u64 last;
570 last = map->ct_start + map->nbytes - 1;
571 if (ct_addr >= map->ct_start &&
572 ct_addr + byte_count - 1 <= last &&
573 map->pci_start <= dma_mask) {
574 map->refcnt++;
575 mapaddr = map->pci_start + (ct_addr - map->ct_start);
576 break;
581 * If we don't have a map yet, and the card can generate 40
582 * bit addresses, try the M40/M40S modes. Note these modes do not
583 * support a barrier bit, so if we need a consistent map these
584 * won't work.
586 if (!mapaddr && !barrier && dma_mask >= 0xffffffffffUL) {
588 * We have two options for 40-bit mappings: 16GB "super" ATEs
589 * and 64MB "regular" ATEs. We'll try both if needed for a
590 * given mapping but which one we try first depends on the
591 * size. For requests >64MB, prefer to use a super page with
592 * regular as the fallback. Otherwise, try in the reverse order.
595 if (byte_count > MB(64)) {
596 mapaddr = tioce_alloc_map(ce_kern, TIOCE_ATE_M40S,
597 port, ct_addr, byte_count,
598 dma_flags);
599 if (!mapaddr)
600 mapaddr =
601 tioce_alloc_map(ce_kern, TIOCE_ATE_M40, -1,
602 ct_addr, byte_count,
603 dma_flags);
604 } else {
605 mapaddr = tioce_alloc_map(ce_kern, TIOCE_ATE_M40, -1,
606 ct_addr, byte_count,
607 dma_flags);
608 if (!mapaddr)
609 mapaddr =
610 tioce_alloc_map(ce_kern, TIOCE_ATE_M40S,
611 port, ct_addr, byte_count,
612 dma_flags);
617 * 32-bit direct is the next mode to try
619 if (!mapaddr && dma_mask >= 0xffffffffUL)
620 mapaddr = tioce_dma_d32(pdev, ct_addr, dma_flags);
623 * Last resort, try 32-bit ATE-based map.
625 if (!mapaddr)
626 mapaddr =
627 tioce_alloc_map(ce_kern, TIOCE_ATE_M32, -1, ct_addr,
628 byte_count, dma_flags);
630 spin_unlock_irqrestore(&ce_kern->ce_lock, flags);
632 dma_map_done:
633 if (mapaddr && barrier)
634 mapaddr = tioce_dma_barrier(mapaddr, 1);
636 return mapaddr;
640 * tioce_dma - standard pci dma map interface
641 * @pdev: pci device requesting the map
642 * @paddr: system physical address to map into pci space
643 * @byte_count: # bytes to map
645 * Simply call tioce_do_dma_map() to create a map with the barrier bit clear
646 * in the address.
648 static u64
649 tioce_dma(struct pci_dev *pdev, u64 paddr, size_t byte_count, int dma_flags)
651 return tioce_do_dma_map(pdev, paddr, byte_count, 0, dma_flags);
655 * tioce_dma_consistent - consistent pci dma map interface
656 * @pdev: pci device requesting the map
657 * @paddr: system physical address to map into pci space
658 * @byte_count: # bytes to map
660 * Simply call tioce_do_dma_map() to create a map with the barrier bit set
661 * in the address.
662 */ static u64
663 tioce_dma_consistent(struct pci_dev *pdev, u64 paddr, size_t byte_count, int dma_flags)
665 return tioce_do_dma_map(pdev, paddr, byte_count, 1, dma_flags);
669 * tioce_error_intr_handler - SGI TIO CE error interrupt handler
670 * @irq: unused
671 * @arg: pointer to tioce_common struct for the given CE
673 * Handle a CE error interrupt. Simply a wrapper around a SAL call which
674 * defers processing to the SGI prom.
675 */ static irqreturn_t
676 tioce_error_intr_handler(int irq, void *arg)
678 struct tioce_common *soft = arg;
679 struct ia64_sal_retval ret_stuff;
680 ret_stuff.status = 0;
681 ret_stuff.v0 = 0;
683 SAL_CALL_NOLOCK(ret_stuff, (u64) SN_SAL_IOIF_ERROR_INTERRUPT,
684 soft->ce_pcibus.bs_persist_segment,
685 soft->ce_pcibus.bs_persist_busnum, 0, 0, 0, 0, 0);
687 if (ret_stuff.v0)
688 panic("tioce_error_intr_handler: Fatal TIOCE error");
690 return IRQ_HANDLED;
694 * tioce_reserve_m32 - reserve M32 ATEs for the indicated address range
695 * @tioce_kernel: TIOCE context to reserve ATEs for
696 * @base: starting bus address to reserve
697 * @limit: last bus address to reserve
699 * If base/limit falls within the range of bus space mapped through the
700 * M32 space, reserve the resources corresponding to the range.
702 static void
703 tioce_reserve_m32(struct tioce_kernel *ce_kern, u64 base, u64 limit)
705 int ate_index, last_ate, ps;
706 struct tioce __iomem *ce_mmr;
708 ce_mmr = (struct tioce __iomem *)ce_kern->ce_common->ce_pcibus.bs_base;
709 ps = ce_kern->ce_ate3240_pagesize;
710 ate_index = ATE_PAGE(base, ps);
711 last_ate = ate_index + ATE_NPAGES(base, limit-base+1, ps) - 1;
713 if (ate_index < 64)
714 ate_index = 64;
716 if (last_ate >= TIOCE_NUM_M3240_ATES)
717 last_ate = TIOCE_NUM_M3240_ATES - 1;
719 while (ate_index <= last_ate) {
720 u64 ate;
722 ate = ATE_MAKE(0xdeadbeef, ps, 0);
723 ce_kern->ce_ate3240_shadow[ate_index] = ate;
724 tioce_mmr_storei(ce_kern, &ce_mmr->ce_ure_ate3240[ate_index],
725 ate);
726 ate_index++;
731 * tioce_kern_init - init kernel structures related to a given TIOCE
732 * @tioce_common: ptr to a cached tioce_common struct that originated in prom
734 static struct tioce_kernel *
735 tioce_kern_init(struct tioce_common *tioce_common)
737 int i;
738 int ps;
739 int dev;
740 u32 tmp;
741 unsigned int seg, bus;
742 struct tioce __iomem *tioce_mmr;
743 struct tioce_kernel *tioce_kern;
745 tioce_kern = kzalloc(sizeof(struct tioce_kernel), GFP_KERNEL);
746 if (!tioce_kern) {
747 return NULL;
750 tioce_kern->ce_common = tioce_common;
751 spin_lock_init(&tioce_kern->ce_lock);
752 INIT_LIST_HEAD(&tioce_kern->ce_dmamap_list);
753 tioce_common->ce_kernel_private = (u64) tioce_kern;
756 * Determine the secondary bus number of the port2 logical PPB.
757 * This is used to decide whether a given pci device resides on
758 * port1 or port2. Note: We don't have enough plumbing set up
759 * here to use pci_read_config_xxx() so use raw_pci_read().
762 seg = tioce_common->ce_pcibus.bs_persist_segment;
763 bus = tioce_common->ce_pcibus.bs_persist_busnum;
765 raw_pci_read(seg, bus, PCI_DEVFN(2, 0), PCI_SECONDARY_BUS, 1,&tmp);
766 tioce_kern->ce_port1_secondary = (u8) tmp;
769 * Set PMU pagesize to the largest size available, and zero out
770 * the ATEs.
773 tioce_mmr = (struct tioce __iomem *)tioce_common->ce_pcibus.bs_base;
774 tioce_mmr_clri(tioce_kern, &tioce_mmr->ce_ure_page_map,
775 CE_URE_PAGESIZE_MASK);
776 tioce_mmr_seti(tioce_kern, &tioce_mmr->ce_ure_page_map,
777 CE_URE_256K_PAGESIZE);
778 ps = tioce_kern->ce_ate3240_pagesize = KB(256);
780 for (i = 0; i < TIOCE_NUM_M40_ATES; i++) {
781 tioce_kern->ce_ate40_shadow[i] = 0;
782 tioce_mmr_storei(tioce_kern, &tioce_mmr->ce_ure_ate40[i], 0);
785 for (i = 0; i < TIOCE_NUM_M3240_ATES; i++) {
786 tioce_kern->ce_ate3240_shadow[i] = 0;
787 tioce_mmr_storei(tioce_kern, &tioce_mmr->ce_ure_ate3240[i], 0);
791 * Reserve ATEs corresponding to reserved address ranges. These
792 * include:
794 * Memory space covered by each PPB mem base/limit register
795 * Memory space covered by each PPB prefetch base/limit register
797 * These bus ranges are for pio (downstream) traffic only, and so
798 * cannot be used for DMA.
801 for (dev = 1; dev <= 2; dev++) {
802 u64 base, limit;
804 /* mem base/limit */
806 raw_pci_read(seg, bus, PCI_DEVFN(dev, 0),
807 PCI_MEMORY_BASE, 2, &tmp);
808 base = (u64)tmp << 16;
810 raw_pci_read(seg, bus, PCI_DEVFN(dev, 0),
811 PCI_MEMORY_LIMIT, 2, &tmp);
812 limit = (u64)tmp << 16;
813 limit |= 0xfffffUL;
815 if (base < limit)
816 tioce_reserve_m32(tioce_kern, base, limit);
819 * prefetch mem base/limit. The tioce ppb's have 64-bit
820 * decoders, so read the upper portions w/o checking the
821 * attributes.
824 raw_pci_read(seg, bus, PCI_DEVFN(dev, 0),
825 PCI_PREF_MEMORY_BASE, 2, &tmp);
826 base = ((u64)tmp & PCI_PREF_RANGE_MASK) << 16;
828 raw_pci_read(seg, bus, PCI_DEVFN(dev, 0),
829 PCI_PREF_BASE_UPPER32, 4, &tmp);
830 base |= (u64)tmp << 32;
832 raw_pci_read(seg, bus, PCI_DEVFN(dev, 0),
833 PCI_PREF_MEMORY_LIMIT, 2, &tmp);
835 limit = ((u64)tmp & PCI_PREF_RANGE_MASK) << 16;
836 limit |= 0xfffffUL;
838 raw_pci_read(seg, bus, PCI_DEVFN(dev, 0),
839 PCI_PREF_LIMIT_UPPER32, 4, &tmp);
840 limit |= (u64)tmp << 32;
842 if ((base < limit) && TIOCE_M32_ADDR(base))
843 tioce_reserve_m32(tioce_kern, base, limit);
846 return tioce_kern;
850 * tioce_force_interrupt - implement altix force_interrupt() backend for CE
851 * @sn_irq_info: sn asic irq that we need an interrupt generated for
853 * Given an sn_irq_info struct, set the proper bit in ce_adm_force_int to
854 * force a secondary interrupt to be generated. This is to work around an
855 * asic issue where there is a small window of opportunity for a legacy device
856 * interrupt to be lost.
858 static void
859 tioce_force_interrupt(struct sn_irq_info *sn_irq_info)
861 struct pcidev_info *pcidev_info;
862 struct tioce_common *ce_common;
863 struct tioce_kernel *ce_kern;
864 struct tioce __iomem *ce_mmr;
865 u64 force_int_val;
867 if (!sn_irq_info->irq_bridge)
868 return;
870 if (sn_irq_info->irq_bridge_type != PCIIO_ASIC_TYPE_TIOCE)
871 return;
873 pcidev_info = (struct pcidev_info *)sn_irq_info->irq_pciioinfo;
874 if (!pcidev_info)
875 return;
877 ce_common = (struct tioce_common *)pcidev_info->pdi_pcibus_info;
878 ce_mmr = (struct tioce __iomem *)ce_common->ce_pcibus.bs_base;
879 ce_kern = (struct tioce_kernel *)ce_common->ce_kernel_private;
882 * TIOCE Rev A workaround (PV 945826), force an interrupt by writing
883 * the TIO_INTx register directly (1/26/2006)
885 if (ce_common->ce_rev == TIOCE_REV_A) {
886 u64 int_bit_mask = (1ULL << sn_irq_info->irq_int_bit);
887 u64 status;
889 tioce_mmr_load(ce_kern, &ce_mmr->ce_adm_int_status, &status);
890 if (status & int_bit_mask) {
891 u64 force_irq = (1 << 8) | sn_irq_info->irq_irq;
892 u64 ctalk = sn_irq_info->irq_xtalkaddr;
893 u64 nasid, offset;
895 nasid = (ctalk & CTALK_NASID_MASK) >> CTALK_NASID_SHFT;
896 offset = (ctalk & CTALK_NODE_OFFSET);
897 HUB_S(TIO_IOSPACE_ADDR(nasid, offset), force_irq);
900 return;
904 * irq_int_bit is originally set up by prom, and holds the interrupt
905 * bit shift (not mask) as defined by the bit definitions in the
906 * ce_adm_int mmr. These shifts are not the same for the
907 * ce_adm_force_int register, so do an explicit mapping here to make
908 * things clearer.
911 switch (sn_irq_info->irq_int_bit) {
912 case CE_ADM_INT_PCIE_PORT1_DEV_A_SHFT:
913 force_int_val = 1UL << CE_ADM_FORCE_INT_PCIE_PORT1_DEV_A_SHFT;
914 break;
915 case CE_ADM_INT_PCIE_PORT1_DEV_B_SHFT:
916 force_int_val = 1UL << CE_ADM_FORCE_INT_PCIE_PORT1_DEV_B_SHFT;
917 break;
918 case CE_ADM_INT_PCIE_PORT1_DEV_C_SHFT:
919 force_int_val = 1UL << CE_ADM_FORCE_INT_PCIE_PORT1_DEV_C_SHFT;
920 break;
921 case CE_ADM_INT_PCIE_PORT1_DEV_D_SHFT:
922 force_int_val = 1UL << CE_ADM_FORCE_INT_PCIE_PORT1_DEV_D_SHFT;
923 break;
924 case CE_ADM_INT_PCIE_PORT2_DEV_A_SHFT:
925 force_int_val = 1UL << CE_ADM_FORCE_INT_PCIE_PORT2_DEV_A_SHFT;
926 break;
927 case CE_ADM_INT_PCIE_PORT2_DEV_B_SHFT:
928 force_int_val = 1UL << CE_ADM_FORCE_INT_PCIE_PORT2_DEV_B_SHFT;
929 break;
930 case CE_ADM_INT_PCIE_PORT2_DEV_C_SHFT:
931 force_int_val = 1UL << CE_ADM_FORCE_INT_PCIE_PORT2_DEV_C_SHFT;
932 break;
933 case CE_ADM_INT_PCIE_PORT2_DEV_D_SHFT:
934 force_int_val = 1UL << CE_ADM_FORCE_INT_PCIE_PORT2_DEV_D_SHFT;
935 break;
936 default:
937 return;
939 tioce_mmr_storei(ce_kern, &ce_mmr->ce_adm_force_int, force_int_val);
943 * tioce_target_interrupt - implement set_irq_affinity for tioce resident
944 * functions. Note: only applies to line interrupts, not MSI's.
946 * @sn_irq_info: SN IRQ context
948 * Given an sn_irq_info, set the associated CE device's interrupt destination
949 * register. Since the interrupt destination registers are on a per-ce-slot
950 * basis, this will retarget line interrupts for all functions downstream of
951 * the slot.
953 static void
954 tioce_target_interrupt(struct sn_irq_info *sn_irq_info)
956 struct pcidev_info *pcidev_info;
957 struct tioce_common *ce_common;
958 struct tioce_kernel *ce_kern;
959 struct tioce __iomem *ce_mmr;
960 int bit;
961 u64 vector;
963 pcidev_info = (struct pcidev_info *)sn_irq_info->irq_pciioinfo;
964 if (!pcidev_info)
965 return;
967 ce_common = (struct tioce_common *)pcidev_info->pdi_pcibus_info;
968 ce_mmr = (struct tioce __iomem *)ce_common->ce_pcibus.bs_base;
969 ce_kern = (struct tioce_kernel *)ce_common->ce_kernel_private;
971 bit = sn_irq_info->irq_int_bit;
973 tioce_mmr_seti(ce_kern, &ce_mmr->ce_adm_int_mask, (1UL << bit));
974 vector = (u64)sn_irq_info->irq_irq << INTR_VECTOR_SHFT;
975 vector |= sn_irq_info->irq_xtalkaddr;
976 tioce_mmr_storei(ce_kern, &ce_mmr->ce_adm_int_dest[bit], vector);
977 tioce_mmr_clri(ce_kern, &ce_mmr->ce_adm_int_mask, (1UL << bit));
979 tioce_force_interrupt(sn_irq_info);
983 * tioce_bus_fixup - perform final PCI fixup for a TIO CE bus
984 * @prom_bussoft: Common prom/kernel struct representing the bus
986 * Replicates the tioce_common pointed to by @prom_bussoft in kernel
987 * space. Allocates and initializes a kernel-only area for a given CE,
988 * and sets up an irq for handling CE error interrupts.
990 * On successful setup, returns the kernel version of tioce_common back to
991 * the caller.
993 static void *
994 tioce_bus_fixup(struct pcibus_bussoft *prom_bussoft, struct pci_controller *controller)
996 struct tioce_common *tioce_common;
997 struct tioce_kernel *tioce_kern;
998 struct tioce __iomem *tioce_mmr;
1001 * Allocate kernel bus soft and copy from prom.
1004 tioce_common = kzalloc(sizeof(struct tioce_common), GFP_KERNEL);
1005 if (!tioce_common)
1006 return NULL;
1008 memcpy(tioce_common, prom_bussoft, sizeof(struct tioce_common));
1009 tioce_common->ce_pcibus.bs_base = (unsigned long)
1010 ioremap(REGION_OFFSET(tioce_common->ce_pcibus.bs_base),
1011 sizeof(struct tioce_common));
1013 tioce_kern = tioce_kern_init(tioce_common);
1014 if (tioce_kern == NULL) {
1015 kfree(tioce_common);
1016 return NULL;
1020 * Clear out any transient errors before registering the error
1021 * interrupt handler.
1024 tioce_mmr = (struct tioce __iomem *)tioce_common->ce_pcibus.bs_base;
1025 tioce_mmr_seti(tioce_kern, &tioce_mmr->ce_adm_int_status_alias, ~0ULL);
1026 tioce_mmr_seti(tioce_kern, &tioce_mmr->ce_adm_error_summary_alias,
1027 ~0ULL);
1028 tioce_mmr_seti(tioce_kern, &tioce_mmr->ce_dre_comp_err_addr, 0ULL);
1030 if (request_irq(SGI_PCIASIC_ERROR,
1031 tioce_error_intr_handler,
1032 IRQF_SHARED, "TIOCE error", (void *)tioce_common))
1033 printk(KERN_WARNING
1034 "%s: Unable to get irq %d. "
1035 "Error interrupts won't be routed for "
1036 "TIOCE bus %04x:%02x\n",
1037 <<<<<<< HEAD:arch/ia64/sn/pci/tioce_provider.c
1038 __FUNCTION__, SGI_PCIASIC_ERROR,
1039 =======
1040 __func__, SGI_PCIASIC_ERROR,
1041 >>>>>>> 264e3e889d86e552b4191d69bb60f4f3b383135a:arch/ia64/sn/pci/tioce_provider.c
1042 tioce_common->ce_pcibus.bs_persist_segment,
1043 tioce_common->ce_pcibus.bs_persist_busnum);
1045 sn_set_err_irq_affinity(SGI_PCIASIC_ERROR);
1046 return tioce_common;
1049 static struct sn_pcibus_provider tioce_pci_interfaces = {
1050 .dma_map = tioce_dma,
1051 .dma_map_consistent = tioce_dma_consistent,
1052 .dma_unmap = tioce_dma_unmap,
1053 .bus_fixup = tioce_bus_fixup,
1054 .force_interrupt = tioce_force_interrupt,
1055 .target_interrupt = tioce_target_interrupt
1059 * tioce_init_provider - init SN PCI provider ops for TIO CE
1062 tioce_init_provider(void)
1064 sn_pci_provider[PCIIO_ASIC_TYPE_TIOCE] = &tioce_pci_interfaces;
1065 return 0;