This is an automated email from the ASF dual-hosted git repository.
xiaoxiang781216 pushed a change to branch master
in repository https://gitbox.apache.org/repos/asf/nuttx.git
from 90486faf47d graphics/nxterm: consume SGR escape sequences
new 7a62d860d4e arch/arm/stm32u5: Move reusable core support to common
new d548cff311a arch/arm/stm32u3: Add STM32U3C5 architecture support
new c575e056c60 boards/arm/stm32u3: Add NUCLEO-U3C5ZI-Q support
The 3 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails. The revisions
listed as "add" were already present in the repository and have only
been added to this reference.
Summary of changes:
Documentation/guides/stm32_ports.rst | 28 +-
.../arm/stm32u3/boards/nucleo-u3c5zi-q/index.rst | 30 +
Documentation/platforms/arm/stm32u3/index.rst | 48 +
arch/arm/Kconfig | 17 +
arch/arm/include/stm32u3/chip.h | 86 +
.../stm32_syscfg.h => include/stm32u3/irq.h} | 15 +-
arch/arm/include/stm32u3/stm32_irq.h | 98 ++
arch/arm/include/stm32u3/stm32u3c5xx_irq.h | 174 ++
arch/arm/src/common/stm32/CMakeLists.txt | 27 +-
arch/arm/src/common/stm32/Make.defs | 26 +-
arch/arm/src/common/stm32/hardware/stm32_exti.h | 12 +-
.../common/stm32/hardware/stm32_exti_m33_u3u5.h | 468 ++++++
arch/arm/src/common/stm32/hardware/stm32_gpio.h | 5 +-
.../common/stm32/hardware/stm32_gpio_m33_u3u5.h | 770 +++++++++
arch/arm/src/common/stm32/hardware/stm32_syscfg.h | 6 +-
.../stm32/hardware/stm32_syscfg_m33_u5.h} | 8 +-
.../common/stm32/hardware/stm32_uart_m33_u3u5.h | 418 +++++
.../stm32/stm32_allocateheap_m33_u3u5.c} | 26 +-
.../stm32/stm32_exti_gpio_m33_u3u5.c} | 44 +-
arch/arm/src/common/stm32/stm32_gpio.h | 5 +-
.../stm32/stm32_gpio_m33_u3u5.c} | 20 +-
.../stm32/stm32_gpio_m33_u3u5.h} | 18 +-
.../stm32/stm32_idle_m33_u3u5.c} | 2 +-
.../stm32/stm32_irq_m33_u3u5.c} | 2 +-
.../stm32/stm32_lowputc_m33_u3u5.c} | 10 +-
...lize_m3m4_v1.c => stm32_pminitialize_default.c} | 4 +-
arch/arm/src/common/stm32/stm32_rcc.h | 11 +
.../stm32/stm32_rcc_m33_u5.h} | 14 +-
.../stm32/stm32_serial_m33_u3u5.c} | 674 ++++----
.../stm32/stm32_start_m33_u3u5.c} | 87 +-
.../stm32/stm32_timerisr_m33_u3u5.c} | 2 +-
arch/arm/src/common/stm32/stm32_uart.h | 5 +-
.../stm32/stm32_uart_m33_u3u5.h} | 16 +-
arch/arm/src/{stm32u5 => stm32u3}/CMakeLists.txt | 43 +-
arch/arm/src/stm32u3/Kconfig | 41 +
arch/arm/src/{stm32u5 => stm32u3}/Make.defs | 41 +-
.../chip.h} | 49 +-
.../hardware/stm32_flash.h} | 15 +-
arch/arm/src/stm32u3/hardware/stm32_memorymap.h | 543 +++++++
.../hardware/stm32_pinmap.h} | 15 +-
arch/arm/src/stm32u3/hardware/stm32u3c5xx_pinmap.h | 967 +++++++++++
arch/arm/src/stm32u3/hardware/stm32u3xx_flash.h | 1701 ++++++++++++++++++++
arch/arm/src/stm32u3/hardware/stm32u3xx_pwr.h | 694 ++++++++
arch/arm/src/stm32u3/hardware/stm32u3xx_rcc.h | 1019 ++++++++++++
arch/arm/src/stm32u3/hardware/stm32u3xx_syscfg.h | 175 ++
.../hardware/stm32_syscfg.h => stm32u3/stm32.h} | 25 +-
.../stm32_lowputc.h} | 50 +-
arch/arm/src/stm32u3/stm32_rcc.c | 125 ++
.../stm32_rcc_m33_u3.h} | 67 +-
arch/arm/src/stm32u3/stm32u3xx_rcc.c | 235 +++
arch/arm/src/stm32u5/CMakeLists.txt | 14 +-
arch/arm/src/stm32u5/Make.defs | 10 +-
arch/arm/src/stm32u5/hardware/stm32_exti.h | 121 --
arch/arm/src/stm32u5/hardware/stm32_gpio.h | 389 -----
arch/arm/src/stm32u5/hardware/stm32_uart.h | 310 ----
boards/Kconfig | 14 +-
.../arm/stm32u3/common}/CMakeLists.txt | 45 +-
boards/arm/stm32u3/common/Makefile | 38 +
.../arm/stm32u3/nucleo-u3c5zi-q}/CMakeLists.txt | 45 +-
boards/arm/stm32u3/nucleo-u3c5zi-q/Kconfig | 8 +
.../nucleo-u3c5zi-q/configs/jumbo/defconfig | 63 +
.../stm32u3/nucleo-u3c5zi-q/configs/nsh/defconfig | 35 +
boards/arm/stm32u3/nucleo-u3c5zi-q/include/board.h | 152 ++
.../arm/stm32u3/nucleo-u3c5zi-q/scripts/Make.defs | 36 +
.../arm/stm32u3/nucleo-u3c5zi-q/scripts/flash.ld | 107 ++
.../stm32u3/nucleo-u3c5zi-q/src}/CMakeLists.txt | 45 +-
boards/arm/stm32u3/nucleo-u3c5zi-q/src/Make.defs | 30 +
.../stm32u3/nucleo-u3c5zi-q/src/nucleo-u3c5zi-q.h | 20 +-
.../arm/stm32u3/nucleo-u3c5zi-q/src/stm32_boot.c | 27 +-
.../stm32u3/nucleo-u3c5zi-q/src/stm32_bringup.c | 31 +-
70 files changed, 8858 insertions(+), 1663 deletions(-)
create mode 100644
Documentation/platforms/arm/stm32u3/boards/nucleo-u3c5zi-q/index.rst
create mode 100644 Documentation/platforms/arm/stm32u3/index.rst
create mode 100644 arch/arm/include/stm32u3/chip.h
copy arch/arm/{src/stm32u5/hardware/stm32_syscfg.h => include/stm32u3/irq.h}
(75%)
create mode 100644 arch/arm/include/stm32u3/stm32_irq.h
create mode 100644 arch/arm/include/stm32u3/stm32u3c5xx_irq.h
create mode 100644 arch/arm/src/common/stm32/hardware/stm32_exti_m33_u3u5.h
create mode 100644 arch/arm/src/common/stm32/hardware/stm32_gpio_m33_u3u5.h
copy arch/arm/src/{stm32u5/hardware/stm32_syscfg.h =>
common/stm32/hardware/stm32_syscfg_m33_u5.h} (83%)
create mode 100644 arch/arm/src/common/stm32/hardware/stm32_uart_m33_u3u5.h
rename arch/arm/src/{stm32u5/stm32_allocateheap.c =>
common/stm32/stm32_allocateheap_m33_u3u5.c} (94%)
rename arch/arm/src/{stm32u5/stm32_exti_gpio.c =>
common/stm32/stm32_exti_gpio_m33_u3u5.c} (84%)
rename arch/arm/src/{stm32u5/stm32_gpio.c =>
common/stm32/stm32_gpio_m33_u3u5.c} (97%)
rename arch/arm/src/{stm32u5/stm32_gpio.h =>
common/stm32/stm32_gpio_m33_u3u5.h} (96%)
rename arch/arm/src/{stm32u5/stm32_idle.c =>
common/stm32/stm32_idle_m33_u3u5.c} (98%)
rename arch/arm/src/{stm32u5/stm32_irq.c => common/stm32/stm32_irq_m33_u3u5.c}
(99%)
rename arch/arm/src/{stm32u5/stm32_lowputc.c =>
common/stm32/stm32_lowputc_m33_u3u5.c} (98%)
copy arch/arm/src/common/stm32/{stm32_pminitialize_m3m4_v1.c =>
stm32_pminitialize_default.c} (96%)
rename arch/arm/src/{stm32u5/stm32_rcc.h => common/stm32/stm32_rcc_m33_u5.h}
(93%)
rename arch/arm/src/{stm32u5/stm32_serial.c =>
common/stm32/stm32_serial_m33_u3u5.c} (88%)
rename arch/arm/src/{stm32u5/stm32_start.c =>
common/stm32/stm32_start_m33_u3u5.c} (77%)
rename arch/arm/src/{stm32u5/stm32_timerisr.c =>
common/stm32/stm32_timerisr_m33_u3u5.c} (98%)
rename arch/arm/src/{stm32u5/stm32_uart.h =>
common/stm32/stm32_uart_m33_u3u5.h} (95%)
copy arch/arm/src/{stm32u5 => stm32u3}/CMakeLists.txt (58%)
create mode 100644 arch/arm/src/stm32u3/Kconfig
copy arch/arm/src/{stm32u5 => stm32u3}/Make.defs (52%)
copy arch/arm/src/{common/stm32/stm32_pminitialize_m3m4_v1.c =>
stm32u3/chip.h} (59%)
copy arch/arm/src/{stm32u5/hardware/stm32_syscfg.h =>
stm32u3/hardware/stm32_flash.h} (75%)
create mode 100644 arch/arm/src/stm32u3/hardware/stm32_memorymap.h
copy arch/arm/src/{stm32u5/hardware/stm32_syscfg.h =>
stm32u3/hardware/stm32_pinmap.h} (76%)
create mode 100644 arch/arm/src/stm32u3/hardware/stm32u3c5xx_pinmap.h
create mode 100644 arch/arm/src/stm32u3/hardware/stm32u3xx_flash.h
create mode 100644 arch/arm/src/stm32u3/hardware/stm32u3xx_pwr.h
create mode 100644 arch/arm/src/stm32u3/hardware/stm32u3xx_rcc.h
create mode 100644 arch/arm/src/stm32u3/hardware/stm32u3xx_syscfg.h
copy arch/arm/src/{stm32u5/hardware/stm32_syscfg.h => stm32u3/stm32.h} (76%)
copy arch/arm/src/{common/stm32/stm32_pminitialize_m3m4_v1.c =>
stm32u3/stm32_lowputc.h} (67%)
create mode 100644 arch/arm/src/stm32u3/stm32_rcc.c
rename arch/arm/src/{common/stm32/stm32_pminitialize_m3m4_v1.c =>
stm32u3/stm32_rcc_m33_u3.h} (61%)
create mode 100644 arch/arm/src/stm32u3/stm32u3xx_rcc.c
delete mode 100644 arch/arm/src/stm32u5/hardware/stm32_exti.h
delete mode 100644 arch/arm/src/stm32u5/hardware/stm32_gpio.h
delete mode 100644 arch/arm/src/stm32u5/hardware/stm32_uart.h
copy {arch/arm/src/stm32u5 => boards/arm/stm32u3/common}/CMakeLists.txt (55%)
create mode 100644 boards/arm/stm32u3/common/Makefile
copy {arch/arm/src/stm32u5 =>
boards/arm/stm32u3/nucleo-u3c5zi-q}/CMakeLists.txt (54%)
create mode 100644 boards/arm/stm32u3/nucleo-u3c5zi-q/Kconfig
create mode 100644 boards/arm/stm32u3/nucleo-u3c5zi-q/configs/jumbo/defconfig
create mode 100644 boards/arm/stm32u3/nucleo-u3c5zi-q/configs/nsh/defconfig
create mode 100644 boards/arm/stm32u3/nucleo-u3c5zi-q/include/board.h
create mode 100644 boards/arm/stm32u3/nucleo-u3c5zi-q/scripts/Make.defs
create mode 100644 boards/arm/stm32u3/nucleo-u3c5zi-q/scripts/flash.ld
copy {arch/arm/src/stm32u5 =>
boards/arm/stm32u3/nucleo-u3c5zi-q/src}/CMakeLists.txt (54%)
create mode 100644 boards/arm/stm32u3/nucleo-u3c5zi-q/src/Make.defs
copy arch/arm/src/stm32u5/hardware/stm32_syscfg.h =>
boards/arm/stm32u3/nucleo-u3c5zi-q/src/nucleo-u3c5zi-q.h (72%)
copy arch/arm/src/stm32u5/hardware/stm32_syscfg.h =>
boards/arm/stm32u3/nucleo-u3c5zi-q/src/stm32_boot.c (75%)
rename arch/arm/src/stm32u5/hardware/stm32_syscfg.h =>
boards/arm/stm32u3/nucleo-u3c5zi-q/src/stm32_bringup.c (72%)