Home
last modified time | relevance | path

Searched full:delays (Results 1 – 25 of 433) sorted by relevance

12345678910>>...18

/linux/kernel/
H A Ddelayacct.c19 d->type##_delay_max = tsk->delays->type##_delay_max; \
20 d->type##_delay_min = tsk->delays->type##_delay_min; \
21 tmp = d->type##_delay_total + tsk->delays->type##_delay; \
23 d->type##_count += tsk->delays->type##_count; \
98 tsk->delays = kmem_cache_zalloc(delayacct_cache, GFP_KERNEL); in __delayacct_tsk_init()
99 if (tsk->delays) in __delayacct_tsk_init()
100 raw_spin_lock_init(&tsk->delays->lock); in __delayacct_tsk_init()
126 current->delays->blkio_start = local_clock(); in __delayacct_blkio_start()
135 delayacct_end(&p->delays->lock, in __delayacct_blkio_end()
136 &p->delays->blkio_start, in __delayacct_blkio_end()
[all …]
/linux/Documentation/devicetree/bindings/net/
H A Dethernet-controller.yaml53 # RX and TX delays are provided by the PCB. See below
56 # RX and TX delays are not provided by the PCB. This is the most
254 controllers that have configurable RX internal delays. If this
259 controllers that have configurable TX internal delays. If this
277 # delay. If both the RX and TX delays are implemented in this manner,
278 # 'rgmii' should be used, so indicating the PCB adds the delays.
280 # If the PCB does not add these delays via extra long traces,
284 # If only one of the two delays are implemented via extra long clock
286 # indicating the MAC or PHY should implement one of the delays
290 # PCB between the MAC and the PHY, if the PCB implements delays or
[all …]
H A Dhisilicon-femac.txt19 - hisilicon,phy-reset-delays-us: triplet of delays if PHY reset signal given.
40 hisilicon,phy-reset-delays-us = <10000 20000 20000>;
H A Dhisilicon-hix5hd2-gmac.txt28 - hisilicon,phy-reset-delays-us: triplet of delays if PHY reset signal given.
55 hisilicon,phy-reset-delays-us = <10000 10000 30000>;
H A Dti,dp83867.yaml93 delays will be left at their default values, as set by the PHY's pin
97 should use "rgmii-id" if internal delays are desired as this may be
98 changed in future to cause "rgmii" mode to disable delays.
/linux/drivers/net/ethernet/stmicro/stmmac/
H A Dstmmac_mdio.c462 u32 delays[3] = { 0, 0, 0 }; in stmmac_mdio_reset() local
471 "snps,reset-delays-us", in stmmac_mdio_reset()
472 delays, ARRAY_SIZE(delays)); in stmmac_mdio_reset()
474 if (delays[0]) in stmmac_mdio_reset()
475 msleep(DIV_ROUND_UP(delays[0], 1000)); in stmmac_mdio_reset()
478 if (delays[1]) in stmmac_mdio_reset()
479 msleep(DIV_ROUND_UP(delays[1], 1000)); in stmmac_mdio_reset()
482 if (delays[2]) in stmmac_mdio_reset()
483 msleep(DIV_ROUND_UP(delays[2], 1000)); in stmmac_mdio_reset()
/linux/Documentation/devicetree/bindings/spi/
H A Dnvidia,tegra210-quad-peripheral-props.yaml16 Delays the clock going out to device with this tap value.
25 Delays the clock coming in from the device with this tap value.
/linux/arch/loongarch/lib/
H A Ddelay.c25 * Use only for very small delays ( < 1 msec). Should probably use a
27 * short delays. This is a "reasonable" implementation, though (and the
/linux/Documentation/devicetree/bindings/fsi/
H A Dfsi-master-gpio.txt14 - no-gpio-delays; : Don't add extra delays between GPIO
/linux/tools/time/
H A Dudelay_test.sh7 # and exercises a variety of delays to ensure that udelay() is delaying
55 echo "ERROR: $count delays failed to delay long enough"
/linux/Documentation/admin-guide/device-mapper/
H A Ddelay.rst5 Device-Mapper's "delay" target delays reads and/or writes
26 Delays are specified in milliseconds.
/linux/arch/mips/lib/
H A Ddelay.c45 * Use only for very small delays ( < 1 msec). Should probably use a
47 * short delays. This is a "reasonable" implementation, though (and the
/linux/Documentation/devicetree/bindings/gpio/
H A Dgpio-delay.yaml42 Specifies the pin, ramp-up and ramp-down delays. The
43 delays are specified in microseconds.
/linux/drivers/char/tpm/
H A Dtpm_tis_spi_cr50.c63 * by interrupts but is instead used to avoid fixed delays.
110 dev_warn(dev, "IRQ not confirmed - will use delays\n"); in cr50_ensure_access_delay()
299 * delays automatically, since ready will never in cr50_spi_probe()
312 "No IRQ - will use delays between transactions.\n"); in cr50_spi_probe()
/linux/Documentation/devicetree/bindings/iio/adc/
H A Dti,am3359-adc.yaml34 description: List of open delays for each channel of ADC in the order of
43 description: List of sample delays for each channel of ADC in the order of
/linux/arch/arm/include/asm/
H A Ddelay.h73 * Use only for very small delays ( < 2 msec). Should probably use a
75 * short delays. This is a "reasonable" implementation, though (and the
/linux/include/asm-generic/
H A Ddelay.h38 * When inserting delays in non atomic context which are shorter than the time
42 * is a threshold for all delays up to 10 microseconds.
/linux/lib/
H A DKconfig.kcsan117 bool "Randomize above delays"
120 If delays should be randomized, where the maximum is KCSAN_UDELAY_*.
121 If false, the chosen delays are always the KCSAN_UDELAY_* values
/linux/include/uapi/linux/
H A Dtaskstats.h61 * few fields are not delays
76 /* Following four fields atomically updated using task->delays->lock */
79 * does not account for delays in I/O submission
/linux/sound/soc/sdca/
H A Dsdca_functions.c1088 struct sdca_pde_delay *delays; in find_sdca_entity_pde() local
1099 dev_err(dev, "%s: delays not multiple of %d\n", in find_sdca_entity_pde()
1103 dev_err(dev, "%s: maximum number of transition delays exceeded\n", in find_sdca_entity_pde()
1118 delays = devm_kcalloc(dev, num_delays, sizeof(*delays), GFP_KERNEL); in find_sdca_entity_pde()
1119 if (!delays) in find_sdca_entity_pde()
1123 delays[i].from_ps = delay_list[j++]; in find_sdca_entity_pde()
1124 delays[i].to_ps = delay_list[j++]; in find_sdca_entity_pde()
1125 delays[i].us = delay_list[j++]; in find_sdca_entity_pde()
1128 delays[i].from_ps, delays[i].to_ps, delays[i].us); in find_sdca_entity_pde()
1132 power->max_delay = delays; in find_sdca_entity_pde()
/linux/arch/m68k/include/asm/
H A Ddelay.h85 * Use only for very small delays ( < 1 msec). Should probably use a
87 * short delays. This is a "reasonable" implementation, though (and the
/linux/Documentation/process/debugging/
H A Ddriver_development_debugging_guide.rst41 - Can cause delays in the execution of the code (beneficial to confirm whether
47 - Can cause delays in the execution of the code (which can cause issues to be
60 delays into the code execution, causing issues to be flaky or hidden.)
/linux/tools/bpf/runqslower/
H A Drunqslower.c24 "runqslower Trace long process scheduling delays.\n"
27 "This script traces high scheduling delays between tasks being\n"
/linux/drivers/char/
H A Dhangcheck-timer.c13 * The hangcheck-timer driver uses the TSC to catch delays that
143 * Enable to investigate delays in detail in hangcheck_fire()
/linux/tools/memory-model/litmus-tests/
H A DR+poonceonces.litmus8 * store propagation delays.

12345678910>>...18