This is an automated email from the ASF dual-hosted git repository. raiden00 pushed a change to branch master in repository https://gitbox.apache.org/repos/asf/nuttx.git
from cc5d6fcb41 arch/sim/Kconfig: fix codespell issues new b7bbb56338 arch/risc-v: Add Dedicated GPIO support for esp32[c3|c6|h2] new 21e580b9c4 boards/risc-v: Add dedicated GPIO board level support for esp32[-c3|-c6|-h2] new e9e3a0ecf7 arch/xtensa: Add dedicated GPIO support for esp32[-s2|-s3] new d471609267 boards/xtensa: Add dedicated GPIO board level support for esp32[-s2|-s3] new e9eaafd154 Documentation/risc-v: Add dedicated GPIO documentation for esp32[-c3|-c6|-h2] new 59e13b4491 Documentation/xtensa: Add dedicated GPIO docs for esp32[-s2|-s3] new ea8744631a arch/xtensa: Update common layer version for esp32s3 The 7 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: .../esp32c3/boards/esp32c3-generic/index.rst | 35 + Documentation/platforms/risc-v/esp32c3/index.rst | 2 +- .../esp32c6/boards/esp32c6-devkitc/index.rst | 35 + .../esp32c6/boards/esp32c6-devkitm/index.rst | 35 + Documentation/platforms/risc-v/esp32c6/index.rst | 2 +- .../risc-v/esp32h2/boards/esp32h2-devkit/index.rst | 35 + Documentation/platforms/risc-v/esp32h2/index.rst | 2 +- .../esp32s2/boards/esp32s2-saola-1/index.rst | 35 + Documentation/platforms/xtensa/esp32s2/index.rst | 2 +- .../xtensa/esp32s3/boards/esp32s3-devkit/index.rst | 35 + Documentation/platforms/xtensa/esp32s3/index.rst | 2 +- arch/risc-v/src/common/espressif/Kconfig | 10 + arch/risc-v/src/common/espressif/Make.defs | 4 + arch/risc-v/src/common/espressif/esp_dedic_gpio.c | 435 ++++++++++++ .../src/common/espressif/esp_dedic_gpio.h} | 114 ++-- arch/risc-v/src/esp32c3/hal_esp32c3.mk | 1 + arch/risc-v/src/esp32c6/hal_esp32c6.mk | 1 + arch/risc-v/src/esp32h2/hal_esp32h2.mk | 1 + arch/xtensa/src/common/espressif/Kconfig | 18 + arch/xtensa/src/common/espressif/Make.defs | 4 + arch/xtensa/src/common/espressif/esp_dedic_gpio.c | 744 +++++++++++++++++++++ .../espressif/esp_dedic_gpio.h} | 151 +++-- arch/xtensa/src/esp32s2/hal.mk | 1 + arch/xtensa/src/esp32s3/Make.defs | 2 +- arch/xtensa/src/esp32s3/hal.mk | 1 + .../esp32c3/esp32c3-generic/src/esp32c3_gpio.c | 44 ++ .../esp32c6/esp32c6-devkitc/src/esp32c6_gpio.c | 44 ++ .../esp32h2/esp32h2-devkit/src/esp32h2_gpio.c | 44 ++ .../esp32s2/esp32s2-saola-1/src/esp32s2_gpio.c | 45 ++ .../esp32s3/esp32s3-devkit/src/esp32s3_gpio.c | 45 ++ 30 files changed, 1788 insertions(+), 141 deletions(-) create mode 100644 arch/risc-v/src/common/espressif/esp_dedic_gpio.c copy arch/{arm/src/stm32h5/stm32_icache.h => risc-v/src/common/espressif/esp_dedic_gpio.h} (61%) create mode 100644 arch/xtensa/src/common/espressif/esp_dedic_gpio.c copy arch/xtensa/src/{esp32/esp32_spiflash.h => common/espressif/esp_dedic_gpio.h} (56%)