Lines Matching refs:sensor
346 rockchip_thermal_toggle_sensor(struct rockchip_thermal_sensor *sensor, bool on) in rockchip_thermal_toggle_sensor() argument
348 struct thermal_zone_device *tzd = sensor->tzd; in rockchip_thermal_toggle_sensor()
371 struct rockchip_thermal_sensor *sensor = _sensor; in rockchip_thermal_get_temp() local
372 struct rockchip_thermal_data *thermal = sensor->thermal; in rockchip_thermal_get_temp()
373 const struct rockchip_tsadc_chip *tsadc = sensor->thermal->chip; in rockchip_thermal_get_temp()
376 retval = tsadc->get_temp(sensor->id, thermal->regs, out_temp); in rockchip_thermal_get_temp()
378 sensor->id, *out_temp, retval); in rockchip_thermal_get_temp()
447 struct rockchip_thermal_sensor *sensor, in rockchip_thermal_register_sensor() argument
456 sensor->thermal = thermal; in rockchip_thermal_register_sensor()
457 sensor->id = id; in rockchip_thermal_register_sensor()
458 sensor->tzd = thermal_zone_of_sensor_register(&pdev->dev, id, sensor, in rockchip_thermal_register_sensor()
460 if (IS_ERR(sensor->tzd)) { in rockchip_thermal_register_sensor()
461 error = PTR_ERR(sensor->tzd); in rockchip_thermal_register_sensor()
617 struct rockchip_thermal_sensor *sensor = &thermal->sensors[i]; in rockchip_thermal_remove() local
619 rockchip_thermal_toggle_sensor(sensor, false); in rockchip_thermal_remove()
620 thermal_zone_of_sensor_unregister(&pdev->dev, sensor->tzd); in rockchip_thermal_remove()