diff options
author | Dave Airlie <airlied@redhat.com> | 2009-08-13 02:32:14 -0400 |
---|---|---|
committer | Dave Airlie <airlied@redhat.com> | 2009-09-07 19:24:37 -0400 |
commit | 4ce001abafafe77e5dd943d1480fc9f87894e96f (patch) | |
tree | 4a22b42c58a80450992fcf5d7625b19fe045855b /drivers/gpu/drm/radeon/atombios.h | |
parent | 551ebd837c75fc75df81811a18b7136c39cab487 (diff) |
drm/radeon/kms: add initial radeon tv-out support.
This ports the tv-out code from the DDX to KMS.
adds a radeon.tv module option, radeon.tv=0 to disable tv
Signed-off-by: Dave Airlie <airlied@redhat.com>
Diffstat (limited to 'drivers/gpu/drm/radeon/atombios.h')
-rw-r--r-- | drivers/gpu/drm/radeon/atombios.h | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/drivers/gpu/drm/radeon/atombios.h b/drivers/gpu/drm/radeon/atombios.h index cf67928abbc..5d402086bc4 100644 --- a/drivers/gpu/drm/radeon/atombios.h +++ b/drivers/gpu/drm/radeon/atombios.h | |||
@@ -2374,6 +2374,17 @@ typedef struct _ATOM_ANALOG_TV_INFO { | |||
2374 | ATOM_MODE_TIMING aModeTimings[MAX_SUPPORTED_TV_TIMING]; | 2374 | ATOM_MODE_TIMING aModeTimings[MAX_SUPPORTED_TV_TIMING]; |
2375 | } ATOM_ANALOG_TV_INFO; | 2375 | } ATOM_ANALOG_TV_INFO; |
2376 | 2376 | ||
2377 | #define MAX_SUPPORTED_TV_TIMING_V1_2 3 | ||
2378 | |||
2379 | typedef struct _ATOM_ANALOG_TV_INFO_V1_2 { | ||
2380 | ATOM_COMMON_TABLE_HEADER sHeader; | ||
2381 | UCHAR ucTV_SupportedStandard; | ||
2382 | UCHAR ucTV_BootUpDefaultStandard; | ||
2383 | UCHAR ucExt_TV_ASIC_ID; | ||
2384 | UCHAR ucExt_TV_ASIC_SlaveAddr; | ||
2385 | ATOM_DTD_FORMAT aModeTimings[MAX_SUPPORTED_TV_TIMING]; | ||
2386 | } ATOM_ANALOG_TV_INFO_V1_2; | ||
2387 | |||
2377 | /**************************************************************************/ | 2388 | /**************************************************************************/ |
2378 | /* VRAM usage and their defintions */ | 2389 | /* VRAM usage and their defintions */ |
2379 | 2390 | ||