esp-idf/components/hal
Aditya Patwardhan 9949fb3d2b
feat(hal): Add countermeasure for ECDSA generate signature
The ECDSA peripheral before ECO5 of esp32h2 does not perform the ECDSA
    sign operation in constant time. This allows an attacker to read the
    power signature of the ECDSA sign operation and then calculate the
    ECDSA key stored inside the eFuse. The commit adds a countermeasure
    for this attack. In this case the real ECDSA sign operation is
    masked under dummy ECDSA sign operations to hide its real power
    signature
2024-09-23 19:32:27 +05:30
..
esp32 fix(rmt): power up memory block 2024-07-17 13:53:35 +08:00
esp32c2 fix(hal): correct the power up sequence for MPI/ECC peripherals in ESP32-C5 2024-07-03 11:50:10 +05:30
esp32c3 fix(ext_32k): fix the external 32K issue on C3&S3 (v5.1) 2024-09-04 12:04:31 +08:00
esp32c6 fix(gpio): correct usb dp gpio pullup disable function v5.1 2024-08-01 11:26:06 +08:00
esp32h2 fix(gpio): correct usb dp gpio pullup disable function v5.1 2024-08-01 11:26:06 +08:00
esp32s2 fix(rmt): power up memory block 2024-07-17 13:53:35 +08:00
esp32s3 fix(ext_32k): fix the external 32K issue on C3&S3 (v5.1) 2024-09-04 12:04:31 +08:00
include/hal feat(hal): Add countermeasure for ECDSA generate signature 2024-09-23 19:32:27 +05:30
platform_port/include/hal fix(hal): Fix incorrect behavior of hal_memcpy 2023-11-03 15:49:35 +08:00
test
test_apps/ecc fix(hal): correct the power up sequence for MPI/ECC peripherals in ESP32-C5 2024-07-03 11:50:10 +05:30
.build-test-rules.yml
adc_hal_common.c
adc_hal.c fix(adc): workaround to fix adc continuous get less results on c3 2024-02-21 13:54:29 +08:00
adc_oneshot_hal.c fix(adc): fix h2 adc oneshot read zero and add delay after getting done signal v5.1 2023-11-17 02:16:21 +00:00
aes_hal.c
apm_hal.c
brownout_hal.c fix(bod): Reset brownout in configuration to avoid RF cannot be enabled again 2023-12-07 10:33:58 +08:00
cache_hal.c
CMakeLists.txt refactor(hal/usb): Add new USB PHY related HAL API 2024-05-13 17:36:34 +08:00
ds_hal.c
ecc_hal.c
ecdsa_hal.c feat(hal): Add countermeasure for ECDSA generate signature 2024-09-23 19:32:27 +05:30
efuse_hal.c feat(pmu): set fix voltage to different mode for esp32h2 2024-01-26 11:39:16 +08:00
emac_hal.c
etm_hal.c
gdma_hal.c
gpio_hal.c
hmac_hal.c
i2c_hal_iram.c
i2c_hal.c
i2s_hal.c
Kconfig feat(hal): Add countermeasure for ECDSA generate signature 2024-09-23 19:32:27 +05:30
lcd_hal.c
ledc_hal_iram.c
ledc_hal.c
linker.lf change(pm): put pmu_hal to iram 2024-01-16 14:01:22 +08:00
lp_timer_hal.c
mcpwm_hal.c
mmu_hal.c
mpu_hal.c
parlio_hal.c
pcnt_hal.c
README.md
rmt_hal.c fix(rmt): power up memory block 2024-07-17 13:53:35 +08:00
rtc_io_hal.c
sdio_slave_hal.c
sdkconfig.rename
sdm_hal.c
sha_hal.c
spi_flash_encrypt_hal_iram.c
spi_flash_hal_common.inc
spi_flash_hal_gpspi.c
spi_flash_hal_iram.c
spi_flash_hal.c
spi_hal_iram.c
spi_hal.c
spi_slave_hal_iram.c
spi_slave_hal.c
spi_slave_hd_hal.c
systimer_hal.c
timer_hal.c
touch_sensor_hal.c
twai_hal_iram.c
twai_hal.c
uart_hal_iram.c
uart_hal.c
usb_dwc_hal.c feat(usb/host): Update ISOC scheduler for HS endpoints 2024-03-04 09:59:50 +01:00
usb_serial_jtag_hal.c refactor(hal/usb): Add new USB PHY related HAL API 2024-05-13 17:36:34 +08:00
usb_wrap_hal.c refactor(hal/usb): Add new USB PHY related HAL API 2024-05-13 17:36:34 +08:00
wdt_hal_iram.c
xt_wdt_hal.c

hal

The hal component provides hardware abstraction and implementation for targets supported by ESP-IDF.

include/hal

/include/hal contains header files which provides a hardware-agnostic interface to the SoC. The interface consists of function declarations and abstracted types that other, higher level components can make use of in order to have code portable to all targets ESP-IDF supports.

It contains an abstraction layer for ineracting with/driving the hardware found in the SoC such as the peripherals and 'core' hardware such as the CPU, MPU, caches, etc. It contains for the abstracted types. The abstraction design is actually two levels -- often somtimes xxx_hal.h includes a lower-level header from a xxx_ll.h, which resides in the implementation. More on this abstraction design in the hal/include/hal's Readme

target/include

Provides the implementation of the hardware-agnostic interface in the abstraction. Target-specific subdirectories exist for wildly different implementations among targets; while code that are common/very similar might be placed in the top-level of /<target>/include, using some amount of conditional preprocessors. It is up to the developers' discretion on which strategy to use. Code usually reside in source files with same names to header files whose interfaces they implement, ex. xxx_hal.c for xxx_hal.h.

As mentioned previously, the lower-level abstraction header xxx_ll.h resides in this directory, since they contain hardware-specific details. However, what these can do is provide some abstraction among implementations, so that more code can be moved to the common, non-target-specific subdirectories.

This can also contain target-specific extensions to the HAL headers. These target-specific HAL headers have the same name and include the abstraction layer HAL header via include_next. These extensions might add more function declarations or override some things using macro magic.