Lines Matching refs:tmds
761 struct radeon_encoder_int_tmds *tmds = (struct radeon_encoder_int_tmds *)radeon_encoder->enc_priv; in radeon_legacy_tmds_int_mode_set() local
764 if (tmds->tmds_pll[i].freq == 0) in radeon_legacy_tmds_int_mode_set()
766 if ((uint32_t)(mode->clock / 10) < tmds->tmds_pll[i].freq) { in radeon_legacy_tmds_int_mode_set()
767 tmp = tmds->tmds_pll[i].value ; in radeon_legacy_tmds_int_mode_set()
976 struct radeon_encoder_ext_tmds *tmds = radeon_encoder->enc_priv; in radeon_ext_tmds_enc_destroy() local
977 if (tmds) { in radeon_ext_tmds_enc_destroy()
978 if (tmds->i2c_bus) in radeon_ext_tmds_enc_destroy()
979 radeon_i2c_destroy(tmds->i2c_bus); in radeon_ext_tmds_enc_destroy()
1550 struct radeon_encoder_int_tmds *tmds = NULL; in radeon_legacy_get_tmds_info() local
1553 tmds = kzalloc(sizeof(struct radeon_encoder_int_tmds), GFP_KERNEL); in radeon_legacy_get_tmds_info()
1555 if (!tmds) in radeon_legacy_get_tmds_info()
1559 ret = radeon_atombios_get_tmds_info(encoder, tmds); in radeon_legacy_get_tmds_info()
1561 ret = radeon_legacy_get_tmds_info_from_combios(encoder, tmds); in radeon_legacy_get_tmds_info()
1564 radeon_legacy_get_tmds_info_from_table(encoder, tmds); in radeon_legacy_get_tmds_info()
1566 return tmds; in radeon_legacy_get_tmds_info()
1573 struct radeon_encoder_ext_tmds *tmds = NULL; in radeon_legacy_get_ext_tmds_info() local
1579 tmds = kzalloc(sizeof(struct radeon_encoder_ext_tmds), GFP_KERNEL); in radeon_legacy_get_ext_tmds_info()
1581 if (!tmds) in radeon_legacy_get_ext_tmds_info()
1584 ret = radeon_legacy_get_ext_tmds_info_from_combios(encoder, tmds); in radeon_legacy_get_ext_tmds_info()
1587 radeon_legacy_get_ext_tmds_info_from_table(encoder, tmds); in radeon_legacy_get_ext_tmds_info()
1589 return tmds; in radeon_legacy_get_ext_tmds_info()