Skip to content

Commit b184b9a

Browse files
committed
Merge branch 'bugfix/usb_serial_driver_block' into 'master'
usb_serial_jtag: Fix bug of blocking TX xfer when using driver Closes IDF-5390 and IDFGH-8776 See merge request espressif/esp-idf!22412
2 parents 0d97eeb + 720b8d9 commit b184b9a

File tree

4 files changed

+32
-14
lines changed

4 files changed

+32
-14
lines changed

components/driver/usb_serial_jtag/include/driver/usb_serial_jtag.h

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,9 @@ typedef struct {
3535
* USB-SERIAL-JTAG driver's ISR will be attached to the same CPU core that calls this function. Thus, users
3636
* should ensure that the same core is used when calling `usb_serial_jtag_driver_uninstall()`.
3737
*
38-
* @note Blocking mode will result in usb_serial_jtag_write_bytes() blocking until all bytes have been written to the TX FIFO.
38+
* @note Blocking mode will result in usb_serial_jtag_write_bytes() blocking for a
39+
* short period if the TX FIFO if full. It will not block again until the buffer
40+
* has some space available again.
3941
*
4042
* @param usb_serial_jtag_driver_config_t Configuration for usb_serial_jtag driver.
4143
*
@@ -65,7 +67,7 @@ int usb_serial_jtag_read_bytes(void* buf, uint32_t length, TickType_t ticks_to_w
6567
*
6668
* @param src data buffer address
6769
* @param size data length to send
68-
* @param ticks_to_wait Timeout in RTOS ticks
70+
* @param ticks_to_wait Maximum timeout in RTOS ticks
6971
*
7072
* @return
7173
* - The number of bytes pushed to the TX FIFO

components/driver/usb_serial_jtag/usb_serial_jtag.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -165,8 +165,8 @@ int usb_serial_jtag_write_bytes(const void* src, size_t size, TickType_t ticks_t
165165
// Blocking method, Sending data to ringbuffer, and handle the data in ISR.
166166
xRingbufferSend(p_usb_serial_jtag_obj->tx_ring_buf, (void*) (buff), size, ticks_to_wait);
167167
// Now trigger the ISR to read data from the ring buffer.
168-
usb_serial_jtag_ll_ena_intr_mask(USB_SERIAL_JTAG_INTR_SERIAL_IN_EMPTY);
169-
return size;
168+
usb_serial_jtag_ll_ena_intr_mask(USB_SERIAL_JTAG_INTR_SERIAL_IN_EMPTY);
169+
return size;
170170
}
171171

172172
esp_err_t usb_serial_jtag_driver_uninstall(void)

components/vfs/vfs_usb_serial_jtag.c

Lines changed: 15 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -77,6 +77,8 @@ typedef struct {
7777
// When the driver is used (via esp_vfs_usb_serial_jtag_use_driver),
7878
// reads are either blocking or non-blocking depending on this flag.
7979
bool non_blocking;
80+
// TX has already tried a blocking send.
81+
bool tx_tried_blocking;
8082
// Newline conversion mode when transmitting
8183
esp_line_endings_t tx_mode;
8284
// Newline conversion mode when receiving
@@ -404,7 +406,19 @@ static int usbjtag_rx_char_via_driver(int fd)
404406
static void usbjtag_tx_char_via_driver(int fd, int c)
405407
{
406408
char ch = (char) c;
407-
usb_serial_jtag_write_bytes(&ch, 1, portMAX_DELAY);
409+
TickType_t ticks = (TX_FLUSH_TIMEOUT_US / 1000) / portTICK_PERIOD_MS;
410+
if (usb_serial_jtag_write_bytes(&ch, 1, 0) != 0) {
411+
s_ctx.tx_tried_blocking = false;
412+
return;
413+
}
414+
415+
if (s_ctx.tx_tried_blocking == false) {
416+
if (usb_serial_jtag_write_bytes(&ch, 1, ticks) != 0) {
417+
return;
418+
} else {
419+
s_ctx.tx_tried_blocking = true;
420+
}
421+
}
408422
}
409423

410424
void esp_vfs_usb_serial_jtag_use_nonblocking(void)

docs/en/api-guides/usb-serial-jtag-console.rst

Lines changed: 11 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -53,26 +53,28 @@ The USB Serial/JTAG Controller is able to put the {IDF_TARGET_NAME} into downloa
5353
Limitations
5454
===========
5555

56-
There are several limitations to the USB console feature. These may or may not be significant, depending on the type of application being developed, and the development workflow.
56+
There are several limitations to the USB Serial/JTAG console feature. These may or may not be significant, depending on the type of application being developed, and the development workflow.
5757

5858
{IDF_TARGET_BOOT_PIN:default = "Not Updated!", esp32c3 = "GPIO9", esp32s3 = "GPIO0"}
5959

6060
1. If the application accidentally reconfigures the USB peripheral pins, or disables the USB Serial/JTAG Controller, the device will disappear from the system. After fixing the issue in the application, you will need to manually put the {IDF_TARGET_NAME} into download mode by pulling low {IDF_TARGET_BOOT_PIN} and resetting the chip.
6161

62-
2. If the application enters deep sleep mode, USB CDC device will disappear from the system.
62+
2. If the application enters deep sleep mode, the USB Serial/JTAG device will disappear from the system.
6363

64-
3. The behavior between an actual USB-to-serial bridge chip and the USB Serial/JTAG Controller is slightly different if the ESP-IDF application does not listen for incoming bytes. An USB-to-serial bridge chip will just send the bytes to a (not listening) chip, while the USB Serial/JTAG Controller will block until the application reads the bytes. This can lead to a non-responsive looking terminal program.
64+
3. For data sent in the direction of {IDF_TARGET_NAME} to PC Terminal (e.g. stdout, logs), the {IDF_TARGET_NAME} first writes to a small internal buffer. If this buffer becomes full (for example, if no PC Terminal is connected), the {IDF_TARGET_NAME} will do a one-time wait of 50ms hoping for the PC Terminal to request the data. This can appear as a very brief 'pause' in your application.
6565

66-
4. The USB CDC device won't work in sleep modes as normal due to the lack of APB clock in sleep modes. This includes deep-sleep, light-sleep (automataic light-sleep as well).
66+
4. For data sent in the PC Terminal to {IDF_TARGET_NAME} direction (e.g. console commands), many PC Terminals will wait for the {IDF_TARGET_NAME} to ingest the bytes before allowing you to sending more data. This is in contrast to using a USB-to-Serial (UART) bridge chip, which will always ingest the bytes and send them to a (possibly not listening) {IDF_TARGET_NAME}.
6767

68-
5. The power consumption in sleep modes will be higher if the USB CDC device is in use.
68+
5. The USB Serial/JTAG device won't work in sleep modes as normal due to the lack of APB clock in sleep modes. This includes deep-sleep, light-sleep (automataic light-sleep as well).
6969

70-
This is because we want to keep the USB CDC device alive during software reset by default.
70+
6. The power consumption in sleep modes will be higher if the USB Serial/JTAG device is in use.
7171

72-
However there is an issue that this might also increase the power consumption in sleep modes. This is because the software keeps a clock source on during the reset to keep the USB CDC device alive. As a side-effect, the clock is also kept on during sleep modes. There is one exception: the clock will only be kept on when your USB CDC port is really in use (like data transaction), therefore, if your USB CDC is connected to power bank or battery, etc., instead of a valid USB host (for example, a PC), the power consumption will not increase.
72+
This is because we want to keep the USB Serial/JTAG device alive during software reset by default.
73+
74+
However there is an issue that this might also increase the power consumption in sleep modes. This is because the software keeps a clock source on during the reset to keep the USB Serial/JTAG device alive. As a side-effect, the clock is also kept on during sleep modes. There is one exception: the clock will only be kept on when your USB Serial/JTAG port is really in use (like data transaction), therefore, if your USB Serial/JTAG is connected to power bank or battery, etc., instead of a valid USB host (for example, a PC), the power consumption will not increase.
7375

7476
If you still want to keep low power consumption in sleep modes:
7577

76-
1. If you are not using the USB CDC port, you don't need to do anything. Software will detect if the CDC device is connected to a valid host before going to sleep, and keep the clocks only when the host is connected. Otherwise the clocks will be turned off as normal.
78+
1. If you are not using the USB Serial/JTAG port, you don't need to do anything. Software will detect if the USB Serial/JTAG is connected to a valid host before going to sleep, and keep the clocks only when the host is connected. Otherwise the clocks will be turned off as normal.
7779

78-
2. If you are using the USB CDC port, please disable the menuconfig option ``CONFIG_RTC_CLOCK_BBPLL_POWER_ON_WITH_USB``. The clock will be switched off as normal during software reset and in sleep modes. In these cases, the USB CDC device may be unplugged from the host.
80+
2. If you are using the USB Serial/JTAG port, please disable the menuconfig option ``CONFIG_RTC_CLOCK_BBPLL_POWER_ON_WITH_USB``. The clock will be switched off as normal during software reset and in sleep modes. In these cases, the USB Serial/JTAG device may be unplugged from the host.

0 commit comments

Comments
 (0)