amd64-agp.c (2fc2991175bf77395e6b15fe6b2304d3bf72da40) | amd64-agp.c (8c65b4a60450590e79a28e9717ceffa9e4debb3f) |
---|---|
1/* 2 * Copyright 2001-2003 SuSE Labs. 3 * Distributed under the GNU public license, v2. 4 * 5 * This is a GART driver for the AMD Opteron/Athlon64 on-CPU northbridge. 6 * It also includes support for the AMD 8151 AGP bridge, 7 * although it doesn't actually do much, as all the real 8 * work is done in the northbridge(s). 9 */ 10 11#include <linux/config.h> 12#include <linux/module.h> 13#include <linux/pci.h> 14#include <linux/init.h> 15#include <linux/agp_backend.h> | 1/* 2 * Copyright 2001-2003 SuSE Labs. 3 * Distributed under the GNU public license, v2. 4 * 5 * This is a GART driver for the AMD Opteron/Athlon64 on-CPU northbridge. 6 * It also includes support for the AMD 8151 AGP bridge, 7 * although it doesn't actually do much, as all the real 8 * work is done in the northbridge(s). 9 */ 10 11#include <linux/config.h> 12#include <linux/module.h> 13#include <linux/pci.h> 14#include <linux/init.h> 15#include <linux/agp_backend.h> |
16#include <linux/mmzone.h> |
|
16#include <asm/page.h> /* PAGE_SIZE */ 17#include "agp.h" 18 19/* Will need to be increased if AMD64 ever goes >8-way. */ 20#define MAX_HAMMER_GARTS 8 21 22/* PTE bits. */ 23#define GPTE_VALID 1 --- 748 unchanged lines hidden --- | 17#include <asm/page.h> /* PAGE_SIZE */ 18#include "agp.h" 19 20/* Will need to be increased if AMD64 ever goes >8-way. */ 21#define MAX_HAMMER_GARTS 8 22 23/* PTE bits. */ 24#define GPTE_VALID 1 --- 748 unchanged lines hidden --- |