mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-05-08 13:28:06 +02:00
R300: RV410 SE chips have half the pipes of regular RV410
This fixes 3D rendering on x700 SE chips. Reported
by Kano.
(cherry picked from commit 0b7e0f8159)
This commit is contained in:
parent
3266c5e95a
commit
bb84007a57
1 changed files with 7 additions and 2 deletions
|
|
@ -634,6 +634,13 @@ radeonCreateScreen( __DRIscreenPrivate *sPriv )
|
|||
screen->chip_flags = RADEON_CHIPSET_TCL;
|
||||
break;
|
||||
|
||||
/* RV410 SE chips have half the pipes of regular RV410 */
|
||||
case PCI_CHIP_RV410_5E4C:
|
||||
case PCI_CHIP_RV410_5E4F:
|
||||
screen->chip_family = CHIP_FAMILY_RV380;
|
||||
screen->chip_flags = RADEON_CHIPSET_TCL;
|
||||
break;
|
||||
|
||||
case PCI_CHIP_RV410_564A:
|
||||
case PCI_CHIP_RV410_564B:
|
||||
case PCI_CHIP_RV410_564F:
|
||||
|
|
@ -642,9 +649,7 @@ radeonCreateScreen( __DRIscreenPrivate *sPriv )
|
|||
case PCI_CHIP_RV410_5E48:
|
||||
case PCI_CHIP_RV410_5E4A:
|
||||
case PCI_CHIP_RV410_5E4B:
|
||||
case PCI_CHIP_RV410_5E4C:
|
||||
case PCI_CHIP_RV410_5E4D:
|
||||
case PCI_CHIP_RV410_5E4F:
|
||||
screen->chip_family = CHIP_FAMILY_RV410;
|
||||
screen->chip_flags = RADEON_CHIPSET_TCL;
|
||||
break;
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue