This is an automated email from the ASF dual-hosted git repository.
simbit18 pushed a change to branch master
in repository https://gitbox.apache.org/repos/asf/nuttx.git
from 9b7c7717f8a drivers/devfreq: Document the frequency table contract.
new da74440a204 arch/arm: add stm32u0 support
new 15caac8d244 boards/stm32u0: add nucleo-u083rc support
new 3455deb83c7 boards/stm32u0: add stm32u083c-dk 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 | 38 +-
.../arm/stm32u0/boards/nucleo-u083rc/index.rst | 56 ++
.../arm/stm32u0/boards/stm32u083c-dk/index.rst | 66 ++
Documentation/platforms/arm/stm32u0/index.rst | 60 ++
arch/arm/Kconfig | 11 +
arch/arm/include/stm32u0/chip.h | 106 +++
arch/arm/include/stm32u0/irq.h | 132 ++++
arch/arm/src/common/stm32/Kconfig | 1 +
arch/arm/src/common/stm32/Kconfig.flash | 2 +-
arch/arm/src/common/stm32/Kconfig.have | 5 +-
.../src/common/stm32/hardware/stm32_adc_v2_m0.h | 13 +-
.../src/common/stm32/hardware/stm32_dma_v1_7ch.h | 3 +-
.../src/common/stm32/hardware/stm32_dmamux_7ch.h | 2 +
.../src/common/stm32/hardware/stm32_exti_v1v2_m0.h | 2 +
.../arm/src/common/stm32/hardware/stm32_flash_m0.h | 2 +
.../src/common/stm32/hardware/stm32_gpio_v2_m0.h | 2 +
.../src/common/stm32/hardware/stm32_pwr_v1_m0_g0.h | 2 +
arch/arm/src/common/stm32/hardware/stm32_rcc.h | 2 +
arch/arm/src/common/stm32/hardware/stm32_syscfg.h | 2 +
arch/arm/src/common/stm32/stm32_adc_m0_v1.c | 17 +-
arch/arm/src/common/stm32/stm32_adc_m0_v1.h | 9 +
.../src/common/stm32/stm32_dma_m0_v1_7ch_dmamux.c | 6 +-
arch/arm/src/common/stm32/stm32_gpio_m0_v1.h | 16 +-
arch/arm/src/common/stm32/stm32_hsi48_m0_v1.c | 4 +
arch/arm/src/common/stm32/stm32_lse_m0_v1.c | 2 +-
arch/arm/src/common/stm32/stm32_pwr.h | 3 +-
arch/arm/src/common/stm32/stm32_spi_m0_v1.c | 2 +-
arch/arm/src/stm32u0/CMakeLists.txt | 28 +
arch/arm/src/stm32u0/Kconfig | 199 ++++++
arch/arm/src/stm32u0/Make.defs | 27 +
.../hardware/stm32_syscfg.h => stm32u0/chip.h} | 33 +-
.../hardware/stm32_memorymap.h} | 21 +-
.../hardware/stm32_pinmap.h} | 21 +-
arch/arm/src/stm32u0/hardware/stm32u0_dmamux.h | 326 ++++++++++
arch/arm/src/stm32u0/hardware/stm32u0_exti.h | 85 +++
arch/arm/src/stm32u0/hardware/stm32u0_flash.h | 238 +++++++
arch/arm/src/stm32u0/hardware/stm32u0_memorymap.h | 144 +++++
arch/arm/src/stm32u0/hardware/stm32u0_pinmap.h | 417 ++++++++++++
arch/arm/src/stm32u0/hardware/stm32u0_pwr.h | 175 +++++
arch/arm/src/stm32u0/hardware/stm32u0_rcc.h | 611 ++++++++++++++++++
arch/arm/src/stm32u0/hardware/stm32u0_syscfg.h | 356 +++++++++++
.../hardware/stm32_syscfg.h => stm32u0/stm32.h} | 40 +-
arch/arm/src/stm32u0/stm32_rcc.c | 220 +++++++
arch/arm/src/stm32u0/stm32u0_rcc.c | 710 +++++++++++++++++++++
boards/Kconfig | 27 +-
boards/arm/stm32u0/common/CMakeLists.txt | 25 +
boards/arm/{stm32c0 => stm32u0}/common/Kconfig | 0
boards/arm/stm32u0/common/Makefile | 38 ++
boards/arm/stm32u0/nucleo-u083rc/CMakeLists.txt | 23 +
boards/arm/stm32u0/nucleo-u083rc/Kconfig | 8 +
.../stm32u0/nucleo-u083rc/configs/jumbo/defconfig | 90 +++
.../stm32u0/nucleo-u083rc/configs/nsh/defconfig | 45 ++
boards/arm/stm32u0/nucleo-u083rc/include/board.h | 209 ++++++
boards/arm/stm32u0/nucleo-u083rc/scripts/Make.defs | 37 ++
boards/arm/stm32u0/nucleo-u083rc/scripts/flash.ld | 111 ++++
.../arm/stm32u0/nucleo-u083rc/src/CMakeLists.txt | 41 ++
boards/arm/stm32u0/nucleo-u083rc/src/Make.defs | 43 ++
.../arm/stm32u0/nucleo-u083rc/src/nucleo-u083rc.h | 104 +++
boards/arm/stm32u0/nucleo-u083rc/src/stm32_adc.c | 133 ++++
.../arm/stm32u0/nucleo-u083rc/src/stm32_autoleds.c | 82 +++
boards/arm/stm32u0/nucleo-u083rc/src/stm32_boot.c | 83 +++
.../arm/stm32u0/nucleo-u083rc/src/stm32_bringup.c | 156 +++++
.../arm/stm32u0/nucleo-u083rc/src/stm32_buttons.c | 117 ++++
.../arm/stm32u0/nucleo-u083rc/src/stm32_userleds.c | 165 +++++
boards/arm/stm32u0/stm32u083c-dk/CMakeLists.txt | 23 +
boards/arm/stm32u0/stm32u083c-dk/Kconfig | 8 +
.../stm32u0/stm32u083c-dk/configs/jumbo/defconfig | 78 +++
.../stm32u0/stm32u083c-dk/configs/nsh/defconfig | 43 ++
boards/arm/stm32u0/stm32u083c-dk/include/board.h | 195 ++++++
boards/arm/stm32u0/stm32u083c-dk/scripts/Make.defs | 37 ++
boards/arm/stm32u0/stm32u083c-dk/scripts/flash.ld | 111 ++++
.../arm/stm32u0/stm32u083c-dk/src/CMakeLists.txt | 40 ++
boards/arm/stm32u0/stm32u083c-dk/src/Make.defs | 42 ++
boards/arm/stm32u0/stm32u083c-dk/src/stm32_adc.c | 127 ++++
.../arm/stm32u0/stm32u083c-dk/src/stm32_autoleds.c | 82 +++
boards/arm/stm32u0/stm32u083c-dk/src/stm32_boot.c | 83 +++
.../arm/stm32u0/stm32u083c-dk/src/stm32_bringup.c | 138 ++++
.../stm32u0/stm32u083c-dk/src/stm32_djoystick.c | 394 ++++++++++++
.../arm/stm32u0/stm32u083c-dk/src/stm32_userleds.c | 179 ++++++
.../arm/stm32u0/stm32u083c-dk/src/stm32u083c-dk.h | 109 ++++
80 files changed, 7354 insertions(+), 89 deletions(-)
create mode 100644
Documentation/platforms/arm/stm32u0/boards/nucleo-u083rc/index.rst
create mode 100644
Documentation/platforms/arm/stm32u0/boards/stm32u083c-dk/index.rst
create mode 100644 Documentation/platforms/arm/stm32u0/index.rst
create mode 100644 arch/arm/include/stm32u0/chip.h
create mode 100644 arch/arm/include/stm32u0/irq.h
create mode 100644 arch/arm/src/stm32u0/CMakeLists.txt
create mode 100644 arch/arm/src/stm32u0/Kconfig
create mode 100644 arch/arm/src/stm32u0/Make.defs
copy arch/arm/src/{common/stm32/hardware/stm32_syscfg.h => stm32u0/chip.h}
(69%)
copy arch/arm/src/{common/stm32/hardware/stm32_syscfg.h =>
stm32u0/hardware/stm32_memorymap.h} (67%)
copy arch/arm/src/{common/stm32/hardware/stm32_syscfg.h =>
stm32u0/hardware/stm32_pinmap.h} (67%)
create mode 100644 arch/arm/src/stm32u0/hardware/stm32u0_dmamux.h
create mode 100644 arch/arm/src/stm32u0/hardware/stm32u0_exti.h
create mode 100644 arch/arm/src/stm32u0/hardware/stm32u0_flash.h
create mode 100644 arch/arm/src/stm32u0/hardware/stm32u0_memorymap.h
create mode 100644 arch/arm/src/stm32u0/hardware/stm32u0_pinmap.h
create mode 100644 arch/arm/src/stm32u0/hardware/stm32u0_pwr.h
create mode 100644 arch/arm/src/stm32u0/hardware/stm32u0_rcc.h
create mode 100644 arch/arm/src/stm32u0/hardware/stm32u0_syscfg.h
copy arch/arm/src/{common/stm32/hardware/stm32_syscfg.h => stm32u0/stm32.h}
(62%)
create mode 100644 arch/arm/src/stm32u0/stm32_rcc.c
create mode 100644 arch/arm/src/stm32u0/stm32u0_rcc.c
create mode 100644 boards/arm/stm32u0/common/CMakeLists.txt
copy boards/arm/{stm32c0 => stm32u0}/common/Kconfig (100%)
create mode 100644 boards/arm/stm32u0/common/Makefile
create mode 100644 boards/arm/stm32u0/nucleo-u083rc/CMakeLists.txt
create mode 100644 boards/arm/stm32u0/nucleo-u083rc/Kconfig
create mode 100644 boards/arm/stm32u0/nucleo-u083rc/configs/jumbo/defconfig
create mode 100644 boards/arm/stm32u0/nucleo-u083rc/configs/nsh/defconfig
create mode 100644 boards/arm/stm32u0/nucleo-u083rc/include/board.h
create mode 100644 boards/arm/stm32u0/nucleo-u083rc/scripts/Make.defs
create mode 100644 boards/arm/stm32u0/nucleo-u083rc/scripts/flash.ld
create mode 100644 boards/arm/stm32u0/nucleo-u083rc/src/CMakeLists.txt
create mode 100644 boards/arm/stm32u0/nucleo-u083rc/src/Make.defs
create mode 100644 boards/arm/stm32u0/nucleo-u083rc/src/nucleo-u083rc.h
create mode 100644 boards/arm/stm32u0/nucleo-u083rc/src/stm32_adc.c
create mode 100644 boards/arm/stm32u0/nucleo-u083rc/src/stm32_autoleds.c
create mode 100644 boards/arm/stm32u0/nucleo-u083rc/src/stm32_boot.c
create mode 100644 boards/arm/stm32u0/nucleo-u083rc/src/stm32_bringup.c
create mode 100644 boards/arm/stm32u0/nucleo-u083rc/src/stm32_buttons.c
create mode 100644 boards/arm/stm32u0/nucleo-u083rc/src/stm32_userleds.c
create mode 100644 boards/arm/stm32u0/stm32u083c-dk/CMakeLists.txt
create mode 100644 boards/arm/stm32u0/stm32u083c-dk/Kconfig
create mode 100644 boards/arm/stm32u0/stm32u083c-dk/configs/jumbo/defconfig
create mode 100644 boards/arm/stm32u0/stm32u083c-dk/configs/nsh/defconfig
create mode 100644 boards/arm/stm32u0/stm32u083c-dk/include/board.h
create mode 100644 boards/arm/stm32u0/stm32u083c-dk/scripts/Make.defs
create mode 100644 boards/arm/stm32u0/stm32u083c-dk/scripts/flash.ld
create mode 100644 boards/arm/stm32u0/stm32u083c-dk/src/CMakeLists.txt
create mode 100644 boards/arm/stm32u0/stm32u083c-dk/src/Make.defs
create mode 100644 boards/arm/stm32u0/stm32u083c-dk/src/stm32_adc.c
create mode 100644 boards/arm/stm32u0/stm32u083c-dk/src/stm32_autoleds.c
create mode 100644 boards/arm/stm32u0/stm32u083c-dk/src/stm32_boot.c
create mode 100644 boards/arm/stm32u0/stm32u083c-dk/src/stm32_bringup.c
create mode 100644 boards/arm/stm32u0/stm32u083c-dk/src/stm32_djoystick.c
create mode 100644 boards/arm/stm32u0/stm32u083c-dk/src/stm32_userleds.c
create mode 100644 boards/arm/stm32u0/stm32u083c-dk/src/stm32u083c-dk.h