/Zephyr-latest/tests/subsys/logging/log_blocking/ |
D | testcase.yaml | 21 logging.blocking.rate.stalled:
|
D | REAME.md | 32 | Stalled | 0 | 0 | 0 | 85 unable to allocate new log messages and it will be stalled.
|
/Zephyr-latest/boards/intel/socfpga_std/cyclonev_socdk/doc/ |
D | index.rst | 247 Info : DAP transaction stalled (WAIT) - slowing down 248 Info : DAP transaction stalled (WAIT) - slowing down 262 Info : DAP transaction stalled (WAIT) - slowing down 266 Info : DAP transaction stalled (WAIT) - slowing down 286 Info : DAP transaction stalled (WAIT) - slowing down 287 Info : DAP transaction stalled (WAIT) - slowing down 312 Info : DAP transaction stalled (WAIT) - slowing down 313 Info : DAP transaction stalled (WAIT) - slowing down
|
/Zephyr-latest/tests/subsys/usb/device/src/ |
D | main.c | 132 /* Check if the selected endpoint is stalled */ in ZTEST() 134 "usb_dc_ep_is_stalled(INVALID_EP, stalled)"); in ZTEST()
|
/Zephyr-latest/drivers/usb/device/ |
D | usb_dc_sam_usbhs.c | 605 /* Check if the selected endpoint is stalled */ 606 int usb_dc_ep_is_stalled(uint8_t ep, uint8_t *stalled) in usb_dc_ep_is_stalled() argument 615 if (!stalled) { in usb_dc_ep_is_stalled() 619 *stalled = (USBHS->USBHS_DEVEPTIMR[ep_idx] & in usb_dc_ep_is_stalled() 743 LOG_WRN("endpoint is stalled"); in usb_dc_ep_write() 851 LOG_WRN("endpoint is stalled"); in usb_dc_ep_read_wait()
|
D | usb_dc_kinetis.c | 477 int usb_dc_ep_is_stalled(const uint8_t ep, uint8_t *const stalled) in usb_dc_ep_is_stalled() argument 487 if (!stalled) { in usb_dc_ep_is_stalled() 491 *stalled = 0U; in usb_dc_ep_is_stalled() 493 *stalled = dev_data.ep_ctrl[ep_idx].status.out_stalled; in usb_dc_ep_is_stalled() 495 *stalled = dev_data.ep_ctrl[ep_idx].status.in_stalled; in usb_dc_ep_is_stalled() 619 LOG_WRN("endpoint is stalled"); in usb_dc_ep_write() 684 LOG_WRN("endpoint is stalled"); in usb_dc_ep_read_wait()
|
D | usb_dc_sam_usbc.c | 1008 int usb_dc_ep_is_stalled(uint8_t ep, uint8_t *stalled) in usb_dc_ep_is_stalled() argument 1017 if (!stalled) { in usb_dc_ep_is_stalled() 1021 *stalled = ((regs->UECON[ep_idx] & USBC_UECON0_STALLRQ) != 0); in usb_dc_ep_is_stalled() 1023 LOG_DBG("USB DC stall check ep 0x%02x stalled: %d", ep, *stalled); in usb_dc_ep_is_stalled() 1246 LOG_WRN("endpoint is stalled"); in usb_dc_ep_write() 1365 LOG_WRN("endpoint is stalled"); in usb_dc_ep_read_ex()
|
D | usb_dc_sam0.c | 496 int usb_dc_ep_is_stalled(const uint8_t ep, uint8_t *stalled) in usb_dc_ep_is_stalled() argument 508 if (stalled == NULL) { in usb_dc_ep_is_stalled() 514 *stalled = endpoint->EPSTATUS.bit.STALLRQ1; in usb_dc_ep_is_stalled() 516 *stalled = endpoint->EPSTATUS.bit.STALLRQ0; in usb_dc_ep_is_stalled()
|
D | usb_dc_mcux.c | 412 int usb_dc_ep_is_stalled(const uint8_t ep, uint8_t *const stalled) in usb_dc_ep_is_stalled() argument 423 if (!stalled) { in usb_dc_ep_is_stalled() 427 *stalled = 0; in usb_dc_ep_is_stalled() 438 *stalled = (uint8_t)ep_status.endpointStatus; in usb_dc_ep_is_stalled()
|
D | usb_dc_dw.c | 1064 int usb_dc_ep_is_stalled(const uint8_t ep, uint8_t *const stalled) in usb_dc_ep_is_stalled() argument 1074 if (!stalled) { in usb_dc_ep_is_stalled() 1078 *stalled = 0U; in usb_dc_ep_is_stalled() 1081 *stalled = 1U; in usb_dc_ep_is_stalled() 1085 *stalled = 1U; in usb_dc_ep_is_stalled()
|
D | usb_dc_native_posix.c | 264 int usb_dc_ep_is_stalled(const uint8_t ep, uint8_t *const stalled) in usb_dc_ep_is_stalled() argument 273 if (!stalled) { in usb_dc_ep_is_stalled()
|
D | usb_dc_smartbond.c | 127 uint8_t stall : 1; /** Endpoint is stalled */ 949 * EP0 is stalled and NAK was sent, it means that in handle_ep0_nak() 1574 int usb_dc_ep_is_stalled(const uint8_t ep, uint8_t *const stalled) in usb_dc_ep_is_stalled() argument 1582 if (NULL == ep_state || NULL == stalled) { in usb_dc_ep_is_stalled() 1586 *stalled = ep_state->stall; in usb_dc_ep_is_stalled()
|
D | usb_dc_rpi_pico.c | 676 int usb_dc_ep_is_stalled(const uint8_t ep, uint8_t *const stalled) in usb_dc_ep_is_stalled() argument 682 if (!ep_state || !stalled) { in usb_dc_ep_is_stalled() 686 *stalled = ep_state->halted; in usb_dc_ep_is_stalled()
|
D | usb_dc_numaker.c | 291 /* Set EP to stalled */ in numaker_usbd_ep_set_stall() 1492 /* Set EP to stalled */ in usb_dc_ep_set_stall() 1531 int usb_dc_ep_is_stalled(const uint8_t ep, uint8_t *const stalled) in usb_dc_ep_is_stalled() argument 1537 if (!stalled) { in usb_dc_ep_is_stalled() 1552 *stalled = numaker_usbd_ep_is_stalled(ep_cur); in usb_dc_ep_is_stalled()
|
D | usb_dc_stm32.c | 877 int usb_dc_ep_is_stalled(const uint8_t ep, uint8_t *const stalled) in usb_dc_ep_is_stalled() argument 883 if (!ep_state || !stalled) { in usb_dc_ep_is_stalled() 887 *stalled = ep_state->ep_stalled; in usb_dc_ep_is_stalled()
|
D | usb_dc_it82xx2.c | 1281 int usb_dc_ep_is_stalled(const uint8_t ep, uint8_t *stalled) in usb_dc_ep_is_stalled() argument 1285 if ((!stalled) || (ep_idx >= MAX_NUM_ENDPOINTS)) { in usb_dc_ep_is_stalled() 1289 *stalled = it82xx2_usb_set_ep_ctrl(ep_idx, EP_STALL_CHECK, true); in usb_dc_ep_is_stalled()
|
/Zephyr-latest/include/zephyr/drivers/usb/ |
D | usb_dc.h | 238 * @brief Check if the selected endpoint is stalled 242 * @param[out] stalled Endpoint stall status 246 int usb_dc_ep_is_stalled(const uint8_t ep, uint8_t *const stalled);
|
/Zephyr-latest/drivers/usb/common/nrf_usbd_common/ |
D | nrf_usbd_common.h | 570 * @note Stalled endpoint would not be cleared when DMA transfer finishes. 579 * This function clears endpoint that is stalled. 592 * @brief Check if endpoint is stalled. 598 * @retval false Endpoint is not stalled. 599 * @retval true Endpoint is stalled.
|
/Zephyr-latest/drivers/clock_control/ |
D | clock_stm32f2_f4_f7.c | 119 * locking phase since the system will be stalled during the switch in config_pll_sysclock()
|
/Zephyr-latest/drivers/flash/ |
D | flash_stm32wbx.c | 101 * If the PESD is set, the CPU1 will be stalled when reading in write_dword() 238 * If the PESD is set, the CPU1 will be stalled when reading in erase_page()
|
/Zephyr-latest/tests/subsys/logging/log_blocking/src/ |
D | main.c | 181 * -T tests/subsys/logging/log_blocking/logging.blocking.rate.stalled in ZTEST()
|
/Zephyr-latest/drivers/usb/udc/ |
D | udc_mcux_ehci.c | 111 return -EACCES; /* stalled */ in udc_mcux_ep_feed() 144 /* return success if the ep is busy or stalled. */ 618 /* transfer is enqueued after stalled */ in udc_mcux_ep_clear_halt()
|
D | udc_mcux_ip3511.c | 111 return -EACCES; /* stalled */ in udc_mcux_ep_feed() 144 /* return success if the ep is busy or stalled. */ 618 /* transfer is enqueued after stalled */ in udc_mcux_ep_clear_halt()
|
D | udc_numaker.c | 227 static inline void numaker_usbd_ep_sync_udc_halt(struct numaker_usbd_ep *ep_cur, bool stalled) in numaker_usbd_ep_sync_udc_halt() argument 234 ep_cfg->stat.halted = stalled; in numaker_usbd_ep_sync_udc_halt() 242 /* Set EP to stalled */ in numaker_usbd_ep_set_stall() 1432 /* Set EP to stalled */ in udc_numaker_ep_set_halt()
|
/Zephyr-latest/drivers/i2c/ |
D | i2c_npcx_controller.c | 484 /* Step 1: Make sure the bus is not stalled before exit. */ in i2c_ctrl_recovery() 497 LOG_ERR("Abort i2c port%02x fail! Bus might be stalled.", in i2c_ctrl_recovery() 510 LOG_ERR("Reset i2c port%02x fail! Bus might be stalled.", in i2c_ctrl_recovery() 1004 * When the SCL is low, wait for a while in case of the clock is stalled in npcx_i2c_ctrl_recover_bus()
|