diff options
Diffstat (limited to 'drivers/gpu/drm/radeon/radeon_mode.h')
-rw-r--r-- | drivers/gpu/drm/radeon/radeon_mode.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/drivers/gpu/drm/radeon/radeon_mode.h b/drivers/gpu/drm/radeon/radeon_mode.h index 830e171c3a9e..bba112628b47 100644 --- a/drivers/gpu/drm/radeon/radeon_mode.h +++ b/drivers/gpu/drm/radeon/radeon_mode.h | |||
@@ -367,6 +367,7 @@ struct radeon_crtc { | |||
367 | u32 line_time; | 367 | u32 line_time; |
368 | u32 wm_low; | 368 | u32 wm_low; |
369 | u32 wm_high; | 369 | u32 wm_high; |
370 | u32 lb_vblank_lead_lines; | ||
370 | struct drm_display_mode hw_mode; | 371 | struct drm_display_mode hw_mode; |
371 | enum radeon_output_csc output_csc; | 372 | enum radeon_output_csc output_csc; |
372 | }; | 373 | }; |
@@ -553,6 +554,7 @@ struct radeon_connector { | |||
553 | void *con_priv; | 554 | void *con_priv; |
554 | bool dac_load_detect; | 555 | bool dac_load_detect; |
555 | bool detected_by_load; /* if the connection status was determined by load */ | 556 | bool detected_by_load; /* if the connection status was determined by load */ |
557 | bool detected_hpd_without_ddc; /* if an HPD signal was detected on DVI, but ddc probing failed */ | ||
556 | uint16_t connector_object_id; | 558 | uint16_t connector_object_id; |
557 | struct radeon_hpd hpd; | 559 | struct radeon_hpd hpd; |
558 | struct radeon_router router; | 560 | struct radeon_router router; |
@@ -686,6 +688,9 @@ struct atom_voltage_table | |||
686 | struct atom_voltage_table_entry entries[MAX_VOLTAGE_ENTRIES]; | 688 | struct atom_voltage_table_entry entries[MAX_VOLTAGE_ENTRIES]; |
687 | }; | 689 | }; |
688 | 690 | ||
691 | /* Driver internal use only flags of radeon_get_crtc_scanoutpos() */ | ||
692 | #define USE_REAL_VBLANKSTART (1 << 30) | ||
693 | #define GET_DISTANCE_TO_VBLANKSTART (1 << 31) | ||
689 | 694 | ||
690 | extern void | 695 | extern void |
691 | radeon_add_atom_connector(struct drm_device *dev, | 696 | radeon_add_atom_connector(struct drm_device *dev, |