diff options
author | Dave Airlie <airlied@redhat.com> | 2008-12-16 12:19:00 +1000 |
---|---|---|
committer | Dave Airlie <airlied@redhat.com> | 2008-12-16 12:19:00 +1000 |
commit | 4d2429f3ec4d7d3e1512b268c7ff5cbff8d186b4 (patch) | |
tree | 765d2f85b4768ee366f758ecebcab27d165988fc /src/radeon.h | |
parent | 4d3792fd1b9f733107582436540f483d8993199f (diff) |
DCE32: add support for DCE3.2 digital outputs.
This adds support for the digital outputs on the RV730.
Diffstat (limited to 'src/radeon.h')
-rw-r--r-- | src/radeon.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/radeon.h b/src/radeon.h index 8dc8f23e..818ec4dc 100644 --- a/src/radeon.h +++ b/src/radeon.h @@ -324,6 +324,7 @@ typedef enum { CHIP_FAMILY_RV635, CHIP_FAMILY_RS780, CHIP_FAMILY_RV770, + CHIP_FAMILY_RV730, CHIP_FAMILY_LAST } RADEONChipFamily; @@ -349,6 +350,8 @@ typedef enum { #define IS_DCE3_VARIANT ((info->ChipFamily >= CHIP_FAMILY_RV620)) +#define IS_DCE32_VARIANT ((info->ChipFamily >= CHIP_FAMILY_RV730)) + #define IS_R500_3D ((info->ChipFamily == CHIP_FAMILY_RV515) || \ (info->ChipFamily == CHIP_FAMILY_R520) || \ (info->ChipFamily == CHIP_FAMILY_RV530) || \ |