/Zephyr-latest/subsys/testsuite/include/zephyr/ |
D | busy_sim.h | 12 * @brief Start busy simulator. 15 * intervals and busy loop for random period of time in that interrupt. Interrupt 20 * @param active_avg Average time of busy looping in the counter callback (in microseconds). 22 * @param active_delta Specifies deviation from average time of busy looping (in microseconds). 28 * @param cb Callback called from the context of the busy simulator timeout. If ZLI interrupt 29 * is used for busy simulator counter then kernel API cannot be used from that callback. 30 * Callback is called before busy waiting. 35 /** @brief Stop busy simulator. */
|
/Zephyr-latest/tests/drivers/ipm/src/ |
D | ipm_dummy.c | 32 if (!driver_data->regs.enabled || !driver_data->regs.busy) { in ipm_dummy_isr() 41 driver_data->regs.busy = 0U; in ipm_dummy_isr() 60 if (driver_data->regs.busy) { in ipm_dummy_send() 71 driver_data->regs.busy = 1U; in ipm_dummy_send() 76 while (driver_data->regs.busy) { in ipm_dummy_send() 77 /* busy-wait */ in ipm_dummy_send()
|
/Zephyr-latest/tests/benchmarks/latency_measure/boards/ |
D | intel_adsp_ace15_mtpm_sim.conf | 1 # Due to addition of busy threads running on other cores, 3 # all cores, we are wasting quite a bit of time just busy
|
D | intel_adsp_ace20_lnl_sim.conf | 1 # Due to addition of busy threads running on other cores, 3 # all cores, we are wasting quite a bit of time just busy
|
D | intel_adsp_ace30_ptl_sim.conf | 1 # Due to addition of busy threads running on other cores, 3 # all cores, we are wasting quite a bit of time just busy
|
/Zephyr-latest/tests/benchmarks/sched/boards/ |
D | intel_adsp_ace15_mtpm_sim.conf | 1 # Due to addition of busy threads running on other cores, 3 # all cores, we are wasting quite a bit of time just busy
|
D | intel_adsp_ace20_lnl_sim.conf | 1 # Due to addition of busy threads running on other cores, 3 # all cores, we are wasting quite a bit of time just busy
|
D | intel_adsp_ace30_ptl_sim.conf | 1 # Due to addition of busy threads running on other cores, 3 # all cores, we are wasting quite a bit of time just busy
|
/Zephyr-latest/tests/ztest/busy_sim/boards/ |
D | nrf52840dk_nrf52840.overlay | 13 busy-sim { 14 compatible = "vnd,busy-sim";
|
D | nrf52840dk_nrf52840_pin.overlay | 13 busy-sim { 14 compatible = "vnd,busy-sim";
|
/Zephyr-latest/dts/bindings/auxdisplay/ |
D | noritake,itron.yaml | 18 busy-gpios: 20 description: Optional GPIO used for busy detection
|
/Zephyr-latest/include/zephyr/sd/ |
D | sdio.h | 71 * @retval -EBUSY: card is busy with another request 85 * @retval -EBUSY: card is busy with another request 100 * @retval -EBUSY: card is busy with another request 117 * @retval -EBUSY: card is busy with another request 134 * @retval -EBUSY: card is busy with another request 151 * @retval -EBUSY: card is busy with another request 168 * @retval -EBUSY: card is busy with another request 184 * @retval -EBUSY: card is busy with another request 201 * @retval -EBUSY: card is busy with another request
|
/Zephyr-latest/tests/subsys/pm/power_mgmt/src/ |
D | main.c | 430 * @brief Test the device busy APIs. 434 bool busy; in ZTEST() local 436 busy = pm_device_is_any_busy(); in ZTEST() 437 zassert_false(busy); in ZTEST() 441 busy = pm_device_is_any_busy(); in ZTEST() 442 zassert_true(busy); in ZTEST() 444 busy = pm_device_is_busy(device_dummy); in ZTEST() 445 zassert_true(busy); in ZTEST() 449 busy = pm_device_is_any_busy(); in ZTEST() 450 zassert_false(busy); in ZTEST() [all …]
|
/Zephyr-latest/dts/bindings/display/ |
D | solomon,ssd16xx-common.yaml | 13 busy-gpios: 16 description: BUSY pin. 18 The BUSY pin of SSD16XX is active high.
|
D | ultrachip,uc81xx-common.yaml | 11 busy-gpios: 14 description: BUSY pin. 16 The BUSY pin of UC81xx is active low.
|
/Zephyr-latest/dts/bindings/espi/ |
D | microchip,xec-espi-saf.yaml | 22 description: poll flash busy timeout in 32KHz periods 26 description: interval between flash busy poll in 20 ns units
|
D | microchip,xec-espi-saf-v2.yaml | 28 description: poll flash busy timeout in 32KHz periods 32 description: interval between flash busy poll in 20 ns units
|
/Zephyr-latest/subsys/console/ |
D | Kconfig | 36 interrupt-driven operation and use busy-polling. 45 interrupt-driven operation and use busy-polling.
|
/Zephyr-latest/drivers/dma/ |
D | dma_stm32u5.c | 257 /* The busy channel is pertinent if not overridden by the HAL */ in dma_stm32_irq_handler() 258 if ((stream->hal_override != true) && (stream->busy == false)) { in dma_stm32_irq_handler() 261 * ignore irq if the channel is not busy anymore in dma_stm32_irq_handler() 277 stream->busy = false; in dma_stm32_irq_handler() 285 stream->busy = false; in dma_stm32_irq_handler() 364 if (stream->busy) { in dma_stm32_configure() 365 LOG_ERR("dma stream %d is busy.", id); in dma_stm32_configure() 379 * Retain that the channel is busy and proceed to the minimal in dma_stm32_configure() 382 stream->busy = true; in dma_stm32_configure() 419 stream->busy = true; in dma_stm32_configure() [all …]
|
D | dma_stm32.c | 99 /* The busy channel is pertinent if not overridden by the HAL */ in dma_stm32_irq_handler() 100 if ((stream->hal_override != true) && (stream->busy == false)) { in dma_stm32_irq_handler() 103 * ignore irq if the channel is not busy anymore in dma_stm32_irq_handler() 124 stream->busy = false; in dma_stm32_irq_handler() 137 stream->busy = false; in dma_stm32_irq_handler() 292 if (stream->busy) { in dma_stm32_configure() 293 LOG_ERR("dma stream %d is busy.", id); in dma_stm32_configure() 307 * Retain that the channel is busy and proceed to the minimal in dma_stm32_configure() 310 stream->busy = true; in dma_stm32_configure() 358 stream->busy = true; in dma_stm32_configure() [all …]
|
/Zephyr-latest/drivers/fpga/ |
D | fpga_mpfs.c | 214 /* Once system controller starts processing command The busy bit will in verify_image() 215 * go 1. Make sure that service is complete i.e. BUSY bit is gone 0 in verify_image() 239 /* Once system controller starts processing command The busy bit will in verify_image() 240 * go 1. Make sure that service is complete i.e. BUSY bit is gone 0 in verify_image() 262 /* Once system controller starts processing command The busy bit will in activate_image() 263 * go 1. Make sure that service is complete i.e. BUSY bit is gone 0 in activate_image() 285 /* Once system controller starts processing command The busy bit will in activate_image() 286 * go 1. Make sure that service is complete i.e. BUSY bit is gone 0 in activate_image() 345 /* Once system controller starts processing command The busy bit will in mpfs_fpga_get_info() 346 * go 1. Make sure that service is complete i.e. BUSY bit is gone 0 in mpfs_fpga_get_info() [all …]
|
/Zephyr-latest/doc/kernel/data_structures/ |
D | mpsc_pbuf.rst | 40 * busy - bit set when packet is being consumed (claimed but not free) 45 | valid | busy | description | 73 space can be allocated. When packets are dropped ``busy`` flag is checked in the 75 skip packet is added before busy packet and packets following the busy packet 76 are dropped. When busy packet is being freed, such situation is detected and
|
/Zephyr-latest/soc/intel/intel_adsp/ace/include/ace15_mtpm/ |
D | adsp_ipc_regs.h | 43 * @brief Clear TDA busy bit. 45 * On ACE SoC family boards TDA bit 31 (BUSY) during IPC doorbell acknowledgment 47 * This clears BUSY on the other side of the connection in IDR register.
|
/Zephyr-latest/soc/intel/intel_adsp/ace/include/ace20_lnl/ |
D | adsp_ipc_regs.h | 43 * @brief Clear TDA busy bit. 45 * On ACE SoC family boards TDA bit 31 (BUSY) during IPC doorbell acknowledgment 47 * This clears BUSY on the other side of the connection in IDR register.
|
/Zephyr-latest/soc/intel/intel_adsp/ace/include/ace30/ |
D | adsp_ipc_regs.h | 40 * @brief Set TDA busy bit. 42 * On ACE SoC family boards TDA bit 31 (BUSY) during IPC doorbell acknowledgment 44 * This clears BUSY on the other side of the connection in IDR register.
|