Searched refs:triggers (Results 1 - 25 of 39) sorted by relevance

12

/linux-master/tools/testing/selftests/powerpc/dexcr/
H A Ddexcr.c30 * If the SPR is not recognised by the hardware it triggers
47 * Just test if a bad hashchk triggers a signal, without checking
53 volatile bool triggers; local
59 triggers = true;
61 triggers = false;
65 return triggers;
115 * If they differ, an interrupt triggers.
/linux-master/drivers/net/wireless/ath/ath9k/
H A Dwow.c173 u8 triggers; local
187 ath_err(common, "None of the WoW triggers enabled\n");
213 triggers = ath9k_wow_map_triggers(sc, wowlan);
214 if (!triggers) {
215 ath_dbg(common, WOW, "No valid WoW triggers\n");
238 if (triggers & AH_WOW_USER_PATTERN_EN) {
269 ath9k_hw_wow_enable(ah, triggers);
272 ath_dbg(common, WOW, "Suspend with WoW triggers: 0x%x\n", triggers);
/linux-master/drivers/gpu/drm/amd/display/amdgpu_dm/
H A Damdgpu_dm_psr.c175 params.triggers.cursor_update = true;
176 params.triggers.overlay_update = true;
177 params.triggers.surface_update = true;
/linux-master/drivers/iio/accel/
H A Dbmc150-accel.h62 struct bmc150_accel_trigger triggers[BMC150_ACCEL_TRIGGERS]; member in struct:bmc150_accel_data
H A Dbmc150-accel-core.c877 if (data->triggers[i].indio_trig == trig)
1256 if (t == &t->data->triggers[BMC150_ACCEL_TRIGGER_DATA_READY])
1409 if (data->triggers[i].enabled) {
1410 iio_trigger_poll(data->triggers[i].indio_trig);
1447 if (data->triggers[i].indio_trig) {
1448 iio_trigger_unregister(data->triggers[i].indio_trig);
1449 data->triggers[i].indio_trig = NULL;
1461 struct bmc150_accel_trigger *t = &data->triggers[i];
/linux-master/kernel/trace/
H A Dtrace_events_trigger.c3 * trace_events_trigger - trace event triggers
25 /* make sure current triggers exit before free */
32 * event_triggers_call - Call triggers associated with a trace event
66 if (list_empty(&file->triggers))
69 list_for_each_entry_rcu(data, &file->triggers, list) {
121 list_for_each_entry_rcu(data, &file->triggers, list) {
140 return seq_list_next(t, &event_file->triggers, pos);
147 list_for_each_entry_rcu(data, &file->triggers, list,
166 if (list_empty(&event_file->triggers) || !check_user_trigger(event_file))
169 return seq_list_start(&event_file->triggers, *po
[all...]
H A Dtrace_events_hist.c3 * trace_events_hist - trace event hist triggers
1135 list_for_each_entry(test, &file->triggers, list) {
1187 list_for_each_entry(test, &file->triggers, list) {
2844 list_for_each_entry(test, &file->triggers, list) {
2900 list_for_each_entry(test, &file->triggers, list) {
5610 list_for_each_entry(data, &event_file->triggers, list) {
5889 list_for_each_entry(data, &event_file->triggers, list) {
6296 list_for_each_entry(test, &file->triggers, list) {
6340 list_for_each_entry(test, &file->triggers, list) {
6394 list_add_tail_rcu(&data->list, &file->triggers);
[all...]
/linux-master/drivers/platform/x86/dell/
H A Ddell-laptop.c1067 * cbRES2, byte2 Currently active auto keyboard illumination triggers.
1109 * cbArg2, byte2 Desired auto keyboard illumination triggers. Must remain inactive to allow
1164 u8 triggers; member in struct:kbd_info
1174 u8 triggers; member in struct:kbd_state
1237 info->triggers = buffer.output[2] & 0xFF;
1324 state->triggers = (buffer.output[1] >> 16) & 0xFF;
1344 input1 |= (state->triggers & 0xFF) << 16;
1745 if (!(kbd_info.triggers & BIT(i)))
1752 triggers_enabled && (state.triggers & BIT(i))) {
1757 (!triggers_enabled || !(state.triggers
[all...]
/linux-master/drivers/iio/adc/
H A Dat91_adc.c160 * struct at91_adc_trigger - description of triggers
210 const struct at91_adc_trigger *triggers; member in struct:at91_adc_caps
539 const struct at91_adc_trigger *triggers,
550 triggers[i].name);
556 if (triggers[i].value == 0)
558 return triggers[i].value;
577 st->caps->triggers,
659 if (st->caps->triggers[i].is_external && !(st->use_external))
663 st->caps->triggers + i);
1014 st->use_external = of_property_read_bool(node, "atmel,adc-use-external-triggers");
538 at91_adc_get_trigger_value_by_name(struct iio_dev *idev, const struct at91_adc_trigger *triggers, const char *trigger_name) argument
[all...]
/linux-master/drivers/gpu/drm/amd/display/dc/hwss/dcn31/
H A Ddcn31_hwseq.c623 unsigned int triggers = 0; local
625 if (params->triggers.surface_update)
626 triggers |= 0x100;
627 if (params->triggers.cursor_update)
628 triggers |= 0x8;
629 if (params->triggers.force_trigger)
630 triggers |= 0x1;
634 triggers, params->num_frames);
/linux-master/fs/ocfs2/
H A Djournal.c488 static inline struct ocfs2_triggers *to_ocfs2_trigger(struct jbd2_buffer_trigger_type *triggers) argument
490 return container_of(triggers, struct ocfs2_triggers, ot_triggers);
493 static void ocfs2_frozen_trigger(struct jbd2_buffer_trigger_type *triggers, argument
497 struct ocfs2_triggers *ot = to_ocfs2_trigger(triggers);
502 * __ocfs2_journal_access() will only set the triggers if
512 static void ocfs2_dq_frozen_trigger(struct jbd2_buffer_trigger_type *triggers, argument
522 * __ocfs2_journal_access() will only set the triggers if
532 static void ocfs2_db_frozen_trigger(struct jbd2_buffer_trigger_type *triggers, argument
542 * __ocfs2_journal_access() will only set the triggers if
548 static void ocfs2_abort_trigger(struct jbd2_buffer_trigger_type *triggers, argument
631 __ocfs2_journal_access(handle_t *handle, struct ocfs2_caching_info *ci, struct buffer_head *bh, struct ocfs2_triggers *triggers, int type) argument
[all...]
/linux-master/fs/jbd2/
H A Dtransaction.c950 * triggers.
1436 * jbd2_journal_set_triggers() - Add triggers for commit writeout
1440 * Set any triggers on this journal_head. This is always safe, because
1441 * triggers for a committing buffer will be saved off, and triggers for
1444 * Call with NULL to clear the triggers.
1458 struct jbd2_buffer_trigger_type *triggers)
1462 if (!triggers || !triggers->t_frozen)
1465 triggers
1457 jbd2_buffer_frozen_trigger(struct journal_head *jh, void *mapped_data, struct jbd2_buffer_trigger_type *triggers) argument
1468 jbd2_buffer_abort_trigger(struct journal_head *jh, struct jbd2_buffer_trigger_type *triggers) argument
[all...]
/linux-master/drivers/infiniband/hw/hfi1/
H A Dsysfs.c533 temp.triggers & 0x1,
534 temp.triggers & 0x2,
535 temp.triggers & 0x4);
/linux-master/drivers/gpu/drm/amd/display/dc/hwss/dcn35/
H A Ddcn35_hwseq.c1343 unsigned int triggers = 0; local
1345 if (params->triggers.surface_update)
1346 triggers |= 0x200;/*bit 9 : 10 0000 0000*/
1347 if (params->triggers.cursor_update)
1348 triggers |= 0x8;/*bit3*/
1349 if (params->triggers.force_trigger)
1350 triggers |= 0x1;
1354 triggers, params->num_frames);
/linux-master/tools/bootconfig/scripts/
H A Dftrace2bconf.sh171 ! ERROR: hist triggers in $UNRESOLVED_EVENTS use some undefined variables.
/linux-master/fs/ext4/
H A Dorphan.c552 void ext4_orphan_file_block_trigger(struct jbd2_buffer_trigger_type *triggers, argument
556 struct super_block *sb = EXT4_TRIGGER(triggers)->sb;
/linux-master/drivers/leds/
H A DMakefile8 obj-$(CONFIG_LEDS_TRIGGERS) += led-triggers.o
/linux-master/kernel/sched/
H A Dpsi.c442 struct list_head *triggers; local
446 triggers = &group->avg_triggers;
449 triggers = &group->rtpoll_triggers;
457 list_for_each_entry(t, triggers, node) {
1118 /* All triggers must be removed by now */
1413 * Reset min update period for the remaining triggers
/linux-master/drivers/iio/trigger/
H A Dstm32-timer-trigger.c22 /* List the triggers created by each timer */
43 /* List the triggers accepted by each timer */
94 const void *triggers; member in struct:stm32_timer_trigger
402 const char * const *cur = priv->triggers;
425 * should only be available on trgo/trgo2 triggers
785 /* Create an IIO device only if we have triggers to be validated */
798 priv->triggers = triggers_table[index];
817 /* Unregister triggers before everything can be safely turned off */
865 /* restore sampling_frequency (trgo / trgo2 triggers) */
/linux-master/drivers/tty/serial/
H A Drda-uart.c245 unsigned int ctrl, cmd_set, cmd_clr, triggers; local
310 triggers = (RDA_UART_AFC_LEVEL(20) | RDA_UART_RX_TRIGGER(16));
314 rda_uart_write(port, triggers, RDA_UART_IRQ_TRIGGERS);
/linux-master/drivers/net/wireless/rsi/
H A Drsi_91x_mac80211.c1846 rsi_dbg(INFO_ZONE, "Mapping wowlan triggers\n");
1865 u16 triggers = 0; local
1874 rsi_dbg(ERR_ZONE, "WoW triggers not enabled\n");
1879 triggers = rsi_wow_map_triggers(common, wowlan);
1880 if (!triggers) {
1881 rsi_dbg(ERR_ZONE, "%s:No valid WoW triggers\n", __func__);
1890 rsi_dbg(INFO_ZONE, "TRIGGERS %x\n", triggers);
1895 rsi_send_wowlan_request(common, triggers, 1);
/linux-master/drivers/gpu/drm/amd/display/dc/hwss/dce110/
H A Ddce110_hwseq.c1620 /* Event triggers and num frames initialized for DRR, but can be
1982 * some GSL stuff. Static screen triggers may be programmed differently
2012 unsigned int triggers = 0; local
2014 if (params->triggers.overlay_update)
2015 triggers |= 0x100;
2016 if (params->triggers.surface_update)
2017 triggers |= 0x80;
2018 if (params->triggers.cursor_update)
2019 triggers |= 0x2;
2020 if (params->triggers
[all...]
/linux-master/drivers/comedi/drivers/
H A Dcb_pcidas64.c1164 /* configure digital triggers to trigger on falling edge */
2103 unsigned int triggers; local
2105 /* Step 1 : check if triggers are trivially valid */
2109 triggers = TRIG_TIMER;
2111 triggers |= TRIG_OTHER;
2113 triggers |= TRIG_FOLLOW;
2114 err |= comedi_check_trigger_src(&cmd->scan_begin_src, triggers);
2116 triggers = TRIG_TIMER;
2118 triggers |= TRIG_NOW;
2120 triggers |
[all...]
/linux-master/include/linux/
H A Djbd2.h1470 struct jbd2_buffer_trigger_type *triggers);
1472 struct jbd2_buffer_trigger_type *triggers);
/linux-master/drivers/gpu/drm/amd/display/dc/hwss/dcn10/
H A Ddcn10_hwseq.c3205 * some GSL stuff. Static screen triggers may be programmed differently
3238 unsigned int triggers = 0; local
3240 if (params->triggers.surface_update)
3241 triggers |= 0x80;
3242 if (params->triggers.cursor_update)
3243 triggers |= 0x2;
3244 if (params->triggers.force_trigger)
3245 triggers |= 0x1;
3250 triggers, params->num_frames);

Completed in 497 milliseconds

12