| /OK3568_Linux_fs/kernel/kernel/ |
| H A D | delayacct.c | 36 tsk->delays = kmem_cache_zalloc(delayacct_cache, GFP_KERNEL); in __delayacct_tsk_init() 37 if (tsk->delays) in __delayacct_tsk_init() 38 raw_spin_lock_init(&tsk->delays->lock); in __delayacct_tsk_init() 61 current->delays->blkio_start = ktime_get_ns(); in __delayacct_blkio_start() 70 struct task_delay_info *delays = p->delays; in __delayacct_blkio_end() local 74 if (p->delays->flags & DELAYACCT_PF_SWAPIN) { in __delayacct_blkio_end() 75 total = &delays->swapin_delay; in __delayacct_blkio_end() 76 count = &delays->swapin_count; in __delayacct_blkio_end() 78 total = &delays->blkio_delay; in __delayacct_blkio_end() 79 count = &delays->blkio_count; in __delayacct_blkio_end() [all …]
|
| /OK3568_Linux_fs/kernel/include/linux/ |
| H A D | delayacct.h | 15 * Used to set current->delays->flags 79 if (p->delays) in delayacct_is_task_waiting_on_io() 80 return (p->delays->flags & DELAYACCT_PF_BLKIO); in delayacct_is_task_waiting_on_io() 87 if (current->delays) in delayacct_set_flag() 88 current->delays->flags |= flag; in delayacct_set_flag() 93 if (current->delays) in delayacct_clear_flag() 94 current->delays->flags &= ~flag; in delayacct_clear_flag() 100 tsk->delays = NULL; in delayacct_tsk_init() 105 /* Free tsk->delays. Called from bad fork and __put_task_struct 106 * where there's no risk of tsk->delays being accessed elsewhere [all …]
|
| /OK3568_Linux_fs/kernel/Documentation/accounting/ |
| H A D | delay-accounting.rst | 5 Tasks encounter delays in execution when they wait 10 the delays experienced by a task while 20 Such delays provide feedback for setting a task's cpu priority, 21 io priority and rss limit values appropriately. Long delays for 81 similar to getdelays.c to access the delays 84 executed and the corresponding delays to be 92 Get delays, since system boot, for pid 10:: 97 Get sum of delays, since system boot, for all pids with tgid 5:: 111 Get delays seen in executing a given simple command::
|
| /OK3568_Linux_fs/prebuilts/gcc/linux-x86/aarch64/gcc-arm-10.3-2021.07-x86_64-aarch64-none-linux-gnu/aarch64-none-linux-gnu/libc/usr/include/bits/ |
| H A D | termios-c_oflag.h | 34 # define NLDLY 0000400 /* Select newline delays: */ 37 # define CRDLY 0003000 /* Select carriage-return delays: */ 42 # define TABDLY 0014000 /* Select horizontal-tab delays: */ 47 # define BSDLY 0020000 /* Select backspace delays: */ 50 # define FFDLY 0100000 /* Select form-feed delays: */ 55 #define VTDLY 0040000 /* Select vertical-tab delays: */
|
| /OK3568_Linux_fs/prebuilts/gcc/linux-x86/arm/gcc-arm-10.3-2021.07-x86_64-arm-none-linux-gnueabihf/arm-none-linux-gnueabihf/libc/usr/include/bits/ |
| H A D | termios-c_oflag.h | 34 # define NLDLY 0000400 /* Select newline delays: */ 37 # define CRDLY 0003000 /* Select carriage-return delays: */ 42 # define TABDLY 0014000 /* Select horizontal-tab delays: */ 47 # define BSDLY 0020000 /* Select backspace delays: */ 50 # define FFDLY 0100000 /* Select form-feed delays: */ 55 #define VTDLY 0040000 /* Select vertical-tab delays: */
|
| /OK3568_Linux_fs/u-boot/drivers/ddr/marvell/axp/ |
| H A D | ddr3_axp_training_static.h | 60 {0x00001538, 0x0000000B}, /*Read Data Sample Delays Register */ 133 {0x00001538, 0x0000000D}, /*Read Data Sample Delays Register */ 187 {0x00001538, 0x00000008}, /*Read Data Sample Delays Register */ 240 {0x00001538, 0x00000008}, /*Read Data Sample Delays Register */ 293 {0x00001538, 0x0000000B}, /*Read Data Sample Delays Register */ 346 {0x00001538, 0x0000000B}, /*Read Data Sample Delays Register */ 400 {0x00001538, 0x0000000C}, /*Read Data Sample Delays Register */ 453 {0x00001538, 0x0000000B}, /*Read Data Sample Delays Register */ 506 {0x00001538, 0x0000000B}, /*Read Data Sample Delays Register */ 559 {0x00001538, 0x0000000B}, /*Read Data Sample Delays Register */ [all …]
|
| /OK3568_Linux_fs/kernel/Documentation/devicetree/bindings/net/ |
| H A D | ethernet-controller.yaml | 72 # RX and TX delays are added by the MAC when required 75 # RGMII with internal RX and TX delays provided by the PHY, 76 # the MAC should not add the RX or TX delays in this case 127 This is used for controllers that have configurable RX internal delays. 145 This is used for controllers that have configurable TX internal delays.
|
| H A D | hisilicon-femac.txt | 19 - hisilicon,phy-reset-delays-us: triplet of delays if PHY reset signal given. 40 hisilicon,phy-reset-delays-us = <10000 20000 20000>;
|
| H A D | hisilicon-hix5hd2-gmac.txt | 28 - hisilicon,phy-reset-delays-us: triplet of delays if PHY reset signal given. 55 hisilicon,phy-reset-delays-us = <10000 10000 30000>;
|
| H A D | ti,dp83867.yaml | 81 delays will be left at their default values, as set by the PHY's pin 85 should use "rgmii-id" if internal delays are desired as this may be 86 changed in future to cause "rgmii" mode to disable delays.
|
| /OK3568_Linux_fs/kernel/drivers/net/ethernet/stmicro/stmmac/ |
| H A D | stmmac_mdio.c | 364 u32 delays[3] = { 0, 0, 0 }; in stmmac_mdio_reset() local 373 "snps,reset-delays-us", in stmmac_mdio_reset() 374 delays, ARRAY_SIZE(delays)); in stmmac_mdio_reset() 376 if (delays[0]) in stmmac_mdio_reset() 377 msleep(DIV_ROUND_UP(delays[0], 1000)); in stmmac_mdio_reset() 380 if (delays[1]) in stmmac_mdio_reset() 381 msleep(DIV_ROUND_UP(delays[1], 1000)); in stmmac_mdio_reset() 384 if (delays[2]) in stmmac_mdio_reset() 385 msleep(DIV_ROUND_UP(delays[2], 1000)); in stmmac_mdio_reset()
|
| /OK3568_Linux_fs/u-boot/arch/sandbox/include/asm/ |
| H A D | state.h | 71 bool skip_delays; /* Ignore any time delays (for test) */ 198 * Control skipping of time delays 200 * Some tests have unnecessay time delays (e.g. USB). Allow these to be 203 * @param skip_delays true to skip delays from now on, false to honour delay 209 * See if delays should be skipped 211 * @return true if delays should be skipped, false if they should be honoured
|
| /OK3568_Linux_fs/external/security/rk_tee_user/v2/export-ta_arm64/include/mbedtls/ |
| H A D | timing.h | 111 * \brief Set a pair of delays to watch 127 * \brief Get the status of delays 128 * (Memory helper: number of delays passed.) 134 * 0 if none of the delays are passed,
|
| /OK3568_Linux_fs/external/security/rk_tee_user/v2/export-ta_arm32/host_include/mbedtls/ |
| H A D | timing.h | 111 * \brief Set a pair of delays to watch 127 * \brief Get the status of delays 128 * (Memory helper: number of delays passed.) 134 * 0 if none of the delays are passed,
|
| /OK3568_Linux_fs/external/security/rk_tee_user/v2/export-ta_arm32/include/mbedtls/ |
| H A D | timing.h | 111 * \brief Set a pair of delays to watch 127 * \brief Get the status of delays 128 * (Memory helper: number of delays passed.) 134 * 0 if none of the delays are passed,
|
| /OK3568_Linux_fs/external/security/rk_tee_user/v2/export-ta_arm64/host_include/mbedtls/ |
| H A D | timing.h | 111 * \brief Set a pair of delays to watch 127 * \brief Get the status of delays 128 * (Memory helper: number of delays passed.) 134 * 0 if none of the delays are passed,
|
| /OK3568_Linux_fs/buildroot/dl/sox/git/src/ |
| H A D | echos.c | 10 * Flow diagram scheme for n delays ( 1 <= n <= MAX_ECHOS ): 86 lsx_fail("echos: to many delays, use less than %i delays", in sox_echos_getopts() 177 /* Store delays as 24-bit signed longs */ in sox_echos_flow() 188 /* Mix decay of delays and input */ in sox_echos_flow() 228 /* Mix decay of delays and input */ in sox_echos_drain()
|
| H A D | echo.c | 10 * Flow diagram scheme for n delays ( 1 <= n <= MAX_ECHOS ): 86 lsx_fail("echo: to many delays, use less than %i delays", in sox_echo_getopts() 180 /* Store delays as 24-bit signed longs */ in sox_echo_flow()
|
| /OK3568_Linux_fs/kernel/Documentation/devicetree/bindings/net/dsa/ |
| H A D | sja1105.txt | 19 of support for RGMII internal delays (supported on P/Q/R/S, but not on 36 delays: 40 is the PHY. The SJA1105 MAC does not apply any internal delays. 42 of the above, the designated entity to apply the internal delays
|
| /OK3568_Linux_fs/kernel/Documentation/timers/ |
| H A D | timers-howto.rst | 2 delays - Information on the various kernel delay / sleep mechanisms 9 deal with hardware delays and who may not be the most intimately 13 Inserting Delays
|
| /OK3568_Linux_fs/kernel/Documentation/admin-guide/device-mapper/ |
| H A D | delay.rst | 5 Device-Mapper's "delay" target delays reads and/or writes 15 Delays are specified in milliseconds.
|
| /OK3568_Linux_fs/kernel/drivers/mmc/host/ |
| H A D | sdhci-of-arasan.c | 114 * @clk_phase_in: Array of Input Clock Phase Delays for all speed modes 115 * @clk_phase_out: Array of Output Clock Phase Delays for all speed modes 116 * @set_clk_delays: Function pointer for setting Clock Delays 315 /* Set the Input and Output Clock Phase Delays */ in sdhci_arasan_set_clock() 614 * sdhci_zynqmp_sdcardclk_set_phase - Set the SD Output Clock Tap Delays 619 * Set the SD Output Clock Tap Delays for Output path 679 * sdhci_zynqmp_sampleclk_set_phase - Set the SD Input Clock Tap Delays 684 * Set the SD Input Clock Tap Delays for Input path 744 * sdhci_versal_sdcardclk_set_phase - Set the SD Output Clock Tap Delays 749 * Set the SD Output Clock Tap Delays for Output path [all …]
|
| /OK3568_Linux_fs/kernel/Documentation/devicetree/bindings/fsi/ |
| H A D | fsi-master-gpio.txt | 14 - no-gpio-delays; : Don't add extra delays between GPIO
|
| /OK3568_Linux_fs/kernel/tools/time/ |
| H A D | udelay_test.sh | 7 # and exercises a variety of delays to ensure that udelay() is delaying 55 echo "ERROR: $count delays failed to delay long enough"
|
| /OK3568_Linux_fs/kernel/drivers/char/tpm/ |
| H A D | tpm_tis_spi_cr50.c | 60 * by interrupts but is instead used to avoid fixed delays. 107 dev_warn(dev, "IRQ not confirmed - will use delays\n"); in cr50_ensure_access_delay() 285 * delays automatically, since ready will never in cr50_spi_probe() 298 "No IRQ - will use delays between transactions.\n"); in cr50_spi_probe()
|