esp-idf/components/hal
David Cermak 2553fb5845 esp_eth: Make EMAC DMA burst size configurable
Merges https://github.com/espressif/esp-idf/pull/7874
Closes  https://github.com/espressif/esp-idf/issues/7380
2022-02-14 16:17:29 +00:00
..
esp32 rmt: move RMT item definition from soc to driver 2022-01-06 21:43:12 +08:00
esp32c2 uart: support light sleep on esp32s3 2022-01-25 17:43:02 +08:00
esp32c3 debug: esp32c3 uart1 wakeup 2022-01-25 17:43:02 +08:00
esp32h2 uart: support light sleep on esp32s3 2022-01-25 17:43:02 +08:00
esp32s2 rmt: do not support rx wrap on esp32s2 2022-02-08 13:57:31 +08:00
esp32s3 Merge branch 'refactor/lcd_soc_ll_update_according_trm' into 'master' 2022-02-12 08:13:34 +00:00
include/hal esp_eth: Make EMAC DMA burst size configurable 2022-02-14 16:17:29 +00:00
platform_port/include/hal HAL: Fix Force U32 macros for C++ typeof() 2021-09-07 11:23:06 +08:00
test Build & config: Remove leftover files from the unsupported "make" build system 2021-11-11 15:32:36 +01:00
CMakeLists.txt Merge branch 'bugfix/adc2_cal_assert_arbiter_failed' into 'master' 2022-01-19 15:55:07 +00:00
Kconfig
README.md
adc_hal.c adc: support adc dma driver on all chips 2021-12-16 00:19:15 +00:00
aes_hal.c
cpu_hal.c
dac_hal.c
ds_hal.c
emac_hal.c esp_eth: Make EMAC DMA burst size configurable 2022-02-14 16:17:29 +00:00
gdma_hal.c gdma: support IRAM interrupt 2021-11-08 16:14:51 +08:00
gpio_hal.c
i2c_hal.c
i2c_hal_iram.c
i2s_hal.c components: correct abs() use for unsigned and 64-bit arguments 2022-01-29 12:07:16 +07:00
interrupt_controller_hal.c
lcd_hal.c lcd: unify callback prototype 2021-10-02 14:23:31 +08:00
ledc_hal.c LEDC: improved support for ESP32-C3 and refactored divisor calculation 2021-11-11 12:21:15 +08:00
ledc_hal_iram.c
linker.lf hal: fix CONFIG_TWAI_ISR_IN_IRAM not taking effect for C3/H2 2022-01-20 22:24:27 +01:00
mcpwm_hal.c
mpu_hal.c
pcnt_hal.c
rmt_hal.c rmt: move RMT item definition from soc to driver 2022-01-06 21:43:12 +08:00
rtc_io_hal.c
sdio_slave_hal.c hal: remove usages of esp_log in HAL 2021-09-01 13:58:47 +08:00
sha_hal.c
sigmadelta_hal.c
soc_hal.c
spi_flash_encrypt_hal_iram.c
spi_flash_hal.c esp_flash: add opi flash support in esp_flash chip driver, for MXIC 2021-09-07 14:44:40 +08:00
spi_flash_hal_common.inc build-system: include soc_caps defines into kconfig 2021-12-06 12:37:07 +08:00
spi_flash_hal_gpspi.c
spi_flash_hal_iram.c ESP8684: add freertos, hal, esp_system support 2021-11-06 17:33:44 +08:00
spi_hal.c esp_rom: extract int matrix route and cpu ticks getter 2022-02-09 13:52:20 +08:00
spi_hal_iram.c spi: support spi on 8684 2022-01-12 11:30:29 +08:00
spi_slave_hal.c
spi_slave_hal_iram.c
spi_slave_hd_hal.c
systimer_hal.c ESP8684: add freertos, hal, esp_system support 2021-11-06 17:33:44 +08:00
timer_hal.c gptimer: new driver for previous timer group 2022-01-07 14:44:50 +08:00
timer_hal_iram.c gptimer: new driver for previous timer group 2022-01-07 14:44:50 +08:00
touch_sensor_hal.c
twai_hal.c
twai_hal_iram.c
uart_hal.c
uart_hal_iram.c
usb_hal.c
usb_phy_hal.c usb: Add usb_phy driver to support operations on USB PHY 2021-09-13 12:39:56 +08:00
usbh_hal.c usb: USB Host stack uses USB PHY driver 2022-01-06 15:09:39 +08:00
wdt_hal_iram.c esp8684: rename target to esp32c2 2022-01-19 11:08:57 +08:00
xt_wdt_hal.c WDT: Add support for XTAL32K Watchdog timer 2021-09-02 09:09:00 +08:00

README.md

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.