mirror of
https://github.com/espressif/esp-idf.git
synced 2026-04-28 19:34:59 +00:00
d4d8b09ced
- Introduced new HAL components for LCD and MIPI DSI, including: - `lcd_hal.c` and `lcd_hal.h` for LCD hardware abstraction layer. - `mipi_dsi_hal.c` and `mipi_dsi_hal.h` for MIPI DSI hardware abstraction layer. - Peripheral connection definitions in `lcd_periph.c` and `lcd_periph.h`. - Added necessary types and utility functions in `lcd_types.h` and `mipi_dsi_types.h`. - Updated CMakeLists to include the new HAL components in the build system. - Removed legacy references to LCD and MIPI DSI in the HAL and SOC CMakeLists.
37 lines
1.1 KiB
Plaintext
37 lines
1.1 KiB
Plaintext
[mapping:esp_lcd_dsi]
|
|
archive: libesp_lcd.a
|
|
entries:
|
|
if LCD_DSI_ISR_HANDLER_IN_IRAM = y:
|
|
esp_lcd_panel_dpi: mipi_dsi_dma_trans_done_cb (noflash)
|
|
esp_lcd_panel_dpi: mipi_dsi_bridge_isr_handler (noflash)
|
|
|
|
[mapping:esp_lcd_dsi_dma]
|
|
archive: libesp_hw_support.a
|
|
entries:
|
|
if LCD_DSI_ISR_HANDLER_IN_IRAM = y:
|
|
# Control dw_gdma function placement granularly
|
|
dw_gdma: dw_gdma_link_list_get_item (noflash)
|
|
dw_gdma: dw_gdma_lli_set_block_markers (noflash)
|
|
dw_gdma: dw_gdma_channel_use_link_list (noflash)
|
|
dw_gdma: dw_gdma_channel_enable_ctrl (noflash)
|
|
|
|
[mapping:esp_lcd_rgb_dma]
|
|
archive: libesp_hw_support.a
|
|
entries:
|
|
if LCD_RGB_ISR_IRAM_SAFE = y:
|
|
gdma: gdma_reset (noflash)
|
|
gdma: gdma_start (noflash)
|
|
gdma_link: gdma_link_get_head_addr (noflash)
|
|
|
|
[mapping:esp_lcd_rgb_hal_common]
|
|
archive: libhal.a
|
|
entries:
|
|
if LCD_RGB_ISR_IRAM_SAFE = y:
|
|
hal_utils: hal_utils_calc_clk_div_frac_fast (noflash)
|
|
|
|
[mapping:esp_lcd_rgb_hal]
|
|
archive: libesp_hal_lcd.a
|
|
entries:
|
|
if LCD_RGB_ISR_IRAM_SAFE = y:
|
|
lcd_hal: lcd_hal_cal_pclk_freq (noflash)
|