/Linux-v5.10/drivers/net/wireless/intel/iwlwifi/fw/api/ |
D | sf.h | 97 #define SF_SINGLE_UNICAST_AGING_TIMER_DEF 400 /* 0.4 mSec */ 99 #define SF_AGG_UNICAST_AGING_TIMER_DEF 400 /* 0.4 mSec */ 100 #define SF_MCAST_IDLE_TIMER_DEF 160 /* 150 mSec */ 101 #define SF_MCAST_AGING_TIMER_DEF 400 /* 0.4 mSec */ 103 #define SF_BA_AGING_TIMER_DEF 400 /* 0.4 mSec */ 105 #define SF_TX_RE_AGING_TIMER_DEF 400 /* 0.4 mSec */ 109 #define SF_SINGLE_UNICAST_AGING_TIMER 2016 /* 2 mSec */ 111 #define SF_AGG_UNICAST_AGING_TIMER 2016 /* 2 mSec */ 112 #define SF_MCAST_IDLE_TIMER 2016 /* 2 mSec */ 113 #define SF_MCAST_AGING_TIMER 10016 /* 10 mSec */ [all …]
|
/Linux-v5.10/drivers/watchdog/ |
D | npcm_wdt.c | 29 * 170 msec: WTCLK=01 WTIS=00 VAL= 0x400 30 * 670 msec: WTCLK=01 WTIS=01 VAL= 0x410 31 * 1360 msec: WTCLK=10 WTIS=00 VAL= 0x800 32 * 2700 msec: WTCLK=01 WTIS=10 VAL= 0x420 33 * 5360 msec: WTCLK=10 WTIS=01 VAL= 0x810 34 * 10700 msec: WTCLK=01 WTIS=11 VAL= 0x430 35 * 21600 msec: WTCLK=10 WTIS=10 VAL= 0x820 36 * 43000 msec: WTCLK=11 WTIS=00 VAL= 0xC00 37 * 85600 msec: WTCLK=10 WTIS=11 VAL= 0x830 38 * 172000 msec: WTCLK=11 WTIS=01 VAL= 0xC10 [all …]
|
D | dw_wdt.c | 80 unsigned int msec; member 165 u64 msec; in dw_wdt_get_max_timeout_ms() local 167 msec = (u64)timeout->sec * MSEC_PER_SEC + timeout->msec; in dw_wdt_get_max_timeout_ms() 169 return msec < UINT_MAX ? msec : UINT_MAX; in dw_wdt_get_max_timeout_ms() 430 u64 msec; in dw_wdt_handle_tops() local 441 msec = (u64)tops[val] * MSEC_PER_SEC; in dw_wdt_handle_tops() 442 do_div(msec, dw_wdt->rate); in dw_wdt_handle_tops() 443 tout.msec = msec - ((u64)tout.sec * MSEC_PER_SEC); in dw_wdt_handle_tops() 452 tout.msec >= dst->msec)) in dw_wdt_handle_tops()
|
D | da9052_wdt.c | 112 unsigned long msec, jnow = jiffies; in da9052_wdt_ping() local 119 msec = (jnow - driver_data->jpast) * 1000/HZ; in da9052_wdt_ping() 120 if (msec < DA9052_TWDMIN) in da9052_wdt_ping() 121 mdelay(msec); in da9052_wdt_ping()
|
/Linux-v5.10/sound/synth/emux/ |
D | emux_nrpn.c | 96 #define fx_env1_delay fx_delay /* [0,5900] 4msec */ 97 #define fx_env1_attack fx_attack /* [0,5940] 1msec */ 98 #define fx_env1_hold fx_hold /* [0,8191] 1msec */ 99 #define fx_env1_decay fx_decay /* [0,5940] 4msec */ 100 #define fx_env1_release fx_decay /* [0,5940] 4msec */ 105 #define fx_env2_delay fx_delay /* [0,5900] 4msec */ 106 #define fx_env2_attack fx_attack /* [0,5940] 1msec */ 107 #define fx_env2_hold fx_hold /* [0,8191] 1msec */ 108 #define fx_env2_decay fx_decay /* [0,5940] 4msec */ 109 #define fx_env2_release fx_decay /* [0,5940] 4msec */ [all …]
|
/Linux-v5.10/include/linux/ |
D | pm_wakeup.h | 113 extern void pm_wakeup_ws_event(struct wakeup_source *ws, unsigned int msec, bool hard); 114 extern void pm_wakeup_dev_event(struct device *dev, unsigned int msec, bool hard); 188 unsigned int msec, bool hard) {} in pm_wakeup_ws_event() argument 190 static inline void pm_wakeup_dev_event(struct device *dev, unsigned int msec, in pm_wakeup_dev_event() argument 195 static inline void __pm_wakeup_event(struct wakeup_source *ws, unsigned int msec) in __pm_wakeup_event() argument 197 return pm_wakeup_ws_event(ws, msec, false); in __pm_wakeup_event() 200 static inline void pm_wakeup_event(struct device *dev, unsigned int msec) in pm_wakeup_event() argument 202 return pm_wakeup_dev_event(dev, msec, false); in pm_wakeup_event()
|
D | input-polldev.h | 22 * Defaults to 500 msec unless overridden when registering the device. 40 unsigned int poll_interval; /* msec */ 41 unsigned int poll_interval_max; /* msec */ 42 unsigned int poll_interval_min; /* msec */
|
D | dim.h | 71 * @ppms: Packets per msec 72 * @bpms: Bytes per msec 73 * @epms: Events per msec 74 * @cpms: Completions per msec 78 int ppms; /* packets per msec */ 79 int bpms; /* bytes per msec */ 80 int epms; /* events per msec */ 81 int cpms; /* completions per msec */
|
D | ktime.h | 184 static inline ktime_t ktime_add_ms(const ktime_t kt, const u64 msec) in ktime_add_ms() argument 186 return ktime_add_ns(kt, msec * NSEC_PER_MSEC); in ktime_add_ms() 194 static inline ktime_t ktime_sub_ms(const ktime_t kt, const u64 msec) in ktime_sub_ms() argument 196 return ktime_sub_ns(kt, msec * NSEC_PER_MSEC); in ktime_sub_ms()
|
/Linux-v5.10/Documentation/devicetree/bindings/iio/accel/ |
D | lis302.txt | 30 - st,click-click-time-limit: click time limit, from 0 to 127.5msec 31 with step of 0.5 msec 32 - st,click-latency: click latency, from 0 to 255 msec with 33 step of 1 msec. 34 - st,click-window: click window, from 0 to 255 msec with 35 step of 1 msec.
|
/Linux-v5.10/include/sound/ |
D | soundfont.h | 108 int snd_sf_calc_parm_hold(int msec); 109 int snd_sf_calc_parm_attack(int msec); 110 int snd_sf_calc_parm_decay(int msec); 111 #define snd_sf_calc_parm_delay(msec) (0x8000 - (msec) * 1000 / 725) argument
|
/Linux-v5.10/kernel/power/ |
D | suspend_test.c | 39 unsigned msec; in suspend_test_finish() local 41 msec = jiffies_to_msecs(abs(nj)); in suspend_test_finish() 43 msec / 1000, msec % 1000); in suspend_test_finish() 53 WARN(msec > (TEST_SUSPEND_SECONDS * 1000), in suspend_test_finish() 54 "Component: %s, time: %u\n", label, msec); in suspend_test_finish()
|
/Linux-v5.10/tools/testing/selftests/drivers/net/mlxsw/ |
D | devlink_trap_l2_drops.sh | 104 $MZ $h1 -c 0 -p 100 -a $smac -b bcast -t ip -d 1msec -q & 130 $MZ $h1 "$opt" -c 0 -p 100 -a own -b $dmac -t ip -d 1msec -q & 190 $MZ $h1 -Q $vid -c 0 -p 100 -a own -b $dmac -t ip -d 1msec -q & 233 $MZ $h1 -Q $vid -c 0 -p 100 -a own -b $dmac -t ip -d 1msec -q & 303 $MZ $h1 -c 0 -p 100 -a own -b $dmac -t ip -d 1msec -q & 348 $MZ $h1 -c 0 -p 100 -a own -b $dmac -t ip -B $dip -d 1msec -q & 394 $MZ $h1 -c 0 -p 100 -a own -b $dmac -t ip -d 1msec -q &
|
D | devlink_trap_l3_drops.sh | 174 $MZ $h1 -c 0 -p 100 -d 1msec -B $h2_ipv4 -q "$rp1mac $h1mac \ 204 -B $dip -d 1msec -q & 239 -b $rp1mac -B $dip -d 1msec -q & 273 -B $dip -d 1msec -q & 308 -b $rp1mac -B $dip -d 1msec -q & 339 -B $h2_ipv4 -d 1msec -q & 392 $MZ $h1 -c 0 -d 1msec -a $h1mac -b $rp1mac -q p=$payload & 438 $MZ $h1 -c 0 -d 1msec -a $h1mac -b $rp1mac -q p=$payload & 476 "33:33:00:00:00:00" -B $dip -d 1msec -q & 501 "33:33:00:00:00:00" -B $dip -d 1msec -q & [all …]
|
D | devlink_trap_acl_drops.sh | 105 -t ip -d 1msec -q & 130 -t ip -d 1msec -q &
|
/Linux-v5.10/drivers/base/power/ |
D | sysfs.c | 456 s64 msec; in wakeup_total_time_ms_show() local 461 msec = ktime_to_ms(dev->power.wakeup->total_time); in wakeup_total_time_ms_show() 468 return sysfs_emit(buf, "%lld\n", msec); in wakeup_total_time_ms_show() 476 s64 msec; in wakeup_max_time_ms_show() local 481 msec = ktime_to_ms(dev->power.wakeup->max_time); in wakeup_max_time_ms_show() 488 return sysfs_emit(buf, "%lld\n", msec); in wakeup_max_time_ms_show() 497 s64 msec; in wakeup_last_time_ms_show() local 502 msec = ktime_to_ms(dev->power.wakeup->last_time); in wakeup_last_time_ms_show() 509 return sysfs_emit(buf, "%lld\n", msec); in wakeup_last_time_ms_show() 527 s64 msec; in wakeup_prevent_sleep_time_ms_show() local [all …]
|
/Linux-v5.10/Documentation/watchdog/ |
D | mlx-wdt.rst | 16 Actual HW timeout can be defined as a power of 2 msec. 17 e.g. timeout 20 sec will be rounded up to 32768 msec. 18 The maximum timeout period is 32 sec (32768 msec.),
|
/Linux-v5.10/drivers/net/ethernet/arc/ |
D | emac_mdio.c | 115 msleep(data->msec); in arc_mdio_reset() 160 of_property_read_u32(np, "phy-reset-duration", &data->msec); in arc_mdio_probe() 162 if (data->msec > 1000) in arc_mdio_probe() 163 data->msec = 1; in arc_mdio_probe()
|
/Linux-v5.10/tools/perf/Documentation/ |
D | perf-sched.txt | 51 [tid/pid] (msec) (msec) (msec) 61 Times are in msec.usec.
|
/Linux-v5.10/tools/testing/selftests/net/forwarding/ |
D | router.sh | 182 $MZ $h1 -t udp "sp=54321,dp=12345" -c 5 -d 1msec \ 231 $MZ $flags $h1 -t udp "sp=54321,dp=12345" -c 5 -d 1msec -b $dmac \ 260 $MZ $h1 -t udp "sp=54321,dp=12345" -c 5 -d 1msec \ 280 $MZ -6 $h1 -t udp "sp=54321,dp=12345" -c 5 -d 1msec \ 303 $MZ $h1 -t udp "sp=54321,dp=12345" -c 5 -d 1msec -b $rp1mac -B $dip -q
|
/Linux-v5.10/drivers/edac/ |
D | edac_pci.c | 171 int msec; in edac_pci_workq_function() local 187 msec = edac_pci_get_poll_msec(); in edac_pci_workq_function() 188 if (msec == 1000) in edac_pci_workq_function() 189 delay = round_jiffies_relative(msecs_to_jiffies(msec)); in edac_pci_workq_function() 191 delay = msecs_to_jiffies(msec); in edac_pci_workq_function()
|
D | edac_device.c | 365 * if the number of msec is for 1 sec, then adjust to the next in edac_device_workq_function() 378 * passing in the new delay period in msec 381 unsigned msec) in edac_device_workq_setup() argument 385 /* take the arg 'msec' and set it into the control structure in edac_device_workq_setup() 389 edac_dev->poll_msec = msec; in edac_device_workq_setup() 390 edac_dev->delay = msecs_to_jiffies(msec); in edac_device_workq_setup() 478 * default = 1000 msec in edac_device_add_device()
|
/Linux-v5.10/drivers/leds/ |
D | leds-tca6507.c | 17 * 500usec intervals in each 8msec that the led is 'on'. The levels 193 static int choose_times(int msec, int *c1p, int *c2p) in choose_times() argument 196 * Choose two timecodes which add to 'msec' as near as in choose_times() 199 * If 'msec' is even, the first will not be smaller than the in choose_times() 200 * second. If 'msec' is odd, the first will not be larger in choose_times() 202 * If we cannot get a sum within 1/8 of 'msec' fail with in choose_times() 210 int tmax = msec * 9 / 8; in choose_times() 211 int tmin = msec * 7 / 8; in choose_times() 231 d = abs(msec - tt); in choose_times() 239 return msec; in choose_times() [all …]
|
/Linux-v5.10/drivers/iio/light/ |
D | cm36651.c | 50 #define CM36651_CS_IT1 0x00 /* Integration time 80 msec */ 51 #define CM36651_CS_IT2 0x40 /* Integration time 160 msec */ 52 #define CM36651_CS_IT3 0x80 /* Integration time 320 msec */ 53 #define CM36651_CS_IT4 0xC0 /* Integration time 640 msec */ 64 #define CM36651_PS_IT1 0x00 /* Integration time 0.32 msec */ 65 #define CM36651_PS_IT2 0x10 /* Integration time 0.42 msec */ 66 #define CM36651_PS_IT3 0x20 /* Integration time 0.52 msec */ 67 #define CM36651_PS_IT4 0x30 /* Integration time 0.64 msec */
|
/Linux-v5.10/drivers/input/ |
D | input-poller.c | 18 unsigned int poll_interval; /* msec */ 19 unsigned int poll_interval_max; /* msec */ 20 unsigned int poll_interval_min; /* msec */
|