diff options
author | Dave Airlie <airlied@starflyer.(none)> | 2006-01-25 14:52:43 +1100 |
---|---|---|
committer | Dave Airlie <airlied@linux.ie> | 2006-01-25 14:52:43 +1100 |
commit | 2fed3bd7436e8988980989493c16b4983be1a800 (patch) | |
tree | e85c212a7f6451e5123eacc6700a8ff2b7352bd4 /drivers/char/drm | |
parent | 5457f38e01ae2d296ff49db42254679018f13fa9 (diff) | |
download | linux-3.10-2fed3bd7436e8988980989493c16b4983be1a800.tar.gz linux-3.10-2fed3bd7436e8988980989493c16b4983be1a800.tar.bz2 linux-3.10-2fed3bd7436e8988980989493c16b4983be1a800.zip |
drm: add X600 PCI IDs
From: Brice Goglin <Brice.Goglin@ens-lyon.org>
Now that Xorg 6.9/7.0 has been released, DRI is supported on more Radeon
cards without ATI proprietary drivers. I got my X300 to work without
problem. But, another Radeon X600 required to add its PCI ids to the
Radeon driver. Patch is attached.
I can't be sure about the "CHIP_RV350", I copied it from the X300 entry
(from http://dri.freedesktop.org/wiki/ATIRadeon, X600 is a rv380 chip while
X300 is a rv370). But, at least it works now.
Signed-off-by: Brice Goglin <Brice.Goglin@ens-lyon.org>
Signed-off-by: Andrew Morton <akpm@osdl.org>
Signed-off-by: Dave Airlie <airlied@linux.ie>
Diffstat (limited to 'drivers/char/drm')
-rw-r--r-- | drivers/char/drm/drm_pciids.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/drivers/char/drm/drm_pciids.h b/drivers/char/drm/drm_pciids.h index 27de81dad41..8fd6357a48d 100644 --- a/drivers/char/drm/drm_pciids.h +++ b/drivers/char/drm/drm_pciids.h @@ -3,6 +3,7 @@ Please contact dri-devel@lists.sf.net to add new cards to this list */ #define radeon_PCI_IDS \ + {0x1002, 0x3150, PCI_ANY_ID, PCI_ANY_ID, 0, 0, CHIP_RV350},\ {0x1002, 0x4136, PCI_ANY_ID, PCI_ANY_ID, 0, 0, CHIP_RS100|CHIP_IS_IGP}, \ {0x1002, 0x4137, PCI_ANY_ID, PCI_ANY_ID, 0, 0, CHIP_RS200|CHIP_IS_IGP}, \ {0x1002, 0x4144, PCI_ANY_ID, PCI_ANY_ID, 0, 0, CHIP_R300}, \ |