summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAnssi Hannula <anssi@mageia.org>2012-04-05 02:51:42 +0000
committerAnssi Hannula <anssi@mageia.org>2012-04-05 02:51:42 +0000
commita56b8046ec367ce3a681d2a9163de970e01bae97 (patch)
tree37d412509fea9deb391f9561731a19ccedcae4f5
parentff6f7013238082f9b606144b2923feab3aeb931f (diff)
downloadldetect-lst-a56b8046ec367ce3a681d2a9163de970e01bae97.tar
ldetect-lst-a56b8046ec367ce3a681d2a9163de970e01bae97.tar.gz
ldetect-lst-a56b8046ec367ce3a681d2a9163de970e01bae97.tar.bz2
ldetect-lst-a56b8046ec367ce3a681d2a9163de970e01bae97.tar.xz
ldetect-lst-a56b8046ec367ce3a681d2a9163de970e01bae97.zip
Restructure AMD/ATI Cards+ entries for HD 2000 and newer, to separate
those that support usermode modesetting while adding the necessary FIRMWARE and DRIVER_NO_FIRMWARE entries as per mga bug #3466, and to disable any remaining radeonhd assignments.
-rw-r--r--NEWS6
-rwxr-xr-xconvert/merge2pcitable.pl50
-rw-r--r--lst/Cards+39
-rw-r--r--lst/pcitable599
4 files changed, 335 insertions, 359 deletions
diff --git a/NEWS b/NEWS
index e2c0633b..818c9a97 100644
--- a/NEWS
+++ b/NEWS
@@ -1,3 +1,4 @@
+
- disable nvidia96xx as third driver when nvidia cannot be used due to
missing SSE support
- refuse to set up nvidia if SSE support is not available
@@ -5,6 +6,11 @@
o add BENQ G2320HDB (mga#397)
- add new AMD ids from the proprietary driver
- add new NVIDIA ids from the proprietary driver
+- restructure AMD/ATI Cards+ entries for HD 2000 and newer
+ o separate those that support usermode modesetting
+ o add the necessary FIRMWARE and DRIVER_NO_FIRMWARE entries as per
+ mga bug #3466
+ o do not assign anything to the old unmaintained radeonhd driver
Version 0.1.299 - 10 December 2011
diff --git a/convert/merge2pcitable.pl b/convert/merge2pcitable.pl
index bb04875b..f7da9baa 100755
--- a/convert/merge2pcitable.pl
+++ b/convert/merge2pcitable.pl
@@ -10,11 +10,10 @@ qw(alsa ignore),
my ($force, @force_modules, $all, $keep_subids, $wildcards, $use_description);
# UPDATE ME WHEN UPDATING ../lst/Cards+:
-my $ati_driver = 'Card:ATI Radeon HD 2000 and later (radeon/fglrx)';
-my $ati_driver_rhd = 'Card:ATI Radeon HD 2000 and later (radeonhd/fglrx)';
-my $ati_driver_vesa= 'Card:ATI Radeon HD 2000 and later (vesa/fglrx)';
+my $ati_driver = 'Card:ATI Radeon HD 2000 to HD 6300 (radeon/fglrx)';
+my $ati_driver_fw = 'Card:ATI Radeon HD 6400 and later (radeon/fglrx)';
+my $ati_driver_vesa= 'Card:ATI Radeon HD 2000 and later without free driver (vesa/fglrx)';
my $ati_free_only = 'Card:ATI Radeon X1950 and earlier';
-my $ati_rhd_only = 'Card:ATI Radeon RV710 9592';
# also, be careful when merging as Cards+ and pcitable may contain card-specific
# cases due to bugs in the various drivers
@@ -42,23 +41,19 @@ if ($0 =~ /merge2pcitable/)
if ($format eq 'kernel_aliasmap' || $format eq 'fglrxko_pci_ids_h') {
foreach (keys %$d_pci) {
- if (member($d_pci->{$_}[0], ($ati_driver, $ati_driver_rhd, $ati_driver_vesa)) && !$d_in->{$_}) {
+ if (member($d_pci->{$_}[0], ($ati_driver, $ati_driver_fw, $ati_driver_vesa)) && !$d_in->{$_}) {
# support dropped, handle:
if ($d_pci->{$_}[0] eq $ati_driver) {
$d_pci->{$_}[0] = $ati_free_only;
} elsif ($d_pci->{$_}[0] eq $ati_driver_vesa) {
delete $d_pci->{$_};
- } elsif ($d_pci->{$_}[0] eq $ati_driver_rhd) {
- $d_pci->{$_}[0] = $ati_rhd_only
} else {
die 'not handled ' . $_;
}
- } elsif (member($d_pci->{$_}[0], ($ati_free_only, $ati_rhd_only)) && $d_in->{$_}) {
+ } elsif (member($d_pci->{$_}[0], ($ati_free_only)) && $d_in->{$_}) {
# support added for pre-existing entry, handle:
if ($d_pci->{$_}[0] eq $ati_free_only) {
$d_pci->{$_}[0] = $ati_driver;
- } elsif ($d_pci->{$_}[0] eq $ati_rhd_only) {
- $d_pci->{$_}[0] = $ati_driver_rhd;
} else {
die 'not handled ' . $_;
}
@@ -68,44 +63,25 @@ if ($0 =~ /merge2pcitable/)
# Here we hack around so that drivers get used in order radeon, radeonhd, vesa:
if ($format eq 'ati_pciids_csv') {
foreach (keys %$d_pci) {
- if (member($d_pci->{$_}[0], ($ati_driver, $ati_free_only)) && !$d_in->{$_}) {
+ if (member($d_pci->{$_}[0], ($ati_driver, $ati_driver_fw, $ati_free_only)) && !$d_in->{$_}) {
# support dropped, handle:
- if ($d_pci->{$_}[0] eq $ati_driver) {
+ if (member($d_pci->{$_}[0], ($ati_driver, $ati_driver_fw))) {
$d_pci->{$_}[0] = $ati_driver_vesa;
} elsif ($d_pci->{$_}[0] eq $ati_free_only) {
delete $d_pci->{$_};
} else {
die 'not handled ' . $_;
}
- } elsif (member($d_pci->{$_}[0], ($ati_driver_rhd, $ati_driver_vesa, $ati_rhd_only)) && $d_in->{$_}) {
+ } elsif (member($d_pci->{$_}[0], ($ati_driver_vesa)) && $d_in->{$_}) {
# support added for pre-existing entry, handle:
- if (member($d_pci->{$_}[0], ($ati_driver_rhd, $ati_driver_vesa))) {
- $d_pci->{$_}[0] = $ati_driver;
- } elsif ($d_pci->{$_}[0] eq $ati_rhd_only) {
- $d_pci->{$_}[0] = $ati_free_only;
+ if (member($d_pci->{$_}[0], ($ati_driver_vesa))) {
+ $d_pci->{$_}[0] = (/^....(31..|3e..|4...|5...|7...|68..|94..|95..|961.|971.|98..)/) ? $ati_driver : $ati_driver_fw;
} else {
die 'not handled ' . $_;
}
}
}
}
- if ($format eq 'rhd_id_c') {
- foreach (keys %$d_pci) {
- if (member($d_pci->{$_}[0], ($ati_driver_rhd, $ati_rhd_only)) && !$d_in->{$_}) {
- # support dropped, handle:
- if ($d_pci->{$_}[0] eq $ati_driver_rhd) {
- $d_pci->{$_}[0] = $ati_driver_vesa;
- } elsif ($d_pci->{$_}[0] eq $ati_rhd_only) {
- delete $d_pci->{$_};
- } else {
- die 'not handled ' . $_;
- }
- } elsif ($d_pci->{$_}[0] eq $ati_driver_vesa && $d_in->{$_}) {
- # support added for pre-existing entry, handle:
- $d_pci->{$_}[0] = $ati_driver_rhd;
- }
- }
- }
merge($d_pci, $d_in, $classes);
exit 1 if our $error;
@@ -202,7 +178,7 @@ sub read_kernel_aliasmap {
next if !/alias pci.* fglrx/;
if (/alias pci:v0000(....)d0000(....)sv/) {
my ($id1, $id2) = (lc($1), lc($2));
- $drivers{ join '', map { /(....)$/ } $id1, $id2, '0xffff', '0xffff' } = [ $ati_driver ];
+ $drivers{ join '', map { /(....)$/ } $id1, $id2, '0xffff', '0xffff' } = [ $ati_driver_vesa ];
}
}
\%drivers;
@@ -451,7 +427,7 @@ sub read_rhd_id_c {
foreach (cat_($f)) {
chomp;
my ($id, $description) = /^\s+RHD_DEVICE_MATCH\(\s*0x(....).*\/\* (.*)\*\// or next;
- $drivers{"1002" . lc($id) . "ffffffff"} = [ $ati_rhd_only, $description ];
+ $drivers{"1002" . lc($id) . "ffffffff"} = [ "Card:RADEONHD_FIXME", $description ];
}
\%drivers;
}
@@ -462,7 +438,7 @@ sub read_ati_pciids_csv {
foreach (cat_($f)) {
chomp;
my ($id, $description) = /^"0x(....)",.*,(?:"([^,]*)")?$/ or next;
- $drivers{"1002" . lc($id) . "ffffffff"} = [ $ati_driver, $description ];
+ $drivers{"1002" . lc($id) . "ffffffff"} = [ $ati_free_only, $description ];
}
\%drivers;
}
diff --git a/lst/Cards+ b/lst/Cards+
index 55504da0..4970dea6 100644
--- a/lst/Cards+
+++ b/lst/Cards+
@@ -139,6 +139,7 @@ FB_TVOUT
# update name as support changes
NAME ATI Radeon X1950 and earlier
DRIVER ati
+FIRMWARE radeon-firmware
DRI_GLX
# FireGL cards not supported by proprietary driver, but supported by ati
@@ -146,48 +147,42 @@ DRI_GLX
NAME ATI r300/r400/r500 based FireGL
SEE ATI Radeon X1950 and earlier
-# Radeon card not supported by proprietary driver, nor ati, but supported
-# by radeonhd
-NAME ATI Radeon RV710 9592
-DRIVER radeonhd
-DRI_GLX
-
# FirePro card not supported by proprietary driver, but supported by ati
NAME ATI FirePro M5750
SEE ATI Radeon X1950 and earlier
# Radeon cards supported by proprietary driver and free 'radeon'
# driver: update name as support changes
-NAME ATI Radeon HD 2000 and later (radeon/fglrx)
+# PALM and older - firmware not mandatory (mga #3466)
+NAME ATI Radeon HD 2000 to HD 6300 (radeon/fglrx)
DRIVER ati
+FIRMWARE radeon-firmware
DRI_GLX
DRIVER2 fglrx
# FireGL cards supported by proprietary driver and free 'radeon'
# driver: update name as support changes
NAME ATI r600 based FireGL
-SEE ATI Radeon HD 2000 and later (radeon/fglrx)
+SEE ATI Radeon HD 2000 to HD 6300 (radeon/fglrx)
# FirePro cards as above:
NAME ATI FirePro (radeon/fglrx)
-SEE ATI Radeon HD 2000 and later (radeon/fglrx)
-
-# Radeon cards supported by proprietary driver and free 'radeonhd'
-# driver, but not free 'radeon' driver.
-NAME ATI Radeon HD 3850 X2
-DRIVER radeonhd
-DRI_GLX
-DRIVER2 fglrx
+SEE ATI Radeon HD 2000 to HD 6300 (radeon/fglrx)
-NAME ATI FirePro V8700 Duo
-SEE ATI Radeon HD 3850 X2
-
-NAME ATI Radeon HD 2000 and later (radeonhd/fglrx)
-DRIVER radeonhd
+# Radeon cards supported by proprietary driver and free 'radeon'
+# driver: update name as support changes
+# SUMO and later - firmware mandatory for 'ati' (mga #3466)
+# TODO: s/ATI/AMD/, but update Xconfig/card.pm to still show it among
+# the other ATI entries, maybe under 'AMD / ATI' header or something
+NAME ATI Radeon HD 6400 and later (radeon/fglrx)
+DRIVER ati
+FIRMWARE radeon-firmware
+DRIVER_NO_FIRMWARE vesa
DRI_GLX
DRIVER2 fglrx
-NAME ATI Radeon HD 2000 and later (vesa/fglrx)
+# Radeon cards supported by proprietary driver but not by free driver
+NAME ATI Radeon HD 2000 and later without free driver (vesa/fglrx)
DRIVER vesa
DRIVER2 fglrx
diff --git a/lst/pcitable b/lst/pcitable
index 77ea9174..901f5ba8 100644
--- a/lst/pcitable
+++ b/lst/pcitable
@@ -257,153 +257,153 @@
0x1002 0x5e4c "Card:ATI Radeon X1950 and earlier"
0x1002 0x5e4d "Card:ATI Radeon X1950 and earlier"
0x1002 0x5e4f "Card:ATI Radeon X1950 and earlier"
-0x1002 0x6700 "Card:ATI Radeon HD 2000 and later (radeon/fglrx)"
-0x1002 0x6701 "Card:ATI Radeon HD 2000 and later (radeon/fglrx)"
-0x1002 0x6702 "Card:ATI Radeon HD 2000 and later (radeon/fglrx)"
-0x1002 0x6703 "Card:ATI Radeon HD 2000 and later (radeon/fglrx)"
-0x1002 0x6704 "Card:ATI Radeon HD 2000 and later (radeon/fglrx)"
-0x1002 0x6705 "Card:ATI Radeon HD 2000 and later (radeon/fglrx)"
-0x1002 0x6706 "Card:ATI Radeon HD 2000 and later (radeon/fglrx)"
-0x1002 0x6707 "Card:ATI Radeon HD 2000 and later (radeon/fglrx)"
-0x1002 0x6708 "Card:ATI Radeon HD 2000 and later (radeon/fglrx)"
-0x1002 0x6709 "Card:ATI Radeon HD 2000 and later (radeon/fglrx)"
-0x1002 0x6718 "Card:ATI Radeon HD 2000 and later (radeon/fglrx)"
-0x1002 0x6719 "Card:ATI Radeon HD 2000 and later (radeon/fglrx)"
-0x1002 0x671c "Card:ATI Radeon HD 2000 and later (radeon/fglrx)"
-0x1002 0x671d "Card:ATI Radeon HD 2000 and later (radeon/fglrx)"
-0x1002 0x671f "Card:ATI Radeon HD 2000 and later (radeon/fglrx)"
-0x1002 0x6720 "Card:ATI Radeon HD 2000 and later (radeon/fglrx)"
-0x1002 0x6721 "Card:ATI Radeon HD 2000 and later (radeon/fglrx)"
-0x1002 0x6722 "Card:ATI Radeon HD 2000 and later (radeon/fglrx)"
-0x1002 0x6723 "Card:ATI Radeon HD 2000 and later (radeon/fglrx)"
-0x1002 0x6724 "Card:ATI Radeon HD 2000 and later (radeon/fglrx)"
-0x1002 0x6725 "Card:ATI Radeon HD 2000 and later (radeon/fglrx)"
-0x1002 0x6726 "Card:ATI Radeon HD 2000 and later (radeon/fglrx)"
-0x1002 0x6727 "Card:ATI Radeon HD 2000 and later (radeon/fglrx)"
-0x1002 0x6728 "Card:ATI Radeon HD 2000 and later (radeon/fglrx)"
-0x1002 0x6729 "Card:ATI Radeon HD 2000 and later (radeon/fglrx)"
-0x1002 0x6738 "Card:ATI Radeon HD 2000 and later (radeon/fglrx)"
-0x1002 0x6739 "Card:ATI Radeon HD 2000 and later (radeon/fglrx)"
-0x1002 0x673e "Card:ATI Radeon HD 2000 and later (radeon/fglrx)"
-0x1002 0x6740 "Card:ATI Radeon HD 2000 and later (radeon/fglrx)"
-0x1002 0x6741 "Card:ATI Radeon HD 2000 and later (radeon/fglrx)"
-0x1002 0x6742 "Card:ATI Radeon HD 2000 and later (radeon/fglrx)"
-0x1002 0x6743 "Card:ATI Radeon HD 2000 and later (radeon/fglrx)"
-0x1002 0x6744 "Card:ATI Radeon HD 2000 and later (radeon/fglrx)"
-0x1002 0x6745 "Card:ATI Radeon HD 2000 and later (radeon/fglrx)"
-0x1002 0x6746 "Card:ATI Radeon HD 2000 and later (radeon/fglrx)"
-0x1002 0x6747 "Card:ATI Radeon HD 2000 and later (radeon/fglrx)"
-0x1002 0x6748 "Card:ATI Radeon HD 2000 and later (radeon/fglrx)"
-0x1002 0x6749 "Card:ATI Radeon HD 2000 and later (radeon/fglrx)"
-0x1002 0x674a "Card:ATI Radeon HD 2000 and later (vesa/fglrx)"
-0x1002 0x6750 "Card:ATI Radeon HD 2000 and later (radeon/fglrx)"
-0x1002 0x6751 "Card:ATI Radeon HD 2000 and later (vesa/fglrx)"
-0x1002 0x6758 "Card:ATI Radeon HD 2000 and later (radeon/fglrx)"
-0x1002 0x6759 "Card:ATI Radeon HD 2000 and later (radeon/fglrx)"
-0x1002 0x675b "Card:ATI Radeon HD 2000 and later (vesa/fglrx)"
-0x1002 0x675d "Card:ATI Radeon HD 2000 and later (vesa/fglrx)"
-0x1002 0x675f "Card:ATI Radeon HD 2000 and later (radeon/fglrx)"
-0x1002 0x6760 "Card:ATI Radeon HD 2000 and later (radeon/fglrx)"
-0x1002 0x6761 "Card:ATI Radeon HD 2000 and later (radeon/fglrx)"
-0x1002 0x6762 "Card:ATI Radeon HD 2000 and later (radeon/fglrx)"
-0x1002 0x6763 "Card:ATI Radeon HD 2000 and later (radeon/fglrx)"
-0x1002 0x6764 "Card:ATI Radeon HD 2000 and later (radeon/fglrx)"
-0x1002 0x6765 "Card:ATI Radeon HD 2000 and later (radeon/fglrx)"
-0x1002 0x6766 "Card:ATI Radeon HD 2000 and later (radeon/fglrx)"
-0x1002 0x6767 "Card:ATI Radeon HD 2000 and later (radeon/fglrx)"
-0x1002 0x6768 "Card:ATI Radeon HD 2000 and later (radeon/fglrx)"
-0x1002 0x6770 "Card:ATI Radeon HD 2000 and later (radeon/fglrx)"
-0x1002 0x6772 "Card:ATI Radeon HD 2000 and later (vesa/fglrx)"
-0x1002 0x6778 "Card:ATI Radeon HD 2000 and later (radeon/fglrx)"
-0x1002 0x6779 "Card:ATI Radeon HD 2000 and later (radeon/fglrx)"
-0x1002 0x677b "Card:ATI Radeon HD 2000 and later (vesa/fglrx)"
-0x1002 0x6780 "Card:ATI Radeon HD 2000 and later (vesa/fglrx)"
-0x1002 0x6784 "Card:ATI Radeon HD 2000 and later (vesa/fglrx)"
-0x1002 0x6788 "Card:ATI Radeon HD 2000 and later (vesa/fglrx)"
-0x1002 0x678a "Card:ATI Radeon HD 2000 and later (vesa/fglrx)"
-0x1002 0x6798 "Card:ATI Radeon HD 2000 and later (vesa/fglrx)"
-0x1002 0x6799 "Card:ATI Radeon HD 2000 and later (vesa/fglrx)"
-0x1002 0x679a "Card:ATI Radeon HD 2000 and later (vesa/fglrx)"
-0x1002 0x6800 "Card:ATI Radeon HD 2000 and later (vesa/fglrx)"
-0x1002 0x6801 "Card:ATI Radeon HD 2000 and later (vesa/fglrx)"
-0x1002 0x6808 "Card:ATI Radeon HD 2000 and later (vesa/fglrx)"
-0x1002 0x6809 "Card:ATI Radeon HD 2000 and later (vesa/fglrx)"
-0x1002 0x6818 "Card:ATI Radeon HD 2000 and later (vesa/fglrx)"
-0x1002 0x6819 "Card:ATI Radeon HD 2000 and later (vesa/fglrx)"
-0x1002 0x6820 "Card:ATI Radeon HD 2000 and later (vesa/fglrx)"
-0x1002 0x6821 "Card:ATI Radeon HD 2000 and later (vesa/fglrx)"
-0x1002 0x6823 "Card:ATI Radeon HD 2000 and later (vesa/fglrx)"
-0x1002 0x6824 "Card:ATI Radeon HD 2000 and later (vesa/fglrx)"
-0x1002 0x6825 "Card:ATI Radeon HD 2000 and later (vesa/fglrx)"
-0x1002 0x6826 "Card:ATI Radeon HD 2000 and later (vesa/fglrx)"
-0x1002 0x6827 "Card:ATI Radeon HD 2000 and later (vesa/fglrx)"
-0x1002 0x6828 "Card:ATI Radeon HD 2000 and later (vesa/fglrx)"
-0x1002 0x682d "Card:ATI Radeon HD 2000 and later (vesa/fglrx)"
-0x1002 0x682f "Card:ATI Radeon HD 2000 and later (vesa/fglrx)"
-0x1002 0x6830 "Card:ATI Radeon HD 2000 and later (vesa/fglrx)"
-0x1002 0x6831 "Card:ATI Radeon HD 2000 and later (vesa/fglrx)"
-0x1002 0x6838 "Card:ATI Radeon HD 2000 and later (vesa/fglrx)"
-0x1002 0x6839 "Card:ATI Radeon HD 2000 and later (vesa/fglrx)"
-0x1002 0x683b "Card:ATI Radeon HD 2000 and later (vesa/fglrx)"
-0x1002 0x683d "Card:ATI Radeon HD 2000 and later (vesa/fglrx)"
-0x1002 0x683f "Card:ATI Radeon HD 2000 and later (vesa/fglrx)"
-0x1002 0x6840 "Card:ATI Radeon HD 2000 and later (vesa/fglrx)"
-0x1002 0x6841 "Card:ATI Radeon HD 2000 and later (vesa/fglrx)"
-0x1002 0x6842 "Card:ATI Radeon HD 2000 and later (vesa/fglrx)"
-0x1002 0x6843 "Card:ATI Radeon HD 2000 and later (vesa/fglrx)"
-0x1002 0x6849 "Card:ATI Radeon HD 2000 and later (vesa/fglrx)"
-0x1002 0x684c "Card:ATI Radeon HD 2000 and later (vesa/fglrx)"
-0x1002 0x6850 "Card:ATI Radeon HD 2000 and later (vesa/fglrx)"
-0x1002 0x6858 "Card:ATI Radeon HD 2000 and later (vesa/fglrx)"
-0x1002 0x6859 "Card:ATI Radeon HD 2000 and later (vesa/fglrx)"
-0x1002 0x6880 "Card:ATI Radeon HD 2000 and later (radeon/fglrx)"
-0x1002 0x6888 "Card:ATI Radeon HD 2000 and later (radeon/fglrx)"
-0x1002 0x6889 "Card:ATI Radeon HD 2000 and later (radeon/fglrx)"
-0x1002 0x688a "Card:ATI Radeon HD 2000 and later (radeon/fglrx)"
-0x1002 0x688c "Card:ATI Radeon HD 2000 and later (radeon/fglrx)"
-0x1002 0x688d "Card:ATI Radeon HD 2000 and later (radeon/fglrx)"
-0x1002 0x6890 "Card:ATI Radeon HD 2000 and later (vesa/fglrx)"
-0x1002 0x6898 "Card:ATI Radeon HD 2000 and later (radeon/fglrx)"
-0x1002 0x6899 "Card:ATI Radeon HD 2000 and later (radeon/fglrx)"
-0x1002 0x689b "Card:ATI Radeon HD 2000 and later (radeon/fglrx)"
-0x1002 0x689c "Card:ATI Radeon HD 2000 and later (radeon/fglrx)"
-0x1002 0x689d "Card:ATI Radeon HD 2000 and later (radeon/fglrx)"
-0x1002 0x689e "Card:ATI Radeon HD 2000 and later (radeon/fglrx)"
-0x1002 0x68a0 "Card:ATI Radeon HD 2000 and later (radeon/fglrx)"
-0x1002 0x68a1 "Card:ATI Radeon HD 2000 and later (radeon/fglrx)"
-0x1002 0x68a8 "Card:ATI Radeon HD 2000 and later (radeon/fglrx)"
-0x1002 0x68a9 "Card:ATI Radeon HD 2000 and later (radeon/fglrx)"
-0x1002 0x68b0 "Card:ATI Radeon HD 2000 and later (radeon/fglrx)"
-0x1002 0x68b1 "Card:ATI Radeon HD 2000 and later (vesa/fglrx)"
-0x1002 0x68b8 "Card:ATI Radeon HD 2000 and later (radeon/fglrx)"
-0x1002 0x68b9 "Card:ATI Radeon HD 2000 and later (radeon/fglrx)"
-0x1002 0x68ba "Card:ATI Radeon HD 2000 and later (radeon/fglrx)"
-0x1002 0x68be "Card:ATI Radeon HD 2000 and later (radeon/fglrx)"
-0x1002 0x68bf "Card:ATI Radeon HD 2000 and later (radeon/fglrx)"
-0x1002 0x68c0 "Card:ATI Radeon HD 2000 and later (radeon/fglrx)"
-0x1002 0x68c1 "Card:ATI Radeon HD 2000 and later (radeon/fglrx)"
-0x1002 0x68c7 "Card:ATI Radeon HD 2000 and later (radeon/fglrx)"
-0x1002 0x68c8 "Card:ATI Radeon HD 2000 and later (radeon/fglrx)"
-0x1002 0x68c9 "Card:ATI Radeon HD 2000 and later (radeon/fglrx)"
-0x1002 0x68d0 "Card:ATI Radeon HD 2000 and later (vesa/fglrx)"
-0x1002 0x68d1 "Card:ATI Radeon HD 2000 and later (vesa/fglrx)"
-0x1002 0x68d8 "Card:ATI Radeon HD 2000 and later (radeon/fglrx)"
-0x1002 0x68d9 "Card:ATI Radeon HD 2000 and later (radeon/fglrx)"
-0x1002 0x68da "Card:ATI Radeon HD 2000 and later (radeon/fglrx)"
-0x1002 0x68de "Card:ATI Radeon HD 2000 and later (radeon/fglrx)"
-0x1002 0x68e0 "Card:ATI Radeon HD 2000 and later (radeon/fglrx)"
-0x1002 0x68e1 "Card:ATI Radeon HD 2000 and later (radeon/fglrx)"
-0x1002 0x68e4 "Card:ATI Radeon HD 2000 and later (radeon/fglrx)"
-0x1002 0x68e5 "Card:ATI Radeon HD 2000 and later (radeon/fglrx)"
-0x1002 0x68e8 "Card:ATI Radeon HD 2000 and later (radeon/fglrx)"
-0x1002 0x68e9 "Card:ATI Radeon HD 2000 and later (radeon/fglrx)"
-0x1002 0x68f0 "Card:ATI Radeon HD 2000 and later (vesa/fglrx)"
-0x1002 0x68f1 "Card:ATI Radeon HD 2000 and later (radeon/fglrx)"
-0x1002 0x68f2 "Card:ATI Radeon HD 2000 and later (radeon/fglrx)"
-0x1002 0x68f8 "Card:ATI Radeon HD 2000 and later (radeon/fglrx)"
-0x1002 0x68f9 "Card:ATI Radeon HD 2000 and later (radeon/fglrx)"
-0x1002 0x68fa "Card:ATI Radeon HD 2000 and later (vesa/fglrx)"
-0x1002 0x68fe "Card:ATI Radeon HD 2000 and later (radeon/fglrx)"
+0x1002 0x6700 "Card:ATI Radeon HD 6400 and later (radeon/fglrx)"
+0x1002 0x6701 "Card:ATI Radeon HD 6400 and later (radeon/fglrx)"
+0x1002 0x6702 "Card:ATI Radeon HD 6400 and later (radeon/fglrx)"
+0x1002 0x6703 "Card:ATI Radeon HD 6400 and later (radeon/fglrx)"
+0x1002 0x6704 "Card:ATI Radeon HD 6400 and later (radeon/fglrx)"
+0x1002 0x6705 "Card:ATI Radeon HD 6400 and later (radeon/fglrx)"
+0x1002 0x6706 "Card:ATI Radeon HD 6400 and later (radeon/fglrx)"
+0x1002 0x6707 "Card:ATI Radeon HD 6400 and later (radeon/fglrx)"
+0x1002 0x6708 "Card:ATI Radeon HD 6400 and later (radeon/fglrx)"
+0x1002 0x6709 "Card:ATI Radeon HD 6400 and later (radeon/fglrx)"
+0x1002 0x6718 "Card:ATI Radeon HD 6400 and later (radeon/fglrx)"
+0x1002 0x6719 "Card:ATI Radeon HD 6400 and later (radeon/fglrx)"
+0x1002 0x671c "Card:ATI Radeon HD 6400 and later (radeon/fglrx)"
+0x1002 0x671d "Card:ATI Radeon HD 6400 and later (radeon/fglrx)"
+0x1002 0x671f "Card:ATI Radeon HD 6400 and later (radeon/fglrx)"
+0x1002 0x6720 "Card:ATI Radeon HD 6400 and later (radeon/fglrx)"
+0x1002 0x6721 "Card:ATI Radeon HD 6400 and later (radeon/fglrx)"
+0x1002 0x6722 "Card:ATI Radeon HD 6400 and later (radeon/fglrx)"
+0x1002 0x6723 "Card:ATI Radeon HD 6400 and later (radeon/fglrx)"
+0x1002 0x6724 "Card:ATI Radeon HD 6400 and later (radeon/fglrx)"
+0x1002 0x6725 "Card:ATI Radeon HD 6400 and later (radeon/fglrx)"
+0x1002 0x6726 "Card:ATI Radeon HD 6400 and later (radeon/fglrx)"
+0x1002 0x6727 "Card:ATI Radeon HD 6400 and later (radeon/fglrx)"
+0x1002 0x6728 "Card:ATI Radeon HD 6400 and later (radeon/fglrx)"
+0x1002 0x6729 "Card:ATI Radeon HD 6400 and later (radeon/fglrx)"
+0x1002 0x6738 "Card:ATI Radeon HD 6400 and later (radeon/fglrx)"
+0x1002 0x6739 "Card:ATI Radeon HD 6400 and later (radeon/fglrx)"
+0x1002 0x673e "Card:ATI Radeon HD 6400 and later (radeon/fglrx)"
+0x1002 0x6740 "Card:ATI Radeon HD 6400 and later (radeon/fglrx)"
+0x1002 0x6741 "Card:ATI Radeon HD 6400 and later (radeon/fglrx)"
+0x1002 0x6742 "Card:ATI Radeon HD 6400 and later (radeon/fglrx)"
+0x1002 0x6743 "Card:ATI Radeon HD 6400 and later (radeon/fglrx)"
+0x1002 0x6744 "Card:ATI Radeon HD 6400 and later (radeon/fglrx)"
+0x1002 0x6745 "Card:ATI Radeon HD 6400 and later (radeon/fglrx)"
+0x1002 0x6746 "Card:ATI Radeon HD 6400 and later (radeon/fglrx)"
+0x1002 0x6747 "Card:ATI Radeon HD 6400 and later (radeon/fglrx)"
+0x1002 0x6748 "Card:ATI Radeon HD 6400 and later (radeon/fglrx)"
+0x1002 0x6749 "Card:ATI Radeon HD 6400 and later (radeon/fglrx)"
+0x1002 0x674a "Card:ATI Radeon HD 2000 and later without free driver (vesa/fglrx)"
+0x1002 0x6750 "Card:ATI Radeon HD 6400 and later (radeon/fglrx)"
+0x1002 0x6751 "Card:ATI Radeon HD 2000 and later without free driver (vesa/fglrx)"
+0x1002 0x6758 "Card:ATI Radeon HD 6400 and later (radeon/fglrx)"
+0x1002 0x6759 "Card:ATI Radeon HD 6400 and later (radeon/fglrx)"
+0x1002 0x675b "Card:ATI Radeon HD 2000 and later without free driver (vesa/fglrx)"
+0x1002 0x675d "Card:ATI Radeon HD 2000 and later without free driver (vesa/fglrx)"
+0x1002 0x675f "Card:ATI Radeon HD 6400 and later (radeon/fglrx)"
+0x1002 0x6760 "Card:ATI Radeon HD 6400 and later (radeon/fglrx)"
+0x1002 0x6761 "Card:ATI Radeon HD 6400 and later (radeon/fglrx)"
+0x1002 0x6762 "Card:ATI Radeon HD 6400 and later (radeon/fglrx)"
+0x1002 0x6763 "Card:ATI Radeon HD 6400 and later (radeon/fglrx)"
+0x1002 0x6764 "Card:ATI Radeon HD 6400 and later (radeon/fglrx)"
+0x1002 0x6765 "Card:ATI Radeon HD 6400 and later (radeon/fglrx)"
+0x1002 0x6766 "Card:ATI Radeon HD 6400 and later (radeon/fglrx)"
+0x1002 0x6767 "Card:ATI Radeon HD 6400 and later (radeon/fglrx)"
+0x1002 0x6768 "Card:ATI Radeon HD 6400 and later (radeon/fglrx)"
+0x1002 0x6770 "Card:ATI Radeon HD 6400 and later (radeon/fglrx)"
+0x1002 0x6772 "Card:ATI Radeon HD 2000 and later without free driver (vesa/fglrx)"
+0x1002 0x6778 "Card:ATI Radeon HD 6400 and later (radeon/fglrx)"
+0x1002 0x6779 "Card:ATI Radeon HD 6400 and later (radeon/fglrx)"
+0x1002 0x677b "Card:ATI Radeon HD 2000 and later without free driver (vesa/fglrx)"
+0x1002 0x6780 "Card:ATI Radeon HD 2000 and later without free driver (vesa/fglrx)"
+0x1002 0x6784 "Card:ATI Radeon HD 2000 and later without free driver (vesa/fglrx)"
+0x1002 0x6788 "Card:ATI Radeon HD 2000 and later without free driver (vesa/fglrx)"
+0x1002 0x678a "Card:ATI Radeon HD 2000 and later without free driver (vesa/fglrx)"
+0x1002 0x6798 "Card:ATI Radeon HD 2000 and later without free driver (vesa/fglrx)"
+0x1002 0x6799 "Card:ATI Radeon HD 2000 and later without free driver (vesa/fglrx)"
+0x1002 0x679a "Card:ATI Radeon HD 2000 and later without free driver (vesa/fglrx)"
+0x1002 0x6800 "Card:ATI Radeon HD 2000 and later without free driver (vesa/fglrx)"
+0x1002 0x6801 "Card:ATI Radeon HD 2000 and later without free driver (vesa/fglrx)"
+0x1002 0x6808 "Card:ATI Radeon HD 2000 and later without free driver (vesa/fglrx)"
+0x1002 0x6809 "Card:ATI Radeon HD 2000 and later without free driver (vesa/fglrx)"
+0x1002 0x6818 "Card:ATI Radeon HD 2000 and later without free driver (vesa/fglrx)"
+0x1002 0x6819 "Card:ATI Radeon HD 2000 and later without free driver (vesa/fglrx)"
+0x1002 0x6820 "Card:ATI Radeon HD 2000 and later without free driver (vesa/fglrx)"
+0x1002 0x6821 "Card:ATI Radeon HD 2000 and later without free driver (vesa/fglrx)"
+0x1002 0x6823 "Card:ATI Radeon HD 2000 and later without free driver (vesa/fglrx)"
+0x1002 0x6824 "Card:ATI Radeon HD 2000 and later without free driver (vesa/fglrx)"
+0x1002 0x6825 "Card:ATI Radeon HD 2000 and later without free driver (vesa/fglrx)"
+0x1002 0x6826 "Card:ATI Radeon HD 2000 and later without free driver (vesa/fglrx)"
+0x1002 0x6827 "Card:ATI Radeon HD 2000 and later without free driver (vesa/fglrx)"
+0x1002 0x6828 "Card:ATI Radeon HD 2000 and later without free driver (vesa/fglrx)"
+0x1002 0x682d "Card:ATI Radeon HD 2000 and later without free driver (vesa/fglrx)"
+0x1002 0x682f "Card:ATI Radeon HD 2000 and later without free driver (vesa/fglrx)"
+0x1002 0x6830 "Card:ATI Radeon HD 2000 and later without free driver (vesa/fglrx)"
+0x1002 0x6831 "Card:ATI Radeon HD 2000 and later without free driver (vesa/fglrx)"
+0x1002 0x6838 "Card:ATI Radeon HD 2000 and later without free driver (vesa/fglrx)"
+0x1002 0x6839 "Card:ATI Radeon HD 2000 and later without free driver (vesa/fglrx)"
+0x1002 0x683b "Card:ATI Radeon HD 2000 and later without free driver (vesa/fglrx)"
+0x1002 0x683d "Card:ATI Radeon HD 2000 and later without free driver (vesa/fglrx)"
+0x1002 0x683f "Card:ATI Radeon HD 2000 and later without free driver (vesa/fglrx)"
+0x1002 0x6840 "Card:ATI Radeon HD 2000 and later without free driver (vesa/fglrx)"
+0x1002 0x6841 "Card:ATI Radeon HD 2000 and later without free driver (vesa/fglrx)"
+0x1002 0x6842 "Card:ATI Radeon HD 2000 and later without free driver (vesa/fglrx)"
+0x1002 0x6843 "Card:ATI Radeon HD 2000 and later without free driver (vesa/fglrx)"
+0x1002 0x6849 "Card:ATI Radeon HD 2000 and later without free driver (vesa/fglrx)"
+0x1002 0x684c "Card:ATI Radeon HD 2000 and later without free driver (vesa/fglrx)"
+0x1002 0x6850 "Card:ATI Radeon HD 2000 and later without free driver (vesa/fglrx)"
+0x1002 0x6858 "Card:ATI Radeon HD 2000 and later without free driver (vesa/fglrx)"
+0x1002 0x6859 "Card:ATI Radeon HD 2000 and later without free driver (vesa/fglrx)"
+0x1002 0x6880 "Card:ATI Radeon HD 2000 to HD 6300 (radeon/fglrx)"
+0x1002 0x6888 "Card:ATI Radeon HD 2000 to HD 6300 (radeon/fglrx)"
+0x1002 0x6889 "Card:ATI Radeon HD 2000 to HD 6300 (radeon/fglrx)"
+0x1002 0x688a "Card:ATI Radeon HD 2000 to HD 6300 (radeon/fglrx)"
+0x1002 0x688c "Card:ATI Radeon HD 2000 to HD 6300 (radeon/fglrx)"
+0x1002 0x688d "Card:ATI Radeon HD 2000 to HD 6300 (radeon/fglrx)"
+0x1002 0x6890 "Card:ATI Radeon HD 2000 and later without free driver (vesa/fglrx)"
+0x1002 0x6898 "Card:ATI Radeon HD 2000 to HD 6300 (radeon/fglrx)"
+0x1002 0x6899 "Card:ATI Radeon HD 2000 to HD 6300 (radeon/fglrx)"
+0x1002 0x689b "Card:ATI Radeon HD 2000 to HD 6300 (radeon/fglrx)"
+0x1002 0x689c "Card:ATI Radeon HD 2000 to HD 6300 (radeon/fglrx)"
+0x1002 0x689d "Card:ATI Radeon HD 2000 to HD 6300 (radeon/fglrx)"
+0x1002 0x689e "Card:ATI Radeon HD 2000 to HD 6300 (radeon/fglrx)"
+0x1002 0x68a0 "Card:ATI Radeon HD 2000 to HD 6300 (radeon/fglrx)"
+0x1002 0x68a1 "Card:ATI Radeon HD 2000 to HD 6300 (radeon/fglrx)"
+0x1002 0x68a8 "Card:ATI Radeon HD 2000 to HD 6300 (radeon/fglrx)"
+0x1002 0x68a9 "Card:ATI Radeon HD 2000 to HD 6300 (radeon/fglrx)"
+0x1002 0x68b0 "Card:ATI Radeon HD 2000 to HD 6300 (radeon/fglrx)"
+0x1002 0x68b1 "Card:ATI Radeon HD 2000 and later without free driver (vesa/fglrx)"
+0x1002 0x68b8 "Card:ATI Radeon HD 2000 to HD 6300 (radeon/fglrx)"
+0x1002 0x68b9 "Card:ATI Radeon HD 2000 to HD 6300 (radeon/fglrx)"
+0x1002 0x68ba "Card:ATI Radeon HD 2000 to HD 6300 (radeon/fglrx)"
+0x1002 0x68be "Card:ATI Radeon HD 2000 to HD 6300 (radeon/fglrx)"
+0x1002 0x68bf "Card:ATI Radeon HD 2000 to HD 6300 (radeon/fglrx)"
+0x1002 0x68c0 "Card:ATI Radeon HD 2000 to HD 6300 (radeon/fglrx)"
+0x1002 0x68c1 "Card:ATI Radeon HD 2000 to HD 6300 (radeon/fglrx)"
+0x1002 0x68c7 "Card:ATI Radeon HD 2000 to HD 6300 (radeon/fglrx)"
+0x1002 0x68c8 "Card:ATI Radeon HD 2000 to HD 6300 (radeon/fglrx)"
+0x1002 0x68c9 "Card:ATI Radeon HD 2000 to HD 6300 (radeon/fglrx)"
+0x1002 0x68d0 "Card:ATI Radeon HD 2000 and later without free driver (vesa/fglrx)"
+0x1002 0x68d1 "Card:ATI Radeon HD 2000 and later without free driver (vesa/fglrx)"
+0x1002 0x68d8 "Card:ATI Radeon HD 2000 to HD 6300 (radeon/fglrx)"
+0x1002 0x68d9 "Card:ATI Radeon HD 2000 to HD 6300 (radeon/fglrx)"
+0x1002 0x68da "Card:ATI Radeon HD 2000 to HD 6300 (radeon/fglrx)"
+0x1002 0x68de "Card:ATI Radeon HD 2000 to HD 6300 (radeon/fglrx)"
+0x1002 0x68e0 "Card:ATI Radeon HD 2000 to HD 6300 (radeon/fglrx)"
+0x1002 0x68e1 "Card:ATI Radeon HD 2000 to HD 6300 (radeon/fglrx)"
+0x1002 0x68e4 "Card:ATI Radeon HD 2000 to HD 6300 (radeon/fglrx)"
+0x1002 0x68e5 "Card:ATI Radeon HD 2000 to HD 6300 (radeon/fglrx)"
+0x1002 0x68e8 "Card:ATI Radeon HD 2000 to HD 6300 (radeon/fglrx)"
+0x1002 0x68e9 "Card:ATI Radeon HD 2000 to HD 6300 (radeon/fglrx)"
+0x1002 0x68f0 "Card:ATI Radeon HD 2000 and later without free driver (vesa/fglrx)"
+0x1002 0x68f1 "Card:ATI Radeon HD 2000 to HD 6300 (radeon/fglrx)"
+0x1002 0x68f2 "Card:ATI Radeon HD 2000 to HD 6300 (radeon/fglrx)"
+0x1002 0x68f8 "Card:ATI Radeon HD 2000 to HD 6300 (radeon/fglrx)"
+0x1002 0x68f9 "Card:ATI Radeon HD 2000 to HD 6300 (radeon/fglrx)"
+0x1002 0x68fa "Card:ATI Radeon HD 2000 and later without free driver (vesa/fglrx)"
+0x1002 0x68fe "Card:ATI Radeon HD 2000 to HD 6300 (radeon/fglrx)"
0x1002 0x7100 "Card:ATI Radeon X1950 and earlier"
0x1002 0x7101 "Card:ATI Radeon X1950 and earlier"
0x1002 0x7102 "Card:ATI Radeon X1950 and earlier"
@@ -510,180 +510,179 @@
0x1002 0x796d "Card:ATI Radeon X1950 and earlier"
0x1002 0x796e "Card:ATI Radeon X1950 and earlier"
0x1002 0x796f "Card:ATI Radeon X1950 and earlier"
-0x1002 0x9400 "Card:ATI Radeon HD 2000 and later (radeon/fglrx)"
-0x1002 0x9401 "Card:ATI Radeon HD 2000 and later (radeon/fglrx)"
-0x1002 0x9402 "Card:ATI Radeon HD 2000 and later (radeon/fglrx)"
-0x1002 0x9403 "Card:ATI Radeon HD 2000 and later (radeon/fglrx)"
-0x1002 0x9405 "Card:ATI Radeon HD 2000 and later (radeon/fglrx)"
+0x1002 0x9400 "Card:ATI Radeon HD 2000 to HD 6300 (radeon/fglrx)"
+0x1002 0x9401 "Card:ATI Radeon HD 2000 to HD 6300 (radeon/fglrx)"
+0x1002 0x9402 "Card:ATI Radeon HD 2000 to HD 6300 (radeon/fglrx)"
+0x1002 0x9403 "Card:ATI Radeon HD 2000 to HD 6300 (radeon/fglrx)"
+0x1002 0x9405 "Card:ATI Radeon HD 2000 to HD 6300 (radeon/fglrx)"
0x1002 0x940a "Card:ATI r600 based FireGL"
0x1002 0x940b "Card:ATI r600 based FireGL"
0x1002 0x940f "Card:ATI r600 based FireGL"
-0x1002 0x9440 "Card:ATI Radeon HD 2000 and later (radeon/fglrx)"
-0x1002 0x9441 "Card:ATI Radeon HD 2000 and later (radeon/fglrx)"
-0x1002 0x9442 "Card:ATI Radeon HD 2000 and later (radeon/fglrx)"
-0x1002 0x9443 "Card:ATI Radeon HD 2000 and later (radeon/fglrx)"
+0x1002 0x9440 "Card:ATI Radeon HD 2000 to HD 6300 (radeon/fglrx)"
+0x1002 0x9441 "Card:ATI Radeon HD 2000 to HD 6300 (radeon/fglrx)"
+0x1002 0x9442 "Card:ATI Radeon HD 2000 to HD 6300 (radeon/fglrx)"
+0x1002 0x9443 "Card:ATI Radeon HD 2000 to HD 6300 (radeon/fglrx)"
0x1002 0x9444 "Card:ATI FirePro (radeon/fglrx)"
0x1002 0x9446 "Card:ATI FirePro (radeon/fglrx)"
-0x1002 0x9447 "Card:ATI FirePro V8700 Duo"
-0x1002 0x944a "Card:ATI Radeon HD 2000 and later (radeon/fglrx)"
-0x1002 0x944b "Card:ATI Radeon HD 2000 and later (radeon/fglrx)"
-0x1002 0x944c "Card:ATI Radeon HD 2000 and later (radeon/fglrx)"
+0x1002 0x9447 "Card:ATI Radeon HD 2000 and later without free driver (vesa/fglrx)"
+0x1002 0x944a "Card:ATI Radeon HD 2000 to HD 6300 (radeon/fglrx)"
+0x1002 0x944b "Card:ATI Radeon HD 2000 to HD 6300 (radeon/fglrx)"
+0x1002 0x944c "Card:ATI Radeon HD 2000 to HD 6300 (radeon/fglrx)"
0x1002 0x944e "Card:ATI FirePro (radeon/fglrx)"
-0x1002 0x944f "Card:ATI Radeon HD 2000 and later (vesa/fglrx)"
-0x1002 0x9450 "Card:ATI Radeon HD 2000 and later (radeon/fglrx)"
-0x1002 0x9451 "Card:ATI Radeon HD 2000 and later (vesa/fglrx)"
-0x1002 0x9452 "Card:ATI Radeon HD 2000 and later (radeon/fglrx)"
+0x1002 0x944f "Card:ATI Radeon HD 2000 and later without free driver (vesa/fglrx)"
+0x1002 0x9450 "Card:ATI Radeon HD 2000 to HD 6300 (radeon/fglrx)"
+0x1002 0x9451 "Card:ATI Radeon HD 2000 and later without free driver (vesa/fglrx)"
+0x1002 0x9452 "Card:ATI Radeon HD 2000 to HD 6300 (radeon/fglrx)"
0x1002 0x9456 "Card:ATI FirePro (radeon/fglrx)"
-0x1002 0x945a "Card:ATI Radeon HD 2000 and later (radeon/fglrx)"
-0x1002 0x945b "Card:ATI Radeon HD 2000 and later (radeon/fglrx)"
-0x1002 0x945e "Card:ATI Radeon HD 2000 and later (radeon/fglrx)"
-0x1002 0x9460 "Card:ATI Radeon HD 2000 and later (radeon/fglrx)"
-0x1002 0x9462 "Card:ATI Radeon HD 2000 and later (radeon/fglrx)"
+0x1002 0x945a "Card:ATI Radeon HD 2000 to HD 6300 (radeon/fglrx)"
+0x1002 0x945b "Card:ATI Radeon HD 2000 to HD 6300 (radeon/fglrx)"
+0x1002 0x945e "Card:ATI Radeon HD 2000 to HD 6300 (radeon/fglrx)"
+0x1002 0x9460 "Card:ATI Radeon HD 2000 to HD 6300 (radeon/fglrx)"
+0x1002 0x9462 "Card:ATI Radeon HD 2000 to HD 6300 (radeon/fglrx)"
0x1002 0x946a "Card:ATI FirePro (radeon/fglrx)"
-0x1002 0x946b "Card:ATI Radeon HD 2000 and later (radeon/fglrx)"
-0x1002 0x947a "Card:ATI Radeon HD 2000 and later (radeon/fglrx)"
-0x1002 0x947b "Card:ATI Radeon HD 2000 and later (radeon/fglrx)"
-0x1002 0x9480 "Card:ATI Radeon HD 2000 and later (radeon/fglrx)"
-0x1002 0x9487 "Card:ATI Radeon HD 2000 and later (radeon/fglrx)"
-0x1002 0x9488 "Card:ATI Radeon HD 2000 and later (radeon/fglrx)"
+0x1002 0x946b "Card:ATI Radeon HD 2000 to HD 6300 (radeon/fglrx)"
+0x1002 0x947a "Card:ATI Radeon HD 2000 to HD 6300 (radeon/fglrx)"
+0x1002 0x947b "Card:ATI Radeon HD 2000 to HD 6300 (radeon/fglrx)"
+0x1002 0x9480 "Card:ATI Radeon HD 2000 to HD 6300 (radeon/fglrx)"
+0x1002 0x9487 "Card:ATI Radeon HD 2000 to HD 6300 (radeon/fglrx)"
+0x1002 0x9488 "Card:ATI Radeon HD 2000 to HD 6300 (radeon/fglrx)"
0x1002 0x9489 "Card:ATI FirePro (radeon/fglrx)"
-0x1002 0x948a "Card:ATI Radeon HD 2000 and later (radeon/fglrx)"
-0x1002 0x948f "Card:ATI Radeon HD 2000 and later (radeon/fglrx)"
-0x1002 0x9490 "Card:ATI Radeon HD 2000 and later (radeon/fglrx)"
-0x1002 0x9491 "Card:ATI Radeon HD 2000 and later (radeon/fglrx)"
-0x1002 0x9495 "Card:ATI Radeon HD 2000 and later (radeon/fglrx)"
-0x1002 0x9498 "Card:ATI Radeon HD 2000 and later (radeon/fglrx)"
+0x1002 0x948a "Card:ATI Radeon HD 2000 to HD 6300 (radeon/fglrx)"
+0x1002 0x948f "Card:ATI Radeon HD 2000 to HD 6300 (radeon/fglrx)"
+0x1002 0x9490 "Card:ATI Radeon HD 2000 to HD 6300 (radeon/fglrx)"
+0x1002 0x9491 "Card:ATI Radeon HD 2000 to HD 6300 (radeon/fglrx)"
+0x1002 0x9495 "Card:ATI Radeon HD 2000 to HD 6300 (radeon/fglrx)"
+0x1002 0x9498 "Card:ATI Radeon HD 2000 to HD 6300 (radeon/fglrx)"
0x1002 0x949c "Card:ATI FirePro (radeon/fglrx)"
0x1002 0x949e "Card:ATI FirePro (radeon/fglrx)"
0x1002 0x949f "Card:ATI FirePro (radeon/fglrx)"
-0x1002 0x94a0 "Card:ATI Radeon HD 2000 and later (radeon/fglrx)"
-0x1002 0x94a1 "Card:ATI Radeon HD 2000 and later (radeon/fglrx)"
-0x1002 0x94a3 "Card:ATI Radeon HD 2000 and later (radeon/fglrx)"
-0x1002 0x94b1 "Card:ATI Radeon HD 2000 and later (radeon/fglrx)"
-0x1002 0x94b3 "Card:ATI Radeon HD 2000 and later (radeon/fglrx)"
-0x1002 0x94b4 "Card:ATI Radeon HD 2000 and later (radeon/fglrx)"
-0x1002 0x94b5 "Card:ATI Radeon HD 2000 and later (radeon/fglrx)"
-0x1002 0x94b9 "Card:ATI FirePro M5750"
-0x1002 0x94c0 "Card:ATI Radeon HD 2000 and later (radeon/fglrx)"
-0x1002 0x94c1 "Card:ATI Radeon HD 2000 and later (radeon/fglrx)"
-0x1002 0x94c3 "Card:ATI Radeon HD 2000 and later (radeon/fglrx)"
-0x1002 0x94c4 "Card:ATI Radeon HD 2000 and later (radeon/fglrx)"
+0x1002 0x94a0 "Card:ATI Radeon HD 2000 to HD 6300 (radeon/fglrx)"
+0x1002 0x94a1 "Card:ATI Radeon HD 2000 to HD 6300 (radeon/fglrx)"
+0x1002 0x94a3 "Card:ATI Radeon HD 2000 to HD 6300 (radeon/fglrx)"
+0x1002 0x94b1 "Card:ATI Radeon HD 2000 to HD 6300 (radeon/fglrx)"
+0x1002 0x94b3 "Card:ATI Radeon HD 2000 to HD 6300 (radeon/fglrx)"
+0x1002 0x94b4 "Card:ATI Radeon HD 2000 to HD 6300 (radeon/fglrx)"
+0x1002 0x94b5 "Card:ATI Radeon HD 2000 to HD 6300 (radeon/fglrx)"
+0x1002 0x94b9 "Card:ATI Radeon X1950 and earlier"
+0x1002 0x94c0 "Card:ATI Radeon HD 2000 to HD 6300 (radeon/fglrx)"
+0x1002 0x94c1 "Card:ATI Radeon HD 2000 to HD 6300 (radeon/fglrx)"
+0x1002 0x94c3 "Card:ATI Radeon HD 2000 to HD 6300 (radeon/fglrx)"
+0x1002 0x94c4 "Card:ATI Radeon HD 2000 to HD 6300 (radeon/fglrx)"
0x1002 0x94c5 "Card:ATI r600 based FireGL"
-0x1002 0x94c6 "Card:ATI Radeon HD 2000 and later (radeon/fglrx)"
-0x1002 0x94c7 "Card:ATI Radeon HD 2000 and later (radeon/fglrx)"
-0x1002 0x94c8 "Card:ATI Radeon HD 2000 and later (radeon/fglrx)"
-0x1002 0x94c9 "Card:ATI Radeon HD 2000 and later (radeon/fglrx)"
-0x1002 0x94cb "Card:ATI Radeon HD 2000 and later (radeon/fglrx)"
-0x1002 0x94cc "Card:ATI Radeon HD 2000 and later (radeon/fglrx)"
+0x1002 0x94c6 "Card:ATI Radeon HD 2000 to HD 6300 (radeon/fglrx)"
+0x1002 0x94c7 "Card:ATI Radeon HD 2000 to HD 6300 (radeon/fglrx)"
+0x1002 0x94c8 "Card:ATI Radeon HD 2000 to HD 6300 (radeon/fglrx)"
+0x1002 0x94c9 "Card:ATI Radeon HD 2000 to HD 6300 (radeon/fglrx)"
+0x1002 0x94cb "Card:ATI Radeon HD 2000 to HD 6300 (radeon/fglrx)"
+0x1002 0x94cc "Card:ATI Radeon HD 2000 to HD 6300 (radeon/fglrx)"
0x1002 0x94cd "Card:ATI Radeon X1950 and earlier"
-0x1002 0x9500 "Card:ATI Radeon HD 2000 and later (radeon/fglrx)"
-0x1002 0x9501 "Card:ATI Radeon HD 2000 and later (radeon/fglrx)"
-0x1002 0x9504 "Card:ATI Radeon HD 2000 and later (radeon/fglrx)"
-0x1002 0x9505 "Card:ATI Radeon HD 2000 and later (radeon/fglrx)"
-0x1002 0x9506 "Card:ATI Radeon HD 2000 and later (radeon/fglrx)"
-0x1002 0x9507 "Card:ATI Radeon HD 2000 and later (radeon/fglrx)"
-0x1002 0x9508 "Card:ATI Radeon HD 2000 and later (radeon/fglrx)"
-0x1002 0x9509 "Card:ATI Radeon HD 2000 and later (radeon/fglrx)"
-0x1002 0x950f "Card:ATI Radeon HD 2000 and later (radeon/fglrx)"
+0x1002 0x9500 "Card:ATI Radeon HD 2000 to HD 6300 (radeon/fglrx)"
+0x1002 0x9501 "Card:ATI Radeon HD 2000 to HD 6300 (radeon/fglrx)"
+0x1002 0x9504 "Card:ATI Radeon HD 2000 to HD 6300 (radeon/fglrx)"
+0x1002 0x9505 "Card:ATI Radeon HD 2000 to HD 6300 (radeon/fglrx)"
+0x1002 0x9506 "Card:ATI Radeon HD 2000 to HD 6300 (radeon/fglrx)"
+0x1002 0x9507 "Card:ATI Radeon HD 2000 to HD 6300 (radeon/fglrx)"
+0x1002 0x9508 "Card:ATI Radeon HD 2000 to HD 6300 (radeon/fglrx)"
+0x1002 0x9509 "Card:ATI Radeon HD 2000 to HD 6300 (radeon/fglrx)"
+0x1002 0x950f "Card:ATI Radeon HD 2000 to HD 6300 (radeon/fglrx)"
0x1002 0x9511 "Card:ATI r600 based FireGL"
-0x1002 0x9513 "Card:ATI Radeon HD 3850 X2"
-0x1002 0x9515 "Card:ATI Radeon HD 2000 and later (radeon/fglrx)"
-0x1002 0x9517 "Card:ATI Radeon HD 2000 and later (radeon/fglrx)"
-0x1002 0x9519 "Card:ATI Radeon HD 2000 and later (radeon/fglrx)"
-0x1002 0x9540 "Card:ATI Radeon HD 2000 and later (radeon/fglrx)"
-0x1002 0x9541 "Card:ATI Radeon HD 2000 and later (radeon/fglrx)"
-0x1002 0x9542 "Card:ATI Radeon HD 2000 and later (radeon/fglrx)"
-0x1002 0x954e "Card:ATI Radeon HD 2000 and later (radeon/fglrx)"
-0x1002 0x954f "Card:ATI Radeon HD 2000 and later (radeon/fglrx)"
-0x1002 0x9552 "Card:ATI Radeon HD 2000 and later (radeon/fglrx)"
-0x1002 0x9553 "Card:ATI Radeon HD 2000 and later (radeon/fglrx)"
-0x1002 0x9555 "Card:ATI Radeon HD 2000 and later (radeon/fglrx)"
-0x1002 0x9557 "Card:ATI Radeon HD 2000 and later (radeon/fglrx)"
-0x1002 0x955f "Card:ATI Radeon HD 2000 and later (radeon/fglrx)"
-0x1002 0x9580 "Card:ATI Radeon HD 2000 and later (radeon/fglrx)"
-0x1002 0x9581 "Card:ATI Radeon HD 2000 and later (radeon/fglrx)"
-0x1002 0x9583 "Card:ATI Radeon HD 2000 and later (radeon/fglrx)"
-0x1002 0x9586 "Card:ATI Radeon HD 2000 and later (radeon/fglrx)"
-0x1002 0x9587 "Card:ATI Radeon HD 2000 and later (radeon/fglrx)"
-0x1002 0x9588 "Card:ATI Radeon HD 2000 and later (radeon/fglrx)"
-0x1002 0x9589 "Card:ATI Radeon HD 2000 and later (radeon/fglrx)"
-0x1002 0x958a "Card:ATI Radeon HD 2000 and later (radeon/fglrx)"
-0x1002 0x958b "Card:ATI Radeon HD 2000 and later (radeon/fglrx)"
+0x1002 0x9513 "Card:ATI Radeon HD 2000 and later without free driver (vesa/fglrx)"
+0x1002 0x9515 "Card:ATI Radeon HD 2000 to HD 6300 (radeon/fglrx)"
+0x1002 0x9517 "Card:ATI Radeon HD 2000 to HD 6300 (radeon/fglrx)"
+0x1002 0x9519 "Card:ATI Radeon HD 2000 to HD 6300 (radeon/fglrx)"
+0x1002 0x9540 "Card:ATI Radeon HD 2000 to HD 6300 (radeon/fglrx)"
+0x1002 0x9541 "Card:ATI Radeon HD 2000 to HD 6300 (radeon/fglrx)"
+0x1002 0x9542 "Card:ATI Radeon HD 2000 to HD 6300 (radeon/fglrx)"
+0x1002 0x954e "Card:ATI Radeon HD 2000 to HD 6300 (radeon/fglrx)"
+0x1002 0x954f "Card:ATI Radeon HD 2000 to HD 6300 (radeon/fglrx)"
+0x1002 0x9552 "Card:ATI Radeon HD 2000 to HD 6300 (radeon/fglrx)"
+0x1002 0x9553 "Card:ATI Radeon HD 2000 to HD 6300 (radeon/fglrx)"
+0x1002 0x9555 "Card:ATI Radeon HD 2000 to HD 6300 (radeon/fglrx)"
+0x1002 0x9557 "Card:ATI Radeon HD 2000 to HD 6300 (radeon/fglrx)"
+0x1002 0x955f "Card:ATI Radeon HD 2000 to HD 6300 (radeon/fglrx)"
+0x1002 0x9580 "Card:ATI Radeon HD 2000 to HD 6300 (radeon/fglrx)"
+0x1002 0x9581 "Card:ATI Radeon HD 2000 to HD 6300 (radeon/fglrx)"
+0x1002 0x9583 "Card:ATI Radeon HD 2000 to HD 6300 (radeon/fglrx)"
+0x1002 0x9586 "Card:ATI Radeon HD 2000 to HD 6300 (radeon/fglrx)"
+0x1002 0x9587 "Card:ATI Radeon HD 2000 to HD 6300 (radeon/fglrx)"
+0x1002 0x9588 "Card:ATI Radeon HD 2000 to HD 6300 (radeon/fglrx)"
+0x1002 0x9589 "Card:ATI Radeon HD 2000 to HD 6300 (radeon/fglrx)"
+0x1002 0x958a "Card:ATI Radeon HD 2000 to HD 6300 (radeon/fglrx)"
+0x1002 0x958b "Card:ATI Radeon HD 2000 to HD 6300 (radeon/fglrx)"
0x1002 0x958c "Card:ATI r600 based FireGL"
0x1002 0x958d "Card:ATI r600 based FireGL"
-0x1002 0x958e "Card:ATI Radeon HD 2000 and later (radeon/fglrx)"
+0x1002 0x958e "Card:ATI Radeon HD 2000 to HD 6300 (radeon/fglrx)"
0x1002 0x958f "Card:ATI r600 based FireGL"
-0x1002 0x9590 "Card:ATI Radeon HD 2000 and later (radeon/fglrx)"
-0x1002 0x9591 "Card:ATI Radeon HD 2000 and later (radeon/fglrx)"
-0x1002 0x9592 "Card:ATI Radeon RV710 9592"
-0x1002 0x9593 "Card:ATI Radeon HD 2000 and later (radeon/fglrx)"
+0x1002 0x9590 "Card:ATI Radeon HD 2000 to HD 6300 (radeon/fglrx)"
+0x1002 0x9591 "Card:ATI Radeon HD 2000 to HD 6300 (radeon/fglrx)"
+0x1002 0x9593 "Card:ATI Radeon HD 2000 to HD 6300 (radeon/fglrx)"
0x1002 0x9595 "Card:ATI r600 based FireGL"
-0x1002 0x9596 "Card:ATI Radeon HD 2000 and later (radeon/fglrx)"
-0x1002 0x9597 "Card:ATI Radeon HD 2000 and later (radeon/fglrx)"
-0x1002 0x9598 "Card:ATI Radeon HD 2000 and later (radeon/fglrx)"
-0x1002 0x9599 "Card:ATI Radeon HD 2000 and later (radeon/fglrx)"
+0x1002 0x9596 "Card:ATI Radeon HD 2000 to HD 6300 (radeon/fglrx)"
+0x1002 0x9597 "Card:ATI Radeon HD 2000 to HD 6300 (radeon/fglrx)"
+0x1002 0x9598 "Card:ATI Radeon HD 2000 to HD 6300 (radeon/fglrx)"
+0x1002 0x9599 "Card:ATI Radeon HD 2000 to HD 6300 (radeon/fglrx)"
0x1002 0x959b "Card:ATI r600 based FireGL"
-0x1002 0x95c0 "Card:ATI Radeon HD 2000 and later (radeon/fglrx)"
-0x1002 0x95c2 "Card:ATI Radeon HD 2000 and later (radeon/fglrx)"
-0x1002 0x95c4 "Card:ATI Radeon HD 2000 and later (radeon/fglrx)"
-0x1002 0x95c5 "Card:ATI Radeon HD 2000 and later (radeon/fglrx)"
-0x1002 0x95c6 "Card:ATI Radeon HD 2000 and later (radeon/fglrx)"
-0x1002 0x95c7 "Card:ATI Radeon HD 2000 and later (radeon/fglrx)"
-0x1002 0x95c9 "Card:ATI Radeon HD 2000 and later (radeon/fglrx)"
+0x1002 0x95c0 "Card:ATI Radeon HD 2000 to HD 6300 (radeon/fglrx)"
+0x1002 0x95c2 "Card:ATI Radeon HD 2000 to HD 6300 (radeon/fglrx)"
+0x1002 0x95c4 "Card:ATI Radeon HD 2000 to HD 6300 (radeon/fglrx)"
+0x1002 0x95c5 "Card:ATI Radeon HD 2000 to HD 6300 (radeon/fglrx)"
+0x1002 0x95c6 "Card:ATI Radeon HD 2000 to HD 6300 (radeon/fglrx)"
+0x1002 0x95c7 "Card:ATI Radeon HD 2000 to HD 6300 (radeon/fglrx)"
+0x1002 0x95c9 "Card:ATI Radeon HD 2000 to HD 6300 (radeon/fglrx)"
0x1002 0x95cc "Card:ATI FirePro (radeon/fglrx)"
-0x1002 0x95cd "Card:ATI Radeon HD 2000 and later (radeon/fglrx)"
-0x1002 0x95ce "Card:ATI Radeon HD 2000 and later (radeon/fglrx)"
-0x1002 0x95cf "Card:ATI Radeon HD 2000 and later (radeon/fglrx)"
-0x1002 0x9610 "Card:ATI Radeon HD 2000 and later (radeon/fglrx)"
-0x1002 0x9611 "Card:ATI Radeon HD 2000 and later (radeon/fglrx)"
-0x1002 0x9612 "Card:ATI Radeon HD 2000 and later (radeon/fglrx)"
-0x1002 0x9613 "Card:ATI Radeon HD 2000 and later (radeon/fglrx)"
-0x1002 0x9614 "Card:ATI Radeon HD 2000 and later (radeon/fglrx)"
-0x1002 0x9615 "Card:ATI Radeon HD 2000 and later (radeon/fglrx)"
-0x1002 0x9616 "Card:ATI Radeon HD 2000 and later (radeon/fglrx)"
-0x1002 0x9640 "Card:ATI Radeon HD 2000 and later (radeon/fglrx)"
-0x1002 0x9641 "Card:ATI Radeon HD 2000 and later (radeon/fglrx)"
-0x1002 0x9642 "Card:ATI Radeon HD 2000 and later (radeon/fglrx)"
-0x1002 0x9643 "Card:ATI Radeon HD 2000 and later (radeon/fglrx)"
-0x1002 0x9644 "Card:ATI Radeon HD 2000 and later (radeon/fglrx)"
-0x1002 0x9645 "Card:ATI Radeon HD 2000 and later (radeon/fglrx)"
-0x1002 0x9647 "Card:ATI Radeon HD 2000 and later (radeon/fglrx)"
-0x1002 0x9648 "Card:ATI Radeon HD 2000 and later (radeon/fglrx)"
-0x1002 0x9649 "Card:ATI Radeon HD 2000 and later (vesa/fglrx)"
-0x1002 0x964a "Card:ATI Radeon HD 2000 and later (radeon/fglrx)"
-0x1002 0x964b "Card:ATI Radeon HD 2000 and later (vesa/fglrx)"
-0x1002 0x964c "Card:ATI Radeon HD 2000 and later (vesa/fglrx)"
-0x1002 0x964e "Card:ATI Radeon HD 2000 and later (radeon/fglrx)"
-0x1002 0x964f "Card:ATI Radeon HD 2000 and later (radeon/fglrx)"
-0x1002 0x9710 "Card:ATI Radeon HD 2000 and later (radeon/fglrx)"
-0x1002 0x9711 "Card:ATI Radeon HD 2000 and later (radeon/fglrx)"
-0x1002 0x9712 "Card:ATI Radeon HD 2000 and later (radeon/fglrx)"
-0x1002 0x9713 "Card:ATI Radeon HD 2000 and later (radeon/fglrx)"
-0x1002 0x9714 "Card:ATI Radeon HD 2000 and later (radeon/fglrx)"
-0x1002 0x9715 "Card:ATI Radeon HD 2000 and later (radeon/fglrx)"
-0x1002 0x9802 "Card:ATI Radeon HD 2000 and later (radeon/fglrx)"
-0x1002 0x9803 "Card:ATI Radeon HD 2000 and later (radeon/fglrx)"
-0x1002 0x9804 "Card:ATI Radeon HD 2000 and later (radeon/fglrx)"
-0x1002 0x9805 "Card:ATI Radeon HD 2000 and later (radeon/fglrx)"
-0x1002 0x9806 "Card:ATI Radeon HD 2000 and later (radeon/fglrx)"
-0x1002 0x9807 "Card:ATI Radeon HD 2000 and later (radeon/fglrx)"
-0x1002 0x9808 "Card:ATI Radeon HD 2000 and later (vesa/fglrx)"
-0x1002 0x9809 "Card:ATI Radeon HD 2000 and later (vesa/fglrx)"
-0x1002 0x9900 "Card:ATI Radeon HD 2000 and later (vesa/fglrx)"
-0x1002 0x9901 "Card:ATI Radeon HD 2000 and later (vesa/fglrx)"
-0x1002 0x9903 "Card:ATI Radeon HD 2000 and later (vesa/fglrx)"
-0x1002 0x9904 "Card:ATI Radeon HD 2000 and later (vesa/fglrx)"
-0x1002 0x9905 "Card:ATI Radeon HD 2000 and later (vesa/fglrx)"
-0x1002 0x9906 "Card:ATI Radeon HD 2000 and later (vesa/fglrx)"
-0x1002 0x9907 "Card:ATI Radeon HD 2000 and later (vesa/fglrx)"
-0x1002 0x9908 "Card:ATI Radeon HD 2000 and later (vesa/fglrx)"
-0x1002 0x9909 "Card:ATI Radeon HD 2000 and later (vesa/fglrx)"
-0x1002 0x990f "Card:ATI Radeon HD 2000 and later (vesa/fglrx)"
-0x1002 0x9990 "Card:ATI Radeon HD 2000 and later (vesa/fglrx)"
-0x1002 0x9991 "Card:ATI Radeon HD 2000 and later (vesa/fglrx)"
-0x1002 0x9992 "Card:ATI Radeon HD 2000 and later (vesa/fglrx)"
-0x1002 0x9993 "Card:ATI Radeon HD 2000 and later (vesa/fglrx)"
-0x1002 0x9994 "Card:ATI Radeon HD 2000 and later (vesa/fglrx)"
+0x1002 0x95cd "Card:ATI Radeon HD 2000 to HD 6300 (radeon/fglrx)"
+0x1002 0x95ce "Card:ATI Radeon HD 2000 to HD 6300 (radeon/fglrx)"
+0x1002 0x95cf "Card:ATI Radeon HD 2000 to HD 6300 (radeon/fglrx)"
+0x1002 0x9610 "Card:ATI Radeon HD 2000 to HD 6300 (radeon/fglrx)"
+0x1002 0x9611 "Card:ATI Radeon HD 2000 to HD 6300 (radeon/fglrx)"
+0x1002 0x9612 "Card:ATI Radeon HD 2000 to HD 6300 (radeon/fglrx)"
+0x1002 0x9613 "Card:ATI Radeon HD 2000 to HD 6300 (radeon/fglrx)"
+0x1002 0x9614 "Card:ATI Radeon HD 2000 to HD 6300 (radeon/fglrx)"
+0x1002 0x9615 "Card:ATI Radeon HD 2000 to HD 6300 (radeon/fglrx)"
+0x1002 0x9616 "Card:ATI Radeon HD 2000 to HD 6300 (radeon/fglrx)"
+0x1002 0x9640 "Card:ATI Radeon HD 6400 and later (radeon/fglrx)"
+0x1002 0x9641 "Card:ATI Radeon HD 6400 and later (radeon/fglrx)"
+0x1002 0x9642 "Card:ATI Radeon HD 6400 and later (radeon/fglrx)"
+0x1002 0x9643 "Card:ATI Radeon HD 6400 and later (radeon/fglrx)"
+0x1002 0x9644 "Card:ATI Radeon HD 6400 and later (radeon/fglrx)"
+0x1002 0x9645 "Card:ATI Radeon HD 6400 and later (radeon/fglrx)"
+0x1002 0x9647 "Card:ATI Radeon HD 6400 and later (radeon/fglrx)"
+0x1002 0x9648 "Card:ATI Radeon HD 6400 and later (radeon/fglrx)"
+0x1002 0x9649 "Card:ATI Radeon HD 2000 and later without free driver (vesa/fglrx)"
+0x1002 0x964a "Card:ATI Radeon HD 6400 and later (radeon/fglrx)"
+0x1002 0x964b "Card:ATI Radeon HD 2000 and later without free driver (vesa/fglrx)"
+0x1002 0x964c "Card:ATI Radeon HD 2000 and later without free driver (vesa/fglrx)"
+0x1002 0x964e "Card:ATI Radeon HD 6400 and later (radeon/fglrx)"
+0x1002 0x964f "Card:ATI Radeon HD 6400 and later (radeon/fglrx)"
+0x1002 0x9710 "Card:ATI Radeon HD 2000 to HD 6300 (radeon/fglrx)"
+0x1002 0x9711 "Card:ATI Radeon HD 2000 to HD 6300 (radeon/fglrx)"
+0x1002 0x9712 "Card:ATI Radeon HD 2000 to HD 6300 (radeon/fglrx)"
+0x1002 0x9713 "Card:ATI Radeon HD 2000 to HD 6300 (radeon/fglrx)"
+0x1002 0x9714 "Card:ATI Radeon HD 2000 to HD 6300 (radeon/fglrx)"
+0x1002 0x9715 "Card:ATI Radeon HD 2000 to HD 6300 (radeon/fglrx)"
+0x1002 0x9802 "Card:ATI Radeon HD 2000 to HD 6300 (radeon/fglrx)"
+0x1002 0x9803 "Card:ATI Radeon HD 2000 to HD 6300 (radeon/fglrx)"
+0x1002 0x9804 "Card:ATI Radeon HD 2000 to HD 6300 (radeon/fglrx)"
+0x1002 0x9805 "Card:ATI Radeon HD 2000 to HD 6300 (radeon/fglrx)"
+0x1002 0x9806 "Card:ATI Radeon HD 2000 to HD 6300 (radeon/fglrx)"
+0x1002 0x9807 "Card:ATI Radeon HD 2000 to HD 6300 (radeon/fglrx)"
+0x1002 0x9808 "Card:ATI Radeon HD 2000 and later without free driver (vesa/fglrx)"
+0x1002 0x9809 "Card:ATI Radeon HD 2000 and later without free driver (vesa/fglrx)"
+0x1002 0x9900 "Card:ATI Radeon HD 2000 and later without free driver (vesa/fglrx)"
+0x1002 0x9901 "Card:ATI Radeon HD 2000 and later without free driver (vesa/fglrx)"
+0x1002 0x9903 "Card:ATI Radeon HD 2000 and later without free driver (vesa/fglrx)"
+0x1002 0x9904 "Card:ATI Radeon HD 2000 and later without free driver (vesa/fglrx)"
+0x1002 0x9905 "Card:ATI Radeon HD 2000 and later without free driver (vesa/fglrx)"
+0x1002 0x9906 "Card:ATI Radeon HD 2000 and later without free driver (vesa/fglrx)"
+0x1002 0x9907 "Card:ATI Radeon HD 2000 and later without free driver (vesa/fglrx)"
+0x1002 0x9908 "Card:ATI Radeon HD 2000 and later without free driver (vesa/fglrx)"
+0x1002 0x9909 "Card:ATI Radeon HD 2000 and later without free driver (vesa/fglrx)"
+0x1002 0x990f "Card:ATI Radeon HD 2000 and later without free driver (vesa/fglrx)"
+0x1002 0x9990 "Card:ATI Radeon HD 2000 and later without free driver (vesa/fglrx)"
+0x1002 0x9991 "Card:ATI Radeon HD 2000 and later without free driver (vesa/fglrx)"
+0x1002 0x9992 "Card:ATI Radeon HD 2000 and later without free driver (vesa/fglrx)"
+0x1002 0x9993 "Card:ATI Radeon HD 2000 and later without free driver (vesa/fglrx)"
+0x1002 0x9994 "Card:ATI Radeon HD 2000 and later without free driver (vesa/fglrx)"
0x1005 0x2301 "Card:VESA driver (generic)"
0x1005 0x2302 "Card:VESA driver (generic)"
0x1005 0x2364 "Card:VESA driver (generic)"