aboutsummaryrefslogtreecommitdiffstats
path: root/src/mesa/drivers/dri/radeon/radeon_chipset.h
Commit message (Collapse)AuthorAgeFilesLines
* radeon/r200: add RV200 detiling + add an always tiled flagDave Airlie2011-12-061-0/+1
| | | | | | passes readpix sanity on the M7. Signed-off-by: Dave Airlie <[email protected]>
* radeon: further cleanup of shared codeFabio Pedretti2011-11-141-10/+3
| | | | Signed-off-by: Alex Deucher <[email protected]>
* radeon: cleanup radeon shared code after r300 and r600 classic drivers removalFabio Pedretti2011-11-071-45/+6
| | | | Signed-off-by: Dave Airlie <[email protected]>
* radeon: Use pciid list to generate PCI_CHIP_<FAMILY>_<ID> definesBenjamin Franzke2011-06-071-491/+9
| | | | Reviewed-by: Alex Deucher <[email protected]>
* r600c: add support for llanoAlex Deucher2011-05-311-0/+14
| | | | Signed-off-by: Alex Deucher <[email protected]>
* Add pci id for FirePro 2270Kostas Georgiou2011-05-061-0/+1
| | | | Signed-off-by: Kostas Georgiou <[email protected]>
* r600c: add some new pci idsAlex Deucher2011-05-031-0/+4
| | | | Signed-off-by: Alex Deucher <[email protected]>
* r600c: add new ontario pci idsAlex Deucher2011-04-041-0/+2
| | | | Signed-off-by: Alex Deucher <[email protected]>
* r200: remove 0x4243 pci idAlex Deucher2011-02-011-1/+0
| | | | | | | There's no such device. 0x4243 is a pci bridge id, not a GPU. Signed-off-by: Alex Deucher <[email protected]>
* r600c: add support for NI asicsAlex Deucher2011-01-061-0/+42
|
* r600c: add Ontario Fusion APU supportAlex Deucher2010-11-221-0/+6
| | | | Signed-off-by: Alex Deucher <[email protected]>
* radeon: print chip family for evergreen in renderer stringAlex Deucher2010-08-231-2/+0
|
* evergreen : initial support driver code.richard2010-08-201-0/+47
|
* r300c: do not advertise half float vertex on RV3xx, RS4xx, RC4xxMarek Olšák2010-08-071-1/+1
| | | | | | | Fixes a hardlock. NOTE: this is a candidate for the 7.8 branch, provided the half float vertex is really implemented there.
* r300c/r300g: add 3155 rv380 pci idDave Airlie2010-04-191-0/+1
|
* r600: add new r7xx pci idsAlex Deucher2010-04-091-0/+3
|
* r600: add new rs880 pci idAlex Deucher2010-03-031-0/+1
|
* r600: add missing r7xx pci idAlex Deucher2009-08-311-0/+1
|
* r600: add support for RS880Alex Deucher2009-08-221-0/+7
|
* r600: add some new r7xx pci idsAlex Deucher2009-08-031-0/+5
|
* r600: add some missing pci idsAlex Deucher2009-08-031-0/+2
|
* Add RV740 supportAlex Deucher2009-06-111-0/+7
|
* add missing RS780 pci idAlex Deucher2009-05-261-0/+1
|
* R600: initial copy of r300 codeAlex Deucher2009-04-081-0/+129
|
* R300: add support for RS600 chipsAlex Deucher2009-02-271-0/+4
|
* R300: 1002:5657 is actually RV410Alex Deucher2008-06-211-1/+1
| | | | See bug 14289
* R5xx: Add R5xx pci idsAlex Deucher2008-05-021-0/+104
|
* r300: add rv530 pci id for the t60p laptopDave Airlie2008-05-021-0/+3
|
* some basic r500 portageDave Airlie2008-05-021-0/+2
|
* r300: add new rs690 pci idDave Airlie2008-03-181-0/+1
|
* Add new RV380 pci idAlex Deucher2008-01-291-0/+1
| | | | bug 14289
* r300: add initial rs690 support to MesaDave Airlie2008-01-271-0/+2
| | | | | | The rs690 has an rs4xx style vertex-shader less 3D engine. It uses the new r500 output engine though. It also needs a new drm with rs690 support, which is just getting cleaned up.
* Add all pci ids known by ddx to radeon dri driver. Remove the entries not ↵Roland Scheidegger2006-02-251-30/+74
| | | | known by ddx (probably secondary ids, non-existant cards and similar). Add rs400 to the family enum, and configure the rv410 like a 2 quad chip (?)
* Added PCI_CHIP_RV410_5E4B (Adam Kirchhoff)Brian Paul2005-12-021-0/+2
|
* First step of Radeon DRI unification:Eric Anholt2005-11-021-0/+135
- Makes all three drivers use the same screen structure and setup code, with a few ifdefs for the separate compilation to deal with symbols not being available to all drivers and the fact that we have no mechanism for dealing with different config options for different chip families in the same driver. These issues should be dealt with later. - Introduces IS_R[123]00_CLASS(radeonScreenPtr) macro for code for taking different paths depending on the general class of chipset. - Adds many new R300-class PCI IDs, though not all those listed in radeon_driver.c.