diff options
author | Zhenyu Wang <zhenyu.z.wang@intel.com> | 2008-01-23 07:54:37 +0300 |
---|---|---|
committer | Dave Airlie <airlied@redhat.com> | 2008-02-05 07:33:33 +0300 |
commit | 4e8b6e25943a22036a6b704ebef634c7dec4c10e (patch) | |
tree | 0106e5e94d7e240ac4dba8d840f79f90735d3208 /drivers/char/agp/agp.h | |
parent | 91d361c279b66ce4d617d544641d5f70b27c401a (diff) | |
download | linux-4e8b6e25943a22036a6b704ebef634c7dec4c10e.tar.xz |
intel-agp: add new chipset ID
This one adds new pci ids for Intel intergrated graphics chipset, with gtt
table access change on it and new gtt table size definition.
Signed-off-by: Zhenyu Wang <zhenyu.z.wang@intel.com>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Dave Airlie <airlied@linux.ie>
Diffstat (limited to 'drivers/char/agp/agp.h')
-rw-r--r-- | drivers/char/agp/agp.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/drivers/char/agp/agp.h b/drivers/char/agp/agp.h index 9ec9374ccc42..c69f79598e47 100644 --- a/drivers/char/agp/agp.h +++ b/drivers/char/agp/agp.h @@ -236,6 +236,9 @@ struct agp_bridge_data { #define I965_PGETBL_SIZE_512KB (0 << 1) #define I965_PGETBL_SIZE_256KB (1 << 1) #define I965_PGETBL_SIZE_128KB (2 << 1) +#define I965_PGETBL_SIZE_1MB (3 << 1) +#define I965_PGETBL_SIZE_2MB (4 << 1) +#define I965_PGETBL_SIZE_1_5MB (5 << 1) #define G33_PGETBL_SIZE_MASK (3 << 8) #define G33_PGETBL_SIZE_1M (1 << 8) #define G33_PGETBL_SIZE_2M (2 << 8) |