Lines Matching refs:tmds
797 struct radeon_encoder_int_tmds *tmds = (struct radeon_encoder_int_tmds *)radeon_encoder->enc_priv; in radeon_legacy_tmds_int_mode_set() local
800 if (tmds->tmds_pll[i].freq == 0) in radeon_legacy_tmds_int_mode_set()
802 if ((uint32_t)(mode->clock / 10) < tmds->tmds_pll[i].freq) { in radeon_legacy_tmds_int_mode_set()
803 tmp = tmds->tmds_pll[i].value ; in radeon_legacy_tmds_int_mode_set()
1696 struct radeon_encoder_int_tmds *tmds = NULL; in radeon_legacy_get_tmds_info() local
1699 tmds = kzalloc(sizeof(struct radeon_encoder_int_tmds), GFP_KERNEL); in radeon_legacy_get_tmds_info()
1701 if (!tmds) in radeon_legacy_get_tmds_info()
1705 ret = radeon_atombios_get_tmds_info(encoder, tmds); in radeon_legacy_get_tmds_info()
1707 ret = radeon_legacy_get_tmds_info_from_combios(encoder, tmds); in radeon_legacy_get_tmds_info()
1710 radeon_legacy_get_tmds_info_from_table(encoder, tmds); in radeon_legacy_get_tmds_info()
1712 return tmds; in radeon_legacy_get_tmds_info()
1719 struct radeon_encoder_ext_tmds *tmds = NULL; in radeon_legacy_get_ext_tmds_info() local
1725 tmds = kzalloc(sizeof(struct radeon_encoder_ext_tmds), GFP_KERNEL); in radeon_legacy_get_ext_tmds_info()
1727 if (!tmds) in radeon_legacy_get_ext_tmds_info()
1730 ret = radeon_legacy_get_ext_tmds_info_from_combios(encoder, tmds); in radeon_legacy_get_ext_tmds_info()
1733 radeon_legacy_get_ext_tmds_info_from_table(encoder, tmds); in radeon_legacy_get_ext_tmds_info()
1735 return tmds; in radeon_legacy_get_ext_tmds_info()