Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
L
linux
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
nexedi
linux
Commits
6e0418be
Commit
6e0418be
authored
Jul 30, 2004
by
Linus Torvalds
Browse files
Options
Browse Files
Download
Plain Diff
Merge
bk://linux-dj.bkbits.net/agpgart
into ppc970.osdl.org:/home/torvalds/v2.6/linux
parents
3eec4b93
7eb82461
Changes
6
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
339 additions
and
24 deletions
+339
-24
drivers/char/agp/Kconfig
drivers/char/agp/Kconfig
+1
-1
drivers/char/agp/amd64-agp.c
drivers/char/agp/amd64-agp.c
+12
-1
drivers/char/agp/intel-agp.c
drivers/char/agp/intel-agp.c
+296
-19
drivers/char/agp/sis-agp.c
drivers/char/agp/sis-agp.c
+4
-0
drivers/char/agp/via-agp.c
drivers/char/agp/via-agp.c
+19
-1
include/linux/pci_ids.h
include/linux/pci_ids.h
+7
-2
No files found.
drivers/char/agp/Kconfig
View file @
6e0418be
...
...
@@ -82,7 +82,7 @@ config AGP_INTEL
This option gives you AGP support for the GLX component of XFree86 4.x
on Intel 440LX/BX/GX, 815, 820, 830, 840, 845, 850, 860, 875,
E7205 and E7505 chipsets and full support for the 810, 815, 830M, 845G,
852GM, 855GM
and 865G
integrated graphics chipsets.
852GM, 855GM
, 865G and I915
integrated graphics chipsets.
You should say Y here if you use XFree86 3.3.6 or 4.x and want to
use GLX or DRI, or if you have any Intel integrated graphics
...
...
drivers/char/agp/amd64-agp.c
View file @
6e0418be
...
...
@@ -563,14 +563,25 @@ static struct pci_device_id agp_amd64_pci_table[] = {
.
subvendor
=
PCI_ANY_ID
,
.
subdevice
=
PCI_ANY_ID
,
},
/* VIA K8T890 */
{
.
class
=
(
PCI_CLASS_BRIDGE_HOST
<<
8
),
.
class_mask
=
~
0
,
.
vendor
=
PCI_VENDOR_ID_VIA
,
.
device
=
PCI_DEVICE_ID_VIA_
8380
_0
,
.
device
=
PCI_DEVICE_ID_VIA_
3238
_0
,
.
subvendor
=
PCI_ANY_ID
,
.
subdevice
=
PCI_ANY_ID
,
},
/* VIA K8T800/K8M800/K8N800 */
{
.
class
=
(
PCI_CLASS_BRIDGE_HOST
<<
8
),
.
class_mask
=
~
0
,
.
vendor
=
PCI_VENDOR_ID_VIA
,
.
device
=
PCI_DEVICE_ID_VIA_838X_1
,
.
subvendor
=
PCI_ANY_ID
,
.
subdevice
=
PCI_ANY_ID
,
},
/* NForce3 */
{
.
class
=
(
PCI_CLASS_BRIDGE_HOST
<<
8
),
...
...
drivers/char/agp/intel-agp.c
View file @
6e0418be
This diff is collapsed.
Click to expand it.
drivers/char/agp/sis-agp.c
View file @
6e0418be
...
...
@@ -144,6 +144,10 @@ struct agp_bridge_driver sis_driver = {
static
struct
agp_device_ids
sis_agp_device_ids
[]
__devinitdata
=
{
{
.
device_id
=
PCI_DEVICE_ID_SI_5591_AGP
,
.
chipset_name
=
"5591"
,
},
{
.
device_id
=
PCI_DEVICE_ID_SI_530
,
.
chipset_name
=
"530"
,
...
...
drivers/char/agp/via-agp.c
View file @
6e0418be
...
...
@@ -348,6 +348,21 @@ static struct agp_device_ids via_agp_device_ids[] __devinitdata =
.
device_id
=
PCI_DEVICE_ID_VIA_PX8X0_0
,
.
chipset_name
=
"PM800/PN800/PM880/PN880"
,
},
/* KT880 */
{
.
device_id
=
PCI_DEVICE_ID_VIA_3269_0
,
.
chipset_name
=
"KT880"
,
},
/* KTxxx/Px8xx */
{
.
device_id
=
PCI_DEVICE_ID_VIA_83_87XX_1
,
.
chipset_name
=
"VT83xx/VT87xx/KTxxx/Px8xx"
,
},
/* P4M800 */
{
.
device_id
=
PCI_DEVICE_ID_VIA_3296_0
,
.
chipset_name
=
"P4M800"
,
},
{
},
/* dummy final entry, always present */
};
...
...
@@ -457,7 +472,10 @@ static struct pci_device_id agp_via_pci_table[] = {
ID
(
PCI_DEVICE_ID_VIA_8378_0
),
ID
(
PCI_DEVICE_ID_VIA_PT880
),
ID
(
PCI_DEVICE_ID_VIA_8783_0
),
ID
(
PCI_DEVICE_ID_VIA_PX8X0_0
),
ID
(
PCI_DEVICE_ID_VIA_PX8X0_0
),
ID
(
PCI_DEVICE_ID_VIA_3269_0
),
ID
(
PCI_DEVICE_ID_VIA_83_87XX_1
),
ID
(
PCI_DEVICE_ID_VIA_3296_0
),
{
}
};
...
...
include/linux/pci_ids.h
View file @
6e0418be
...
...
@@ -1188,7 +1188,9 @@
#define PCI_VENDOR_ID_VIA 0x1106
#define PCI_DEVICE_ID_VIA_8763_0 0x0198
#define PCI_DEVICE_ID_VIA_8380_0 0x0204
#define PCI_DEVICE_ID_VIA_3238_0 0x0238
#define PCI_DEVICE_ID_VIA_PX8X0_0 0x0259
#define PCI_DEVICE_ID_VIA_3269_0 0x0269
#define PCI_DEVICE_ID_VIA_K8T800PRO_0 0x0282
#define PCI_DEVICE_ID_VIA_8363_0 0x0305
#define PCI_DEVICE_ID_VIA_8371_0 0x0391
...
...
@@ -1225,9 +1227,9 @@
#define PCI_DEVICE_ID_VIA_82C686_6 0x3068
#define PCI_DEVICE_ID_VIA_8233_0 0x3074
#define PCI_DEVICE_ID_VIA_8633_0 0x3091
#define PCI_DEVICE_ID_VIA_8367_0 0x3099
#define PCI_DEVICE_ID_VIA_8367_0 0x3099
#define PCI_DEVICE_ID_VIA_8653_0 0x3101
#define PCI_DEVICE_ID_VIA_8622 0x3102
#define PCI_DEVICE_ID_VIA_8622 0x3102
#define PCI_DEVICE_ID_VIA_8233C_0 0x3109
#define PCI_DEVICE_ID_VIA_8361 0x3112
#define PCI_DEVICE_ID_VIA_XM266 0x3116
...
...
@@ -1247,6 +1249,7 @@
#define PCI_DEVICE_ID_VIA_PT880 0x3258
#define PCI_DEVICE_ID_VIA_P4M400 0x3209
#define PCI_DEVICE_ID_VIA_8237 0x3227
#define PCI_DEVICE_ID_VIA_3296_0 0x0296
#define PCI_DEVICE_ID_VIA_86C100A 0x6100
#define PCI_DEVICE_ID_VIA_8231 0x8231
#define PCI_DEVICE_ID_VIA_8231_4 0x8235
...
...
@@ -2158,6 +2161,8 @@
#define PCI_DEVICE_ID_INTEL_82865_IG 0x2572
#define PCI_DEVICE_ID_INTEL_82875_HB 0x2578
#define PCI_DEVICE_ID_INTEL_82875_IG 0x257b
#define PCI_DEVICE_ID_INTEL_82915G_HB 0x2580
#define PCI_DEVICE_ID_INTEL_82915G_IG 0x2582
#define PCI_DEVICE_ID_INTEL_ICH6_0 0x2640
#define PCI_DEVICE_ID_INTEL_ICH6_1 0x2641
#define PCI_DEVICE_ID_INTEL_ICH6_2 0x2642
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment