Home
last modified time | relevance | path

Searched full:sensors (Results 1 – 25 of 624) sorted by relevance

12345678910>>...25

/linux/drivers/thermal/intel/
H A Dintel_soc_dts_iosf.c43 static int update_trip_temp(struct intel_soc_dts_sensors *sensors, in update_trip_temp() argument
56 if (sensors->intr_type == INTEL_SOC_DTS_INTERRUPT_MSI) in update_trip_temp()
59 temp_out = (sensors->tj_max - temp) / 1000; in update_trip_temp()
137 struct intel_soc_dts_sensors *sensors = dts->sensors; in sys_set_trip_temp() local
141 if (temp > sensors->tj_max) in sys_set_trip_temp()
144 mutex_lock(&sensors->dts_update_lock); in sys_set_trip_temp()
145 status = update_trip_temp(sensors, trip_index, temp); in sys_set_trip_temp()
146 mutex_unlock(&sensors->dts_update_lock); in sys_set_trip_temp()
157 struct intel_soc_dts_sensors *sensors; in sys_get_curr_temp() local
160 sensors = dts->sensors; in sys_get_curr_temp()
[all …]
/linux/drivers/hwmon/occ/
H A Dcommon.c242 struct occ_sensors *sensors = &occ->sensors; in occ_show_temp_1() local
249 temp = ((struct temp_sensor_1 *)sensors->temp.data) + sattr->index; in occ_show_temp_1()
278 struct occ_sensors *sensors = &occ->sensors; in occ_show_temp_2() local
285 temp = ((struct temp_sensor_2 *)sensors->temp.data) + sattr->index; in occ_show_temp_2()
329 struct occ_sensors *sensors = &occ->sensors; in occ_show_temp_10() local
336 temp = ((struct temp_sensor_10 *)sensors->temp.data) + sattr->index; in occ_show_temp_10()
376 struct occ_sensors *sensors = &occ->sensors; in occ_show_freq_1() local
383 freq = ((struct freq_sensor_1 *)sensors->freq.data) + sattr->index; in occ_show_freq_1()
406 struct occ_sensors *sensors = &occ->sensors; in occ_show_freq_2() local
413 freq = ((struct freq_sensor_2 *)sensors->freq.data) + sattr->index; in occ_show_freq_2()
[all …]
/linux/drivers/hwmon/
H A Dibmpex.c3 * A hwmon driver for the IBM PowerExecutive temperature/power sensors
90 struct ibmpex_sensor_data *sensors; member
228 if (!data->sensors[i].in_use) in ibmpex_update_device()
233 data->sensors[i].values[0] = in ibmpex_update_device()
235 data->sensors[i].values[1] = in ibmpex_update_device()
237 data->sensors[i].values[2] = in ibmpex_update_device()
267 int mult = data->sensors[attr->index].multiplier; in ibmpex_show_sensor()
271 data->sensors[attr->index].values[attr->nr] * mult); in ibmpex_show_sensor()
339 sysfs_attr_init(&data->sensors[sensor].attr[func].dev_attr.attr); in create_sensor()
340 data->sensors[sensor].attr[func].dev_attr.attr.name = n; in create_sensor()
[all …]
H A Dmacsmc-hwmon.c6 * measuring data from sensors across the SoC and machine. These include power,
7 * temperature, voltage and current sensors. Some "sensors" actually expose
12 * set of sensors. For example, M1 MacBooks expose battery telemetry sensors
14 * sensors for a given platform are described in the device tree in a child
15 * node of the SMC device. We must walk this list of available sensors and
67 struct macsmc_hwmon_sensor *sensors; member
99 *str = hwmon->temp.sensors[channel].label; in macsmc_hwmon_read_label()
102 *str = hwmon->volt.sensors[channel].label; in macsmc_hwmon_read_label()
105 *str = hwmon->curr.sensors[channel].label; in macsmc_hwmon_read_label()
108 *str = hwmon->power.sensors[channel].label; in macsmc_hwmon_read_label()
[all …]
H A Dasus-ec-sensors.c189 * The values for temperature sensor readings without physical sensors connected.
218 * All the known sensors for ASUS EC controllers. These arrays have to be sorted
439 unsigned long sensors; member
452 .sensors = SENSOR_SET_TEMP_CHIPSET_CPU_MB |
462 .sensors = SENSOR_SET_TEMP_CHIPSET_CPU_MB |
473 .sensors = SENSOR_SET_TEMP_CHIPSET_CPU_MB |
482 .sensors = SENSOR_TEMP_CPU | SENSOR_TEMP_CPU_PACKAGE |
491 .sensors = SENSOR_TEMP_CPU | SENSOR_TEMP_CPU_PACKAGE |
499 .sensors = SENSOR_TEMP_CPU | SENSOR_TEMP_CPU_PACKAGE |
507 .sensors = SENSOR_TEMP_CPU | SENSOR_TEMP_CPU_PACKAGE |
[all …]
H A Dibmaem.c4 * temperature/power/energy sensors and capping functionality.
138 /* Function and buffer to update sensors */
143 * AEM 1.x sensors:
144 * Available sensors:
148 * AEM 2.x sensors:
151 * Two temperature sensors
156 struct sensor_device_attribute sensors[AEM_NUM_SENSORS]; member
210 /* These are used to query sensors */
434 /* Update all AEM1 sensors */
447 /* Update all AEM2 sensors */
[all …]
H A Dcgbc-hwmon.c33 struct cgbc_hwmon_sensor *sensors; member
99 struct cgbc_hwmon_sensor *sensor = hwmon->sensors; in cgbc_hwmon_probe_sensors()
109 hwmon->sensors = devm_kzalloc(dev, sizeof(*hwmon->sensors) * nb_sensors, GFP_KERNEL); in cgbc_hwmon_probe_sensors()
110 if (!hwmon->sensors) in cgbc_hwmon_probe_sensors()
113 sensor = hwmon->sensors; in cgbc_hwmon_probe_sensors()
121 * We got data for the first sensor when we ask the number of sensors to the Board in cgbc_hwmon_probe_sensors()
139 * The Board Controller doesn't differentiate current and voltage sensors. in cgbc_hwmon_probe_sensors()
171 * The Board Controller doesn't differentiate current and voltage sensors. in cgbc_hwmon_find_sensor()
173 * sensors. in cgbc_hwmon_find_sensor()
179 if (hwmon->sensors[i].type == type && hwmon->sensors[i].channel == channel) { in cgbc_hwmon_find_sensor()
[all …]
H A Dibmpowernv.c3 * IBM PowerNV platform sensors for temperature/fan/voltage/power
33 * Enumerates all the types of sensors in the POWERNV platform and does index
36 enum sensors { enum
50 * PowerNV firmware (skiboot). These are ordered as 'enum sensors'.
77 enum sensors type;
93 u32 sensors_count; /* Total count of sensors from each group */
199 * The digital thermal sensors are associated in make_sensor_label()
248 static const char *convert_opal_attr_name(enum sensors type, in convert_opal_attr_name()
274 enum sensors type, u32 *index) in parse_opal_node_name()
293 enum sensors type; in get_sensor_type()
[all …]
H A DKconfig13 can include temperature sensors, voltage sensors, fan speed
14 sensors and various additional features such as the ability to
17 sensors chip(s) below.
20 sensors-detect script from the lm_sensors package. Read
61 third revision of the Abit uGuru chip. Only reading the sensors
75 current and power sensors of Ampere's Altra processor family SoC
83 AD7314, ADT7301 and ADT7302 temperature sensors.
254 DHT20 temperature and humidity sensors
264 If you say yes here you get support for sensors and fans of
275 If you say yes here you get support for the PVT sensors of
[all …]
H A Dsurface_temp.c20 * Available sensors are indicated by a 16-bit bitfield, where a 1 marks the
21 * presence of a sensor. So we have at most 16 possible sensors/channels.
55 static int ssam_tmp_get_available_sensors(struct ssam_device *sdev, s16 *sensors) in ssam_tmp_get_available_sensors() argument
64 *sensors = le16_to_cpu(sensors_le); in ssam_tmp_get_available_sensors()
113 s16 sensors; member
123 if (!(ssam_temp->sensors & BIT(channel))) in ssam_temp_hwmon_is_visible()
186 s16 sensors; in ssam_temp_probe() local
190 status = ssam_tmp_get_available_sensors(sdev, &sensors); in ssam_temp_probe()
199 ssam_temp->sensors = sensors; in ssam_temp_probe()
203 if (!(sensors & BIT(channel))) in ssam_temp_probe()
/linux/Documentation/hwmon/
H A Daquacomputer_d5next.rst27 This driver exposes hardware sensors of listed Aquacomputer devices, which
31 virtual temperature sensors, as well as two flow sensors. The fans expose their
35 For the D5 Next pump, available sensors are pump and fan speed, power, voltage
36 and current, as well as coolant temperature and eight virtual temp sensors. Also
40 sensors will report zeroes.
48 The Octo exposes four physical and sixteen virtual temperature sensors, a flow sensor
52 The Quadro exposes four physical and sixteen virtual temperature sensors, a flow
56 The Farbwerk and Farbwerk 360 expose four temperature sensors. Additionally,
57 sixteen virtual temperature sensors of the Farbwerk 360 are exposed.
63 The Leakshield exposes two temperature sensors and coolant pressure (current, min, max and
[all …]
H A Dibmpowernv.rst13 This driver implements reading the platform sensors data like temperature/fan/
21 All the nodes in the DT appear under "/ibm,opal/sensors" and each valid node in
43 tempX_enable Enable/disable all temperature sensors belonging to the
46 disable/enable all of its temperature sensors.
56 inX_enable Enable/disable all voltage sensors belonging to the
59 disable/enable all of its voltage sensors.
67 powerX_enable Enable/disable all power sensors belonging to the
70 disable/enable all of its power sensors.
78 currX_enable Enable/disable all current sensors belonging to the
81 disable/enable all of its current sensors.
H A Duserspace-tools.rst15 Lm-sensors
20 http://www.lm-sensors.org/ or as a package from your Linux distribution.
23 Get lm-sensors from project web site. Please note, you need only userspace
28 0) get lm-sensors userspace utils
31 2) run sensors-detect script, it will tell you what modules you need to load.
32 3) load them and run "sensors" command, you should see some results.
33 4) fix sensors.conf, labels, limits, fan divisors
H A Dlm83.rst64 Most motherboards come with more than just temperature sensors for
66 sensors. This means that temperature-only chips are usually used as
69 temperature sensors (motherboard, processor, power supply) and primary
70 chips provide some temperature sensors, the secondary chip, if needed,
81 CPU. The two other sensors must be used to measure the temperature of
92 all four sensors. There is no hysteresis mechanism as found on most
93 recent temperature sensors.
/linux/Documentation/driver-api/iio/
H A Dintro.rst12 sensors used to monitor and control the system itself, like fan speed control
25 * color and light sensors
27 * pressure sensors
28 * proximity sensors
29 * temperature sensors
31 Usually these sensors are connected via :doc:`SPI <../spi>` or
32 :doc:`I2C <../i2c>`. A common use case of the sensors devices is to have
/linux/drivers/iio/proximity/
H A DKconfig3 # Proximity sensors
6 menu "Lightning sensors"
22 menu "Proximity and distance sensors"
53 SAR sensors. This sensors is used for proximity detection applications.
96 tristate "MaxSonar I2CXL family ultrasonic sensors"
101 Say Y to build a driver for the ultrasonic sensors I2CXL of
110 tristate "Parallax GPIO bitbanged ranger sensors"
113 Say Y here to build a driver for GPIO bitbanged ranger sensors
219 ultrasonic ranger sensors with i2c interface.
241 ToF ranger sensors with i2c interface.
[all …]
/linux/drivers/iio/humidity/
H A DKconfig5 menu "Humidity sensors"
20 tristate "DHT11 (and compatible sensors) driver"
25 Other sensors should work as well as long as they speak the
34 humidity and temperature sensors.
47 humidity and temperature sensors.
57 HDC2010 and HDC2080 relative humidity and temperature sensors.
69 sensors.
136 tristate "Si7013/20/21 Relative Humidity and Temperature Sensors"
140 Relative Humidity and Temperature Sensors. This driver also
/linux/drivers/iio/chemical/
H A DKconfig3 # Chemical sensors
6 menu "Chemical Sensors"
20 tristate "Atlas Scientific OEM SM sensors"
28 Atlas Scientific OEM SM sensors:
37 tristate "Atlas Scientific EZO sensors"
41 Atlas Scientific EZO sensors
104 tristate "AMS iAQ-Core VOC sensors"
109 sensors
190 tristate "Sensirion SGPxx gas sensors"
195 Sensirion SGP gas sensors:
[all …]
/linux/drivers/iio/common/cros_ec_sensors/
H A DKconfig3 # Chrome OS Embedded Controller managed sensors library
6 tristate "ChromeOS EC Sensors Core"
11 Base module for the ChromeOS EC Sensors module.
17 tristate "ChromeOS EC Contiguous Sensors"
20 Module to handle 3d contiguous sensors like
35 tristate "ChromeOS EC Activity Sensors"
/linux/drivers/thermal/mediatek/
H A Dauxadc_thermal.c93 /* MT8173 thermal sensors */
100 /* AUXADC channel 11 is used for the temperature sensors */
103 /* The total number of temperature sensors in the MT8173 */
125 * MT8183 has 6 sensors and needs 6 VTS calibration data.
126 * MT8173 has 5 sensors and needs 5 VTS calibration data.
127 * MT2701 has 3 sensors and needs 3 VTS calibration data.
128 * MT2712 has 4 sensors and needs 4 VTS calibration data.
187 /* MT2701 thermal sensors */
192 /* AUXADC channel 11 is used for the temperature sensors */
195 /* The total number of temperature sensors in the MT2701 */
[all …]
/linux/drivers/hid/
H A Dhid-steam.c409 struct input_dev __rcu *sensors; member
1230 struct input_dev *sensors; in steam_sensors_register() local
1235 sensors = rcu_dereference(steam->sensors); in steam_sensors_register()
1237 if (sensors) { in steam_sensors_register()
1242 sensors = input_allocate_device(); in steam_sensors_register()
1243 if (!sensors) in steam_sensors_register()
1246 input_set_drvdata(sensors, steam); in steam_sensors_register()
1247 sensors->dev.parent = &hdev->dev; in steam_sensors_register()
1269 sensors->open = steam_sensor_open; in steam_sensors_register()
1270 sensors->close = steam_sensor_close; in steam_sensors_register()
[all …]
/linux/arch/arm64/boot/dts/ti/
H A Dk3-j721s2-thermal.dtsi11 thermal-sensors = <&wkup_vtm0 0>;
25 thermal-sensors = <&wkup_vtm0 1>;
39 thermal-sensors = <&wkup_vtm0 2>;
53 thermal-sensors = <&wkup_vtm0 3>;
67 thermal-sensors = <&wkup_vtm0 4>;
81 thermal-sensors = <&wkup_vtm0 5>;
95 thermal-sensors = <&wkup_vtm0 6>;
/linux/Documentation/devicetree/bindings/iio/pressure/
H A Dasc,dlhl60d.yaml7 title: All Sensors DLH series low voltage digital pressure sensors
13 Bindings for the All Sensors DLH series pressure sensors.
15 Specifications about the sensors can be found at:
/linux/drivers/platform/x86/dell/
H A Ddell-wmi-ddv.c253 struct dell_wmi_ddv_sensors *sensors, size_t entry_size) in dell_wmi_ddv_update_sensors() argument
259 if (sensors->buffer) { in dell_wmi_ddv_update_sensors()
260 if (time_before(jiffies, sensors->timestamp + HZ)) in dell_wmi_ddv_update_sensors()
263 kfree(sensors->buffer); in dell_wmi_ddv_update_sensors()
264 sensors->buffer = NULL; in dell_wmi_ddv_update_sensors()
284 sensors->buffer = buffer; in dell_wmi_ddv_update_sensors()
285 sensors->entries = entries; in dell_wmi_ddv_update_sensors()
286 sensors->timestamp = jiffies; in dell_wmi_ddv_update_sensors()
535 static void dell_wmi_ddv_hwmon_cache_invalidate(struct dell_wmi_ddv_sensors *sensors) in dell_wmi_ddv_hwmon_cache_invalidate() argument
537 if (!sensors->active) in dell_wmi_ddv_hwmon_cache_invalidate()
[all …]
/linux/drivers/iio/pressure/
H A Dhsc030pa_i2c.c7 …/en-us/products/sensors/pressure-sensors/board-mount-pressure-sensors/common/documents/sps-siot-i2…
8 …oneywell.com/content/dam/honeywell-edam/sps/siot/en-us/products/sensors/pressure-sensors/common/do…

12345678910>>...25