mirror of
https://github.com/Fishwaldo/Star64_linux.git
synced 2025-06-19 13:11:14 +00:00
agp: add support for 662/671 to agp driver
Signed-off-by: Dave Airlie <airlied@redhat.com>
This commit is contained in:
parent
fcea424d31
commit
2e374748c7
1 changed files with 19 additions and 0 deletions
|
@ -14,6 +14,9 @@
|
||||||
#define SIS_TLBCNTRL 0x97
|
#define SIS_TLBCNTRL 0x97
|
||||||
#define SIS_TLBFLUSH 0x98
|
#define SIS_TLBFLUSH 0x98
|
||||||
|
|
||||||
|
#define PCI_DEVICE_ID_SI_662 0x0662
|
||||||
|
#define PCI_DEVICE_ID_SI_671 0x0671
|
||||||
|
|
||||||
static int __devinitdata agp_sis_force_delay = 0;
|
static int __devinitdata agp_sis_force_delay = 0;
|
||||||
static int __devinitdata agp_sis_agp_spec = -1;
|
static int __devinitdata agp_sis_agp_spec = -1;
|
||||||
|
|
||||||
|
@ -347,6 +350,22 @@ static struct pci_device_id agp_sis_pci_table[] = {
|
||||||
.subvendor = PCI_ANY_ID,
|
.subvendor = PCI_ANY_ID,
|
||||||
.subdevice = PCI_ANY_ID,
|
.subdevice = PCI_ANY_ID,
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
.class = (PCI_CLASS_BRIDGE_HOST << 8),
|
||||||
|
.class_mask = ~0,
|
||||||
|
.vendor = PCI_VENDOR_ID_SI,
|
||||||
|
.device = PCI_DEVICE_ID_SI_662,
|
||||||
|
.subvendor = PCI_ANY_ID,
|
||||||
|
.subdevice = PCI_ANY_ID,
|
||||||
|
},
|
||||||
|
{
|
||||||
|
.class = (PCI_CLASS_BRIDGE_HOST << 8),
|
||||||
|
.class_mask = ~0,
|
||||||
|
.vendor = PCI_VENDOR_ID_SI,
|
||||||
|
.device = PCI_DEVICE_ID_SI_671,
|
||||||
|
.subvendor = PCI_ANY_ID,
|
||||||
|
.subdevice = PCI_ANY_ID,
|
||||||
|
},
|
||||||
{
|
{
|
||||||
.class = (PCI_CLASS_BRIDGE_HOST << 8),
|
.class = (PCI_CLASS_BRIDGE_HOST << 8),
|
||||||
.class_mask = ~0,
|
.class_mask = ~0,
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue