/Linux-v5.10/drivers/input/joystick/iforce/ |
D | iforce-ff.c | 239 if (old->u.periodic.envelope.attack_length != effect->u.periodic.envelope.attack_length in need_envelope_modifier() 240 || old->u.periodic.envelope.attack_level != effect->u.periodic.envelope.attack_level in need_envelope_modifier() 241 || old->u.periodic.envelope.fade_length != effect->u.periodic.envelope.fade_length in need_envelope_modifier() 242 || old->u.periodic.envelope.fade_level != effect->u.periodic.envelope.fade_level) in need_envelope_modifier() 266 return (old->u.periodic.period != new->u.periodic.period in need_period_modifier() 267 || old->u.periodic.magnitude != new->u.periodic.magnitude in need_period_modifier() 268 || old->u.periodic.offset != new->u.periodic.offset in need_period_modifier() 269 || old->u.periodic.phase != new->u.periodic.phase); in need_period_modifier() 352 effect->u.periodic.magnitude, effect->u.periodic.offset, in iforce_upload_periodic() 353 effect->u.periodic.period, effect->u.periodic.phase); in iforce_upload_periodic() [all …]
|
/Linux-v5.10/drivers/input/ |
D | ff-core.c | 45 e1->u.periodic.waveform == e2->u.periodic.waveform); in check_effects_compatible() 68 effect->u.periodic.waveform = FF_SINE; in compat_effect() 69 effect->u.periodic.period = 50; in compat_effect() 70 effect->u.periodic.magnitude = max(magnitude, 0x7fff); in compat_effect() 71 effect->u.periodic.offset = 0; in compat_effect() 72 effect->u.periodic.phase = 0; in compat_effect() 73 effect->u.periodic.envelope.attack_length = 0; in compat_effect() 74 effect->u.periodic.envelope.attack_level = 0; in compat_effect() 75 effect->u.periodic.envelope.fade_length = 0; in compat_effect() 76 effect->u.periodic.envelope.fade_level = 0; in compat_effect() [all …]
|
D | input-compat.c | 83 compat_effect->u.periodic.waveform == FF_CUSTOM) in input_ff_effect_from_user() 84 effect->u.periodic.custom_data = in input_ff_effect_from_user() 85 compat_ptr(compat_effect->u.periodic.custom_data); in input_ff_effect_from_user()
|
/Linux-v5.10/Documentation/hwmon/ |
D | sht3x.rst | 41 The sht3x sensor supports a single shot mode as well as 5 periodic measure 47 2000 0.5 Hz periodic measurement 48 1000 1 Hz periodic measurement 49 500 2 Hz periodic measurement 50 250 4 Hz periodic measurement 51 100 10 Hz periodic measurement 54 In the periodic measure mode, the sensor automatically triggers a measurement 77 configured limits. Alarm only works in periodic measure mode 79 configured limits. Alarm only works in periodic measure mode 86 for periodic measurement. If the interval is not supported
|
/Linux-v5.10/drivers/usb/host/ |
D | ehci-mem.c | 127 if (ehci->periodic) in ehci_mem_cleanup() 130 ehci->periodic, ehci->periodic_dma); in ehci_mem_cleanup() 131 ehci->periodic = NULL; in ehci_mem_cleanup() 188 ehci->periodic = (__le32 *) in ehci_mem_init() 192 if (ehci->periodic == NULL) { in ehci_mem_init() 209 ehci->periodic[i] = cpu_to_hc32(ehci, in ehci_mem_init() 213 ehci->periodic[i] = EHCI_LIST_END(ehci); in ehci_mem_init()
|
D | ehci-sched.c | 32 periodic_next_shadow(struct ehci_hcd *ehci, union ehci_shadow *periodic, in periodic_next_shadow() argument 37 return &periodic->qh->qh_next; in periodic_next_shadow() 39 return &periodic->fstn->fstn_next; in periodic_next_shadow() 41 return &periodic->itd->itd_next; in periodic_next_shadow() 44 return &periodic->sitd->sitd_next; in periodic_next_shadow() 49 shadow_next_periodic(struct ehci_hcd *ehci, union ehci_shadow *periodic, in shadow_next_periodic() argument 55 return &periodic->qh->hw->hw_next; in shadow_next_periodic() 58 return periodic->hw_next; in shadow_next_periodic() 66 __hc32 *hw_p = &ehci->periodic[frame]; in periodic_unlink() 428 type = Q_NEXT_TYPE(ehci, ehci->periodic[frame]); in tt_no_collision() [all …]
|
/Linux-v5.10/drivers/net/wireless/broadcom/brcm80211/brcmsmac/ |
D | brcms_trace_brcmsmac.h | 45 __field(uint, periodic) 50 __entry->periodic = t->periodic; 54 __entry->ms, __entry->set, __entry->periodic
|
D | mac80211_if.h | 42 bool periodic; member 107 void brcms_add_timer(struct brcms_timer *timer, uint ms, int periodic);
|
D | phy_shim.c | 74 wlapi_add_timer(struct wlapi_timer *t, uint ms, int periodic) in wlapi_add_timer() argument 76 brcms_add_timer((struct brcms_timer *)t, ms, periodic); in wlapi_add_timer()
|
/Linux-v5.10/Documentation/ABI/testing/ |
D | rtc-cdev | 25 * RTC_PIE_ON, RTC_PIE_OFF: Enable or disable the periodic 26 interrupt for RTCs that support periodic interrupts. 32 periodic interrupts for RTCs that support periodic interrupts. 33 Requires a separate RTC_PIE_ON call to enable the periodic
|
D | sysfs-module | 18 Description: Maximum time allowed for periodic transfers per microframe (μs) 21 USB 2.0 sets maximum allowed time for periodic transfers per 32 microseconds of periodic bandwidth per microframe.
|
D | sysfs-ptp | 40 This file contains the number of periodic or one shot 54 This file contains the number of programmable periodic 108 This write-only file enables or disables periodic 109 outputs. To enable a periodic output, write five 112 period nanoseconds. To disable a periodic output, set
|
/Linux-v5.10/drivers/clocksource/ |
D | sh_tmu.c | 45 unsigned long periodic; member 210 int periodic) in sh_tmu_set_next() argument 222 if (periodic) in sh_tmu_set_next() 339 static void sh_tmu_clock_event_start(struct sh_tmu_channel *ch, int periodic) in sh_tmu_clock_event_start() argument 343 if (periodic) { in sh_tmu_clock_event_start() 344 ch->periodic = (ch->tmu->rate + HZ/2) / HZ; in sh_tmu_clock_event_start() 345 sh_tmu_set_next(ch, ch->periodic, 1); in sh_tmu_clock_event_start() 359 int periodic) in sh_tmu_clock_event_set_state() argument 368 ch->index, periodic ? "periodic" : "oneshot"); in sh_tmu_clock_event_set_state() 369 sh_tmu_clock_event_start(ch, periodic); in sh_tmu_clock_event_set_state()
|
D | timer-meson6.c | 88 static void meson6_clkevt_time_start(bool periodic) in meson6_clkevt_time_start() argument 92 if (periodic) in meson6_clkevt_time_start()
|
D | timer-rda.c | 35 static int rda_ostimer_start(void __iomem *base, bool periodic, u64 cycles) in rda_ostimer_start() argument 42 if (periodic) in rda_ostimer_start()
|
D | timer-milbeaut.c | 64 static void mlb_evt_timer_start(struct timer_of *to, bool periodic) in mlb_evt_timer_start() argument 69 if (periodic) in mlb_evt_timer_start()
|
D | timer-sun4i.c | 72 bool periodic) in sun4i_clkevt_time_start() argument 76 if (periodic) in sun4i_clkevt_time_start()
|
/Linux-v5.10/Documentation/devicetree/bindings/usb/ |
D | dwc3.txt | 92 - snps,rx-thr-num-pkt-prd: periodic ESS RX packet threshold count - host mode 95 section 1.2.4) to enable periodic ESS RX threshold. 96 - snps,rx-max-burst-prd: max periodic ESS RX burst size - host mode only. Set 99 enable periodic ESS RX threshold. 100 - snps,tx-thr-num-pkt-prd: periodic ESS TX packet threshold count - host mode 103 section 1.2.3) to enable periodic ESS TX threshold. 104 - snps,tx-max-burst-prd: max periodic ESS TX burst size - host mode only. Set 107 enable periodic ESS TX threshold.
|
/Linux-v5.10/drivers/hid/usbhid/ |
D | hid-pidff.c | 342 effect->u.periodic.magnitude); in pidff_set_periodic_report() 344 effect->u.periodic.offset); in pidff_set_periodic_report() 345 pidff_set(&pidff->set_periodic[PID_PHASE], effect->u.periodic.phase); in pidff_set_periodic_report() 346 pidff->set_periodic[PID_PERIOD].value[0] = effect->u.periodic.period; in pidff_set_periodic_report() 359 return effect->u.periodic.magnitude != old->u.periodic.magnitude || in pidff_needs_set_periodic() 360 effect->u.periodic.offset != old->u.periodic.offset || in pidff_needs_set_periodic() 361 effect->u.periodic.phase != old->u.periodic.phase || in pidff_needs_set_periodic() 362 effect->u.periodic.period != old->u.periodic.period; in pidff_needs_set_periodic() 586 switch (effect->u.periodic.waveform) { in pidff_upload_effect() 617 pidff_needs_set_envelope(&effect->u.periodic.envelope, in pidff_upload_effect() [all …]
|
/Linux-v5.10/Documentation/timers/ |
D | highres.rst | 74 interrupt(s). The next event is currently defined to be periodic, with its 100 System-level global event devices are used for the Linux periodic tick. Per-CPU 107 - system global periodic tick (jiffies update) 110 - cpu local next event interrupt (non periodic mode) 151 initialized, the system works in the usual low resolution periodic mode. The 186 Once a system has switched to high resolution mode, the periodic tick is 187 switched off. This disables the per system global periodic clock event device - 190 The periodic tick functionality is provided by an per-cpu hrtimer. The callback 193 based periodic tick is designed to be extended with dynamic tick functionality. 195 timer and periodic events (jiffies tick, profiling, process accounting) on UP [all …]
|
/Linux-v5.10/Documentation/networking/devlink/ |
D | mlxsw.rst | 33 - Sets an interval for periodic ACL region rehashes. The value is 35 ``0`` disables periodic work entirely. The first rehash will be run
|
/Linux-v5.10/Documentation/misc-devices/ |
D | apds990x.rst | 115 RW - trigger / periodic. 120 In "periodic" mode the driver reports all values above 125 RO - accepted values to prox0_reporting_mode (trigger, periodic)
|
/Linux-v5.10/arch/s390/kernel/ |
D | vtime.c | 344 static void __add_vtimer(struct vtimer_list *timer, int periodic) in __add_vtimer() argument 348 timer->interval = periodic ? timer->expires : 0; in __add_vtimer() 372 static int __mod_vtimer(struct vtimer_list *timer, u64 expires, int periodic) in __mod_vtimer() argument 385 timer->interval = periodic ? expires : 0; in __mod_vtimer()
|
/Linux-v5.10/Documentation/usb/ |
D | ehci.rst | 87 Also, some shortcuts have been taken with the scheduling periodic 89 limits on the number of periodic transactions that can be scheduled, 128 "periodic" 129 dumps the periodic schedule, used for interrupt 140 can't, such as "high bandwidth" periodic (interrupt or ISO) transfers. 142 periodic transfers) use different encodings when operating at high speed. 224 Interrupt and ISO transfer performance issues. Those periodic 229 More than standard 80% periodic bandwidth allocation is possible
|
/Linux-v5.10/drivers/hid/ |
D | hid-logitech-hidpp.c | 2066 switch (effect->u.periodic.waveform) { in hidpp_ff_upload_effect() 2083 …hid_err(data->hidpp->hid_dev, "Unexpected periodic waveform type %i!\n", effect->u.periodic.wavefo… in hidpp_ff_upload_effect() 2086 force = (effect->u.periodic.magnitude * fixp_sin16((effect->direction * 360) >> 16)) >> 15; in hidpp_ff_upload_effect() 2087 params[6] = effect->u.periodic.magnitude >> 8; in hidpp_ff_upload_effect() 2088 params[7] = effect->u.periodic.magnitude & 255; in hidpp_ff_upload_effect() 2089 params[8] = effect->u.periodic.offset >> 8; in hidpp_ff_upload_effect() 2090 params[9] = effect->u.periodic.offset & 255; in hidpp_ff_upload_effect() 2091 params[10] = effect->u.periodic.period >> 8; in hidpp_ff_upload_effect() 2092 params[11] = effect->u.periodic.period & 255; in hidpp_ff_upload_effect() 2093 params[12] = effect->u.periodic.phase >> 8; in hidpp_ff_upload_effect() [all …]
|