risc-v/esp32c3: Rename legacy approach esp32c3 as esp32c3-legacy

This commit is contained in:
Eren Terzioglu 2024-01-04 14:20:50 +03:00 committed by Alin Jerpelea
parent 4c4d62ff93
commit c8d7c81cb9
275 changed files with 553 additions and 553 deletions

View file

@ -304,20 +304,20 @@ config ARCH_FAMILY
config ARCH_CHIP
string
default "fe310" if ARCH_CHIP_FE310
default "k210" if ARCH_CHIP_K210
default "litex" if ARCH_CHIP_LITEX
default "bl602" if ARCH_CHIP_BL602
default "esp32c3" if ARCH_CHIP_ESP32C3
default "espressif" if ARCH_CHIP_ESPRESSIF
default "c906" if ARCH_CHIP_C906
default "mpfs" if ARCH_CHIP_MPFS
default "rv32m1" if ARCH_CHIP_RV32M1
default "qemu-rv" if ARCH_CHIP_QEMU_RV
default "hpm6750" if ARCH_CHIP_HPM6750
default "jh7110" if ARCH_CHIP_JH7110
default "bl808" if ARCH_CHIP_BL808
default "k230" if ARCH_CHIP_K230
default "fe310" if ARCH_CHIP_FE310
default "k210" if ARCH_CHIP_K210
default "litex" if ARCH_CHIP_LITEX
default "bl602" if ARCH_CHIP_BL602
default "esp32c3-legacy" if ARCH_CHIP_ESP32C3
default "espressif" if ARCH_CHIP_ESPRESSIF
default "c906" if ARCH_CHIP_C906
default "mpfs" if ARCH_CHIP_MPFS
default "rv32m1" if ARCH_CHIP_RV32M1
default "qemu-rv" if ARCH_CHIP_QEMU_RV
default "hpm6750" if ARCH_CHIP_HPM6750
default "jh7110" if ARCH_CHIP_JH7110
default "bl808" if ARCH_CHIP_BL808
default "k230" if ARCH_CHIP_K230
config ARCH_RISCV_INTXCPT_EXTENSIONS
bool "RISC-V Integer Context Extensions"
@ -458,7 +458,7 @@ if ARCH_CHIP_BL602
source "arch/risc-v/src/bl602/Kconfig"
endif
if ARCH_CHIP_ESP32C3
source "arch/risc-v/src/esp32c3/Kconfig"
source "arch/risc-v/src/esp32c3-legacy/Kconfig"
endif
if ARCH_CHIP_ESPRESSIF
source "arch/risc-v/src/espressif/Kconfig"

View file

@ -1,5 +1,5 @@
/****************************************************************************
* arch/risc-v/include/esp32c3/chip.h
* arch/risc-v/include/esp32c3-legacy/chip.h
*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
@ -18,8 +18,8 @@
*
****************************************************************************/
#ifndef __ARCH_RISCV_INCLUDE_ESP32C3_CHIP_H
#define __ARCH_RISCV_INCLUDE_ESP32C3_CHIP_H
#ifndef __ARCH_RISCV_INCLUDE_ESP32C3_LEGACY_CHIP_H
#define __ARCH_RISCV_INCLUDE_ESP32C3_LEGACY_CHIP_H
/****************************************************************************
* Included Files
@ -35,4 +35,4 @@
#define ESP32C3_NGPIOS 22 /* GPIO0-21 */
#endif /* __ARCH_RISCV_INCLUDE_ESP32C3_CHIP_H */
#endif /* __ARCH_RISCV_INCLUDE_ESP32C3_LEGACY_CHIP_H */

View file

@ -1,5 +1,5 @@
/****************************************************************************
* arch/risc-v/include/esp32c3/esp_efuse_table.h
* arch/risc-v/include/esp32c3-legacy/esp_efuse_table.h
*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with

View file

@ -1,5 +1,5 @@
/****************************************************************************
* arch/risc-v/include/esp32c3/irq.h
* arch/risc-v/include/esp32c3-legacy/irq.h
*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with

View file

@ -1,5 +1,5 @@
############################################################################
# arch/risc-v/src/esp32c3/Bootloader.mk
# arch/risc-v/src/esp32c3-legacy/Bootloader.mk
#
# Licensed to the Apache Software Foundation (ASF) under one or more
# contributor license agreements. See the NOTICE file distributed with

View file

@ -1144,7 +1144,7 @@ config ESP32C3_USER_IMAGE_OFFSET
endif
source "arch/risc-v/src/esp32c3/Kconfig.security"
source "arch/risc-v/src/esp32c3-legacy/Kconfig.security"
endmenu # Application Image Configuration

View file

@ -1,5 +1,5 @@
############################################################################
# arch/risc-v/src/esp32c3/Make.defs
# arch/risc-v/src/esp32c3-legacy/Make.defs
#
# Licensed to the Apache Software Foundation (ASF) under one or more
# contributor license agreements. See the NOTICE file distributed with

View file

@ -1,5 +1,5 @@
/****************************************************************************
* arch/risc-v/src/esp32c3/chip.h
* arch/risc-v/src/esp32c3-legacy/chip.h
*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with

View file

@ -1,5 +1,5 @@
/****************************************************************************
* arch/risc-v/src/esp32c3/esp32c3.h
* arch/risc-v/src/esp32c3-legacy/esp32c3.h
*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
@ -18,8 +18,8 @@
*
****************************************************************************/
#ifndef __ARCH_RISCV_SRC_ESP32C3_ESP32C3_H
#define __ARCH_RISCV_SRC_ESP32C3_ESP32C3_H
#ifndef __ARCH_RISCV_SRC_ESP32C3_LEGACY_ESP32C3_H
#define __ARCH_RISCV_SRC_ESP32C3_LEGACY_ESP32C3_H
/****************************************************************************
* Included Files
@ -46,4 +46,4 @@
#endif
#endif /* __ARCH_RISCV_SRC_ESP32C3_ESP32C3_H */
#endif /* __ARCH_RISCV_SRC_ESP32C3_LEGACY_ESP32C3_H */

View file

@ -1,5 +1,5 @@
/****************************************************************************
* arch/risc-v/src/esp32c3/esp32c3_adc.c
* arch/risc-v/src/esp32c3-legacy/esp32c3_adc.c
*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with

View file

@ -1,5 +1,5 @@
/****************************************************************************
* arch/risc-v/src/esp32c3/esp32c3_adc.h
* arch/risc-v/src/esp32c3-legacy/esp32c3_adc.h
*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
@ -18,8 +18,8 @@
*
****************************************************************************/
#ifndef __ARCH_RISCV_SRC_ESP32C3_ESP32C3_ADC_H
#define __ARCH_RISCV_SRC_ESP32C3_ESP32C3_ADC_H
#ifndef __ARCH_RISCV_SRC_ESP32C3_LEGACY_ESP32C3_ADC_H
#define __ARCH_RISCV_SRC_ESP32C3_LEGACY_ESP32C3_ADC_H
/****************************************************************************
* Included Files
@ -76,4 +76,4 @@ struct adc_dev_s *esp32c3_adc_init(int channel);
#undef EXTERN
#endif /* __ASSEMBLY__ */
#endif /* __ARCH_RISCV_SRC_ESP32C3_ESP32C3_ADC_H */
#endif /* __ARCH_RISCV_SRC_ESP32C3_LEGACY_ESP32C3_ADC_H */

View file

