Exemplo n.º 1
0
static void iwl5150_set_ct_threshold(struct iwl_priv *priv)
{
	const s32 volt2temp_coef = IWL_5150_VOLTAGE_TO_TEMPERATURE_COEFF;
	s32 threshold = (s32)CELSIUS_TO_KELVIN(CT_KILL_THRESHOLD_LEGACY) -
			iwl_temp_calib_to_offset(priv);

	priv->hw_params.ct_kill_threshold = threshold * volt2temp_coef;
}
Exemplo n.º 2
0
static void iwl5150_temperature(struct iwl_priv *priv)
{
	u32 vt = 0;
	s32 offset =  iwl_temp_calib_to_offset(priv);

	vt = le32_to_cpu(priv->statistics.general.temperature);
	vt = vt / IWL_5150_VOLTAGE_TO_TEMPERATURE_COEFF + offset;
	/* now vt hold the temperature in Kelvin */
	priv->temperature = KELVIN_TO_CELSIUS(vt);
}
static void iwl5150_temperature(struct iwl_priv *priv)
{
    u32 vt = 0;
    s32 offset =  iwl_temp_calib_to_offset(priv->shrd);

    vt = le32_to_cpu(priv->statistics.common.temperature);
    vt = vt / IWL_5150_VOLTAGE_TO_TEMPERATURE_COEFF + offset;

    priv->temperature = KELVIN_TO_CELSIUS(vt);
    iwl_tt_handler(priv);
}