This is an automated email from the ASF dual-hosted git repository.
acassis pushed a change to branch master
in repository https://gitbox.apache.org/repos/asf/nuttx.git
from 4df80e19280 !drivers/pwm: remove PWM_MULTICHAN option
new be30590504b arch/arm/stm32n6: Add STM32N6 chip support.
new 8c0e52ed7d2 boards/arm/stm32n6/nucleo-n657x0-q: Add Nucleo-N657X0-Q
board support.
new f47e5394b52 Documentation/arm: Add STM32N6 and Nucleo-N657X0-Q
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:
.../arm/stm32n6/boards/nucleo-n657x0-q/index.rst | 172 ++
.../boards/nucleo-n657x0-q/nucleo-n657x0-q.jpg | Bin 0 -> 235978 bytes
Documentation/platforms/arm/stm32n6/index.rst | 71 +
arch/arm/Kconfig | 17 +
arch/arm/include/stm32n6/chip.h | 69 +
arch/arm/include/stm32n6/irq.h | 97 ++
arch/arm/include/stm32n6/stm32n6xx_irq.h | 239 +++
arch/arm/src/stm32n6/CMakeLists.txt | 52 +
arch/arm/src/stm32n6/Kconfig | 109 ++
arch/arm/src/stm32n6/Make.defs | 47 +
arch/arm/src/stm32n6/chip.h | 57 +
arch/arm/src/stm32n6/hardware/stm32n6xxx_gpio.h | 442 +++++
.../src/stm32n6/hardware/stm32n6xxx_memorymap.h | 173 ++
arch/arm/src/stm32n6/hardware/stm32n6xxx_pinmap.h | 54 +
arch/arm/src/stm32n6/hardware/stm32n6xxx_pwr.h | 112 ++
arch/arm/src/stm32n6/hardware/stm32n6xxx_rcc.h | 288 ++++
arch/arm/src/stm32n6/hardware/stm32n6xxx_syscfg.h | 75 +
arch/arm/src/stm32n6/hardware/stm32n6xxx_uart.h | 252 +++
arch/arm/src/stm32n6/stm32.h | 46 +
arch/arm/src/stm32n6/stm32_gpio.c | 374 +++++
arch/arm/src/stm32n6/stm32_gpio.h | 317 ++++
arch/arm/src/stm32n6/stm32_idle.c | 86 +
arch/arm/src/stm32n6/stm32_irq.c | 473 ++++++
arch/arm/src/stm32n6/stm32_lowputc.c | 257 +++
arch/arm/src/stm32n6/stm32_lowputc.h | 66 +
arch/arm/src/stm32n6/stm32_pwr.c | 92 +
arch/arm/src/stm32n6/stm32_pwr.h | 92 +
arch/arm/src/stm32n6/stm32_rcc.c | 90 +
arch/arm/src/stm32n6/stm32_rcc.h | 120 ++
arch/arm/src/stm32n6/stm32_serial.c | 1772 ++++++++++++++++++++
arch/arm/src/stm32n6/stm32_start.c | 267 +++
arch/arm/src/stm32n6/stm32_start.h | 47 +
arch/arm/src/stm32n6/stm32_timerisr.c | 116 ++
arch/arm/src/stm32n6/stm32_uart.h | 96 ++
arch/arm/src/stm32n6/stm32n6xx_rcc.c | 261 +++
boards/Kconfig | 13 +
boards/arm/stm32n6/nucleo-n657x0-q/CMakeLists.txt | 23 +
boards/arm/stm32n6/nucleo-n657x0-q/Kconfig | 8 +
.../stm32n6/nucleo-n657x0-q/configs/nsh/defconfig | 32 +
.../nucleo-n657x0-q/configs/ostest/defconfig | 36 +
boards/arm/stm32n6/nucleo-n657x0-q/include/board.h | 133 ++
.../arm/stm32n6/nucleo-n657x0-q/scripts/Make.defs | 40 +
.../arm/stm32n6/nucleo-n657x0-q/scripts/flash.ld | 103 ++
.../arm/stm32n6/nucleo-n657x0-q/src/CMakeLists.txt | 27 +
boards/arm/stm32n6/nucleo-n657x0-q/src/Makefile | 28 +
.../stm32n6/nucleo-n657x0-q/src/nucleo-n657x0-q.h | 65 +
.../arm/stm32n6/nucleo-n657x0-q/src/stm32_boot.c | 78 +
.../stm32n6/nucleo-n657x0-q/src/stm32_bringup.c | 58 +
tools/ci/testlist/arm-14.dat | 1 +
49 files changed, 7543 insertions(+)
create mode 100644
Documentation/platforms/arm/stm32n6/boards/nucleo-n657x0-q/index.rst
create mode 100644
Documentation/platforms/arm/stm32n6/boards/nucleo-n657x0-q/nucleo-n657x0-q.jpg
create mode 100644 Documentation/platforms/arm/stm32n6/index.rst
create mode 100644 arch/arm/include/stm32n6/chip.h
create mode 100644 arch/arm/include/stm32n6/irq.h
create mode 100644 arch/arm/include/stm32n6/stm32n6xx_irq.h
create mode 100644 arch/arm/src/stm32n6/CMakeLists.txt
create mode 100644 arch/arm/src/stm32n6/Kconfig
create mode 100644 arch/arm/src/stm32n6/Make.defs
create mode 100644 arch/arm/src/stm32n6/chip.h
create mode 100644 arch/arm/src/stm32n6/hardware/stm32n6xxx_gpio.h
create mode 100644 arch/arm/src/stm32n6/hardware/stm32n6xxx_memorymap.h
create mode 100644 arch/arm/src/stm32n6/hardware/stm32n6xxx_pinmap.h
create mode 100644 arch/arm/src/stm32n6/hardware/stm32n6xxx_pwr.h
create mode 100644 arch/arm/src/stm32n6/hardware/stm32n6xxx_rcc.h
create mode 100644 arch/arm/src/stm32n6/hardware/stm32n6xxx_syscfg.h
create mode 100644 arch/arm/src/stm32n6/hardware/stm32n6xxx_uart.h
create mode 100644 arch/arm/src/stm32n6/stm32.h
create mode 100644 arch/arm/src/stm32n6/stm32_gpio.c
create mode 100644 arch/arm/src/stm32n6/stm32_gpio.h
create mode 100644 arch/arm/src/stm32n6/stm32_idle.c
create mode 100644 arch/arm/src/stm32n6/stm32_irq.c
create mode 100644 arch/arm/src/stm32n6/stm32_lowputc.c
create mode 100644 arch/arm/src/stm32n6/stm32_lowputc.h
create mode 100644 arch/arm/src/stm32n6/stm32_pwr.c
create mode 100644 arch/arm/src/stm32n6/stm32_pwr.h
create mode 100644 arch/arm/src/stm32n6/stm32_rcc.c
create mode 100644 arch/arm/src/stm32n6/stm32_rcc.h
create mode 100644 arch/arm/src/stm32n6/stm32_serial.c
create mode 100644 arch/arm/src/stm32n6/stm32_start.c
create mode 100644 arch/arm/src/stm32n6/stm32_start.h
create mode 100644 arch/arm/src/stm32n6/stm32_timerisr.c
create mode 100644 arch/arm/src/stm32n6/stm32_uart.h
create mode 100644 arch/arm/src/stm32n6/stm32n6xx_rcc.c
create mode 100644 boards/arm/stm32n6/nucleo-n657x0-q/CMakeLists.txt
create mode 100644 boards/arm/stm32n6/nucleo-n657x0-q/Kconfig
create mode 100644 boards/arm/stm32n6/nucleo-n657x0-q/configs/nsh/defconfig
create mode 100644 boards/arm/stm32n6/nucleo-n657x0-q/configs/ostest/defconfig
create mode 100644 boards/arm/stm32n6/nucleo-n657x0-q/include/board.h
create mode 100644 boards/arm/stm32n6/nucleo-n657x0-q/scripts/Make.defs
create mode 100644 boards/arm/stm32n6/nucleo-n657x0-q/scripts/flash.ld
create mode 100644 boards/arm/stm32n6/nucleo-n657x0-q/src/CMakeLists.txt
create mode 100644 boards/arm/stm32n6/nucleo-n657x0-q/src/Makefile
create mode 100644 boards/arm/stm32n6/nucleo-n657x0-q/src/nucleo-n657x0-q.h
create mode 100644 boards/arm/stm32n6/nucleo-n657x0-q/src/stm32_boot.c
create mode 100644 boards/arm/stm32n6/nucleo-n657x0-q/src/stm32_bringup.c