armando
4cd83738f9
feat(isp): support AWB driver setting wbgain and subwindow feature
2025-11-07 10:16:56 +08:00
peter.marcisovsky
14a3d623b3
feat(usb_host): Add hal check for the global root port suspend
2025-10-28 11:47:22 +08:00
morris
a0de5f7387
Merge branch 'feature/esp32p4_eco5_support_v5.5' into 'release/v5.5'
...
feat(gpio/ledc/uart/2ddma/ppa): ESP32P4 ECO5 related updates (v5.5)
See merge request espressif/esp-idf!42816
2025-10-27 15:50:42 +08:00
morris
d939ad7db7
Merge branch 'feat/dvp_format_trans_v5.5' into 'release/v5.5'
...
feat(cam): support format conversion function (v5.5)
See merge request espressif/esp-idf!41785
2025-10-27 15:04:35 +08:00
morris
18531ed87e
Merge branch 'feat/jpeg_eco5_v5.5' into 'release/v5.5'
...
feat(jpeg): Add yuv444 yuv420 format support for encoder on esp32p4 eco5 , Add check for jpeg marker parser in order to enhance safety (backport v5.5)
See merge request espressif/esp-idf!42668
2025-10-27 14:55:10 +08:00
Jiang Jiang Jian
6cb1869480
Merge branch 'feat/support_esp32p4_eco5_pmu_v5.5' into 'release/v5.5'
...
feat(esp_hw_support): update esp32p4 eco5 lowpower features support (v5.5)
See merge request espressif/esp-idf!42685
2025-10-27 14:47:33 +08:00
morris
25c6d757be
Merge branch 'feature/support_touch_on_p4_eco5_v5.5' into 'release/v5.5'
...
feat(touch): support touch sensor on p4 eco5 (v5.5)
See merge request espressif/esp-idf!42740
2025-10-24 12:23:52 +08:00
C.S.M
e515483db0
feat(jpeg_encoder): Add yuv444 and yuv420 jpeg encoder format on esp32p4 eco5
2025-10-23 14:29:33 +08:00
Song Ruo Jing
37f2d25897
feat(ppa): ESP32P4 ECO5 PPA related updates
...
PPA SRM engine added YUV422 and GRAY8 color mode support
PPA SRM engine macro block size increased to 32x32
PPA Blending engine added YUV420, YUV422 and GRAY8 color mode support
2025-10-22 20:05:59 +08:00
Song Ruo Jing
e69eeb7355
feat(2ddma): ESP32P4 ECO5 2DDMA related updates
...
Added one more pair of 2DDMA channels
Priority bit width increased corespondingly
Added three new CSC modes for RX channel 0
2025-10-22 20:05:59 +08:00
laokaiyao
e15b6b7141
feat(touch): support touch sensor on p4 eco5
2025-10-22 17:52:50 +08:00
morris
27e8d5ce9d
feat(dsi): can use gray8 image as input
2025-10-22 17:26:25 +08:00
morris
be2b6efadc
feat(dsi): split the dphy config clock and pll reference clock
...
this is a breaking change in the esp32p4 ver3.0 silicon.
2025-10-22 17:26:25 +08:00
wuzhenghui
b985b5b90a
feat(esp_hw_support): update pmu support for esp32p4 v3.0
2025-10-20 17:17:51 +08:00
gaoxu
de3e6d22e3
feat(cam): support format conversion function
2025-10-20 14:21:34 +08:00
nilesh.kale
364adc79c3
feat: added config member to store block number for high part of ecdsa key
2025-10-16 14:48:13 +08:00
nilesh.kale
851602ed8e
feat: add ecdsa-p384 testcases and relative support for ESP32C5 ECO2
...
This commit adds testcases in crypto/hal and mbedtls testapps.
2025-10-16 14:48:13 +08:00
wanckl
e317af3c9e
fix(driver_twai): fixed tec_rec empty from get_info
...
Closes https://github.com/espressif/esp-idf/issues/17434
2025-09-22 20:24:52 +08:00
Song Ruo Jing
723a926b26
fix(ledc): duty_start bit should wait for its self-clear before next set on esp32
2025-08-14 18:56:34 +08:00
Jiang Jiang Jian
b8936385d3
Merge branch 'bugfix/clic_mapping_mask_v5.5' into 'release/v5.5'
...
fix(hal): make CLIC interrupt routing function to only write related bits (backport v5.5)
See merge request espressif/esp-idf!39936
2025-07-22 17:20:17 +08:00
Jiang Jiang Jian
3c39b32195
Chip/support esp32c61 v5.5
2025-07-22 12:21:36 +08:00
Omar Chebib
1b698f0997
fix(hal): make CLIC interrupt routing function to only write related bits
2025-06-23 17:45:08 +08:00
harshal.patil
5210e576d5
feat(mbedtls/sha): New API for setting SHA mode
2025-06-18 16:46:39 +05:30
morris
3fe9252c3f
Merge branch 'feat/usb-explicit-fifo-config_v5.5' into 'release/v5.5'
...
feat(usb/hal): Add HAL API to configure custom FIFO layout (backport v5.5)
See merge request espressif/esp-idf!39266
2025-06-17 10:29:39 +08:00
igor.masar
d0e0c188fb
feat(usb/hal): Add support for explicit FIFO configuration
...
Introduce a new HAL API `usb_dwc_hal_set_fifo_config()` that allows advanced users
to manually configure RX, Non-Periodic TX, and Periodic TX FIFO sizes. This offers
fine-grained control beyond the previous bias-based sizing approach.
The HAL function no longer returns `esp_err_t`, and internal validations are enforced
via `HAL_ASSERT()`. Responsibility for input validation has been moved to the HCD layer.
FIFO configuration must be applied before any USB pipes are created or activated.
This feature is intended for use during `usb_host_install()`.
If no custom FIFO configuration is provided (i.e., all values are zero),
the driver falls back to a bias-based default layout based on Kconfig settings
(`CONFIG_USB_HOST_HW_BUFFER_BIAS_*`). Bias resolution is done inside `hcd_port_init()`.
The `port_obj_t` structure has been extended with a `fifo_config` field, which stores
the configuration to allow re-application after a USB port reset.
Obsolete FIFO bias enums (`usb_hal_fifo_bias_t`, `hcd_port_fifo_bias_t`) and related
APIs (`hcd_port_set_fifo_bias()`) have been removed in favor of the new structure-based mechanism.
The HCD initialization and port reset flow has been updated to use the explicit
FIFO configuration.
USB Host maintainer documentation (`maintainers.md`) has been updated accordingly.
Test cases were updated to remove the usage of removed bias API and now rely on default
or custom FIFO configuration.
2025-06-12 21:03:47 +08:00
wanckl
7914e75525
feat(driver_twai): new driver add programming guide
2025-06-11 17:05:37 +08:00
Laukik Hase
8a999ea19e
fix(security): Set all APM masters to operate in TEE mode by default
2025-05-11 10:01:11 +05:30
Konstantin Kondrashov
01e9f8f33a
Merge branch 'feature/support_efuse_esp32c5_eco2' into 'master'
...
feat(efuse): Support efuses for ESP32-C5 ECO2
Closes IDF-12854
See merge request espressif/esp-idf!38925
2025-05-09 20:02:13 +08:00
Konstantin Kondrashov
3a72305e50
feat(efuse): Support efuses for ESP32-C5 ECO2
2025-05-09 09:29:31 +03:00
wuzhenghui
9b5944b795
feat(esp_hw_support): support switch to VBAT power supply in deepsleep on esp32p4
2025-05-08 16:44:58 +08:00
Wan Lei
a16f621ed2
Merge branch 'feat/twai_driver_legacy_target_support' into 'master'
...
feat(driver_twai): twai driver legacy target support (part_2)
Closes IDF-12480 and IDF-12808
See merge request espressif/esp-idf!36487
2025-05-01 11:05:11 +08:00
Ondrej Kosta
eba9549bbc
Merge branch 'feat/eth_mac_filter' into 'master'
...
feat(esp_eth): added option to set MAC filter for mcast
Closes IDF-12503 and IDFGH-14897
See merge request espressif/esp-idf!36944
2025-04-30 19:38:02 +08:00
Zhang Xiao Yan
97f904b6fb
Merge branch 'docs/fix_some_typos' into 'master'
...
docs: Fix some typos
Closes DOC-10600, DOC-10605, DOC-10606, DOC-10607, DOC-10608, and DOC-10671
See merge request espressif/esp-idf!37977
2025-04-30 18:35:40 +08:00
Shen Meng Jing
62d4115e08
docs: Fix some typos
2025-04-30 18:35:39 +08:00
morris
4312734f27
Merge branch 'feat/re_support_pcnt_on_c5' into 'master'
...
feat(pcnt): re-support pcnt on ESP32-C5 V1.0
Closes IDF-8683, IDF-12831, and IDF-12634
See merge request espressif/esp-idf!38547
2025-04-30 15:24:44 +08:00
wanckl
8a60934c4f
feat(driver_twai): support legacy targets in new driver
2025-04-30 10:38:55 +08:00
Ondrej Kosta
e941910c0f
feat(esp_eth): Added destination MAC address filter configuration interface
2025-04-29 13:54:56 +02:00
nilesh.kale
f19e8e6970
fix: re-enabled ecdsa support for esp32c5-eco2
2025-04-28 20:58:09 +05:30
Mahavir Jain
26f631e0dc
Merge branch 'feat/c5_eco2_ecc' into 'master'
...
feat(hal): add support for ESP32-C5 ECO2 ECC peripheral
See merge request espressif/esp-idf!38729
2025-04-28 12:34:07 +08:00
C.S.M
1a3db8e025
feat(uhci): Add uhci (uart-dma) support on esp32c3, esp32c6, esp32s3, esp32p4
2025-04-27 15:28:23 +08:00
Mahavir Jain
674dc8810e
feat(hal): add support for ESP32-C5 ECO2 ECC peripheral
2025-04-25 14:44:09 +08:00
Chen Jichang
ca981fdf4d
feat(pcnt): re-support pcnt on ESP32-C5 V1.0
2025-04-25 13:07:38 +08:00
C.S.M
d6760b170a
fix(i2c): Fix that fsm reset cause i2c scl frequency changed on esp32s2,
...
Closes https://github.com/espressif/esp-idf/issues/15724
2025-04-17 18:03:42 +08:00
Chen Jichang
e353f92b66
feat(gdma): support gdma on esp32h4
2025-04-15 11:15:40 +08:00
laokaiyao
37cbd1e555
fix(touch): fixed tie option take no effect
2025-04-09 17:13:01 +08:00
wanckl
043c46b4f4
feat(driver_twai): add new driver based on c5 twaifd
2025-04-01 20:17:09 +08:00
Song Ruo Jing
b38ac5ad82
feat(uart): add uart_detect_bitrate_bps API for data line bitrate measurement
...
Closes https://github.com/espressif/esp-idf/issues/14721
2025-03-28 15:03:19 +08:00
Chen Ji Chang
6474fd67ae
Merge branch 'feat/h4_introduce_step8' into 'master'
...
feat(esp32h4): introduce hello world to ESP32H4 (stage8)
Closes IDF-9526 and IDF-12333
See merge request espressif/esp-idf!37545
2025-03-20 16:16:05 +08:00
morris
991acde4f7
Merge branch 'contrib/github_pr_15484' into 'master'
...
fix(twai): fixed twai assert fail during recover (GitHub PR)
Closes IDFGH-8204 and IDFGH-14745
See merge request espressif/esp-idf!37731
2025-03-20 14:04:01 +08:00
Chen Jichang
44117b623d
refactor(esp_rom): remove specific chip name when including rom header
2025-03-17 18:53:26 +08:00