@ -1,5 +1,5 @@
/****************************************************************************
* arch/risc-v/src/esp32c3/esp32c3_aes.c
* arch/risc-v/src/esp32c3-legacy/esp32c3_aes.c
*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with

View file

@ -1,5 +1,5 @@
/****************************************************************************
* arch/risc-v/src/esp32c3/esp32c3_aes.h
* arch/risc-v/src/esp32c3-legacy/esp32c3_aes.h
*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
@ -22,8 +22,8 @@
* Included Files
****************************************************************************/
#ifndef __ARCH_RISCV_SRC_ESP32C3_ESP32C3_AES_H
#define __ARCH_RISCV_SRC_ESP32C3_ESP32C3_AES_H
#ifndef __ARCH_RISCV_SRC_ESP32C3_LEGACY_ESP32C3_AES_H
#define __ARCH_RISCV_SRC_ESP32C3_LEGACY_ESP32C3_AES_H
#include <nuttx/config.h>
#include <stdint.h>
@ -214,4 +214,4 @@ int esp32c3_aes_init(void);
#undef EXTERN
#endif /* __ASSEMBLY__ */
#endif /* __ARCH_RISCV_SRC_ESP32C3_ESP32C3_AES_H */
#endif /* __ARCH_RISCV_SRC_ESP32C3_LEGACY_ESP32C3_AES_H */

View file

