• Home
  • History
  • Annotate
  • Raw
  • Download
  • only in /netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/drivers/char/agp/

Lines Matching refs:i460

2  * For documentation on the i460 AGP interface, see Chapter 7 (AGP Subsystem) of
27 * The i460 can operate with large (4MB) pages, but there is no sane way to support this
34 # define I460_IO_PAGE_SHIFT i460.io_page_shift
51 * gatt_table entries are 32-bits wide on the i460; the generic code ought to declare the
54 #define RD_GATT(index) readl((u32 *) i460.gatt + (index))
55 #define WR_GATT(index, val) writel((val), (u32 *) i460.gatt + (index))
67 /* i460 supports multiple GART page sizes, so GART pageshift is dynamic: */
79 } i460;
109 i460.io_page_shift = (temp & I460_4M_PS) ? 22 : 12;
110 pr_debug("i460_fetch_size: io_page_shift=%d\n", i460.io_page_shift);
112 if (i460.io_page_shift != I460_IO_PAGE_SHIFT) {
116 1UL << (i460.io_page_shift - 10),
133 if ((i460.io_page_shift == 0) && ((temp & I460_AGPSIZ_MASK) == 4)) {
140 i460.dynamic_apbase = INTEL_I460_BAPBASE;
142 i460.dynamic_apbase = AGP_APBASE;
193 kfree(i460.lp_desc);
216 pci_read_config_dword(agp_bridge->dev, i460.dynamic_apbase, &(temp.small[0]));
217 pci_read_config_dword(agp_bridge->dev, i460.dynamic_apbase + 4, &(temp.small[1]));
231 size = current_size->num_entries * sizeof(i460.lp_desc[0]);
232 i460.lp_desc = kzalloc(size, GFP_KERNEL);
233 if (!i460.lp_desc)
251 i460.gatt = ioremap(INTEL_I460_ATTBASE, PAGE_SIZE << page_order);
277 iounmap(i460.gatt);
398 start = &i460.lp_desc[pg_start / I460_KPAGES_PER_IOPAGE];
399 end = &i460.lp_desc[(pg_start + mem->page_count - 1) / I460_KPAGES_PER_IOPAGE];
403 if (end > i460.lp_desc + num_entries) {
427 pg = lp - i460.lp_desc;
456 start = &i460.lp_desc[pg_start / I460_KPAGES_PER_IOPAGE];
457 end = &i460.lp_desc[(pg_start + mem->page_count - 1) / I460_KPAGES_PER_IOPAGE];
473 pg = lp - i460.lp_desc;
621 .name = "agpgart-intel-i460",