2005-04-26 02:35:54 +08:00
|
|
|
/*
|
|
|
|
* This file is subject to the terms and conditions of the GNU General Public
|
|
|
|
* License. See the file "COPYING" in the main directory of this archive
|
|
|
|
* for more details.
|
|
|
|
*
|
|
|
|
* Copyright (C) 2003-2005 Silicon Graphics, Inc. All Rights Reserved.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <linux/types.h>
|
|
|
|
#include <linux/interrupt.h>
|
|
|
|
#include <linux/pci.h>
|
2009-12-16 08:48:30 +08:00
|
|
|
#include <linux/bitmap.h>
|
include cleanup: Update gfp.h and slab.h includes to prepare for breaking implicit slab.h inclusion from percpu.h
percpu.h is included by sched.h and module.h and thus ends up being
included when building most .c files. percpu.h includes slab.h which
in turn includes gfp.h making everything defined by the two files
universally available and complicating inclusion dependencies.
percpu.h -> slab.h dependency is about to be removed. Prepare for
this change by updating users of gfp and slab facilities include those
headers directly instead of assuming availability. As this conversion
needs to touch large number of source files, the following script is
used as the basis of conversion.
http://userweb.kernel.org/~tj/misc/slabh-sweep.py
The script does the followings.
* Scan files for gfp and slab usages and update includes such that
only the necessary includes are there. ie. if only gfp is used,
gfp.h, if slab is used, slab.h.
* When the script inserts a new include, it looks at the include
blocks and try to put the new include such that its order conforms
to its surrounding. It's put in the include block which contains
core kernel includes, in the same order that the rest are ordered -
alphabetical, Christmas tree, rev-Xmas-tree or at the end if there
doesn't seem to be any matching order.
* If the script can't find a place to put a new include (mostly
because the file doesn't have fitting include block), it prints out
an error message indicating which .h file needs to be added to the
file.
The conversion was done in the following steps.
1. The initial automatic conversion of all .c files updated slightly
over 4000 files, deleting around 700 includes and adding ~480 gfp.h
and ~3000 slab.h inclusions. The script emitted errors for ~400
files.
2. Each error was manually checked. Some didn't need the inclusion,
some needed manual addition while adding it to implementation .h or
embedding .c file was more appropriate for others. This step added
inclusions to around 150 files.
3. The script was run again and the output was compared to the edits
from #2 to make sure no file was left behind.
4. Several build tests were done and a couple of problems were fixed.
e.g. lib/decompress_*.c used malloc/free() wrappers around slab
APIs requiring slab.h to be added manually.
5. The script was run on all .h files but without automatically
editing them as sprinkling gfp.h and slab.h inclusions around .h
files could easily lead to inclusion dependency hell. Most gfp.h
inclusion directives were ignored as stuff from gfp.h was usually
wildly available and often used in preprocessor macros. Each
slab.h inclusion directive was examined and added manually as
necessary.
6. percpu.h was updated not to include slab.h.
7. Build test were done on the following configurations and failures
were fixed. CONFIG_GCOV_KERNEL was turned off for all tests (as my
distributed build env didn't work with gcov compiles) and a few
more options had to be turned off depending on archs to make things
build (like ipr on powerpc/64 which failed due to missing writeq).
* x86 and x86_64 UP and SMP allmodconfig and a custom test config.
* powerpc and powerpc64 SMP allmodconfig
* sparc and sparc64 SMP allmodconfig
* ia64 SMP allmodconfig
* s390 SMP allmodconfig
* alpha SMP allmodconfig
* um on x86_64 SMP allmodconfig
8. percpu.h modifications were reverted so that it could be applied as
a separate patch and serve as bisection point.
Given the fact that I had only a couple of failures from tests on step
6, I'm fairly confident about the coverage of this conversion patch.
If there is a breakage, it's likely to be something in one of the arch
headers which should be easily discoverable easily on most builds of
the specific arch.
Signed-off-by: Tejun Heo <tj@kernel.org>
Guess-its-ok-by: Christoph Lameter <cl@linux-foundation.org>
Cc: Ingo Molnar <mingo@redhat.com>
Cc: Lee Schermerhorn <Lee.Schermerhorn@hp.com>
2010-03-24 16:04:11 +08:00
|
|
|
#include <linux/slab.h>
|
2011-08-01 06:33:21 +08:00
|
|
|
#include <linux/export.h>
|
2005-04-26 02:35:54 +08:00
|
|
|
#include <asm/sn/sn_sal.h>
|
|
|
|
#include <asm/sn/addrs.h>
|
2005-09-10 02:41:12 +08:00
|
|
|
#include <asm/sn/io.h>
|
2005-04-26 02:35:54 +08:00
|
|
|
#include <asm/sn/pcidev.h>
|
|
|
|
#include <asm/sn/pcibus_provider_defs.h>
|
|
|
|
#include <asm/sn/tioca_provider.h>
|
|
|
|
|
2006-01-17 11:54:40 +08:00
|
|
|
u32 tioca_gart_found;
|
2005-04-26 02:35:54 +08:00
|
|
|
EXPORT_SYMBOL(tioca_gart_found); /* used by agp-sgi */
|
|
|
|
|
|
|
|
LIST_HEAD(tioca_list);
|
|
|
|
EXPORT_SYMBOL(tioca_list); /* used by agp-sgi */
|
|
|
|
|
|
|
|
static int tioca_gart_init(struct tioca_kernel *);
|
|
|
|
|
|
|
|
/**
|
|
|
|
* tioca_gart_init - Initialize SGI TIOCA GART
|
|
|
|
* @tioca_common: ptr to common prom/kernel struct identifying the
|
|
|
|
*
|
|
|
|
* If the indicated tioca has devices present, initialize its associated
|
|
|
|
* GART MMR's and kernel memory.
|
|
|
|
*/
|
|
|
|
static int
|
|
|
|
tioca_gart_init(struct tioca_kernel *tioca_kern)
|
|
|
|
{
|
2006-01-17 11:54:40 +08:00
|
|
|
u64 ap_reg;
|
|
|
|
u64 offset;
|
2005-04-26 02:35:54 +08:00
|
|
|
struct page *tmp;
|
|
|
|
struct tioca_common *tioca_common;
|
2005-12-15 17:18:40 +08:00
|
|
|
struct tioca __iomem *ca_base;
|
2005-04-26 02:35:54 +08:00
|
|
|
|
|
|
|
tioca_common = tioca_kern->ca_common;
|
2005-12-15 17:18:40 +08:00
|
|
|
ca_base = (struct tioca __iomem *)tioca_common->ca_common.bs_base;
|
2005-04-26 02:35:54 +08:00
|
|
|
|
|
|
|
if (list_empty(tioca_kern->ca_devices))
|
|
|
|
return 0;
|
|
|
|
|
|
|
|
ap_reg = 0;
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Validate aperature size
|
|
|
|
*/
|
|
|
|
|
|
|
|
switch (CA_APERATURE_SIZE >> 20) {
|
|
|
|
case 4:
|
|
|
|
ap_reg |= (0x3ff << CA_GART_AP_SIZE_SHFT); /* 4MB */
|
|
|
|
break;
|
|
|
|
case 8:
|
|
|
|
ap_reg |= (0x3fe << CA_GART_AP_SIZE_SHFT); /* 8MB */
|
|
|
|
break;
|
|
|
|
case 16:
|
|
|
|
ap_reg |= (0x3fc << CA_GART_AP_SIZE_SHFT); /* 16MB */
|
|
|
|
break;
|
|
|
|
case 32:
|
|
|
|
ap_reg |= (0x3f8 << CA_GART_AP_SIZE_SHFT); /* 32 MB */
|
|
|
|
break;
|
|
|
|
case 64:
|
|
|
|
ap_reg |= (0x3f0 << CA_GART_AP_SIZE_SHFT); /* 64 MB */
|
|
|
|
break;
|
|
|
|
case 128:
|
|
|
|
ap_reg |= (0x3e0 << CA_GART_AP_SIZE_SHFT); /* 128 MB */
|
|
|
|
break;
|
|
|
|
case 256:
|
|
|
|
ap_reg |= (0x3c0 << CA_GART_AP_SIZE_SHFT); /* 256 MB */
|
|
|
|
break;
|
|
|
|
case 512:
|
|
|
|
ap_reg |= (0x380 << CA_GART_AP_SIZE_SHFT); /* 512 MB */
|
|
|
|
break;
|
|
|
|
case 1024:
|
|
|
|
ap_reg |= (0x300 << CA_GART_AP_SIZE_SHFT); /* 1GB */
|
|
|
|
break;
|
|
|
|
case 2048:
|
|
|
|
ap_reg |= (0x200 << CA_GART_AP_SIZE_SHFT); /* 2GB */
|
|
|
|
break;
|
|
|
|
case 4096:
|
|
|
|
ap_reg |= (0x000 << CA_GART_AP_SIZE_SHFT); /* 4 GB */
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
printk(KERN_ERR "%s: Invalid CA_APERATURE_SIZE "
|
2008-03-05 07:15:00 +08:00
|
|
|
"0x%lx\n", __func__, (ulong) CA_APERATURE_SIZE);
|
2005-04-26 02:35:54 +08:00
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Set up other aperature parameters
|
|
|
|
*/
|
|
|
|
|
|
|
|
if (PAGE_SIZE >= 16384) {
|
|
|
|
tioca_kern->ca_ap_pagesize = 16384;
|
|
|
|
ap_reg |= CA_GART_PAGE_SIZE;
|
|
|
|
} else {
|
|
|
|
tioca_kern->ca_ap_pagesize = 4096;
|
|
|
|
}
|
|
|
|
|
|
|
|
tioca_kern->ca_ap_size = CA_APERATURE_SIZE;
|
|
|
|
tioca_kern->ca_ap_bus_base = CA_APERATURE_BASE;
|
|
|
|
tioca_kern->ca_gart_entries =
|
|
|
|
tioca_kern->ca_ap_size / tioca_kern->ca_ap_pagesize;
|
|
|
|
|
|
|
|
ap_reg |= (CA_GART_AP_ENB_AGP | CA_GART_AP_ENB_PCI);
|
|
|
|
ap_reg |= tioca_kern->ca_ap_bus_base;
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Allocate and set up the GART
|
|
|
|
*/
|
|
|
|
|
|
|
|
tioca_kern->ca_gart_size = tioca_kern->ca_gart_entries * sizeof(u64);
|
|
|
|
tmp =
|
|
|
|
alloc_pages_node(tioca_kern->ca_closest_node,
|
|
|
|
GFP_KERNEL | __GFP_ZERO,
|
|
|
|
get_order(tioca_kern->ca_gart_size));
|
|
|
|
|
|
|
|
if (!tmp) {
|
|
|
|
printk(KERN_ERR "%s: Could not allocate "
|
2009-05-23 04:49:49 +08:00
|
|
|
"%llu bytes (order %d) for GART\n",
|
2008-03-05 07:15:00 +08:00
|
|
|
__func__,
|
2005-04-26 02:35:54 +08:00
|
|
|
tioca_kern->ca_gart_size,
|
|
|
|
get_order(tioca_kern->ca_gart_size));
|
|
|
|
return -ENOMEM;
|
|
|
|
}
|
|
|
|
|
|
|
|
tioca_kern->ca_gart = page_address(tmp);
|
|
|
|
tioca_kern->ca_gart_coretalk_addr =
|
|
|
|
PHYS_TO_TIODMA(virt_to_phys(tioca_kern->ca_gart));
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Compute PCI/AGP convenience fields
|
|
|
|
*/
|
|
|
|
|
|
|
|
offset = CA_PCI32_MAPPED_BASE - CA_APERATURE_BASE;
|
|
|
|
tioca_kern->ca_pciap_base = CA_PCI32_MAPPED_BASE;
|
|
|
|
tioca_kern->ca_pciap_size = CA_PCI32_MAPPED_SIZE;
|
|
|
|
tioca_kern->ca_pcigart_start = offset / tioca_kern->ca_ap_pagesize;
|
|
|
|
tioca_kern->ca_pcigart_base =
|
|
|
|
tioca_kern->ca_gart_coretalk_addr + offset;
|
|
|
|
tioca_kern->ca_pcigart =
|
|
|
|
&tioca_kern->ca_gart[tioca_kern->ca_pcigart_start];
|
|
|
|
tioca_kern->ca_pcigart_entries =
|
|
|
|
tioca_kern->ca_pciap_size / tioca_kern->ca_ap_pagesize;
|
|
|
|
tioca_kern->ca_pcigart_pagemap =
|
2005-09-07 06:18:31 +08:00
|
|
|
kzalloc(tioca_kern->ca_pcigart_entries / 8, GFP_KERNEL);
|
2005-04-26 02:35:54 +08:00
|
|
|
if (!tioca_kern->ca_pcigart_pagemap) {
|
|
|
|
free_pages((unsigned long)tioca_kern->ca_gart,
|
|
|
|
get_order(tioca_kern->ca_gart_size));
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
offset = CA_AGP_MAPPED_BASE - CA_APERATURE_BASE;
|
|
|
|
tioca_kern->ca_gfxap_base = CA_AGP_MAPPED_BASE;
|
|
|
|
tioca_kern->ca_gfxap_size = CA_AGP_MAPPED_SIZE;
|
|
|
|
tioca_kern->ca_gfxgart_start = offset / tioca_kern->ca_ap_pagesize;
|
|
|
|
tioca_kern->ca_gfxgart_base =
|
|
|
|
tioca_kern->ca_gart_coretalk_addr + offset;
|
|
|
|
tioca_kern->ca_gfxgart =
|
|
|
|
&tioca_kern->ca_gart[tioca_kern->ca_gfxgart_start];
|
|
|
|
tioca_kern->ca_gfxgart_entries =
|
|
|
|
tioca_kern->ca_gfxap_size / tioca_kern->ca_ap_pagesize;
|
|
|
|
|
|
|
|
/*
|
|
|
|
* various control settings:
|
|
|
|
* use agp op-combining
|
|
|
|
* use GET semantics to fetch memory
|
|
|
|
* participate in coherency domain
|
2005-04-26 04:18:02 +08:00
|
|
|
* DISABLE GART PREFETCHING due to hw bug tracked in SGI PV930029
|
2005-04-26 02:35:54 +08:00
|
|
|
*/
|
|
|
|
|
2005-09-07 02:03:51 +08:00
|
|
|
__sn_setq_relaxed(&ca_base->ca_control1,
|
|
|
|
CA_AGPDMA_OP_ENB_COMBDELAY); /* PV895469 ? */
|
|
|
|
__sn_clrq_relaxed(&ca_base->ca_control2, CA_GART_MEM_PARAM);
|
|
|
|
__sn_setq_relaxed(&ca_base->ca_control2,
|
|
|
|
(0x2ull << CA_GART_MEM_PARAM_SHFT));
|
2005-04-26 02:35:54 +08:00
|
|
|
tioca_kern->ca_gart_iscoherent = 1;
|
2005-09-07 02:03:51 +08:00
|
|
|
__sn_clrq_relaxed(&ca_base->ca_control2,
|
|
|
|
(CA_GART_WR_PREFETCH_ENB | CA_GART_RD_PREFETCH_ENB));
|
2005-04-26 02:35:54 +08:00
|
|
|
|
|
|
|
/*
|
|
|
|
* Unmask GART fetch error interrupts. Clear residual errors first.
|
|
|
|
*/
|
|
|
|
|
2005-09-07 02:03:51 +08:00
|
|
|
writeq(CA_GART_FETCH_ERR, &ca_base->ca_int_status_alias);
|
|
|
|
writeq(CA_GART_FETCH_ERR, &ca_base->ca_mult_error_alias);
|
|
|
|
__sn_clrq_relaxed(&ca_base->ca_int_mask, CA_GART_FETCH_ERR);
|
2005-04-26 02:35:54 +08:00
|
|
|
|
|
|
|
/*
|
|
|
|
* Program the aperature and gart registers in TIOCA
|
|
|
|
*/
|
|
|
|
|
2005-09-07 02:03:51 +08:00
|
|
|
writeq(ap_reg, &ca_base->ca_gart_aperature);
|
|
|
|
writeq(tioca_kern->ca_gart_coretalk_addr|1, &ca_base->ca_gart_ptr_table);
|
2005-04-26 02:35:54 +08:00
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* tioca_fastwrite_enable - enable AGP FW for a tioca and its functions
|
|
|
|
* @tioca_kernel: structure representing the CA
|
|
|
|
*
|
|
|
|
* Given a CA, scan all attached functions making sure they all support
|
|
|
|
* FastWrite. If so, enable FastWrite for all functions and the CA itself.
|
|
|
|
*/
|
|
|
|
|
|
|
|
void
|
|
|
|
tioca_fastwrite_enable(struct tioca_kernel *tioca_kern)
|
|
|
|
{
|
|
|
|
int cap_ptr;
|
2006-01-17 11:54:40 +08:00
|
|
|
u32 reg;
|
2005-12-15 17:18:40 +08:00
|
|
|
struct tioca __iomem *tioca_base;
|
2005-04-26 02:35:54 +08:00
|
|
|
struct pci_dev *pdev;
|
|
|
|
struct tioca_common *common;
|
|
|
|
|
|
|
|
common = tioca_kern->ca_common;
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Scan all vga controllers on this bus making sure they all
|
2007-05-12 05:55:43 +08:00
|
|
|
* support FW. If not, return.
|
2005-04-26 02:35:54 +08:00
|
|
|
*/
|
|
|
|
|
|
|
|
list_for_each_entry(pdev, tioca_kern->ca_devices, bus_list) {
|
|
|
|
if (pdev->class != (PCI_CLASS_DISPLAY_VGA << 8))
|
|
|
|
continue;
|
|
|
|
|
|
|
|
cap_ptr = pci_find_capability(pdev, PCI_CAP_ID_AGP);
|
|
|
|
if (!cap_ptr)
|
|
|
|
return; /* no AGP CAP means no FW */
|
|
|
|
|
|
|
|
pci_read_config_dword(pdev, cap_ptr + PCI_AGP_STATUS, ®);
|
|
|
|
if (!(reg & PCI_AGP_STATUS_FW))
|
|
|
|
return; /* function doesn't support FW */
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Set fw for all vga fn's
|
|
|
|
*/
|
|
|
|
|
|
|
|
list_for_each_entry(pdev, tioca_kern->ca_devices, bus_list) {
|
|
|
|
if (pdev->class != (PCI_CLASS_DISPLAY_VGA << 8))
|
|
|
|
continue;
|
|
|
|
|
|
|
|
cap_ptr = pci_find_capability(pdev, PCI_CAP_ID_AGP);
|
|
|
|
pci_read_config_dword(pdev, cap_ptr + PCI_AGP_COMMAND, ®);
|
|
|
|
reg |= PCI_AGP_COMMAND_FW;
|
|
|
|
pci_write_config_dword(pdev, cap_ptr + PCI_AGP_COMMAND, reg);
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Set ca's fw to match
|
|
|
|
*/
|
|
|
|
|
2005-12-15 17:18:40 +08:00
|
|
|
tioca_base = (struct tioca __iomem*)common->ca_common.bs_base;
|
2005-09-07 02:03:51 +08:00
|
|
|
__sn_setq_relaxed(&tioca_base->ca_control1, CA_AGP_FW_ENABLE);
|
2005-04-26 02:35:54 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
EXPORT_SYMBOL(tioca_fastwrite_enable); /* used by agp-sgi */
|
|
|
|
|
|
|
|
/**
|
|
|
|
* tioca_dma_d64 - create a DMA mapping using 64-bit direct mode
|
|
|
|
* @paddr: system physical address
|
|
|
|
*
|
|
|
|
* Map @paddr into 64-bit CA bus space. No device context is necessary.
|
|
|
|
* Bits 53:0 come from the coretalk address. We just need to mask in the
|
|
|
|
* following optional bits of the 64-bit pci address:
|
|
|
|
*
|
|
|
|
* 63:60 - Coretalk Packet Type - 0x1 for Mem Get/Put (coherent)
|
|
|
|
* 0x2 for PIO (non-coherent)
|
|
|
|
* We will always use 0x1
|
|
|
|
* 55:55 - Swap bytes Currently unused
|
|
|
|
*/
|
2006-01-17 11:54:40 +08:00
|
|
|
static u64
|
2005-04-26 02:35:54 +08:00
|
|
|
tioca_dma_d64(unsigned long paddr)
|
|
|
|
{
|
|
|
|
dma_addr_t bus_addr;
|
|
|
|
|
|
|
|
bus_addr = PHYS_TO_TIODMA(paddr);
|
|
|
|
|
|
|
|
BUG_ON(!bus_addr);
|
|
|
|
BUG_ON(bus_addr >> 54);
|
|
|
|
|
|
|
|
/* Set upper nibble to Cache Coherent Memory op */
|
|
|
|
bus_addr |= (1UL << 60);
|
|
|
|
|
|
|
|
return bus_addr;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* tioca_dma_d48 - create a DMA mapping using 48-bit direct mode
|
|
|
|
* @pdev: linux pci_dev representing the function
|
|
|
|
* @paddr: system physical address
|
|
|
|
*
|
|
|
|
* Map @paddr into 64-bit bus space of the CA associated with @pcidev_info.
|
|
|
|
*
|
|
|
|
* The CA agp 48 bit direct address falls out as follows:
|
|
|
|
*
|
|
|
|
* When direct mapping AGP addresses, the 48 bit AGP address is
|
|
|
|
* constructed as follows:
|
|
|
|
*
|
|
|
|
* [47:40] - Low 8 bits of the page Node ID extracted from coretalk
|
|
|
|
* address [47:40]. The upper 8 node bits are fixed
|
|
|
|
* and come from the xxx register bits [5:0]
|
|
|
|
* [39:38] - Chiplet ID extracted from coretalk address [39:38]
|
|
|
|
* [37:00] - node offset extracted from coretalk address [37:00]
|
|
|
|
*
|
|
|
|
* Since the node id in general will be non-zero, and the chiplet id
|
|
|
|
* will always be non-zero, it follows that the device must support
|
|
|
|
* a dma mask of at least 0xffffffffff (40 bits) to target node 0
|
|
|
|
* and in general should be 0xffffffffffff (48 bits) to target nodes
|
|
|
|
* up to 255. Nodes above 255 need the support of the xxx register,
|
|
|
|
* and so a given CA can only directly target nodes in the range
|
|
|
|
* xxx - xxx+255.
|
|
|
|
*/
|
2006-01-17 11:54:40 +08:00
|
|
|
static u64
|
|
|
|
tioca_dma_d48(struct pci_dev *pdev, u64 paddr)
|
2005-04-26 02:35:54 +08:00
|
|
|
{
|
|
|
|
struct tioca_common *tioca_common;
|
2005-12-15 17:18:40 +08:00
|
|
|
struct tioca __iomem *ca_base;
|
2006-01-17 11:54:40 +08:00
|
|
|
u64 ct_addr;
|
2005-04-26 02:35:54 +08:00
|
|
|
dma_addr_t bus_addr;
|
2006-01-17 11:54:40 +08:00
|
|
|
u32 node_upper;
|
|
|
|
u64 agp_dma_extn;
|
2005-04-26 02:35:54 +08:00
|
|
|
struct pcidev_info *pcidev_info = SN_PCIDEV_INFO(pdev);
|
|
|
|
|
|
|
|
tioca_common = (struct tioca_common *)pcidev_info->pdi_pcibus_info;
|
2005-12-15 17:18:40 +08:00
|
|
|
ca_base = (struct tioca __iomem *)tioca_common->ca_common.bs_base;
|
2005-04-26 02:35:54 +08:00
|
|
|
|
|
|
|
ct_addr = PHYS_TO_TIODMA(paddr);
|
|
|
|
if (!ct_addr)
|
|
|
|
return 0;
|
|
|
|
|
2005-05-11 03:40:00 +08:00
|
|
|
bus_addr = (dma_addr_t) (ct_addr & 0xffffffffffffUL);
|
2005-04-26 02:35:54 +08:00
|
|
|
node_upper = ct_addr >> 48;
|
|
|
|
|
|
|
|
if (node_upper > 64) {
|
|
|
|
printk(KERN_ERR "%s: coretalk addr 0x%p node id out "
|
2008-03-05 07:15:00 +08:00
|
|
|
"of range\n", __func__, (void *)ct_addr);
|
2005-04-26 02:35:54 +08:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2005-09-07 02:03:51 +08:00
|
|
|
agp_dma_extn = __sn_readq_relaxed(&ca_base->ca_agp_dma_addr_extn);
|
2005-04-26 02:35:54 +08:00
|
|
|
if (node_upper != (agp_dma_extn >> CA_AGP_DMA_NODE_ID_SHFT)) {
|
|
|
|
printk(KERN_ERR "%s: coretalk upper node (%u) "
|
2009-05-23 04:49:49 +08:00
|
|
|
"mismatch with ca_agp_dma_addr_extn (%llu)\n",
|
2008-03-05 07:15:00 +08:00
|
|
|
__func__,
|
2005-04-26 02:35:54 +08:00
|
|
|
node_upper, (agp_dma_extn >> CA_AGP_DMA_NODE_ID_SHFT));
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
return bus_addr;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* tioca_dma_mapped - create a DMA mapping using a CA GART
|
|
|
|
* @pdev: linux pci_dev representing the function
|
|
|
|
* @paddr: host physical address to map
|
|
|
|
* @req_size: len (bytes) to map
|
|
|
|
*
|
|
|
|
* Map @paddr into CA address space using the GART mechanism. The mapped
|
2007-05-12 05:55:43 +08:00
|
|
|
* dma_addr_t is guaranteed to be contiguous in CA bus space.
|
2005-04-26 02:35:54 +08:00
|
|
|
*/
|
|
|
|
static dma_addr_t
|
2009-05-23 04:49:49 +08:00
|
|
|
tioca_dma_mapped(struct pci_dev *pdev, unsigned long paddr, size_t req_size)
|
2005-04-26 02:35:54 +08:00
|
|
|
{
|
2009-12-16 08:48:30 +08:00
|
|
|
int ps, ps_shift, entry, entries, mapsize;
|
2006-01-17 11:54:40 +08:00
|
|
|
u64 xio_addr, end_xio_addr;
|
2005-04-26 02:35:54 +08:00
|
|
|
struct tioca_common *tioca_common;
|
|
|
|
struct tioca_kernel *tioca_kern;
|
|
|
|
dma_addr_t bus_addr = 0;
|
|
|
|
struct tioca_dmamap *ca_dmamap;
|
|
|
|
void *map;
|
|
|
|
unsigned long flags;
|
2006-03-24 19:16:13 +08:00
|
|
|
struct pcidev_info *pcidev_info = SN_PCIDEV_INFO(pdev);
|
2005-04-26 02:35:54 +08:00
|
|
|
|
|
|
|
tioca_common = (struct tioca_common *)pcidev_info->pdi_pcibus_info;
|
|
|
|
tioca_kern = (struct tioca_kernel *)tioca_common->ca_kernel_private;
|
|
|
|
|
|
|
|
xio_addr = PHYS_TO_TIODMA(paddr);
|
|
|
|
if (!xio_addr)
|
|
|
|
return 0;
|
|
|
|
|
|
|
|
spin_lock_irqsave(&tioca_kern->ca_lock, flags);
|
|
|
|
|
|
|
|
/*
|
|
|
|
* allocate a map struct
|
|
|
|
*/
|
|
|
|
|
2005-09-07 06:18:31 +08:00
|
|
|
ca_dmamap = kzalloc(sizeof(struct tioca_dmamap), GFP_ATOMIC);
|
2005-04-26 02:35:54 +08:00
|
|
|
if (!ca_dmamap)
|
|
|
|
goto map_return;
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Locate free entries that can hold req_size. Account for
|
|
|
|
* unaligned start/length when allocating.
|
|
|
|
*/
|
|
|
|
|
|
|
|
ps = tioca_kern->ca_ap_pagesize; /* will be power of 2 */
|
|
|
|
ps_shift = ffs(ps) - 1;
|
|
|
|
end_xio_addr = xio_addr + req_size - 1;
|
|
|
|
|
|
|
|
entries = (end_xio_addr >> ps_shift) - (xio_addr >> ps_shift) + 1;
|
|
|
|
|
|
|
|
map = tioca_kern->ca_pcigart_pagemap;
|
|
|
|
mapsize = tioca_kern->ca_pcigart_entries;
|
|
|
|
|
2009-12-16 08:48:30 +08:00
|
|
|
entry = bitmap_find_next_zero_area(map, mapsize, 0, entries, 0);
|
|
|
|
if (entry >= mapsize) {
|
2008-09-10 19:57:19 +08:00
|
|
|
kfree(ca_dmamap);
|
2005-04-26 02:35:54 +08:00
|
|
|
goto map_return;
|
2008-09-10 19:57:19 +08:00
|
|
|
}
|
2005-04-26 02:35:54 +08:00
|
|
|
|
2009-12-16 08:48:30 +08:00
|
|
|
bitmap_set(map, entry, entries);
|
2005-04-26 02:35:54 +08:00
|
|
|
|
|
|
|
bus_addr = tioca_kern->ca_pciap_base + (entry * ps);
|
|
|
|
|
|
|
|
ca_dmamap->cad_dma_addr = bus_addr;
|
|
|
|
ca_dmamap->cad_gart_size = entries;
|
|
|
|
ca_dmamap->cad_gart_entry = entry;
|
2005-04-12 12:20:00 +08:00
|
|
|
list_add(&ca_dmamap->cad_list, &tioca_kern->ca_dmamaps);
|
2005-04-26 02:35:54 +08:00
|
|
|
|
|
|
|
if (xio_addr % ps) {
|
|
|
|
tioca_kern->ca_pcigart[entry] = tioca_paddr_to_gart(xio_addr);
|
|
|
|
bus_addr += xio_addr & (ps - 1);
|
|
|
|
xio_addr &= ~(ps - 1);
|
|
|
|
xio_addr += ps;
|
|
|
|
entry++;
|
|
|
|
}
|
|
|
|
|
|
|
|
while (xio_addr < end_xio_addr) {
|
|
|
|
tioca_kern->ca_pcigart[entry] = tioca_paddr_to_gart(xio_addr);
|
|
|
|
xio_addr += ps;
|
|
|
|
entry++;
|
|
|
|
}
|
|
|
|
|
|
|
|
tioca_tlbflush(tioca_kern);
|
|
|
|
|
|
|
|
map_return:
|
|
|
|
spin_unlock_irqrestore(&tioca_kern->ca_lock, flags);
|
|
|
|
return bus_addr;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* tioca_dma_unmap - release CA mapping resources
|
|
|
|
* @pdev: linux pci_dev representing the function
|
|
|
|
* @bus_addr: bus address returned by an earlier tioca_dma_map
|
|
|
|
* @dir: mapping direction (unused)
|
|
|
|
*
|
|
|
|
* Locate mapping resources associated with @bus_addr and release them.
|
|
|
|
* For mappings created using the direct modes (64 or 48) there are no
|
|
|
|
* resources to release.
|
|
|
|
*/
|
2005-05-11 03:40:00 +08:00
|
|
|
static void
|
2005-04-26 02:35:54 +08:00
|
|
|
tioca_dma_unmap(struct pci_dev *pdev, dma_addr_t bus_addr, int dir)
|
|
|
|
{
|
|
|
|
int i, entry;
|
|
|
|
struct tioca_common *tioca_common;
|
|
|
|
struct tioca_kernel *tioca_kern;
|
|
|
|
struct tioca_dmamap *map;
|
|
|
|
struct pcidev_info *pcidev_info = SN_PCIDEV_INFO(pdev);
|
|
|
|
unsigned long flags;
|
|
|
|
|
|
|
|
tioca_common = (struct tioca_common *)pcidev_info->pdi_pcibus_info;
|
|
|
|
tioca_kern = (struct tioca_kernel *)tioca_common->ca_kernel_private;
|
|
|
|
|
|
|
|
/* return straight away if this isn't be a mapped address */
|
|
|
|
|
|
|
|
if (bus_addr < tioca_kern->ca_pciap_base ||
|
|
|
|
bus_addr >= (tioca_kern->ca_pciap_base + tioca_kern->ca_pciap_size))
|
|
|
|
return;
|
|
|
|
|
|
|
|
spin_lock_irqsave(&tioca_kern->ca_lock, flags);
|
|
|
|
|
|
|
|
list_for_each_entry(map, &tioca_kern->ca_dmamaps, cad_list)
|
|
|
|
if (map->cad_dma_addr == bus_addr)
|
|
|
|
break;
|
|
|
|
|
|
|
|
BUG_ON(map == NULL);
|
|
|
|
|
|
|
|
entry = map->cad_gart_entry;
|
|
|
|
|
|
|
|
for (i = 0; i < map->cad_gart_size; i++, entry++) {
|
|
|
|
clear_bit(entry, tioca_kern->ca_pcigart_pagemap);
|
|
|
|
tioca_kern->ca_pcigart[entry] = 0;
|
|
|
|
}
|
|
|
|
tioca_tlbflush(tioca_kern);
|
|
|
|
|
|
|
|
list_del(&map->cad_list);
|
|
|
|
spin_unlock_irqrestore(&tioca_kern->ca_lock, flags);
|
|
|
|
kfree(map);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* tioca_dma_map - map pages for PCI DMA
|
|
|
|
* @pdev: linux pci_dev representing the function
|
|
|
|
* @paddr: host physical address to map
|
|
|
|
* @byte_count: bytes to map
|
|
|
|
*
|
|
|
|
* This is the main wrapper for mapping host physical pages to CA PCI space.
|
|
|
|
* The mapping mode used is based on the devices dma_mask. As a last resort
|
|
|
|
* use the GART mapped mode.
|
|
|
|
*/
|
2006-01-17 11:54:40 +08:00
|
|
|
static u64
|
2011-02-25 04:33:24 +08:00
|
|
|
tioca_dma_map(struct pci_dev *pdev, unsigned long paddr, size_t byte_count, int dma_flags)
|
2005-04-26 02:35:54 +08:00
|
|
|
{
|
2006-01-17 11:54:40 +08:00
|
|
|
u64 mapaddr;
|
2005-04-26 02:35:54 +08:00
|
|
|
|
2006-04-15 05:03:54 +08:00
|
|
|
/*
|
|
|
|
* Not supported for now ...
|
|
|
|
*/
|
|
|
|
if (dma_flags & SN_DMA_MSI)
|
|
|
|
return 0;
|
|
|
|
|
2005-04-26 02:35:54 +08:00
|
|
|
/*
|
2007-05-12 05:55:43 +08:00
|
|
|
* If card is 64 or 48 bit addressable, use a direct mapping. 32
|
2005-04-26 02:35:54 +08:00
|
|
|
* bit direct is so restrictive w.r.t. where the memory resides that
|
|
|
|
* we don't use it even though CA has some support.
|
|
|
|
*/
|
|
|
|
|
|
|
|
if (pdev->dma_mask == ~0UL)
|
|
|
|
mapaddr = tioca_dma_d64(paddr);
|
|
|
|
else if (pdev->dma_mask == 0xffffffffffffUL)
|
|
|
|
mapaddr = tioca_dma_d48(pdev, paddr);
|
|
|
|
else
|
|
|
|
mapaddr = 0;
|
|
|
|
|
|
|
|
/* Last resort ... use PCI portion of CA GART */
|
|
|
|
|
|
|
|
if (mapaddr == 0)
|
|
|
|
mapaddr = tioca_dma_mapped(pdev, paddr, byte_count);
|
|
|
|
|
|
|
|
return mapaddr;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* tioca_error_intr_handler - SGI TIO CA error interrupt handler
|
|
|
|
* @irq: unused
|
|
|
|
* @arg: pointer to tioca_common struct for the given CA
|
|
|
|
*
|
|
|
|
* Handle a CA error interrupt. Simply a wrapper around a SAL call which
|
|
|
|
* defers processing to the SGI prom.
|
|
|
|
*/
|
|
|
|
static irqreturn_t
|
IRQ: Maintain regs pointer globally rather than passing to IRQ handlers
Maintain a per-CPU global "struct pt_regs *" variable which can be used instead
of passing regs around manually through all ~1800 interrupt handlers in the
Linux kernel.
The regs pointer is used in few places, but it potentially costs both stack
space and code to pass it around. On the FRV arch, removing the regs parameter
from all the genirq function results in a 20% speed up of the IRQ exit path
(ie: from leaving timer_interrupt() to leaving do_IRQ()).
Where appropriate, an arch may override the generic storage facility and do
something different with the variable. On FRV, for instance, the address is
maintained in GR28 at all times inside the kernel as part of general exception
handling.
Having looked over the code, it appears that the parameter may be handed down
through up to twenty or so layers of functions. Consider a USB character
device attached to a USB hub, attached to a USB controller that posts its
interrupts through a cascaded auxiliary interrupt controller. A character
device driver may want to pass regs to the sysrq handler through the input
layer which adds another few layers of parameter passing.
I've build this code with allyesconfig for x86_64 and i386. I've runtested the
main part of the code on FRV and i386, though I can't test most of the drivers.
I've also done partial conversion for powerpc and MIPS - these at least compile
with minimal configurations.
This will affect all archs. Mostly the changes should be relatively easy.
Take do_IRQ(), store the regs pointer at the beginning, saving the old one:
struct pt_regs *old_regs = set_irq_regs(regs);
And put the old one back at the end:
set_irq_regs(old_regs);
Don't pass regs through to generic_handle_irq() or __do_IRQ().
In timer_interrupt(), this sort of change will be necessary:
- update_process_times(user_mode(regs));
- profile_tick(CPU_PROFILING, regs);
+ update_process_times(user_mode(get_irq_regs()));
+ profile_tick(CPU_PROFILING);
I'd like to move update_process_times()'s use of get_irq_regs() into itself,
except that i386, alone of the archs, uses something other than user_mode().
Some notes on the interrupt handling in the drivers:
(*) input_dev() is now gone entirely. The regs pointer is no longer stored in
the input_dev struct.
(*) finish_unlinks() in drivers/usb/host/ohci-q.c needs checking. It does
something different depending on whether it's been supplied with a regs
pointer or not.
(*) Various IRQ handler function pointers have been moved to type
irq_handler_t.
Signed-Off-By: David Howells <dhowells@redhat.com>
(cherry picked from 1b16e7ac850969f38b375e511e3fa2f474a33867 commit)
2006-10-05 21:55:46 +08:00
|
|
|
tioca_error_intr_handler(int irq, void *arg)
|
2005-04-26 02:35:54 +08:00
|
|
|
{
|
|
|
|
struct tioca_common *soft = arg;
|
|
|
|
struct ia64_sal_retval ret_stuff;
|
2006-01-17 11:54:40 +08:00
|
|
|
u64 segment;
|
|
|
|
u64 busnum;
|
2005-04-26 02:35:54 +08:00
|
|
|
ret_stuff.status = 0;
|
|
|
|
ret_stuff.v0 = 0;
|
|
|
|
|
2005-08-04 04:35:00 +08:00
|
|
|
segment = soft->ca_common.bs_persist_segment;
|
2005-04-26 02:35:54 +08:00
|
|
|
busnum = soft->ca_common.bs_persist_busnum;
|
|
|
|
|
|
|
|
SAL_CALL_NOLOCK(ret_stuff,
|
|
|
|
(u64) SN_SAL_IOIF_ERROR_INTERRUPT,
|
|
|
|
segment, busnum, 0, 0, 0, 0, 0);
|
|
|
|
|
|
|
|
return IRQ_HANDLED;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* tioca_bus_fixup - perform final PCI fixup for a TIO CA bus
|
|
|
|
* @prom_bussoft: Common prom/kernel struct representing the bus
|
|
|
|
*
|
|
|
|
* Replicates the tioca_common pointed to by @prom_bussoft in kernel
|
|
|
|
* space. Allocates and initializes a kernel-only area for a given CA,
|
|
|
|
* and sets up an irq for handling CA error interrupts.
|
|
|
|
*
|
|
|
|
* On successful setup, returns the kernel version of tioca_common back to
|
|
|
|
* the caller.
|
|
|
|
*/
|
2005-05-11 03:40:00 +08:00
|
|
|
static void *
|
2005-07-13 07:03:00 +08:00
|
|
|
tioca_bus_fixup(struct pcibus_bussoft *prom_bussoft, struct pci_controller *controller)
|
2005-04-26 02:35:54 +08:00
|
|
|
{
|
|
|
|
struct tioca_common *tioca_common;
|
|
|
|
struct tioca_kernel *tioca_kern;
|
|
|
|
struct pci_bus *bus;
|
|
|
|
|
|
|
|
/* sanity check prom rev */
|
|
|
|
|
2006-06-28 23:34:55 +08:00
|
|
|
if (is_shub1() && sn_sal_rev() < 0x0406) {
|
2005-04-26 02:35:54 +08:00
|
|
|
printk
|
|
|
|
(KERN_ERR "%s: SGI prom rev 4.06 or greater required "
|
2008-03-05 07:15:00 +08:00
|
|
|
"for tioca support\n", __func__);
|
2005-04-26 02:35:54 +08:00
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Allocate kernel bus soft and copy from prom.
|
|
|
|
*/
|
|
|
|
|
2011-11-19 19:27:39 +08:00
|
|
|
tioca_common = kmemdup(prom_bussoft, sizeof(struct tioca_common),
|
|
|
|
GFP_KERNEL);
|
2005-04-26 02:35:54 +08:00
|
|
|
if (!tioca_common)
|
|
|
|
return NULL;
|
|
|
|
|
2007-06-18 23:19:05 +08:00
|
|
|
tioca_common->ca_common.bs_base = (unsigned long)
|
|
|
|
ioremap(REGION_OFFSET(tioca_common->ca_common.bs_base),
|
|
|
|
sizeof(struct tioca_common));
|
2005-04-26 02:35:54 +08:00
|
|
|
|
|
|
|
/* init kernel-private area */
|
|
|
|
|
2005-09-07 06:18:31 +08:00
|
|
|
tioca_kern = kzalloc(sizeof(struct tioca_kernel), GFP_KERNEL);
|
2005-04-26 02:35:54 +08:00
|
|
|
if (!tioca_kern) {
|
|
|
|
kfree(tioca_common);
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
tioca_kern->ca_common = tioca_common;
|
|
|
|
spin_lock_init(&tioca_kern->ca_lock);
|
|
|
|
INIT_LIST_HEAD(&tioca_kern->ca_dmamaps);
|
|
|
|
tioca_kern->ca_closest_node =
|
|
|
|
nasid_to_cnodeid(tioca_common->ca_closest_nasid);
|
2006-01-17 11:54:40 +08:00
|
|
|
tioca_common->ca_kernel_private = (u64) tioca_kern;
|
2005-04-26 02:35:54 +08:00
|
|
|
|
2005-08-04 04:35:00 +08:00
|
|
|
bus = pci_find_bus(tioca_common->ca_common.bs_persist_segment,
|
|
|
|
tioca_common->ca_common.bs_persist_busnum);
|
2005-04-26 02:35:54 +08:00
|
|
|
BUG_ON(!bus);
|
|
|
|
tioca_kern->ca_devices = &bus->devices;
|
|
|
|
|
|
|
|
/* init GART */
|
|
|
|
|
|
|
|
if (tioca_gart_init(tioca_kern) < 0) {
|
|
|
|
kfree(tioca_kern);
|
|
|
|
kfree(tioca_common);
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
tioca_gart_found++;
|
|
|
|
list_add(&tioca_kern->ca_list, &tioca_list);
|
|
|
|
|
|
|
|
if (request_irq(SGI_TIOCA_ERROR,
|
|
|
|
tioca_error_intr_handler,
|
2006-07-02 10:29:17 +08:00
|
|
|
IRQF_SHARED, "TIOCA error", (void *)tioca_common))
|
2005-04-26 02:35:54 +08:00
|
|
|
printk(KERN_WARNING
|
|
|
|
"%s: Unable to get irq %d. "
|
|
|
|
"Error interrupts won't be routed for TIOCA bus %d\n",
|
2008-03-05 07:15:00 +08:00
|
|
|
__func__, SGI_TIOCA_ERROR,
|
2005-04-26 02:35:54 +08:00
|
|
|
(int)tioca_common->ca_common.bs_persist_busnum);
|
|
|
|
|
2012-02-23 03:11:06 +08:00
|
|
|
irq_set_handler(SGI_TIOCA_ERROR, handle_level_irq);
|
2007-08-23 08:32:06 +08:00
|
|
|
sn_set_err_irq_affinity(SGI_TIOCA_ERROR);
|
|
|
|
|
2005-07-13 07:03:00 +08:00
|
|
|
/* Setup locality information */
|
|
|
|
controller->node = tioca_kern->ca_closest_node;
|
2005-04-26 02:35:54 +08:00
|
|
|
return tioca_common;
|
|
|
|
}
|
|
|
|
|
|
|
|
static struct sn_pcibus_provider tioca_pci_interfaces = {
|
|
|
|
.dma_map = tioca_dma_map,
|
|
|
|
.dma_map_consistent = tioca_dma_map,
|
|
|
|
.dma_unmap = tioca_dma_unmap,
|
|
|
|
.bus_fixup = tioca_bus_fixup,
|
2005-08-26 02:45:00 +08:00
|
|
|
.force_interrupt = NULL,
|
|
|
|
.target_interrupt = NULL
|
2005-04-26 02:35:54 +08:00
|
|
|
};
|
|
|
|
|
|
|
|
/**
|
|
|
|
* tioca_init_provider - init SN PCI provider ops for TIO CA
|
|
|
|
*/
|
|
|
|
int
|
|
|
|
tioca_init_provider(void)
|
|
|
|
{
|
|
|
|
sn_pci_provider[PCIIO_ASIC_TYPE_TIOCA] = &tioca_pci_interfaces;
|
|
|
|
return 0;
|
|
|
|
}
|