Home
last modified time | relevance | path

Searched refs:alarms (Results 1 – 25 of 54) sorted by relevance

123

/linux/drivers/net/ethernet/sfc/falcon/
H A Dfalcon_boards.c125 u16 alarms; in ef4_check_lm87() local
135 alarms = reg; in ef4_check_lm87()
139 alarms |= reg << 8; in ef4_check_lm87()
140 alarms &= mask; in ef4_check_lm87()
143 if (alarms & LM87_ALARM_TEMP_INT) { in ef4_check_lm87()
150 if (alarms & LM87_ALARM_TEMP_EXT1) { in ef4_check_lm87()
157 elec_fault = alarms & ~(LM87_ALARM_TEMP_INT | LM87_ALARM_TEMP_EXT1); in ef4_check_lm87()
160 if (alarms) in ef4_check_lm87()
165 alarms & 0xff, alarms >> 8, in ef4_check_lm87()
166 (alarms & LM87_ALARM_TEMP_INT) ? in ef4_check_lm87()
[all …]
/linux/drivers/gpu/drm/nouveau/nvkm/subdev/timer/
H A Dbase.c77 list_for_each_entry_safe(alarm, atemp, &tmr->alarms, head) { in nvkm_timer_alarm_trigger()
94 if (list_empty(&tmr->alarms)) in nvkm_timer_alarm_trigger()
122 list_for_each_entry(list, &tmr->alarms, head) { in nvkm_timer_alarm()
130 list = list_first_entry(&tmr->alarms, typeof(*list), head); in nvkm_timer_alarm()
195 INIT_LIST_HEAD(&tmr->alarms); in nvkm_timer_new_()
/linux/Documentation/hwmon/
H A Dxdpe152c4.rst38 and maximum and critical alarms. Low Critical thresholds and Low critical alarm are
62 and critical and low critical alarms.
92 The driver provides for power: input and alarms.
107 and maximum and critical alarms.
H A Dxdpe12284.rst49 and maximum and critical alarms. Critical thresholds and critical alarm are
67 and critical and low critical alarms.
83 The driver provides for power: input and alarms. Power alarm is supported only
95 and maximum and critical alarms.
H A Dgl518sm.rst40 sensors, and four voltage sensors. It can report alarms through the
66 alarms work fine, though.
70 beeping for some alarms.
73 is read at least once (except for temperature alarms). This means that the
77 you can easily miss once-only alarms.
H A Dmc34vr500.rst21 corresponding alarms. For the temperature, the chip can send interrupts if
27 alarms. The interrupts are mapped as follows:
H A Dlm92.rst43 alarms for high, low, and critical thresholds. There's also an hysteresis to
44 control the thresholds for resetting alarms.
H A Dw83791d.rst97 specific alarms. You need both the global beep enable bit and the
107 A similar change has occurred for the bitmap corresponding to the alarms. The
108 original legacy method used a single sysfs alarms file containing a bitmap
109 of triggered alarms. The newer method uses multiple sysfs `*_alarm` files
115 responsible for handling the fact that the alarms and beep_mask bitmaps
152 For legacy code using the alarms and beep_mask files:
H A Dlm78.rst43 seven voltage sensors, VID lines, alarms, and some miscellaneous stuff.
49 this case, alarms are issued during all the time when the actual temperature
77 miss once-only alarms.
H A Dsis5595.rst76 sensors, four or five voltage sensors, and alarms.
105 In addition to the alarms described above, there is a BTI alarm, which gets
115 once-only alarms.
H A Dlm80.rst41 seven voltage sensors, alarms, and some miscellaneous stuff.
71 miss once-only alarms.
H A Dlan966x.rst29 No alarms are supported by the SoC.
H A Dlm87.rst39 rotation speed sensors, up to seven voltage sensors, alarms, and some
64 miss once-only alarms.
H A Dhih6130.rst45 Command mode and alarms are not currently supported.
H A Dwm831x.rst23 reporting of all the input values but does not provide any alarms.
H A Dvia686a.rst46 sensors, five voltage sensors and alarms.
69 miss once-only alarms.
H A Dtmp464.rst41 temperature values, limits, and alarms via the following sysfs files:
H A Dg760a.rst33 The 'alarms' file provides access to the two alarm bits provided by
/linux/Documentation/ABI/testing/
H A Drtc-cdev14 for RTCs that support alarms
17 RTCs that support alarms. Can be set up to 24 hours in the
22 powerful interface, which can issue alarms beyond 24 hours and
H A Dsysfs-driver-w1_therm1 What: /sys/bus/w1/devices/.../alarms
5 (RW) read or write TH and TL (Temperature High an Low) alarms.
10 automatically put to TL. Once set, alarms could be search at
/linux/drivers/hwmon/
H A Dltc2947-core.c275 char alarms[LTC2947_ALERTS_SIZE + 1]; in ltc2947_alarm_read() local
278 memset(alarms, 0, sizeof(alarms)); in ltc2947_alarm_read()
290 ret = regmap_bulk_read(st->map, LTC2947_REG_STATUS, alarms, in ltc2947_alarm_read()
291 sizeof(alarms)); in ltc2947_alarm_read()
296 *val = !!(alarms[offset] & mask); in ltc2947_alarm_read()
H A Dlm90.c769 u16 alarms; /* alarms not yet reported to user */ member
1166 u16 alarms; in lm90_update_alarms_locked() local
1174 alarms = val & ~LM90_STATUS_BUSY; in lm90_update_alarms_locked()
1180 alarms |= val << 8; in lm90_update_alarms_locked()
1190 data->current_alarms |= alarms; in lm90_update_alarms_locked()
1192 data->current_alarms = alarms; in lm90_update_alarms_locked()
1193 data->alarms |= alarms; in lm90_update_alarms_locked()
1553 *val = !!(data->alarms & bit); in lm90_temp_read()
1554 data->alarms &= ~bit; in lm90_temp_read()
1555 data->alarms |= data->current_alarms; in lm90_temp_read()
[all …]
H A Dadt7475.c213 u32 alarms; member
348 (data->alarms >> sattr->index) & 1); in voltage_show()
441 out = (data->alarms >> (sattr->index + 4)) & 1; in temp_show()
446 out = !!(data->alarms & (sattr->index ? 0x8000 : 0x4000)); in temp_show()
718 out = (data->alarms >> (sattr->index + 10)) & 1; in tach_show()
2084 data->alarms = ret << 8; in adt7475_update_measure()
2089 data->alarms |= ret; in adt7475_update_measure()
2127 data->alarms |= ret << 24; in adt7475_update_measure()
2145 data->alarms |= ret << 24; in adt7475_update_measure()
/linux/drivers/gpu/drm/nouveau/include/nvkm/subdev/
H A Dtimer.h24 struct list_head alarms; member
/linux/Documentation/w1/slaves/
H A Dw1_therm.rst93 Sysfs ``alarms`` allow read or write TH and TL (Temperature High an Low) alarms.
96 the device. Lowest value is automatically put to TL. Once set, alarms could

123