/* Read a a 16-bit signed value */
raw = be16_to_cpup((__le16 *)buf);
/* Convert 8.8-bit to 16.16 fixed point */
*value = ((s32)raw) << 8;
mutex_unlock(&pv->lock); return 0;
error:
mutex_unlock(&pv->lock); return -1;
}
/* * Scaling factors for the AD7417 ADC converters (except * for the CPU diode which is obtained from the EEPROM). * Those values are obtained from the property list of * the darwin driver
*/ #define ADC_12V_CURRENT_SCALE 0x0320 /* _AD2 */ #define ADC_CPU_VOLTAGE_SCALE 0x00a0 /* _AD3 */ #define ADC_CPU_CURRENT_SCALE 0x1f40 /* _AD4 */
staticvoid wf_ad7417_adc_convert(struct wf_ad7417_priv *pv, int chan, s32 raw, s32 *value)
{ switch(chan) { case 1: /* Diode */
*value = (raw * (s32)pv->mpu->mdiode +
((s32)pv->mpu->bdiode << 12)) >> 2; break; case 2: /* 12v current */
*value = raw * ADC_12V_CURRENT_SCALE; break; case 3: /* core voltage */
*value = raw * ADC_CPU_VOLTAGE_SCALE; break; case 4: /* core current */
*value = raw * ADC_CPU_CURRENT_SCALE; break;
}
}
staticint wf_ad7417_adc_get(struct wf_sensor *sr, s32 *value)
{ struct wf_ad7417_priv *pv = sr->priv; int chan = sr - pv->sensors; int i, rc;
u8 buf[2];
u16 raw;
*value = 0;
mutex_lock(&pv->lock); for (i = 0; i < 10; i++) { /* Set channel */
buf[0] = 1;
buf[1] = (pv->config & 0x1f) | (chan << 5);
rc = i2c_master_send(pv->i2c, buf, 2); if (rc < 0) goto error;
/* Wait for conversion */
msleep(1);
/* Switch to data register */
buf[0] = 4;
rc = i2c_master_send(pv->i2c, buf, 1); if (rc < 0) goto error;
/* Read result */
rc = i2c_master_recv(pv->i2c, buf, 2); if (rc < 0) goto error;
/* Read a a 16-bit signed value */
raw = be16_to_cpup((__le16 *)buf) >> 6;
wf_ad7417_adc_convert(pv, chan, raw, value);
dev_vdbg(&pv->i2c->dev, "ADC chan %d [%s]" " raw value: 0x%x, conv to: 0x%08x\n",
chan, sr->name, raw, *value);
mutex_unlock(&pv->lock); return 0;
error:
dev_dbg(&pv->i2c->dev, "Error reading ADC, try %d...\n", i); if (i < 9)
msleep(10);
}
mutex_unlock(&pv->lock); return -1;
}
/* * Read ADC the configuration register and cache it. We * also make sure Config2 contains proper values, I've seen * cases where we got stale grabage in there, thus preventing * proper reading of conv. values
*/
loc = of_get_property(client->dev.of_node, "hwsensor-location", NULL); if (!loc) {
dev_warn(&client->dev, "Missing hwsensor-location property!\n"); return -ENXIO;
}
/* * Identify which CPU we belong to by looking at the first entry * in the hwsensor-location list
*/ if (!strncmp(loc, "CPU A", 5))
cpu_nr = 0; elseif (!strncmp(loc, "CPU B", 5))
cpu_nr = 1; else {
pr_err("wf_ad7417: Can't identify location %s\n", loc); return -ENXIO;
}
mpu = wf_get_mpu(cpu_nr); if (!mpu) {
dev_err(&client->dev, "Failed to retrieve MPU data\n"); return -ENXIO;
}
/* Initialize the chip */
wf_ad7417_init_chip(pv);
/* * We cannot rely on Apple device-tree giving us child * node with the names of the individual sensors so we * just hard code what we know about them
*/
wf_ad7417_add_sensor(pv, 0, "cpu-amb-temp", &wf_ad7417_temp_ops);
wf_ad7417_add_sensor(pv, 1, "cpu-diode-temp", &wf_ad7417_adc_ops);
wf_ad7417_add_sensor(pv, 2, "cpu-12v-current", &wf_ad7417_adc_ops);
wf_ad7417_add_sensor(pv, 3, "cpu-voltage", &wf_ad7417_adc_ops);
wf_ad7417_add_sensor(pv, 4, "cpu-current", &wf_ad7417_adc_ops);
staticint wf_ad7417_init(void)
{ /* This is only supported on these machines */ if (!of_machine_is_compatible("PowerMac7,2") &&
!of_machine_is_compatible("PowerMac7,3") &&
!of_machine_is_compatible("RackMac3,1")) return -ENODEV;
Die Informationen auf dieser Webseite wurden
nach bestem Wissen sorgfältig zusammengestellt. Es wird jedoch weder Vollständigkeit, noch Richtigkeit,
noch Qualität der bereit gestellten Informationen zugesichert.
Bemerkung:
Die farbliche Syntaxdarstellung und die Messung sind noch experimentell.