@ -1,5 +1,5 @@
/****************************************************************************
* arch/risc-v/src/esp32c3/esp32c3_allocateheap.c
* arch/risc-v/src/esp32c3-legacy/esp32c3_allocateheap.c
*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
@ -88,7 +88,7 @@ void up_allocate_heap(void **heap_start, size_t *heap_size)
#else
/* These values come from the linker scripts
* (<legacy/mcuboot>_sections.ld and flat_memory.ld).
* Check boards/risc-v/esp32c3.
* Check boards/risc-v/esp32c3-legacy.
*/
extern uint8_t _sheap[];
@ -120,7 +120,7 @@ void up_allocate_kheap(void **heap_start, size_t *heap_size)
{
/* These values come from the linker scripts (kernel-space.ld and
* protected_memory.ld).
* Check boards/risc-v/esp32c3.
* Check boards/risc-v/esp32c3-legacy.
*/
extern uint8_t _sheap[];

View file

@ -1,5 +1,5 @@
/****************************************************************************
* arch/risc-v/src/esp32c3/esp32c3_attr.h
* arch/risc-v/src/esp32c3-legacy/esp32c3_attr.h
*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
@ -18,8 +18,8 @@
*
****************************************************************************/
#ifndef __ARCH_RISCV_SRC_ESP32C3_ESP32C3_ATTR_H
#define __ARCH_RISCV_SRC_ESP32C3_ESP32C3_ATTR_H
#ifndef __ARCH_RISCV_SRC_ESP32C3_LEGACY_ESP32C3_ATTR_H
#define __ARCH_RISCV_SRC_ESP32C3_LEGACY_ESP32C3_ATTR_H
/****************************************************************************
* Pre-processor Definitions
@ -50,4 +50,4 @@
#define RTC_RODATA_ATTR locate_data(".rtc.rodata")
#endif /* __ARCH_RISCV_SRC_ESP32C3_ESP32C3_ATTR_H */
#endif /* __ARCH_RISCV_SRC_ESP32C3_LEGACY_ESP32C3_ATTR_H */

View file

@ -1,5 +1,5 @@
/****************************************************************************
* arch/risc-v/src/esp32c3/esp32c3_bignum.c
* arch/risc-v/src/esp32c3-legacy/esp32c3_bignum.c
*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with

View file

@ -1,5 +1,5 @@
/****************************************************************************
* arch/risc-v/src/esp32c3/esp32c3_bignum.h
* arch/risc-v/src/esp32c3-legacy/esp32c3_bignum.h
*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
@ -18,8 +18,8 @@
*
****************************************************************************/
#ifndef __ARCH_RISCV_SRC_ESP32C3_ESP32C3_BIGNUM_H
#define __ARCH_RISCV_SRC_ESP32C3_ESP32C3_BIGNUM_H
#ifndef __ARCH_RISCV_SRC_ESP32C3_LEGACY_ESP32C3_BIGNUM_H
#define __ARCH_RISCV_SRC_ESP32C3_LEGACY_ESP32C3_BIGNUM_H
/****************************************************************************
* Included Files
@ -869,4 +869,4 @@ int esp32c3_mpi_inv_mod(struct esp32c3_mpi_s *X,
#undef EXTERN
#endif /* __ASSEMBLY__ */
#endif /* __ARCH_RISCV_SRC_ESP32C3_ESP32C3_BIGNUM_H */
#endif /* __ARCH_RISCV_SRC_ESP32C3_LEGACY_ESP32C3_BIGNUM_H */

View file

@ -1,5 +1,5 @@
/****************************************************************************
* arch/risc-v/src/esp32c3/esp32c3_ble.c
* arch/risc-v/src/esp32c3-legacy/esp32c3_ble.c
*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with

View file

@ -1,5 +1,5 @@
/****************************************************************************
* arch/risc-v/src/esp32c3/esp32c3_ble.h
* arch/risc-v/src/esp32c3-legacy/esp32c3_ble.h
*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
@ -18,8 +18,8 @@
*
****************************************************************************/
#ifndef __ARCH_RISCV_SRC_ESP32C3_ESP32C3_BLE_H
#define __ARCH_RISCV_SRC_ESP32C3_ESP32C3_BLE_H
#ifndef __ARCH_RISCV_SRC_ESP32C3_LEGACY_ESP32C3_BLE_H
#define __ARCH_RISCV_SRC_ESP32C3_LEGACY_ESP32C3_BLE_H
/****************************************************************************
* Included Files
@ -47,4 +47,4 @@
int esp32c3_ble_initialize(void);
#endif /* __ARCH_RISCV_SRC_ESP32C3_ESP32C3_BLE_H */
#endif /* __ARCH_RISCV_SRC_ESP32C3_LEGACY_ESP32C3_BLE_H */

View file

@ -1,5 +1,5 @@
/****************************************************************************
* arch/risc-v/src/esp32c3/esp32c3_ble_adapter.c
* arch/risc-v/src/esp32c3-legacy/esp32c3_ble_adapter.c
*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with

View file

@ -1,5 +1,5 @@
/****************************************************************************
* arch/risc-v/src/esp32c3/esp32c3_ble_adapter.h
* arch/risc-v/src/esp32c3-legacy/esp32c3_ble_adapter.h
*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
@ -18,8 +18,8 @@
*
****************************************************************************/
#ifndef __ARCH_RISCV_SRC_ESP32C3_ESP32C3_BLE_ADAPTER_H
#define __ARCH_RISCV_SRC_ESP32C3_ESP32C3_BLE_ADAPTER_H
#ifndef __ARCH_RISCV_SRC_ESP32C3_LEGACY_ESP32C3_BLE_ADAPTER_H
#define __ARCH_RISCV_SRC_ESP32C3_LEGACY_ESP32C3_BLE_ADAPTER_H
/****************************************************************************
* Included Files
@ -158,4 +158,4 @@ void esp32c3_vhci_host_send_packet(uint8_t *data, uint16_t len);
int esp32c3_vhci_register_callback(
const esp_vhci_host_callback_t *callback);
#endif /* __ARCH_RISCV_SRC_ESP32C3_ESP32C3_BLE_ADAPTER_H */
#endif /* __ARCH_RISCV_SRC_ESP32C3_LEGACY_ESP32C3_BLE_ADAPTER_H */

View file

@ -1,5 +1,5 @@
/****************************************************************************
* arch/risc-v/src/esp32c3/esp32c3_brownout.c
* arch/risc-v/src/esp32c3-legacy/esp32c3_brownout.c
*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with

View file

@ -1,5 +1,5 @@
/****************************************************************************
* arch/risc-v/src/esp32c3/esp32c3_brownout.h
* arch/risc-v/src/esp32c3-legacy/esp32c3_brownout.h
*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
@ -18,8 +18,8 @@
*
****************************************************************************/
#ifndef __ARCH_RISCV_SRC_ESP32C3_ESP32C3_BROWNOUT_H
#define __ARCH_RISCV_SRC_ESP32C3_ESP32C3_BROWNOUT_H
#ifndef __ARCH_RISCV_SRC_ESP32C3_LEGACY_ESP32C3_BROWNOUT_H
#define __ARCH_RISCV_SRC_ESP32C3_LEGACY_ESP32C3_BROWNOUT_H
/****************************************************************************
* Included Files
@ -62,4 +62,4 @@ void esp32c3_brownout_init(void);
#endif /* __ASSEMBLY__ */
#endif /* __ARCH_RISCV_SRC_ESP32C3_ESP32C3_BROWNOUT_H */
#endif /* __ARCH_RISCV_SRC_ESP32C3_LEGACY_ESP32C3_BROWNOUT_H */

View file

@ -1,5 +1,5 @@
/****************************************************************************
* arch/risc-v/src/esp32c3/esp32c3_clockconfig.c
* arch/risc-v/src/esp32c3-legacy/esp32c3_clockconfig.c
*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with

View file

@ -1,5 +1,5 @@
/****************************************************************************
* arch/risc-v/src/esp32c3/esp32c3_clockconfig.h
* arch/risc-v/src/esp32c3-legacy/esp32c3_clockconfig.h
*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
@ -18,8 +18,8 @@
*
****************************************************************************/
#ifndef __ARCH_RISCV_SRC_ESP32C3_ESP32C3_CLOCKCONFIG_H
#define __ARCH_RISCV_SRC_ESP32C3_ESP32C3_CLOCKCONFIG_H
#ifndef __ARCH_RISCV_SRC_ESP32C3_LEGACY_ESP32C3_CLOCKCONFIG_H
#define __ARCH_RISCV_SRC_ESP32C3_LEGACY_ESP32C3_CLOCKCONFIG_H
/****************************************************************************
* Included Files
@ -101,4 +101,4 @@ uint32_t IRAM_ATTR esp32c3_cpu_cycle_count(void);
#endif /* __ASSEMBLY__ */
#endif /* __ARCH_RISCV_SRC_ESP32C3_ESP32C3_CLOCKCONFIG_H */
#endif /* __ARCH_RISCV_SRC_ESP32C3_LEGACY_ESP32C3_CLOCKCONFIG_H */

View file

@ -1,5 +1,5 @@
/****************************************************************************
* arch/risc-v/src/esp32c3/esp32c3_config.h
* arch/risc-v/src/esp32c3-legacy/esp32c3_config.h
*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
@ -18,8 +18,8 @@
*
****************************************************************************/
#ifndef __ARCH_RISCV_SRC_ESP32C3_ESP32C3_CONFIG_H
#define __ARCH_RISCV_SRC_ESP32C3_ESP32C3_CONFIG_H
#ifndef __ARCH_RISCV_SRC_ESP32C3_LEGACY_ESP32C3_CONFIG_H
#define __ARCH_RISCV_SRC_ESP32C3_LEGACY_ESP32C3_CONFIG_H
/****************************************************************************
* Included Files
@ -68,4 +68,4 @@
# define HAVE_UART_DEVICE 1
#endif
#endif /* __ARCH_RISCV_SRC_ESP32C3_ESP32C3_CONFIG_H */
#endif /* __ARCH_RISCV_SRC_ESP32C3_LEGACY_ESP32C3_CONFIG_H */

View file

@ -1,5 +1,5 @@
/****************************************************************************
* arch/risc-v/src/esp32c3/esp32c3_crypto.c
* arch/risc-v/src/esp32c3-legacy/esp32c3_crypto.c
*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with

View file

@ -1,5 +1,5 @@
/****************************************************************************
* arch/risc-v/src/esp32c3/esp32c3_dma.c
* arch/risc-v/src/esp32c3-legacy/esp32c3_dma.c
*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with

View file

@ -1,5 +1,5 @@
/****************************************************************************
* arch/risc-v/src/esp32c3/esp32c3_dma.h
* arch/risc-v/src/esp32c3-legacy/esp32c3_dma.h
*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
@ -22,8 +22,8 @@
* Included Files
****************************************************************************/
#ifndef __ARCH_RISCV_SRC_ESP32C3_ESP32C3_DMA_H
#define __ARCH_RISCV_SRC_ESP32C3_ESP32C3_DMA_H
#ifndef __ARCH_RISCV_SRC_ESP32C3_LEGACY_ESP32C3_DMA_H
#define __ARCH_RISCV_SRC_ESP32C3_LEGACY_ESP32C3_DMA_H
#include <nuttx/config.h>
#include <stdbool.h>
@ -222,4 +222,4 @@ void esp32c3_dma_init(void);
#undef EXTERN
#endif /* __ASSEMBLY__ */
#endif /* __ARCH_RISCV_SRC_ESP32C3_ESP32C3_DMA_H */
#endif /* __ARCH_RISCV_SRC_ESP32C3_LEGACY_ESP32C3_DMA_H */

View file

@ -1,5 +1,5 @@
/****************************************************************************
* arch/risc-v/src/esp32c3/esp32c3_efuse.c
* arch/risc-v/src/esp32c3-legacy/esp32c3_efuse.c
*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
@ -28,7 +28,7 @@
#include <string.h>
#include <sys/param.h>
#include <nuttx/efuse/efuse.h>
#include <arch/esp32c3/chip.h>
#include <arch/esp32c3-legacy/chip.h>
#include "riscv_internal.h"
#include "hardware/esp32c3_soc.h"

View file

@ -1,5 +1,5 @@
/****************************************************************************
* arch/risc-v/src/esp32c3/esp32c3_efuse.h
* arch/risc-v/src/esp32c3-legacy/esp32c3_efuse.h
*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
@ -18,8 +18,8 @@
*
****************************************************************************/
#ifndef __ARCH_RISCV_SRC_ESP32C3_ESP32C3_EFUSE_H
#define __ARCH_RISCV_SRC_ESP32C3_ESP32C3_EFUSE_H
#ifndef __ARCH_RISCV_SRC_ESP32C3_LEGACY_ESP32C3_EFUSE_H
#define __ARCH_RISCV_SRC_ESP32C3_LEGACY_ESP32C3_EFUSE_H
/****************************************************************************
* Included Files
@ -186,4 +186,4 @@ int esp32c3_efuse_initialize(const char *devpath);
#undef EXTERN
#endif /* __ASSEMBLY__ */
#endif /* __ARCH_RISCV_SRC_ESP32C3_ESP32C3_EFUSE_H */
#endif /* __ARCH_RISCV_SRC_ESP32C3_LEGACY_ESP32C3_EFUSE_H */

View file

@ -1,5 +1,5 @@
/****************************************************************************
* arch/risc-v/src/esp32c3/esp32c3_efuse_lowerhalf.c
* arch/risc-v/src/esp32c3-legacy/esp32c3_efuse_lowerhalf.c
*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with

View file

@ -1,5 +1,5 @@
/****************************************************************************
* arch/risc-v/src/esp32c3/esp32c3_efuse_table.c
* arch/risc-v/src/esp32c3-legacy/esp32c3_efuse_table.c
*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with

View file

@ -1,5 +1,5 @@
/****************************************************************************
* arch/risc-v/src/esp32c3/esp32c3_extraheaps.c
* arch/risc-v/src/esp32c3-legacy/esp32c3_extraheaps.c
*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with

View file

@ -1,5 +1,5 @@
/****************************************************************************
* arch/risc-v/src/esp32c3/esp32c3_freerun.c
* arch/risc-v/src/esp32c3-legacy/esp32c3_freerun.c
*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with

View file

@ -1,5 +1,5 @@
/****************************************************************************
* arch/risc-v/src/esp32c3/esp32c3_freerun.h
* arch/risc-v/src/esp32c3-legacy/esp32c3_freerun.h
*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
@ -18,8 +18,8 @@
*
****************************************************************************/
#ifndef __ARCH_RISCV_SRC_ESP32C3_ESP32C3_FREERUN_H
#define __ARCH_RISCV_SRC_ESP32C3_ESP32C3_FREERUN_H
#ifndef __ARCH_RISCV_SRC_ESP32C3_LEGACY_ESP32C3_FREERUN_H
#define __ARCH_RISCV_SRC_ESP32C3_LEGACY_ESP32C3_FREERUN_H
/****************************************************************************
* Included Files
@ -142,4 +142,4 @@ int esp32c3_freerun_uninitialize(struct esp32c3_freerun_s *freerun);
#endif
#endif /* CONFIG_ESP32C3_FREERUN */
#endif /* __ARCH_RISCV_SRC_ESP32C3_ESP32C3_FREERUN_H */
#endif /* __ARCH_RISCV_SRC_ESP32C3_LEGACY_ESP32C3_FREERUN_H */

View file

@ -1,5 +1,5 @@
/****************************************************************************
* arch/risc-v/src/esp32c3/esp32c3_gpio.c
* arch/risc-v/src/esp32c3-legacy/esp32c3_gpio.c
*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
@ -32,7 +32,7 @@
#include <nuttx/arch.h>
#include <nuttx/irq.h>
#include <arch/irq.h>
#include <arch/esp32c3/chip.h>
#include <arch/esp32c3-legacy/chip.h>
#include "riscv_internal.h"
#ifdef CONFIG_ESP32C3_GPIO_IRQ

View file

@ -1,5 +1,5 @@
/****************************************************************************
* arch/risc-v/src/esp32c3/esp32c3_gpio.h
* arch/risc-v/src/esp32c3-legacy/esp32c3_gpio.h
*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
@ -18,8 +18,8 @@
*
****************************************************************************/
#ifndef __ARCH_RISCV_SRC_ESP32C3_ESP32C3_GPIO_H
#define __ARCH_RISCV_SRC_ESP32C3_ESP32C3_GPIO_H
#ifndef __ARCH_RISCV_SRC_ESP32C3_LEGACY_ESP32C3_GPIO_H
#define __ARCH_RISCV_SRC_ESP32C3_LEGACY_ESP32C3_GPIO_H
/****************************************************************************
* Included Files
@ -222,4 +222,4 @@ void esp32c3_gpioirqdisable(int irq);
#undef EXTERN
#endif /* __ASSEMBLY__ */
#endif /* __ARCH_RISCV_SRC_ESP32C3_ESP32C3_GPIO_H */
#endif /* __ARCH_RISCV_SRC_ESP32C3_LEGACY_ESP32C3_GPIO_H */

View file

@ -1,5 +1,5 @@
/****************************************************************************
* arch/risc-v/src/esp32c3/esp32c3_head.S
* arch/risc-v/src/esp32c3-legacy/esp32c3_head.S
*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with

View file

@ -1,5 +1,5 @@
/****************************************************************************
* arch/risc-v/src/esp32c3/esp32c3_i2c.c
* arch/risc-v/src/esp32c3-legacy/esp32c3_i2c.c
*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with

View file

@ -1,5 +1,5 @@
/****************************************************************************
* arch/risc-v/src/esp32c3/esp32c3_i2c.h
* arch/risc-v/src/esp32c3-legacy/esp32c3_i2c.h
*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
@ -22,8 +22,8 @@
* Included Files
****************************************************************************/
#ifndef __ARCH_RISCV_SRC_ESP32C3_ESP32C3_I2C_H
#define __ARCH_RISCV_SRC_ESP32C3_ESP32C3_I2C_H
#ifndef __ARCH_RISCV_SRC_ESP32C3_LEGACY_ESP32C3_I2C_H
#define __ARCH_RISCV_SRC_ESP32C3_LEGACY_ESP32C3_I2C_H
/****************************************************************************
* Included Files
@ -91,4 +91,4 @@ int esp32c3_i2cbus_uninitialize(struct i2c_master_s *dev);
#undef EXTERN
#endif /* __ASSEMBLY__ */
#endif /* __ARCH_RISCV_SRC_ESP32C3_ESP32C3_I2C_H */
#endif /* __ARCH_RISCV_SRC_ESP32C3_LEGACY_ESP32C3_I2C_H */

View file

@ -1,5 +1,5 @@
/****************************************************************************
* arch/risc-v/src/esp32c3/esp32c3_idle.c
* arch/risc-v/src/esp32c3-legacy/esp32c3_idle.c
*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with

View file

@ -1,5 +1,5 @@
/****************************************************************************
* arch/risc-v/src/esp32c3/esp32c3_irq.c
* arch/risc-v/src/esp32c3-legacy/esp32c3_irq.c
*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with

View file

@ -1,5 +1,5 @@
/****************************************************************************
* arch/risc-v/src/esp32c3/esp32c3_irq.h
* arch/risc-v/src/esp32c3-legacy/esp32c3_irq.h
*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
@ -18,8 +18,8 @@
*
****************************************************************************/
#ifndef __ARCH_RISCV_SRC_ESP32C3_ESP32C3_IRQ_H
#define __ARCH_RISCV_SRC_ESP32C3_ESP32C3_IRQ_H
#ifndef __ARCH_RISCV_SRC_ESP32C3_LEGACY_ESP32C3_IRQ_H
#define __ARCH_RISCV_SRC_ESP32C3_LEGACY_ESP32C3_IRQ_H
/****************************************************************************
* Included Files
@ -143,4 +143,4 @@ void esp32c3_teardown_irq(int periphid, int cpuint);
#endif
#endif /* __ASSEMBLY__ */
#endif /* __ARCH_RISCV_SRC_ESP32C3_ESP32C3_IRQ_H */
#endif /* __ARCH_RISCV_SRC_ESP32C3_LEGACY_ESP32C3_IRQ_H */

View file

@ -1,5 +1,5 @@
/****************************************************************************
* arch/risc-v/src/esp32c3/esp32c3_ledc.c
* arch/risc-v/src/esp32c3-legacy/esp32c3_ledc.c
*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with

View file

@ -1,5 +1,5 @@
/****************************************************************************
* arch/risc-v/src/esp32c3/esp32c3_ledc.h
* arch/risc-v/src/esp32c3-legacy/esp32c3_ledc.h
*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
@ -18,8 +18,8 @@
*
****************************************************************************/
#ifndef __ARCH_RISCV_SRC_ESP32C3_ESP32C3_LEDC_H
#define __ARCH_RISCV_SRC_ESP32C3_ESP32C3_LEDC_H
#ifndef __ARCH_RISCV_SRC_ESP32C3_LEGACY_ESP32C3_LEDC_H
#define __ARCH_RISCV_SRC_ESP32C3_LEGACY_ESP32C3_LEDC_H
/****************************************************************************
* Included Files
@ -49,4 +49,4 @@
struct pwm_lowerhalf_s *esp32c3_ledc_init(int timer);
#endif /* __ARCH_RISCV_SRC_ESP32C3_ESP32C3_LEDC_H */
#endif /* __ARCH_RISCV_SRC_ESP32C3_LEGACY_ESP32C3_LEDC_H */

View file

@ -1,5 +1,5 @@
/****************************************************************************
* arch/risc-v/src/esp32c3/esp32c3_libc_stubs.c
* arch/risc-v/src/esp32c3-legacy/esp32c3_libc_stubs.c
*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with

View file

@ -1,5 +1,5 @@
/****************************************************************************
* arch/risc-v/src/esp32c3/esp32c3_lowputc.c
* arch/risc-v/src/esp32c3-legacy/esp32c3_lowputc.c
*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with

View file

@ -1,5 +1,5 @@
/****************************************************************************
* arch/risc-v/src/esp32c3/esp32c3_lowputc.h
* arch/risc-v/src/esp32c3-legacy/esp32c3_lowputc.h
*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
@ -18,8 +18,8 @@
*
****************************************************************************/
#ifndef __ARCH_RISCV_SRC_ESP32C3_ESP32C3_LOWPUTC_H
#define __ARCH_RISCV_SRC_ESP32C3_ESP32C3_LOWPUTC_H
#ifndef __ARCH_RISCV_SRC_ESP32C3_LEGACY_ESP32C3_LOWPUTC_H
#define __ARCH_RISCV_SRC_ESP32C3_LEGACY_ESP32C3_LOWPUTC_H
/****************************************************************************
* Included Files
@ -489,4 +489,4 @@ void esp32c3_lowputc_restore_pins(const struct esp32c3_uart_s *priv);
void esp32c3_lowsetup(void);
#endif /* __ARCH_RISCV_SRC_ESP32C3_ESP32C3_LOWPUTC_H */
#endif /* __ARCH_RISCV_SRC_ESP32C3_LEGACY_ESP32C3_LOWPUTC_H */

View file

@ -1,5 +1,5 @@
/****************************************************************************
* arch/risc-v/src/esp32c3/esp32c3_memorymap.h
* arch/risc-v/src/esp32c3-legacy/esp32c3_memorymap.h
*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
@ -18,8 +18,8 @@
*
****************************************************************************/
#ifndef __ARCH_RISCV_SRC_ESP32C3_ESP32C3_MEMORYMAP_H
#define __ARCH_RISCV_SRC_ESP32C3_ESP32C3_MEMORYMAP_H
#ifndef __ARCH_RISCV_SRC_ESP32C3_LEGACY_ESP32C3_MEMORYMAP_H
#define __ARCH_RISCV_SRC_ESP32C3_LEGACY_ESP32C3_MEMORYMAP_H
/****************************************************************************
* Included Files
@ -39,4 +39,4 @@
#define ESP32C3_IDLESTACK_TOP (ESP32C3_IDLESTACK_BASE + CONFIG_IDLETHREAD_STACKSIZE)
#endif /* __ARCH_RISCV_SRC_ESP32C3_ESP32C3_MEMORYMAP_H */
#endif /* __ARCH_RISCV_SRC_ESP32C3_LEGACY_ESP32C3_MEMORYMAP_H */

View file

@ -1,5 +1,5 @@
/****************************************************************************
* arch/risc-v/src/esp32c3/esp32c3_oneshot.c
* arch/risc-v/src/esp32c3-legacy/esp32c3_oneshot.c
*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with

View file

@ -1,5 +1,5 @@
/****************************************************************************
* arch/risc-v/src/esp32c3/esp32c3_oneshot.h
* arch/risc-v/src/esp32c3-legacy/esp32c3_oneshot.h
*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
@ -18,8 +18,8 @@
*
****************************************************************************/
#ifndef __ARCH_RISCV_SRC_ESP32C3_ONESHOT_H
#define __ARCH_RISCV_SRC_ESP32C3_ONESHOT_H
#ifndef __ARCH_RISCV_SRC_ESP32C3_LEGACY_ONESHOT_H
#define __ARCH_RISCV_SRC_ESP32C3_LEGACY_ONESHOT_H
/****************************************************************************
* Included Files
@ -201,4 +201,4 @@ int esp32c3_oneshot_current(struct esp32c3_oneshot_s *oneshot,
#endif
#endif /* CONFIG_ESP32C3_ONESHOT */
#endif /* __ARCH_RISCV_SRC_ESP32C3_ONESHOT_H */
#endif /* __ARCH_RISCV_SRC_ESP32C3_LEGACY_ONESHOT_H */

View file

@ -1,5 +1,5 @@
/****************************************************************************
* arch/risc-v/src/esp32c3/esp32c3_oneshot_lowerhalf.c
* arch/risc-v/src/esp32c3-legacy/esp32c3_oneshot_lowerhalf.c
*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with

View file

@ -1,5 +1,5 @@
/****************************************************************************
* arch/risc-v/src/esp32c3/esp32c3_partition.c
* arch/risc-v/src/esp32c3-legacy/esp32c3_partition.c
*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with

View file

@ -1,5 +1,5 @@
/****************************************************************************
* arch/risc-v/src/esp32c3/esp32c3_partition.h
* arch/risc-v/src/esp32c3-legacy/esp32c3_partition.h
*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
@ -18,8 +18,8 @@
*
****************************************************************************/
#ifndef __ARCH_RISCV_SRC_ESP32C3_ESP32C3_PARTITION_H
#define __ARCH_RISCV_SRC_ESP32C3_ESP32C3_PARTITION_H
#ifndef __ARCH_RISCV_SRC_ESP32C3_LEGACY_ESP32C3_PARTITION_H
#define __ARCH_RISCV_SRC_ESP32C3_LEGACY_ESP32C3_PARTITION_H
/****************************************************************************
* Included Files
@ -69,4 +69,4 @@ int esp32c3_partition_init(void);
#undef EXTERN
#endif /* __ASSEMBLY__ */
#endif /* __ARCH_RISCV_SRC_ESP32C3_ESP32C3_PARTITION_H */
#endif /* __ARCH_RISCV_SRC_ESP32C3_LEGACY_ESP32C3_PARTITION_H */

View file

@ -1,5 +1,5 @@
/****************************************************************************
* arch/risc-v/src/esp32c3/esp32c3_perf.c
* arch/risc-v/src/esp32c3-legacy/esp32c3_perf.c
*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with

View file

@ -1,5 +1,5 @@
/****************************************************************************
* arch/risc-v/src/esp32c3/esp32c3_pm.c
* arch/risc-v/src/esp32c3-legacy/esp32c3_pm.c
*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with

View file

@ -1,5 +1,5 @@
/****************************************************************************
* arch/risc-v/src/esp32c3/esp32c3_pm.h
* arch/risc-v/src/esp32c3-legacy/esp32c3_pm.h
*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
@ -22,8 +22,8 @@
* Included Files
****************************************************************************/
#ifndef __ARCH_RISCV_SRC_ESP32C3_ESP32C3_PM_H
#define __ARCH_RISCV_SRC_ESP32C3_ESP32C3_PM_H
#ifndef __ARCH_RISCV_SRC_ESP32C3_LEGACY_ESP32C3_PM_H
#define __ARCH_RISCV_SRC_ESP32C3_LEGACY_ESP32C3_PM_H
/****************************************************************************
* Included Files
@ -281,4 +281,4 @@ int esp32c3_pm_unregister_skip_sleep_callback(skip_light_sleep_cb_t cb);
#undef EXTERN
#endif /* __ASSEMBLY__ */
#endif /* __ARCH_RISCV_SRC_ESP32C3_ESP32C3_PM_H */
#endif /* __ARCH_RISCV_SRC_ESP32C3_LEGACY_ESP32C3_PM_H */

View file

@ -1,5 +1,5 @@
/****************************************************************************
* arch/risc-v/src/esp32c3/esp32c3_pminitialize.c
* arch/risc-v/src/esp32c3-legacy/esp32c3_pminitialize.c
*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with

View file

@ -1,5 +1,5 @@
/****************************************************************************
* arch/risc-v/src/esp32c3/esp32c3_region.c
* arch/risc-v/src/esp32c3-legacy/esp32c3_region.c
*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with

View file

@ -1,5 +1,5 @@
/****************************************************************************
* arch/risc-v/src/esp32c3/esp32c3_region.h
* arch/risc-v/src/esp32c3-legacy/esp32c3_region.h
*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
@ -18,8 +18,8 @@
*
****************************************************************************/
#ifndef __ARCH_RISCV_SRC_ESP32C3_ESP32C3_REGION_H
#define __ARCH_RISCV_SRC_ESP32C3_ESP32C3_REGION_H
#ifndef __ARCH_RISCV_SRC_ESP32C3_LEGACY_ESP32C3_REGION_H
#define __ARCH_RISCV_SRC_ESP32C3_LEGACY_ESP32C3_REGION_H
/****************************************************************************
* Included Files
@ -68,4 +68,4 @@ void esp32c3_region_protection(void);
#endif /* __ASSEMBLY__ */
#endif /* __ARCH_RISCV_SRC_ESP32C3_ESP32C3_REGION_H */
#endif /* __ARCH_RISCV_SRC_ESP32C3_LEGACY_ESP32C3_REGION_H */

View file

@ -1,5 +1,5 @@
/****************************************************************************
* arch/risc-v/src/esp32c3/esp32c3_resetcause.c
* arch/risc-v/src/esp32c3-legacy/esp32c3_resetcause.c
*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with

View file

@ -1,5 +1,5 @@
/****************************************************************************
* arch/risc-v/src/esp32c3/esp32c3_resetcause.h
* arch/risc-v/src/esp32c3-legacy/esp32c3_resetcause.h
*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with

View file

@ -1,5 +1,5 @@
/****************************************************************************
* arch/risc-v/src/esp32c3/esp32c3_rng.c
* arch/risc-v/src/esp32c3-legacy/esp32c3_rng.c
*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with

View file

@ -1,5 +1,5 @@
/****************************************************************************
* arch/risc-v/src/esp32c3/esp32c3_rsa.c
* arch/risc-v/src/esp32c3-legacy/esp32c3_rsa.c
*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with

View file

@ -1,5 +1,5 @@
/****************************************************************************
* arch/risc-v/src/esp32c3/esp32c3_rsa.h
* arch/risc-v/src/esp32c3-legacy/esp32c3_rsa.h
*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
@ -22,8 +22,8 @@
* Included Files
****************************************************************************/
#ifndef __ARCH_RISCV_SRC_ESP32C3_ESP32C3_RSA_H
#define __ARCH_RISCV_SRC_ESP32C3_ESP32C3_RSA_H
#ifndef __ARCH_RISCV_SRC_ESP32C3_LEGACY_ESP32C3_RSA_H
#define __ARCH_RISCV_SRC_ESP32C3_LEGACY_ESP32C3_RSA_H
#include <nuttx/config.h>
#include <stdint.h>
@ -508,4 +508,4 @@ void esp32c3_rsa_free(struct esp32c3_rsa_context_s *ctx);
#undef EXTERN
#endif /* __ASSEMBLY__ */
#endif /* __ARCH_RISCV_SRC_ESP32C3_ESP32C3_RSA_H */
#endif /* __ARCH_RISCV_SRC_ESP32C3_LEGACY_ESP32C3_RSA_H */

View file

@ -1,5 +1,5 @@
/****************************************************************************
* arch/risc-v/src/esp32c3/esp32c3_rt_timer.c
* arch/risc-v/src/esp32c3-legacy/esp32c3_rt_timer.c
*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with

View file

@ -1,5 +1,5 @@
/****************************************************************************
* arch/risc-v/src/esp32c3/esp32c3_rt_timer.h
* arch/risc-v/src/esp32c3-legacy/esp32c3_rt_timer.h
*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
@ -18,8 +18,8 @@
*
****************************************************************************/
#ifndef __ARCH_RISCV_SRC_ESP32C3_ESP32C3_RT_TIMER_H
#define __ARCH_RISCV_SRC_ESP32C3_ESP32C3_RT_TIMER_H
#ifndef __ARCH_RISCV_SRC_ESP32C3_LEGACY_ESP32C3_RT_TIMER_H
#define __ARCH_RISCV_SRC_ESP32C3_LEGACY_ESP32C3_RT_TIMER_H
/****************************************************************************
* Included Files
@ -241,4 +241,4 @@ void esp32c3_rt_timer_deinit(void);
#endif
#undef EXTERN
#endif /* __ARCH_RISCV_SRC_ESP32C3_ESP32C3_RT_TIMER_H */
#endif /* __ARCH_RISCV_SRC_ESP32C3_LEGACY_ESP32C3_RT_TIMER_H */

View file

@ -1,5 +1,5 @@
/****************************************************************************
* arch/risc-v/src/esp32c3/esp32c3_rtc.c
* arch/risc-v/src/esp32c3-legacy/esp32c3_rtc.c
*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with

View file

@ -1,5 +1,5 @@
/****************************************************************************
* arch/risc-v/src/esp32c3/esp32c3_rtc.h
* arch/risc-v/src/esp32c3-legacy/esp32c3_rtc.h
*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
@ -22,8 +22,8 @@
* Included Files
****************************************************************************/
#ifndef __ARCH_RISCV_SRC_ESP32C3_ESP32C3_RTC_H
#define __ARCH_RISCV_SRC_ESP32C3_ESP32C3_RTC_H
#ifndef __ARCH_RISCV_SRC_ESP32C3_LEGACY_ESP32C3_RTC_H
#define __ARCH_RISCV_SRC_ESP32C3_LEGACY_ESP32C3_RTC_H
/****************************************************************************
* Included Files
@ -734,4 +734,4 @@ int up_rtc_timer_init(void);
#undef EXTERN
#endif /* __ASSEMBLY__ */
#endif /* __ARCH_RISCV_SRC_ESP32C3_ESP32C3_RTC_H */
#endif /* __ARCH_RISCV_SRC_ESP32C3_LEGACY_ESP32C3_RTC_H */

View file

@ -1,5 +1,5 @@
/****************************************************************************
* arch/risc-v/src/esp32c3/esp32c3_rtc_gpio.c
* arch/risc-v/src/esp32c3-legacy/esp32c3_rtc_gpio.c
*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with

View file

@ -1,5 +1,5 @@
/****************************************************************************
* arch/risc-v/src/esp32c3/esp32c3_rtc_gpio.h
* arch/risc-v/src/esp32c3-legacy/esp32c3_rtc_gpio.h
*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
@ -18,8 +18,8 @@
*
****************************************************************************/
#ifndef __ARCH_RISCV_SRC_ESP32C3_ESP32C3_RTC_GPIO_H
#define __ARCH_RISCV_SRC_ESP32C3_ESP32C3_RTC_GPIO_H
#ifndef __ARCH_RISCV_SRC_ESP32C3_LEGACY_ESP32C3_RTC_GPIO_H
#define __ARCH_RISCV_SRC_ESP32C3_LEGACY_ESP32C3_RTC_GPIO_H
/****************************************************************************
* Included Files
@ -146,4 +146,4 @@ void esp32c3_rtcioirqdisable(int irq);
#endif
#endif /* __ASSEMBLY__ */
#endif /* __ARCH_RISCV_SRC_ESP32C3_ESP32C3_RTC_GPIO_H */
#endif /* __ARCH_RISCV_SRC_ESP32C3_LEGACY_ESP32C3_RTC_GPIO_H */

View file

@ -1,5 +1,5 @@
/****************************************************************************
* arch/risc-v/src/esp32c3/esp32c3_rtc_lowerhalf.c
* arch/risc-v/src/esp32c3-legacy/esp32c3_rtc_lowerhalf.c
*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with

View file

@ -1,5 +1,5 @@
/****************************************************************************
* arch/risc-v/src/esp32c3/esp32c3_rtc_lowerhalf.h
* arch/risc-v/src/esp32c3-legacy/esp32c3_rtc_lowerhalf.h
*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
@ -18,8 +18,8 @@
*
****************************************************************************/
#ifndef __ARCH_RISCV_SRC_ESP32C3_ESP32C3_RTC_LOWERHALF_H
#define __ARCH_RISCV_SRC_ESP32C3_ESP32C3_RTC_LOWERHALF_H
#ifndef __ARCH_RISCV_SRC_ESP32C3_LEGACY_ESP32C3_RTC_LOWERHALF_H
#define __ARCH_RISCV_SRC_ESP32C3_LEGACY_ESP32C3_RTC_LOWERHALF_H
/****************************************************************************
* Included Files
@ -53,4 +53,4 @@ int esp32c3_rtc_driverinit(void);
#endif /* CONFIG_RTC_DRIVER */
#endif /* __ARCH_RISCV_SRC_ESP32C3_ESP32C3_RTC_LOWERHALF_H */
#endif /* __ARCH_RISCV_SRC_ESP32C3_LEGACY_ESP32C3_RTC_LOWERHALF_H */

View file

@ -1,5 +1,5 @@
/****************************************************************************
* arch/risc-v/src/esp32c3/esp32c3_rtcheap.c
* arch/risc-v/src/esp32c3-legacy/esp32c3_rtcheap.c
*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
@ -54,7 +54,7 @@ void esp32c3_rtcheap_initialize(void)
/* These values come from the linker scripts
* (<legacy/mcuboot>_sections.ld and flat_memory.ld).
* Check boards/risc-v/esp32c3.
* Check boards/risc-v/esp32c3-legacy.
*/
extern uint8_t _srtcheap[];

View file

@ -1,5 +1,5 @@
/****************************************************************************
* arch/risc-v/src/esp32c3/esp32c3_rtcheap.h
* arch/risc-v/src/esp32c3-legacy/esp32c3_rtcheap.h
*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
@ -18,8 +18,8 @@
*
****************************************************************************/
#ifndef __ARCH_RISCV_SRC_ESP32C3_ESP32C3_RTCHEAP_H
#define __ARCH_RISCV_SRC_ESP32C3_ESP32C3_RTCHEAP_H
#ifndef __ARCH_RISCV_SRC_ESP32C3_LEGACY_ESP32C3_RTCHEAP_H
#define __ARCH_RISCV_SRC_ESP32C3_LEGACY_ESP32C3_RTCHEAP_H
/****************************************************************************
* Public Function Prototypes
@ -143,4 +143,4 @@ struct mallinfo esp32c3_rtcheap_mallinfo(void);
}
#endif
#endif /* __ARCH_RISCV_SRC_ESP32C3_ESP32C3_RTCHEAP_H */
#endif /* __ARCH_RISCV_SRC_ESP32C3_LEGACY_ESP32C3_RTCHEAP_H */

View file

@ -1,5 +1,5 @@
/****************************************************************************
* arch/risc-v/src/esp32c3/esp32c3_serial.c
* arch/risc-v/src/esp32c3-legacy/esp32c3_serial.c
*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with

View file

@ -1,5 +1,5 @@
/****************************************************************************
* arch/risc-v/src/esp32c3/esp32c3_sha.c
* arch/risc-v/src/esp32c3-legacy/esp32c3_sha.c
*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with

View file

@ -1,5 +1,5 @@
/****************************************************************************
* arch/risc-v/src/esp32c3/esp32c3_sha.h
* arch/risc-v/src/esp32c3-legacy/esp32c3_sha.h
*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
@ -22,8 +22,8 @@
* Included Files
****************************************************************************/
#ifndef __ARCH_RISCV_SRC_ESP32C3_ESP32C3_SHA_H
#define __ARCH_RISCV_SRC_ESP32C3_ESP32C3_SHA_H
#ifndef __ARCH_RISCV_SRC_ESP32C3_LEGACY_ESP32C3_SHA_H
#define __ARCH_RISCV_SRC_ESP32C3_LEGACY_ESP32C3_SHA_H
#include <nuttx/config.h>
#include <stdint.h>
@ -266,4 +266,4 @@ int esp32c3_sha256_finish(struct esp32c3_sha256_context_s *ctx,
#undef EXTERN
#endif /* __ASSEMBLY__ */
#endif /* __ARCH_RISCV_SRC_ESP32C3_ESP32C3_SHA_H */
#endif /* __ARCH_RISCV_SRC_ESP32C3_LEGACY_ESP32C3_SHA_H */

View file

@ -1,5 +1,5 @@
/****************************************************************************
* arch/risc-v/src/esp32c3/esp32c3_spi.c
* arch/risc-v/src/esp32c3-legacy/esp32c3_spi.c
*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with

View file

@ -1,5 +1,5 @@
/****************************************************************************
* arch/risc-v/src/esp32c3/esp32c3_spi.h
* arch/risc-v/src/esp32c3-legacy/esp32c3_spi.h
*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
@ -22,8 +22,8 @@
* Included Files
****************************************************************************/
#ifndef __ARCH_RISCV_SRC_ESP32C3_ESP32C3_SPI_H
#define __ARCH_RISCV_SRC_ESP32C3_ESP32C3_SPI_H
#ifndef __ARCH_RISCV_SRC_ESP32C3_LEGACY_ESP32C3_SPI_H
#define __ARCH_RISCV_SRC_ESP32C3_LEGACY_ESP32C3_SPI_H
/****************************************************************************
* Included Files
@ -167,4 +167,4 @@ int esp32c3_spislave_ctrlr_uninitialize(struct spi_slave_ctrlr_s *ctrlr);
#undef EXTERN
#endif /* __ASSEMBLY__ */
#endif /* __ARCH_RISCV_SRC_ESP32C3_ESP32C3_SPI_H */
#endif /* __ARCH_RISCV_SRC_ESP32C3_LEGACY_ESP32C3_SPI_H */

View file

@ -1,5 +1,5 @@
/****************************************************************************
* arch/risc-v/src/esp32c3/esp32c3_spi_slave.c
* arch/risc-v/src/esp32c3-legacy/esp32c3_spi_slave.c
*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with

View file

@ -1,5 +1,5 @@
/****************************************************************************
* arch/risc-v/src/esp32c3/esp32c3_spiflash.c
* arch/risc-v/src/esp32c3-legacy/esp32c3_spiflash.c
*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with

View file

@ -1,5 +1,5 @@
/****************************************************************************
* arch/risc-v/src/esp32c3/esp32c3_spiflash.h
* arch/risc-v/src/esp32c3-legacy/esp32c3_spiflash.h
*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
@ -18,8 +18,8 @@
*
****************************************************************************/
#ifndef __ARCH_RISCV_SRC_ESP32C3_ESP32C3_SPIFLASH_H
#define __ARCH_RISCV_SRC_ESP32C3_ESP32C3_SPIFLASH_H
#ifndef __ARCH_RISCV_SRC_ESP32C3_LEGACY_ESP32C3_SPIFLASH_H
#define __ARCH_RISCV_SRC_ESP32C3_LEGACY_ESP32C3_SPIFLASH_H
/****************************************************************************
* Included Files
@ -129,4 +129,4 @@ int esp32c3_spiflash_init(void);
#undef EXTERN
#endif /* __ASSEMBLY__ */
#endif /* __ARCH_RISCV_SRC_ESP32C3_ESP32C3_SPIFLASH_H */
#endif /* __ARCH_RISCV_SRC_ESP32C3_LEGACY_ESP32C3_SPIFLASH_H */

View file

@ -1,5 +1,5 @@
/****************************************************************************
* arch/risc-v/src/esp32c3/esp32c3_spiflash_mtd.c
* arch/risc-v/src/esp32c3-legacy/esp32c3_spiflash_mtd.c
*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with

View file

@ -1,5 +1,5 @@
/****************************************************************************
* arch/risc-v/src/esp32c3/esp32c3_spiflash_mtd.h
* arch/risc-v/src/esp32c3-legacy/esp32c3_spiflash_mtd.h
*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
@ -18,8 +18,8 @@
*
****************************************************************************/
#ifndef __ARCH_RISCV_SRC_ESP32C3_ESP32C3_SPIFLASH_MTD_H
#define __ARCH_RISCV_SRC_ESP32C3_ESP32C3_SPIFLASH_MTD_H
#ifndef __ARCH_RISCV_SRC_ESP32C3_LEGACY_ESP32C3_SPIFLASH_MTD_H
#define __ARCH_RISCV_SRC_ESP32C3_LEGACY_ESP32C3_SPIFLASH_MTD_H
/****************************************************************************
* Included Files
@ -105,4 +105,4 @@ struct mtd_dev_s *esp32c3_spiflash_alloc_mtdpart(uint32_t mtd_offset,
#undef EXTERN
#endif /* __ASSEMBLY__ */
#endif /* __ARCH_RISCV_SRC_ESP32C3_ESP32C3_SPIFLASH_MTD_H */
#endif /* __ARCH_RISCV_SRC_ESP32C3_LEGACY_ESP32C3_SPIFLASH_MTD_H */

View file

@ -1,5 +1,5 @@
/****************************************************************************
* arch/risc-v/src/esp32c3/esp32c3_start.c
* arch/risc-v/src/esp32c3-legacy/esp32c3_start.c
*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with

View file

@ -1,5 +1,5 @@
/****************************************************************************
* arch/risc-v/src/esp32c3/esp32c3_start.h
* arch/risc-v/src/esp32c3-legacy/esp32c3_start.h
*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
@ -22,8 +22,8 @@
* Included Files
****************************************************************************/
#ifndef __ARCH_RISCV_SRC_ESP32C3_ESP32C3_START_H
#define __ARCH_RISCV_SRC_ESP32C3_ESP32C3_START_H
#ifndef __ARCH_RISCV_SRC_ESP32C3_LEGACY_ESP32C3_START_H
#define __ARCH_RISCV_SRC_ESP32C3_LEGACY_ESP32C3_START_H
/****************************************************************************
* Included Files
@ -52,4 +52,4 @@
void esp32c3_board_initialize(void);
#endif /* __ARCH_RISCV_SRC_ESP32C3_ESP32C3_START_H */
#endif /* __ARCH_RISCV_SRC_ESP32C3_LEGACY_ESP32C3_START_H */

View file

@ -1,5 +1,5 @@
/****************************************************************************
* arch/risc-v/src/esp32c3/esp32c3_systemreset.c
* arch/risc-v/src/esp32c3-legacy/esp32c3_systemreset.c
*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with

View file

@ -1,5 +1,5 @@
/****************************************************************************
* arch/risc-v/src/esp32c3/esp32c3_systemreset.h
* arch/risc-v/src/esp32c3-legacy/esp32c3_systemreset.h
*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
@ -18,8 +18,8 @@
*
****************************************************************************/
#ifndef __ARCH_RISCV_SRC_ESP32C3_ESP32C3_SYSTEMRESET_H
#define __ARCH_RISCV_SRC_ESP32C3_ESP32C3_SYSTEMRESET_H
#ifndef __ARCH_RISCV_SRC_ESP32C3_LEGACY_ESP32C3_SYSTEMRESET_H
#define __ARCH_RISCV_SRC_ESP32C3_LEGACY_ESP32C3_SYSTEMRESET_H
/****************************************************************************
* Included Files
@ -102,4 +102,4 @@ void up_shutdown_handler(void);
#undef EXTERN
#endif /* __ASSEMBLY__ */
#endif /* __ARCH_RISCV_SRC_ESP32C3_ESP32C3_SYSTEMRESET_H */
#endif /* __ARCH_RISCV_SRC_ESP32C3_LEGACY_ESP32C3_SYSTEMRESET_H */

View file

@ -1,5 +1,5 @@
/****************************************************************************
* arch/risc-v/src/esp32c3/esp32c3_textheap.c
* arch/risc-v/src/esp32c3-legacy/esp32c3_textheap.c
*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with

View file

@ -1,5 +1,5 @@
/****************************************************************************
* arch/risc-v/src/esp32c3/esp32c3_tickless.c
* arch/risc-v/src/esp32c3-legacy/esp32c3_tickless.c
*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with

View file

@ -1,5 +1,5 @@
/****************************************************************************
* arch/risc-v/src/esp32c3/esp32c3_tickless.h
* arch/risc-v/src/esp32c3-legacy/esp32c3_tickless.h
*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
@ -18,8 +18,8 @@
*
****************************************************************************/
#ifndef __ARCH_RISCV_SRC_ESP32C3_ESP32C3_TICKLESS_H
#define __ARCH_RISCV_SRC_ESP32C3_ESP32C3_TICKLESS_H
#ifndef __ARCH_RISCV_SRC_ESP32C3_LEGACY_ESP32C3_TICKLESS_H
#define __ARCH_RISCV_SRC_ESP32C3_LEGACY_ESP32C3_TICKLESS_H
/****************************************************************************
* Included Files
@ -64,4 +64,4 @@ uint32_t up_get_idletime(void);
void up_step_idletime(uint32_t idletime_us);
#endif /* __ARCH_RISCV_SRC_ESP32C3_ESP32C3_TICKLESS_H */
#endif /* __ARCH_RISCV_SRC_ESP32C3_LEGACY_ESP32C3_TICKLESS_H */

View file

@ -1,5 +1,5 @@
/****************************************************************************
* arch/risc-v/src/esp32c3/esp32c3_tim.c
* arch/risc-v/src/esp32c3-legacy/esp32c3_tim.c
*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with

View file

@ -1,5 +1,5 @@
/****************************************************************************
* arch/risc-v/src/esp32c3/esp32c3_tim.h
* arch/risc-v/src/esp32c3-legacy/esp32c3_tim.h
*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
@ -18,8 +18,8 @@
*
****************************************************************************/
#ifndef __ARCH_RISCV_SRC_ESP32C3_ESP32C3_TIM_H
#define __ARCH_RISCV_SRC_ESP32C3_ESP32C3_TIM_H
#ifndef __ARCH_RISCV_SRC_ESP32C3_LEGACY_ESP32C3_TIM_H
#define __ARCH_RISCV_SRC_ESP32C3_LEGACY_ESP32C3_TIM_H
/****************************************************************************
* Included Files
@ -138,4 +138,4 @@ struct esp32c3_tim_ops_s
struct esp32c3_tim_dev_s *esp32c3_tim_init(int timer);
void esp32c3_tim_deinit(struct esp32c3_tim_dev_s *dev);
#endif /* __ARCH_RISCV_SRC_ESP32C3_ESP32C3_TIM_H */
#endif /* __ARCH_RISCV_SRC_ESP32C3_LEGACY_ESP32C3_TIM_H */

View file

@ -1,5 +1,5 @@
/****************************************************************************
* arch/risc-v/src/esp32c3/esp32c3_tim_lowerhalf.c
* arch/risc-v/src/esp32c3-legacy/esp32c3_tim_lowerhalf.c
*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with

View file

@ -1,5 +1,5 @@
/****************************************************************************
* arch/risc-v/src/esp32c3/esp32c3_tim_lowerhalf.h
* arch/risc-v/src/esp32c3-legacy/esp32c3_tim_lowerhalf.h
*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
@ -18,8 +18,8 @@
*
****************************************************************************/
#ifndef __ARCH_RISCV_SRC_ESP32C3_ESP32C3_TIM_LOWERHALF_H
#define __ARCH_RISCV_SRC_ESP32C3_ESP32C3_TIM_LOWERHALF_H
#ifndef __ARCH_RISCV_SRC_ESP32C3_LEGACY_ESP32C3_TIM_LOWERHALF_H
#define __ARCH_RISCV_SRC_ESP32C3_LEGACY_ESP32C3_TIM_LOWERHALF_H
/****************************************************************************
* Included Files
@ -37,4 +37,4 @@
int esp32c3_timer_initialize(const char *devpath, uint8_t timer);
#endif /* __ARCH_RISCV_SRC_ESP32C3_ESP32C3_TIM_LOWERHALF_H */
#endif /* __ARCH_RISCV_SRC_ESP32C3_LEGACY_ESP32C3_TIM_LOWERHALF_H */

View file

@ -1,5 +1,5 @@
/****************************************************************************
* arch/risc-v/src/esp32c3/esp32c3_timerisr.c
* arch/risc-v/src/esp32c3-legacy/esp32c3_timerisr.c
*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with

Some files were not shown because too many files have changed in this diff Show more