drivers: uart: espressif: Add LP UART driver

Add LP UART driver for LP Core

Signed-off-by: Lucas Tamborrino <lucas.tamborrino@espressif.com>
This commit is contained in:
Lucas Tamborrino 2025-01-24 17:10:13 -03:00 committed by Benjamin Cabé
commit 232e2c5a3c
12 changed files with 285 additions and 1 deletions

View file

@ -54,6 +54,8 @@ SECTIONS
__text_region_start = ABSOLUTE(.);
*(.text)
*(.text*)
*(.iram1)
*(.iram1.*)
__text_region_end = ABSOLUTE(.);
} >ram
@ -104,11 +106,13 @@ SECTIONS
.bss ALIGN(4) :
{
__bss_start = .;
*(.bss)
*(.bss*)
*(.sbss)
*(.sbss*)
PROVIDE(end = .);
__bss_end = .;
_heap_sentry = .;
} >ram