Lines Matching full:tmds
803 struct radeon_encoder_int_tmds *tmds = (struct radeon_encoder_int_tmds *)radeon_encoder->enc_priv; in radeon_legacy_tmds_int_mode_set() local
806 if (tmds->tmds_pll[i].freq == 0) in radeon_legacy_tmds_int_mode_set()
808 if ((uint32_t)(mode->clock / 10) < tmds->tmds_pll[i].freq) { in radeon_legacy_tmds_int_mode_set()
809 tmp = tmds->tmds_pll[i].value ; in radeon_legacy_tmds_int_mode_set()
1702 struct radeon_encoder_int_tmds *tmds = NULL; in radeon_legacy_get_tmds_info() local
1705 tmds = kzalloc(sizeof(struct radeon_encoder_int_tmds), GFP_KERNEL); in radeon_legacy_get_tmds_info()
1707 if (!tmds) in radeon_legacy_get_tmds_info()
1711 ret = radeon_atombios_get_tmds_info(encoder, tmds); in radeon_legacy_get_tmds_info()
1713 ret = radeon_legacy_get_tmds_info_from_combios(encoder, tmds); in radeon_legacy_get_tmds_info()
1716 radeon_legacy_get_tmds_info_from_table(encoder, tmds); in radeon_legacy_get_tmds_info()
1718 return tmds; in radeon_legacy_get_tmds_info()
1725 struct radeon_encoder_ext_tmds *tmds = NULL; in radeon_legacy_get_ext_tmds_info() local
1731 tmds = kzalloc(sizeof(struct radeon_encoder_ext_tmds), GFP_KERNEL); in radeon_legacy_get_ext_tmds_info()
1733 if (!tmds) in radeon_legacy_get_ext_tmds_info()
1736 ret = radeon_legacy_get_ext_tmds_info_from_combios(encoder, tmds); in radeon_legacy_get_ext_tmds_info()
1739 radeon_legacy_get_ext_tmds_info_from_table(encoder, tmds); in radeon_legacy_get_ext_tmds_info()
1741 return tmds; in radeon_legacy_get_ext_tmds_info()