📄 i460-agp.c
字号:
/* * For documentation on the i460 AGP interface, see Chapter 7 (AGP Subsystem) of * the "Intel 460GTX Chipset Software Developer's Manual": * http://developer.intel.com/design/itanium/downloads/24870401s.htm *//* * 460GX support by Chris Ahna <christopher.j.ahna@intel.com> * Clean up & simplification by David Mosberger-Tang <davidm@hpl.hp.com> */#include <linux/module.h>#include <linux/pci.h>#include <linux/init.h>#include <linux/agp_backend.h>#include "agp.h"#define INTEL_I460_BAPBASE 0x98#define INTEL_I460_GXBCTL 0xa0#define INTEL_I460_AGPSIZ 0xa2#define INTEL_I460_ATTBASE 0xfe200000#define INTEL_I460_GATT_VALID (1UL << 24)#define INTEL_I460_GATT_COHERENT (1UL << 25)/* * The i460 can operate with large (4MB) pages, but there is no sane way to support this * within the current kernel/DRM environment, so we disable the relevant code for now. * See also comments in ia64_alloc_page()... */#define I460_LARGE_IO_PAGES 0#if I460_LARGE_IO_PAGES# define I460_IO_PAGE_SHIFT i460.io_page_shift#else# define I460_IO_PAGE_SHIFT 12#endif#define I460_IOPAGES_PER_KPAGE (PAGE_SIZE >> I460_IO_PAGE_SHIFT)#define I460_KPAGES_PER_IOPAGE (1 << (I460_IO_PAGE_SHIFT - PAGE_SHIFT))#define I460_SRAM_IO_DISABLE (1 << 4)#define I460_BAPBASE_ENABLE (1 << 3)#define I460_AGPSIZ_MASK 0x7#define I460_4M_PS (1 << 1)/* Control bits for Out-Of-GART coherency and Burst Write Combining */#define I460_GXBCTL_OOG (1UL << 0)#define I460_GXBCTL_BWC (1UL << 2)/* * gatt_table entries are 32-bits wide on the i460; the generic code ought to declare the * gatt_table and gatt_table_real pointers a "void *"... */#define RD_GATT(index) readl((u32 *) i460.gatt + (index))#define WR_GATT(index, val) writel((val), (u32 *) i460.gatt + (index))/* * The 460 spec says we have to read the last location written to make sure that all * writes have taken effect */#define WR_FLUSH_GATT(index) RD_GATT(index)#define log2(x) ffz(~(x))static struct { void *gatt; /* ioremap'd GATT area */ /* i460 supports multiple GART page sizes, so GART pageshift is dynamic: */ u8 io_page_shift; /* BIOS configures chipset to one of 2 possible apbase values: */ u8 dynamic_apbase; /* structure for tracking partial use of 4MB GART pages: */ struct lp_desc { unsigned long *alloced_map; /* bitmap of kernel-pages in use */ int refcount; /* number of kernel pages using the large page */ u64 paddr; /* physical address of large page */ } *lp_desc;} i460;static struct aper_size_info_8 i460_sizes[3] ={ /* * The 32GB aperture is only available with a 4M GART page size. Due to the * dynamic GART page size, we can't figure out page_order or num_entries until * runtime. */ {32768, 0, 0, 4}, {1024, 0, 0, 2}, {256, 0, 0, 1}};static struct gatt_mask i460_masks[] ={ { .mask = INTEL_I460_GATT_VALID | INTEL_I460_GATT_COHERENT, .type = 0 }};static int i460_fetch_size (void){ int i; u8 temp; struct aper_size_info_8 *values; /* Determine the GART page size */ pci_read_config_byte(agp_bridge->dev, INTEL_I460_GXBCTL, &temp); i460.io_page_shift = (temp & I460_4M_PS) ? 22 : 12; pr_debug("i460_fetch_size: io_page_shift=%d\n", i460.io_page_shift); if (i460.io_page_shift != I460_IO_PAGE_SHIFT) { printk(KERN_ERR PFX "I/O (GART) page-size %ZuKB doesn't match expected size %ZuKB\n", 1UL << (i460.io_page_shift - 10), 1UL << (I460_IO_PAGE_SHIFT)); return 0; } values = A_SIZE_8(agp_bridge->driver->aperture_sizes); pci_read_config_byte(agp_bridge->dev, INTEL_I460_AGPSIZ, &temp); /* Exit now if the IO drivers for the GART SRAMS are turned off */ if (temp & I460_SRAM_IO_DISABLE) { printk(KERN_ERR PFX "GART SRAMS disabled on 460GX chipset\n"); printk(KERN_ERR PFX "AGPGART operation not possible\n"); return 0; } /* Make sure we don't try to create an 2 ^ 23 entry GATT */ if ((i460.io_page_shift == 0) && ((temp & I460_AGPSIZ_MASK) == 4)) { printk(KERN_ERR PFX "We can't have a 32GB aperture with 4KB GART pages\n"); return 0; } /* Determine the proper APBASE register */ if (temp & I460_BAPBASE_ENABLE) i460.dynamic_apbase = INTEL_I460_BAPBASE; else i460.dynamic_apbase = AGP_APBASE; for (i = 0; i < agp_bridge->driver->num_aperture_sizes; i++) { /* * Dynamically calculate the proper num_entries and page_order values for * the define aperture sizes. Take care not to shift off the end of * values[i].size. */ values[i].num_entries = (values[i].size << 8) >> (I460_IO_PAGE_SHIFT - 12); values[i].page_order = log2((sizeof(u32)*values[i].num_entries) >> PAGE_SHIFT); } for (i = 0; i < agp_bridge->driver->num_aperture_sizes; i++) { /* Neglect control bits when matching up size_value */ if ((temp & I460_AGPSIZ_MASK) == values[i].size_value) { agp_bridge->previous_size = agp_bridge->current_size = (void *) (values + i); agp_bridge->aperture_size_idx = i; return values[i].size; } } return 0;}/* There isn't anything to do here since 460 has no GART TLB. */static void i460_tlb_flush (struct agp_memory *mem){ return;}/* * This utility function is needed to prevent corruption of the control bits * which are stored along with the aperture size in 460's AGPSIZ register */static void i460_write_agpsiz (u8 size_value){ u8 temp; pci_read_config_byte(agp_bridge->dev, INTEL_I460_AGPSIZ, &temp); pci_write_config_byte(agp_bridge->dev, INTEL_I460_AGPSIZ, ((temp & ~I460_AGPSIZ_MASK) | size_value));}static void i460_cleanup (void){ struct aper_size_info_8 *previous_size; previous_size = A_SIZE_8(agp_bridge->previous_size); i460_write_agpsiz(previous_size->size_value); if (I460_IO_PAGE_SHIFT > PAGE_SHIFT) kfree(i460.lp_desc);}static int i460_configure (void){ union { u32 small[2]; u64 large; } temp; size_t size; u8 scratch; struct aper_size_info_8 *current_size; temp.large = 0; current_size = A_SIZE_8(agp_bridge->current_size); i460_write_agpsiz(current_size->size_value); /* * Do the necessary rigmarole to read all eight bytes of APBASE. * This has to be done since the AGP aperture can be above 4GB on * 460 based systems. */ pci_read_config_dword(agp_bridge->dev, i460.dynamic_apbase, &(temp.small[0])); pci_read_config_dword(agp_bridge->dev, i460.dynamic_apbase + 4, &(temp.small[1])); /* Clear BAR control bits */ agp_bridge->gart_bus_addr = temp.large & ~((1UL << 3) - 1); pci_read_config_byte(agp_bridge->dev, INTEL_I460_GXBCTL, &scratch); pci_write_config_byte(agp_bridge->dev, INTEL_I460_GXBCTL, (scratch & 0x02) | I460_GXBCTL_OOG | I460_GXBCTL_BWC); /* * Initialize partial allocation trackers if a GART page is bigger than a kernel * page. */ if (I460_IO_PAGE_SHIFT > PAGE_SHIFT) { size = current_size->num_entries * sizeof(i460.lp_desc[0]); i460.lp_desc = kmalloc(size, GFP_KERNEL); if (!i460.lp_desc) return -ENOMEM; memset(i460.lp_desc, 0, size); } return 0;}static int i460_create_gatt_table (void){ int page_order, num_entries, i; void *temp; /* * Load up the fixed address of the GART SRAMS which hold our GATT table. */ temp = agp_bridge->current_size; page_order = A_SIZE_8(temp)->page_order; num_entries = A_SIZE_8(temp)->num_entries; i460.gatt = ioremap(INTEL_I460_ATTBASE, PAGE_SIZE << page_order); /* These are no good, the should be removed from the agp_bridge strucure... */ agp_bridge->gatt_table_real = NULL; agp_bridge->gatt_table = NULL; agp_bridge->gatt_bus_addr = 0; for (i = 0; i < num_entries; ++i) WR_GATT(i, 0); WR_FLUSH_GATT(i - 1); return 0;}static int i460_free_gatt_table (void){ int num_entries, i; void *temp; temp = agp_bridge->current_size; num_entries = A_SIZE_8(temp)->num_entries; for (i = 0; i < num_entries; ++i) WR_GATT(i, 0); WR_FLUSH_GATT(num_entries - 1); iounmap(i460.gatt); return 0;}/* * The following functions are called when the I/O (GART) page size is smaller than * PAGE_SIZE. */static int i460_insert_memory_small_io_page (struct agp_memory *mem, off_t pg_start, int type){ unsigned long paddr, io_pg_start, io_page_size; int i, j, k, num_entries; void *temp; pr_debug("i460_insert_memory_small_io_page(mem=%p, pg_start=%ld, type=%d, paddr0=0x%lx)\n", mem, pg_start, type, mem->memory[0]); io_pg_start = I460_IOPAGES_PER_KPAGE * pg_start; temp = agp_bridge->current_size; num_entries = A_SIZE_8(temp)->num_entries; if ((io_pg_start + I460_IOPAGES_PER_KPAGE * mem->page_count) > num_entries) { printk(KERN_ERR PFX "Looks like we're out of AGP memory\n"); return -EINVAL; } j = io_pg_start; while (j < (io_pg_start + I460_IOPAGES_PER_KPAGE * mem->page_count)) { if (!PGE_EMPTY(agp_bridge, RD_GATT(j))) { pr_debug("i460_insert_memory_small_io_page: GATT[%d]=0x%x is busy\n", j, RD_GATT(j)); return -EBUSY; } j++; } io_page_size = 1UL << I460_IO_PAGE_SHIFT; for (i = 0, j = io_pg_start; i < mem->page_count; i++) { paddr = mem->memory[i]; for (k = 0; k < I460_IOPAGES_PER_KPAGE; k++, j++, paddr += io_page_size) WR_GATT(j, agp_bridge->driver->mask_memory(paddr, mem->type)); }
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -