From b0d24f53c4be391f2e0081ef4bba4f5058e54f9e Mon Sep 17 00:00:00 2001 From: Gustavo Henrique Nihei Date: Fri, 7 Jan 2022 14:44:06 -0300 Subject: [PATCH] xtensa: Add initial support for ESP32-S3 Co-authored-by: Alan Carvalho de Assis Signed-off-by: Gustavo Henrique Nihei --- arch/xtensa/Kconfig | 39 +- arch/xtensa/include/esp32s3/chip.h | 66 + arch/xtensa/include/esp32s3/core-isa.h | 695 + arch/xtensa/include/esp32s3/irq.h | 463 + arch/xtensa/include/esp32s3/tie-asm.h | 433 + arch/xtensa/include/esp32s3/tie.h | 209 + arch/xtensa/include/lx7/chip.h | 62 + arch/xtensa/src/esp32s3/.gitignore | 1 + arch/xtensa/src/esp32s3/Bootloader.mk | 88 + arch/xtensa/src/esp32s3/Kconfig | 461 + arch/xtensa/src/esp32s3/Make.defs | 74 + arch/xtensa/src/esp32s3/chip.h | 61 + arch/xtensa/src/esp32s3/chip_macros.h | 91 + arch/xtensa/src/esp32s3/chip_memory.h | 73 + .../xtensa/src/esp32s3/esp32s3_allocateheap.c | 84 + arch/xtensa/src/esp32s3/esp32s3_clockconfig.c | 312 + arch/xtensa/src/esp32s3/esp32s3_clockconfig.h | 120 + arch/xtensa/src/esp32s3/esp32s3_config.h | 64 + arch/xtensa/src/esp32s3/esp32s3_gpio.c | 205 + arch/xtensa/src/esp32s3/esp32s3_gpio.h | 163 + arch/xtensa/src/esp32s3/esp32s3_idle.c | 83 + arch/xtensa/src/esp32s3/esp32s3_irq.c | 686 + arch/xtensa/src/esp32s3/esp32s3_irq.h | 123 + arch/xtensa/src/esp32s3/esp32s3_lowputc.c | 846 + arch/xtensa/src/esp32s3/esp32s3_lowputc.h | 485 + arch/xtensa/src/esp32s3/esp32s3_region.c | 102 + arch/xtensa/src/esp32s3/esp32s3_region.h | 52 + arch/xtensa/src/esp32s3/esp32s3_serial.c | 1166 ++ arch/xtensa/src/esp32s3/esp32s3_start.c | 324 + arch/xtensa/src/esp32s3/esp32s3_start.h | 54 + arch/xtensa/src/esp32s3/esp32s3_systemreset.c | 54 + arch/xtensa/src/esp32s3/esp32s3_timerisr.c | 143 + arch/xtensa/src/esp32s3/esp32s3_user.c | 71 + arch/xtensa/src/esp32s3/esp32s3_wdt.c | 50 + arch/xtensa/src/esp32s3/esp32s3_wdt.h | 34 + .../esp32s3/hardware/esp32s3_cache_memory.h | 118 + .../src/esp32s3/hardware/esp32s3_extmem.h | 2761 +++ .../src/esp32s3/hardware/esp32s3_gpio.h | 15717 ++++++++++++++++ .../esp32s3/hardware/esp32s3_gpio_sigmap.h | 447 + .../hardware/esp32s3_interrupt_core0.h | 1727 ++ .../hardware/esp32s3_interrupt_core1.h | 1726 ++ .../src/esp32s3/hardware/esp32s3_iomux.h | 467 + .../src/esp32s3/hardware/esp32s3_rom_layout.h | 95 + .../src/esp32s3/hardware/esp32s3_rtccntl.h | 5795 ++++++ .../xtensa/src/esp32s3/hardware/esp32s3_soc.h | 487 + .../src/esp32s3/hardware/esp32s3_system.h | 1757 ++ .../src/esp32s3/hardware/esp32s3_systimer.h | 808 + .../src/esp32s3/hardware/esp32s3_uart.h | 1961 ++ arch/xtensa/src/lx7/Toolchain.defs | 2 +- boards/Kconfig | 18 + boards/xtensa/esp32s3/common/Kconfig | 13 + boards/xtensa/esp32s3/common/Makefile | 33 + boards/xtensa/esp32s3/common/src/Make.defs | 23 + boards/xtensa/esp32s3/esp32s3-devkit/Kconfig | 8 + .../esp32s3-devkit/configs/nsh/defconfig | 48 + .../esp32s3/esp32s3-devkit/include/board.h | 73 + .../esp32s3/esp32s3-devkit/scripts/.gitignore | 1 + .../esp32s3/esp32s3-devkit/scripts/Make.defs | 92 + .../esp32s3/esp32s3-devkit/scripts/esp32s3.ld | 269 + .../scripts/esp32s3.template.ld | 113 + .../scripts/esp32s3_peripherals.ld | 47 + .../esp32s3-devkit/scripts/esp32s3_rom.ld | 2522 +++ .../esp32s3/esp32s3-devkit/src/Make.defs | 52 + .../esp32s3-devkit/src/esp32s3-devkit.h | 67 + .../esp32s3-devkit/src/esp32s3_appinit.c | 80 + .../esp32s3/esp32s3-devkit/src/esp32s3_boot.c | 83 + .../esp32s3-devkit/src/esp32s3_bringup.c | 93 + .../esp32s3-devkit/src/esp32s3_reset.c | 63 + tools/esp32s3/Config.mk | 140 + 69 files changed, 45740 insertions(+), 3 deletions(-) create mode 100644 arch/xtensa/include/esp32s3/chip.h create mode 100644 arch/xtensa/include/esp32s3/core-isa.h create mode 100644 arch/xtensa/include/esp32s3/irq.h create mode 100644 arch/xtensa/include/esp32s3/tie-asm.h create mode 100644 arch/xtensa/include/esp32s3/tie.h create mode 100644 arch/xtensa/include/lx7/chip.h create mode 100644 arch/xtensa/src/esp32s3/.gitignore create mode 100644 arch/xtensa/src/esp32s3/Bootloader.mk create mode 100644 arch/xtensa/src/esp32s3/Kconfig create mode 100644 arch/xtensa/src/esp32s3/Make.defs create mode 100644 arch/xtensa/src/esp32s3/chip.h create mode 100644 arch/xtensa/src/esp32s3/chip_macros.h create mode 100644 arch/xtensa/src/esp32s3/chip_memory.h create mode 100644 arch/xtensa/src/esp32s3/esp32s3_allocateheap.c create mode 100644 arch/xtensa/src/esp32s3/esp32s3_clockconfig.c create mode 100644 arch/xtensa/src/esp32s3/esp32s3_clockconfig.h create mode 100644 arch/xtensa/src/esp32s3/esp32s3_config.h create mode 100644 arch/xtensa/src/esp32s3/esp32s3_gpio.c create mode 100644 arch/xtensa/src/esp32s3/esp32s3_gpio.h create mode 100644 arch/xtensa/src/esp32s3/esp32s3_idle.c create mode 100644 arch/xtensa/src/esp32s3/esp32s3_irq.c create mode 100644 arch/xtensa/src/esp32s3/esp32s3_irq.h create mode 100644 arch/xtensa/src/esp32s3/esp32s3_lowputc.c create mode 100644 arch/xtensa/src/esp32s3/esp32s3_lowputc.h create mode 100644 arch/xtensa/src/esp32s3/esp32s3_region.c create mode 100644 arch/xtensa/src/esp32s3/esp32s3_region.h create mode 100644 arch/xtensa/src/esp32s3/esp32s3_serial.c create mode 100644 arch/xtensa/src/esp32s3/esp32s3_start.c create mode 100644 arch/xtensa/src/esp32s3/esp32s3_start.h create mode 100644 arch/xtensa/src/esp32s3/esp32s3_systemreset.c create mode 100644 arch/xtensa/src/esp32s3/esp32s3_timerisr.c create mode 100644 arch/xtensa/src/esp32s3/esp32s3_user.c create mode 100644 arch/xtensa/src/esp32s3/esp32s3_wdt.c create mode 100644 arch/xtensa/src/esp32s3/esp32s3_wdt.h create mode 100644 arch/xtensa/src/esp32s3/hardware/esp32s3_cache_memory.h create mode 100644 arch/xtensa/src/esp32s3/hardware/esp32s3_extmem.h create mode 100644 arch/xtensa/src/esp32s3/hardware/esp32s3_gpio.h create mode 100644 arch/xtensa/src/esp32s3/hardware/esp32s3_gpio_sigmap.h create mode 100644 arch/xtensa/src/esp32s3/hardware/esp32s3_interrupt_core0.h create mode 100644 arch/xtensa/src/esp32s3/hardware/esp32s3_interrupt_core1.h create mode 100644 arch/xtensa/src/esp32s3/hardware/esp32s3_iomux.h create mode 100644 arch/xtensa/src/esp32s3/hardware/esp32s3_rom_layout.h create mode 100644 arch/xtensa/src/esp32s3/hardware/esp32s3_rtccntl.h create mode 100644 arch/xtensa/src/esp32s3/hardware/esp32s3_soc.h create mode 100644 arch/xtensa/src/esp32s3/hardware/esp32s3_system.h create mode 100644 arch/xtensa/src/esp32s3/hardware/esp32s3_systimer.h create mode 100644 arch/xtensa/src/esp32s3/hardware/esp32s3_uart.h create mode 100644 boards/xtensa/esp32s3/common/Kconfig create mode 100644 boards/xtensa/esp32s3/common/Makefile create mode 100644 boards/xtensa/esp32s3/common/src/Make.defs create mode 100644 boards/xtensa/esp32s3/esp32s3-devkit/Kconfig create mode 100644 boards/xtensa/esp32s3/esp32s3-devkit/configs/nsh/defconfig create mode 100644 boards/xtensa/esp32s3/esp32s3-devkit/include/board.h create mode 100644 boards/xtensa/esp32s3/esp32s3-devkit/scripts/.gitignore create mode 100644 boards/xtensa/esp32s3/esp32s3-devkit/scripts/Make.defs create mode 100644 boards/xtensa/esp32s3/esp32s3-devkit/scripts/esp32s3.ld create mode 100644 boards/xtensa/esp32s3/esp32s3-devkit/scripts/esp32s3.template.ld create mode 100644 boards/xtensa/esp32s3/esp32s3-devkit/scripts/esp32s3_peripherals.ld create mode 100644 boards/xtensa/esp32s3/esp32s3-devkit/scripts/esp32s3_rom.ld create mode 100644 boards/xtensa/esp32s3/esp32s3-devkit/src/Make.defs create mode 100644 boards/xtensa/esp32s3/esp32s3-devkit/src/esp32s3-devkit.h create mode 100644 boards/xtensa/esp32s3/esp32s3-devkit/src/esp32s3_appinit.c create mode 100644 boards/xtensa/esp32s3/esp32s3-devkit/src/esp32s3_boot.c create mode 100644 boards/xtensa/esp32s3/esp32s3-devkit/src/esp32s3_bringup.c create mode 100644 boards/xtensa/esp32s3/esp32s3-devkit/src/esp32s3_reset.c create mode 100644 tools/esp32s3/Config.mk diff --git a/arch/xtensa/Kconfig b/arch/xtensa/Kconfig index 88a1fc96fd..0b16b9c279 100644 --- a/arch/xtensa/Kconfig +++ b/arch/xtensa/Kconfig @@ -70,6 +70,34 @@ config ARCH_CHIP_ESP32S2 Based on an Xtensa single-core 32-bit LX7 processor, it can be clocked at up to 240 MHz. +config ARCH_CHIP_ESP32S3 + bool "Espressif ESP32-S3" + select ARCH_FAMILY_LX7 + select XTENSA_HAVE_INTERRUPTS + select ARCH_HAVE_MULTICPU + select ARCH_HAVE_TEXT_HEAP + select ARCH_HAVE_SDRAM + select ARCH_HAVE_RESET + select ARCH_HAVE_BOOTLOADER + select ARCH_VECNOTIRQ + select LIBC_ARCH_MEMCPY + select LIBC_ARCH_MEMCHR + select LIBC_ARCH_MEMCMP + select LIBC_ARCH_MEMMOVE + select LIBC_ARCH_MEMSET + select LIBC_ARCH_STRCHR + select LIBC_ARCH_STRCMP + select LIBC_ARCH_STRCPY + select LIBC_ARCH_STRLCPY + select LIBC_ARCH_STRNCPY + select LIBC_ARCH_STRLEN + select LIBC_ARCH_STRNLEN + ---help--- + ESP32-S3 is a dual-core Xtensa LX7 MCU, capable of running at 240 MHz. + Apart from its 512 KB of internal SRAM, it also comes with integrated 2.4 GHz, + 802.11 b/g/n Wi-Fi and Bluetooth 5 (LE) connectivity that provides long-range + support. + config ARCH_CHIP_XTENSA_CUSTOM bool "Custom XTENSA chip" select ARCH_CHIP_CUSTOM @@ -145,8 +173,9 @@ config ARCH_FAMILY_LX7 config ARCH_CHIP string - default "esp32" if ARCH_CHIP_ESP32 - default "esp32s2" if ARCH_CHIP_ESP32S2 + default "esp32" if ARCH_CHIP_ESP32 + default "esp32s2" if ARCH_CHIP_ESP32S2 + default "esp32s3" if ARCH_CHIP_ESP32S3 config XTENSA_CP_LAZY bool "Lazy co-processor state restoration" @@ -267,13 +296,19 @@ config XTENSA_TOOLCHAIN_ESP endchoice source "arch/xtensa/src/lx6/Kconfig" + if ARCH_CHIP_ESP32 source "arch/xtensa/src/esp32/Kconfig" endif source "arch/xtensa/src/lx7/Kconfig" + if ARCH_CHIP_ESP32S2 source "arch/xtensa/src/esp32s2/Kconfig" endif +if ARCH_CHIP_ESP32S3 +source "arch/xtensa/src/esp32s3/Kconfig" +endif + endif # ARCH_XTENSA diff --git a/arch/xtensa/include/esp32s3/chip.h b/arch/xtensa/include/esp32s3/chip.h new file mode 100644 index 0000000000..c3473699fd --- /dev/null +++ b/arch/xtensa/include/esp32s3/chip.h @@ -0,0 +1,66 @@ +/**************************************************************************** + * arch/xtensa/include/esp32s3/chip.h + * + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. The + * ASF licenses this file to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance with the + * License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT + * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the + * License for the specific language governing permissions and limitations + * under the License. + * + ****************************************************************************/ + +#ifndef __ARCH_XTENSA_INCLUDE_ESP32S3_CHIP_H +#define __ARCH_XTENSA_INCLUDE_ESP32S3_CHIP_H + +/**************************************************************************** + * Included Files + ****************************************************************************/ + +#include + +/**************************************************************************** + * Pre-processor Definitions + ****************************************************************************/ + +#define ESP32S3_NGPIOS 45 /* GPIO0-44 */ + +/* Characterize each supported ESP32-S3 part */ + +/**************************************************************************** + * Public Types + ****************************************************************************/ + +#ifndef __ASSEMBLY__ + +/**************************************************************************** + * Inline Functions + ****************************************************************************/ + +/**************************************************************************** + * Public Function Prototypes + ****************************************************************************/ + +#ifdef __cplusplus +#define EXTERN extern "C" +extern "C" +{ +#else +#define EXTERN extern +#endif + +#undef EXTERN +#ifdef __cplusplus +} +#endif + +#endif /* __ASSEMBLY__ */ +#endif /* __ARCH_XTENSA_INCLUDE_ESP32S3_CHIP_H */ diff --git a/arch/xtensa/include/esp32s3/core-isa.h b/arch/xtensa/include/esp32s3/core-isa.h new file mode 100644 index 0000000000..4120440877 --- /dev/null +++ b/arch/xtensa/include/esp32s3/core-isa.h @@ -0,0 +1,695 @@ +/**************************************************************************** + * arch/xtensa/include/esp32s3/core-isa.h + * Xtensa processor core configuration information. + * + * Customer ID=15128; Build=0x90f1f; Copyright (c) 1999-2021 Tensilica Inc. + * + * Permission is hereby granted, free of charge, to any person obtaining + * a copy of this software and associated documentation files (the + * "Software"), to deal in the Software without restriction, including + * without limitation the rights to use, copy, modify, merge, publish, + * distribute, sublicense, and/or sell copies of the Software, and to + * permit persons to whom the Software is furnished to do so, subject to + * the following conditions: + * + * The above copyright notice and this permission notice shall be included + * in all copies or substantial portions of the Software. + * + * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, + * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF + * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. + * IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY + * CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, + * TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE + * SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. + * + ****************************************************************************/ + +#ifndef __ARCH_XTENSA_INCLUDE_ESP32S3_CORE_ISA_H +#define __ARCH_XTENSA_INCLUDE_ESP32S3_CORE_ISA_H + +/**************************************************************************** + * Pre-processor Definitions + ****************************************************************************/ + +/**************************************************************************** + * Parameters Useful for Any Code, USER or PRIVILEGED + ****************************************************************************/ + +/* Note: Macros of the form XCHAL_HAVE_*** have a value of 1 if the option + * is configured, and a value of 0 otherwise. These macros are always + * defined. + */ + +/**************************************************************************** + * ISA + ****************************************************************************/ + +#define XCHAL_HAVE_BE 0 /* big-endian byte ordering */ +#define XCHAL_HAVE_WINDOWED 1 /* windowed registers option */ +#define XCHAL_NUM_AREGS 64 /* num of physical addr regs */ +#define XCHAL_NUM_AREGS_LOG2 6 /* log2(XCHAL_NUM_AREGS) */ +#define XCHAL_MAX_INSTRUCTION_SIZE 4 /* max instr bytes (3..8) */ +#define XCHAL_HAVE_DEBUG 1 /* debug option */ +#define XCHAL_HAVE_DENSITY 1 /* 16-bit instructions */ +#define XCHAL_HAVE_LOOPS 1 /* zero-overhead loops */ +#define XCHAL_LOOP_BUFFER_SIZE 256 /* zero-ov. loop instr buffer size */ +#define XCHAL_HAVE_NSA 1 /* NSA/NSAU instructions */ +#define XCHAL_HAVE_MINMAX 1 /* MIN/MAX instructions */ +#define XCHAL_HAVE_SEXT 1 /* SEXT instruction */ +#define XCHAL_HAVE_DEPBITS 0 /* DEPBITS instruction */ +#define XCHAL_HAVE_CLAMPS 1 /* CLAMPS instruction */ +#define XCHAL_HAVE_MUL16 1 /* MUL16S/MUL16U instructions */ +#define XCHAL_HAVE_MUL32 1 /* MULL instruction */ +#define XCHAL_HAVE_MUL32_HIGH 1 /* MULUH/MULSH instructions */ +#define XCHAL_HAVE_DIV32 1 /* QUOS/QUOU/REMS/REMU instructions */ +#define XCHAL_HAVE_L32R 1 /* L32R instruction */ +#define XCHAL_HAVE_ABSOLUTE_LITERALS 0 /* non-PC-rel (extended) L32R */ +#define XCHAL_HAVE_CONST16 0 /* CONST16 instruction */ +#define XCHAL_HAVE_ADDX 1 /* ADDX#/SUBX# instructions */ +#define XCHAL_HAVE_EXCLUSIVE 0 /* L32EX/S32EX instructions */ +#define XCHAL_HAVE_WIDE_BRANCHES 0 /* B*.W18 or B*.W15 instr's */ +#define XCHAL_HAVE_PREDICTED_BRANCHES 0 /* B[EQ/EQZ/NE/NEZ]T instr's */ +#define XCHAL_HAVE_CALL4AND12 1 /* (obsolete option) */ +#define XCHAL_HAVE_ABS 1 /* ABS instruction */ + +/* #define XCHAL_HAVE_POPC 0 */ /* POPC instruction */ + +/* #define XCHAL_HAVE_CRC 0 */ /* CRC instruction */ + +#define XCHAL_HAVE_RELEASE_SYNC 1 /* L32AI/S32RI instructions */ +#define XCHAL_HAVE_S32C1I 1 /* S32C1I instruction */ +#define XCHAL_HAVE_SPECULATION 0 /* speculation */ +#define XCHAL_HAVE_FULL_RESET 1 /* all regs/state reset */ +#define XCHAL_NUM_CONTEXTS 1 /* */ +#define XCHAL_NUM_MISC_REGS 4 /* num of scratch regs (0..4) */ +#define XCHAL_HAVE_TAP_MASTER 0 /* JTAG TAP control instr's */ +#define XCHAL_HAVE_PRID 1 /* processor ID register */ +#define XCHAL_HAVE_EXTERN_REGS 1 /* WER/RER instructions */ +#define XCHAL_HAVE_MX 0 /* MX core (Tensilica internal) */ +#define XCHAL_HAVE_MP_INTERRUPTS 0 /* interrupt distributor port */ +#define XCHAL_HAVE_MP_RUNSTALL 0 /* core RunStall control port */ +#define XCHAL_HAVE_PSO 0 /* Power Shut-Off */ +#define XCHAL_HAVE_PSO_CDM 0 /* core/debug/mem pwr domains */ +#define XCHAL_HAVE_PSO_FULL_RETENTION 0 /* all regs preserved on PSO */ +#define XCHAL_HAVE_THREADPTR 1 /* THREADPTR register */ +#define XCHAL_HAVE_BOOLEANS 1 /* boolean registers */ +#define XCHAL_HAVE_CP 1 /* CPENABLE reg (coprocessor) */ +#define XCHAL_CP_MAXCFG 8 /* max allowed cp id plus one */ +#define XCHAL_HAVE_MAC16 1 /* MAC16 package */ +#define XCHAL_HAVE_FUSION 0 /* Fusion*/ +#define XCHAL_HAVE_FUSION_FP 0 /* Fusion FP option */ +#define XCHAL_HAVE_FUSION_LOW_POWER 0 /* Fusion Low Power option */ +#define XCHAL_HAVE_FUSION_AES 0 /* Fusion BLE/Wifi AES-128 CCM option */ +#define XCHAL_HAVE_FUSION_CONVENC 0 /* Fusion Conv Encode option */ +#define XCHAL_HAVE_FUSION_LFSR_CRC 0 /* Fusion LFSR-CRC option */ +#define XCHAL_HAVE_FUSION_BITOPS 0 /* Fusion Bit Operations Support option */ +#define XCHAL_HAVE_FUSION_AVS 0 /* Fusion AVS option */ +#define XCHAL_HAVE_FUSION_16BIT_BASEBAND 0 /* Fusion 16-bit Baseband option */ +#define XCHAL_HAVE_FUSION_VITERBI 0 /* Fusion Viterbi option */ +#define XCHAL_HAVE_FUSION_SOFTDEMAP 0 /* Fusion Soft Bit Demap option */ +#define XCHAL_HAVE_HIFIPRO 0 /* HiFiPro Audio Engine pkg */ +#define XCHAL_HAVE_HIFI5 0 /* HiFi5 Audio Engine pkg */ +#define XCHAL_HAVE_HIFI5_NN_MAC 0 /* HiFi5 Audio Engine NN-MAC option */ +#define XCHAL_HAVE_HIFI5_VFPU 0 /* HiFi5 Audio Engine Single-Precision VFPU option */ +#define XCHAL_HAVE_HIFI5_HP_VFPU 0 /* HiFi5 Audio Engine Half-Precision VFPU option */ +#define XCHAL_HAVE_HIFI4 0 /* HiFi4 Audio Engine pkg */ +#define XCHAL_HAVE_HIFI4_VFPU 0 /* HiFi4 Audio Engine VFPU option */ +#define XCHAL_HAVE_HIFI3 0 /* HiFi3 Audio Engine pkg */ +#define XCHAL_HAVE_HIFI3_VFPU 0 /* HiFi3 Audio Engine VFPU option */ +#define XCHAL_HAVE_HIFI3Z 0 /* HiFi3Z Audio Engine pkg */ +#define XCHAL_HAVE_HIFI3Z_VFPU 0 /* HiFi3Z Audio Engine VFPU option */ +#define XCHAL_HAVE_HIFI2 0 /* HiFi2 Audio Engine pkg */ +#define XCHAL_HAVE_HIFI2EP 0 /* HiFi2EP */ +#define XCHAL_HAVE_HIFI_MINI 0 +#define XCHAL_HAVE_VECTORFPU2005 0 /* vector floating-point pkg */ +#define XCHAL_HAVE_USER_DPFPU 0 /* user DP floating-point pkg */ +#define XCHAL_HAVE_USER_SPFPU 0 /* user SP floating-point pkg */ +#define XCHAL_HAVE_FP 1 /* single prec floating point */ +#define XCHAL_HAVE_FP_DIV 1 /* FP with DIV instructions */ +#define XCHAL_HAVE_FP_RECIP 1 /* FP with RECIP instructions */ +#define XCHAL_HAVE_FP_SQRT 1 /* FP with SQRT instructions */ +#define XCHAL_HAVE_FP_RSQRT 1 /* FP with RSQRT instructions */ +#define XCHAL_HAVE_DFP 0 /* double precision FP pkg */ +#define XCHAL_HAVE_DFP_DIV 0 /* DFP with DIV instructions */ +#define XCHAL_HAVE_DFP_RECIP 0 /* DFP with RECIP instructions*/ +#define XCHAL_HAVE_DFP_SQRT 0 /* DFP with SQRT instructions */ +#define XCHAL_HAVE_DFP_RSQRT 0 /* DFP with RSQRT instructions*/ +#define XCHAL_HAVE_DFP_ACCEL 0 /* double precision FP acceleration pkg */ + +#define XCHAL_HAVE_DFP_accel XCHAL_HAVE_DFP_ACCEL /* for backward compatibility */ + +#define XCHAL_HAVE_DFPU_SINGLE_ONLY 1 /* DFPU Coprocessor, single precision only */ +#define XCHAL_HAVE_DFPU_SINGLE_DOUBLE 0 /* DFPU Coprocessor, single and double precision */ +#define XCHAL_HAVE_VECTRA1 0 /* Vectra I pkg */ +#define XCHAL_HAVE_VECTRALX 0 /* Vectra LX pkg */ +#define XCHAL_HAVE_FUSIONG 0 /* FusionG */ +#define XCHAL_HAVE_FUSIONG3 0 /* FusionG3 */ +#define XCHAL_HAVE_FUSIONG6 0 /* FusionG6 */ +#define XCHAL_HAVE_FUSIONG_SP_VFPU 0 /* sp_vfpu option on FusionG */ +#define XCHAL_HAVE_FUSIONG_DP_VFPU 0 /* dp_vfpu option on FusionG */ +#define XCHAL_FUSIONG_SIMD32 0 /* simd32 for FusionG */ +#define XCHAL_HAVE_PDX 0 /* PDX */ +#define XCHAL_PDX_SIMD32 0 /* simd32 for PDX */ +#define XCHAL_HAVE_PDX4 0 /* PDX4 */ +#define XCHAL_HAVE_PDX8 0 /* PDX8 */ +#define XCHAL_HAVE_PDX16 0 /* PDX16 */ +#define XCHAL_HAVE_CONNXD2 0 /* ConnX D2 pkg */ +#define XCHAL_HAVE_CONNXD2_DUALLSFLIX 0 /* ConnX D2 Dual LoadStore Flix */ +#define XCHAL_HAVE_BBE16 0 /* ConnX BBE16 pkg */ +#define XCHAL_HAVE_BBE16_RSQRT 0 /* BBE16 vector recip sqrt */ +#define XCHAL_HAVE_BBE16_VECDIV 0 /* BBE16 vector divide */ +#define XCHAL_HAVE_BBE16_DESPREAD 0 /* BBE16 despread */ +#define XCHAL_HAVE_BBENEP 0 /* ConnX BBENEP pkgs */ +#define XCHAL_HAVE_BBENEP_SP_VFPU 0 /* sp_vfpu option on BBE-EP */ +#define XCHAL_HAVE_BSP3 0 /* ConnX BSP3 pkg */ +#define XCHAL_HAVE_BSP3_TRANSPOSE 0 /* BSP3 transpose32x32 */ +#define XCHAL_HAVE_SSP16 0 /* ConnX SSP16 pkg */ +#define XCHAL_HAVE_SSP16_VITERBI 0 /* SSP16 viterbi */ +#define XCHAL_HAVE_TURBO16 0 /* ConnX Turbo16 pkg */ +#define XCHAL_HAVE_BBP16 0 /* ConnX BBP16 pkg */ +#define XCHAL_HAVE_FLIX3 0 /* basic 3-way FLIX option */ +#define XCHAL_HAVE_GRIVPEP 0 /* General Release of IVPEP */ +#define XCHAL_HAVE_GRIVPEP_HISTOGRAM 0 /* Histogram option on GRIVPEP */ +#define XCHAL_HAVE_VISION 0 /* Vision P5/P6 */ +#define XCHAL_VISION_SIMD16 0 /* simd16 for Vision P5/P6 */ +#define XCHAL_VISION_TYPE 0 /* Vision P5, P6, or P3 */ +#define XCHAL_VISION_QUAD_MAC_TYPE 0 /* quad_mac option on Vision P6 */ +#define XCHAL_HAVE_VISION_HISTOGRAM 0 /* histogram option on Vision P5/P6 */ +#define XCHAL_HAVE_VISION_SP_VFPU 0 /* sp_vfpu option on Vision P5/P6 */ +#define XCHAL_HAVE_VISION_HP_VFPU 0 /* hp_vfpu option on Vision P6 */ +#define XCHAL_HAVE_VISIONC 0 /* Vision C */ + +/**************************************************************************** + * MISC + ****************************************************************************/ + +#define XCHAL_NUM_LOADSTORE_UNITS 1 /* load/store units */ +#define XCHAL_NUM_WRITEBUFFER_ENTRIES 4 /* size of write buffer */ +#define XCHAL_INST_FETCH_WIDTH 4 /* instr-fetch width in bytes */ +#define XCHAL_DATA_WIDTH 16 /* data width in bytes */ +#define XCHAL_DATA_PIPE_DELAY 1 /* d-side pipeline delay (1 = 5-stage, 2 = 7-stage) */ +#define XCHAL_CLOCK_GATING_GLOBAL 1 /* global clock gating */ +#define XCHAL_CLOCK_GATING_FUNCUNIT 1 /* funct. unit clock gating */ + /* In T1050, applies to selected core load + * and store instructions (see ISA) + */ + +#define XCHAL_UNALIGNED_LOAD_EXCEPTION 0 /* unaligned loads cause exc. */ +#define XCHAL_UNALIGNED_STORE_EXCEPTION 0 /* unaligned stores cause exc.*/ +#define XCHAL_UNALIGNED_LOAD_HW 1 /* unaligned loads work in hw */ +#define XCHAL_UNALIGNED_STORE_HW 1 /* unaligned stores work in hw*/ +#define XCHAL_SW_VERSION 1200012 /* sw version of this header */ +#define XCHAL_CORE_ID "LX7_ESP32_S3_MP" /* alphanum core name + * (CoreID) set in the Xtensa + * Processor Generator + */ + +#define XCHAL_BUILD_UNIQUE_ID 0x00090F1F /* 22-bit sw build ID */ + +/* These definitions describe the hardware targeted by this software. */ + +#define XCHAL_HW_CONFIGID0 0xC2F0FFFE /* ConfigID hi 32 bits*/ +#define XCHAL_HW_CONFIGID1 0x23090F1F /* ConfigID lo 32 bits*/ +#define XCHAL_HW_VERSION_NAME "LX7.0.12" /* full version name */ +#define XCHAL_HW_VERSION_MAJOR 2700 /* major ver# of targeted hw */ +#define XCHAL_HW_VERSION_MINOR 12 /* minor ver# of targeted hw */ +#define XCHAL_HW_VERSION 270012 /* major*100+minor */ +#define XCHAL_HW_REL_LX7 1 +#define XCHAL_HW_REL_LX7_0 1 +#define XCHAL_HW_REL_LX7_0_12 1 +#define XCHAL_HW_CONFIGID_RELIABLE 1 + +/* If software targets a range of hardware versions, these are the bounds: */ + +#define XCHAL_HW_MIN_VERSION_MAJOR 2700 /* major v of earliest tgt hw */ +#define XCHAL_HW_MIN_VERSION_MINOR 12 /* minor v of earliest tgt hw */ +#define XCHAL_HW_MIN_VERSION 270012 /* earliest targeted hw */ +#define XCHAL_HW_MAX_VERSION_MAJOR 2700 /* major v of latest tgt hw */ +#define XCHAL_HW_MAX_VERSION_MINOR 12 /* minor v of latest tgt hw */ +#define XCHAL_HW_MAX_VERSION 270012 /* latest targeted hw */ + +/**************************************************************************** + * CACHE + ****************************************************************************/ + +#define XCHAL_ICACHE_LINESIZE 4 /* I-cache line size in bytes */ +#define XCHAL_DCACHE_LINESIZE 16 /* D-cache line size in bytes */ +#define XCHAL_ICACHE_LINEWIDTH 2 /* log2(I line size in bytes) */ +#define XCHAL_DCACHE_LINEWIDTH 4 /* log2(D line size in bytes) */ + +#define XCHAL_ICACHE_SIZE 0 /* I-cache size in bytes or 0 */ +#define XCHAL_DCACHE_SIZE 0 /* D-cache size in bytes or 0 */ + +#define XCHAL_DCACHE_IS_WRITEBACK 0 /* writeback feature */ +#define XCHAL_DCACHE_IS_COHERENT 0 /* MP coherence feature */ + +#define XCHAL_HAVE_PREFETCH 0 /* PREFCTL register */ +#define XCHAL_HAVE_PREFETCH_L1 0 /* prefetch to L1 dcache */ +#define XCHAL_PREFETCH_CASTOUT_LINES 0 /* dcache pref. castout bufsz */ +#define XCHAL_PREFETCH_ENTRIES 0 /* cache prefetch entries */ +#define XCHAL_PREFETCH_BLOCK_ENTRIES 0 /* prefetch block streams */ +#define XCHAL_HAVE_CACHE_BLOCKOPS 0 /* block prefetch for caches */ +#define XCHAL_HAVE_ICACHE_TEST 0 /* Icache test instructions */ +#define XCHAL_HAVE_DCACHE_TEST 0 /* Dcache test instructions */ +#define XCHAL_HAVE_ICACHE_DYN_WAYS 0 /* Icache dynamic way support */ +#define XCHAL_HAVE_DCACHE_DYN_WAYS 0 /* Dcache dynamic way support */ + +/**************************************************************************** + * Parameters Useful for PRIVILEGED (Supervisory or Non-Virtualized) Code + ****************************************************************************/ + +#ifndef XTENSA_HAL_NON_PRIVILEGED_ONLY + +/**************************************************************************** + * CACHE + ****************************************************************************/ + +#define XCHAL_HAVE_PIF 1 /* any outbound bus present */ + +#define XCHAL_HAVE_AXI 0 /* AXI bus */ +#define XCHAL_HAVE_AXI_ECC 0 /* ECC on AXI bus */ +#define XCHAL_HAVE_ACELITE 0 /* ACELite bus */ + +#define XCHAL_HAVE_PIF_WR_RESP 0 /* pif write response */ +#define XCHAL_HAVE_PIF_REQ_ATTR 1 /* pif attribute */ + +/* If present, cache size in bytes == (ways * 2^(linewidth + setwidth)). */ + +/* Number of cache sets in log2(lines per way): */ + +#define XCHAL_ICACHE_SETWIDTH 0 +#define XCHAL_DCACHE_SETWIDTH 0 + +/* Cache set associativity (number of ways): */ + +#define XCHAL_ICACHE_WAYS 1 +#define XCHAL_DCACHE_WAYS 1 + +/* Cache features: */ + +#define XCHAL_ICACHE_LINE_LOCKABLE 0 +#define XCHAL_DCACHE_LINE_LOCKABLE 0 +#define XCHAL_ICACHE_ECC_PARITY 0 +#define XCHAL_DCACHE_ECC_PARITY 0 +#define XCHAL_ICACHE_ECC_WIDTH 1 +#define XCHAL_DCACHE_ECC_WIDTH 1 + +/* Cache access size in bytes (affects operation of SICW instruction): */ + +#define XCHAL_ICACHE_ACCESS_SIZE 1 +#define XCHAL_DCACHE_ACCESS_SIZE 1 + +#define XCHAL_DCACHE_BANKS 0 /* number of banks */ + +/* Number of encoded cache attr bits (see for decoded bits) */ + +#define XCHAL_CA_BITS 4 + +/**************************************************************************** + * INTERNAL I/D RAM/ROMs and XLMI + ****************************************************************************/ + +#define XCHAL_NUM_INSTROM 0 /* number of core instr. ROMs */ +#define XCHAL_NUM_INSTRAM 1 /* number of core instr. RAMs */ +#define XCHAL_NUM_DATAROM 0 /* number of core data ROMs */ +#define XCHAL_NUM_DATARAM 1 /* number of core data RAMs */ +#define XCHAL_NUM_URAM 0 /* number of core unified RAMs*/ +#define XCHAL_NUM_XLMI 0 /* number of core XLMI ports */ + +/* Instruction RAM 0: */ + +#define XCHAL_INSTRAM0_VADDR 0x40000000 /* virtual address */ +#define XCHAL_INSTRAM0_PADDR 0x40000000 /* physical address */ +#define XCHAL_INSTRAM0_SIZE 67108864 /* size in bytes */ +#define XCHAL_INSTRAM0_ECC_PARITY 0 /* ECC/parity type, 0=none */ +#define XCHAL_HAVE_INSTRAM0 1 +#define XCHAL_INSTRAM0_HAVE_IDMA 0 /* idma supported by this local memory */ + +/* Data RAM 0: */ + +#define XCHAL_DATARAM0_VADDR 0x3C000000 /* virtual address */ +#define XCHAL_DATARAM0_PADDR 0x3C000000 /* physical address */ +#define XCHAL_DATARAM0_SIZE 67108864 /* size in bytes */ +#define XCHAL_DATARAM0_ECC_PARITY 0 /* ECC/parity type, 0=none */ +#define XCHAL_DATARAM0_BANKS 1 /* number of banks */ +#define XCHAL_HAVE_DATARAM0 1 +#define XCHAL_DATARAM0_HAVE_IDMA 0 /* idma supported by this local memory */ + +#define XCHAL_HAVE_IDMA 0 +#define XCHAL_HAVE_IDMA_TRANSPOSE 0 + +#define XCHAL_HAVE_IMEM_LOADSTORE 1 /* can load/store to IROM/IRAM */ + +/**************************************************************************** + * INTERRUPTS and TIMERS + ****************************************************************************/ + +#define XCHAL_HAVE_INTERRUPTS 1 /* interrupt option */ +#define XCHAL_HAVE_HIGHPRI_INTERRUPTS 1 /* med/high-pri. interrupts */ +#define XCHAL_HAVE_NMI 1 /* non-maskable interrupt */ +#define XCHAL_HAVE_CCOUNT 1 /* CCOUNT reg. (timer option) */ +#define XCHAL_NUM_TIMERS 3 /* number of CCOMPAREn regs */ +#define XCHAL_NUM_INTERRUPTS 32 /* number of interrupts */ +#define XCHAL_NUM_INTERRUPTS_LOG2 5 /* ceil(log2(NUM_INTERRUPTS)) */ +#define XCHAL_NUM_EXTINTERRUPTS 26 /* num of external interrupts */ +#define XCHAL_NUM_INTLEVELS 6 /* number of interrupt levels + * (not including level zero) + */ + +#define XCHAL_EXCM_LEVEL 3 /* level masked by PS.EXCM */ + +/* (always 1 in XEA1; levels 2 .. EXCM_LEVEL are "medium priority") */ + +/* Masks of interrupts at each interrupt level: */ + +#define XCHAL_INTLEVEL1_MASK 0x000637FF +#define XCHAL_INTLEVEL2_MASK 0x00380000 +#define XCHAL_INTLEVEL3_MASK 0x28C08800 +#define XCHAL_INTLEVEL4_MASK 0x53000000 +#define XCHAL_INTLEVEL5_MASK 0x84010000 +#define XCHAL_INTLEVEL6_MASK 0x00000000 +#define XCHAL_INTLEVEL7_MASK 0x00004000 + +/* Masks of interrupts at each range 1..n of interrupt levels: */ + +#define XCHAL_INTLEVEL1_ANDBELOW_MASK 0x000637FF +#define XCHAL_INTLEVEL2_ANDBELOW_MASK 0x003E37FF +#define XCHAL_INTLEVEL3_ANDBELOW_MASK 0x28FEBFFF +#define XCHAL_INTLEVEL4_ANDBELOW_MASK 0x7BFEBFFF +#define XCHAL_INTLEVEL5_ANDBELOW_MASK 0xFFFFBFFF +#define XCHAL_INTLEVEL6_ANDBELOW_MASK 0xFFFFBFFF +#define XCHAL_INTLEVEL7_ANDBELOW_MASK 0xFFFFFFFF + +/* Level of each interrupt: */ + +#define XCHAL_INT0_LEVEL 1 +#define XCHAL_INT1_LEVEL 1 +#define XCHAL_INT2_LEVEL 1 +#define XCHAL_INT3_LEVEL 1 +#define XCHAL_INT4_LEVEL 1 +#define XCHAL_INT5_LEVEL 1 +#define XCHAL_INT6_LEVEL 1 +#define XCHAL_INT7_LEVEL 1 +#define XCHAL_INT8_LEVEL 1 +#define XCHAL_INT9_LEVEL 1 +#define XCHAL_INT10_LEVEL 1 +#define XCHAL_INT11_LEVEL 3 +#define XCHAL_INT12_LEVEL 1 +#define XCHAL_INT13_LEVEL 1 +#define XCHAL_INT14_LEVEL 7 +#define XCHAL_INT15_LEVEL 3 +#define XCHAL_INT16_LEVEL 5 +#define XCHAL_INT17_LEVEL 1 +#define XCHAL_INT18_LEVEL 1 +#define XCHAL_INT19_LEVEL 2 +#define XCHAL_INT20_LEVEL 2 +#define XCHAL_INT21_LEVEL 2 +#define XCHAL_INT22_LEVEL 3 +#define XCHAL_INT23_LEVEL 3 +#define XCHAL_INT24_LEVEL 4 +#define XCHAL_INT25_LEVEL 4 +#define XCHAL_INT26_LEVEL 5 +#define XCHAL_INT27_LEVEL 3 +#define XCHAL_INT28_LEVEL 4 +#define XCHAL_INT29_LEVEL 3 +#define XCHAL_INT30_LEVEL 4 +#define XCHAL_INT31_LEVEL 5 +#define XCHAL_DEBUGLEVEL 6 /* debug interrupt level */ +#define XCHAL_HAVE_DEBUG_EXTERN_INT 1 /* OCD external db interrupt */ +#define XCHAL_NMILEVEL 7 /* NMI "level" (for use with + * EXCSAVE/EPS/EPC_n, RFI n) + */ + +/* Type of each interrupt: */ + +#define XCHAL_INT0_TYPE XTHAL_INTTYPE_EXTERN_LEVEL +#define XCHAL_INT1_TYPE XTHAL_INTTYPE_EXTERN_LEVEL +#define XCHAL_INT2_TYPE XTHAL_INTTYPE_EXTERN_LEVEL +#define XCHAL_INT3_TYPE XTHAL_INTTYPE_EXTERN_LEVEL +#define XCHAL_INT4_TYPE XTHAL_INTTYPE_EXTERN_LEVEL +#define XCHAL_INT5_TYPE XTHAL_INTTYPE_EXTERN_LEVEL +#define XCHAL_INT6_TYPE XTHAL_INTTYPE_TIMER +#define XCHAL_INT7_TYPE XTHAL_INTTYPE_SOFTWARE +#define XCHAL_INT8_TYPE XTHAL_INTTYPE_EXTERN_LEVEL +#define XCHAL_INT9_TYPE XTHAL_INTTYPE_EXTERN_LEVEL +#define XCHAL_INT10_TYPE XTHAL_INTTYPE_EXTERN_EDGE +#define XCHAL_INT11_TYPE XTHAL_INTTYPE_PROFILING +#define XCHAL_INT12_TYPE XTHAL_INTTYPE_EXTERN_LEVEL +#define XCHAL_INT13_TYPE XTHAL_INTTYPE_EXTERN_LEVEL +#define XCHAL_INT14_TYPE XTHAL_INTTYPE_NMI +#define XCHAL_INT15_TYPE XTHAL_INTTYPE_TIMER +#define XCHAL_INT16_TYPE XTHAL_INTTYPE_TIMER +#define XCHAL_INT17_TYPE XTHAL_INTTYPE_EXTERN_LEVEL +#define XCHAL_INT18_TYPE XTHAL_INTTYPE_EXTERN_LEVEL +#define XCHAL_INT19_TYPE XTHAL_INTTYPE_EXTERN_LEVEL +#define XCHAL_INT20_TYPE XTHAL_INTTYPE_EXTERN_LEVEL +#define XCHAL_INT21_TYPE XTHAL_INTTYPE_EXTERN_LEVEL +#define XCHAL_INT22_TYPE XTHAL_INTTYPE_EXTERN_EDGE +#define XCHAL_INT23_TYPE XTHAL_INTTYPE_EXTERN_LEVEL +#define XCHAL_INT24_TYPE XTHAL_INTTYPE_EXTERN_LEVEL +#define XCHAL_INT25_TYPE XTHAL_INTTYPE_EXTERN_LEVEL +#define XCHAL_INT26_TYPE XTHAL_INTTYPE_EXTERN_LEVEL +#define XCHAL_INT27_TYPE XTHAL_INTTYPE_EXTERN_LEVEL +#define XCHAL_INT28_TYPE XTHAL_INTTYPE_EXTERN_EDGE +#define XCHAL_INT29_TYPE XTHAL_INTTYPE_SOFTWARE +#define XCHAL_INT30_TYPE XTHAL_INTTYPE_EXTERN_EDGE +#define XCHAL_INT31_TYPE XTHAL_INTTYPE_EXTERN_LEVEL + +/* Masks of interrupts for each type of interrupt: */ + +#define XCHAL_INTTYPE_MASK_UNCONFIGURED 0x00000000 +#define XCHAL_INTTYPE_MASK_SOFTWARE 0x20000080 +#define XCHAL_INTTYPE_MASK_EXTERN_EDGE 0x50400400 +#define XCHAL_INTTYPE_MASK_EXTERN_LEVEL 0x8FBE333F +#define XCHAL_INTTYPE_MASK_TIMER 0x00018040 +#define XCHAL_INTTYPE_MASK_NMI 0x00004000 +#define XCHAL_INTTYPE_MASK_WRITE_ERROR 0x00000000 +#define XCHAL_INTTYPE_MASK_PROFILING 0x00000800 +#define XCHAL_INTTYPE_MASK_IDMA_DONE 0x00000000 +#define XCHAL_INTTYPE_MASK_IDMA_ERR 0x00000000 +#define XCHAL_INTTYPE_MASK_GS_ERR 0x00000000 + +/* Interrupt numbers assigned to specific interrupt sources: */ + +#define XTHAL_TIMER_UNCONFIGURED -1 +#define XCHAL_TIMER0_INTERRUPT 6 /* CCOMPARE0 */ +#define XCHAL_TIMER1_INTERRUPT 15 /* CCOMPARE1 */ +#define XCHAL_TIMER2_INTERRUPT 16 /* CCOMPARE2 */ +#define XCHAL_TIMER3_INTERRUPT XTHAL_TIMER_UNCONFIGURED +#define XCHAL_NMI_INTERRUPT 14 /* non-maskable interrupt */ +#define XCHAL_PROFILING_INTERRUPT 11 + +/* Interrupt numbers for levels at which only one interrupt is configured: */ + +#define XCHAL_INTLEVEL7_NUM 14 + +/* (There are many interrupts each at level(s) 1, 2, 3, 4, 5.) */ + +/* External interrupt mapping. + * These macros describe how Xtensa processor interrupt numbers + * (as numbered internally, eg. in INTERRUPT and INTENABLE registers) + * map to external BInterrupt pins, for those interrupts + * configured as external (level-triggered, edge-triggered, or NMI). + * See the Xtensa processor databook for more details. + */ + +/* Core interrupt numbers mapped to each EXTERNAL BInterrupt pin number: */ + +#define XCHAL_EXTINT0_NUM 0 /* (intlevel 1) */ +#define XCHAL_EXTINT1_NUM 1 /* (intlevel 1) */ +#define XCHAL_EXTINT2_NUM 2 /* (intlevel 1) */ +#define XCHAL_EXTINT3_NUM 3 /* (intlevel 1) */ +#define XCHAL_EXTINT4_NUM 4 /* (intlevel 1) */ +#define XCHAL_EXTINT5_NUM 5 /* (intlevel 1) */ +#define XCHAL_EXTINT6_NUM 8 /* (intlevel 1) */ +#define XCHAL_EXTINT7_NUM 9 /* (intlevel 1) */ +#define XCHAL_EXTINT8_NUM 10 /* (intlevel 1) */ +#define XCHAL_EXTINT9_NUM 12 /* (intlevel 1) */ +#define XCHAL_EXTINT10_NUM 13 /* (intlevel 1) */ +#define XCHAL_EXTINT11_NUM 14 /* (intlevel 7) */ +#define XCHAL_EXTINT12_NUM 17 /* (intlevel 1) */ +#define XCHAL_EXTINT13_NUM 18 /* (intlevel 1) */ +#define XCHAL_EXTINT14_NUM 19 /* (intlevel 2) */ +#define XCHAL_EXTINT15_NUM 20 /* (intlevel 2) */ +#define XCHAL_EXTINT16_NUM 21 /* (intlevel 2) */ +#define XCHAL_EXTINT17_NUM 22 /* (intlevel 3) */ +#define XCHAL_EXTINT18_NUM 23 /* (intlevel 3) */ +#define XCHAL_EXTINT19_NUM 24 /* (intlevel 4) */ +#define XCHAL_EXTINT20_NUM 25 /* (intlevel 4) */ +#define XCHAL_EXTINT21_NUM 26 /* (intlevel 5) */ +#define XCHAL_EXTINT22_NUM 27 /* (intlevel 3) */ +#define XCHAL_EXTINT23_NUM 28 /* (intlevel 4) */ +#define XCHAL_EXTINT24_NUM 30 /* (intlevel 4) */ +#define XCHAL_EXTINT25_NUM 31 /* (intlevel 5) */ + +/* EXTERNAL BInterrupt pin numbers mapped to each core interrupt number: */ + +#define XCHAL_INT0_EXTNUM 0 /* (intlevel 1) */ +#define XCHAL_INT1_EXTNUM 1 /* (intlevel 1) */ +#define XCHAL_INT2_EXTNUM 2 /* (intlevel 1) */ +#define XCHAL_INT3_EXTNUM 3 /* (intlevel 1) */ +#define XCHAL_INT4_EXTNUM 4 /* (intlevel 1) */ +#define XCHAL_INT5_EXTNUM 5 /* (intlevel 1) */ +#define XCHAL_INT8_EXTNUM 6 /* (intlevel 1) */ +#define XCHAL_INT9_EXTNUM 7 /* (intlevel 1) */ +#define XCHAL_INT10_EXTNUM 8 /* (intlevel 1) */ +#define XCHAL_INT12_EXTNUM 9 /* (intlevel 1) */ +#define XCHAL_INT13_EXTNUM 10 /* (intlevel 1) */ +#define XCHAL_INT14_EXTNUM 11 /* (intlevel 7) */ +#define XCHAL_INT17_EXTNUM 12 /* (intlevel 1) */ +#define XCHAL_INT18_EXTNUM 13 /* (intlevel 1) */ +#define XCHAL_INT19_EXTNUM 14 /* (intlevel 2) */ +#define XCHAL_INT20_EXTNUM 15 /* (intlevel 2) */ +#define XCHAL_INT21_EXTNUM 16 /* (intlevel 2) */ +#define XCHAL_INT22_EXTNUM 17 /* (intlevel 3) */ +#define XCHAL_INT23_EXTNUM 18 /* (intlevel 3) */ +#define XCHAL_INT24_EXTNUM 19 /* (intlevel 4) */ +#define XCHAL_INT25_EXTNUM 20 /* (intlevel 4) */ +#define XCHAL_INT26_EXTNUM 21 /* (intlevel 5) */ +#define XCHAL_INT27_EXTNUM 22 /* (intlevel 3) */ +#define XCHAL_INT28_EXTNUM 23 /* (intlevel 4) */ +#define XCHAL_INT30_EXTNUM 24 /* (intlevel 4) */ +#define XCHAL_INT31_EXTNUM 25 /* (intlevel 5) */ + +/**************************************************************************** + * EXCEPTIONS and VECTORS + ****************************************************************************/ + +#define XCHAL_XEA_VERSION 2 /* Xtensa Exception Architecture + * number: 1 == XEA1 (old) + * 2 == XEA2 (new) + * 0 == XEAX (extern) or TX + */ + +#define XCHAL_HAVE_XEA1 0 /* Exception Architecture 1 */ +#define XCHAL_HAVE_XEA2 1 /* Exception Architecture 2 */ +#define XCHAL_HAVE_XEAX 0 /* External Exception Arch. */ +#define XCHAL_HAVE_EXCEPTIONS 1 /* exception option */ +#define XCHAL_HAVE_HALT 0 /* halt architecture option */ +#define XCHAL_HAVE_BOOTLOADER 0 /* boot loader (for TX) */ +#define XCHAL_HAVE_MEM_ECC_PARITY 0 /* local memory ECC/parity */ +#define XCHAL_HAVE_VECTOR_SELECT 1 /* relocatable vectors */ +#define XCHAL_HAVE_VECBASE 1 /* relocatable vectors */ +#define XCHAL_VECBASE_RESET_VADDR 0x40000000 /* VECBASE reset value */ +#define XCHAL_VECBASE_RESET_PADDR 0x40000000 +#define XCHAL_RESET_VECBASE_OVERLAP 0 + +#define XCHAL_RESET_VECTOR0_VADDR 0x50000000 +#define XCHAL_RESET_VECTOR0_PADDR 0x50000000 +#define XCHAL_RESET_VECTOR1_VADDR 0x40000400 +#define XCHAL_RESET_VECTOR1_PADDR 0x40000400 +#define XCHAL_RESET_VECTOR_VADDR 0x40000400 +#define XCHAL_RESET_VECTOR_PADDR 0x40000400 +#define XCHAL_USER_VECOFS 0x00000340 +#define XCHAL_USER_VECTOR_VADDR 0x40000340 +#define XCHAL_USER_VECTOR_PADDR 0x40000340 +#define XCHAL_KERNEL_VECOFS 0x00000300 +#define XCHAL_KERNEL_VECTOR_VADDR 0x40000300 +#define XCHAL_KERNEL_VECTOR_PADDR 0x40000300 +#define XCHAL_DOUBLEEXC_VECOFS 0x000003C0 +#define XCHAL_DOUBLEEXC_VECTOR_VADDR 0x400003C0 +#define XCHAL_DOUBLEEXC_VECTOR_PADDR 0x400003C0 +#define XCHAL_WINDOW_OF4_VECOFS 0x00000000 +#define XCHAL_WINDOW_UF4_VECOFS 0x00000040 +#define XCHAL_WINDOW_OF8_VECOFS 0x00000080 +#define XCHAL_WINDOW_UF8_VECOFS 0x000000C0 +#define XCHAL_WINDOW_OF12_VECOFS 0x00000100 +#define XCHAL_WINDOW_UF12_VECOFS 0x00000140 +#define XCHAL_WINDOW_VECTORS_VADDR 0x40000000 +#define XCHAL_WINDOW_VECTORS_PADDR 0x40000000 +#define XCHAL_INTLEVEL2_VECOFS 0x00000180 +#define XCHAL_INTLEVEL2_VECTOR_VADDR 0x40000180 +#define XCHAL_INTLEVEL2_VECTOR_PADDR 0x40000180 +#define XCHAL_INTLEVEL3_VECOFS 0x000001C0 +#define XCHAL_INTLEVEL3_VECTOR_VADDR 0x400001C0 +#define XCHAL_INTLEVEL3_VECTOR_PADDR 0x400001C0 +#define XCHAL_INTLEVEL4_VECOFS 0x00000200 +#define XCHAL_INTLEVEL4_VECTOR_VADDR 0x40000200 +#define XCHAL_INTLEVEL4_VECTOR_PADDR 0x40000200 +#define XCHAL_INTLEVEL5_VECOFS 0x00000240 +#define XCHAL_INTLEVEL5_VECTOR_VADDR 0x40000240 +#define XCHAL_INTLEVEL5_VECTOR_PADDR 0x40000240 +#define XCHAL_INTLEVEL6_VECOFS 0x00000280 +#define XCHAL_INTLEVEL6_VECTOR_VADDR 0x40000280 +#define XCHAL_INTLEVEL6_VECTOR_PADDR 0x40000280 +#define XCHAL_DEBUG_VECOFS XCHAL_INTLEVEL6_VECOFS +#define XCHAL_DEBUG_VECTOR_VADDR XCHAL_INTLEVEL6_VECTOR_VADDR +#define XCHAL_DEBUG_VECTOR_PADDR XCHAL_INTLEVEL6_VECTOR_PADDR +#define XCHAL_NMI_VECOFS 0x000002C0 +#define XCHAL_NMI_VECTOR_VADDR 0x400002C0 +#define XCHAL_NMI_VECTOR_PADDR 0x400002C0 +#define XCHAL_INTLEVEL7_VECOFS XCHAL_NMI_VECOFS +#define XCHAL_INTLEVEL7_VECTOR_VADDR XCHAL_NMI_VECTOR_VADDR +#define XCHAL_INTLEVEL7_VECTOR_PADDR XCHAL_NMI_VECTOR_PADDR + +/**************************************************************************** + * DEBUG MODULE + ****************************************************************************/ + +/* Misc */ + +#define XCHAL_HAVE_DEBUG_ERI 1 /* ERI to debug module */ +#define XCHAL_HAVE_DEBUG_APB 0 /* APB to debug module */ +#define XCHAL_HAVE_DEBUG_JTAG 1 /* JTAG to debug module */ + +/* On-Chip Debug (OCD) */ + +#define XCHAL_HAVE_OCD 1 /* OnChipDebug option */ +#define XCHAL_NUM_IBREAK 2 /* number of IBREAKn regs */ +#define XCHAL_NUM_DBREAK 2 /* number of DBREAKn regs */ +#define XCHAL_HAVE_OCD_DIR_ARRAY 0 /* faster OCD option (to LX4) */ +#define XCHAL_HAVE_OCD_LS32DDR 1 /* L32DDR/S32DDR (faster OCD) */ + +/* TRAX (in core) */ +#define XCHAL_HAVE_TRAX 1 /* TRAX in debug module */ +#define XCHAL_TRAX_MEM_SIZE 16384 /* TRAX memory size in bytes */ +#define XCHAL_TRAX_MEM_SHAREABLE 1 /* start/end regs; ready sig. */ +#define XCHAL_TRAX_ATB_WIDTH 0 /* ATB width (bits), 0=no ATB */ +#define XCHAL_TRAX_TIME_WIDTH 0 /* timestamp bitwidth, 0=none */ + +/* Perf counters */ + +#define XCHAL_NUM_PERF_COUNTERS 2 /* performance counters */ + +/**************************************************************************** + * MMU + ****************************************************************************/ + +/* See core-matmap.h header file for more details. */ + +#define XCHAL_HAVE_TLBS 1 /* inverse of HAVE_CACHEATTR */ +#define XCHAL_HAVE_SPANNING_WAY 1 /* one way maps I+D 4GB vaddr */ +#define XCHAL_SPANNING_WAY 0 /* TLB spanning way number */ +#define XCHAL_HAVE_IDENTITY_MAP 1 /* vaddr == paddr always */ +#define XCHAL_HAVE_CACHEATTR 0 /* CACHEATTR register present */ +#define XCHAL_HAVE_MIMIC_CACHEATTR 1 /* region protection */ +#define XCHAL_HAVE_XLT_CACHEATTR 0 /* region prot. w/translation */ +#define XCHAL_HAVE_PTP_MMU 0 /* full MMU (with page table + * [autorefill] and protection) + * usable for an MMU-based OS + */ + +/* If none of the above last 5 are set, it's a custom TLB configuration. */ + +#define XCHAL_MMU_ASID_BITS 0 /* number of bits in ASIDs */ +#define XCHAL_MMU_RINGS 1 /* number of rings (1..4) */ +#define XCHAL_MMU_RING_BITS 0 /* num of bits in RING field */ + +/**************************************************************************** + * MPU + ****************************************************************************/ + +#define XCHAL_HAVE_MPU 0 +#define XCHAL_MPU_ENTRIES 0 + +#define XCHAL_MPU_ALIGN_REQ 1 /* MPU requires alignment of entries to background map */ +#define XCHAL_MPU_BACKGROUND_ENTRIES 0 /* number of entries in bg map*/ +#define XCHAL_MPU_BG_CACHEADRDIS 0 /* default CACHEADRDIS for bg */ + +#define XCHAL_MPU_ALIGN_BITS 0 +#define XCHAL_MPU_ALIGN 0 + +#endif /* !XTENSA_HAL_NON_PRIVILEGED_ONLY */ + +#endif /* __ARCH_XTENSA_INCLUDE_ESP32S3_CORE_ISA_H */ diff --git a/arch/xtensa/include/esp32s3/irq.h b/arch/xtensa/include/esp32s3/irq.h new file mode 100644 index 0000000000..864010f63b --- /dev/null +++ b/arch/xtensa/include/esp32s3/irq.h @@ -0,0 +1,463 @@ +/**************************************************************************** + * arch/xtensa/include/esp32s3/irq.h + * + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. The + * ASF licenses this file to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance with the + * License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT + * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the + * License for the specific language governing permissions and limitations + * under the License. + * + ****************************************************************************/ + +/* This file should never be included directly but, rather, only indirectly + * through nuttx/irq.h + */ + +#ifndef __ARCH_XTENSA_INCLUDE_ESP32S3_IRQ_H +#define __ARCH_XTENSA_INCLUDE_ESP32S3_IRQ_H + +/**************************************************************************** + * Pre-processor Definitions + ****************************************************************************/ + +#define ESP32S3_INT_PRIO_DEF 1 + +/* Interrupt Matrix + * + * The Interrupt Matrix embedded in the ESP32-S3 independently allocates + * peripheral interrupt sources to the two CPUs’ peripheral interrupts, to + * timely inform CPU0 or CPU1 to process the interrupts once the interrupt + * signals are generated. + * Peripheral interrupt sources must be routed to CPU0/CPU1 peripheral + * interrupts via this interrupt matrix due to the following considerations: + * - ESP32-S3 has 99 peripheral interrupt sources. To map them to 32 CPU0 + * interrupts or 32 CPU1 interrupts, this matrix is needed. + * - Through this matrix, one peripheral interrupt source can be mapped to + * multiple CPU0 interrupts or CPU1 interrupts according to application + * requirements. + * + * Features: + * - Accept 99 peripheral interrupt sources as input. + * - Generate 26 peripheral interrupts to CPU0 and 26 peripheral interrupts + * to CPU1 as output. Note that the remaining 6 CPU0 interrupts and 6 CPU1 + * interrupts are internal interrupts. + * - Support disabling CPU non-maskable interrupt (NMI) sources. + * - Support querying current interrupt status of peripheral interrupt + * sources. + */ + +#define ESP32S3_PERIPH_MAC 0 +#define ESP32S3_PERIPH_MAC_NMI 1 +#define ESP32S3_PERIPH_PWR 2 +#define ESP32S3_PERIPH_BB 3 +#define ESP32S3_PERIPH_BT_MAC 4 +#define ESP32S3_PERIPH_BT_BB 5 +#define ESP32S3_PERIPH_BT_BB_NMI 6 +#define ESP32S3_PERIPH_RWBT 7 +#define ESP32S3_PERIPH_RWBLE 8 +#define ESP32S3_PERIPH_RWBT_NMI 9 + +/* RESERVED interrupts: 12, 13, 15, 18, 19 */ + +#define ESP32S3_PERIPH_RWBLE_NMI 10 +#define ESP32S3_PERIPH_I2C_MST 11 +#define ESP32S3_PERIPH_UHCI0 14 +#define ESP32S3_PERIPH_GPIO_INT_CPU 16 +#define ESP32S3_PERIPH_GPIO_INT_CPU_NMI 17 + +/* RESERVED interrupts: 23 */ + +#define ESP32S3_PERIPH_SPI1 20 +#define ESP32S3_PERIPH_SPI2 21 +#define ESP32S3_PERIPH_SPI3 22 +#define ESP32S3_PERIPH_LCD_CAM 24 +#define ESP32S3_PERIPH_I2S0 25 +#define ESP32S3_PERIPH_I2S1 26 +#define ESP32S3_PERIPH_UART0 27 +#define ESP32S3_PERIPH_UART1 28 +#define ESP32S3_PERIPH_UART2 29 + +/* RESERVED interrupts: 33, 34 */ + +#define ESP32S3_PERIPH_SDIO_HOST 30 +#define ESP32S3_PERIPH_PWM0 31 +#define ESP32S3_PERIPH_PWM1 32 +#define ESP32S3_PERIPH_LEDC 35 +#define ESP32S3_PERIPH_EFUSE 36 +#define ESP32S3_PERIPH_CAN 37 +#define ESP32S3_PERIPH_USB 38 +#define ESP32S3_PERIPH_RTC_CORE 39 + +/* RESERVED interrupts: 44, 45, 46, 47, 48, 49 */ + +#define ESP32S3_PERIPH_RMT 40 +#define ESP32S3_PERIPH_PCNT 41 +#define ESP32S3_PERIPH_I2C_EXT0 42 +#define ESP32S3_PERIPH_I2C_EXT1 43 + +#define ESP32S3_PERIPH_TG_T0_LEVEL 50 +#define ESP32S3_PERIPH_TG_T1_LEVEL 51 +#define ESP32S3_PERIPH_TG_WDT_LEVEL 52 +#define ESP32S3_PERIPH_TG1_T0_LEVEL 53 +#define ESP32S3_PERIPH_TG1_T1_LEVEL 54 +#define ESP32S3_PERIPH_TG1_WDT_LEVEL 55 +#define ESP32S3_PERIPH_CACHE_IA 56 +#define ESP32S3_PERIPH_SYSTIMER_TARGET0 57 +#define ESP32S3_PERIPH_SYSTIMER_TARGET1 58 +#define ESP32S3_PERIPH_SYSTIMER_TARGET2 59 + +#define ESP32S3_PERIPH_SPI_MEM_REJECT 60 +#define ESP32S3_PERIPH_DCACHE_PRELOAD 61 +#define ESP32S3_PERIPH_ICACHE_PRELOAD 62 +#define ESP32S3_PERIPH_DCACHE_SYNC 63 +#define ESP32S3_PERIPH_ICACHE_SYNC 64 +#define ESP32S3_PERIPH_APB_ADC 65 +#define ESP32S3_PERIPH_DMA_IN_CH0 66 +#define ESP32S3_PERIPH_DMA_IN_CH1 67 +#define ESP32S3_PERIPH_DMA_IN_CH2 68 +#define ESP32S3_PERIPH_DMA_IN_CH3 69 + +#define ESP32S3_PERIPH_DMA_IN_CH4 70 +#define ESP32S3_PERIPH_DMA_OUT_CH0 71 +#define ESP32S3_PERIPH_DMA_OUT_CH1 72 +#define ESP32S3_PERIPH_DMA_OUT_CH2 73 +#define ESP32S3_PERIPH_DMA_OUT_CH3 74 +#define ESP32S3_PERIPH_DMA_OUT_CH4 75 +#define ESP32S3_PERIPH_RSA 76 +#define ESP32S3_PERIPH_AES 77 +#define ESP32S3_PERIPH_SHA 78 +#define ESP32S3_PERIPH_INT_FROM_CPU0 79 + +#define ESP32S3_PERIPH_INT_FROM_CPU1 80 +#define ESP32S3_PERIPH_INT_FROM_CPU2 81 +#define ESP32S3_PERIPH_INT_FROM_CPU3 82 +#define ESP32S3_PERIPH_ASSIST_DEBUG 83 +#define ESP32S3_PERIPH_DMA_APB_PMS_MONITOR_VIOLATE 84 +#define ESP32S3_PERIPH_CORE_0_IRAM0_PMS_MONITOR_VIOLATE 85 +#define ESP32S3_PERIPH_CORE_0_DRAM0_PMS_MONITOR_VIOLATE 86 +#define ESP32S3_PERIPH_CORE_0_PIF_PMS_MONITOR_VIOLATE 87 +#define ESP32S3_PERIPH_CORE_0_PIF_PMS_MONITOR_VIOLATE_SIZE 88 +#define ESP32S3_PERIPH_CORE_1_IRAM0_PMS_MONITOR_VIOLATE 89 + +#define ESP32S3_PERIPH_CORE_1_DRAM0_PMS_MONITOR_VIOLATE 90 +#define ESP32S3_PERIPH_CORE_1_PIF_PMS_MONITOR_VIOLATE 91 +#define ESP32S3_PERIPH_CORE_1_PIF_PMS_MONITOR_VIOLATE_SIZE 92 +#define ESP32S3_PERIPH_BACKUP_PMS_VIOLATE 93 +#define ESP32S3_PERIPH_CACHE_CORE0_ACS 94 +#define ESP32S3_PERIPH_CACHE_CORE1_ACS 95 +#define ESP32S3_PERIPH_USB_DEVICE 96 +#define ESP32S3_PERIPH_PERIPH_BACKUP 97 +#define ESP32S3_PERIPH_DMA_EXTMEM_REJECT 98 + +/* Total number of peripherals */ + +#define ESP32S3_NPERIPHERALS 99 + +/* Exceptions + * + * IRAM Offset Description + * 0x0000 Windows + * 0x0180 Level 2 interrupt + * 0x01c0 Level 3 interrupt + * 0x0200 Level 4 interrupt + * 0x0240 Level 5 interrupt + * 0x0280 Debug exception + * 0x02c0 NMI exception + * 0x0300 Kernel exception + * 0x0340 User exception + * 0x03c0 Double exception + */ + +/* IRQ numbers for internal interrupts that are dispatched like peripheral + * interrupts. + */ + +#define XTENSA_IRQ_TIMER0 0 /* INTERRUPT, bit 6 */ +#define XTENSA_IRQ_TIMER1 1 /* INTERRUPT, bit 15 */ +#define XTENSA_IRQ_TIMER2 2 /* INTERRUPT, bit 16 */ +#define XTENSA_IRQ_SYSCALL 3 /* User interrupt w/EXCCAUSE=syscall */ + +#define XTENSA_NIRQ_INTERNAL 4 /* Number of dispatch internal interrupts */ +#define XTENSA_IRQ_FIRSTPERIPH 4 /* First peripheral IRQ number */ + +/* IRQ numbers for peripheral interrupts coming through the Interrupt + * Matrix. + */ + +#define ESP32S3_IRQ2PERIPH(irq) ((irq) - XTENSA_IRQ_FIRSTPERIPH) +#define ESP32S3_PERIPH2IRQ(id) ((id) + XTENSA_IRQ_FIRSTPERIPH) + +#define ESP32S3_IRQ_MAC (XTENSA_IRQ_FIRSTPERIPH + ESP32S3_PERIPH_MAC) +#define ESP32S3_IRQ_MAC_NMI (XTENSA_IRQ_FIRSTPERIPH + ESP32S3_PERIPH_MAC_NMI) +#define ESP32S3_IRQ_PWR (XTENSA_IRQ_FIRSTPERIPH + ESP32S3_PERIPH_PWR) +#define ESP32S3_IRQ_BB (XTENSA_IRQ_FIRSTPERIPH + ESP32S3_PERIPH_BB) +#define ESP32S3_IRQ_BT_MAC (XTENSA_IRQ_FIRSTPERIPH + ESP32S3_PERIPH_BT_MAC) +#define ESP32S3_IRQ_BT_BB (XTENSA_IRQ_FIRSTPERIPH + ESP32S3_PERIPH_BB) +#define ESP32S3_IRQ_BT_BB_NMI (XTENSA_IRQ_FIRSTPERIPH + ESP32S3_PERIPH_BB_NMI) +#define ESP32S3_IRQ_RWBT (XTENSA_IRQ_FIRSTPERIPH + ESP32S3_PERIPH_RWBT) +#define ESP32S3_IRQ_RWBLE (XTENSA_IRQ_FIRSTPERIPH + ESP32S3_PERIPH_RWBLE) +#define ESP32S3_IRQ_RWBT_NMI (XTENSA_IRQ_FIRSTPERIPH + ESP32S3_PERIPH_RWBT_NMI) + +#define ESP32S3_IRQ_RWBLE_NMI (XTENSA_IRQ_FIRSTPERIPH + ESP32S3_PERIPH_RWBLE_NMI) +#define ESP32S3_IRQ_I2C_MST (XTENSA_IRQ_FIRSTPERIPH + ESP32S3_PERIPH_I2C_MST) +#define ESP32S3_IRQ_UHCI0 (XTENSA_IRQ_FIRSTPERIPH + ESP32S3_PERIPH_UHCI0) +#define ESP32S3_IRQ_GPIO_INT_CPU (XTENSA_IRQ_FIRSTPERIPH + ESP32S3_PERIPH_GPIO_INT_CPU) +#define ESP32S3_IRQ_GPIO_INT_CPU_NMI (XTENSA_IRQ_FIRSTPERIPH + ESP32S3_PERIPH_GPIO_INT_CPU_NMI) + +#define ESP32S3_IRQ_SPI1 (XTENSA_IRQ_FIRSTPERIPH + ESP32S3_PERIPH_SPI1) +#define ESP32S3_IRQ_SPI2 (XTENSA_IRQ_FIRSTPERIPH + ESP32S3_PERIPH_SPI2) +#define ESP32S3_IRQ_SPI3 (XTENSA_IRQ_FIRSTPERIPH + ESP32S3_PERIPH_SPI3) +#define ESP32S3_IRQ_LCD_CAM (XTENSA_IRQ_FIRSTPERIPH + ESP32S3_PERIPH_LCD_CAM) +#define ESP32S3_IRQ_I2S0 (XTENSA_IRQ_FIRSTPERIPH + ESP32S3_PERIPH_I2S0) +#define ESP32S3_IRQ_I2S1 (XTENSA_IRQ_FIRSTPERIPH + ESP32S3_PERIPH_I2S1) +#define ESP32S3_IRQ_UART0 (XTENSA_IRQ_FIRSTPERIPH + ESP32S3_PERIPH_UART0) +#define ESP32S3_IRQ_UART1 (XTENSA_IRQ_FIRSTPERIPH + ESP32S3_PERIPH_UART1) +#define ESP32S3_IRQ_UART2 (XTENSA_IRQ_FIRSTPERIPH + ESP32S3_PERIPH_UART2) + +#define ESP32S3_IRQ_SDIO_HOST (XTENSA_IRQ_FIRSTPERIPH + ESP32S3_PERIPH_SDIO_HOST) +#define ESP32S3_IRQ_PWM0 (XTENSA_IRQ_FIRSTPERIPH + ESP32S3_PERIPH_PWM0) + +#define ESP32S3_IRQ_SREG0 ESP32S3_IRQ_MAC +#define ESP32S3_NIRQS_SREG0 32 + +#define ESP32S3_IRQ_PWM1 (XTENSA_IRQ_FIRSTPERIPH + ESP32S3_PERIPH_PWM1) +#define ESP32S3_IRQ_LEDC (XTENSA_IRQ_FIRSTPERIPH + ESP32S3_PERIPH_LEDC) +#define ESP32S3_IRQ_EFUSE (XTENSA_IRQ_FIRSTPERIPH + ESP32S3_PERIPH_EFUSE) +#define ESP32S3_IRQ_CAN (XTENSA_IRQ_FIRSTPERIPH + ESP32S3_PERIPH_CAN) +#define ESP32S3_IRQ_USB (XTENSA_IRQ_FIRSTPERIPH + ESP32S3_PERIPH_USB) +#define ESP32S3_IRQ_RTC_CORE (XTENSA_IRQ_FIRSTPERIPH + ESP32S3_PERIPH_RTC_CORE) + +#define ESP32S3_IRQ_RMT (XTENSA_IRQ_FIRSTPERIPH + ESP32S3_PERIPH_RMT) +#define ESP32S3_IRQ_PCNT (XTENSA_IRQ_FIRSTPERIPH + ESP32S3_PERIPH_PCNT) +#define ESP32S3_IRQ_I2C_EXT0 (XTENSA_IRQ_FIRSTPERIPH + ESP32S3_PERIPH_I2C_EXT0) +#define ESP32S3_IRQ_I2C_EXT1 (XTENSA_IRQ_FIRSTPERIPH + ESP32S3_PERIPH_I2C_EXT1) + +#define ESP32S3_IRQ_TG_T0_LEVEL (XTENSA_IRQ_FIRSTPERIPH + ESP32S3_PERIPH_TG_T0_LEVEL) +#define ESP32S3_IRQ_TG_T1_LEVEL (XTENSA_IRQ_FIRSTPERIPH + ESP32S3_PERIPH_TG_T1_LEVEL) +#define ESP32S3_IRQ_TG_WDT_LEVEL (XTENSA_IRQ_FIRSTPERIPH + ESP32S3_PERIPH_TG_WDT_LEVEL) +#define ESP32S3_IRQ_TG1_T0_LEVEL (XTENSA_IRQ_FIRSTPERIPH + ESP32S3_PERIPH_TG1_T0_LEVEL) +#define ESP32S3_IRQ_TG1_T1_LEVEL (XTENSA_IRQ_FIRSTPERIPH + ESP32S3_PERIPH_TG1_T1_LEVEL) +#define ESP32S3_IRQ_TG1_WDT_LEVEL (XTENSA_IRQ_FIRSTPERIPH + ESP32S3_PERIPH_TG1_WDT_LEVEL) +#define ESP32S3_IRQ_CACHE_IA (XTENSA_IRQ_FIRSTPERIPH + ESP32S3_PERIPH_CACHE_IA) +#define ESP32S3_IRQ_SYSTIMER_TARGET0 (XTENSA_IRQ_FIRSTPERIPH + ESP32S3_PERIPH_SYSTIMER_TARGET0) +#define ESP32S3_IRQ_SYSTIMER_TARGET1 (XTENSA_IRQ_FIRSTPERIPH + ESP32S3_PERIPH_SYSTIMER_TARGET1) +#define ESP32S3_IRQ_SYSTIMER_TARGET2 (XTENSA_IRQ_FIRSTPERIPH + ESP32S3_PERIPH_SYSTIMER_TARGET2) + +#define ESP32S3_IRQ_SPI_MEM_REJECT (XTENSA_IRQ_FIRSTPERIPH + ESP32S3_PERIPH_SPI_MEM_REJECT) +#define ESP32S3_IRQ_DCACHE_PRELOAD (XTENSA_IRQ_FIRSTPERIPH + ESP32S3_PERIPH_DCACHE_PRELOAD) +#define ESP32S3_IRQ_ICACHE_PRELOAD (XTENSA_IRQ_FIRSTPERIPH + ESP32S3_PERIPH_ICACHE_PRELOAD) +#define ESP32S3_IRQ_DCACHE_SYNC (XTENSA_IRQ_FIRSTPERIPH + ESP32S3_PERIPH_DCACHE_SYNC) + +#define ESP32S3_IRQ_SREG1 ESP32S3_IRQ_PWM1 +#define ESP32S3_NIRQS_SREG1 32 + +#define ESP32S3_IRQ_ICACHE_SYNC (XTENSA_IRQ_FIRSTPERIPH + ESP32S3_PERIPH_ICACHE_SYNC) +#define ESP32S3_IRQ_APB_ADC (XTENSA_IRQ_FIRSTPERIPH + ESP32S3_PERIPH_APB_ADC) +#define ESP32S3_IRQ_DMA_IN_CH0 (XTENSA_IRQ_FIRSTPERIPH + ESP32S3_PERIPH_DMA_IN_CH0) +#define ESP32S3_IRQ_DMA_IN_CH1 (XTENSA_IRQ_FIRSTPERIPH + ESP32S3_PERIPH_DMA_IN_CH1) +#define ESP32S3_IRQ_DMA_IN_CH2 (XTENSA_IRQ_FIRSTPERIPH + ESP32S3_PERIPH_DMA_IN_CH2) +#define ESP32S3_IRQ_DMA_IN_CH3 (XTENSA_IRQ_FIRSTPERIPH + ESP32S3_PERIPH_DMA_IN_CH3) + +#define ESP32S3_IRQ_DMA_IN_CH4 (XTENSA_IRQ_FIRSTPERIPH + ESP32S3_PERIPH_DMA_IN_CH4) +#define ESP32S3_IRQ_DMA_OUT_CH0 (XTENSA_IRQ_FIRSTPERIPH + ESP32S3_PERIPH_DMA_OUT_CH0) +#define ESP32S3_IRQ_DMA_OUT_CH1 (XTENSA_IRQ_FIRSTPERIPH + ESP32S3_PERIPH_DMA_OUT_CH1) +#define ESP32S3_IRQ_DMA_OUT_CH2 (XTENSA_IRQ_FIRSTPERIPH + ESP32S3_PERIPH_DMA_OUT_CH2) +#define ESP32S3_IRQ_DMA_OUT_CH3 (XTENSA_IRQ_FIRSTPERIPH + ESP32S3_PERIPH_DMA_OUT_CH3) +#define ESP32S3_IRQ_DMA_OUT_CH4 (XTENSA_IRQ_FIRSTPERIPH + ESP32S3_PERIPH_DMA_OUT_CH4) +#define ESP32S3_IRQ_RSA (XTENSA_IRQ_FIRSTPERIPH + ESP32S3_PERIPH_RSA) +#define ESP32S3_IRQ_AES (XTENSA_IRQ_FIRSTPERIPH + ESP32S3_PERIPH_AES) +#define ESP32S3_IRQ_SHA (XTENSA_IRQ_FIRSTPERIPH + ESP32S3_PERIPH_SHA) +#define ESP32S3_IRQ_INT_FROM_CPU0 (XTENSA_IRQ_FIRSTPERIPH + ESP32S3_PERIPH_INT_FROM_CPU0) + +#define ESP32S3_IRQ_INT_FROM_CPU1 (XTENSA_IRQ_FIRSTPERIPH + ESP32S3_PERIPH_INT_FROM_CPU1) +#define ESP32S3_IRQ_INT_FROM_CPU2 (XTENSA_IRQ_FIRSTPERIPH + ESP32S3_PERIPH_INT_FROM_CPU2) +#define ESP32S3_IRQ_INT_FROM_CPU3 (XTENSA_IRQ_FIRSTPERIPH + ESP32S3_PERIPH_INT_FROM_CPU3) +#define ESP32S3_IRQ_ASSIST_DEBUG (XTENSA_IRQ_FIRSTPERIPH + ESP32S3_PERIPH_ASSIST_DEBUG) +#define ESP32S3_IRQ_DMA_APB_PMS_MONITOR_VIOLATE (XTENSA_IRQ_FIRSTPERIPH + ESP32S3_PERIPH_DMA_APB_PMS_MONITOR_VIOLATE) +#define ESP32S3_IRQ_CORE_0_IRAM0_PMS_MONITOR_VIOLATE (XTENSA_IRQ_FIRSTPERIPH + ESP32S3_PERIPH_CORE_0_IRAM0_PMS_MONITOR_VIOLATE) +#define ESP32S3_IRQ_CORE_0_DRAM0_PMS_MONITOR_VIOLATE (XTENSA_IRQ_FIRSTPERIPH + ESP32S3_PERIPH_CORE_0_DRAM0_PMS_MONITOR_VIOLATE) +#define ESP32S3_IRQ_CORE_0_PIF_PMS_MONITOR_VIOLATE (XTENSA_IRQ_FIRSTPERIPH + ESP32S3_PERIPH_CORE_0_PIF_PMS_MONITOR_VIOLATE) +#define ESP32S3_IRQ_CORE_0_PIF_PMS_MONITOR_VIOLATE_SIZE (XTENSA_IRQ_FIRSTPERIPH + ESP32S3_PERIPH_CORE_0_PIF_PMS_MONITOR_VIOLATE_SIZE) +#define ESP32S3_IRQ_CORE_1_IRAM0_PMS_MONITOR_VIOLATE (XTENSA_IRQ_FIRSTPERIPH + ESP32S3_PERIPH_CORE_1_IRAM0_PMS_MONITOR_VIOLATE) + +#define ESP32S3_IRQ_CORE_1_DRAM0_PMS_MONITOR_VIOLATE (XTENSA_IRQ_FIRSTPERIPH + ESP32S3_PERIPH_CORE_1_DRAM0_PMS_MONITOR_VIOLATE) +#define ESP32S3_IRQ_CORE_1_PIF_PMS_MONITOR_VIOLATE (XTENSA_IRQ_FIRSTPERIPH + ESP32S3_PERIPH_CORE_1_PIF_PMS_MONITOR_VIOLATE) +#define ESP32S3_IRQ_CORE_1_PIF_PMS_MONITOR_VIOLATE_SIZE (XTENSA_IRQ_FIRSTPERIPH + ESP32S3_PERIPH_CORE_1_PIF_PMS_MONITOR_VIOLATE_SIZE) +#define ESP32S3_IRQ_BACKUP_PMS_VIOLATE (XTENSA_IRQ_FIRSTPERIPH + ESP32S3_PERIPH_BACKUP_PMS_VIOLATE) +#define ESP32S3_IRQ_CACHE_CORE0_ACS (XTENSA_IRQ_FIRSTPERIPH + ESP32S3_PERIPH_CACHE_CORE0_ACS) +#define ESP32S3_IRQ_CACHE_CORE1_ACS (XTENSA_IRQ_FIRSTPERIPH + ESP32S3_PERIPH_CACHE_CORE1_ACS) + +#define ESP32S3_IRQ_SREG2 ESP32S3_IRQ_ICACHE_SYNC +#define ESP32S3_NIRQS_SREG2 32 + +#define ESP32S3_IRQ_USB_DEVICE (XTENSA_IRQ_FIRSTPERIPH + ESP32S3_PERIPH_USB_DEVICE) +#define ESP32S3_IRQ_PERIPH_BACKUP (XTENSA_IRQ_FIRSTPERIPH + ESP32S3_PERIPH_PERIPH_BACKUP) +#define ESP32S3_IRQ_DMA_EXTMEM_REJECT (XTENSA_IRQ_FIRSTPERIPH + ESP32S3_PERIPH_DMA_EXTMEM_REJECT) + +#define ESP32S3_IRQ_SREG3 ESP32S3_IRQ_USB_DEVICE +#define ESP32S3_NIRQS_SREG3 3 + +#define ESP32S3_NIRQ_PERIPH ESP32S3_NPERIPHERALS + +/* Second level GPIO interrupts. GPIO interrupts are decoded and dispatched + * as a second level of decoding: The first level dispatches to the GPIO + * interrupt handler. The second to the decoded GPIO interrupt handler. + */ + +#ifdef CONFIG_ESP32S3_GPIO_IRQ +# define ESP32S3_NIRQ_GPIO 40 +# define ESP32S3_FIRST_GPIOIRQ (XTENSA_NIRQ_INTERNAL + ESP32S3_NIRQ_PERIPH) +# define ESP32S3_LAST_GPIOIRQ (ESP32S3_FIRST_GPIOIRQ + ESP32S3_NIRQ_GPIO - 1) +# define ESP32S3_PIN2IRQ(p) ((p) + ESP32S3_FIRST_GPIOIRQ) +# define ESP32S3_IRQ2PIN(i) ((i) - ESP32S3_FIRST_GPIOIRQ) +#else +# define ESP32S3_NIRQ_GPIO 0 +#endif + +/* Total number of interrupts */ + +#define NR_IRQS (XTENSA_NIRQ_INTERNAL + ESP32S3_NIRQ_PERIPH + ESP32S3_NIRQ_GPIO) + +/* Xtensa CPU Interrupts. + * + * Each of the two CPUs (PRO and APP) have 32 interrupts each, of which + * 26 can be mapped to peripheral interrupts: + * + * Level triggered peripherals (21 total): + * 0-5, 8-9, 12-13, 17-18 - Priority 1 + * 19-21 - Priority 2 + * 23, 27 - Priority 3 + * 24-25 - Priority 4 + * 26, 31 - Priority 5 + * Edge triggered peripherals (4 total): + * 10 - Priority 1 + * 22 - Priority 3 + * 28, 30 - Priority 4 + * NMI (1 total): + * 14 - NMI + * + * CPU peripheral interrupts can be a assigned to a CPU interrupt using the + * PRO_*_MAP_REG or APP_*_MAP_REG. There are a pair of these registers for + * each peripheral source. Multiple peripheral interrupt sources can be + * mapped to the same CPU interrupt. + * + * The remaining, six, internal CPU interrupts are: + * + * 6 Timer0 - Priority 1 + * 7 Software - Priority 1 + * 11 Profiling - Priority 3 + * 15 Timer1 - Priority 3 + * 16 Timer2 - Priority 5 + * 29 Software - Priority 3 + * + * A peripheral interrupt can be disabled + */ + +#define ESP32S3_CPUINT_LEVELPERIPH_0 0 +#define ESP32S3_CPUINT_LEVELPERIPH_1 1 +#define ESP32S3_CPUINT_LEVELPERIPH_2 2 +#define ESP32S3_CPUINT_LEVELPERIPH_3 3 +#define ESP32S3_CPUINT_LEVELPERIPH_4 4 +#define ESP32S3_CPUINT_LEVELPERIPH_5 5 +#define ESP32S3_CPUINT_LEVELPERIPH_6 8 +#define ESP32S3_CPUINT_LEVELPERIPH_7 9 +#define ESP32S3_CPUINT_LEVELPERIPH_8 12 +#define ESP32S3_CPUINT_LEVELPERIPH_9 13 +#define ESP32S3_CPUINT_LEVELPERIPH_10 17 +#define ESP32S3_CPUINT_LEVELPERIPH_11 18 +#define ESP32S3_CPUINT_LEVELPERIPH_12 19 +#define ESP32S3_CPUINT_LEVELPERIPH_13 20 +#define ESP32S3_CPUINT_LEVELPERIPH_14 21 +#define ESP32S3_CPUINT_LEVELPERIPH_15 23 +#define ESP32S3_CPUINT_LEVELPERIPH_16 24 +#define ESP32S3_CPUINT_LEVELPERIPH_17 25 +#define ESP32S3_CPUINT_LEVELPERIPH_18 26 +#define ESP32S3_CPUINT_LEVELPERIPH_19 27 +#define ESP32S3_CPUINT_LEVELPERIPH_20 31 + +#define ESP32S3_CPUINT_NLEVELPERIPHS 21 +#define ESP32S3_CPUINT_LEVELSET 0x8fbe333f + +#define ESP32S3_CPUINT_EDGEPERIPH_0 10 +#define ESP32S3_CPUINT_EDGEPERIPH_1 22 +#define ESP32S3_CPUINT_EDGEPERIPH_2 28 +#define ESP32S3_CPUINT_EDGEPERIPH_3 30 + +#define ESP32S3_CPUINT_NEDGEPERIPHS 4 +#define ESP32S3_CPUINT_EDGESET 0x50400400 + +#define ESP32S3_CPUINT_NNMIPERIPHS 1 +#define ESP32S3_CPUINT_NMISET 0x00004000 + +#define ESP32S3_CPUINT_MAC 0 +#define ESP32S3_CPUINT_TIMER0 6 +#define ESP32S3_CPUINT_SOFTWARE0 7 +#define ESP32S3_CPUINT_PROFILING 11 +#define ESP32S3_CPUINT_TIMER1 15 +#define ESP32S3_CPUINT_TIMER2 16 +#define ESP32S3_CPUINT_SOFTWARE1 29 + +#define ESP32S3_CPUINT_NINTERNAL 6 + +#define ESP32S3_NCPUINTS 32 +#define ESP32S3_CPUINT_MAX (ESP32S3_NCPUINTS - 1) +#define ESP32S3_CPUINT_PERIPHSET 0xdffe773f +#define ESP32S3_CPUINT_INTERNALSET 0x200188c0 + +/* Priority 1: 0-10, 12-13, 17-18 (15) + * Priority 2: 19-21 (3) + * Priority 3: 11, 15, 22-23, 27, 29 (6) + * Priority 4: 24-25, 28, 30 (4) + * Priority 5: 16, 26, 31 (3) + * Priority NMI: 14 (1) + */ + +#define ESP32S3_INTPRI1_MASK 0x000637ff +#define ESP32S3_INTPRI2_MASK 0x00380000 +#define ESP32S3_INTPRI3_MASK 0x28c08800 +#define ESP32S3_INTPRI4_MASK 0x53000000 +#define ESP32S3_INTPRI5_MASK 0x84010000 +#define ESP32S3_INTNMI_MASK 0x00004000 + +/**************************************************************************** + * Public Types + ****************************************************************************/ + +#ifndef __ASSEMBLY__ + +/**************************************************************************** + * Inline functions + ****************************************************************************/ + +/**************************************************************************** + * Public Data + ****************************************************************************/ + +/**************************************************************************** + * Public Function Prototypes + ****************************************************************************/ + +#ifdef __cplusplus +#define EXTERN extern "C" +extern "C" +{ +#else +#define EXTERN extern +#endif + +#undef EXTERN +#ifdef __cplusplus +} +#endif + +#endif /* __ASSEMBLY__ */ +#endif /* __ARCH_XTENSA_INCLUDE_ESP32S3_IRQ_H */ diff --git a/arch/xtensa/include/esp32s3/tie-asm.h b/arch/xtensa/include/esp32s3/tie-asm.h new file mode 100644 index 0000000000..86305f9faa --- /dev/null +++ b/arch/xtensa/include/esp32s3/tie-asm.h @@ -0,0 +1,433 @@ +/**************************************************************************** + * arch/xtensa/include/esp32s3/tie-asm.h + * Compile-time HAL assembler definitions dependent on CORE & TIE + * configuration + * + * NOTE: This header file is not meant to be included directly. + * + * This header file contains assembly-language definitions (assembly + * macros, etc.) for this specific Xtensa processor's TIE extensions + * and options. It is customized to this Xtensa processor configuration. + * + * Customer ID=15128; Build=0x90f1f; + * Copyright (c) 1999-2021 Cadence Design Systems Inc. + * + * Permission is hereby granted, free of charge, to any person obtaining + * a copy of this software and associated documentation files (the + * "Software"), to deal in the Software without restriction, including + * without limitation the rights to use, copy, modify, merge, publish, + * distribute, sublicense, and/or sell copies of the Software, and to + * permit persons to whom the Software is furnished to do so, subject to + * the following conditions: + * + * The above copyright notice and this permission notice shall be included + * in all copies or substantial portions of the Software. + * + * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, + * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF + * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. + * IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY + * CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, + * TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE + * SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. + * + ****************************************************************************/ + +#ifndef __ARCH_XTENSA_INCLUDE_ESP32S3_TIE_ASM_H +#define __ARCH_XTENSA_INCLUDE_ESP32S3_TIE_ASM_H + +/* Selection parameter values for save-area save/restore macros: */ +/* Option vs. TIE: */ +#define XTHAL_SAS_TIE 0x0001 /* custom extension or coprocessor */ +#define XTHAL_SAS_OPT 0x0002 /* optional (and not a coprocessor) */ +#define XTHAL_SAS_ANYOT 0x0003 /* both of the above */ +/* Whether used automatically by compiler: */ +#define XTHAL_SAS_NOCC 0x0004 /* not used by compiler w/o special opts/code */ +#define XTHAL_SAS_CC 0x0008 /* used by compiler without special opts/code */ +#define XTHAL_SAS_ANYCC 0x000C /* both of the above */ +/* ABI handling across function calls: */ +#define XTHAL_SAS_CALR 0x0010 /* caller-saved */ +#define XTHAL_SAS_CALE 0x0020 /* callee-saved */ +#define XTHAL_SAS_GLOB 0x0040 /* global across function calls (in thread) */ +#define XTHAL_SAS_ANYABI 0x0070 /* all of the above three */ +/* Misc */ +#define XTHAL_SAS_ALL 0xFFFF /* include all default NCP contents */ +#define XTHAL_SAS3(optie,ccuse,abi) ( ((optie) & XTHAL_SAS_ANYOT) \ + | ((ccuse) & XTHAL_SAS_ANYCC) \ + | ((abi) & XTHAL_SAS_ANYABI) ) + + + /* + * Macro to store all non-coprocessor (extra) custom TIE and optional state + * (not including zero-overhead loop registers). + * Required parameters: + * ptr Save area pointer address register (clobbered) + * (register must contain a 4 byte aligned address). + * at1..at4 Four temporary address registers (first XCHAL_NCP_NUM_ATMPS + * registers are clobbered, the remaining are unused). + * Optional parameters: + * continue If macro invoked as part of a larger store sequence, set to 1 + * if this is not the first in the sequence. Defaults to 0. + * ofs Offset from start of larger sequence (from value of first ptr + * in sequence) at which to store. Defaults to next available space + * (or 0 if is 0). + * select Select what category(ies) of registers to store, as a bitmask + * (see XTHAL_SAS_xxx constants). Defaults to all registers. + * alloc Select what category(ies) of registers to allocate; if any + * category is selected here that is not in , space for + * the corresponding registers is skipped without doing any load. + */ + .macro xchal_ncp_load ptr at1 at2 at3 at4 continue=0 ofs=-1 select=XTHAL_SAS_ALL alloc=0 + xchal_sa_start \continue, \ofs + // Optional global registers used by default by the compiler: + .ifeq (XTHAL_SAS_OPT | XTHAL_SAS_CC | XTHAL_SAS_GLOB) & ~(\select) + xchal_sa_align \ptr, 0, 1016, 4, 4 + l32i \at1, \ptr, .Lxchal_ofs_+0 + wur.THREADPTR \at1 // threadptr option + .set .Lxchal_ofs_, .Lxchal_ofs_ + 4 + .elseif ((XTHAL_SAS_OPT | XTHAL_SAS_CC | XTHAL_SAS_GLOB) & ~(\alloc)) == 0 + xchal_sa_align \ptr, 0, 1016, 4, 4 + .set .Lxchal_ofs_, .Lxchal_ofs_ + 4 + .endif + // Optional caller-saved registers used by default by the compiler: + .ifeq (XTHAL_SAS_OPT | XTHAL_SAS_CC | XTHAL_SAS_CALR) & ~(\select) + xchal_sa_align \ptr, 0, 1012, 4, 4 + l32i \at1, \ptr, .Lxchal_ofs_+0 + wsr.ACCLO \at1 // MAC16 option + l32i \at1, \ptr, .Lxchal_ofs_+4 + wsr.ACCHI \at1 // MAC16 option + .set .Lxchal_ofs_, .Lxchal_ofs_ + 8 + .elseif ((XTHAL_SAS_OPT | XTHAL_SAS_CC | XTHAL_SAS_CALR) & ~(\alloc)) == 0 + xchal_sa_align \ptr, 0, 1012, 4, 4 + .set .Lxchal_ofs_, .Lxchal_ofs_ + 8 + .endif + // Optional caller-saved registers not used by default by the compiler: + .ifeq (XTHAL_SAS_OPT | XTHAL_SAS_NOCC | XTHAL_SAS_CALR) & ~(\select) + xchal_sa_align \ptr, 0, 996, 4, 4 + l32i \at1, \ptr, .Lxchal_ofs_+0 + wsr.BR \at1 // boolean option + l32i \at1, \ptr, .Lxchal_ofs_+4 + wsr.SCOMPARE1 \at1 // conditional store option + l32i \at1, \ptr, .Lxchal_ofs_+8 + wsr.M0 \at1 // MAC16 option + l32i \at1, \ptr, .Lxchal_ofs_+12 + wsr.M1 \at1 // MAC16 option + l32i \at1, \ptr, .Lxchal_ofs_+16 + wsr.M2 \at1 // MAC16 option + l32i \at1, \ptr, .Lxchal_ofs_+20 + wsr.M3 \at1 // MAC16 option + .set .Lxchal_ofs_, .Lxchal_ofs_ + 24 + .elseif ((XTHAL_SAS_OPT | XTHAL_SAS_NOCC | XTHAL_SAS_CALR) & ~(\alloc)) == 0 + xchal_sa_align \ptr, 0, 996, 4, 4 + .set .Lxchal_ofs_, .Lxchal_ofs_ + 24 + .endif + .endm // xchal_ncp_load + + +#define XCHAL_NCP_NUM_ATMPS 1 + + /* + * Macro to store the state of TIE coprocessor FPU. + * Required parameters: + * ptr Save area pointer address register (clobbered) + * (register must contain a 4 byte aligned address). + * at1..at4 Four temporary address registers (first XCHAL_CP0_NUM_ATMPS + * registers are clobbered, the remaining are unused). + * Optional parameters are the same as for xchal_ncp_store. + */ +#define xchal_cp_FPU_store xchal_cp0_store + .macro xchal_cp0_store ptr at1 at2 at3 at4 continue=0 ofs=-1 select=XTHAL_SAS_ALL alloc=0 + xchal_sa_start \continue, \ofs + // Custom caller-saved registers not used by default by the compiler: + .ifeq (XTHAL_SAS_TIE | XTHAL_SAS_NOCC | XTHAL_SAS_CALR) & ~(\select) + xchal_sa_align \ptr, 0, 948, 4, 4 + rur.FCR \at1 // ureg 232 + s32i \at1, \ptr, .Lxchal_ofs_+0 + rur.FSR \at1 // ureg 233 + s32i \at1, \ptr, .Lxchal_ofs_+4 + ssi f0, \ptr, .Lxchal_ofs_+8 + ssi f1, \ptr, .Lxchal_ofs_+12 + ssi f2, \ptr, .Lxchal_ofs_+16 + ssi f3, \ptr, .Lxchal_ofs_+20 + ssi f4, \ptr, .Lxchal_ofs_+24 + ssi f5, \ptr, .Lxchal_ofs_+28 + ssi f6, \ptr, .Lxchal_ofs_+32 + ssi f7, \ptr, .Lxchal_ofs_+36 + ssi f8, \ptr, .Lxchal_ofs_+40 + ssi f9, \ptr, .Lxchal_ofs_+44 + ssi f10, \ptr, .Lxchal_ofs_+48 + ssi f11, \ptr, .Lxchal_ofs_+52 + ssi f12, \ptr, .Lxchal_ofs_+56 + ssi f13, \ptr, .Lxchal_ofs_+60 + ssi f14, \ptr, .Lxchal_ofs_+64 + ssi f15, \ptr, .Lxchal_ofs_+68 + .set .Lxchal_ofs_, .Lxchal_ofs_ + 72 + .elseif ((XTHAL_SAS_TIE | XTHAL_SAS_NOCC | XTHAL_SAS_CALR) & ~(\alloc)) == 0 + xchal_sa_align \ptr, 0, 948, 4, 4 + .set .Lxchal_ofs_, .Lxchal_ofs_ + 72 + .endif + .endm // xchal_cp0_store + + /* + * Macro to load the state of TIE coprocessor FPU. + * Required parameters: + * ptr Save area pointer address register (clobbered) + * (register must contain a 4 byte aligned address). + * at1..at4 Four temporary address registers (first XCHAL_CP0_NUM_ATMPS + * registers are clobbered, the remaining are unused). + * Optional parameters are the same as for xchal_ncp_load. + */ +#define xchal_cp_FPU_load xchal_cp0_load + .macro xchal_cp0_load ptr at1 at2 at3 at4 continue=0 ofs=-1 select=XTHAL_SAS_ALL alloc=0 + xchal_sa_start \continue, \ofs + // Custom caller-saved registers not used by default by the compiler: + .ifeq (XTHAL_SAS_TIE | XTHAL_SAS_NOCC | XTHAL_SAS_CALR) & ~(\select) + xchal_sa_align \ptr, 0, 948, 4, 4 + l32i \at1, \ptr, .Lxchal_ofs_+0 + wur.FCR \at1 // ureg 232 + l32i \at1, \ptr, .Lxchal_ofs_+4 + wur.FSR \at1 // ureg 233 + lsi f0, \ptr, .Lxchal_ofs_+8 + lsi f1, \ptr, .Lxchal_ofs_+12 + lsi f2, \ptr, .Lxchal_ofs_+16 + lsi f3, \ptr, .Lxchal_ofs_+20 + lsi f4, \ptr, .Lxchal_ofs_+24 + lsi f5, \ptr, .Lxchal_ofs_+28 + lsi f6, \ptr, .Lxchal_ofs_+32 + lsi f7, \ptr, .Lxchal_ofs_+36 + lsi f8, \ptr, .Lxchal_ofs_+40 + lsi f9, \ptr, .Lxchal_ofs_+44 + lsi f10, \ptr, .Lxchal_ofs_+48 + lsi f11, \ptr, .Lxchal_ofs_+52 + lsi f12, \ptr, .Lxchal_ofs_+56 + lsi f13, \ptr, .Lxchal_ofs_+60 + lsi f14, \ptr, .Lxchal_ofs_+64 + lsi f15, \ptr, .Lxchal_ofs_+68 + .set .Lxchal_ofs_, .Lxchal_ofs_ + 72 + .elseif ((XTHAL_SAS_TIE | XTHAL_SAS_NOCC | XTHAL_SAS_CALR) & ~(\alloc)) == 0 + xchal_sa_align \ptr, 0, 948, 4, 4 + .set .Lxchal_ofs_, .Lxchal_ofs_ + 72 + .endif + .endm // xchal_cp0_load + +#define XCHAL_CP0_NUM_ATMPS 1 + /* + * Macro to store the state of TIE coprocessor cop_ai. + * Required parameters: + * ptr Save area pointer address register (clobbered) + * (register must contain a 16 byte aligned address). + * at1..at4 Four temporary address registers (first XCHAL_CP3_NUM_ATMPS + * registers are clobbered, the remaining are unused). + * Optional parameters are the same as for xchal_ncp_store. + */ +#define xchal_cp_cop_ai_store xchal_cp3_store + .macro xchal_cp3_store ptr at1 at2 at3 at4 continue=0 ofs=-1 select=XTHAL_SAS_ALL alloc=0 + xchal_sa_start \continue, \ofs + // Custom caller-saved registers not used by default by the compiler: + .ifeq (XTHAL_SAS_TIE | XTHAL_SAS_NOCC | XTHAL_SAS_CALR) & ~(\select) + xchal_sa_align \ptr, 0, 0, 16, 16 + rur.ACCX_0 \at1 // ureg 0 + s32i \at1, \ptr, .Lxchal_ofs_+0 + rur.ACCX_1 \at1 // ureg 1 + s32i \at1, \ptr, .Lxchal_ofs_+4 + rur.QACC_H_0 \at1 // ureg 2 + s32i \at1, \ptr, .Lxchal_ofs_+8 + rur.QACC_H_1 \at1 // ureg 3 + s32i \at1, \ptr, .Lxchal_ofs_+12 + rur.QACC_H_2 \at1 // ureg 4 + s32i \at1, \ptr, .Lxchal_ofs_+16 + rur.QACC_H_3 \at1 // ureg 5 + s32i \at1, \ptr, .Lxchal_ofs_+20 + rur.QACC_H_4 \at1 // ureg 6 + s32i \at1, \ptr, .Lxchal_ofs_+24 + rur.QACC_L_0 \at1 // ureg 7 + s32i \at1, \ptr, .Lxchal_ofs_+28 + rur.QACC_L_1 \at1 // ureg 8 + s32i \at1, \ptr, .Lxchal_ofs_+32 + rur.QACC_L_2 \at1 // ureg 9 + s32i \at1, \ptr, .Lxchal_ofs_+36 + rur.QACC_L_3 \at1 // ureg 10 + s32i \at1, \ptr, .Lxchal_ofs_+40 + rur.QACC_L_4 \at1 // ureg 11 + s32i \at1, \ptr, .Lxchal_ofs_+44 + rur.SAR_BYTE \at1 // ureg 13 + s32i \at1, \ptr, .Lxchal_ofs_+48 + rur.FFT_BIT_WIDTH \at1 // ureg 14 + s32i \at1, \ptr, .Lxchal_ofs_+52 + rur.UA_STATE_0 \at1 // ureg 15 + s32i \at1, \ptr, .Lxchal_ofs_+56 + rur.UA_STATE_1 \at1 // ureg 16 + s32i \at1, \ptr, .Lxchal_ofs_+60 + rur.UA_STATE_2 \at1 // ureg 17 + s32i \at1, \ptr, .Lxchal_ofs_+64 + rur.UA_STATE_3 \at1 // ureg 18 + s32i \at1, \ptr, .Lxchal_ofs_+68 + st.qr q0, \ptr, .Lxchal_ofs_+80 + st.qr q1, \ptr, .Lxchal_ofs_+96 + st.qr q2, \ptr, .Lxchal_ofs_+112 + addi \ptr, \ptr, 128 + st.qr q3, \ptr, .Lxchal_ofs_+0 + st.qr q4, \ptr, .Lxchal_ofs_+16 + st.qr q5, \ptr, .Lxchal_ofs_+32 + st.qr q6, \ptr, .Lxchal_ofs_+48 + st.qr q7, \ptr, .Lxchal_ofs_+64 + .set .Lxchal_pofs_, .Lxchal_pofs_ + 128 + .set .Lxchal_ofs_, .Lxchal_ofs_ + 80 + .elseif ((XTHAL_SAS_TIE | XTHAL_SAS_NOCC | XTHAL_SAS_CALR) & ~(\alloc)) == 0 + xchal_sa_align \ptr, 0, 0, 16, 16 + .set .Lxchal_ofs_, .Lxchal_ofs_ + 208 + .endif + .endm // xchal_cp3_store + + /* + * Macro to load the state of TIE coprocessor cop_ai. + * Required parameters: + * ptr Save area pointer address register (clobbered) + * (register must contain a 16 byte aligned address). + * at1..at4 Four temporary address registers (first XCHAL_CP3_NUM_ATMPS + * registers are clobbered, the remaining are unused). + * Optional parameters are the same as for xchal_ncp_load. + */ +#define xchal_cp_cop_ai_load xchal_cp3_load + .macro xchal_cp3_load ptr at1 at2 at3 at4 continue=0 ofs=-1 select=XTHAL_SAS_ALL alloc=0 + xchal_sa_start \continue, \ofs + // Custom caller-saved registers not used by default by the compiler: + .ifeq (XTHAL_SAS_TIE | XTHAL_SAS_NOCC | XTHAL_SAS_CALR) & ~(\select) + xchal_sa_align \ptr, 0, 0, 16, 16 + l32i \at1, \ptr, .Lxchal_ofs_+0 + wur.ACCX_0 \at1 // ureg 0 + l32i \at1, \ptr, .Lxchal_ofs_+4 + wur.ACCX_1 \at1 // ureg 1 + l32i \at1, \ptr, .Lxchal_ofs_+8 + wur.QACC_H_0 \at1 // ureg 2 + l32i \at1, \ptr, .Lxchal_ofs_+12 + wur.QACC_H_1 \at1 // ureg 3 + l32i \at1, \ptr, .Lxchal_ofs_+16 + wur.QACC_H_2 \at1 // ureg 4 + l32i \at1, \ptr, .Lxchal_ofs_+20 + wur.QACC_H_3 \at1 // ureg 5 + l32i \at1, \ptr, .Lxchal_ofs_+24 + wur.QACC_H_4 \at1 // ureg 6 + l32i \at1, \ptr, .Lxchal_ofs_+28 + wur.QACC_L_0 \at1 // ureg 7 + l32i \at1, \ptr, .Lxchal_ofs_+32 + wur.QACC_L_1 \at1 // ureg 8 + l32i \at1, \ptr, .Lxchal_ofs_+36 + wur.QACC_L_2 \at1 // ureg 9 + l32i \at1, \ptr, .Lxchal_ofs_+40 + wur.QACC_L_3 \at1 // ureg 10 + l32i \at1, \ptr, .Lxchal_ofs_+44 + wur.QACC_L_4 \at1 // ureg 11 + l32i \at1, \ptr, .Lxchal_ofs_+48 + wur.SAR_BYTE \at1 // ureg 13 + l32i \at1, \ptr, .Lxchal_ofs_+52 + wur.FFT_BIT_WIDTH \at1 // ureg 14 + l32i \at1, \ptr, .Lxchal_ofs_+56 + wur.UA_STATE_0 \at1 // ureg 15 + l32i \at1, \ptr, .Lxchal_ofs_+60 + wur.UA_STATE_1 \at1 // ureg 16 + l32i \at1, \ptr, .Lxchal_ofs_+64 + wur.UA_STATE_2 \at1 // ureg 17 + l32i \at1, \ptr, .Lxchal_ofs_+68 + wur.UA_STATE_3 \at1 // ureg 18 + ld.qr q0, \ptr, .Lxchal_ofs_+80 + ld.qr q1, \ptr, .Lxchal_ofs_+96 + ld.qr q2, \ptr, .Lxchal_ofs_+112 + addi \ptr, \ptr, 128 + ld.qr q3, \ptr, .Lxchal_ofs_+0 + ld.qr q4, \ptr, .Lxchal_ofs_+16 + ld.qr q5, \ptr, .Lxchal_ofs_+32 + ld.qr q6, \ptr, .Lxchal_ofs_+48 + ld.qr q7, \ptr, .Lxchal_ofs_+64 + .set .Lxchal_pofs_, .Lxchal_pofs_ + 128 + .set .Lxchal_ofs_, .Lxchal_ofs_ + 80 + .elseif ((XTHAL_SAS_TIE | XTHAL_SAS_NOCC | XTHAL_SAS_CALR) & ~(\alloc)) == 0 + xchal_sa_align \ptr, 0, 0, 16, 16 + .set .Lxchal_ofs_, .Lxchal_ofs_ + 208 + .endif + .endm // xchal_cp3_load + +#define XCHAL_CP3_NUM_ATMPS 1 +#define XCHAL_SA_NUM_ATMPS 1 + + /* Empty macros for unconfigured coprocessors: */ + .macro xchal_cp1_store p a b c d continue=0 ofs=-1 select=-1 ; .endm + .macro xchal_cp1_load p a b c d continue=0 ofs=-1 select=-1 ; .endm + .macro xchal_cp2_store p a b c d continue=0 ofs=-1 select=-1 ; .endm + .macro xchal_cp2_load p a b c d continue=0 ofs=-1 select=-1 ; .endm + .macro xchal_cp4_store p a b c d continue=0 ofs=-1 select=-1 ; .endm + .macro xchal_cp4_load p a b c d continue=0 ofs=-1 select=-1 ; .endm + .macro xchal_cp5_store p a b c d continue=0 ofs=-1 select=-1 ; .endm + .macro xchal_cp5_load p a b c d continue=0 ofs=-1 select=-1 ; .endm + .macro xchal_cp6_store p a b c d continue=0 ofs=-1 select=-1 ; .endm + .macro xchal_cp6_load p a b c d continue=0 ofs=-1 select=-1 ; .endm + .macro xchal_cp7_store p a b c d continue=0 ofs=-1 select=-1 ; .endm + .macro xchal_cp7_load p a b c d continue=0 ofs=-1 select=-1 ; .endm + +#endif /* __ARCH_XTENSA_INCLUDE_ESP32S3_TIE_ASM_H */ diff --git a/arch/xtensa/include/esp32s3/tie.h b/arch/xtensa/include/esp32s3/tie.h new file mode 100644 index 0000000000..2bfd92c004 --- /dev/null +++ b/arch/xtensa/include/esp32s3/tie.h @@ -0,0 +1,209 @@ +/**************************************************************************** + * arch/xtensa/include/esp32s3/tie.h + * Compile-time HAL definitions dependent on CORE & TIE configuration + * + * NOTE: This header file is not meant to be included directly. + * + * This header file describes this specific Xtensa processor's TIE extensions + * that extend basic Xtensa core functionality. It is customized to this + * Xtensa processor configuration. + * + * Customer ID=15128; Build=0x90f1f; + * Copyright (c) 1999-2021 Cadence Design Systems Inc. + * + * Permission is hereby granted, free of charge, to any person obtaining + * a copy of this software and associated documentation files (the + * "Software"), to deal in the Software without restriction, including + * without limitation the rights to use, copy, modify, merge, publish, + * distribute, sublicense, and/or sell copies of the Software, and to + * permit persons to whom the Software is furnished to do so, subject to + * the following conditions: + * + * The above copyright notice and this permission notice shall be included + * in all copies or substantial portions of the Software. + * + * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, + * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF + * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. + * IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY + * CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, + * TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE + * SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. + * + ****************************************************************************/ + +#ifndef __ARCH_XTENSA_INCLUDE_ESP32S3_TIE_H +#define __ARCH_XTENSA_INCLUDE_ESP32S3_TIE_H + +#define XCHAL_CP_NUM 2 /* number of coprocessors */ +#define XCHAL_CP_MAX 4 /* max CP ID + 1 (0 if none) */ +#define XCHAL_CP_MASK 0x09 /* bitmask of all CPs by ID */ +#define XCHAL_CP_PORT_MASK 0x00 /* bitmask of only port CPs */ + +/* Basic parameters of each coprocessor: */ +#define XCHAL_CP0_NAME "FPU" +#define XCHAL_CP0_IDENT FPU +#define XCHAL_CP0_SA_SIZE 72 /* size of state save area */ +#define XCHAL_CP0_SA_ALIGN 4 /* min alignment of save area */ +#define XCHAL_CP_ID_FPU 0 /* coprocessor ID (0..7) */ +#define XCHAL_CP3_NAME "cop_ai" +#define XCHAL_CP3_IDENT cop_ai +#define XCHAL_CP3_SA_SIZE 208 /* size of state save area */ +#define XCHAL_CP3_SA_ALIGN 16 /* min alignment of save area */ +#define XCHAL_CP_ID_COP_AI 3 /* coprocessor ID (0..7) */ + +/* Filler info for unassigned coprocessors, to simplify arrays etc: */ +#define XCHAL_CP1_SA_SIZE 0 +#define XCHAL_CP1_SA_ALIGN 1 +#define XCHAL_CP2_SA_SIZE 0 +#define XCHAL_CP2_SA_ALIGN 1 +#define XCHAL_CP4_SA_SIZE 0 +#define XCHAL_CP4_SA_ALIGN 1 +#define XCHAL_CP5_SA_SIZE 0 +#define XCHAL_CP5_SA_ALIGN 1 +#define XCHAL_CP6_SA_SIZE 0 +#define XCHAL_CP6_SA_ALIGN 1 +#define XCHAL_CP7_SA_SIZE 0 +#define XCHAL_CP7_SA_ALIGN 1 + +/* Save area for non-coprocessor optional and custom (TIE) state: */ +#define XCHAL_NCP_SA_SIZE 36 +#define XCHAL_NCP_SA_ALIGN 4 + +/* Total save area for optional and custom state (NCP + CPn): */ +#define XCHAL_TOTAL_SA_SIZE 336 /* with 16-byte align padding */ +#define XCHAL_TOTAL_SA_ALIGN 16 /* actual minimum alignment */ + +/* Detailed contents of save areas. + * NOTE: caller must define the XCHAL_SA_REG macro (not defined here) + * before expanding the XCHAL_xxx_SA_LIST() macros. + * + * XCHAL_SA_REG(s,ccused,abikind,kind,opt,name,galign,align,asize, + * dbnum,base,regnum,bitsz,gapsz,reset,x...) + * + * s = passed from XCHAL_*_LIST(s), eg. to select how to expand + * ccused = set if used by compiler without special options or code + * abikind = 0 (caller-saved), 1 (callee-saved), or 2 (thread-global) + * kind = 0 (special reg), 1 (TIE user reg), or 2 (TIE regfile reg) + * opt = 0 (custom TIE extension or coprocessor), or 1 (optional reg) + * name = lowercase reg name (no quotes) + * galign = group byte alignment (power of 2) (galign >= align) + * align = register byte alignment (power of 2) + * asize = allocated size in bytes (asize*8 == bitsz + gapsz + padsz) + * (not including any pad bytes required to galign this or next reg) + * dbnum = unique target number f/debug (see ) + * base = reg shortname w/o index (or sr=special, ur=TIE user reg) + * regnum = reg index in regfile, or special/TIE-user reg number + * bitsz = number of significant bits (regfile width, or ur/sr mask bits) + * gapsz = intervening bits, if bitsz bits not stored contiguously + * (padsz = pad bits at end [TIE regfile] or at msbits [ur,sr] of asize) + * reset = register reset value (or 0 if undefined at reset) + * x = reserved for future use (0 until then) + * + * To filter out certain registers, e.g. to expand only the non-global + * registers used by the compiler, you can do something like this: + * + * #define XCHAL_SA_REG(s,ccused,p...) SELCC##ccused(p) + * #define SELCC0(p...) + * #define SELCC1(abikind,p...) SELAK##abikind(p) + * #define SELAK0(p...) REG(p) + * #define SELAK1(p...) REG(p) + * #define SELAK2(p...) + * #define REG(kind,tie,name,galn,aln,asz,csz,dbnum,base,rnum,bsz,rst,x...) \ + * ...what you want to expand... + */ + +#define XCHAL_NCP_SA_NUM 9 +#define XCHAL_NCP_SA_LIST(s) \ + XCHAL_SA_REG(s,1,2,1,1, threadptr, 4, 4, 4,0x03E7, ur,231, 32,0,0,0) \ + XCHAL_SA_REG(s,1,0,0,1, acclo, 4, 4, 4,0x0210, sr,16 , 32,0,0,0) \ + XCHAL_SA_REG(s,1,0,0,1, acchi, 4, 4, 4,0x0211, sr,17 , 8,0,0,0) \ + XCHAL_SA_REG(s,0,0,0,1, br, 4, 4, 4,0x0204, sr,4 , 16,0,0,0) \ + XCHAL_SA_REG(s,0,0,0,1, scompare1, 4, 4, 4,0x020C, sr,12 , 32,0,0,0) \ + XCHAL_SA_REG(s,0,0,0,1, m0, 4, 4, 4,0x0220, sr,32 , 32,0,0,0) \ + XCHAL_SA_REG(s,0,0,0,1, m1, 4, 4, 4,0x0221, sr,33 , 32,0,0,0) \ + XCHAL_SA_REG(s,0,0,0,1, m2, 4, 4, 4,0x0222, sr,34 , 32,0,0,0) \ + XCHAL_SA_REG(s,0,0,0,1, m3, 4, 4, 4,0x0223, sr,35 , 32,0,0,0) + +#define XCHAL_CP0_SA_NUM 18 +#define XCHAL_CP0_SA_LIST(s) \ + XCHAL_SA_REG(s,0,0,1,0, fcr, 4, 4, 4,0x03E8, ur,232, 32,0,0,0) \ + XCHAL_SA_REG(s,0,0,1,0, fsr, 4, 4, 4,0x03E9, ur,233, 32,0,0,0) \ + XCHAL_SA_REG(s,0,0,2,0, f0, 4, 4, 4,0x0030, f,0 , 32,0,0,0) \ + XCHAL_SA_REG(s,0,0,2,0, f1, 4, 4, 4,0x0031, f,1 , 32,0,0,0) \ + XCHAL_SA_REG(s,0,0,2,0, f2, 4, 4, 4,0x0032, f,2 , 32,0,0,0) \ + XCHAL_SA_REG(s,0,0,2,0, f3, 4, 4, 4,0x0033, f,3 , 32,0,0,0) \ + XCHAL_SA_REG(s,0,0,2,0, f4, 4, 4, 4,0x0034, f,4 , 32,0,0,0) \ + XCHAL_SA_REG(s,0,0,2,0, f5, 4, 4, 4,0x0035, f,5 , 32,0,0,0) \ + XCHAL_SA_REG(s,0,0,2,0, f6, 4, 4, 4,0x0036, f,6 , 32,0,0,0) \ + XCHAL_SA_REG(s,0,0,2,0, f7, 4, 4, 4,0x0037, f,7 , 32,0,0,0) \ + XCHAL_SA_REG(s,0,0,2,0, f8, 4, 4, 4,0x0038, f,8 , 32,0,0,0) \ + XCHAL_SA_REG(s,0,0,2,0, f9, 4, 4, 4,0x0039, f,9 , 32,0,0,0) \ + XCHAL_SA_REG(s,0,0,2,0, f10, 4, 4, 4,0x003A, f,10 , 32,0,0,0) \ + XCHAL_SA_REG(s,0,0,2,0, f11, 4, 4, 4,0x003B, f,11 , 32,0,0,0) \ + XCHAL_SA_REG(s,0,0,2,0, f12, 4, 4, 4,0x003C, f,12 , 32,0,0,0) \ + XCHAL_SA_REG(s,0,0,2,0, f13, 4, 4, 4,0x003D, f,13 , 32,0,0,0) \ + XCHAL_SA_REG(s,0,0,2,0, f14, 4, 4, 4,0x003E, f,14 , 32,0,0,0) \ + XCHAL_SA_REG(s,0,0,2,0, f15, 4, 4, 4,0x003F, f,15 , 32,0,0,0) + +#define XCHAL_CP1_SA_NUM 0 +#define XCHAL_CP1_SA_LIST(s) /* empty */ + +#define XCHAL_CP2_SA_NUM 0 +#define XCHAL_CP2_SA_LIST(s) /* empty */ + +#define XCHAL_CP3_SA_NUM 26 +#define XCHAL_CP3_SA_LIST(s) \ + XCHAL_SA_REG(s,0,0,1,0, accx_0,16, 4, 4,0x0300, ur,0 , 32,0,0,0) \ + XCHAL_SA_REG(s,0,0,1,0, accx_1, 4, 4, 4,0x0301, ur,1 , 8,0,0,0) \ + XCHAL_SA_REG(s,0,0,1,0, qacc_h_0, 4, 4, 4,0x0302, ur,2 , 32,0,0,0) \ + XCHAL_SA_REG(s,0,0,1,0, qacc_h_1, 4, 4, 4,0x0303, ur,3 , 32,0,0,0) \ + XCHAL_SA_REG(s,0,0,1,0, qacc_h_2, 4, 4, 4,0x0304, ur,4 , 32,0,0,0) \ + XCHAL_SA_REG(s,0,0,1,0, qacc_h_3, 4, 4, 4,0x0305, ur,5 , 32,0,0,0) \ + XCHAL_SA_REG(s,0,0,1,0, qacc_h_4, 4, 4, 4,0x0306, ur,6 , 32,0,0,0) \ + XCHAL_SA_REG(s,0,0,1,0, qacc_l_0, 4, 4, 4,0x0307, ur,7 , 32,0,0,0) \ + XCHAL_SA_REG(s,0,0,1,0, qacc_l_1, 4, 4, 4,0x0308, ur,8 , 32,0,0,0) \ + XCHAL_SA_REG(s,0,0,1,0, qacc_l_2, 4, 4, 4,0x0309, ur,9 , 32,0,0,0) \ + XCHAL_SA_REG(s,0,0,1,0, qacc_l_3, 4, 4, 4,0x030A, ur,10 , 32,0,0,0) \ + XCHAL_SA_REG(s,0,0,1,0, qacc_l_4, 4, 4, 4,0x030B, ur,11 , 32,0,0,0) \ + XCHAL_SA_REG(s,0,0,1,0, sar_byte, 4, 4, 4,0x030D, ur,13 , 4,0,0,0) \ + XCHAL_SA_REG(s,0,0,1,0, fft_bit_width, 4, 4, 4,0x030E, ur,14 , 4,0,0,0) \ + XCHAL_SA_REG(s,0,0,1,0, ua_state_0, 4, 4, 4,0x030F, ur,15 , 32,0,0,0) \ + XCHAL_SA_REG(s,0,0,1,0, ua_state_1, 4, 4, 4,0x0310, ur,16 , 32,0,0,0) \ + XCHAL_SA_REG(s,0,0,1,0, ua_state_2, 4, 4, 4,0x0311, ur,17 , 32,0,0,0) \ + XCHAL_SA_REG(s,0,0,1,0, ua_state_3, 4, 4, 4,0x0312, ur,18 , 32,0,0,0) \ + XCHAL_SA_REG(s,0,0,2,0, q0,16,16,16,0x1008, q,0 ,128,0,0,0) \ + XCHAL_SA_REG(s,0,0,2,0, q1,16,16,16,0x1009, q,1 ,128,0,0,0) \ + XCHAL_SA_REG(s,0,0,2,0, q2,16,16,16,0x100A, q,2 ,128,0,0,0) \ + XCHAL_SA_REG(s,0,0,2,0, q3,16,16,16,0x100B, q,3 ,128,0,0,0) \ + XCHAL_SA_REG(s,0,0,2,0, q4,16,16,16,0x100C, q,4 ,128,0,0,0) \ + XCHAL_SA_REG(s,0,0,2,0, q5,16,16,16,0x100D, q,5 ,128,0,0,0) \ + XCHAL_SA_REG(s,0,0,2,0, q6,16,16,16,0x100E, q,6 ,128,0,0,0) \ + XCHAL_SA_REG(s,0,0,2,0, q7,16,16,16,0x100F, q,7 ,128,0,0,0) + +#define XCHAL_CP4_SA_NUM 0 +#define XCHAL_CP4_SA_LIST(s) /* empty */ + +#define XCHAL_CP5_SA_NUM 0 +#define XCHAL_CP5_SA_LIST(s) /* empty */ + +#define XCHAL_CP6_SA_NUM 0 +#define XCHAL_CP6_SA_LIST(s) /* empty */ + +#define XCHAL_CP7_SA_NUM 0 +#define XCHAL_CP7_SA_LIST(s) /* empty */ + +/* Byte length of instruction from its first nibble (op0 field), per FLIX. */ +#define XCHAL_OP0_FORMAT_LENGTHS 3,3,3,3,3,3,3,3,2,2,2,2,2,2,4,4 +/* Byte length of instruction from its first byte, per FLIX. */ +#define XCHAL_BYTE0_FORMAT_LENGTHS \ + 3,3,3,3,3,3,3,3,2,2,2,2,2,2,4,4, 3,3,3,3,3,3,3,3,2,2,2,2,2,2,4,4,\ + 3,3,3,3,3,3,3,3,2,2,2,2,2,2,4,4, 3,3,3,3,3,3,3,3,2,2,2,2,2,2,4,4,\ + 3,3,3,3,3,3,3,3,2,2,2,2,2,2,4,4, 3,3,3,3,3,3,3,3,2,2,2,2,2,2,4,4,\ + 3,3,3,3,3,3,3,3,2,2,2,2,2,2,4,4, 3,3,3,3,3,3,3,3,2,2,2,2,2,2,4,4,\ + 3,3,3,3,3,3,3,3,2,2,2,2,2,2,4,4, 3,3,3,3,3,3,3,3,2,2,2,2,2,2,4,4,\ + 3,3,3,3,3,3,3,3,2,2,2,2,2,2,4,4, 3,3,3,3,3,3,3,3,2,2,2,2,2,2,4,4,\ + 3,3,3,3,3,3,3,3,2,2,2,2,2,2,4,4, 3,3,3,3,3,3,3,3,2,2,2,2,2,2,4,4,\ + 3,3,3,3,3,3,3,3,2,2,2,2,2,2,4,4, 3,3,3,3,3,3,3,3,2,2,2,2,2,2,4,4 + +#endif /* __ARCH_XTENSA_INCLUDE_ESP32S3_TIE_H */ diff --git a/arch/xtensa/include/lx7/chip.h b/arch/xtensa/include/lx7/chip.h new file mode 100644 index 0000000000..ae85aa736f --- /dev/null +++ b/arch/xtensa/include/lx7/chip.h @@ -0,0 +1,62 @@ +/**************************************************************************** + * arch/xtensa/include/lx7/chip.h + * + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. The + * ASF licenses this file to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance with the + * License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT + * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the + * License for the specific language governing permissions and limitations + * under the License. + * + ****************************************************************************/ + +#ifndef __ARCH_XTENSA_INCLUDE_LX7_CHIP_H +#define __ARCH_XTENSA_INCLUDE_LX7_CHIP_H + +/**************************************************************************** + * Included Files + ****************************************************************************/ + +#include + +/**************************************************************************** + * Pre-processor Definitions + ****************************************************************************/ + +/**************************************************************************** + * Public Types + ****************************************************************************/ + +#ifndef __ASSEMBLY__ + +/**************************************************************************** + * Inline Functions + ****************************************************************************/ + +/**************************************************************************** + * Public Function Prototypes + ****************************************************************************/ + +#ifdef __cplusplus +#define EXTERN extern "C" +extern "C" +{ +#else +#define EXTERN extern +#endif + +#undef EXTERN +#ifdef __cplusplus +} +#endif + +#endif /* __ASSEMBLY__ */ +#endif /* __ARCH_XTENSA_INCLUDE_LX7_CHIP_H */ diff --git a/arch/xtensa/src/esp32s3/.gitignore b/arch/xtensa/src/esp32s3/.gitignore new file mode 100644 index 0000000000..2d7ab9d716 --- /dev/null +++ b/arch/xtensa/src/esp32s3/.gitignore @@ -0,0 +1 @@ +/esp-nuttx-bootloader diff --git a/arch/xtensa/src/esp32s3/Bootloader.mk b/arch/xtensa/src/esp32s3/Bootloader.mk new file mode 100644 index 0000000000..7de5162218 --- /dev/null +++ b/arch/xtensa/src/esp32s3/Bootloader.mk @@ -0,0 +1,88 @@ +############################################################################ +# arch/xtensa/src/esp32s3/Bootloader.mk +# +# Licensed to the Apache Software Foundation (ASF) under one or more +# contributor license agreements. See the NOTICE file distributed with +# this work for additional information regarding copyright ownership. The +# ASF licenses this file to you under the Apache License, Version 2.0 (the +# "License"); you may not use this file except in compliance with the +# License. You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, WITHOUT +# WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the +# License for the specific language governing permissions and limitations +# under the License. +# +############################################################################ + +ifeq ($(CONFIG_ESP32S3_BOOTLOADER_BUILD_FROM_SOURCE),y) + +CHIPDIR = $(TOPDIR)/arch/xtensa/src/chip + +BOOTLOADER_SRCDIR = $(CHIPDIR)/esp-nuttx-bootloader +BOOTLOADER_VERSION = main +BOOTLOADER_URL = https://github.com/espressif/esp-nuttx-bootloader +BOOTLOADER_OUTDIR = out +BOOTLOADER_CONFIG = $(CHIPDIR)/bootloader.conf + +$(BOOTLOADER_SRCDIR): + $(Q) git clone $(BOOTLOADER_URL) $(BOOTLOADER_SRCDIR) -b $(BOOTLOADER_VERSION) + +# Helpers for creating the configuration file + +cfg_en = echo "$(1)=y"; +cfg_val = echo "$(1)=$(2)"; + +$(BOOTLOADER_CONFIG): $(TOPDIR)/.config + $(Q) echo "Creating Bootloader configuration" + $(Q) { \ + $(if $(CONFIG_ESP32S3_FLASH_4M),$(call cfg_en,CONFIG_ESPTOOLPY_FLASHSIZE_4MB)) \ + $(if $(CONFIG_ESP32S3_FLASH_8M),$(call cfg_en,CONFIG_ESPTOOLPY_FLASHSIZE_8MB)) \ + $(if $(CONFIG_ESP32S3_FLASH_16M),$(call cfg_en,CONFIG_ESPTOOLPY_FLASHSIZE_16MB)) \ + $(if $(CONFIG_ESP32S3_FLASH_MODE_DIO),$(call cfg_en,CONFIG_ESPTOOLPY_FLASHMODE_DIO)) \ + $(if $(CONFIG_ESP32S3_FLASH_MODE_DOUT),$(call cfg_en,CONFIG_ESPTOOLPY_FLASHMODE_DOUT)) \ + $(if $(CONFIG_ESP32S3_FLASH_MODE_QIO),$(call cfg_en,CONFIG_ESPTOOLPY_FLASHMODE_QIO)) \ + $(if $(CONFIG_ESP32S3_FLASH_MODE_QOUT),$(call cfg_en,CONFIG_ESPTOOLPY_FLASHMODE_QOUT)) \ + $(if $(CONFIG_ESP32S3_FLASH_FREQ_120M),$(call cfg_en,CONFIG_ESPTOOLPY_FLASHFREQ_120M)) \ + $(if $(CONFIG_ESP32S3_FLASH_FREQ_80M),$(call cfg_en,CONFIG_ESPTOOLPY_FLASHFREQ_80M)) \ + $(if $(CONFIG_ESP32S3_FLASH_FREQ_40M),$(call cfg_en,CONFIG_ESPTOOLPY_FLASHFREQ_40M)) \ + $(if $(CONFIG_ESP32S3_FLASH_FREQ_20M),$(call cfg_en,CONFIG_ESPTOOLPY_FLASHFREQ_20M)) \ + } > $(BOOTLOADER_CONFIG) +ifeq ($(CONFIG_ESP32S3_APP_FORMAT_LEGACY),y) + $(Q) { \ + $(call cfg_en,CONFIG_PARTITION_TABLE_CUSTOM) \ + $(call cfg_val,CONFIG_PARTITION_TABLE_CUSTOM_FILENAME,\"partitions.csv\") \ + $(call cfg_val,CONFIG_PARTITION_TABLE_OFFSET,$(CONFIG_ESP32S3_PARTITION_TABLE_OFFSET)) \ + } >> $(BOOTLOADER_CONFIG) +endif + +bootloader: $(BOOTLOADER_SRCDIR) $(BOOTLOADER_CONFIG) + $(Q) echo "Building Bootloader binaries" + $(Q) $(BOOTLOADER_SRCDIR)/build_idfboot.sh -c esp32s3 -s -f $(BOOTLOADER_CONFIG) + $(call COPYFILE,$(BOOTLOADER_SRCDIR)/$(BOOTLOADER_OUTDIR)/bootloader-esp32s3.bin,$(TOPDIR)) + $(call COPYFILE,$(BOOTLOADER_SRCDIR)/$(BOOTLOADER_OUTDIR)/partition-table-esp32s3.bin,$(TOPDIR)) + +clean_bootloader: + $(call DELDIR,$(BOOTLOADER_SRCDIR)) + $(call DELFILE,$(BOOTLOADER_CONFIG)) + $(call DELFILE,$(TOPDIR)/bootloader-esp32s3.bin) + $(call DELFILE,$(TOPDIR)/partition-table-esp32s3.bin) + +else ifeq ($(CONFIG_ESP32S3_BOOTLOADER_DOWNLOAD_PREBUILT),y) + +BOOTLOADER_VERSION = latest +BOOTLOADER_URL = https://github.com/espressif/esp-nuttx-bootloader/releases/download/$(BOOTLOADER_VERSION) + +bootloader: + $(Q) echo "Downloading Bootloader binaries" + $(Q) curl -L $(BOOTLOADER_URL)/bootloader-esp32s3.bin -o $(TOPDIR)/bootloader-esp32s3.bin + $(Q) curl -L $(BOOTLOADER_URL)/partition-table-esp32s3.bin -o $(TOPDIR)/partition-table-esp32s3.bin + +clean_bootloader: + $(call DELFILE,$(TOPDIR)/bootloader-esp32s3.bin) + $(call DELFILE,$(TOPDIR)/partition-table-esp32s3.bin) + +endif diff --git a/arch/xtensa/src/esp32s3/Kconfig b/arch/xtensa/src/esp32s3/Kconfig new file mode 100644 index 0000000000..5753d5713b --- /dev/null +++ b/arch/xtensa/src/esp32s3/Kconfig @@ -0,0 +1,461 @@ +# +# For a description of the syntax of this configuration file, +# see the file kconfig-language.txt in the NuttX tools repository. +# + +if ARCH_CHIP_ESP32S3 + +comment "ESP32-S3 Configuration Options" + +choice + prompt "ESP32-S3 Chip Selection" + default ARCH_CHIP_ESP32S3WROOM1 + +config ARCH_CHIP_ESP32S3WROOM1 + bool "ESP32-S3-WROOM-1" + select ESP32S3_FLASH_4M + ---help--- + Generic module with an embedded ESP32-S3. + +config ARCH_CHIP_ESP32S3WROOM2 + bool "ESP32-S3-WROOM-2" + select ESP32S3_FLASH_16M + select ESP32S3_PSRAM_8M + ---help--- + Generic module with an embedded ESP32-S3. + +config ARCH_CHIP_ESP32S3MINI1 + bool "ESP32-S3-MINI-1" + select ESP32S3_FLASH_8M + ---help--- + Generic module with an embedded ESP32-S3. + +endchoice # ESP32-S3 Chip Selection + +choice ESP32S3_DEFAULT_CPU_FREQ + prompt "CPU frequency" + default ESP32S3_DEFAULT_CPU_FREQ_240 + ---help--- + CPU frequency to be set on application startup. + + config ESP32S3_DEFAULT_CPU_FREQ_80 + bool "80 MHz" + + config ESP32S3_DEFAULT_CPU_FREQ_160 + bool "160 MHz" + + config ESP32S3_DEFAULT_CPU_FREQ_240 + bool "240 MHz" + +endchoice # CPU frequency + +config ESP32S3_DEFAULT_CPU_FREQ_MHZ + int + default 80 if ESP32S3_DEFAULT_CPU_FREQ_80 + default 160 if ESP32S3_DEFAULT_CPU_FREQ_160 + default 240 if ESP32S3_DEFAULT_CPU_FREQ_240 + +menu "Cache config" + +choice + prompt "Instruction cache size" + default ESP32S3_INSTRUCTION_CACHE_16KB + ---help--- + Instruction cache size to be set on application startup. + If you use 16KB instruction cache rather than 32KB instruction cache, + then the other 16KB will be managed by heap allocator. + +config ESP32S3_INSTRUCTION_CACHE_16KB + bool "16KB" + ---help--- + Use 16KB of SRAM as Instruction Cache + +config ESP32S3_INSTRUCTION_CACHE_32KB + bool "32KB" + ---help--- + Use 32KB of SRAM as Instruction Cache + +endchoice # Instruction cache size + +config ESP32S3_INSTRUCTION_CACHE_SIZE + hex + default 0x4000 if ESP32S3_INSTRUCTION_CACHE_16KB + default 0x8000 if ESP32S3_INSTRUCTION_CACHE_32KB + +choice ESP32S3_ICACHE_ASSOCIATED_WAYS + prompt "Instruction cache associated ways" + default ESP32S3_INSTRUCTION_CACHE_8WAYS + ---help--- + Instruction cache associated ways to be set on application startup. + + config ESP32S3_INSTRUCTION_CACHE_4WAYS + bool "4 ways" + + config ESP32S3_INSTRUCTION_CACHE_8WAYS + bool "8 ways" + +endchoice + +config ESP32S3_ICACHE_ASSOCIATED_WAYS + int + default 4 if ESP32S3_INSTRUCTION_CACHE_4WAYS + default 8 if ESP32S3_INSTRUCTION_CACHE_8WAYS + +choice ESP32S3_INSTRUCTION_CACHE_LINE_SIZE + prompt "Instruction cache line size" + default ESP32S3_INSTRUCTION_CACHE_LINE_32B + ---help--- + Instruction cache line size to be set on application startup. + + config ESP32S3_INSTRUCTION_CACHE_LINE_16B + bool "16 Bytes" + depends on ESP32S3_INSTRUCTION_CACHE_16KB + + config ESP32S3_INSTRUCTION_CACHE_LINE_32B + bool "32 Bytes" + +endchoice + +config ESP32S3_INSTRUCTION_CACHE_LINE_SIZE + int + default 16 if ESP32S3_INSTRUCTION_CACHE_LINE_16B + default 32 if ESP32S3_INSTRUCTION_CACHE_LINE_32B + +choice + prompt "Data cache size" + default ESP32S3_DATA_CACHE_32KB + ---help--- + Data cache size to be set on application startup. + If you use 32KB data cache rather than 64KB data cache, + the other 32KB will be added to the heap. + +config ESP32S3_DATA_CACHE_16KB + bool "16KB" + ---help--- + Use 16KB of SRAM as Data Cache + +config ESP32S3_DATA_CACHE_32KB + bool "32KB" + ---help--- + Use 32KB of SRAM as Data Cache + +config ESP32S3_DATA_CACHE_64KB + bool "64KB" + ---help--- + Use 64KB of SRAM as Data Cache + +endchoice # Data cache size + +config ESP32S3_DATA_CACHE_SIZE + hex + # For 16KB the actual configuration is 32kb cache, but 16kb will be reserved for heap at startup + default 0x8000 if ESP32S3_DATA_CACHE_16KB + default 0x8000 if ESP32S3_DATA_CACHE_32KB + default 0x10000 if ESP32S3_DATA_CACHE_64KB + +choice ESP32S3_DCACHE_ASSOCIATED_WAYS + prompt "Data cache associated ways" + default ESP32S3_DATA_CACHE_8WAYS + ---help--- + Data cache associated ways to be set on application startup. + + config ESP32S3_DATA_CACHE_4WAYS + bool "4 ways" + + config ESP32S3_DATA_CACHE_8WAYS + bool "8 ways" + +endchoice + +config ESP32S3_DCACHE_ASSOCIATED_WAYS + int + default 4 if ESP32S3_DATA_CACHE_4WAYS + default 8 if ESP32S3_DATA_CACHE_8WAYS + +choice ESP32S3_DATA_CACHE_LINE_SIZE + prompt "Data cache line size" + default ESP32S3_DATA_CACHE_LINE_32B + ---help--- + Data cache line size to be set on application startup. + + config ESP32S3_DATA_CACHE_LINE_16B + bool "16 Bytes" + depends on ESP32S3_DATA_CACHE_16KB || ESP32S3_DATA_CACHE_32KB + + config ESP32S3_DATA_CACHE_LINE_32B + bool "32 Bytes" + + config ESP32S3_DATA_CACHE_LINE_64B + bool "64 Bytes" + +endchoice + +config ESP32S3_DATA_CACHE_LINE_SIZE + int + default 16 if ESP32S3_DATA_CACHE_LINE_16B + default 32 if ESP32S3_DATA_CACHE_LINE_32B + default 64 if ESP32S3_DATA_CACHE_LINE_64B + +endmenu # Cache config + +config ESP32S3_ULP_COPROC_ENABLED + bool "Enable Ultra Low Power (ULP) Coprocessor" + default n + ---help--- + Set to 'y' if you plan to load a firmware for the coprocessor. + +config ESP32S3_ULP_COPROC_RESERVE_MEM + int + prompt "RTC slow memory reserved for coprocessor" if ESP32S3_ULP_COPROC_ENABLED + default 512 if ESP32S3_ULP_COPROC_ENABLED + range 32 8176 if ESP32S3_ULP_COPROC_ENABLED + default 0 if !ESP32S3_ULP_COPROC_ENABLED + range 0 0 if !ESP32S3_ULP_COPROC_ENABLED + help + Bytes of memory to reserve for ULP coprocessor firmware & data. + Data is reserved at the beginning of RTC slow memory. + +config ESP32S3_FLASH_4M + bool + default n + +config ESP32S3_FLASH_8M + bool + default n + +config ESP32S3_FLASH_16M + bool + default n + +config ESP32S3_ESPTOOLPY_NO_STUB + bool "Disable download stub" + default n + ---help--- + The flasher tool sends a precompiled download stub first by default. + That stub allows things like compressed downloads and more. + Usually you should not need to disable that feature. + It is only required to be disabled in certain scenarios when either + Secure Boot V2 or Flash Encryption is enabled. + +config ESP32S3_FLASH_DETECT + bool "Auto-detect FLASH size" + default y + ---help--- + Auto detect flash size when flashing. + +config ESP32S3_PSRAM_8M + bool + default n + +choice ESP32S3_FLASH_MODE + prompt "SPI FLASH mode" + default ESP32S3_FLASH_MODE_DIO + ---help--- + These options control how many I/O pins are used for communication + with the attached SPI flash chip. + The option selected here is then used by esptool when flashing. + + config ESP32S3_FLASH_MODE_DIO + bool "Dual IO (DIO)" + + config ESP32S3_FLASH_MODE_DOUT + bool "Dual Output (DOUT)" + + config ESP32S3_FLASH_MODE_QIO + bool "Quad IO (QIO)" + + config ESP32S3_FLASH_MODE_QOUT + bool "Quad Output (QOUT)" + +endchoice # ESP32S3_FLASH_MODE + +choice ESP32S3_FLASH_FREQ + prompt "SPI FLASH frequency" + default ESP32S3_FLASH_FREQ_40M + ---help--- + SPI FLASH frequency + + config ESP32S3_FLASH_FREQ_120M + bool "120 MHz" + + config ESP32S3_FLASH_FREQ_80M + bool "80 MHz" + + config ESP32S3_FLASH_FREQ_40M + bool "40 MHz" + + config ESP32S3_FLASH_FREQ_20M + bool "20 MHz" + +endchoice # ESP32S3_FLASH_FREQ + +config ESP32S3_RUN_IRAM + bool "Run from IRAM" + default n + ---help--- + This loads all of NuttX inside IRAM. Used to test somewhat small + images that can fit entirely in IRAM. + +menu "ESP32-S3 Peripheral Selection" + +config ESP32S3_UART + bool + default n + +config ESP32S3_UART0 + bool "UART 0" + default n + select ESP32S3_UART + select UART0_SERIALDRIVER + select ARCH_HAVE_SERIAL_TERMIOS + +config ESP32S3_UART1 + bool "UART 1" + default n + select ESP32S3_UART + select UART1_SERIALDRIVER + select ARCH_HAVE_SERIAL_TERMIOS + +config ESP32S3_UART2 + bool "UART 2" + default n + select ESP32S3_UART + select UART2_SERIALDRIVER + select ARCH_HAVE_SERIAL_TERMIOS + +endmenu # ESP32S3 Peripheral Selection + +menu "UART configuration" + depends on ESP32S3_UART + +if ESP32S3_UART0 + +config ESP32S3_UART0_TXPIN + int "UART0 Tx Pin" + default 43 + range 0 48 + +config ESP32S3_UART0_RXPIN + int "UART0 Rx Pin" + default 44 + range 0 48 + +config ESP32S3_UART0_RTSPIN + int "UART0 RTS Pin" + depends on SERIAL_IFLOWCONTROL + default 15 + range 0 48 + +config ESP32S3_UART0_CTSPIN + int "UART0 CTS Pin" + depends on SERIAL_OFLOWCONTROL + default 16 + range 0 48 + +endif # ESP32S3_UART0 + +if ESP32S3_UART1 + +config ESP32S3_UART1_TXPIN + int "UART1 Tx Pin" + default 17 + range 0 48 + +config ESP32S3_UART1_RXPIN + int "UART1 Rx Pin" + default 18 + range 0 48 + +config ESP32S3_UART1_RTSPIN + int "UART1 RTS Pin" + depends on SERIAL_IFLOWCONTROL + default 19 + range 0 48 + +config ESP32S3_UART1_CTSPIN + int "UART1 CTS Pin" + depends on SERIAL_OFLOWCONTROL + default 20 + range 0 48 + +endif # ESP32S3_UART1 + +if ESP32S3_UART2 + +config ESP32S3_UART2_TXPIN + int "UART2 Tx Pin" + default 17 + range 0 48 + +config ESP32S3_UART2_RXPIN + int "UART2 Rx Pin" + default 16 + range 0 48 + +config ESP32S3_UART2_RTSPIN + int "UART2 RTS Pin" + depends on SERIAL_IFLOWCONTROL + default 35 + range 0 48 + +config ESP32S3_UART2_CTSPIN + int "UART2 CTS Pin" + depends on SERIAL_OFLOWCONTROL + default 36 + range 0 48 + +endif # ESP32S3_UART2 + +endmenu # UART configuration + +menu "Application Image Configuration" + +choice + prompt "Application Image Format" + default ESP32S3_APP_FORMAT_LEGACY + ---help--- + Depending on the chosen 2nd stage bootloader, the application may + be required to be perform a specific startup routine. Furthermore, + the image binary must be formatted according to the definition from + the 2nd stage bootloader. + +config ESP32S3_APP_FORMAT_LEGACY + bool "Legacy format" + ---help--- + This is the legacy application image format, as supported by the ESP-IDF + 2nd stage bootloader. + +endchoice # Application Image Format + +choice + prompt "Source for bootloader binaries" + default ESP32S3_BOOTLOADER_DOWNLOAD_PREBUILT + ---help--- + Select the action to be taken by the build system for the + "make bootloader" target. + +config ESP32S3_BOOTLOADER_DOWNLOAD_PREBUILT + bool "Download prebuilt binaries" + ---help--- + The build system will download the prebuilt binaries from + https://github.com/espressif/esp-nuttx-bootloader according to the chosen + Application Image Format (ESP32S3_APP_FORMAT_LEGACY or ESP32S3_APP_FORMAT_MCUBOOT) + +config ESP32S3_BOOTLOADER_BUILD_FROM_SOURCE + bool "Build binaries from source" + ---help--- + The build system will build all the required binaries from source. It will clone + the https://github.com/espressif/esp-nuttx-bootloader repository and build a + custom bootloader according to the chosen Application Image Format + (ESP32S3_APP_FORMAT_LEGACY or ESP32S3_APP_FORMAT_MCUBOOT) and partition information. + +endchoice + +config ESP32S3_PARTITION_TABLE_OFFSET + hex "Partition Table offset" + default 0x8000 + depends on ESP32S3_APP_FORMAT_LEGACY + +endmenu # Application Image Configuration + +endif # ARCH_CHIP_ESP32S3 diff --git a/arch/xtensa/src/esp32s3/Make.defs b/arch/xtensa/src/esp32s3/Make.defs new file mode 100644 index 0000000000..1bc77eb91f --- /dev/null +++ b/arch/xtensa/src/esp32s3/Make.defs @@ -0,0 +1,74 @@ +############################################################################ +# arch/xtensa/src/esp32s3/Make.defs +# +# Licensed to the Apache Software Foundation (ASF) under one or more +# contributor license agreements. See the NOTICE file distributed with +# this work for additional information regarding copyright ownership. The +# ASF licenses this file to you under the Apache License, Version 2.0 (the +# "License"); you may not use this file except in compliance with the +# License. You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, WITHOUT +# WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the +# License for the specific language governing permissions and limitations +# under the License. +# +############################################################################ + +include chip/Bootloader.mk + +# The start-up, "head", file. May be either a .S or a .c file. + +HEAD_ASRC = xtensa_vectors.S xtensa_window_vector.S xtensa_windowspill.S +HEAD_ASRC += xtensa_int_handlers.S xtensa_user_handler.S +HEAD_CSRC = esp32s3_start.c + +# Common XTENSA files (arch/xtensa/src/common) + +CMN_ASRCS = xtensa_context.S xtensa_coproc.S xtensa_cpuint.S xtensa_panic.S +CMN_ASRCS += xtensa_sigtramp.S + +CMN_CSRCS = xtensa_assert.c xtensa_blocktask.c xtensa_copystate.c +CMN_CSRCS += xtensa_cpenable.c xtensa_createstack.c xtensa_exit.c +CMN_CSRCS += xtensa_initialize.c xtensa_initialstate.c xtensa_interruptcontext.c +CMN_CSRCS += xtensa_irqdispatch.c xtensa_lowputs.c xtensa_mdelay.c +CMN_CSRCS += xtensa_modifyreg8.c xtensa_modifyreg16.c xtensa_modifyreg32.c +CMN_CSRCS += xtensa_puts.c xtensa_releasepending.c xtensa_releasestack.c +CMN_CSRCS += xtensa_reprioritizertr.c xtensa_schedsigaction.c +CMN_CSRCS += xtensa_sigdeliver.c xtensa_stackframe.c xtensa_udelay.c +CMN_CSRCS += xtensa_unblocktask.c xtensa_usestack.c + +# Configuration-dependent common XTENSA files + +ifeq ($(CONFIG_DEBUG_ALERT),y) + CMN_CSRCS += xtensa_dumpstate.c +endif + +ifeq ($(CONFIG_SPINLOCK),y) + CMN_CSRCS += xtensa_testset.c +endif + +ifeq ($(CONFIG_STACK_COLORATION),y) + CMN_CSRCS += xtensa_checkstack.c +endif + +ifeq ($(CONFIG_XTENSA_SEMIHOSTING_HOSTFS),y) + CMN_ASRCS += xtensa_simcall.S + CMN_CSRCS += xtensa_hostfs.c +endif + +# Required ESP32-S3 files (arch/xtensa/src/esp32s3) + +CHIP_CSRCS = esp32s3_irq.c esp32s3_clockconfig.c esp32s3_region.c +CHIP_CSRCS += esp32s3_timerisr.c esp32s3_user.c esp32s3_allocateheap.c +CHIP_CSRCS += esp32s3_wdt.c esp32s3_gpio.c esp32s3_lowputc.c esp32s3_serial.c +CHIP_CSRCS += esp32s3_systemreset.c + +# Configuration-dependent ESP32-S3 files + +ifneq ($(CONFIG_ARCH_IDLE_CUSTOM),y) +CHIP_CSRCS += esp32s3_idle.c +endif diff --git a/arch/xtensa/src/esp32s3/chip.h b/arch/xtensa/src/esp32s3/chip.h new file mode 100644 index 0000000000..725c54dd09 --- /dev/null +++ b/arch/xtensa/src/esp32s3/chip.h @@ -0,0 +1,61 @@ +/**************************************************************************** + * arch/xtensa/src/esp32s3/chip.h + * + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. The + * ASF licenses this file to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance with the + * License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT + * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the + * License for the specific language governing permissions and limitations + * under the License. + * + ****************************************************************************/ + +#ifndef __ARCH_XTENSA_SRC_ESP32S3_CHIP_H +#define __ARCH_XTENSA_SRC_ESP32S3_CHIP_H + +/**************************************************************************** + * Included Files + ****************************************************************************/ + +#include + +#include "chip_macros.h" +#include "chip_memory.h" + +/**************************************************************************** + * Pre-processor Definitions + ****************************************************************************/ + +/**************************************************************************** + * Public Data + ****************************************************************************/ + +#ifndef __ASSEMBLY__ + +/**************************************************************************** + * Public Functions Prototypes + ****************************************************************************/ + +#ifdef __cplusplus +#define EXTERN extern "C" +extern "C" +{ +#else +#define EXTERN extern +#endif + +#undef EXTERN +#ifdef __cplusplus +} +#endif + +#endif /* __ASSEMBLY__ */ +#endif /* __ARCH_XTENSA_SRC_ESP32S3_CHIP_H */ diff --git a/arch/xtensa/src/esp32s3/chip_macros.h b/arch/xtensa/src/esp32s3/chip_macros.h new file mode 100644 index 0000000000..c4e1d3f4eb --- /dev/null +++ b/arch/xtensa/src/esp32s3/chip_macros.h @@ -0,0 +1,91 @@ +/**************************************************************************** + * arch/xtensa/src/esp32s3/chip_macros.h + * + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. The + * ASF licenses this file to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance with the + * License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT + * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the + * License for the specific language governing permissions and limitations + * under the License. + * + ****************************************************************************/ + +#ifndef __ARCH_XTENSA_SRC_ESP32S3_CHIP_MACROS_H +#define __ARCH_XTENSA_SRC_ESP32S3_CHIP_MACROS_H + +/**************************************************************************** + * Included Files + ****************************************************************************/ + +#include + +/**************************************************************************** + * Pre-processor Definitions + ****************************************************************************/ + +/* This is the name of the section containing the Xtensa low level handlers + * that is used by the board linker scripts. + */ + +#define HANDLER_SECTION .iram1 + +/**************************************************************************** + * Public Data + ****************************************************************************/ + +/**************************************************************************** + * Assembly Language Macros + ****************************************************************************/ + +#ifdef __ASSEMBLY__ + +/* Macro to get the current core ID. Only uses the reg given as an argument. + * Reading PRID on the ESP108 architecture gives us 0xcdcd on the PRO + * processor and 0xabab on the APP CPU. We distinguish between the two by + * simply checking bit 1: it's 1 on the APP and 0 on the PRO processor. + */ + + .macro getcoreid reg + rsr.prid \reg + bbci \reg, 1, 1f + movi \reg, 1 + j 2f +1: + movi \reg, 0 +2: + .endm + +#endif /* __ASSEMBLY */ + +/**************************************************************************** + * Public Data + ****************************************************************************/ + +#ifndef __ASSEMBLY__ +#if defined(__cplusplus) +#define EXTERN extern "C" +extern "C" +{ +#else +#define EXTERN extern +#endif + +/**************************************************************************** + * Public Functions Prototypes + ****************************************************************************/ + +#undef EXTERN +#if defined(__cplusplus) +} +#endif + +#endif /* __ASSEMBLY__ */ +#endif /* __ARCH_XTENSA_SRC_ESP32S3_CHIP_MACROS_H */ diff --git a/arch/xtensa/src/esp32s3/chip_memory.h b/arch/xtensa/src/esp32s3/chip_memory.h new file mode 100644 index 0000000000..4df97a4d0c --- /dev/null +++ b/arch/xtensa/src/esp32s3/chip_memory.h @@ -0,0 +1,73 @@ +/**************************************************************************** + * arch/xtensa/src/esp32s3/chip_memory.h + * + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. The + * ASF licenses this file to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance with the + * License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT + * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the + * License for the specific language governing permissions and limitations + * under the License. + * + ****************************************************************************/ + +#ifndef __ARCH_XTENSA_SRC_ESP32S3_CHIP_MEMORY_H +#define __ARCH_XTENSA_SRC_ESP32S3_CHIP_MEMORY_H + +/**************************************************************************** + * Included Files + ****************************************************************************/ + +#ifndef __ASSEMBLY__ +#include +#include + +#include "hardware/esp32s3_soc.h" +#endif + +/**************************************************************************** + * Inline Functions + ****************************************************************************/ + +#ifndef __ASSEMBLY__ +#if defined(__cplusplus) +#define EXTERN extern "C" +extern "C" +{ +#else +#define EXTERN extern +#endif + +/**************************************************************************** + * Name: xtensa_sp_sane + ****************************************************************************/ + +static inline bool xtensa_sp_sane(uint32_t sp) +{ + return (esp32s3_sp_dram(sp) && ((sp & 0x0f) == 0)); +} + +/**************************************************************************** + * Name: xtensa_ptr_extram + ****************************************************************************/ + +static inline bool xtensa_ptr_exec(const void *p) +{ + return esp32s3_ptr_exec(p); +} + +#undef EXTERN +#if defined(__cplusplus) +} +#endif + +#endif /* __ASSEMBLY__ */ +#endif /* __ARCH_XTENSA_SRC_ESP32S3_CHIP_MEMORY_H */ + diff --git a/arch/xtensa/src/esp32s3/esp32s3_allocateheap.c b/arch/xtensa/src/esp32s3/esp32s3_allocateheap.c new file mode 100644 index 0000000000..48acae1b98 --- /dev/null +++ b/arch/xtensa/src/esp32s3/esp32s3_allocateheap.c @@ -0,0 +1,84 @@ +/**************************************************************************** + * arch/xtensa/src/esp32s3/esp32s3_allocateheap.c + * + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. The + * ASF licenses this file to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance with the + * License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT + * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the + * License for the specific language governing permissions and limitations + * under the License. + * + ****************************************************************************/ + +/**************************************************************************** + * Included Files + ****************************************************************************/ + +#include + +#include +#include + +#include +#include +#include +#include + +#include "xtensa.h" + +#include "hardware/esp32s3_rom_layout.h" + +/**************************************************************************** + * Pre-processor Definitions + ****************************************************************************/ + +/**************************************************************************** + * Public Functions + ****************************************************************************/ + +/**************************************************************************** + * Name: up_allocate_heap + * + * Description: + * This function will be called to dynamically set aside the heap region. + * + * For the kernel build (CONFIG_BUILD_KERNEL=y) with both kernel- and + * user-space heaps (CONFIG_MM_KERNEL_HEAP=y), this function provides the + * size of the unprotected, user-space heap. + * + * If a protected kernel-space heap is provided, the kernel heap must be + * allocated (and protected) by an analogous up_allocate_kheap(). + * + ****************************************************************************/ + +void up_allocate_heap(void **heap_start, size_t *heap_size) +{ + board_autoled_on(LED_HEAPALLOCATE); + + *heap_start = (void *)&_sheap; + *heap_size = (size_t)(ets_rom_layout_p->dram0_rtos_reserved_start - + (uintptr_t)&_sheap); +} + +/**************************************************************************** + * Name: xtensa_add_region + * + * Description: + * RAM may be added in non-contiguous chunks. This routine adds all chunks + * that may be used for heap. + * + ****************************************************************************/ + +#if CONFIG_MM_REGIONS > 1 +void xtensa_add_region(void) +{ +} +#endif diff --git a/arch/xtensa/src/esp32s3/esp32s3_clockconfig.c b/arch/xtensa/src/esp32s3/esp32s3_clockconfig.c new file mode 100644 index 0000000000..2a218d7a4b --- /dev/null +++ b/arch/xtensa/src/esp32s3/esp32s3_clockconfig.c @@ -0,0 +1,312 @@ +/**************************************************************************** + * arch/xtensa/src/esp32s3/esp32s3_clockconfig.c + * + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. The + * ASF licenses this file to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance with the + * License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT + * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the + * License for the specific language governing permissions and limitations + * under the License. + * + ****************************************************************************/ + +/**************************************************************************** + * Included Files + ****************************************************************************/ + +#include +#include + +#include "xtensa.h" +#include "xtensa_attr.h" +#include "hardware/esp32s3_soc.h" +#include "hardware/esp32s3_uart.h" +#include "hardware/esp32s3_system.h" + +/**************************************************************************** + * Pre-processor Definitions + ****************************************************************************/ + +#ifndef MIN + #define MIN(a, b) (((a) < (b)) ? (a) : (b)) +#endif + +#define DEFAULT_CPU_FREQ 80 + +/**************************************************************************** + * Private Types + ****************************************************************************/ + +enum cpu_freq_e +{ + CPU_80M = 0, + CPU_160M = 1, + CPU_240M = 2, +}; + +enum cpu_clksrc_e +{ + XTAL_CLK, + PLL_CLK, + FOSC_CLK +}; + +enum pll_freq_e +{ + PLL_320, + PLL_480 +}; + +/**************************************************************************** + * ROM Function Prototypes + ****************************************************************************/ + +/**************************************************************************** + * Name: ets_update_cpu_frequency + * + * Description: + * Set the real CPU ticks per us to the ets, so that ets_delay_us will be + * accurate. Call this function when CPU frequency is changed. + * + * Input Parameters: + * ticks_per_us - CPU ticks per us. + * + * Returned Value: + * None + * + ****************************************************************************/ + +extern void ets_update_cpu_frequency(uint32_t ticks_per_us); + +/**************************************************************************** + * Name: ets_get_cpu_frequency + * + * Description: + * Get the real CPU ticks per us to the ets. + * This function do not return real CPU ticks per us, just the record in + * ets. It can be used to check with the real CPU frequency. + * + * Input Parameters: + * None. + * + * Returned Value: + * CPU ticks per us record in ets. + * + ****************************************************************************/ + +extern uint32_t ets_get_cpu_frequency(void); + +/**************************************************************************** + * Private Functions + ****************************************************************************/ + +/**************************************************************************** + * Name: esp32s3_cpuclksrc + * + * Description: + * Select a clock source for CPU clock. + * + * Input Parameters: + * src - Any source from cpu_clksrc_e. + * + * Returned Value: + * None + * + ****************************************************************************/ + +static inline void esp32s3_cpuclksrc(enum cpu_clksrc_e src) +{ + uint32_t value; + value = VALUE_TO_FIELD(src, SYSTEM_SOC_CLK_SEL); + modifyreg32(SYSTEM_SYSCLK_CONF_REG, SYSTEM_SOC_CLK_SEL_M, value); +} + +/**************************************************************************** + * Name: esp32s3_cpudiv + * + * Description: + * Select a divider for the CPU clk. + * NOTE: The divider is not necessarily the real divisor. See TRM for the + * equivalences. + * + * Input Parameters: + * divider - A value between 0 to 2. + * + * Returned Value: + * None + * + ****************************************************************************/ + +static inline void esp32s3_cpudiv(uint8_t divider) +{ + uint32_t value; + value = VALUE_TO_FIELD(divider, SYSTEM_CPUPERIOD_SEL); + modifyreg32(SYSTEM_CPU_PER_CONF_REG, SYSTEM_CPUPERIOD_SEL_M, value); +} + +/**************************************************************************** + * Name: esp32s3_pllfreqsel + * + * Description: + * Select the PLL frequency. + * + * Input Parameters: + * freq - Any clock from enum pll_freq_e + * + * Returned Value: + * None + ****************************************************************************/ + +static inline void esp32s3_pllfreqsel(enum pll_freq_e freq) +{ + uint32_t value; + value = VALUE_TO_FIELD(freq, SYSTEM_PLL_FREQ_SEL); + modifyreg32(SYSTEM_CPU_PER_CONF_REG, SYSTEM_PLL_FREQ_SEL_M, value); +} + +/**************************************************************************** + * Public Functions + ****************************************************************************/ + +/**************************************************************************** + * Name: esp32s3_update_cpu_freq + * + * Description: + * Set the real CPU ticks per us to the ets, so that ets_delay_us + * will be accurate. Call this function when CPU frequency is changed. + * + * Input Parameters: + * ticks_per_us - CPU ticks per us + * + * Returned Value: + * None + * + ****************************************************************************/ + +void IRAM_ATTR esp32s3_update_cpu_freq(uint32_t ticks_per_us) +{ + /* Update scale factors used by esp_rom_delay_us */ + + ets_update_cpu_frequency(ticks_per_us); +} + +/**************************************************************************** + * Name: esp32s3_set_cpu_freq + * + * Description: + * Switch to one of PLL-based frequencies. + * + * Input Parameters: + * cpu_freq_mhz - Target CPU frequency + * + * Returned Value: + * None + * + ****************************************************************************/ + +void IRAM_ATTR esp32s3_set_cpu_freq(int cpu_freq_mhz) +{ + switch (cpu_freq_mhz) + { + case 80: + /* 80 MHz is obtained from the 480 MHz PLL. + * In this case CPU_CLK = PLL_CLK / 6. Config the PLL as 480 MHz + * with a 6 divider and set the source clock as PLL_CLK. + */ + + esp32s3_cpudiv(0); + break; + + case 160: + /* 160 MHz is obtained from the 480 MHz PLL. + * In this case CPU_CLK = PLL_CLK / 3. Config the PLL as 480 MHz + * with a 3 divider and set the source clock as PLL_CLK. + */ + + esp32s3_cpudiv(1); + break; + + case 240: + /* 240 MHz is obtained from the 480 MHz PLL. + * In this case CPU_CLK = PLL_CLK / 2. Config the PLL as 480 MHz + * with a 2 divider and set the source clock as PLL_CLK. + */ + + esp32s3_cpudiv(2); + break; + + default: + + /* Unsupported clock config. */ + + return; + } + + esp32s3_pllfreqsel(PLL_480); + esp32s3_cpuclksrc(PLL_CLK); + esp32s3_update_cpu_freq(cpu_freq_mhz); +} + +/**************************************************************************** + * Name: esp32s3_clockconfig + * + * Description: + * Called to initialize the ESP32-S3. This does whatever setup is needed to + * put the SoC in a usable state. This includes the initialization of + * clocking using the settings in board.h. + * + ****************************************************************************/ + +void esp32s3_clockconfig(void) +{ + /* Configure the CPU frequency */ + + esp32s3_set_cpu_freq(CONFIG_ESP32S3_DEFAULT_CPU_FREQ_MHZ); +} + +/**************************************************************************** + * Name: esp_clk_cpu_freq + * + * Description: + * Get CPU frequency + * + * Input Parameters: + * None + * + * Returned Value: + * CPU frequency + * + ****************************************************************************/ + +int IRAM_ATTR esp_clk_cpu_freq(void) +{ + return (int)ets_get_cpu_frequency() * MHZ; +} + +/**************************************************************************** + * Name: esp_clk_apb_freq + * + * Description: + * Return current APB clock frequency. + * + * Input Parameters: + * None + * + * Returned Value: + * APB clock frequency, in Hz + * + ****************************************************************************/ + +int IRAM_ATTR esp_clk_apb_freq(void) +{ + return MIN(ets_get_cpu_frequency(), 80) * MHZ; +} + diff --git a/arch/xtensa/src/esp32s3/esp32s3_clockconfig.h b/arch/xtensa/src/esp32s3/esp32s3_clockconfig.h new file mode 100644 index 0000000000..5cae74280b --- /dev/null +++ b/arch/xtensa/src/esp32s3/esp32s3_clockconfig.h @@ -0,0 +1,120 @@ +/**************************************************************************** + * arch/xtensa/src/esp32s3/esp32s3_clockconfig.h + * + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. The + * ASF licenses this file to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance with the + * License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT + * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the + * License for the specific language governing permissions and limitations + * under the License. + * + ****************************************************************************/ + +#ifndef __ARCH_XTENSA_SRC_ESP32S3_ESP32S3_CLOCKCONFIG_H +#define __ARCH_XTENSA_SRC_ESP32S3_ESP32S3_CLOCKCONFIG_H + +/**************************************************************************** + * Included Files + ****************************************************************************/ + +#include + +#include + +/**************************************************************************** + * Public Function Prototypes + ****************************************************************************/ + +/**************************************************************************** + * Name: esp32s3_update_cpu_freq + * + * Description: + * Set the real CPU ticks per us to the ets, so that ets_delay_us + * will be accurate. Call this function when CPU frequency is changed. + * + * Input Parameters: + * ticks_per_us - CPU ticks per us + * + * Returned Value: + * None. + * + ****************************************************************************/ + +void esp32s3_update_cpu_freq(uint32_t ticks_per_us); + +/**************************************************************************** + * Name: esp32s3_set_cpu_freq + * + * Description: + * Switch to one of PLL-based frequencies. + * Current frequency can be XTAL or PLL. + * + * Input Parameters: + * cpu_freq_mhz - new CPU frequency + * + * Returned Value: + * None. + * + ****************************************************************************/ + +void esp32s3_set_cpu_freq(int cpu_freq_mhz); + +/**************************************************************************** + * Name: esp32s3_clockconfig + * + * Description: + * Called to initialize the ESP32-S3. This does whatever setup is needed to + * put the SoC in a usable state. This includes the initialization of + * clocking using the settings in board.h. + * + * Input Parameters: + * None. + * + * Returned Value: + * None. + * + ****************************************************************************/ + +void esp32s3_clockconfig(void); + +/**************************************************************************** + * Name: esp_clk_cpu_freq + * + * Description: + * Get the current CPU frequency. + * + * Input Parameters: + * None. + * + * Returned Value: + * CPU frequency in Hz. + * + ****************************************************************************/ + +int esp_clk_cpu_freq(void); + +/**************************************************************************** + * Name: esp_clk_apb_freq + * + * Description: + * Return current APB clock frequency. + * + * Input Parameters: + * None. + * + * Returned Value: + * APB clock frequency in Hz. + * + ****************************************************************************/ + +int esp_clk_apb_freq(void); + +#endif /* __ARCH_XTENSA_SRC_ESP32S3_ESP32S3_CLOCKCONFIG_H */ diff --git a/arch/xtensa/src/esp32s3/esp32s3_config.h b/arch/xtensa/src/esp32s3/esp32s3_config.h new file mode 100644 index 0000000000..ea510fdf18 --- /dev/null +++ b/arch/xtensa/src/esp32s3/esp32s3_config.h @@ -0,0 +1,64 @@ +/**************************************************************************** + * arch/xtensa/src/esp32s3/esp32s3_config.h + * + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. The + * ASF licenses this file to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance with the + * License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT + * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the + * License for the specific language governing permissions and limitations + * under the License. + * + ****************************************************************************/ + +#ifndef __ARCH_XTENSA_SRC_ESP32S3_ESP32S3_CONFIG_H +#define __ARCH_XTENSA_SRC_ESP32S3_ESP32S3_CONFIG_H + +/**************************************************************************** + * Included Files + ****************************************************************************/ + +#include + +#include +#include + +/**************************************************************************** + * Pre-processor Definitions + ****************************************************************************/ + +/* UARTs ********************************************************************/ + +/* Are any UARTs enabled? */ + +#undef HAVE_UART_DEVICE +#ifdef CONFIG_ESP32S3_UART +# define HAVE_UART_DEVICE 1 +#endif + +/* Serial Console ***********************************************************/ + +/* Is there a serial console? There should be no more than one defined. It + * could be on any UARTn. n E {0,1} + */ + +#undef CONSOLE_UART +#if defined(CONFIG_UART0_SERIAL_CONSOLE) && defined(CONFIG_ESP32S3_UART0) +# undef CONFIG_UART1_SERIAL_CONSOLE +# define CONSOLE_UART 1 +#elif defined(CONFIG_UART1_SERIAL_CONSOLE) && defined(CONFIG_ESP32S3_UART1) +# undef CONFIG_UART0_SERIAL_CONSOLE +# define CONSOLE_UART 1 +#else +# undef CONFIG_UART0_SERIAL_CONSOLE +# undef CONFIG_UART1_SERIAL_CONSOLE +#endif + +#endif /* __ARCH_XTENSA_SRC_ESP32S3_ESP32S3_CONFIG_H */ diff --git a/arch/xtensa/src/esp32s3/esp32s3_gpio.c b/arch/xtensa/src/esp32s3/esp32s3_gpio.c new file mode 100644 index 0000000000..79923418d3 --- /dev/null +++ b/arch/xtensa/src/esp32s3/esp32s3_gpio.c @@ -0,0 +1,205 @@ +/**************************************************************************** + * arch/xtensa/src/esp32s3/esp32s3_gpio.c + * + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. The + * ASF licenses this file to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance with the + * License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT + * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the + * License for the specific language governing permissions and limitations + * under the License. + * + ****************************************************************************/ + +/**************************************************************************** + * Included Files + ****************************************************************************/ + +#include + +#include +#include +#include +#include + +#include +#include +#include +#include + +#include "xtensa.h" +#include "esp32s3_irq.h" +#include "hardware/esp32s3_iomux.h" +#include "hardware/esp32s3_gpio.h" + +#include "esp32s3_gpio.h" + +/**************************************************************************** + * Pre-processor Definitions + ****************************************************************************/ + +/**************************************************************************** + * Private Data + ****************************************************************************/ + +/**************************************************************************** + * Private Functions + ****************************************************************************/ + +/**************************************************************************** + * Public Functions + ****************************************************************************/ + +/**************************************************************************** + * Name: esp32s3_configgpio + * + * Description: + * Configure a GPIO pin based on encoded pin attributes. + * + ****************************************************************************/ + +int esp32s3_configgpio(int pin, gpio_pinattr_t attr) +{ + uintptr_t regaddr; + uint32_t func; + uint32_t cntrl; + uint32_t pin2func; + + DEBUGASSERT(pin >= 0 && pin <= ESP32S3_NGPIOS); + + func = 0; + cntrl = 0; + + /* Handle input pins */ + + if ((attr & INPUT) != 0) + { + putreg32((1ul << pin), GPIO_ENABLE_W1TC_REG); + + /* Input enable */ + + func |= FUN_IE; + + if ((attr & PULLUP) != 0) + { + func |= FUN_PU; + } + else if ((attr & PULLDOWN) != 0) + { + func |= FUN_PD; + } + } + + /* Handle output pins */ + + if ((attr & OUTPUT) != 0) + { + putreg32((1ul << pin), GPIO_ENABLE_W1TS_REG); + } + + /* Add drivers */ + + func |= (uint32_t)(2ul << FUN_DRV_S); + + /* Select the pad's function. If no function was given, consider it a + * normal input or output (i.e. function1). + */ + + if ((attr & FUNCTION_MASK) != 0) + { + func |= (uint32_t)(((attr >> FUNCTION_SHIFT) - 1) << MCU_SEL_S); + } + else + { + func |= (uint32_t)(PIN_FUNC_GPIO << MCU_SEL_S); + } + + if ((attr & OPEN_DRAIN) != 0) + { + cntrl |= (1 << GPIO_PIN_PAD_DRIVER_S); + } + + /* Set the pin function to its register */ + + pin2func = (pin + 1) * 4; + regaddr = REG_IO_MUX_BASE + pin2func; + putreg32(func, regaddr); + + regaddr = GPIO_REG(pin); + putreg32(cntrl, regaddr); + return OK; +} + +/**************************************************************************** + * Name: esp32s3_gpio_matrix_in + * + * Description: + * Set gpio input to a signal + * NOTE: one gpio can input to several signals + * If gpio == 0x3c, cancel input to the signal, input 0 to signal. + * If gpio == 0x3a, input nothing to signal. + * If gpio == 0x38, cancel input to the signal, input 1 to signal. + * + ****************************************************************************/ + +void esp32s3_gpio_matrix_in(uint32_t gpio, uint32_t signal_idx, bool inv) +{ + uint32_t regaddr = GPIO_FUNC0_IN_SEL_CFG_REG + (signal_idx * 4); + uint32_t regval = (gpio << GPIO_FUNC0_IN_SEL_S); + + if (inv) + { + regval |= GPIO_FUNC0_IN_INV_SEL; + } + + if (gpio != 0x3a) + { + regval |= GPIO_SIG0_IN_SEL; + } + + putreg32(regval, regaddr); +} + +/**************************************************************************** + * Name: esp32s3_gpio_matrix_out + * + * Description: + * Set signal output to gpio + * NOTE: one signal can output to several gpios + * If signal_idx == 0x100, cancel output put to the gpio + * + ****************************************************************************/ + +void esp32s3_gpio_matrix_out(uint32_t gpio, uint32_t signal_idx, + bool out_inv, bool oen_inv) +{ + uint32_t regaddr = GPIO_FUNC0_OUT_SEL_CFG_REG + (gpio * 4); + uint32_t regval = signal_idx << GPIO_FUNC0_OUT_SEL_S; + + if (gpio >= ESP32S3_NGPIOS) + { + return; + } + + putreg32(1ul << gpio, GPIO_ENABLE_W1TS_REG); + + if (out_inv) + { + regval |= GPIO_FUNC0_OUT_INV_SEL; + } + + if (oen_inv) + { + regval |= GPIO_FUNC0_OEN_INV_SEL; + } + + putreg32(regval, regaddr); +} + diff --git a/arch/xtensa/src/esp32s3/esp32s3_gpio.h b/arch/xtensa/src/esp32s3/esp32s3_gpio.h new file mode 100644 index 0000000000..b254dd3f40 --- /dev/null +++ b/arch/xtensa/src/esp32s3/esp32s3_gpio.h @@ -0,0 +1,163 @@ +/**************************************************************************** + * arch/xtensa/src/esp32s3/esp32s3_gpio.h + * + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. The + * ASF licenses this file to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance with the + * License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT + * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the + * License for the specific language governing permissions and limitations + * under the License. + * + ****************************************************************************/ + +#ifndef __ARCH_XTENSA_SRC_ESP32S3_ESP32S3_GPIO_H +#define __ARCH_XTENSA_SRC_ESP32S3_ESP32S3_GPIO_H + +/**************************************************************************** + * Included Files + ****************************************************************************/ + +#include + +#include +#include + +/**************************************************************************** + * Pre-processor Definitions + ****************************************************************************/ + +#define MATRIX_DETACH_OUT_SIG 0x100 /* Detach an OUTPUT signal */ +#define MATRIX_DETACH_IN_LOW_PIN 0x3c /* Detach non-inverted INPUT signal */ +#define MATRIX_DETACH_IN_LOW_HIGH 0x38 /* Detach inverted INPUT signal */ + +/* Bit-encoded input to esp32s3_configgpio() ********************************/ + +/* Encoded pin attributes used with esp32s3_configgpio() + * + * 8 7 6 5 4 3 2 1 0 + * -- -- -- -- -- -- -- -- -- + * FN FN FN OD PD PU F O I + */ + +#define PINMODE_SHIFT 0 +#define PINMODE_MASK (7 << PINMODE_SHIFT) +# define INPUT (1 << 0) +# define OUTPUT (1 << 1) +# define FUNCTION (1 << 2) + +#define PULLUP (1 << 3) +#define PULLDOWN (1 << 4) +#define OPEN_DRAIN (1 << 5) +#define FUNCTION_SHIFT 6 +#define FUNCTION_MASK (7 << FUNCTION_SHIFT) +# define FUNCTION_0 (1 << FUNCTION_SHIFT) +# define FUNCTION_1 (2 << FUNCTION_SHIFT) +# define FUNCTION_2 (3 << FUNCTION_SHIFT) +# define FUNCTION_3 (4 << FUNCTION_SHIFT) +# define FUNCTION_4 (5 << FUNCTION_SHIFT) + +#define INPUT_PULLUP (INPUT | PULLUP) +#define INPUT_PULLDOWN (INPUT | PULLDOWN) +#define OUTPUT_OPEN_DRAIN (OUTPUT | OPEN_DRAIN) +#define INPUT_FUNCTION (INPUT | FUNCTION) +# define INPUT_FUNCTION_0 (INPUT_FUNCTION | FUNCTION_0) +# define INPUT_FUNCTION_1 (INPUT_FUNCTION | FUNCTION_1) +# define INPUT_FUNCTION_2 (INPUT_FUNCTION | FUNCTION_2) +# define INPUT_FUNCTION_3 (INPUT_FUNCTION | FUNCTION_3) +# define INPUT_FUNCTION_4 (INPUT_FUNCTION | FUNCTION_4) +#define OUTPUT_FUNCTION (OUTPUT | FUNCTION) +# define OUTPUT_FUNCTION_0 (OUTPUT_FUNCTION | FUNCTION_0) +# define OUTPUT_FUNCTION_1 (OUTPUT_FUNCTION | FUNCTION_1) +# define OUTPUT_FUNCTION_2 (OUTPUT_FUNCTION | FUNCTION_2) +# define OUTPUT_FUNCTION_3 (OUTPUT_FUNCTION | FUNCTION_3) +# define OUTPUT_FUNCTION_4 (OUTPUT_FUNCTION | FUNCTION_4) + +/* Interrupt type used with esp32s3_gpioirqenable() */ + +#define DISABLED 0x00 +#define RISING 0x01 +#define FALLING 0x02 +#define CHANGE 0x03 +#define ONLOW 0x04 +#define ONHIGH 0x05 + +/**************************************************************************** + * Public Types + ****************************************************************************/ + +#ifndef __ASSEMBLY__ + +/* Must be big enough to hold the above encodings */ + +typedef uint16_t gpio_pinattr_t; +typedef uint8_t gpio_intrtype_t; + +/**************************************************************************** + * Public Data + ****************************************************************************/ + +#undef EXTERN +#if defined(__cplusplus) +#define EXTERN extern "C" +extern "C" +{ +#else +#define EXTERN extern +#endif + +/**************************************************************************** + * Public Function Prototypes + ****************************************************************************/ + +/**************************************************************************** + * Name: esp32s3_configgpio + * + * Description: + * Configure a GPIO pin based on encoded pin attributes. + * + ****************************************************************************/ + +int esp32s3_configgpio(int pin, gpio_pinattr_t attr); + +/**************************************************************************** + * Name: esp32s3_gpio_matrix_in + * + * Description: + * Set gpio input to a signal + * NOTE: one gpio can input to several signals + * If gpio == 0x3c, cancel input to the signal, input 0 to signal. + * If gpio == 0x3a, input nothing to signal. + * If gpio == 0x38, cancel input to the signal, input 1 to signal. + * + ****************************************************************************/ + +void esp32s3_gpio_matrix_in(uint32_t gpio, uint32_t signal_idx, bool inv); + +/**************************************************************************** + * Name: esp32s3_gpio_matrix_out + * + * Description: + * Set signal output to gpio + * NOTE: one signal can output to several gpios + * If signal_idx == 0x100, cancel output put to the gpio + * + ****************************************************************************/ + +void esp32s3_gpio_matrix_out(uint32_t gpio, uint32_t signal_idx, + bool out_inv, bool oen_inv); + +#ifdef __cplusplus +} +#endif +#undef EXTERN + +#endif /* __ASSEMBLY__ */ +#endif /* __ARCH_XTENSA_SRC_ESP32S3_ESP32S3_GPIO_H */ diff --git a/arch/xtensa/src/esp32s3/esp32s3_idle.c b/arch/xtensa/src/esp32s3/esp32s3_idle.c new file mode 100644 index 0000000000..d3c4167c7b --- /dev/null +++ b/arch/xtensa/src/esp32s3/esp32s3_idle.c @@ -0,0 +1,83 @@ +/**************************************************************************** + * arch/xtensa/src/esp32s3/esp32s3_idle.c + * + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. The + * ASF licenses this file to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance with the + * License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT + * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the + * License for the specific language governing permissions and limitations + * under the License. + * + ****************************************************************************/ + +/**************************************************************************** + * Included Files + ****************************************************************************/ + +#include + +#include +#include +#include + +#include "xtensa.h" + +/**************************************************************************** + * Pre-processor Definitions + ****************************************************************************/ + +/**************************************************************************** + * Private Functions + ****************************************************************************/ + +/**************************************************************************** + * Public Functions + ****************************************************************************/ + +/**************************************************************************** + * Name: up_idle + * + * Description: + * up_idle() is the logic that will be executed when their is no other + * ready-to-run task. This is processor idle time and will continue until + * some interrupt occurs to cause a context switch from the idle task. + * + * Processing in this state may be processor-specific. e.g., this is where + * power management operations might be performed. + * + * Input Parameters: + * None. + * + * Returned Value: + * None. + * + ****************************************************************************/ + +void up_idle(void) +{ +#if defined(CONFIG_SUPPRESS_INTERRUPTS) || defined(CONFIG_SUPPRESS_TIMER_INTS) + /* If the system is idle and there are no timer interrupts, then process + * "fake" timer interrupts. Hopefully, something will wake up. + */ + + nxsched_process_timer(); +#else + + /* This would be an appropriate place to put some MCU-specific logic to + * sleep in a reduced power mode until an interrupt occurs to save power + */ + +#if XCHAL_HAVE_INTERRUPTS + __asm__ __volatile__ ("waiti 0"); +#endif + +#endif +} diff --git a/arch/xtensa/src/esp32s3/esp32s3_irq.c b/arch/xtensa/src/esp32s3/esp32s3_irq.c new file mode 100644 index 0000000000..75163d1ab4 --- /dev/null +++ b/arch/xtensa/src/esp32s3/esp32s3_irq.c @@ -0,0 +1,686 @@ +/**************************************************************************** + * arch/xtensa/src/esp32s3/esp32s3_irq.c + * + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. The + * ASF licenses this file to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance with the + * License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT + * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the + * License for the specific language governing permissions and limitations + * under the License. + * + ****************************************************************************/ + +/**************************************************************************** + * Included Files + ****************************************************************************/ + +#include + +#include +#include +#include +#include +#include + +#include +#include +#include +#include +#include + +#include "xtensa.h" + +#include "hardware/esp32s3_soc.h" +#include "hardware/esp32s3_system.h" +#include "hardware/esp32s3_interrupt_core0.h" + +#include "esp32s3_irq.h" + +/**************************************************************************** + * Pre-processor Definitions + ****************************************************************************/ + +/* IRQ to CPU and CPU interrupts mapping: + * + * Encoding: CIIIIIII + * C: CPU that enabled the interrupt (0 = PRO, 1 = APP). + * I: Associated CPU interrupt. + */ + +#define IRQ_UNMAPPED 0xff +#define IRQ_GETCPU(m) (((m) & 0x80) >> 0x07) +#define IRQ_GETCPUINT(m) ((m) & 0x7f) +#define IRQ_MKMAP(c, i) (((c) << 0x07) | (i)) + +/* CPU interrupts to peripheral mapping: + * + * Encoding: EPPPPPPP + * E: CPU interrupt status (0 = Disabled, 1 = Enabled). + * P: Attached peripheral. + */ + +#define CPUINT_UNASSIGNED 0x7f +#define CPUINT_GETEN(m) (((m) & 0x80) >> 0x07) +#define CPUINT_GETIRQ(m) ((m) & 0x7f) +#define CPUINT_ASSIGN(c) (((c) & 0x7f) | 0x80) +#define CPUINT_DISABLE(m) ((m) & 0x7f) +#define CPUINT_ENABLE(m) ((m) | 0x80) + +/* Mapping Peripheral IDs to map register addresses. */ + +#define CORE0_MAP_REGADDR(n) (DR_REG_INTERRUPT_CORE0_BASE + ((n) << 2)) + +/* CPU interrupts can be detached from any peripheral source by setting the + * map register to an internal CPU interrupt (6, 7, 11, 15, 16, or 29). + */ + +#define NO_CPUINT ESP32S3_CPUINT_TIMER0 + +/* Priority range is 1-5 */ + +#define ESP32S3_MIN_PRIORITY 1 +#define ESP32S3_MAX_PRIORITY 5 +#define ESP32S3_PRIO_INDEX(p) ((p) - ESP32S3_MIN_PRIORITY) + +/**************************************************************************** + * Public Data + ****************************************************************************/ + +/* g_current_regs[] holds a reference to the current interrupt level + * register storage structure. It is non-NULL only during interrupt + * processing. Access to g_current_regs[] must be through the macro + * CURRENT_REGS for portability. + */ + +volatile uint32_t *g_current_regs[1]; + +/**************************************************************************** + * Private Data + ****************************************************************************/ + +/* Maps a CPU interrupt to the IRQ of the attached peripheral interrupt */ + +static uint8_t g_cpu0_intmap[ESP32S3_NCPUINTS]; + +static volatile uint8_t g_irqmap[NR_IRQS]; + +/* g_intenable[] is a shadow copy of the per-CPU INTENABLE register + * content. + */ + +static uint32_t g_intenable[1]; + +/* Bitsets for free, unallocated CPU interrupts available to peripheral + * devices. + */ + +static uint32_t g_cpu0_freeints = ESP32S3_CPUINT_PERIPHSET; + +/* Bitsets for each interrupt priority 1-5 */ + +static const uint32_t g_priority[5] = +{ + ESP32S3_INTPRI1_MASK, + ESP32S3_INTPRI2_MASK, + ESP32S3_INTPRI3_MASK, + ESP32S3_INTPRI4_MASK, + ESP32S3_INTPRI5_MASK +}; + +/**************************************************************************** + * Private Functions + ****************************************************************************/ + +/**************************************************************************** + * Name: esp32s3_intinfo + * + * Description: + * Return the CPU interrupt map of the given CPU and the register map + * of the given peripheral. + * + ****************************************************************************/ + +static void esp32s3_intinfo(int cpu, int periphid, + uintptr_t *regaddr, uint8_t **intmap) +{ + *regaddr = CORE0_MAP_REGADDR(periphid); + *intmap = g_cpu0_intmap; +} + +/**************************************************************************** + * Name: esp32s3_getcpuint + * + * Description: + * Get a free CPU interrupt for a peripheral device. This function will + * not ignore all of the pre-allocated CPU interrupts for internal + * devices. + * + * Input Parameters: + * intmask - mask of candidate CPU interrupts. The CPU interrupt will be + * be allocated from free interrupts within this set + * + * Returned Value: + * On success, a CPU interrupt number is returned. + * A negated errno is returned on failure. + * + ****************************************************************************/ + +static int esp32s3_getcpuint(uint32_t intmask) +{ + uint32_t *freeints; + uint32_t bitmask; + uint32_t intset; + int cpuint; + int ret = -ENOMEM; + int cpu = 0; + + /* Check if there are CPU interrupts with the requested properties + * available. + */ + + cpu = up_cpu_index(); + freeints = &g_cpu0_freeints; + + intset = *freeints & intmask; + if (intset != 0) + { + /* Skip over initial unavailable CPU interrupts quickly in groups + * of 8 interrupt. + */ + + for (cpuint = 0, bitmask = 0xff; + cpuint <= ESP32S3_CPUINT_MAX && (intset & bitmask) == 0; + cpuint += 8, bitmask <<= 8); + + /* Search for an unallocated CPU interrupt number in the remaining + * intset. + */ + + for (; cpuint <= ESP32S3_CPUINT_MAX; cpuint++) + { + /* If the bit corresponding to the CPU interrupt is '1', then + * that CPU interrupt is available. + */ + + bitmask = 1ul << cpuint; + if ((intset & bitmask) != 0) + { + /* Got it! */ + + *freeints &= ~bitmask; + ret = cpuint; + break; + } + } + } + + /* Enable the CPU interrupt now. The interrupt is still not attached + * to any peripheral and thus has no effect. + */ + + if (ret >= 0) + { + xtensa_enable_cpuint(&g_intenable[cpu], 1ul << ret); + } + + return ret; +} + +/**************************************************************************** + * Name: esp32s3_alloc_cpuint + * + * Description: + * Allocate a level CPU interrupt + * + * Input Parameters: + * priority - Priority of the CPU interrupt (1-5) + * type - Interrupt type (level or edge). + * + * Returned Value: + * On success, the allocated CPU interrupt number is returned. + * A negated errno is returned on failure. The only possible failure + * is that all CPU interrupts of the requested type have already been + * allocated. + * + ****************************************************************************/ + +static int esp32s3_alloc_cpuint(int priority, int type) +{ + uint32_t mask; + + DEBUGASSERT(priority >= ESP32S3_MIN_PRIORITY && + priority <= ESP32S3_MAX_PRIORITY); + DEBUGASSERT(type == ESP32S3_CPUINT_LEVEL || + type == ESP32S3_CPUINT_EDGE); + + if (type == ESP32S3_CPUINT_LEVEL) + { + /* Check if there are any level CPU interrupts available at the + * requested interrupt priority. + */ + + mask = g_priority[ESP32S3_PRIO_INDEX(priority)] & + ESP32S3_CPUINT_LEVELSET; + } + else + { + /* Check if there are any edge CPU interrupts available at the + * requested interrupt priority. + */ + + mask = g_priority[ESP32S3_PRIO_INDEX(priority)] & + ESP32S3_CPUINT_EDGESET; + } + + return esp32s3_getcpuint(mask); +} + +/**************************************************************************** + * Name: esp32s3_free_cpuint + * + * Description: + * Free a previously allocated CPU interrupt + * + * Input Parameters: + * The CPU interrupt number to be freed + * + * Returned Value: + * None + * + ****************************************************************************/ + +static void esp32s3_free_cpuint(int cpuint) +{ + uint32_t *freeints; + uint32_t bitmask; + + DEBUGASSERT(cpuint >= 0 && cpuint <= ESP32S3_CPUINT_MAX); + + /* Mark the CPU interrupt as available */ + + bitmask = 1ul << cpuint; + + freeints = &g_cpu0_freeints; + + DEBUGASSERT((*freeints & bitmask) == 0); + *freeints |= bitmask; +} + +/**************************************************************************** + * Public Functions + ****************************************************************************/ + +/**************************************************************************** + * Name: up_irqinitialize + ****************************************************************************/ + +void up_irqinitialize(void) +{ + int i; + for (i = 0; i < NR_IRQS; i++) + { + g_irqmap[i] = IRQ_UNMAPPED; + } + + /* Hard code special cases. */ + + g_irqmap[XTENSA_IRQ_TIMER0] = IRQ_MKMAP(0, ESP32S3_CPUINT_TIMER0); + + /* Initialize CPU interrupts */ + + esp32s3_cpuint_initialize(); + +#ifndef CONFIG_SUPPRESS_INTERRUPTS + /* And finally, enable interrupts. Also clears PS.EXCM */ + + up_irq_enable(); +#endif +} + +/**************************************************************************** + * Name: up_disable_irq + * + * Description: + * Disable the IRQ specified by 'irq' + * + ****************************************************************************/ + +void up_disable_irq(int irq) +{ + int cpu = IRQ_GETCPU(g_irqmap[irq]); + int cpuint = IRQ_GETCPUINT(g_irqmap[irq]); + + if (g_irqmap[irq] == IRQ_UNMAPPED) + { + /* This interrupt is already disabled. */ + + return; + } + + DEBUGASSERT(cpuint >= 0 && cpuint <= ESP32S3_CPUINT_MAX); + DEBUGASSERT(cpu == 0); + + if (irq < XTENSA_NIRQ_INTERNAL) + { + /* This is an internal CPU interrupt, it cannot be disabled using + * the Interrupt Matrix. + */ + + xtensa_disable_cpuint(&g_intenable[cpu], 1ul << cpuint); + } + else + { + /* A peripheral interrupt, use the Interrupt Matrix to disable it. */ + + int periph = ESP32S3_IRQ2PERIPH(irq); + uintptr_t regaddr; + uint8_t *intmap; + + DEBUGASSERT(periph >= 0 && periph < ESP32S3_NPERIPHERALS); + esp32s3_intinfo(cpu, periph, ®addr, &intmap); + + intmap[cpuint] = CPUINT_DISABLE(intmap[cpuint]); + putreg32(NO_CPUINT, regaddr); + } +} + +/**************************************************************************** + * Name: up_enable_irq + * + * Description: + * Enable the IRQ specified by 'irq' + * + ****************************************************************************/ + +void up_enable_irq(int irq) +{ + int cpu = IRQ_GETCPU(g_irqmap[irq]); + int cpuint = IRQ_GETCPUINT(g_irqmap[irq]); + + DEBUGASSERT(cpuint >= 0 && cpuint <= ESP32S3_CPUINT_MAX); + DEBUGASSERT(cpu == 0); + + if (irq < XTENSA_NIRQ_INTERNAL) + { + /* Enable the CPU interrupt now for internal CPU. */ + + xtensa_enable_cpuint(&g_intenable[cpu], 1ul << cpuint); + } + else + { + /* For peripheral interrupts, attach the interrupt to the peripheral; + * the CPU interrupt was already enabled when allocated. + */ + + int periph = ESP32S3_IRQ2PERIPH(irq); + uintptr_t regaddr; + uint8_t *intmap; + + DEBUGASSERT(periph >= 0 && periph < ESP32S3_NPERIPHERALS); + + esp32s3_intinfo(cpu, periph, ®addr, &intmap); + + intmap[cpuint] = CPUINT_ENABLE(intmap[cpuint]); + putreg32(cpuint, regaddr); + } +} + +/**************************************************************************** + * Name: esp32s3_cpuint_initialize + * + * Description: + * Initialize CPU interrupts + * + * Input Parameters: + * None + * + * Returned Value: + * Zero (OK) is returned on success; A negated errno value is returned on + * any failure. + * + ****************************************************************************/ + +int esp32s3_cpuint_initialize(void) +{ + uintptr_t regaddr; + uint8_t *intmap; + int i; + + /* Disable all CPU interrupts on this CPU */ + + xtensa_disable_all(); + + /* Detach all peripheral sources PRO CPU interrupts */ + + for (i = 0; i < ESP32S3_NPERIPHERALS; i++) + { + regaddr = CORE0_MAP_REGADDR(i); + + putreg32(NO_CPUINT, regaddr); + } + + /* Initialize CPU interrupt-to-IRQ mapping table */ + + intmap = g_cpu0_intmap; + + /* Indicate that no peripheral interrupts are assigned to CPU interrupts */ + + memset(intmap, CPUINT_UNASSIGNED, ESP32S3_NCPUINTS); + + /* Special case the 6 internal interrupts. + * + * CPU interrupt bit IRQ number + * --------------------------- --------------------- + * ESP32S3_CPUINT_TIMER0 6 XTENSA_IRQ_TIMER0 0 + * ESP32S3_CPUINT_SOFTWARE0 7 Not yet defined + * ESP32S3_CPUINT_PROFILING 11 Not yet defined + * ESP32S3_CPUINT_TIMER1 15 XTENSA_IRQ_TIMER1 1 + * ESP32S3_CPUINT_TIMER2 16 XTENSA_IRQ_TIMER2 2 + * ESP32S3_CPUINT_SOFTWARE1 29 Not yet defined + */ + + intmap[ESP32S3_CPUINT_TIMER0] = CPUINT_ASSIGN(XTENSA_IRQ_TIMER0); + intmap[ESP32S3_CPUINT_TIMER1] = CPUINT_ASSIGN(XTENSA_IRQ_TIMER1); + intmap[ESP32S3_CPUINT_TIMER2] = CPUINT_ASSIGN(XTENSA_IRQ_TIMER2); + + return OK; +} + +/**************************************************************************** + * Name: esp32s3_setup_irq + * + * Description: + * This function sets up the IRQ. It allocates a CPU interrupt of the given + * priority and type and attaches it to the given peripheral. + * + * Input Parameters: + * cpu - The CPU to receive the interrupt 0=PRO CPU 1=APP CPU + * periphid - The peripheral number from irq.h to be assigned to + * a CPU interrupt. + * priority - Interrupt's priority (1 - 5). + * type - Interrupt's type (level or edge). + * + * Returned Value: + * The allocated CPU interrupt on success, a negated errno value on + * failure. + * + ****************************************************************************/ + +int esp32s3_setup_irq(int cpu, int periphid, int priority, int type) +{ + irqstate_t irqstate; + uintptr_t regaddr; + uint8_t *intmap; + int irq; + int cpuint; + + irqstate = enter_critical_section(); + + /* Setting up an IRQ includes the following steps: + * 1. Allocate a CPU interrupt. + * 2. Attach that CPU interrupt to the peripheral. + * 3. Map the CPU interrupt to the IRQ to ease searching later. + */ + + cpuint = esp32s3_alloc_cpuint(priority, type); + if (cpuint < 0) + { + irqerr("Unable to allocate CPU interrupt for priority=%d and type=%d", + priority, type); + leave_critical_section(irqstate); + + return cpuint; + } + + irq = ESP32S3_PERIPH2IRQ(periphid); + + DEBUGASSERT(periphid >= 0 && periphid < ESP32S3_NPERIPHERALS); + DEBUGASSERT(cpuint >= 0 && cpuint <= ESP32S3_CPUINT_MAX); + + esp32s3_intinfo(cpu, periphid, ®addr, &intmap); + + DEBUGASSERT(intmap[cpuint] == CPUINT_UNASSIGNED); + + intmap[cpuint] = CPUINT_ASSIGN(periphid + XTENSA_IRQ_FIRSTPERIPH); + g_irqmap[irq] = IRQ_MKMAP(cpu, cpuint); + + putreg32(cpuint, regaddr); + + leave_critical_section(irqstate); + + return cpuint; +} + +/**************************************************************************** + * Name: esp32s3_teardown_irq + * + * Description: + * This function undoes the operations done by esp32s3_setup_irq. + * It detaches a peripheral interrupt from a CPU interrupt and frees the + * CPU interrupt. + * + * Input Parameters: + * cpu - The CPU to receive the interrupt 0=PRO CPU 1=APP CPU + * periphid - The peripheral number from irq.h to be detached from the + * CPU interrupt. + * cpuint - The CPU interrupt from which the peripheral interrupt will + * be detached. + * + * Returned Value: + * None + * + ****************************************************************************/ + +void esp32s3_teardown_irq(int cpu, int periphid, int cpuint) +{ + irqstate_t irqstate; + uintptr_t regaddr; + uint8_t *intmap; + int irq; + + irqstate = enter_critical_section(); + + /* Tearing down an IRQ includes the following steps: + * 1. Free the previously allocated CPU interrupt. + * 2. Detach the interrupt from the peripheral. + * 3. Unmap the IRQ from the IRQ-to-cpuint map. + */ + + esp32s3_free_cpuint(cpuint); + + irq = ESP32S3_PERIPH2IRQ(periphid); + + DEBUGASSERT(periphid >= 0 && periphid < ESP32S3_NPERIPHERALS); + + esp32s3_intinfo(cpu, periphid, ®addr, &intmap); + + DEBUGASSERT(intmap[cpuint] != CPUINT_UNASSIGNED); + intmap[cpuint] = CPUINT_UNASSIGNED; + g_irqmap[irq] = IRQ_UNMAPPED; + + putreg32(NO_CPUINT, regaddr); + + leave_critical_section(irqstate); +} + +/**************************************************************************** + * Name: xtensa_int_decode + * + * Description: + * Determine the peripheral that generated the interrupt and dispatch + * handling to the registered interrupt handler via xtensa_irq_dispatch(). + * + * Input Parameters: + * cpuints - Set of pending interrupts valid for this level + * regs - Saves processor state on the stack + * + * Returned Value: + * Normally the same value as regs is returned. But, in the event of an + * interrupt level context switch, the returned value will, instead point + * to the saved processor state in the TCB of the newly started task. + * + ****************************************************************************/ + +uint32_t *xtensa_int_decode(uint32_t cpuints, uint32_t *regs) +{ + uint8_t *intmap; + uint32_t mask; + int bit; + +#ifdef CONFIG_ARCH_LEDS_CPU_ACTIVITY + board_autoled_on(LED_CPU); +#endif + + intmap = g_cpu0_intmap; + + /* Skip over zero bits, eight at a time */ + + for (bit = 0, mask = 0xff; + bit < ESP32S3_NCPUINTS && (cpuints & mask) == 0; + bit += 8, mask <<= 8); + + /* Process each pending CPU interrupt */ + + for (; bit < ESP32S3_NCPUINTS && cpuints != 0; bit++) + { + mask = 1 << bit; + if ((cpuints & mask) != 0) + { + /* Extract the IRQ number from the mapping table */ + + uint8_t irq = CPUINT_GETIRQ(intmap[bit]); + + DEBUGASSERT(CPUINT_GETEN(intmap[bit])); + DEBUGASSERT(irq != CPUINT_UNASSIGNED); + + /* Clear software or edge-triggered interrupt */ + + xtensa_intclear(mask); + + /* Dispatch the CPU interrupt. + * + * NOTE that regs may be altered in the case of an interrupt + * level context switch. + */ + + regs = xtensa_irq_dispatch((int)irq, regs); + + /* Clear the bit in the pending interrupt so that perhaps + * we can exit the look early. + */ + + cpuints &= ~mask; + } + } + + return regs; +} + diff --git a/arch/xtensa/src/esp32s3/esp32s3_irq.h b/arch/xtensa/src/esp32s3/esp32s3_irq.h new file mode 100644 index 0000000000..2ef8f26e31 --- /dev/null +++ b/arch/xtensa/src/esp32s3/esp32s3_irq.h @@ -0,0 +1,123 @@ +/**************************************************************************** + * arch/xtensa/src/esp32s3/esp32s3_irq.h + * + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. The + * ASF licenses this file to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance with the + * License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT + * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the + * License for the specific language governing permissions and limitations + * under the License. + * + ****************************************************************************/ + +#ifndef __ARCH_XTENSA_SRC_ESP32S3_ESP32S3_IRQ_H +#define __ARCH_XTENSA_SRC_ESP32S3_ESP32S3_IRQ_H + +/**************************************************************************** + * Included Files + ****************************************************************************/ + +#include + +#include + +/**************************************************************************** + * Pre-processor Definitions + ****************************************************************************/ + +#ifndef __ASSEMBLY__ + +#undef EXTERN +#if defined(__cplusplus) +#define EXTERN extern "C" +extern "C" +{ +#else +#define EXTERN extern +#endif + +/* CPU interrupt types. */ + +#define ESP32S3_CPUINT_LEVEL 0 +#define ESP32S3_CPUINT_EDGE 1 + +/**************************************************************************** + * Public Functions Prototypes + ****************************************************************************/ + +/**************************************************************************** + * Name: esp32s3_cpuint_initialize + * + * Description: + * Initialize CPU interrupts + * + * Input Parameters: + * None + * + * Returned Value: + * Zero (OK) is returned on success; A negated errno value is returned on + * any failure. + * + ****************************************************************************/ + +int esp32s3_cpuint_initialize(void); + +/**************************************************************************** + * Name: esp32s3_setup_irq + * + * Description: + * This function sets up the IRQ. It allocates a CPU interrupt of the given + * priority and type and attaches it to the given peripheral. + * + * Input Parameters: + * cpu - The CPU to receive the interrupt 0=PRO CPU 1=APP CPU + * periphid - The peripheral number from irq.h to be assigned to + * a CPU interrupt. + * priority - Interrupt's priority (1 - 5). + * type - Interrupt's type (level or edge). + * + * Returned Value: + * The allocated CPU interrupt on success, a negated errno value on + * failure. + * + ****************************************************************************/ + +int esp32s3_setup_irq(int cpu, int periphid, int priority, int type); + +/**************************************************************************** + * Name: esp32s3_teardown_irq + * + * Description: + * This function undoes the operations done by esp32s3_setup_irq. + * It detaches a peripheral interrupt from a CPU interrupt and frees the + * CPU interrupt. + * + * Input Parameters: + * cpu - The CPU to receive the interrupt 0=PRO CPU 1=APP CPU + * periphid - The peripheral number from irq.h to be detached from the + * CPU interrupt. + * cpuint - The CPU interrupt from which the peripheral interrupt will + * be detached. + * + * Returned Value: + * None + * + ****************************************************************************/ + +void esp32s3_teardown_irq(int cpu, int periphid, int cpuint); + +#undef EXTERN +#if defined(__cplusplus) +} +#endif + +#endif /* __ASSEMBLY__ */ +#endif /* __ARCH_XTENSA_SRC_ESP32S3_ESP32S3_IRQ_H */ diff --git a/arch/xtensa/src/esp32s3/esp32s3_lowputc.c b/arch/xtensa/src/esp32s3/esp32s3_lowputc.c new file mode 100644 index 0000000000..a1a8650433 --- /dev/null +++ b/arch/xtensa/src/esp32s3/esp32s3_lowputc.c @@ -0,0 +1,846 @@ +/**************************************************************************** + * arch/xtensa/src/esp32s3/esp32s3_lowputc.c + * + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. The + * ASF licenses this file to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance with the + * License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT + * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the + * License for the specific language governing permissions and limitations + * under the License. + * + ****************************************************************************/ + +/**************************************************************************** + * Included Files + ****************************************************************************/ + +#include +#include +#include + +#include +#include +#include +#include +#include +#include +#include +#include + +#include + +#include "chip.h" +#include "xtensa.h" + +#include "hardware/esp32s3_system.h" +#include "hardware/esp32s3_uart.h" +#include "hardware/esp32s3_soc.h" + +#include "esp32s3_clockconfig.h" +#include "esp32s3_config.h" +#include "esp32s3_gpio.h" + +#include "esp32s3_lowputc.h" + +/**************************************************************************** + * Private Types + ****************************************************************************/ + +/**************************************************************************** + * Private Data + ****************************************************************************/ + +#ifdef HAVE_UART_DEVICE + +#ifdef CONFIG_ESP32S3_UART0 + +struct esp32s3_uart_s g_uart0_config = +{ + .periph = ESP32S3_PERIPH_UART0, + .id = 0, + .cpuint = -ENOMEM, + .irq = ESP32S3_IRQ_UART0, + .baud = CONFIG_UART0_BAUD, + .bits = CONFIG_UART0_BITS, + .parity = CONFIG_UART0_PARITY, + .stop_b2 = CONFIG_UART0_2STOP, + .int_pri = ESP32S3_INT_PRIO_DEF, + .txpin = CONFIG_ESP32S3_UART0_TXPIN, + .txsig = U0TXD_OUT_IDX, + .rxpin = CONFIG_ESP32S3_UART0_RXPIN, + .rxsig = U0RXD_IN_IDX, +#ifdef CONFIG_SERIAL_IFLOWCONTROL + .rtspin = CONFIG_ESP32S3_UART0_RTSPIN, + .rtssig = U0RTS_OUT_IDX, +#ifdef CONFIG_UART0_IFLOWCONTROL + .iflow = true, /* input flow control (RTS) enabled */ +#else + .iflow = false, /* input flow control (RTS) disabled */ +#endif +#endif +#ifdef CONFIG_SERIAL_OFLOWCONTROL + .ctspin = CONFIG_ESP32S3_UART0_CTSPIN, + .ctssig = U0CTS_IN_IDX, +#ifdef CONFIG_UART0_OFLOWCONTROL + .oflow = true, /* output flow control (CTS) enabled */ +#else + .oflow = false, /* output flow control (CTS) disabled */ +#endif +#endif +}; + +#endif /* CONFIG_ESP32S3_UART0 */ + +#ifdef CONFIG_ESP32S3_UART1 + +struct esp32s3_uart_s g_uart1_config = +{ + .periph = ESP32S3_PERIPH_UART1, + .id = 1, + .cpuint = -ENOMEM, + .irq = ESP32S3_IRQ_UART1, + .baud = CONFIG_UART1_BAUD, + .bits = CONFIG_UART1_BITS, + .parity = CONFIG_UART1_PARITY, + .stop_b2 = CONFIG_UART1_2STOP, + .int_pri = ESP32S3_INT_PRIO_DEF, + .txpin = CONFIG_ESP32S3_UART1_TXPIN, + .txsig = U1TXD_OUT_IDX, + .rxpin = CONFIG_ESP32S3_UART1_RXPIN, + .rxsig = U1RXD_IN_IDX, +#ifdef CONFIG_SERIAL_IFLOWCONTROL + .rtspin = CONFIG_ESP32S3_UART1_RTSPIN, + .rtssig = U1RTS_OUT_IDX, +#ifdef CONFIG_UART1_IFLOWCONTROL + .iflow = true, /* input flow control (RTS) enabled */ +#else + .iflow = false, /* input flow control (RTS) disabled */ +#endif +#endif +#ifdef CONFIG_SERIAL_OFLOWCONTROL + .ctspin = CONFIG_ESP32S3_UART1_CTSPIN, + .ctssig = U1CTS_IN_IDX, +#ifdef CONFIG_UART1_OFLOWCONTROL + .oflow = true, /* output flow control (CTS) enabled */ +#else + .oflow = false, /* output flow control (CTS) disabled */ +#endif +#endif +}; + +#endif /* CONFIG_ESP32S3_UART1 */ +#endif /* HAVE_UART_DEVICE */ + +/**************************************************************************** + * Public Functions + ****************************************************************************/ + +/**************************************************************************** + * Name: esp32s3_lowputc_set_iflow + * + * Description: + * Configure the input hardware flow control. + * + * Parameters: + * priv - Pointer to the private driver struct. + * threshold - RX FIFO value from which RST will automatically be + * asserted. + * enable - true = enable, false = disable + * + ****************************************************************************/ + +void esp32s3_lowputc_set_iflow(const struct esp32s3_uart_s *priv, + uint8_t threshold, bool enable) +{ + uint32_t mask; + if (enable) + { + /* Enable RX flow control */ + + modifyreg32(UART_CONF1_REG(priv->id), 0, UART_RX_FLOW_EN); + + /* Configure the threshold */ + + mask = VALUE_TO_FIELD(threshold, UART_RX_FLOW_THRHD); + modifyreg32(UART_MEM_CONF_REG(priv->id), UART_RX_FLOW_THRHD_M, mask); + } + else + { + /* Disable RX flow control */ + + modifyreg32(UART_CONF1_REG(priv->id), UART_RX_FLOW_EN, 0); + } +} + +/**************************************************************************** + * Name: esp32s3_lowputc_set_oflow + * + * Description: + * Configure the output hardware flow control. + * + * Parameters: + * priv - Pointer to the private driver struct. + * enable - true = enable, false = disable + * + ****************************************************************************/ + +void esp32s3_lowputc_set_oflow(const struct esp32s3_uart_s *priv, + bool enable) +{ + if (enable) + { + /* Enable TX flow control */ + + modifyreg32(UART_CONF0_REG(priv->id), 0, UART_TX_FLOW_EN); + } + else + { + /* Disable TX flow control */ + + modifyreg32(UART_CONF0_REG(priv->id), UART_TX_FLOW_EN, 0); + } +} + +/**************************************************************************** + * Name: esp32s3_lowputc_reset_core + * + * Description: + * Reset both TX and RX cores. + * + * Parameters: + * priv - Pointer to the private driver struct. + * + ****************************************************************************/ + +void esp32s3_lowputc_reset_cores(const struct esp32s3_uart_s *priv) +{ + uint32_t set_bit = 1 << UART_RST_CORE_S; + modifyreg32(UART_CLK_CONF_REG(priv->id), UART_RST_CORE_M, set_bit); + modifyreg32(UART_CLK_CONF_REG(priv->id), UART_RST_CORE_M, 0); +} + +/**************************************************************************** + * Name: esp32s3_lowputc_rst_tx + * + * Description: + * Reset TX core. + * + * Parameters: + * priv - Pointer to the private driver struct. + * + ****************************************************************************/ + +void esp32s3_lowputc_rst_tx(const struct esp32s3_uart_s *priv) +{ + uint32_t set_bit = 1 << UART_TX_RST_CORE_S; + + modifyreg32(UART_CLK_CONF_REG(priv->id), UART_TX_RST_CORE_M, set_bit); + modifyreg32(UART_CLK_CONF_REG(priv->id), UART_TX_RST_CORE_M, 0); +} + +/**************************************************************************** + * Name: esp32s3_lowputc_rst_rx + * + * Description: + * Reset RX core. + * + * Parameters: + * priv - Pointer to the private driver struct. + * + ****************************************************************************/ + +void esp32s3_lowputc_rst_rx(const struct esp32s3_uart_s *priv) +{ + uint32_t set_bit = 1 << UART_RX_RST_CORE_S; + + modifyreg32(UART_CLK_CONF_REG(priv->id), UART_RX_RST_CORE_M, set_bit); + modifyreg32(UART_CLK_CONF_REG(priv->id), UART_RX_RST_CORE_M, 0); +} + +/**************************************************************************** + * Name: esp32s3_lowputc_enable_sclk + * + * Description: + * Enable clock for whole core. + * + * Parameters: + * priv - Pointer to the private driver struct. + * + ****************************************************************************/ + +void esp32s3_lowputc_enable_sclk(const struct esp32s3_uart_s *priv) +{ + modifyreg32(UART_CLK_CONF_REG(priv->id), UART_SCLK_EN_M, + 1 << UART_SCLK_EN_S); + modifyreg32(UART_CLK_CONF_REG(priv->id), UART_RX_SCLK_EN_M, + 1 << UART_RX_SCLK_EN_S); + modifyreg32(UART_CLK_CONF_REG(priv->id), UART_TX_SCLK_EN_M, + 1 << UART_TX_SCLK_EN_S); +} + +/**************************************************************************** + * Name: esp32s3_lowputc_disable_sclk + * + * Description: + * Disable clock for whole core. + * + * Parameters: + * priv - Pointer to the private driver struct. + * + ****************************************************************************/ + +void esp32s3_lowputc_disable_sclk(const struct esp32s3_uart_s *priv) +{ + modifyreg32(UART_CLK_CONF_REG(priv->id), UART_SCLK_EN_M, 0); + modifyreg32(UART_CLK_CONF_REG(priv->id), UART_RX_SCLK_EN_M, 0); + modifyreg32(UART_CLK_CONF_REG(priv->id), UART_TX_SCLK_EN_M, 0); +} + +/**************************************************************************** + * Name: esp32s3_lowputc_set_sclk + * + * Description: + * Set a source clock for UART. + * + * Parameters: + * priv - Pointer to the private driver struct. + * source - APB_CLK = 1 80 MHz + * CLK_8 = 2 8 MHz + * XTAL_CLK = 3 + * + ****************************************************************************/ + +void esp32s3_lowputc_set_sclk(const struct esp32s3_uart_s *priv, + enum uart_sclk source) +{ + uint32_t clk = (uint32_t)source << UART_SCLK_SEL_S; + modifyreg32(UART_CLK_CONF_REG(priv->id), UART_SCLK_SEL_M, clk); +} + +/**************************************************************************** + * Name: esp32s3_lowputc_get_sclk + * + * Description: + * Get the source clock for UART. + * + * Parameters: + * priv - Pointer to the private driver struct. + * + * Returned Value: + * The frequency of the clock in Hz. + * + ****************************************************************************/ + +uint32_t esp32s3_lowputc_get_sclk(const struct esp32s3_uart_s * priv) +{ + uint32_t clk_conf_reg; + uint32_t ret = -ENODATA; + clk_conf_reg = getreg32(UART_CLK_CONF_REG(priv->id)); + clk_conf_reg &= UART_SCLK_SEL_M; + clk_conf_reg >>= UART_SCLK_SEL_S; + switch (clk_conf_reg) + { + case 1: + ret = esp_clk_apb_freq(); + break; + case 2: + ret = RTC_CLK_FREQ; + break; + case 3: + ret = XTAL_CLK_FREQ; + break; + } + + return ret; +} + +/**************************************************************************** + * Name: esp32s3_lowputc_baud + * + * Description: + * Set the baud rate according to the value in the private driver + * struct. + * + * Parameters: + * priv - Pointer to the private driver struct. + * + ****************************************************************************/ + +void esp32s3_lowputc_baud(const struct esp32s3_uart_s * priv) +{ + int sclk_div; + uint32_t sclk_freq; + uint32_t clk_div; + uint32_t int_part; + uint32_t frag_part; + + /* Get serial clock */ + + sclk_freq = esp32s3_lowputc_get_sclk(priv); + + /* Calculate integral part of the frequency divider factor. + * For low baud rates, the sclk must be less than half. + * For high baud rates, the sclk must be the higher. + */ + + sclk_div = DIV_UP(sclk_freq, MAX_UART_CLKDIV * priv->baud); + + /* Calculate the clock divisor to achieve the baud rate. + * baud = f/clk_div + * f = sclk_freq/sclk_div + * clk_div = 16*int_part + frag_part + * 16*int_part + frag_part = 16*(sclk_freq/sclk_div)/baud + */ + + clk_div = (sclk_freq << 4) / (priv->baud * sclk_div); + + /* Get the integer part of it. */ + + int_part = clk_div >> 4; + + /* Get the frag part of it. */ + + frag_part = clk_div & 0xf; + + /* Set integer part of the clock divisor for baud rate. */ + + modifyreg32(UART_CLKDIV_REG(priv->id), UART_CLKDIV_M, int_part); + + /* Set decimal part of the clock divisor for baud rate. */ + + modifyreg32(UART_CLKDIV_REG(priv->id), UART_CLKDIV_FRAG_M, + (frag_part & UART_CLKDIV_FRAG_V) << UART_CLKDIV_FRAG_S); + + /* Set the the integral part of the frequency divider factor. */ + + modifyreg32(UART_CLK_CONF_REG(priv->id), UART_SCLK_DIV_NUM_M, + (sclk_div - 1) << UART_SCLK_DIV_NUM_S); +} + +/**************************************************************************** + * Name: esp32s3_lowputc_normal_mode + * + * Description: + * Set the UART to operate in normal mode, i.e., disable the RS485 mode and + * IRDA mode. + * + * Parameters: + * priv - Pointer to the private driver struct. + * + ****************************************************************************/ + +void esp32s3_lowputc_normal_mode(const struct esp32s3_uart_s * priv) +{ + /* Disable RS485 mode */ + + modifyreg32(UART_RS485_CONF_REG(priv->id), UART_RS485_EN_M, 0); + modifyreg32(UART_RS485_CONF_REG(priv->id), UART_RS485TX_RX_EN_M, 0); + modifyreg32(UART_RS485_CONF_REG(priv->id), UART_RS485RXBY_TX_EN_M, 0); + + /* Disable IRDA mode */ + + modifyreg32(UART_CONF0_REG(priv->id), UART_IRDA_EN_M, 0); +} + +/**************************************************************************** + * Name: esp32s3_lowputc_parity + * + * Description: + * Set the parity, according to the value in the private driver + * struct. + * + * Parameters: + * priv - Pointer to the private driver struct. + * + ****************************************************************************/ + +void esp32s3_lowputc_parity(const struct esp32s3_uart_s * priv) +{ + if (priv->parity == UART_PARITY_DISABLE) + { + modifyreg32(UART_CONF0_REG(priv->id), UART_PARITY_EN_M, 0); + } + else + { + modifyreg32(UART_CONF0_REG(priv->id), UART_PARITY_M, + (priv->parity & 0x1) << UART_PARITY_S); + modifyreg32(UART_CONF0_REG(priv->id), UART_PARITY_EN_M, + 1 << UART_PARITY_EN_S); + } +} + +/**************************************************************************** + * Name: esp32s3_lowputc_data_length + * + * Description: + * Set the data bits length, according to the value in the private driver + * struct. + * + * Parameters: + * priv - Pointer to the private driver struct. + * + ****************************************************************************/ + +int esp32s3_lowputc_data_length(const struct esp32s3_uart_s * priv) +{ + int ret = OK; + uint32_t length = priv->bits - 5; + + /* If it is the allowed range */ + + if (length >= UART_DATA_5_BITS && length <= UART_DATA_8_BITS) + { + modifyreg32(UART_CONF0_REG(priv->id), UART_BIT_NUM_M, + length << UART_BIT_NUM_S); + } + else + { + ret = -EINVAL; + } + + return ret; +} + +/**************************************************************************** + * Name: esp32s3_lowputc_stop_length + * + * Description: + * Set the stop bits length, according to the value in the private driver + * struct. + * + * Parameters: + * priv - Pointer to the private driver struct. + * + ****************************************************************************/ + +void esp32s3_lowputc_stop_length(const struct esp32s3_uart_s *priv) +{ + if (priv->stop_b2 == 0) + { + modifyreg32(UART_CONF0_REG(priv->id), UART_STOP_BIT_NUM_M, + UART_STOP_BITS_1 << UART_STOP_BIT_NUM_S); + } + else + { + modifyreg32(UART_CONF0_REG(priv->id), UART_STOP_BIT_NUM_M, + UART_STOP_BITS_2 << UART_STOP_BIT_NUM_S); + } +} + +/**************************************************************************** + * Name: esp32s3_lowputc_set_tx_idle_time + * + * Description: + * Set the idle time between transfers. + * + * Parameters: + * priv - Pointer to the private driver struct. + * time - Desired time interval between the transfers. + * + ****************************************************************************/ + +void esp32s3_lowputc_set_tx_idle_time(const struct esp32s3_uart_s *priv, + uint32_t time) +{ + time = time << UART_TX_IDLE_NUM_S; + time = time & UART_TX_IDLE_NUM_M; /* Just in case value overloads */ + modifyreg32(UART_IDLE_CONF_REG(priv->id), UART_TX_IDLE_NUM_M, + time); +} + +/**************************************************************************** + * Name: esp32s3_lowputc_send_byte + * + * Description: + * Send one byte. + * + * Parameters: + * priv - Pointer to the private driver struct. + * byte - Byte to be sent. + * + ****************************************************************************/ + +void esp32s3_lowputc_send_byte(const struct esp32s3_uart_s * priv, + char byte) +{ + putreg32((uint32_t) byte, UART_FIFO_REG(priv->id)); +} + +/**************************************************************************** + * Name: esp32s3_lowputc_is_tx_fifo_full + * + * Description: + * Verify if TX FIFO is full. + * + * Parameters: + * priv - Pointer to the private driver struct. + * + * Returned Value: + * True if it is full, otherwise false. + * + ****************************************************************************/ + +bool esp32s3_lowputc_is_tx_fifo_full(const struct esp32s3_uart_s *priv) +{ + uint32_t reg; + + reg = getreg32(UART_STATUS_REG(priv->id)); + reg = reg >> UART_TXFIFO_CNT_S; + reg = reg & UART_TXFIFO_CNT_V; + + return !(reg < (UART_TX_FIFO_SIZE - 1)); +} + +/**************************************************************************** + * Name: esp32s3_lowputc_rst_peripheral + * + * Description: + * Reset the UART peripheral by using System reg. + * + * Parameters: + * priv - Pointer to the private driver struct. + * + ****************************************************************************/ + +void esp32s3_lowputc_rst_peripheral(const struct esp32s3_uart_s *priv) +{ + if (priv->id == 0) + { + modifyreg32(SYSTEM_PERIP_RST_EN0_REG, SYSTEM_UART_RST_M, + SYSTEM_UART_RST_M); + modifyreg32(SYSTEM_PERIP_RST_EN0_REG, SYSTEM_UART_RST_M, 0); + } + else + { + modifyreg32(SYSTEM_PERIP_RST_EN0_REG, SYSTEM_UART1_RST_M, + SYSTEM_UART1_RST_M); + modifyreg32(SYSTEM_PERIP_RST_EN0_REG, SYSTEM_UART1_RST_M, 0); + } +} + +/**************************************************************************** + * Name: esp32s3_lowputc_rst_txfifo + * + * Description: + * Reset TX FIFO. + * + * Parameters: + * priv - Pointer to the private driver struct. + * + ****************************************************************************/ + +void esp32s3_lowputc_rst_txfifo(const struct esp32s3_uart_s *priv) +{ + modifyreg32(UART_CONF0_REG(priv->id), UART_TXFIFO_RST_M, + UART_TXFIFO_RST_M); + modifyreg32(UART_CONF0_REG(priv->id), UART_TXFIFO_RST_M, 0); +} + +/**************************************************************************** + * Name: esp32s3_lowputc_rst_rxfifo + * + * Description: + * Reset RX FIFO. + * + * Parameters: + * priv - Pointer to the private driver struct. + * + ****************************************************************************/ + +void esp32s3_lowputc_rst_rxfifo(const struct esp32s3_uart_s *priv) +{ + modifyreg32(UART_CONF0_REG(priv->id), UART_RXFIFO_RST_M, + UART_RXFIFO_RST_M); + modifyreg32(UART_CONF0_REG(priv->id), UART_RXFIFO_RST_M, 0); +} + +/**************************************************************************** + * Name: esp32s3_lowputc_disable_all_uart_int + * + * Description: + * Disable all UART interrupts. + * + * Parameters: + * priv - Pointer to the private driver struct. + * current_status - Pointer to a variable to store the current status of + * the interrupt enable register before disabling + * UART interrupts. + * + ****************************************************************************/ + +void esp32s3_lowputc_disable_all_uart_int(const struct esp32s3_uart_s *priv, + uint32_t *current_status) +{ + irqstate_t flags; + + flags = enter_critical_section(); + + if (current_status != NULL) + { + /* Save current status */ + + *current_status = getreg32(UART_INT_ENA_REG(priv->id)); + } + + /* Disable all UART int */ + + putreg32(0, UART_INT_ENA_REG(priv->id)); + + /* Clear all ints */ + + putreg32(0xffffffff, UART_INT_CLR_REG(priv->id)); + + leave_critical_section(flags); +} + +/**************************************************************************** + * Name: esp32s3_lowputc_restore_all_uart_int + * + * Description: + * Restore all UART interrupts. + * + * Parameters: + * priv - Pointer to the private driver struct. + * last_status - Pointer to a variable that stored the last state of the + * interrupt enable register. + * + ****************************************************************************/ + +void esp32s3_lowputc_restore_all_uart_int(const struct esp32s3_uart_s *priv, + uint32_t *last_status) +{ + /* Restore the previous behaviour */ + + putreg32(*last_status, UART_INT_ENA_REG(priv->id)); +} + +/**************************************************************************** + * Name: esp32s3_lowputc_config_pins + * + * Description: + * Configure TX and RX UART pins. + * + * Parameters: + * priv - Pointer to the private driver struct. + * + ****************************************************************************/ + +void esp32s3_lowputc_config_pins(const struct esp32s3_uart_s *priv) +{ + /* Configure the pins */ + + esp32s3_gpio_matrix_out(priv->txpin, priv->txsig, 0, 0); + esp32s3_configgpio(priv->txpin, OUTPUT_FUNCTION_1); + + esp32s3_configgpio(priv->rxpin, INPUT_FUNCTION_1); + esp32s3_gpio_matrix_in(priv->rxpin, priv->rxsig, 0); + +#ifdef CONFIG_SERIAL_IFLOWCONTROL + if (priv->iflow) + { + esp32s3_configgpio(priv->rtspin, OUTPUT_FUNCTION_1); + esp32s3_gpio_matrix_out(priv->rtspin, priv->rtssig, + 0, 0); + } + +#endif +#ifdef CONFIG_SERIAL_OFLOWCONTROL + if (priv->oflow) + { + esp32s3_configgpio(priv->ctspin, INPUT_FUNCTION_1); + esp32s3_gpio_matrix_in(priv->ctspin, priv->ctssig, 0); + } +#endif +} + +/**************************************************************************** + * Name: esp32s3_lowputc_restore_pins + * + * Description: + * Configure both pins back to INPUT mode and detach the TX pin from the + * output signal and the RX pin from the input signal. + * + * Parameters: + * priv - Pointer to the private driver struct. + * + ****************************************************************************/ + +void esp32s3_lowputc_restore_pins(const struct esp32s3_uart_s *priv) +{ + /* Configure the pins */ + + esp32s3_configgpio(priv->txpin, INPUT); + esp32s3_gpio_matrix_out(priv->txpin, MATRIX_DETACH_OUT_SIG, false, false); + + esp32s3_configgpio(priv->rxpin, INPUT); + esp32s3_gpio_matrix_in(priv->rxpin, MATRIX_DETACH_IN_LOW_PIN, false); +} + +/**************************************************************************** + * Name: up_lowputc + * + * Description: + * Output one byte on the serial console. + * + * Parameters: + * ch - Byte to be sent. + * + ****************************************************************************/ + +void up_lowputc(char ch) +{ +#ifdef CONSOLE_UART + +# if defined(CONFIG_UART0_SERIAL_CONSOLE) + struct esp32s3_uart_s *priv = &g_uart0_config; +#elif defined (CONFIG_UART1_SERIAL_CONSOLE) + struct esp32s3_uart_s *priv = &g_uart1_config; +#endif + + /* Wait until the TX FIFO has space to insert new char */ + + while (esp32s3_lowputc_is_tx_fifo_full(priv)); + + /* Then send the character */ + + esp32s3_lowputc_send_byte(priv, ch); + +#elif defined (CONFIG_ESP32S3_USBSERIAL) + esp32s3_usbserial_write(ch); +#endif /* CONSOLE_UART */ +} + +/**************************************************************************** + * Name: esp32s3_lowsetup + * + * Description: + * This performs only the basic configuration for UART pins. + * + ****************************************************************************/ + +void esp32s3_lowsetup(void) +{ +#ifndef CONFIG_SUPPRESS_UART_CONFIG + +#ifdef CONFIG_ESP32S3_UART0 + + esp32s3_lowputc_config_pins(&g_uart0_config); + +#endif + +#ifdef CONFIG_ESP32S3_UART1 + + esp32s3_lowputc_config_pins(&g_uart1_config); + +#endif + +#endif /* !CONFIG_SUPPRESS_UART_CONFIG */ +} diff --git a/arch/xtensa/src/esp32s3/esp32s3_lowputc.h b/arch/xtensa/src/esp32s3/esp32s3_lowputc.h new file mode 100644 index 0000000000..226fa7b994 --- /dev/null +++ b/arch/xtensa/src/esp32s3/esp32s3_lowputc.h @@ -0,0 +1,485 @@ +/**************************************************************************** + * arch/xtensa/src/esp32s3/esp32s3_lowputc.h + * + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. The + * ASF licenses this file to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance with the + * License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT + * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the + * License for the specific language governing permissions and limitations + * under the License. + * + ****************************************************************************/ + +#ifndef __ARCH_XTENSA_SRC_ESP32S3_ESP32S3_LOWPUTC_H +#define __ARCH_XTENSA_SRC_ESP32S3_ESP32S3_LOWPUTC_H + +/**************************************************************************** + * Included Files + ****************************************************************************/ + +#include +#include +#include + +#include +#include +#include +#include +#include +#include +#include + +#include "chip.h" + +#include "hardware/esp32s3_uart.h" +#include "hardware/esp32s3_gpio_sigmap.h" + +#include "esp32s3_irq.h" + +/**************************************************************************** + * Public Types + ****************************************************************************/ + +enum uart_sclk +{ + APB_CLK = 1, /* 80 MHz */ + CLK_8, /* 8 MHz */ + XTAL_CLK +}; + +enum uart_parity +{ + UART_PARITY_DISABLE, + UART_PARITY_ODD, + UART_PARITY_EVEN +}; + +enum uart_data_length +{ + UART_DATA_5_BITS, + UART_DATA_6_BITS, + UART_DATA_7_BITS, + UART_DATA_8_BITS +}; + +enum uart_stop_length +{ + UART_STOP_BITS_1 = 0x1, /* Stop bit: 1 bit */ + UART_STOP_BITS_2 = 0x3, /* Stop bit: 2 bits */ +}; + +/* Default FIFOs size */ + +#define UART_TX_FIFO_SIZE 128 +#define UART_RX_FIFO_SIZE 128 + +/* Maximum serial clock divisor for integer part */ + +#define MAX_UART_CLKDIV (BIT(12) - 1) +#define DIV_UP(a, b) (((a) + (b) - 1) / (b)) + +/* Struct used to store uart driver information and to + * manipulate uart driver + */ + +struct esp32s3_uart_s +{ + uint8_t periph; /* UART peripheral ID */ + int cpuint; /* CPU interrupt assigned to this UART */ + uint8_t id; /* UART ID */ + uint8_t irq; /* IRQ associated with this UART */ + uint8_t cpu; /* CPU ID */ + uint32_t baud; /* Configured baud rate */ + uint8_t bits; /* Data length (5 to 8 bits). */ + uint8_t parity; /* 0=no parity, 1=odd parity, 2=even parity */ + uint8_t stop_b2; /* Use 2 stop bits? 0 = no (use 1) 1 = yes (use 2) */ + uint8_t int_pri; /* UART Interrupt Priority */ + uint8_t txpin; /* TX pin */ + uint8_t txsig; /* TX signal */ + uint8_t rxpin; /* RX pin */ + uint8_t rxsig; /* RX signal */ +#ifdef CONFIG_SERIAL_IFLOWCONTROL + uint8_t rtspin; /* RTS pin number */ + uint8_t rtssig; /* RTS signal */ + bool iflow; /* Input flow control (RTS) enabled */ +#endif +#ifdef CONFIG_SERIAL_OFLOWCONTROL + uint8_t ctspin; /* CTS pin number */ + uint8_t ctssig; /* CTS signal */ + bool oflow; /* Output flow control (CTS) enabled */ +#endif +}; + +extern struct esp32s3_uart_s g_uart0_config; +extern struct esp32s3_uart_s g_uart1_config; + +/**************************************************************************** + * Public Function Prototypes + ****************************************************************************/ + +/**************************************************************************** + * Name: esp32s3_lowputc_set_iflow + * + * Description: + * Configure the input hardware flow control. + * + * Parameters: + * priv - Pointer to the private driver struct. + * threshold - RX FIFO value from which RST will automatically be + * asserted. + * enable - true = enable, false = disable + * + ****************************************************************************/ + +void esp32s3_lowputc_set_iflow(const struct esp32s3_uart_s *priv, + uint8_t threshold, bool enable); + +/**************************************************************************** + * Name: esp32s3_lowputc_set_oflow + * + * Description: + * Configure the output hardware flow control. + * + * Parameters: + * priv - Pointer to the private driver struct. + * enable - true = enable, false = disable + * + ****************************************************************************/ + +void esp32s3_lowputc_set_oflow(const struct esp32s3_uart_s *priv, + bool enable); + +/**************************************************************************** + * Name: esp32s3_lowputc_reset_core + * + * Description: + * Reset both TX and RX cores. + * + * Parameters: + * priv - Pointer to the private driver struct. + * + ****************************************************************************/ + +void esp32s3_lowputc_reset_cores(const struct esp32s3_uart_s *priv); + +/**************************************************************************** + * Name: esp32s3_lowputc_rst_tx + * + * Description: + * Reset TX core. + * + * Parameters: + * priv - Pointer to the private driver struct. + * + ****************************************************************************/ + +void esp32s3_lowputc_rst_tx(const struct esp32s3_uart_s *priv); + +/**************************************************************************** + * Name: esp32s3_lowputc_rst_rx + * + * Description: + * Reset RX core. + * + * Parameters: + * priv - Pointer to the private driver struct. + * + ****************************************************************************/ + +void esp32s3_lowputc_rst_rx(const struct esp32s3_uart_s *priv); + +/**************************************************************************** + * Name: esp32s3_lowputc_enable_sclk + * + * Description: + * Enable clock for whole core. + * + * Parameters: + * priv - Pointer to the private driver struct. + * + ****************************************************************************/ + +void esp32s3_lowputc_enable_sclk(const struct esp32s3_uart_s *priv); + +/**************************************************************************** + * Name: esp32s3_lowputc_disable_sclk + * + * Description: + * Disable clock for whole core. + * + * Parameters: + * priv - Pointer to the private driver struct. + * + ****************************************************************************/ + +void esp32s3_lowputc_disable_sclk(const struct esp32s3_uart_s *priv); + +/**************************************************************************** + * Name: esp32s3_lowputc_set_sclk + * + * Description: + * Set a source clock for UART. + * + * Parameters: + * priv - Pointer to the private driver struct. + * source - APB_CLK = 1 80 MHz + * CLK_8 = 2 8 MHz + * XTAL_CLK = 3 + * + ****************************************************************************/ + +void esp32s3_lowputc_set_sclk(const struct esp32s3_uart_s *priv, + enum uart_sclk source); + +/**************************************************************************** + * Name: esp32s3_lowputc_get_sclk + * + * Description: + * Get the source clock for UART. + * + * Parameters: + * priv - Pointer to the private driver struct. + * + * Returned Value: + * The frequency of the clock in Hz. + * + ****************************************************************************/ + +uint32_t esp32s3_lowputc_get_sclk(const struct esp32s3_uart_s *priv); + +/**************************************************************************** + * Name: esp32s3_lowputc_baud + * + * Description: + * Set the baud rate according to the value in the private driver + * struct. + * + * Parameters: + * priv - Pointer to the private driver struct. + * + ****************************************************************************/ + +void esp32s3_lowputc_baud(const struct esp32s3_uart_s *priv); + +/**************************************************************************** + * Name: esp32s3_lowputc_normal_mode + * + * Description: + * Set the UART to operate in normal mode, i.e., disable the RS485 mode and + * IRDA mode. + * + * Parameters: + * priv - Pointer to the private driver struct. + * + ****************************************************************************/ + +void esp32s3_lowputc_normal_mode(const struct esp32s3_uart_s *priv); + +/**************************************************************************** + * Name: esp32s3_lowputc_parity + * + * Description: + * Set the parity, according to the value in the private driver + * struct. + * + * Parameters: + * priv - Pointer to the private driver struct. + * + ****************************************************************************/ + +void esp32s3_lowputc_parity(const struct esp32s3_uart_s *priv); + +/**************************************************************************** + * Name: esp32s3_lowputc_data_length + * + * Description: + * Set the data bits length, according to the value in the private driver + * struct. + * + * Parameters: + * priv - Pointer to the private driver struct. + * + ****************************************************************************/ + +int esp32s3_lowputc_data_length(const struct esp32s3_uart_s *priv); + +/**************************************************************************** + * Name: esp32s3_lowputc_stop_length + * + * Description: + * Set the stop bits length, according to the value in the private driver + * struct. + * + * Parameters: + * priv - Pointer to the private driver struct. + * + ****************************************************************************/ + +void esp32s3_lowputc_stop_length(const struct esp32s3_uart_s *priv); + +/**************************************************************************** + * Name: esp32s3_lowputc_set_tx_idle_time + * + * Description: + * Set the idle time between transfers. + * + * Parameters: + * priv - Pointer to the private driver struct. + * time - Desired time interval between the transfers. + * + ****************************************************************************/ + +void esp32s3_lowputc_set_tx_idle_time(const struct esp32s3_uart_s *priv, + uint32_t time); + +/**************************************************************************** + * Name: esp32s3_lowputc_send_byte + * + * Description: + * Send one byte. + * + * Parameters: + * priv - Pointer to the private driver struct. + * byte - Byte to be sent. + * + ****************************************************************************/ + +void esp32s3_lowputc_send_byte(const struct esp32s3_uart_s *priv, + char byte); + +/**************************************************************************** + * Name: esp32s3_lowputc_is_tx_fifo_full + * + * Description: + * Verify if TX FIFO is full. + * + * Parameters: + * priv - Pointer to the private driver struct. + * + * Returned Value: + * True if it is full, otherwise false. + * + ****************************************************************************/ + +bool esp32s3_lowputc_is_tx_fifo_full(const struct esp32s3_uart_s *priv); + +/**************************************************************************** + * Name: esp32s3_lowputc_rst_peripheral + * + * Description: + * Reset the UART peripheral by using System reg. + * + * Parameters: + * priv - Pointer to the private driver struct. + * + ****************************************************************************/ + +void esp32s3_lowputc_rst_peripheral(const struct esp32s3_uart_s *priv); + +/**************************************************************************** + * Name: esp32s3_lowputc_rst_txfifo + * + * Description: + * Reset TX FIFO. + * + * Parameters: + * priv - Pointer to the private driver struct. + * + ****************************************************************************/ + +void esp32s3_lowputc_rst_txfifo(const struct esp32s3_uart_s *priv); + +/**************************************************************************** + * Name: esp32s3_lowputc_rst_rxfifo + * + * Description: + * Reset RX FIFO. + * + * Parameters: + * priv - Pointer to the private driver struct. + * + ****************************************************************************/ + +void esp32s3_lowputc_rst_rxfifo(const struct esp32s3_uart_s *priv); + +/**************************************************************************** + * Name: esp32s3_lowputc_disable_all_uart_int + * + * Description: + * Disable all UART interrupts. + * + * Parameters: + * priv - Pointer to the private driver struct. + * current_status - Pointer to a variable to store the current status of + * the interrupt enable register before disabling + * UART interrupts. + * + ****************************************************************************/ + +void esp32s3_lowputc_disable_all_uart_int(const struct esp32s3_uart_s *priv, + uint32_t *current_status); + +/**************************************************************************** + * Name: esp32s3_lowputc_restore_all_uart_int + * + * Description: + * Restore all UART interrupts. + * + * Parameters: + * priv - Pointer to the private driver struct. + * last_status - Pointer to a variable that stored the last state of the + * interrupt enable register. + * + ****************************************************************************/ + +void esp32s3_lowputc_restore_all_uart_int(const struct esp32s3_uart_s *priv, + uint32_t * last_status); + +/**************************************************************************** + * Name: esp32s3_lowputc_config_pins + * + * Description: + * Configure TX and RX UART pins. + * + * Parameters: + * priv - Pointer to the private driver struct. + * + ****************************************************************************/ + +void esp32s3_lowputc_config_pins(const struct esp32s3_uart_s *priv); + +/**************************************************************************** + * Name: esp32s3_lowputc_restore_pins + * + * Description: + * Configure both pins back to INPUT mode and detach the TX pin from the + * output signal and the RX pin from the input signal. + * + * Parameters: + * priv - Pointer to the private driver struct. + * + ****************************************************************************/ + +void esp32s3_lowputc_restore_pins(const struct esp32s3_uart_s *priv); + +/**************************************************************************** + * Name: esp32s3_lowsetup + * + * Description: + * This performs basic initialization of the UART used for the serial + * console. Its purpose is to get the console output available as soon + * as possible. + * + ****************************************************************************/ + +void esp32s3_lowsetup(void); + +#endif /* __ARCH_XTENSA_SRC_ESP32S3_ESP32S3_LOWPUTC_H */ diff --git a/arch/xtensa/src/esp32s3/esp32s3_region.c b/arch/xtensa/src/esp32s3/esp32s3_region.c new file mode 100644 index 0000000000..fd1382d646 --- /dev/null +++ b/arch/xtensa/src/esp32s3/esp32s3_region.c @@ -0,0 +1,102 @@ +/**************************************************************************** + * arch/xtensa/src/esp32s3/esp32s3_region.c + * + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. The + * ASF licenses this file to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance with the + * License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT + * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the + * License for the specific language governing permissions and limitations + * under the License. + * + ****************************************************************************/ + +/**************************************************************************** + * Included Files + ****************************************************************************/ + +#include + +/**************************************************************************** + * Private Data + ****************************************************************************/ + +static const uint32_t g_protected_pages[] = +{ + 0x00000000, 0x80000000, 0xa0000000, 0xc0000000, 0xe0000000 +}; + +#define NPROTECTED_PAGES (sizeof(g_protected_pages)/sizeof(uint32_t)) + +/**************************************************************************** + * Private Functions + ****************************************************************************/ + +/**************************************************************************** + * Name: xtensa_write_dtlb and xtensa_write_itlb + * + * Description: + * Functions to set page attributes for Region Protection option in the + * CPU. See Xtensa ISA Reference manual for explanation of arguments + * (section 4.6.3.2). + * + ****************************************************************************/ + +static inline void xtensa_write_dtlb(uint32_t vpn, uint32_t attr) +{ + __asm__ __volatile__ + ( + "wdtlb %1, %0\n" + "dsync\n" + : : "r" (vpn), "r" (attr) + ); +} + +static inline void xtensa_write_itlb(uint32_t vpn, uint32_t attr) +{ + __asm__ __volatile__ + ( + "witlb %1, %0\n" + "isync\n" + : : "r" (vpn), "r" (attr) + ); +} + +/**************************************************************************** + * Public Functions + ****************************************************************************/ + +/**************************************************************************** + * Name: esp32s3_region_protection + * + * Description: + * Make page 0 access raise an exception. Also protect some other unused + * pages so we can catch weirdness. + * + * Useful attribute values: + * 0 — cached, RW + * 2 — bypass cache, RWX (default value after CPU reset) + * 15 — no access, raise exception + * + ****************************************************************************/ + +void esp32s3_region_protection(void) +{ + int i; + + for (i = 0; i < NPROTECTED_PAGES; ++i) + { + xtensa_write_dtlb(g_protected_pages[i], 0xf); + xtensa_write_itlb(g_protected_pages[i], 0xf); + } + + xtensa_write_dtlb(0x20000000, 0); + xtensa_write_itlb(0x20000000, 0); +} diff --git a/arch/xtensa/src/esp32s3/esp32s3_region.h b/arch/xtensa/src/esp32s3/esp32s3_region.h new file mode 100644 index 0000000000..279a888e1c --- /dev/null +++ b/arch/xtensa/src/esp32s3/esp32s3_region.h @@ -0,0 +1,52 @@ +/**************************************************************************** + * arch/xtensa/src/esp32s3/esp32s3_region.h + * + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. The + * ASF licenses this file to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance with the + * License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT + * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the + * License for the specific language governing permissions and limitations + * under the License. + * + ****************************************************************************/ + +/**************************************************************************** + * Included Files + ****************************************************************************/ + +#ifndef __ARCH_XTENSA_SRC_ESP32S3_ESP32S3_REGION_H +#define __ARCH_XTENSA_SRC_ESP32S3_ESP32S3_REGION_H + +/**************************************************************************** + * Included Files + ****************************************************************************/ + +/**************************************************************************** + * Pre-processor Definitions + ****************************************************************************/ + +/**************************************************************************** + * Name: esp32s3_region_protection + * + * Description: + * Make page 0 access raise an exception. Also protect some other unused + * pages so we can catch weirdness. + * + * Useful attribute values: + * 0 — cached, RW + * 2 — bypass cache, RWX (default value after CPU reset) + * 15 — no access, raise exception + * + ****************************************************************************/ + +void esp32s3_region_protection(void); + +#endif /* __ARCH_XTENSA_SRC_ESP32S3_ESP32S3_REGION_H */ diff --git a/arch/xtensa/src/esp32s3/esp32s3_serial.c b/arch/xtensa/src/esp32s3/esp32s3_serial.c new file mode 100644 index 0000000000..18dadffa88 --- /dev/null +++ b/arch/xtensa/src/esp32s3/esp32s3_serial.c @@ -0,0 +1,1166 @@ +/**************************************************************************** + * arch/xtensa/src/esp32s3/esp32s3_serial.c + * + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. The + * ASF licenses this file to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance with the + * License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT + * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the + * License for the specific language governing permissions and limitations + * under the License. + * + ****************************************************************************/ + +/**************************************************************************** + * Included Files + ****************************************************************************/ + +#include +#include +#include +#include +#include + +#include +#include +#include +#include +#include +#include +#include +#include + +#ifdef CONFIG_SERIAL_TERMIOS +# include +#endif + +#include "xtensa.h" +#include "chip.h" + +#include "hardware/esp32s3_uart.h" +#include "hardware/esp32s3_system.h" + +#include "esp32s3_config.h" +#include "esp32s3_irq.h" +#include "esp32s3_lowputc.h" + +#ifdef CONFIG_ESP32S3_USBSERIAL +# include "esp32s3_usbserial.h" +#endif + +/**************************************************************************** + * Pre-processor Definitions + ****************************************************************************/ + +/* The console is enabled, and it's not the syslog device, + * so, it should be a serial device. + */ + +#ifdef USE_SERIALDRIVER + +/* Which UART with be tty0/console and which tty1? */ + +/* First pick the console and ttys0. + * Console can be UART0 or UART1, but will always be ttys0. + */ + +/* In case a UART was assigned to be + * the console and the corresponding peripheral was also selected. + */ + +#ifdef CONSOLE_UART +# if defined(CONFIG_UART0_SERIAL_CONSOLE) +# define CONSOLE_DEV g_uart0_dev /* UART0 is console */ +# define TTYS0_DEV g_uart0_dev /* UART0 is ttyS0 */ +# define UART0_ASSIGNED 1 +# elif defined(CONFIG_UART1_SERIAL_CONSOLE) +# define CONSOLE_DEV g_uart1_dev /* UART1 is console */ +# define TTYS0_DEV g_uart1_dev /* UART1 is ttyS0 */ +# define UART1_ASSIGNED 1 +# endif /* CONFIG_UART0_SERIAL_CONSOLE */ +#else /* No UART console */ +# undef CONSOLE_DEV +# if defined(CONFIG_ESP32S3_UART0) +# define TTYS0_DEV g_uart0_dev /* UART0 is ttyS0 */ +# define UART0_ASSIGNED 1 +# elif defined(CONFIG_ESP32S3_UART1) +# define TTYS0_DEV g_uart1_dev /* UART1 is ttyS0 */ +# define UART1_ASSIGNED 1 +# endif +#endif /* CONSOLE_UART */ + +#ifdef CONFIG_ESP32S3_USBSERIAL +# define CONSOLE_DEV g_uart_usbserial +# define TTYACM0_DEV g_uart_usbserial +#endif + +/* Pick ttys1 */ + +#if defined(CONFIG_ESP32S3_UART0) && !defined(UART0_ASSIGNED) +# define TTYS1_DEV g_uart0_dev /* UART0 is ttyS1 */ +# define UART0_ASSIGNED 1 +#elif defined(CONFIG_ESP32S3_UART1) && !defined(UART1_ASSIGNED) +# define TTYS1_DEV g_uart1_dev /* UART1 is ttyS1 */ +# define UART1_ASSIGNED 1 +#endif + +#ifdef HAVE_UART_DEVICE + +/**************************************************************************** + * Private Function Prototypes + ****************************************************************************/ + +#ifdef CONFIG_ESP32S3_UART + +/* Serial driver methods */ + +static int esp32s3_setup(struct uart_dev_s *dev); +static void esp32s3_shutdown(struct uart_dev_s *dev); +static int esp32s3_attach(struct uart_dev_s *dev); +static void esp32s3_detach(struct uart_dev_s *dev); +static void esp32s3_txint(struct uart_dev_s *dev, bool enable); +static void esp32s3_rxint(struct uart_dev_s *dev, bool enable); +static bool esp32s3_rxavailable(struct uart_dev_s *dev); +static bool esp32s3_txready(struct uart_dev_s *dev); +static bool esp32s3_txempty(struct uart_dev_s *dev); +static void esp32s3_send(struct uart_dev_s *dev, int ch); +static int esp32s3_receive(struct uart_dev_s *dev, unsigned int *status); +static int esp32s3_ioctl(struct file *filep, int cmd, unsigned long arg); +#ifdef CONFIG_SERIAL_IFLOWCONTROL +static bool esp32s3_rxflowcontrol(struct uart_dev_s *dev, + unsigned int nbuffered, bool upper); +#endif +#endif + +/**************************************************************************** + * Private Data + ****************************************************************************/ + +#ifdef CONFIG_ESP32S3_UART + +/* Operations */ + +static struct uart_ops_s g_uart_ops = +{ + .setup = esp32s3_setup, + .shutdown = esp32s3_shutdown, + .attach = esp32s3_attach, + .detach = esp32s3_detach, + .txint = esp32s3_txint, + .rxint = esp32s3_rxint, + .rxavailable = esp32s3_rxavailable, + .txready = esp32s3_txready, + .txempty = esp32s3_txempty, + .send = esp32s3_send, + .receive = esp32s3_receive, + .ioctl = esp32s3_ioctl, +#ifdef CONFIG_SERIAL_IFLOWCONTROL + .rxflowcontrol = esp32s3_rxflowcontrol, +#endif +}; + +/* UART 0 */ + +#ifdef CONFIG_ESP32S3_UART0 + +static char g_uart0_rxbuffer[CONFIG_UART0_RXBUFSIZE]; +static char g_uart0_txbuffer[CONFIG_UART0_TXBUFSIZE]; + +/* Fill only the requested fields */ + +static uart_dev_t g_uart0_dev = +{ +#ifdef CONFIG_UART0_SERIAL_CONSOLE + .isconsole = true, +#else + .isconsole = false, +#endif + .xmit = + { + .size = CONFIG_UART0_TXBUFSIZE, + .buffer = g_uart0_txbuffer, + }, + .recv = + { + .size = CONFIG_UART0_RXBUFSIZE, + .buffer = g_uart0_rxbuffer, + }, + + .ops = &g_uart_ops, + .priv = &g_uart0_config +}; + +#endif + +/* UART 1 */ + +#ifdef CONFIG_ESP32S3_UART1 + +static char g_uart1_rxbuffer[CONFIG_UART1_RXBUFSIZE]; +static char g_uart1_txbuffer[CONFIG_UART1_TXBUFSIZE]; + +/* Fill only the requested fields */ + +static uart_dev_t g_uart1_dev = +{ +#ifdef CONFIG_UART1_SERIAL_CONSOLE + .isconsole = true, +#else + .isconsole = false, +#endif + .xmit = + { + .size = CONFIG_UART1_TXBUFSIZE, + .buffer = g_uart1_txbuffer, + }, + .recv = + { + .size = CONFIG_UART1_RXBUFSIZE, + .buffer = g_uart1_rxbuffer, + }, + + .ops = &g_uart_ops, + .priv = &g_uart1_config +}; + +#endif + +#endif /* CONFIG_ESP32S3_UART */ + +/**************************************************************************** + * Private Functions + ****************************************************************************/ + +#ifdef CONFIG_ESP32S3_UART + +/**************************************************************************** + * Name: uart_interrupt + * + * Description: + * This is the UART interrupt handler. It will be invoked when an + * interrupt is received on the 'irq' It should call uart_xmitchars or + * uart_recvchars to perform the appropriate data transfers. The + * interrupt handling logic must be able to map the 'irq' number into the + * appropriate uart_dev_s structure in order to call these functions. + * + ****************************************************************************/ + +static int uart_handler(int irq, void *context, void *arg) +{ + struct uart_dev_s *dev = (struct uart_dev_s *)arg; + struct esp32s3_uart_s *priv = dev->priv; + uint32_t tx_mask = UART_TXFIFO_EMPTY_INT_ST_M | UART_TX_DONE_INT_ST_M; + uint32_t rx_mask = UART_RXFIFO_TOUT_INT_ST_M | UART_RXFIFO_FULL_INT_ST_M; + uint32_t int_status; + + int_status = getreg32(UART_INT_ST_REG(priv->id)); + + /* Tx fifo empty interrupt or UART tx done int */ + + if ((int_status & tx_mask) != 0) + { + uart_xmitchars(dev); + modifyreg32(UART_INT_CLR_REG(priv->id), tx_mask, tx_mask); + } + + /* Rx fifo timeout interrupt or rx fifo full interrupt */ + + if ((int_status & rx_mask) != 0) + { + uart_recvchars(dev); + modifyreg32(UART_INT_CLR_REG(priv->id), rx_mask, rx_mask); + } + + return OK; +} + +/**************************************************************************** + * Name: esp32s3_setup + * + * Description: + * Configure the UART baud, bits, parity, fifos, etc. This method is + * called the first time that the serial port is opened. + * For the serial console, this will occur very early in initialization, + * for other serial ports this will occur when the port is first opened. + * This setup does not include attaching or enabling interrupts. + * That portion of the UART setup is performed when the attach() method + * is called. + * + * Parameters: + * dev - Pointer to the serial driver struct. + * + * Returned Values: + * Zero (OK) is returned. + * + ****************************************************************************/ + +static int esp32s3_setup(struct uart_dev_s *dev) +{ + struct esp32s3_uart_s *priv = dev->priv; + + /* Initialize UART module */ + + /* Discard corrupt RX data and + * disable UART memory clock gate enable signal. + */ + + modifyreg32(UART_CONF0_REG(priv->id), UART_ERR_WR_MASK_M | + UART_MEM_CLK_EN_M, UART_ERR_WR_MASK_M); + + /* Define 0 as the threshold that means TX FIFO buffer is empty. */ + + modifyreg32(UART_CONF1_REG(priv->id), UART_TXFIFO_EMPTY_THRHD_M, 0); + + /* Define a threshold to trigger an RX FIFO FULL interrupt. + * Define just one byte to read data immediately. + */ + + modifyreg32(UART_CONF1_REG(priv->id), UART_RXFIFO_FULL_THRHD_M, + 1 << UART_RXFIFO_FULL_THRHD_S); + + /* Define the maximum FIFO size for RX and TX FIFO. + * That means, 1 block = 128 bytes. + * As a consequence, software serial FIFO can unload the bytes and + * not wait too much on polling activity. + */ + + modifyreg32(UART_MEM_CONF_REG(priv->id), UART_TX_SIZE_M | UART_RX_SIZE_M, + (1 << UART_TX_SIZE_S) | (1 << UART_RX_SIZE_S)); + + /* Configure the UART Baud Rate */ + + esp32s3_lowputc_baud(priv); + + /* Set a mode */ + + esp32s3_lowputc_normal_mode(priv); + + /* Parity */ + + esp32s3_lowputc_parity(priv); + + /* Data Frame size */ + + esp32s3_lowputc_data_length(priv); + + /* Stop bit */ + + esp32s3_lowputc_stop_length(priv); + +#ifdef CONFIG_SERIAL_IFLOWCONTROL + /* Configure the input flow control */ + + if (priv->iflow) + { + /* Enable input flow control and set the RX FIFO threshold + * to assert the RTS line to half the RX FIFO buffer. + * It will then save some space on the hardware fifo to + * remaining bytes that may arrive after RTS be asserted + * and before the transmitter stops sending data. + */ + + esp32s3_lowputc_set_iflow(priv, (uint8_t)(UART_RX_FIFO_SIZE / 2), + true); + } + else + { + /* Just disable input flow control, threshold parameter + * will be discarded. + */ + + esp32s3_lowputc_set_iflow(priv, 0 , false); + } + +#endif +#ifdef CONFIG_SERIAL_OFLOWCONTROL + /* Configure the ouput flow control */ + + if (priv->oflow) + { + esp32s3_lowputc_set_oflow(priv, true); + } + else + { + esp32s3_lowputc_set_oflow(priv, false); + } +#endif + + /* No Tx idle interval */ + + esp32s3_lowputc_set_tx_idle_time(priv, 0); + + /* Enable cores */ + + esp32s3_lowputc_enable_sclk(priv); + + /* Clear FIFOs */ + + esp32s3_lowputc_rst_txfifo(priv); + esp32s3_lowputc_rst_rxfifo(priv); + + return OK; +} + +/**************************************************************************** + * Name: esp32s3_shutdown + * + * Description: + * Disable the UART. This method is called when the serial port is closed. + * This method reverses the operation the setup method. NOTE that the serial + * console is never shutdown. + * + * Parameters: + * dev - Pointer to the serial driver struct. + * + ****************************************************************************/ + +static void esp32s3_shutdown(struct uart_dev_s *dev) +{ + struct esp32s3_uart_s *priv = dev->priv; + + /* Disable ints */ + + esp32s3_lowputc_disable_all_uart_int(priv, NULL); +} + +/**************************************************************************** + * Name: esp32s3_attach + * + * Description: + * Configure the UART to operation in interrupt driven mode. This method + * is called when the serial port is opened. Normally, this is just after + * the the setup() method is called, however, the serial console may + * operate in a non-interrupt driven mode during the boot phase. + * + * RX and TX interrupts are not enabled when by the attach method (unless + * the hardware supports multiple levels of interrupt enabling). The RX + * and TX interrupts are not enabled until the txint() and rxint() methods + * are called. + * + * Parameters: + * dev - Pointer to the serial driver struct. + * + * Returned Values: + * Zero (OK) is returned on success; A negated errno value is returned + * to indicate the nature of any failure. + * + ****************************************************************************/ + +static int esp32s3_attach(struct uart_dev_s *dev) +{ + struct esp32s3_uart_s *priv = dev->priv; + int ret; + + DEBUGASSERT(priv->cpuint == -ENOMEM); + + /* Set up to receive peripheral interrupts on the current CPU */ + + priv->cpu = up_cpu_index(); + priv->cpuint = esp32s3_setup_irq(0, priv->periph, priv->int_pri, + ESP32S3_CPUINT_LEVEL); + if (priv->cpuint < 0) + { + /* Failed to allocate a CPU interrupt of this type */ + + return priv->cpuint; + } + + /* Attach and enable the IRQ */ + + ret = irq_attach(priv->irq, uart_handler, dev); + if (ret == OK) + { + /* Enable the CPU interrupt (RX and TX interrupts are still disabled + * in the UART + */ + + up_enable_irq(priv->irq); + } + + return ret; +} + +/**************************************************************************** + * Name: esp32s3_detach + * + * Description: + * Detach UART interrupts. This method is called when the serial port is + * closed normally just before the shutdown method is called. The + * exception is the serial console which is never shutdown. + * + * Parameters: + * dev - Pointer to the serial driver struct. + * + ****************************************************************************/ + +static void esp32s3_detach(struct uart_dev_s *dev) +{ + struct esp32s3_uart_s *priv = dev->priv; + + DEBUGASSERT(priv->cpuint != -ENOMEM); + + /* Disable and detach the CPU interrupt */ + + up_disable_irq(priv->irq); + irq_detach(priv->irq); + + /* Disassociate the peripheral interrupt from the CPU interrupt */ + + esp32s3_teardown_irq(priv->cpu, priv->periph, priv->cpuint); + priv->cpuint = -ENOMEM; +} + +/**************************************************************************** + * Name: esp32s3_txint + * + * Description: + * Enable or disable TX interrupts. + * + * Parameters: + * dev - Pointer to the serial driver struct. + * enable - If true enables the TX interrupt, if false disables it. + * + ****************************************************************************/ + +static void esp32s3_txint(struct uart_dev_s *dev, bool enable) +{ + struct esp32s3_uart_s *priv = dev->priv; + uint32_t ints_mask = UART_TXFIFO_EMPTY_INT_ENA_M | UART_TX_DONE_INT_ENA_M; + + if (enable) + { + /* Set to receive an interrupt when the TX holding register register + * is empty + */ + +#ifndef CONFIG_SUPPRESS_SERIAL_INTS + modifyreg32(UART_INT_ENA_REG(priv->id), ints_mask, ints_mask); +#endif + } + else + { + /* Disable the TX interrupt */ + + modifyreg32(UART_INT_ENA_REG(priv->id), ints_mask, 0); + } +} + +/**************************************************************************** + * Name: esp32s3_rxint + * + * Description: + * Enable or disable RX interrupts. + * + * Parameters: + * dev - Pointer to the serial driver struct. + * enable - If true enables the RX interrupt, if false disables it. + * + ****************************************************************************/ + +static void esp32s3_rxint(struct uart_dev_s *dev, bool enable) +{ + struct esp32s3_uart_s *priv = dev->priv; + uint32_t ints_mask = UART_RXFIFO_TOUT_INT_ENA_M | + UART_RXFIFO_FULL_INT_ENA_M; + + if (enable) + { + /* Receive an interrupt when there is anything in the RX data register + * (or an RX timeout occurs). + * NOTE: RX timeout feature needs to be enabled. + */ +#ifndef CONFIG_SUPPRESS_SERIAL_INTS + modifyreg32(UART_CONF1_REG(priv->id), UART_RX_TOUT_EN_M, + UART_RX_TOUT_EN_M); + modifyreg32(UART_INT_ENA_REG(priv->id), ints_mask, ints_mask); +#endif + } + else + { + modifyreg32(UART_CONF1_REG(priv->id), UART_RX_TOUT_EN_M, 0); + + /* Disable the RX interrupts */ + + modifyreg32(UART_INT_ENA_REG(priv->id), ints_mask, 0); + } +} + +/**************************************************************************** + * Name: esp32s3_rxavailable + * + * Description: + * Check if there is any data available to be read. + * + * Parameters: + * dev - Pointer to the serial driver struct. + * + * Returned Values: + * Return true if the RX FIFO is not empty and false if RX FIFO is empty. + * + ****************************************************************************/ + +static bool esp32s3_rxavailable(struct uart_dev_s *dev) +{ + struct esp32s3_uart_s *priv = dev->priv; + uint32_t status_reg; + uint32_t bytes; + + status_reg = getreg32(UART_STATUS_REG(priv->id)); + bytes = status_reg & UART_RXFIFO_CNT_M; + + return (bytes > 0); +} + +/**************************************************************************** + * Name: esp32s3_txready + * + * Description: + * Check if the transmit hardware is ready to send another byte. + * This is used to determine if send() method can be called. + * + * Parameters: + * dev - Pointer to the serial driver struct. + * + * Returned Values: + * Return true if the transmit hardware is ready to send another byte, + * false otherwise. + * + ****************************************************************************/ + +static bool esp32s3_txready(struct uart_dev_s *dev) +{ + return !esp32s3_lowputc_is_tx_fifo_full(dev->priv); +} + +/**************************************************************************** + * Name: esp32s3_txempty + * + * Description: + * Verify if all characters have been sent. If for example, the UART + * hardware implements FIFOs, then this would mean the transmit FIFO is + * empty. This method is called when the driver needs to make sure that + * all characters are "drained" from the TX hardware. + * + * Parameters: + * dev - Pointer to the serial driver struct. + * + * Returned Values: + * Return true if the TX FIFO is empty, false if it is not. + * + ****************************************************************************/ + +static bool esp32s3_txempty(struct uart_dev_s *dev) +{ + uint32_t reg; + struct esp32s3_uart_s *priv = dev->priv; + + reg = getreg32(UART_INT_RAW_REG(priv->id)); + reg = reg & UART_TXFIFO_EMPTY_INT_RAW_M; + + return (reg > 0); +} + +/**************************************************************************** + * Name: esp32s3_send + * + * Description: + * Send a unique character + * + * Parameters: + * dev - Pointer to the serial driver struct. + * ch - Byte to be sent. + * + ****************************************************************************/ + +static void esp32s3_send(struct uart_dev_s *dev, int ch) +{ + esp32s3_lowputc_send_byte(dev->priv, ch); +} + +/**************************************************************************** + * Name: esp32s3_receive + * + * Description: + * Called (usually) from the interrupt level to receive one + * character from the UART. Error bits associated with the + * receipt are provided in the return 'status'. + * + * Parameters: + * dev - Pointer to the serial driver struct. + * status - Pointer to a variable to store eventual error bits. + * + * Returned Values: + * Return the byte read from the RX FIFO. + * + ****************************************************************************/ + +static int esp32s3_receive(struct uart_dev_s *dev, unsigned int *status) +{ + uint32_t rx_fifo; + struct esp32s3_uart_s *priv = dev->priv; + + rx_fifo = getreg32(UART_FIFO_REG(priv->id)); + rx_fifo = rx_fifo & UART_RXFIFO_RD_BYTE_M; + + /* Since we don't have error bits associated with receipt, we set zero */ + + *status = 0; + + return (int)rx_fifo; +} + +/**************************************************************************** + * Name: esp32s3_ioctl + * + * Description: + * All ioctl calls will be routed through this method. + * Here it's employed to implement the TERMIOS ioctls and TIOCSERGSTRUCT. + * + * Parameters: + * filep Pointer to a file structure instance. + * cmd The ioctl command. + * arg The argument of the ioctl cmd. + * + * Returned Value: + * Returns a non-negative number on success; A negated errno value is + * returned on any failure (see comments ioctl() for a list of appropriate + * errno values). + * + ****************************************************************************/ + +static int esp32s3_ioctl(struct file *filep, int cmd, unsigned long arg) +{ + /* Get access to the internal instance of the driver through the file + * pointer. + */ + +#if defined(CONFIG_SERIAL_TERMIOS) || defined(CONFIG_SERIAL_TIOCSERGSTRUCT) + struct inode *inode = filep->f_inode; + struct uart_dev_s *dev = inode->i_private; +#endif + int ret = OK; + + /* Run the requested ioctl command. */ + + switch (cmd) + { +#ifdef CONFIG_SERIAL_TIOCSERGSTRUCT + + /* Get the internal driver data structure for debug purposes. */ + + case TIOCSERGSTRUCT: + { + struct esp32s3_uart_s *user = (struct esp32s3_uart_s *)arg; + if (user == NULL) + { + ret = -EINVAL; + } + else + { + memcpy(user, dev->priv, sizeof(struct esp32s3_uart_s)); + } + } + break; +#endif + +#ifdef CONFIG_SERIAL_TERMIOS + + /* Fill a termios structure with the required information. */ + + case TCGETS: + { + struct termios *termiosp = (struct termios *)arg; + struct esp32s3_uart_s *priv = (struct esp32s3_uart_s *)dev->priv; + if (termiosp == NULL) + { + ret = -EINVAL; + break; + } + + /* Return parity (0 = no parity, 1 = odd parity, 2 = even parity). */ + + termiosp->c_cflag = (priv->parity != 0 ? PARENB : 0) | + (priv->parity == 1 ? PARODD : 0); + + /* Return stop bits */ + + termiosp->c_cflag |= priv->stop_b2 != 0 ? CSTOPB : 0; + +#ifdef CONFIG_SERIAL_OFLOWCONTROL + termiosp->c_cflag |= priv->oflow != 0 ? CCTS_OFLOW : 0; +#endif +#ifdef CONFIG_SERIAL_IFLOWCONTROL + termiosp->c_cflag |= priv->iflow != 0 ? CRTS_IFLOW : 0; +#endif + + /* Set the baud rate in ther termiosp using the + * cfsetispeed interface. + */ + + cfsetispeed(termiosp, priv->baud); + + /* Return number of bits. */ + + switch (priv->bits) + { + case 5: + termiosp->c_cflag |= CS5; + break; + + case 6: + termiosp->c_cflag |= CS6; + break; + + case 7: + termiosp->c_cflag |= CS7; + break; + + default: + case 8: + termiosp->c_cflag |= CS8; + break; + } + } + break; + + case TCSETS: + { + struct termios *termiosp = (struct termios *)arg; + struct esp32s3_uart_s *priv = (struct esp32s3_uart_s *)dev->priv; + uint32_t baud; + uint32_t current_int_sts; + uint8_t parity; + uint8_t bits; + uint8_t stop2; +#ifdef CONFIG_SERIAL_IFLOWCONTROL + bool iflow; +#endif +#ifdef CONFIG_SERIAL_OFLOWCONTROL + bool oflow; +#endif + + if (termiosp == NULL) + { + ret = -EINVAL; + break; + } + + /* Get the target baud rate to change. */ + + baud = cfgetispeed(termiosp); + + /* Decode number of bits. */ + + switch (termiosp->c_cflag & CSIZE) + { + case CS5: + bits = 5; + break; + + case CS6: + bits = 6; + break; + + case CS7: + bits = 7; + break; + + case CS8: + bits = 8; + break; + + default: + ret = -EINVAL; + break; + } + + /* Decode parity. */ + + if ((termiosp->c_cflag & PARENB) != 0) + { + parity = (termiosp->c_cflag & PARODD) != 0 ? 1 : 2; + } + else + { + parity = 0; + } + + /* Decode stop bits. */ + + stop2 = (termiosp->c_cflag & CSTOPB) != 0 ? 1 : 0; + +#ifdef CONFIG_SERIAL_IFLOWCONTROL + iflow = (termiosp->c_cflag & CRTS_IFLOW) != 0; +#endif +#ifdef CONFIG_SERIAL_OFLOWCONTROL + oflow = (termiosp->c_cflag & CCTS_OFLOW) != 0; +#endif + + /* Verify that all settings are valid before + * performing the changes. + */ + + if (ret == OK) + { + /* Fill the private struct fields. */ + + priv->baud = baud; + priv->parity = parity; + priv->bits = bits; + priv->stop_b2 = stop2; +#ifdef CONFIG_SERIAL_IFLOWCONTROL + priv->iflow = iflow; +#endif +#ifdef CONFIG_SERIAL_OFLOWCONTROL + priv->oflow = oflow; +#endif + + /* Effect the changes immediately - note that we do not + * implement TCSADRAIN or TCSAFLUSH, only TCSANOW option. + * See nuttx/libs/libc/termios/lib_tcsetattr.c + */ + + esp32s3_lowputc_disable_all_uart_int(priv, ¤t_int_sts); + ret = esp32s3_setup(dev); + + /* Restore the interrupt state */ + + esp32s3_lowputc_restore_all_uart_int(priv, ¤t_int_sts); + } + } + break; +#endif /* CONFIG_SERIAL_TERMIOS */ + + default: + ret = -ENOTTY; + break; + } + + return ret; +} + +/**************************************************************************** + * Name: esp32s3_rxflowcontrol + * + * Description: + * Called when upper half RX buffer is full (or exceeds configured + * watermark levels if CONFIG_SERIAL_IFLOWCONTROL_WATERMARKS is defined). + * Return true if UART activated RX flow control to block more incoming + * data. + * NOTE: ESP32-S3 has a hardware RX FIFO threshold mechanism to control + * RTS line and to stop receiving data. This is very similar to the concept + * behind upper watermark level. The hardware threshold is used here + * to control the RTS line. When setting the threshold to zero, RTS will + * immediately be asserted. If nbuffered = 0 or the lower watermark is + * crossed and the serial driver decides to disable RX flow control, the + * threshold will be changed to UART_RX_FLOW_THRHD_VALUE, which is almost + * half the HW RX FIFO capacity. It keeps some space to keep the data + * received between the RTS assertion and the stop by the sender. + * + * Input Parameters: + * dev - UART device instance + * nbuffered - the number of characters currently buffered + * (if CONFIG_SERIAL_IFLOWCONTROL_WATERMARKS is + * not defined the value will be 0 for an empty buffer or the + * defined buffer size for a full buffer) + * upper - true indicates the upper watermark was crossed where + * false indicates the lower watermark has been crossed + * + * Returned Value: + * true if RX flow control activated. + * + ****************************************************************************/ + +#ifdef CONFIG_SERIAL_IFLOWCONTROL +static bool esp32s3_rxflowcontrol(struct uart_dev_s *dev, + unsigned int nbuffered, bool upper) +{ + bool ret = false; + struct esp32s3_uart_s *priv = dev->priv; + if (priv->iflow) + { + if (nbuffered == 0 || upper == false) + { + /* Empty buffer, RTS should be de-asserted and logic in above + * layers should re-enable RX interrupt. + */ + + esp32s3_lowputc_set_iflow(priv, (uint8_t)(UART_RX_FIFO_SIZE / 2), + true); + esp32s3_rxint(dev, true); + ret = false; + } + else + { + /* If the RX buffer is not zero and watermarks are not enabled, + * then this function is called to announce RX buffer is full. + * The first thing it should do is to immediately assert RTS. + * Software RX FIFO is full, so besides asserting RTS, it's + * necessary to disable RX interrupts to prevent remaining bytes + * (that arrive after asserting RTS) to be pushed to the + * SW RX FIFO. + */ + + esp32s3_lowputc_set_iflow(priv, 0 , true); + esp32s3_rxint(dev, false); + ret = true; + } + } + + return ret; +} +#endif +#endif /* CONFIG_ESP32S3_UART */ + +/**************************************************************************** + * Public Functions + ****************************************************************************/ + +#ifdef USE_EARLYSERIALINIT + +/**************************************************************************** + * Name: xtensa_earlyserialinit + * + * Description: + * Performs the low level UART initialization early in debug so that the + * serial console will be available during bootup. This must be called + * before xtensa_serialinit. NOTE: This function depends on GPIO pin + * configuration performed in up_consoleinit() and main clock + * initialization performed in up_clkinitialize(). + * + ****************************************************************************/ + +void xtensa_earlyserialinit(void) +{ + /* NOTE: All GPIO configuration for the UARTs was performed in + * esp32s3_lowsetup + */ + + /* Disable all UARTS interrupts */ + +#ifdef TTYS0_DEV + esp32s3_lowputc_disable_all_uart_int(TTYS0_DEV.priv, NULL); +#endif + +#ifdef TTYS1_DEV + esp32s3_lowputc_disable_all_uart_int(TTYS1_DEV.priv, NULL); +#endif + + /* Configure console in early step. + * Setup for other serials will be perfomed when the serial driver is + * open. + */ + +#ifdef CONSOLE_UART + esp32s3_setup(&CONSOLE_DEV); +#endif +} + +#endif /* USE_EARLYSERIALINIT */ + +/**************************************************************************** + * Name: xtensa_serialinit + * + * Description: + * Register serial console and serial ports. This assumes + * that xtensa_earlyserialinit was called previously. + * + ****************************************************************************/ + +void xtensa_serialinit(void) +{ +#ifdef CONSOLE_UART + uart_register("/dev/console", &CONSOLE_DEV); +#endif + +#ifdef TTYS0_DEV + uart_register("/dev/ttyS0", &TTYS0_DEV); +#endif + +#ifdef TTYS1_DEV + uart_register("/dev/ttyS1", &TTYS1_DEV); +#endif + +#ifdef CONFIG_ESP32S3_USBSERIAL + uart_register("/dev/ttyACM0", &TTYACM0_DEV); +#endif +} + +/**************************************************************************** + * Name: up_putc + * + * Description: + * Provide priority, low-level access to support OS debug writes + * + ****************************************************************************/ + +int up_putc(int ch) +{ +#ifdef CONSOLE_UART + uint32_t int_status; + + esp32s3_lowputc_disable_all_uart_int(CONSOLE_DEV.priv, &int_status); +#endif + + /* Check for LF */ + + if (ch == '\n') + { + /* Add CR */ + + up_lowputc('\r'); + } + + up_lowputc(ch); + +#ifdef CONSOLE_UART + esp32s3_lowputc_restore_all_uart_int(CONSOLE_DEV.priv, &int_status); +#endif + return ch; +} + +#endif /* HAVE_UART_DEVICE */ + +#else /* USE_SERIALDRIVER */ + +/**************************************************************************** + * Name: up_putc + * + * Description: + * Provide priority, low-level access to support OS debug writes + * + ****************************************************************************/ + +int up_putc(int ch) +{ +#ifdef CONSOLE_UART + uint32_t int_status; + + esp32s3_lowputc_disable_all_uart_int(CONSOLE_DEV.priv, &int_status); +#endif + + /* Check for LF */ + + if (ch == '\n') + { + /* Add CR */ + + up_lowputc('\r'); + } + + up_lowputc(ch); + +#ifdef CONSOLE_UART + esp32s3_lowputc_restore_all_uart_int(CONSOLE_DEV.priv, &int_status); +#endif + return ch; +} + +#endif /* USE_SERIALDRIVER */ diff --git a/arch/xtensa/src/esp32s3/esp32s3_start.c b/arch/xtensa/src/esp32s3/esp32s3_start.c new file mode 100644 index 0000000000..5bec851c52 --- /dev/null +++ b/arch/xtensa/src/esp32s3/esp32s3_start.c @@ -0,0 +1,324 @@ +/**************************************************************************** + * arch/xtensa/src/esp32s3/esp32s3_start.c + * + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. The + * ASF licenses this file to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance with the + * License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT + * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the + * License for the specific language governing permissions and limitations + * under the License. + * + ****************************************************************************/ + +/**************************************************************************** + * Included Files + ****************************************************************************/ + +#include + +#include +#include + +#include +#include + +#include "xtensa.h" +#include "xtensa_attr.h" + +#include "esp32s3_start.h" +#include "esp32s3_lowputc.h" +#include "esp32s3_clockconfig.h" +#include "esp32s3_region.h" +#include "esp32s3_wdt.h" +#include "hardware/esp32s3_cache_memory.h" +#include "hardware/esp32s3_system.h" + +/**************************************************************************** + * Pre-processor Definitions + ****************************************************************************/ + +#ifdef CONFIG_DEBUG_FEATURES +# define showprogress(c) up_lowputc(c) +#else +# define showprogress(c) +#endif + +/**************************************************************************** + * Private Types + ****************************************************************************/ + +/**************************************************************************** + * ROM Function Prototypes + ****************************************************************************/ + +extern void rom_config_instruction_cache_mode(uint32_t cfg_cache_size, + uint8_t cfg_cache_ways, + uint8_t cfg_cache_line_size); +extern void rom_config_data_cache_mode(uint32_t cfg_cache_size, + uint8_t cfg_cache_ways, + uint8_t cfg_cache_line_size); +extern uint32_t cache_suspend_dcache(void); +extern void cache_resume_dcache(uint32_t val); +extern uint32_t cache_set_idrom_mmu_size(uint32_t irom_size, + uint32_t drom_size); +extern void cache_set_idrom_mmu_info(uint32_t instr_page_num, + uint32_t rodata_page_num, + uint32_t rodata_start, + uint32_t rodata_end, + int i_off, + int ro_off); +#ifdef CONFIG_ESP32S3_DATA_CACHE_16KB +extern void cache_invalidate_dcache_all(void); +extern int cache_occupy_addr(uint32_t addr, uint32_t size); +#endif + +/**************************************************************************** + * Private Function Prototypes + ****************************************************************************/ + +/**************************************************************************** + * Private Data + ****************************************************************************/ + +/**************************************************************************** + * Public Data + ****************************************************************************/ + +extern int _rodata_reserved_start; +extern int _rodata_reserved_end; + +/* Address of the CPU0 IDLE thread */ + +uint32_t g_idlestack[IDLETHREAD_STACKWORDS] + aligned_data(16) locate_data(".noinit"); + +/**************************************************************************** + * Private Functions + ****************************************************************************/ + +/**************************************************************************** + * Name: configure_cpu_caches + * + * Description: + * Configure the Instruction and Data CPU caches. + * + * Input Parameters: + * None. + * + * Returned Value: + * None. + * + ****************************************************************************/ + +static void IRAM_ATTR configure_cpu_caches(void) +{ + int s_instr_flash2spiram_off = 0; + int s_rodata_flash2spiram_off = 0; + + /* Configure the mode of instruction cache: cache size, cache line size. */ + + rom_config_instruction_cache_mode(CONFIG_ESP32S3_INSTRUCTION_CACHE_SIZE, + CONFIG_ESP32S3_ICACHE_ASSOCIATED_WAYS, + CONFIG_ESP32S3_INSTRUCTION_CACHE_LINE_SIZE); + + /* If we need to use SPIRAM, we should use data cache. + * Configure the mode of data cache: cache size, cache line size. + */ + + cache_suspend_dcache(); + rom_config_data_cache_mode(CONFIG_ESP32S3_DATA_CACHE_SIZE, + CONFIG_ESP32S3_DCACHE_ASSOCIATED_WAYS, + CONFIG_ESP32S3_DATA_CACHE_LINE_SIZE); + cache_resume_dcache(0); + + /* Configure the Cache MMU size for instruction and rodata in flash. */ + + uint32_t rodata_reserved_start_align = + (uint32_t)&_rodata_reserved_start & ~(MMU_PAGE_SIZE - 1); + uint32_t cache_mmu_irom_size = + ((rodata_reserved_start_align - SOC_DROM_LOW) / MMU_PAGE_SIZE) * + sizeof(uint32_t); + + uint32_t cache_mmu_drom_size = + (((uint32_t)&_rodata_reserved_end - rodata_reserved_start_align + + MMU_PAGE_SIZE - 1) / + MMU_PAGE_SIZE) * sizeof(uint32_t); + + cache_set_idrom_mmu_size(cache_mmu_irom_size, + CACHE_DROM_MMU_MAX_END - cache_mmu_irom_size); + + cache_set_idrom_mmu_info(cache_mmu_irom_size / sizeof(uint32_t), + cache_mmu_drom_size / sizeof(uint32_t), + (uint32_t)&_rodata_reserved_start, + (uint32_t)&_rodata_reserved_end, + s_instr_flash2spiram_off, + s_rodata_flash2spiram_off); + +#ifdef CONFIG_ESP32S3_DATA_CACHE_16KB + cache_invalidate_dcache_all(); + cache_occupy_addr(SOC_DROM_LOW, 0x4000); +#endif +} + +/**************************************************************************** + * Name: disable_app_cpu + * + * Description: + * Disable the APP CPU (Core 1). + * + * Input Parameters: + * None. + * + * Returned Value: + * None. + * + ****************************************************************************/ + +static void IRAM_ATTR disable_app_cpu(void) +{ + uint32_t regval; + + regval = getreg32(SYSTEM_CORE_1_CONTROL_0_REG); + regval &= ~SYSTEM_CONTROL_CORE_1_CLKGATE_EN; + putreg32(regval, SYSTEM_CORE_1_CONTROL_0_REG); + + /* The clock gating signal of the App core is invalid. + * We use RUNSTALL and RESETING signals to ensure that the App core stops + * running in single-core mode. + */ + + regval = getreg32(SYSTEM_CORE_1_CONTROL_0_REG); + regval |= SYSTEM_CONTROL_CORE_1_RUNSTALL; + putreg32(regval, SYSTEM_CORE_1_CONTROL_0_REG); + + regval = getreg32(SYSTEM_CORE_1_CONTROL_0_REG); + regval &= ~SYSTEM_CONTROL_CORE_1_RESETING; + putreg32(regval, SYSTEM_CORE_1_CONTROL_0_REG); +} + +/**************************************************************************** + * Name: __esp32s3_start + * + * Description: + * Perform base configuration of the chip for code execution. + * + * Input Parameters: + * None. + * + * Returned Value: + * None. + * + ****************************************************************************/ + +void noreturn_function IRAM_ATTR __esp32s3_start(void) +{ + uint32_t sp; + + /* Make sure that normal interrupts are disabled. This is really only an + * issue when we are started in un-usual ways (such as from IRAM). In this + * case, we can at least defer some unexpected interrupts left over from + * the last program execution. + */ + + up_irq_disable(); + + /* Move the stack to a known location. Although we were given a stack + * pointer at start-up, we don't know where that stack pointer is + * positioned with respect to our memory map. The only safe option is to + * switch to a well-known IDLE thread stack. + */ + + sp = (uint32_t)g_idlestack + IDLETHREAD_STACKSIZE; + __asm__ __volatile__("mov sp, %0\n" : : "r"(sp)); + + /* Raise an exception in case page 0 is accessed */ + + esp32s3_region_protection(); + + /* Move CPU0 exception vectors to IRAM */ + + __asm__ __volatile__ ("wsr %0, vecbase\n"::"r" (&_init_start)); + + /* Clear .bss. We'll do this inline (vs. calling memset) just to be + * certain that there are no issues with the state of global variables. + */ + + for (uint32_t *dest = &_sbss; dest < &_ebss; dest++) + { + *dest = 0; + } + + /* Make sure that the APP_CPU is disabled for now */ + + disable_app_cpu(); + + /* The 2nd stage bootloader enables RTC WDT to check on startup sequence + * related issues in application. Hence disable that as we are about to + * start the NuttX environment. + */ + + esp32s3_wdt_early_deinit(); + + /* Set CPU frequency configured in board.h */ + + esp32s3_clockconfig(); + +#ifndef CONFIG_SUPPRESS_UART_CONFIG + /* Configure the UART so we can get debug output */ + + esp32s3_lowsetup(); +#endif + +#ifdef USE_EARLYSERIALINIT + /* Perform early serial initialization */ + + xtensa_earlyserialinit(); +#endif + + showprogress('A'); + + /* Initialize onboard resources */ + + esp32s3_board_initialize(); + + showprogress('B'); + + /* Bring up NuttX */ + + nx_start(); + for (; ; ); /* Should not return */ +} + +/**************************************************************************** + * Public Functions + ****************************************************************************/ + +/**************************************************************************** + * Name: __start + * + * Description: + * We arrive here after the bootloader finished loading the program from + * flash. The hardware is mostly uninitialized, and the app CPU is in + * reset. We do have a stack, so we can do the initialization in C. + * + * The app CPU will remain in reset unless CONFIG_SMP is selected and + * up_cpu_start() is called later in the bring-up sequence. + * + ****************************************************************************/ + +void IRAM_ATTR __start(void) +{ + configure_cpu_caches(); + + __esp32s3_start(); + + while (true); /* Should not return */ +} diff --git a/arch/xtensa/src/esp32s3/esp32s3_start.h b/arch/xtensa/src/esp32s3/esp32s3_start.h new file mode 100644 index 0000000000..306da940b2 --- /dev/null +++ b/arch/xtensa/src/esp32s3/esp32s3_start.h @@ -0,0 +1,54 @@ +/**************************************************************************** + * arch/xtensa/src/esp32s3/esp32s3_start.h + * + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. The + * ASF licenses this file to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance with the + * License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT + * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the + * License for the specific language governing permissions and limitations + * under the License. + * + ****************************************************************************/ + +/**************************************************************************** + * Included Files + ****************************************************************************/ + +#ifndef __ARCH_XTENSA_SRC_ESP32S3_ESP32S3_START_H +#define __ARCH_XTENSA_SRC_ESP32S3_ESP32S3_START_H + +/**************************************************************************** + * Included Files + ****************************************************************************/ + +/**************************************************************************** + * Pre-processor Definitions + ****************************************************************************/ + +/**************************************************************************** + * Name: esp32s3_board_initialize + * + * Description: + * Board-specific logic is initialized by calling this function. This + * entry point is called early in the initialization -- after all memory + * has been configured but before any devices have been initialized. + * + * Input Parameters: + * None + * + * Returned Value: + * None + * + ****************************************************************************/ + +void esp32s3_board_initialize(void); + +#endif /* __ARCH_XTENSA_SRC_ESP32S3_ESP32S3_START_H */ diff --git a/arch/xtensa/src/esp32s3/esp32s3_systemreset.c b/arch/xtensa/src/esp32s3/esp32s3_systemreset.c new file mode 100644 index 0000000000..9d71639bba --- /dev/null +++ b/arch/xtensa/src/esp32s3/esp32s3_systemreset.c @@ -0,0 +1,54 @@ +/**************************************************************************** + * arch/xtensa/src/esp32s3/esp32s3_systemreset.c + * + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. The + * ASF licenses this file to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance with the + * License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT + * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the + * License for the specific language governing permissions and limitations + * under the License. + * + ****************************************************************************/ + +/**************************************************************************** + * Included Files + ****************************************************************************/ + +#include + +#include + +#include +#include + +#include "xtensa.h" +#include "hardware/esp32s3_rtccntl.h" + +/**************************************************************************** + * Public Functions + ****************************************************************************/ + +/**************************************************************************** + * Name: up_systemreset + * + * Description: + * Internal reset logic. + * + ****************************************************************************/ + +void up_systemreset(void) +{ + putreg32(RTC_CNTL_SW_SYS_RST, RTC_CNTL_RTC_OPTIONS0_REG); + + /* Wait for the reset */ + + for (; ; ); +} diff --git a/arch/xtensa/src/esp32s3/esp32s3_timerisr.c b/arch/xtensa/src/esp32s3/esp32s3_timerisr.c new file mode 100644 index 0000000000..30896f07a2 --- /dev/null +++ b/arch/xtensa/src/esp32s3/esp32s3_timerisr.c @@ -0,0 +1,143 @@ +/**************************************************************************** + * arch/xtensa/src/esp32s3/esp32s3_timerisr.c + * + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. The + * ASF licenses this file to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance with the + * License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT + * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the + * License for the specific language governing permissions and limitations + * under the License. + * + ****************************************************************************/ + +/**************************************************************************** + * Included Files + ****************************************************************************/ + +#include + +#include +#include +#include + +#include +#include +#include + +#include "chip.h" +#include "esp32s3_irq.h" +#include "hardware/esp32s3_system.h" +#include "hardware/esp32s3_systimer.h" +#include "xtensa.h" + +/**************************************************************************** + * Pre-processor Definitions + ****************************************************************************/ + +#define ESP32S3_SYSTIMER_TICKS_PER_SEC (16 * 1000 * 1000) + +/**************************************************************************** + * Private Functions + ****************************************************************************/ + +/**************************************************************************** + * Name: systimer_isr + * + * Description: + * The timer ISR will perform a variety of services for various portions + * of the systems. + * + * Input Parameters: + * irq - CPU interrupt index. + * context - Context data from the ISR. + * arg - Opaque pointer to the internal driver state structure. + * + * Returned Value: + * Zero (OK) is returned on success. A negated errno value is returned on + * failure. + * + ****************************************************************************/ + +static int systimer_isr(int irq, void *context, void *arg) +{ + modifyreg32(SYSTIMER_INT_CLR_REG, 0, SYSTIMER_TARGET0_INT_CLR); + + /* Process timer interrupt */ + + nxsched_process_timer(); + + return OK; +} + +/**************************************************************************** + * Public Functions + ****************************************************************************/ + +/**************************************************************************** + * Name: up_timer_initialize + * + * Description: + * This function is called during start-up to initialize the timer + * interrupt. + * + * Input Parameters: + * None. + * + * Returned Value: + * None. + * + ****************************************************************************/ + +void up_timer_initialize(void) +{ + uint32_t regval; + int cpuint; + + cpuint = esp32s3_setup_irq(0, ESP32S3_PERIPH_SYSTIMER_TARGET0, 1, + ESP32S3_CPUINT_LEVEL); + DEBUGASSERT(cpuint >= 0); + + /* Attach the timer interrupt. */ + + irq_attach(ESP32S3_IRQ_SYSTIMER_TARGET0, systimer_isr, NULL); + + /* Enable the allocated CPU interrupt. */ + + up_enable_irq(ESP32S3_IRQ_SYSTIMER_TARGET0); + + /* Enable timer clock */ + + modifyreg32(SYSTEM_PERIP_CLK_EN0_REG, 0, SYSTEM_SYSTIMER_CLK_EN); + modifyreg32(SYSTEM_PERIP_RST_EN0_REG, SYSTEM_SYSTIMER_RST, 0); + modifyreg32(SYSTIMER_CONF_REG, 0, SYSTIMER_CLK_EN); + + /* Configure alarm0 (Comparator 0) */ + + regval = SYSTIMER_TARGET0_PERIOD_MODE | + ((ESP32S3_SYSTIMER_TICKS_PER_SEC / CLOCKS_PER_SEC) << + SYSTIMER_TARGET0_PERIOD_S); + putreg32(regval, SYSTIMER_TARGET0_CONF_REG); + putreg32(SYSTIMER_TIMER_COMP0_LOAD, SYSTIMER_COMP0_LOAD_REG); + + /* Stall systimer 0 when CPU stalls, e.g., when using JTAG to debug */ + + modifyreg32(SYSTIMER_CONF_REG, 0, SYSTIMER_TIMER_UNIT0_CORE0_STALL_EN); + + /* Enable interrupt */ + + modifyreg32(SYSTIMER_INT_CLR_REG, 0, SYSTIMER_TARGET0_INT_CLR); + modifyreg32(SYSTIMER_INT_ENA_REG, 0, SYSTIMER_TARGET0_INT_ENA); + modifyreg32(SYSTIMER_CONF_REG, 0, SYSTIMER_TARGET0_WORK_EN); + + /* Start alarm0 counter0 */ + + modifyreg32(SYSTIMER_CONF_REG, 0, SYSTIMER_TIMER_UNIT0_WORK_EN); +} diff --git a/arch/xtensa/src/esp32s3/esp32s3_user.c b/arch/xtensa/src/esp32s3/esp32s3_user.c new file mode 100644 index 0000000000..d263bee055 --- /dev/null +++ b/arch/xtensa/src/esp32s3/esp32s3_user.c @@ -0,0 +1,71 @@ +/**************************************************************************** + * arch/xtensa/src/esp32s3/esp32s3_user.c + * + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. The + * ASF licenses this file to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance with the + * License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT + * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the + * License for the specific language governing permissions and limitations + * under the License. + * + ****************************************************************************/ + +/**************************************************************************** + * Included Files + ****************************************************************************/ + +#include + +#include + +#include "xtensa.h" + +/**************************************************************************** + * Public Data + ****************************************************************************/ + +/**************************************************************************** + * Private Data + ****************************************************************************/ + +/**************************************************************************** + * Private Functions + ****************************************************************************/ + +/**************************************************************************** + * Public Functions + ****************************************************************************/ + +/**************************************************************************** + * Name: xtensa_user + * + * Description: + * ESP32-S3-specific user exception handler. + * + * Input Parameters: + * exccause - Identifies the EXCCAUSE of the user exception. + * regs - The register save are at the time of the interrupt. + * + * Returned Value: + * Does not return. + * + ****************************************************************************/ + +uint32_t *xtensa_user(int exccause, uint32_t *regs) +{ + /* xtensa_user_panic never returns. */ + + xtensa_user_panic(exccause, regs); + + while (1) + { + } +} diff --git a/arch/xtensa/src/esp32s3/esp32s3_wdt.c b/arch/xtensa/src/esp32s3/esp32s3_wdt.c new file mode 100644 index 0000000000..8592acd888 --- /dev/null +++ b/arch/xtensa/src/esp32s3/esp32s3_wdt.c @@ -0,0 +1,50 @@ +/**************************************************************************** + * arch/xtensa/src/esp32s3/esp32s3_wdt.c + * + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. The + * ASF licenses this file to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance with the + * License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT + * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the + * License for the specific language governing permissions and limitations + * under the License. + * + ****************************************************************************/ + +/**************************************************************************** + * Included Files + ****************************************************************************/ + +#include "xtensa.h" + +#include "esp32s3_wdt.h" +#include "hardware/esp32s3_rtccntl.h" + +/**************************************************************************** + * Public Functions + ****************************************************************************/ + +/**************************************************************************** + * Name: esp32s3_wdt_early_deinit + * + * Description: + * Disable the WDT(s) that was/were enabled by the bootloader. + * + ****************************************************************************/ + +void esp32s3_wdt_early_deinit(void) +{ + uint32_t regval; + putreg32(RTC_CNTL_WDT_WKEY_VALUE, RTC_CNTL_RTC_WDTWPROTECT_REG); + regval = getreg32(RTC_CNTL_RTC_WDTCONFIG0_REG); + regval &= ~RTC_CNTL_WDT_EN; + putreg32(regval, RTC_CNTL_RTC_WDTCONFIG0_REG); + putreg32(0, RTC_CNTL_RTC_WDTWPROTECT_REG); +} diff --git a/arch/xtensa/src/esp32s3/esp32s3_wdt.h b/arch/xtensa/src/esp32s3/esp32s3_wdt.h new file mode 100644 index 0000000000..ee8f4e9b0b --- /dev/null +++ b/arch/xtensa/src/esp32s3/esp32s3_wdt.h @@ -0,0 +1,34 @@ +/**************************************************************************** + * arch/xtensa/src/esp32s3/esp32s3_wdt.h + * + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. The + * ASF licenses this file to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance with the + * License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT + * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the + * License for the specific language governing permissions and limitations + * under the License. + * + ****************************************************************************/ + +#ifndef __ARCH_XTENSA_SRC_ESP32S3_ESP32S3_WDT_H +#define __ARCH_XTENSA_SRC_ESP32S3_ESP32S3_WDT_H + +/**************************************************************************** + * Included Files + ****************************************************************************/ + +/**************************************************************************** + * Public Function Prototypes + ****************************************************************************/ + +void esp32s3_wdt_early_deinit(void); + +#endif /* __ARCH_XTENSA_SRC_ESP32S3_ESP32S3_WDT_H */ diff --git a/arch/xtensa/src/esp32s3/hardware/esp32s3_cache_memory.h b/arch/xtensa/src/esp32s3/hardware/esp32s3_cache_memory.h new file mode 100644 index 0000000000..7e41044b5f --- /dev/null +++ b/arch/xtensa/src/esp32s3/hardware/esp32s3_cache_memory.h @@ -0,0 +1,118 @@ +/**************************************************************************** + * arch/xtensa/src/esp32s3/hardware/esp32s3_cache_memory.h + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + ****************************************************************************/ + +#ifndef __ARCH_XTENSA_SRC_ESP32S3_HARDWARE_ESP32S3_CACHE_MEMORY_H +#define __ARCH_XTENSA_SRC_ESP32S3_HARDWARE_ESP32S3_CACHE_MEMORY_H + +/**************************************************************************** + * Included Files + ****************************************************************************/ + +#include + +#include "esp32s3_soc.h" + +/**************************************************************************** + * Pre-processor Definitions + ****************************************************************************/ + +/* IRAM0 is connected with Cache IBUS0 */ + +#define IRAM0_ADDRESS_LOW 0x40000000 +#define IRAM0_ADDRESS_HIGH 0x44000000 +#define IRAM0_CACHE_ADDRESS_LOW 0x42000000 +#define IRAM0_CACHE_ADDRESS_HIGH 0x44000000 + +/* DRAM0 is connected with Cache DBUS0 */ + +#define DRAM0_ADDRESS_LOW 0x3c000000 +#define DRAM0_ADDRESS_HIGH 0x40000000 +#define DRAM0_CACHE_ADDRESS_LOW 0x3c000000 +#define DRAM0_CACHE_ADDRESS_HIGH 0x3e000000 +#define DRAM0_CACHE_OPERATION_HIGH DRAM0_CACHE_ADDRESS_HIGH +#define ESP_CACHE_TEMP_ADDR 0x3c800000 + +#define BUS_SIZE(bus_name) (bus_name##_ADDRESS_HIGH - \ + bus_name##_ADDRESS_LOW) +#define ADDRESS_IN_BUS(bus_name, vaddr) ((vaddr) >= bus_name##_ADDRESS_LOW \ + && (vaddr) < \ + bus_name##_ADDRESS_HIGH) + +#define ADDRESS_IN_IRAM0(vaddr) ADDRESS_IN_BUS(IRAM0, vaddr) +#define ADDRESS_IN_IRAM0_CACHE(vaddr) ADDRESS_IN_BUS(IRAM0_CACHE, vaddr) +#define ADDRESS_IN_DRAM0(vaddr) ADDRESS_IN_BUS(DRAM0, vaddr) +#define ADDRESS_IN_DRAM0_CACHE(vaddr) ADDRESS_IN_BUS(DRAM0_CACHE, vaddr) + +#define BUS_IRAM0_CACHE_SIZE BUS_SIZE(IRAM0_CACHE) +#define BUS_DRAM0_CACHE_SIZE BUS_SIZE(DRAM0_CACHE) + +#define CACHE_IBUS 0 +#define CACHE_IBUS_MMU_START 0 +#define CACHE_IBUS_MMU_END 0x800 + +#define CACHE_DBUS 1 +#define CACHE_DBUS_MMU_START 0 +#define CACHE_DBUS_MMU_END 0x800 + +#define CACHE_IROM_MMU_START 0 +#define CACHE_IROM_MMU_END Cache_Get_IROM_MMU_End() +#define CACHE_IROM_MMU_SIZE (CACHE_IROM_MMU_END - CACHE_IROM_MMU_START) + +#define CACHE_DROM_MMU_START CACHE_IROM_MMU_END +#define CACHE_DROM_MMU_END Cache_Get_DROM_MMU_End() +#define CACHE_DROM_MMU_SIZE (CACHE_DROM_MMU_END - CACHE_DROM_MMU_START) + +#define CACHE_DROM_MMU_MAX_END 0x400 + +#define ICACHE_MMU_SIZE 0x800 +#define DCACHE_MMU_SIZE 0x800 + +#define MMU_BUS_START(i) 0 +#define MMU_BUS_SIZE(i) 0x800 + +#define MMU_INVALID BIT(14) +#define MMU_TYPE BIT(15) +#define MMU_ACCESS_FLASH 0 +#define MMU_ACCESS_SPIRAM BIT(15) + +#define CACHE_MAX_SYNC_NUM 0x400000 +#define CACHE_MAX_LOCK_NUM 0x8000 + +#define FLASH_MMU_TABLE ((volatile uint32_t *)DR_REG_MMU_TABLE) +#define FLASH_MMU_TABLE_SIZE (ICACHE_MMU_SIZE / sizeof(uint32_t)) + +#define MMU_TABLE_INVALID_VAL 0x4000 +#define FLASH_MMU_TABLE_INVALID_VAL DPORT_MMU_TABLE_INVALID_VAL +#define MMU_ADDRESS_MASK 0x3fff +#define MMU_PAGE_SIZE 0x10000 +#define INVALID_PHY_PAGE 0xffff + +#define BUS_ADDR_SIZE 0x200000 +#define BUS_ADDR_MASK (BUS_ADDR_SIZE - 1) + +#define CACHE_ICACHE_LOW_SHIFT 0 +#define CACHE_ICACHE_HIGH_SHIFT 2 +#define CACHE_DCACHE_LOW_SHIFT 4 +#define CACHE_DCACHE_HIGH_SHIFT 6 + +#define CACHE_MEMORY_IBANK0_ADDR 0x40370000 +#define CACHE_MEMORY_IBANK1_ADDR 0x40374000 + +#define CACHE_MEMORY_DBANK0_ADDR 0x3fcf0000 +#define CACHE_MEMORY_DBANK1_ADDR 0x3fcf8000 + +#endif /* __ARCH_XTENSA_SRC_ESP32S3_HARDWARE_ESP32S3_CACHE_MEMORY_H */ diff --git a/arch/xtensa/src/esp32s3/hardware/esp32s3_extmem.h b/arch/xtensa/src/esp32s3/hardware/esp32s3_extmem.h new file mode 100644 index 0000000000..8d19cfb61c --- /dev/null +++ b/arch/xtensa/src/esp32s3/hardware/esp32s3_extmem.h @@ -0,0 +1,2761 @@ +/**************************************************************************** + * arch/xtensa/src/esp32s3/hardware/esp32s3_extmem.h + * + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. The + * ASF licenses this file to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance with the + * License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT + * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the + * License for the specific language governing permissions and limitations + * under the License. + * + ****************************************************************************/ + +#ifndef __ARCH_XTENSA_SRC_ESP32S3_HARDWARE_ESP32S3_EXTMEM_H +#define __ARCH_XTENSA_SRC_ESP32S3_HARDWARE_ESP32S3_EXTMEM_H + +/**************************************************************************** + * Included Files + ****************************************************************************/ + +#include "esp32s3_soc.h" + +/**************************************************************************** + * Pre-processor Definitions + ****************************************************************************/ + +/* EXTMEM_DCACHE_CTRL_REG register + * ******* Description *********** + */ + +#define EXTMEM_DCACHE_CTRL_REG (DR_REG_EXTMEM_BASE + 0x0) + +/* EXTMEM_DCACHE_BLOCKSIZE_MODE : R/W; bitpos: [4:3]; default: 0; + * The bit is used to configure cache block size.0: 16 bytes, 1: 32 bytes,2: + * 64 bytes + */ + +#define EXTMEM_DCACHE_BLOCKSIZE_MODE 0x00000003 +#define EXTMEM_DCACHE_BLOCKSIZE_MODE_M (EXTMEM_DCACHE_BLOCKSIZE_MODE_V << EXTMEM_DCACHE_BLOCKSIZE_MODE_S) +#define EXTMEM_DCACHE_BLOCKSIZE_MODE_V 0x00000003 +#define EXTMEM_DCACHE_BLOCKSIZE_MODE_S 3 + +/* EXTMEM_DCACHE_SIZE_MODE : R/W; bitpos: [2]; default: 0; + * The bit is used to configure cache memory size.0: 32KB, 1: 64KB + */ + +#define EXTMEM_DCACHE_SIZE_MODE (BIT(2)) +#define EXTMEM_DCACHE_SIZE_MODE_M (EXTMEM_DCACHE_SIZE_MODE_V << EXTMEM_DCACHE_SIZE_MODE_S) +#define EXTMEM_DCACHE_SIZE_MODE_V 0x00000001 +#define EXTMEM_DCACHE_SIZE_MODE_S 2 + +/* EXTMEM_DCACHE_ENABLE : R/W; bitpos: [0]; default: 0; + * The bit is used to activate the data cache. 0: disable, 1: enable + */ + +#define EXTMEM_DCACHE_ENABLE (BIT(0)) +#define EXTMEM_DCACHE_ENABLE_M (EXTMEM_DCACHE_ENABLE_V << EXTMEM_DCACHE_ENABLE_S) +#define EXTMEM_DCACHE_ENABLE_V 0x00000001 +#define EXTMEM_DCACHE_ENABLE_S 0 + +/* EXTMEM_DCACHE_CTRL1_REG register + * ******* Description *********** + */ + +#define EXTMEM_DCACHE_CTRL1_REG (DR_REG_EXTMEM_BASE + 0x4) + +/* EXTMEM_DCACHE_SHUT_CORE1_BUS : R/W; bitpos: [1]; default: 1; + * The bit is used to disable core1 dbus, 0: enable, 1: disable + */ + +#define EXTMEM_DCACHE_SHUT_CORE1_BUS (BIT(1)) +#define EXTMEM_DCACHE_SHUT_CORE1_BUS_M (EXTMEM_DCACHE_SHUT_CORE1_BUS_V << EXTMEM_DCACHE_SHUT_CORE1_BUS_S) +#define EXTMEM_DCACHE_SHUT_CORE1_BUS_V 0x00000001 +#define EXTMEM_DCACHE_SHUT_CORE1_BUS_S 1 + +/* EXTMEM_DCACHE_SHUT_CORE0_BUS : R/W; bitpos: [0]; default: 1; + * The bit is used to disable core0 dbus, 0: enable, 1: disable + */ + +#define EXTMEM_DCACHE_SHUT_CORE0_BUS (BIT(0)) +#define EXTMEM_DCACHE_SHUT_CORE0_BUS_M (EXTMEM_DCACHE_SHUT_CORE0_BUS_V << EXTMEM_DCACHE_SHUT_CORE0_BUS_S) +#define EXTMEM_DCACHE_SHUT_CORE0_BUS_V 0x00000001 +#define EXTMEM_DCACHE_SHUT_CORE0_BUS_S 0 + +/* EXTMEM_DCACHE_TAG_POWER_CTRL_REG register + * ******* Description *********** + */ + +#define EXTMEM_DCACHE_TAG_POWER_CTRL_REG (DR_REG_EXTMEM_BASE + 0x8) + +/* EXTMEM_DCACHE_TAG_MEM_FORCE_PU : R/W; bitpos: [2]; default: 1; + * The bit is used to power dcache tag memory up, 0: follow rtc_lslp_pd, 1: + * power up + */ + +#define EXTMEM_DCACHE_TAG_MEM_FORCE_PU (BIT(2)) +#define EXTMEM_DCACHE_TAG_MEM_FORCE_PU_M (EXTMEM_DCACHE_TAG_MEM_FORCE_PU_V << EXTMEM_DCACHE_TAG_MEM_FORCE_PU_S) +#define EXTMEM_DCACHE_TAG_MEM_FORCE_PU_V 0x00000001 +#define EXTMEM_DCACHE_TAG_MEM_FORCE_PU_S 2 + +/* EXTMEM_DCACHE_TAG_MEM_FORCE_PD : R/W; bitpos: [1]; default: 0; + * The bit is used to power dcache tag memory down, 0: follow rtc_lslp_pd, + * 1: power down + */ + +#define EXTMEM_DCACHE_TAG_MEM_FORCE_PD (BIT(1)) +#define EXTMEM_DCACHE_TAG_MEM_FORCE_PD_M (EXTMEM_DCACHE_TAG_MEM_FORCE_PD_V << EXTMEM_DCACHE_TAG_MEM_FORCE_PD_S) +#define EXTMEM_DCACHE_TAG_MEM_FORCE_PD_V 0x00000001 +#define EXTMEM_DCACHE_TAG_MEM_FORCE_PD_S 1 + +/* EXTMEM_DCACHE_TAG_MEM_FORCE_ON : R/W; bitpos: [0]; default: 1; + * The bit is used to close clock gating of dcache tag memory. 1: close + * gating, 0: open clock gating. + */ + +#define EXTMEM_DCACHE_TAG_MEM_FORCE_ON (BIT(0)) +#define EXTMEM_DCACHE_TAG_MEM_FORCE_ON_M (EXTMEM_DCACHE_TAG_MEM_FORCE_ON_V << EXTMEM_DCACHE_TAG_MEM_FORCE_ON_S) +#define EXTMEM_DCACHE_TAG_MEM_FORCE_ON_V 0x00000001 +#define EXTMEM_DCACHE_TAG_MEM_FORCE_ON_S 0 + +/* EXTMEM_DCACHE_PRELOCK_CTRL_REG register + * ******* Description *********** + */ + +#define EXTMEM_DCACHE_PRELOCK_CTRL_REG (DR_REG_EXTMEM_BASE + 0xc) + +/* EXTMEM_DCACHE_PRELOCK_SCT1_EN : R/W; bitpos: [1]; default: 0; + * The bit is used to enable the second section of prelock function. + */ + +#define EXTMEM_DCACHE_PRELOCK_SCT1_EN (BIT(1)) +#define EXTMEM_DCACHE_PRELOCK_SCT1_EN_M (EXTMEM_DCACHE_PRELOCK_SCT1_EN_V << EXTMEM_DCACHE_PRELOCK_SCT1_EN_S) +#define EXTMEM_DCACHE_PRELOCK_SCT1_EN_V 0x00000001 +#define EXTMEM_DCACHE_PRELOCK_SCT1_EN_S 1 + +/* EXTMEM_DCACHE_PRELOCK_SCT0_EN : R/W; bitpos: [0]; default: 0; + * The bit is used to enable the first section of prelock function. + */ + +#define EXTMEM_DCACHE_PRELOCK_SCT0_EN (BIT(0)) +#define EXTMEM_DCACHE_PRELOCK_SCT0_EN_M (EXTMEM_DCACHE_PRELOCK_SCT0_EN_V << EXTMEM_DCACHE_PRELOCK_SCT0_EN_S) +#define EXTMEM_DCACHE_PRELOCK_SCT0_EN_V 0x00000001 +#define EXTMEM_DCACHE_PRELOCK_SCT0_EN_S 0 + +/* EXTMEM_DCACHE_PRELOCK_SCT0_ADDR_REG register + * ******* Description *********** + */ + +#define EXTMEM_DCACHE_PRELOCK_SCT0_ADDR_REG (DR_REG_EXTMEM_BASE + 0x10) + +/* EXTMEM_DCACHE_PRELOCK_SCT0_ADDR : R/W; bitpos: [31:0]; default: 0; + * The bits are used to configure the first start virtual address of data + * prelock, which is combined with DCACHE_PRELOCK_SCT0_SIZE_REG + */ + +#define EXTMEM_DCACHE_PRELOCK_SCT0_ADDR 0xffffffff +#define EXTMEM_DCACHE_PRELOCK_SCT0_ADDR_M (EXTMEM_DCACHE_PRELOCK_SCT0_ADDR_V << EXTMEM_DCACHE_PRELOCK_SCT0_ADDR_S) +#define EXTMEM_DCACHE_PRELOCK_SCT0_ADDR_V 0xffffffff +#define EXTMEM_DCACHE_PRELOCK_SCT0_ADDR_S 0 + +/* EXTMEM_DCACHE_PRELOCK_SCT1_ADDR_REG register + * ******* Description *********** + */ + +#define EXTMEM_DCACHE_PRELOCK_SCT1_ADDR_REG (DR_REG_EXTMEM_BASE + 0x14) + +/* EXTMEM_DCACHE_PRELOCK_SCT1_ADDR : R/W; bitpos: [31:0]; default: 0; + * The bits are used to configure the second start virtual address of data + * prelock, which is combined with DCACHE_PRELOCK_SCT1_SIZE_REG + */ + +#define EXTMEM_DCACHE_PRELOCK_SCT1_ADDR 0xffffffff +#define EXTMEM_DCACHE_PRELOCK_SCT1_ADDR_M (EXTMEM_DCACHE_PRELOCK_SCT1_ADDR_V << EXTMEM_DCACHE_PRELOCK_SCT1_ADDR_S) +#define EXTMEM_DCACHE_PRELOCK_SCT1_ADDR_V 0xffffffff +#define EXTMEM_DCACHE_PRELOCK_SCT1_ADDR_S 0 + +/* EXTMEM_DCACHE_PRELOCK_SCT_SIZE_REG register + * ******* Description *********** + */ + +#define EXTMEM_DCACHE_PRELOCK_SCT_SIZE_REG (DR_REG_EXTMEM_BASE + 0x18) + +/* EXTMEM_DCACHE_PRELOCK_SCT0_SIZE : R/W; bitpos: [31:16]; default: 0; + * The bits are used to configure the first length of data locking, which is + * combined with DCACHE_PRELOCK_SCT0_ADDR_REG + */ + +#define EXTMEM_DCACHE_PRELOCK_SCT0_SIZE 0x0000ffff +#define EXTMEM_DCACHE_PRELOCK_SCT0_SIZE_M (EXTMEM_DCACHE_PRELOCK_SCT0_SIZE_V << EXTMEM_DCACHE_PRELOCK_SCT0_SIZE_S) +#define EXTMEM_DCACHE_PRELOCK_SCT0_SIZE_V 0x0000ffff +#define EXTMEM_DCACHE_PRELOCK_SCT0_SIZE_S 16 + +/* EXTMEM_DCACHE_PRELOCK_SCT1_SIZE : R/W; bitpos: [15:0]; default: 0; + * The bits are used to configure the second length of data locking, which + * is combined with DCACHE_PRELOCK_SCT1_ADDR_REG + */ + +#define EXTMEM_DCACHE_PRELOCK_SCT1_SIZE 0x0000ffff +#define EXTMEM_DCACHE_PRELOCK_SCT1_SIZE_M (EXTMEM_DCACHE_PRELOCK_SCT1_SIZE_V << EXTMEM_DCACHE_PRELOCK_SCT1_SIZE_S) +#define EXTMEM_DCACHE_PRELOCK_SCT1_SIZE_V 0x0000ffff +#define EXTMEM_DCACHE_PRELOCK_SCT1_SIZE_S 0 + +/* EXTMEM_DCACHE_LOCK_CTRL_REG register + * ******* Description *********** + */ + +#define EXTMEM_DCACHE_LOCK_CTRL_REG (DR_REG_EXTMEM_BASE + 0x1c) + +/* EXTMEM_DCACHE_LOCK_DONE : RO; bitpos: [2]; default: 1; + * The bit is used to indicate unlock/lock operation is finished. + */ + +#define EXTMEM_DCACHE_LOCK_DONE (BIT(2)) +#define EXTMEM_DCACHE_LOCK_DONE_M (EXTMEM_DCACHE_LOCK_DONE_V << EXTMEM_DCACHE_LOCK_DONE_S) +#define EXTMEM_DCACHE_LOCK_DONE_V 0x00000001 +#define EXTMEM_DCACHE_LOCK_DONE_S 2 + +/* EXTMEM_DCACHE_UNLOCK_ENA : R/W; bitpos: [1]; default: 0; + * The bit is used to enable unlock operation. It will be cleared by + * hardware after unlock operation done. + */ + +#define EXTMEM_DCACHE_UNLOCK_ENA (BIT(1)) +#define EXTMEM_DCACHE_UNLOCK_ENA_M (EXTMEM_DCACHE_UNLOCK_ENA_V << EXTMEM_DCACHE_UNLOCK_ENA_S) +#define EXTMEM_DCACHE_UNLOCK_ENA_V 0x00000001 +#define EXTMEM_DCACHE_UNLOCK_ENA_S 1 + +/* EXTMEM_DCACHE_LOCK_ENA : R/W; bitpos: [0]; default: 0; + * The bit is used to enable lock operation. It will be cleared by hardware + * after lock operation done. + */ + +#define EXTMEM_DCACHE_LOCK_ENA (BIT(0)) +#define EXTMEM_DCACHE_LOCK_ENA_M (EXTMEM_DCACHE_LOCK_ENA_V << EXTMEM_DCACHE_LOCK_ENA_S) +#define EXTMEM_DCACHE_LOCK_ENA_V 0x00000001 +#define EXTMEM_DCACHE_LOCK_ENA_S 0 + +/* EXTMEM_DCACHE_LOCK_ADDR_REG register + * ******* Description *********** + */ + +#define EXTMEM_DCACHE_LOCK_ADDR_REG (DR_REG_EXTMEM_BASE + 0x20) + +/* EXTMEM_DCACHE_LOCK_ADDR : R/W; bitpos: [31:0]; default: 0; + * The bits are used to configure the start virtual address for lock + * operations. It should be combined with DCACHE_LOCK_SIZE_REG. + */ + +#define EXTMEM_DCACHE_LOCK_ADDR 0xffffffff +#define EXTMEM_DCACHE_LOCK_ADDR_M (EXTMEM_DCACHE_LOCK_ADDR_V << EXTMEM_DCACHE_LOCK_ADDR_S) +#define EXTMEM_DCACHE_LOCK_ADDR_V 0xffffffff +#define EXTMEM_DCACHE_LOCK_ADDR_S 0 + +/* EXTMEM_DCACHE_LOCK_SIZE_REG register + * ******* Description *********** + */ + +#define EXTMEM_DCACHE_LOCK_SIZE_REG (DR_REG_EXTMEM_BASE + 0x24) + +/* EXTMEM_DCACHE_LOCK_SIZE : R/W; bitpos: [15:0]; default: 0; + * The bits are used to configure the length for lock operations. The bits + * are the counts of cache block. It should be combined with + * DCACHE_LOCK_ADDR_REG. + */ + +#define EXTMEM_DCACHE_LOCK_SIZE 0x0000ffff +#define EXTMEM_DCACHE_LOCK_SIZE_M (EXTMEM_DCACHE_LOCK_SIZE_V << EXTMEM_DCACHE_LOCK_SIZE_S) +#define EXTMEM_DCACHE_LOCK_SIZE_V 0x0000ffff +#define EXTMEM_DCACHE_LOCK_SIZE_S 0 + +/* EXTMEM_DCACHE_SYNC_CTRL_REG register + * ******* Description *********** + */ + +#define EXTMEM_DCACHE_SYNC_CTRL_REG (DR_REG_EXTMEM_BASE + 0x28) + +/* EXTMEM_DCACHE_SYNC_DONE : RO; bitpos: [3]; default: 0; + * The bit is used to indicate clean/writeback/invalidate operation is + * finished. + */ + +#define EXTMEM_DCACHE_SYNC_DONE (BIT(3)) +#define EXTMEM_DCACHE_SYNC_DONE_M (EXTMEM_DCACHE_SYNC_DONE_V << EXTMEM_DCACHE_SYNC_DONE_S) +#define EXTMEM_DCACHE_SYNC_DONE_V 0x00000001 +#define EXTMEM_DCACHE_SYNC_DONE_S 3 + +/* EXTMEM_DCACHE_CLEAN_ENA : R/W; bitpos: [2]; default: 0; + * The bit is used to enable clean operation. It will be cleared by hardware + * after clean operation done. + */ + +#define EXTMEM_DCACHE_CLEAN_ENA (BIT(2)) +#define EXTMEM_DCACHE_CLEAN_ENA_M (EXTMEM_DCACHE_CLEAN_ENA_V << EXTMEM_DCACHE_CLEAN_ENA_S) +#define EXTMEM_DCACHE_CLEAN_ENA_V 0x00000001 +#define EXTMEM_DCACHE_CLEAN_ENA_S 2 + +/* EXTMEM_DCACHE_WRITEBACK_ENA : R/W; bitpos: [1]; default: 0; + * The bit is used to enable writeback operation. It will be cleared by + * hardware after writeback operation done. + */ + +#define EXTMEM_DCACHE_WRITEBACK_ENA (BIT(1)) +#define EXTMEM_DCACHE_WRITEBACK_ENA_M (EXTMEM_DCACHE_WRITEBACK_ENA_V << EXTMEM_DCACHE_WRITEBACK_ENA_S) +#define EXTMEM_DCACHE_WRITEBACK_ENA_V 0x00000001 +#define EXTMEM_DCACHE_WRITEBACK_ENA_S 1 + +/* EXTMEM_DCACHE_INVALIDATE_ENA : R/W; bitpos: [0]; default: 1; + * The bit is used to enable invalidate operation. It will be cleared by + * hardware after invalidate operation done. + */ + +#define EXTMEM_DCACHE_INVALIDATE_ENA (BIT(0)) +#define EXTMEM_DCACHE_INVALIDATE_ENA_M (EXTMEM_DCACHE_INVALIDATE_ENA_V << EXTMEM_DCACHE_INVALIDATE_ENA_S) +#define EXTMEM_DCACHE_INVALIDATE_ENA_V 0x00000001 +#define EXTMEM_DCACHE_INVALIDATE_ENA_S 0 + +/* EXTMEM_DCACHE_SYNC_ADDR_REG register + * ******* Description *********** + */ + +#define EXTMEM_DCACHE_SYNC_ADDR_REG (DR_REG_EXTMEM_BASE + 0x2c) + +/* EXTMEM_DCACHE_SYNC_ADDR : R/W; bitpos: [31:0]; default: 0; + * The bits are used to configure the start virtual address for clean + * operations. It should be combined with DCACHE_SYNC_SIZE_REG. + */ + +#define EXTMEM_DCACHE_SYNC_ADDR 0xffffffff +#define EXTMEM_DCACHE_SYNC_ADDR_M (EXTMEM_DCACHE_SYNC_ADDR_V << EXTMEM_DCACHE_SYNC_ADDR_S) +#define EXTMEM_DCACHE_SYNC_ADDR_V 0xffffffff +#define EXTMEM_DCACHE_SYNC_ADDR_S 0 + +/* EXTMEM_DCACHE_SYNC_SIZE_REG register + * ******* Description *********** + */ + +#define EXTMEM_DCACHE_SYNC_SIZE_REG (DR_REG_EXTMEM_BASE + 0x30) + +/* EXTMEM_DCACHE_SYNC_SIZE : R/W; bitpos: [22:0]; default: 0; + * The bits are used to configure the length for sync operations. The bits + * are the counts of cache block. It should be combined with + * DCACHE_SYNC_ADDR_REG. + */ + +#define EXTMEM_DCACHE_SYNC_SIZE 0x007fffff +#define EXTMEM_DCACHE_SYNC_SIZE_M (EXTMEM_DCACHE_SYNC_SIZE_V << EXTMEM_DCACHE_SYNC_SIZE_S) +#define EXTMEM_DCACHE_SYNC_SIZE_V 0x007fffff +#define EXTMEM_DCACHE_SYNC_SIZE_S 0 + +/* EXTMEM_DCACHE_OCCUPY_CTRL_REG register + * ******* Description *********** + */ + +#define EXTMEM_DCACHE_OCCUPY_CTRL_REG (DR_REG_EXTMEM_BASE + 0x34) + +/* EXTMEM_DCACHE_OCCUPY_DONE : RO; bitpos: [1]; default: 1; + * The bit is used to indicate occupy operation is finished. + */ + +#define EXTMEM_DCACHE_OCCUPY_DONE (BIT(1)) +#define EXTMEM_DCACHE_OCCUPY_DONE_M (EXTMEM_DCACHE_OCCUPY_DONE_V << EXTMEM_DCACHE_OCCUPY_DONE_S) +#define EXTMEM_DCACHE_OCCUPY_DONE_V 0x00000001 +#define EXTMEM_DCACHE_OCCUPY_DONE_S 1 + +/* EXTMEM_DCACHE_OCCUPY_ENA : R/W; bitpos: [0]; default: 0; + * The bit is used to enable occupy operation. It will be cleared by + * hardware after issuing Auot-Invalidate Operation. + */ + +#define EXTMEM_DCACHE_OCCUPY_ENA (BIT(0)) +#define EXTMEM_DCACHE_OCCUPY_ENA_M (EXTMEM_DCACHE_OCCUPY_ENA_V << EXTMEM_DCACHE_OCCUPY_ENA_S) +#define EXTMEM_DCACHE_OCCUPY_ENA_V 0x00000001 +#define EXTMEM_DCACHE_OCCUPY_ENA_S 0 + +/* EXTMEM_DCACHE_OCCUPY_ADDR_REG register + * ******* Description *********** + */ + +#define EXTMEM_DCACHE_OCCUPY_ADDR_REG (DR_REG_EXTMEM_BASE + 0x38) + +/* EXTMEM_DCACHE_OCCUPY_ADDR : R/W; bitpos: [31:0]; default: 0; + * The bits are used to configure the start virtual address for occupy + * operation. It should be combined with DCACHE_OCCUPY_SIZE_REG. + */ + +#define EXTMEM_DCACHE_OCCUPY_ADDR 0xffffffff +#define EXTMEM_DCACHE_OCCUPY_ADDR_M (EXTMEM_DCACHE_OCCUPY_ADDR_V << EXTMEM_DCACHE_OCCUPY_ADDR_S) +#define EXTMEM_DCACHE_OCCUPY_ADDR_V 0xffffffff +#define EXTMEM_DCACHE_OCCUPY_ADDR_S 0 + +/* EXTMEM_DCACHE_OCCUPY_SIZE_REG register + * ******* Description *********** + */ + +#define EXTMEM_DCACHE_OCCUPY_SIZE_REG (DR_REG_EXTMEM_BASE + 0x3c) + +/* EXTMEM_DCACHE_OCCUPY_SIZE : R/W; bitpos: [15:0]; default: 0; + * The bits are used to configure the length for occupy operation. The bits + * are the counts of cache block. It should be combined with + * DCACHE_OCCUPY_ADDR_REG. + */ + +#define EXTMEM_DCACHE_OCCUPY_SIZE 0x0000ffff +#define EXTMEM_DCACHE_OCCUPY_SIZE_M (EXTMEM_DCACHE_OCCUPY_SIZE_V << EXTMEM_DCACHE_OCCUPY_SIZE_S) +#define EXTMEM_DCACHE_OCCUPY_SIZE_V 0x0000ffff +#define EXTMEM_DCACHE_OCCUPY_SIZE_S 0 + +/* EXTMEM_DCACHE_PRELOAD_CTRL_REG register + * ******* Description *********** + */ + +#define EXTMEM_DCACHE_PRELOAD_CTRL_REG (DR_REG_EXTMEM_BASE + 0x40) + +/* EXTMEM_DCACHE_PRELOAD_ORDER : R/W; bitpos: [2]; default: 0; + * The bit is used to configure the direction of preload operation. 1: + * descending, 0: ascending. + */ + +#define EXTMEM_DCACHE_PRELOAD_ORDER (BIT(2)) +#define EXTMEM_DCACHE_PRELOAD_ORDER_M (EXTMEM_DCACHE_PRELOAD_ORDER_V << EXTMEM_DCACHE_PRELOAD_ORDER_S) +#define EXTMEM_DCACHE_PRELOAD_ORDER_V 0x00000001 +#define EXTMEM_DCACHE_PRELOAD_ORDER_S 2 + +/* EXTMEM_DCACHE_PRELOAD_DONE : RO; bitpos: [1]; default: 1; + * The bit is used to indicate preload operation is finished. + */ + +#define EXTMEM_DCACHE_PRELOAD_DONE (BIT(1)) +#define EXTMEM_DCACHE_PRELOAD_DONE_M (EXTMEM_DCACHE_PRELOAD_DONE_V << EXTMEM_DCACHE_PRELOAD_DONE_S) +#define EXTMEM_DCACHE_PRELOAD_DONE_V 0x00000001 +#define EXTMEM_DCACHE_PRELOAD_DONE_S 1 + +/* EXTMEM_DCACHE_PRELOAD_ENA : R/W; bitpos: [0]; default: 0; + * The bit is used to enable preload operation. It will be cleared by + * hardware after preload operation done. + */ + +#define EXTMEM_DCACHE_PRELOAD_ENA (BIT(0)) +#define EXTMEM_DCACHE_PRELOAD_ENA_M (EXTMEM_DCACHE_PRELOAD_ENA_V << EXTMEM_DCACHE_PRELOAD_ENA_S) +#define EXTMEM_DCACHE_PRELOAD_ENA_V 0x00000001 +#define EXTMEM_DCACHE_PRELOAD_ENA_S 0 + +/* EXTMEM_DCACHE_PRELOAD_ADDR_REG register + * ******* Description *********** + */ + +#define EXTMEM_DCACHE_PRELOAD_ADDR_REG (DR_REG_EXTMEM_BASE + 0x44) + +/* EXTMEM_DCACHE_PRELOAD_ADDR : R/W; bitpos: [31:0]; default: 0; + * The bits are used to configure the start virtual address for preload + * operation. It should be combined with DCACHE_PRELOAD_SIZE_REG. + */ + +#define EXTMEM_DCACHE_PRELOAD_ADDR 0xffffffff +#define EXTMEM_DCACHE_PRELOAD_ADDR_M (EXTMEM_DCACHE_PRELOAD_ADDR_V << EXTMEM_DCACHE_PRELOAD_ADDR_S) +#define EXTMEM_DCACHE_PRELOAD_ADDR_V 0xffffffff +#define EXTMEM_DCACHE_PRELOAD_ADDR_S 0 + +/* EXTMEM_DCACHE_PRELOAD_SIZE_REG register + * ******* Description *********** + */ + +#define EXTMEM_DCACHE_PRELOAD_SIZE_REG (DR_REG_EXTMEM_BASE + 0x48) + +/* EXTMEM_DCACHE_PRELOAD_SIZE : R/W; bitpos: [15:0]; default: 0; + * The bits are used to configure the length for preload operation. The bits + * are the counts of cache block. It should be combined with + * DCACHE_PRELOAD_ADDR_REG.. + */ + +#define EXTMEM_DCACHE_PRELOAD_SIZE 0x0000ffff +#define EXTMEM_DCACHE_PRELOAD_SIZE_M (EXTMEM_DCACHE_PRELOAD_SIZE_V << EXTMEM_DCACHE_PRELOAD_SIZE_S) +#define EXTMEM_DCACHE_PRELOAD_SIZE_V 0x0000ffff +#define EXTMEM_DCACHE_PRELOAD_SIZE_S 0 + +/* EXTMEM_DCACHE_AUTOLOAD_CTRL_REG register + * ******* Description *********** + */ + +#define EXTMEM_DCACHE_AUTOLOAD_CTRL_REG (DR_REG_EXTMEM_BASE + 0x4c) + +/* EXTMEM_DCACHE_AUTOLOAD_BUFFER_CLEAR : R/W; bitpos: [9]; default: 0; + * The bit is used to clear autoload buffer in dcache. + */ + +#define EXTMEM_DCACHE_AUTOLOAD_BUFFER_CLEAR (BIT(9)) +#define EXTMEM_DCACHE_AUTOLOAD_BUFFER_CLEAR_M (EXTMEM_DCACHE_AUTOLOAD_BUFFER_CLEAR_V << EXTMEM_DCACHE_AUTOLOAD_BUFFER_CLEAR_S) +#define EXTMEM_DCACHE_AUTOLOAD_BUFFER_CLEAR_V 0x00000001 +#define EXTMEM_DCACHE_AUTOLOAD_BUFFER_CLEAR_S 9 + +/* EXTMEM_DCACHE_AUTOLOAD_SIZE : R/W; bitpos: [8:7]; default: 0; + * The bits are used to configure the numbers of the cache block for the + * issuing autoload operation. + */ + +#define EXTMEM_DCACHE_AUTOLOAD_SIZE 0x00000003 +#define EXTMEM_DCACHE_AUTOLOAD_SIZE_M (EXTMEM_DCACHE_AUTOLOAD_SIZE_V << EXTMEM_DCACHE_AUTOLOAD_SIZE_S) +#define EXTMEM_DCACHE_AUTOLOAD_SIZE_V 0x00000003 +#define EXTMEM_DCACHE_AUTOLOAD_SIZE_S 7 + +/* EXTMEM_DCACHE_AUTOLOAD_RQST : R/W; bitpos: [6:5]; default: 0; + * The bits are used to configure trigger conditions for autoload. 0/3: + * cache miss, 1: cache hit, 2: both cache miss and hit. + */ + +#define EXTMEM_DCACHE_AUTOLOAD_RQST 0x00000003 +#define EXTMEM_DCACHE_AUTOLOAD_RQST_M (EXTMEM_DCACHE_AUTOLOAD_RQST_V << EXTMEM_DCACHE_AUTOLOAD_RQST_S) +#define EXTMEM_DCACHE_AUTOLOAD_RQST_V 0x00000003 +#define EXTMEM_DCACHE_AUTOLOAD_RQST_S 5 + +/* EXTMEM_DCACHE_AUTOLOAD_ORDER : R/W; bitpos: [4]; default: 0; + * The bits are used to configure the direction of autoload. 1: descending, + * 0: ascending. + */ + +#define EXTMEM_DCACHE_AUTOLOAD_ORDER (BIT(4)) +#define EXTMEM_DCACHE_AUTOLOAD_ORDER_M (EXTMEM_DCACHE_AUTOLOAD_ORDER_V << EXTMEM_DCACHE_AUTOLOAD_ORDER_S) +#define EXTMEM_DCACHE_AUTOLOAD_ORDER_V 0x00000001 +#define EXTMEM_DCACHE_AUTOLOAD_ORDER_S 4 + +/* EXTMEM_DCACHE_AUTOLOAD_DONE : RO; bitpos: [3]; default: 1; + * The bit is used to indicate autoload operation is finished. + */ + +#define EXTMEM_DCACHE_AUTOLOAD_DONE (BIT(3)) +#define EXTMEM_DCACHE_AUTOLOAD_DONE_M (EXTMEM_DCACHE_AUTOLOAD_DONE_V << EXTMEM_DCACHE_AUTOLOAD_DONE_S) +#define EXTMEM_DCACHE_AUTOLOAD_DONE_V 0x00000001 +#define EXTMEM_DCACHE_AUTOLOAD_DONE_S 3 + +/* EXTMEM_DCACHE_AUTOLOAD_ENA : R/W; bitpos: [2]; default: 0; + * The bit is used to enable and disable autoload operation. It is combined + * with dcache_autoload_done. 1: enable, 0: disable. + */ + +#define EXTMEM_DCACHE_AUTOLOAD_ENA (BIT(2)) +#define EXTMEM_DCACHE_AUTOLOAD_ENA_M (EXTMEM_DCACHE_AUTOLOAD_ENA_V << EXTMEM_DCACHE_AUTOLOAD_ENA_S) +#define EXTMEM_DCACHE_AUTOLOAD_ENA_V 0x00000001 +#define EXTMEM_DCACHE_AUTOLOAD_ENA_S 2 + +/* EXTMEM_DCACHE_AUTOLOAD_SCT1_ENA : R/W; bitpos: [1]; default: 0; + * The bits are used to enable the second section for autoload operation. + */ + +#define EXTMEM_DCACHE_AUTOLOAD_SCT1_ENA (BIT(1)) +#define EXTMEM_DCACHE_AUTOLOAD_SCT1_ENA_M (EXTMEM_DCACHE_AUTOLOAD_SCT1_ENA_V << EXTMEM_DCACHE_AUTOLOAD_SCT1_ENA_S) +#define EXTMEM_DCACHE_AUTOLOAD_SCT1_ENA_V 0x00000001 +#define EXTMEM_DCACHE_AUTOLOAD_SCT1_ENA_S 1 + +/* EXTMEM_DCACHE_AUTOLOAD_SCT0_ENA : R/W; bitpos: [0]; default: 0; + * The bits are used to enable the first section for autoload operation. + */ + +#define EXTMEM_DCACHE_AUTOLOAD_SCT0_ENA (BIT(0)) +#define EXTMEM_DCACHE_AUTOLOAD_SCT0_ENA_M (EXTMEM_DCACHE_AUTOLOAD_SCT0_ENA_V << EXTMEM_DCACHE_AUTOLOAD_SCT0_ENA_S) +#define EXTMEM_DCACHE_AUTOLOAD_SCT0_ENA_V 0x00000001 +#define EXTMEM_DCACHE_AUTOLOAD_SCT0_ENA_S 0 + +/* EXTMEM_DCACHE_AUTOLOAD_SCT0_ADDR_REG register + * ******* Description *********** + */ + +#define EXTMEM_DCACHE_AUTOLOAD_SCT0_ADDR_REG (DR_REG_EXTMEM_BASE + 0x50) + +/* EXTMEM_DCACHE_AUTOLOAD_SCT0_ADDR : R/W; bitpos: [31:0]; default: 0; + * The bits are used to configure the start virtual address of the first + * section for autoload operation. It should be combined with + * dcache_autoload_sct0_ena. + */ + +#define EXTMEM_DCACHE_AUTOLOAD_SCT0_ADDR 0xffffffff +#define EXTMEM_DCACHE_AUTOLOAD_SCT0_ADDR_M (EXTMEM_DCACHE_AUTOLOAD_SCT0_ADDR_V << EXTMEM_DCACHE_AUTOLOAD_SCT0_ADDR_S) +#define EXTMEM_DCACHE_AUTOLOAD_SCT0_ADDR_V 0xffffffff +#define EXTMEM_DCACHE_AUTOLOAD_SCT0_ADDR_S 0 + +/* EXTMEM_DCACHE_AUTOLOAD_SCT0_SIZE_REG register + * ******* Description *********** + */ + +#define EXTMEM_DCACHE_AUTOLOAD_SCT0_SIZE_REG (DR_REG_EXTMEM_BASE + 0x54) + +/* EXTMEM_DCACHE_AUTOLOAD_SCT0_SIZE : R/W; bitpos: [26:0]; default: 0; + * The bits are used to configure the length of the first section for + * autoload operation. It should be combined with dcache_autoload_sct0_ena. + */ + +#define EXTMEM_DCACHE_AUTOLOAD_SCT0_SIZE 0x07ffffff +#define EXTMEM_DCACHE_AUTOLOAD_SCT0_SIZE_M (EXTMEM_DCACHE_AUTOLOAD_SCT0_SIZE_V << EXTMEM_DCACHE_AUTOLOAD_SCT0_SIZE_S) +#define EXTMEM_DCACHE_AUTOLOAD_SCT0_SIZE_V 0x07ffffff +#define EXTMEM_DCACHE_AUTOLOAD_SCT0_SIZE_S 0 + +/* EXTMEM_DCACHE_AUTOLOAD_SCT1_ADDR_REG register + * ******* Description *********** + */ + +#define EXTMEM_DCACHE_AUTOLOAD_SCT1_ADDR_REG (DR_REG_EXTMEM_BASE + 0x58) + +/* EXTMEM_DCACHE_AUTOLOAD_SCT1_ADDR : R/W; bitpos: [31:0]; default: 0; + * The bits are used to configure the start virtual address of the second + * section for autoload operation. It should be combined with + * dcache_autoload_sct1_ena. + */ + +#define EXTMEM_DCACHE_AUTOLOAD_SCT1_ADDR 0xffffffff +#define EXTMEM_DCACHE_AUTOLOAD_SCT1_ADDR_M (EXTMEM_DCACHE_AUTOLOAD_SCT1_ADDR_V << EXTMEM_DCACHE_AUTOLOAD_SCT1_ADDR_S) +#define EXTMEM_DCACHE_AUTOLOAD_SCT1_ADDR_V 0xffffffff +#define EXTMEM_DCACHE_AUTOLOAD_SCT1_ADDR_S 0 + +/* EXTMEM_DCACHE_AUTOLOAD_SCT1_SIZE_REG register + * ******* Description *********** + */ + +#define EXTMEM_DCACHE_AUTOLOAD_SCT1_SIZE_REG (DR_REG_EXTMEM_BASE + 0x5c) + +/* EXTMEM_DCACHE_AUTOLOAD_SCT1_SIZE : R/W; bitpos: [26:0]; default: 0; + * The bits are used to configure the length of the second section for + * autoload operation. It should be combined with dcache_autoload_sct1_ena. + */ + +#define EXTMEM_DCACHE_AUTOLOAD_SCT1_SIZE 0x07ffffff +#define EXTMEM_DCACHE_AUTOLOAD_SCT1_SIZE_M (EXTMEM_DCACHE_AUTOLOAD_SCT1_SIZE_V << EXTMEM_DCACHE_AUTOLOAD_SCT1_SIZE_S) +#define EXTMEM_DCACHE_AUTOLOAD_SCT1_SIZE_V 0x07ffffff +#define EXTMEM_DCACHE_AUTOLOAD_SCT1_SIZE_S 0 + +/* EXTMEM_ICACHE_CTRL_REG register + * ******* Description *********** + */ + +#define EXTMEM_ICACHE_CTRL_REG (DR_REG_EXTMEM_BASE + 0x60) + +/* EXTMEM_ICACHE_BLOCKSIZE_MODE : R/W; bitpos: [3]; default: 0; + * The bit is used to configure cache block size.0: 16 bytes, 1: 32 bytes + */ + +#define EXTMEM_ICACHE_BLOCKSIZE_MODE (BIT(3)) +#define EXTMEM_ICACHE_BLOCKSIZE_MODE_M (EXTMEM_ICACHE_BLOCKSIZE_MODE_V << EXTMEM_ICACHE_BLOCKSIZE_MODE_S) +#define EXTMEM_ICACHE_BLOCKSIZE_MODE_V 0x00000001 +#define EXTMEM_ICACHE_BLOCKSIZE_MODE_S 3 + +/* EXTMEM_ICACHE_SIZE_MODE : R/W; bitpos: [2]; default: 0; + * The bit is used to configure cache memory size.0: 16KB, 1: 32KB + */ + +#define EXTMEM_ICACHE_SIZE_MODE (BIT(2)) +#define EXTMEM_ICACHE_SIZE_MODE_M (EXTMEM_ICACHE_SIZE_MODE_V << EXTMEM_ICACHE_SIZE_MODE_S) +#define EXTMEM_ICACHE_SIZE_MODE_V 0x00000001 +#define EXTMEM_ICACHE_SIZE_MODE_S 2 + +/* EXTMEM_ICACHE_WAY_MODE : R/W; bitpos: [1]; default: 0; + * The bit is used to configure cache way mode.0: 4-way, 1: 8-way + */ + +#define EXTMEM_ICACHE_WAY_MODE (BIT(1)) +#define EXTMEM_ICACHE_WAY_MODE_M (EXTMEM_ICACHE_WAY_MODE_V << EXTMEM_ICACHE_WAY_MODE_S) +#define EXTMEM_ICACHE_WAY_MODE_V 0x00000001 +#define EXTMEM_ICACHE_WAY_MODE_S 1 + +/* EXTMEM_ICACHE_ENABLE : R/W; bitpos: [0]; default: 0; + * The bit is used to activate the data cache. 0: disable, 1: enable + */ + +#define EXTMEM_ICACHE_ENABLE (BIT(0)) +#define EXTMEM_ICACHE_ENABLE_M (EXTMEM_ICACHE_ENABLE_V << EXTMEM_ICACHE_ENABLE_S) +#define EXTMEM_ICACHE_ENABLE_V 0x00000001 +#define EXTMEM_ICACHE_ENABLE_S 0 + +/* EXTMEM_ICACHE_CTRL1_REG register + * ******* Description *********** + */ + +#define EXTMEM_ICACHE_CTRL1_REG (DR_REG_EXTMEM_BASE + 0x64) + +/* EXTMEM_ICACHE_SHUT_CORE1_BUS : R/W; bitpos: [1]; default: 1; + * The bit is used to disable core1 ibus, 0: enable, 1: disable + */ + +#define EXTMEM_ICACHE_SHUT_CORE1_BUS (BIT(1)) +#define EXTMEM_ICACHE_SHUT_CORE1_BUS_M (EXTMEM_ICACHE_SHUT_CORE1_BUS_V << EXTMEM_ICACHE_SHUT_CORE1_BUS_S) +#define EXTMEM_ICACHE_SHUT_CORE1_BUS_V 0x00000001 +#define EXTMEM_ICACHE_SHUT_CORE1_BUS_S 1 + +/* EXTMEM_ICACHE_SHUT_CORE0_BUS : R/W; bitpos: [0]; default: 1; + * The bit is used to disable core0 ibus, 0: enable, 1: disable + */ + +#define EXTMEM_ICACHE_SHUT_CORE0_BUS (BIT(0)) +#define EXTMEM_ICACHE_SHUT_CORE0_BUS_M (EXTMEM_ICACHE_SHUT_CORE0_BUS_V << EXTMEM_ICACHE_SHUT_CORE0_BUS_S) +#define EXTMEM_ICACHE_SHUT_CORE0_BUS_V 0x00000001 +#define EXTMEM_ICACHE_SHUT_CORE0_BUS_S 0 + +/* EXTMEM_ICACHE_TAG_POWER_CTRL_REG register + * ******* Description *********** + */ + +#define EXTMEM_ICACHE_TAG_POWER_CTRL_REG (DR_REG_EXTMEM_BASE + 0x68) + +/* EXTMEM_ICACHE_TAG_MEM_FORCE_PU : R/W; bitpos: [2]; default: 1; + * The bit is used to power icache tag memory up, 0: follow rtc_lslp, 1: + * power up + */ + +#define EXTMEM_ICACHE_TAG_MEM_FORCE_PU (BIT(2)) +#define EXTMEM_ICACHE_TAG_MEM_FORCE_PU_M (EXTMEM_ICACHE_TAG_MEM_FORCE_PU_V << EXTMEM_ICACHE_TAG_MEM_FORCE_PU_S) +#define EXTMEM_ICACHE_TAG_MEM_FORCE_PU_V 0x00000001 +#define EXTMEM_ICACHE_TAG_MEM_FORCE_PU_S 2 + +/* EXTMEM_ICACHE_TAG_MEM_FORCE_PD : R/W; bitpos: [1]; default: 0; + * The bit is used to power icache tag memory down, 0: follow rtc_lslp, 1: + * power down + */ + +#define EXTMEM_ICACHE_TAG_MEM_FORCE_PD (BIT(1)) +#define EXTMEM_ICACHE_TAG_MEM_FORCE_PD_M (EXTMEM_ICACHE_TAG_MEM_FORCE_PD_V << EXTMEM_ICACHE_TAG_MEM_FORCE_PD_S) +#define EXTMEM_ICACHE_TAG_MEM_FORCE_PD_V 0x00000001 +#define EXTMEM_ICACHE_TAG_MEM_FORCE_PD_S 1 + +/* EXTMEM_ICACHE_TAG_MEM_FORCE_ON : R/W; bitpos: [0]; default: 1; + * The bit is used to close clock gating of icache tag memory. 1: close + * gating, 0: open clock gating. + */ + +#define EXTMEM_ICACHE_TAG_MEM_FORCE_ON (BIT(0)) +#define EXTMEM_ICACHE_TAG_MEM_FORCE_ON_M (EXTMEM_ICACHE_TAG_MEM_FORCE_ON_V << EXTMEM_ICACHE_TAG_MEM_FORCE_ON_S) +#define EXTMEM_ICACHE_TAG_MEM_FORCE_ON_V 0x00000001 +#define EXTMEM_ICACHE_TAG_MEM_FORCE_ON_S 0 + +/* EXTMEM_ICACHE_PRELOCK_CTRL_REG register + * ******* Description *********** + */ + +#define EXTMEM_ICACHE_PRELOCK_CTRL_REG (DR_REG_EXTMEM_BASE + 0x6c) + +/* EXTMEM_ICACHE_PRELOCK_SCT1_EN : R/W; bitpos: [1]; default: 0; + * The bit is used to enable the second section of prelock function. + */ + +#define EXTMEM_ICACHE_PRELOCK_SCT1_EN (BIT(1)) +#define EXTMEM_ICACHE_PRELOCK_SCT1_EN_M (EXTMEM_ICACHE_PRELOCK_SCT1_EN_V << EXTMEM_ICACHE_PRELOCK_SCT1_EN_S) +#define EXTMEM_ICACHE_PRELOCK_SCT1_EN_V 0x00000001 +#define EXTMEM_ICACHE_PRELOCK_SCT1_EN_S 1 + +/* EXTMEM_ICACHE_PRELOCK_SCT0_EN : R/W; bitpos: [0]; default: 0; + * The bit is used to enable the first section of prelock function. + */ + +#define EXTMEM_ICACHE_PRELOCK_SCT0_EN (BIT(0)) +#define EXTMEM_ICACHE_PRELOCK_SCT0_EN_M (EXTMEM_ICACHE_PRELOCK_SCT0_EN_V << EXTMEM_ICACHE_PRELOCK_SCT0_EN_S) +#define EXTMEM_ICACHE_PRELOCK_SCT0_EN_V 0x00000001 +#define EXTMEM_ICACHE_PRELOCK_SCT0_EN_S 0 + +/* EXTMEM_ICACHE_PRELOCK_SCT0_ADDR_REG register + * ******* Description *********** + */ + +#define EXTMEM_ICACHE_PRELOCK_SCT0_ADDR_REG (DR_REG_EXTMEM_BASE + 0x70) + +/* EXTMEM_ICACHE_PRELOCK_SCT0_ADDR : R/W; bitpos: [31:0]; default: 0; + * The bits are used to configure the first start virtual address of data + * prelock, which is combined with ICACHE_PRELOCK_SCT0_SIZE_REG + */ + +#define EXTMEM_ICACHE_PRELOCK_SCT0_ADDR 0xffffffff +#define EXTMEM_ICACHE_PRELOCK_SCT0_ADDR_M (EXTMEM_ICACHE_PRELOCK_SCT0_ADDR_V << EXTMEM_ICACHE_PRELOCK_SCT0_ADDR_S) +#define EXTMEM_ICACHE_PRELOCK_SCT0_ADDR_V 0xffffffff +#define EXTMEM_ICACHE_PRELOCK_SCT0_ADDR_S 0 + +/* EXTMEM_ICACHE_PRELOCK_SCT1_ADDR_REG register + * ******* Description *********** + */ + +#define EXTMEM_ICACHE_PRELOCK_SCT1_ADDR_REG (DR_REG_EXTMEM_BASE + 0x74) + +/* EXTMEM_ICACHE_PRELOCK_SCT1_ADDR : R/W; bitpos: [31:0]; default: 0; + * The bits are used to configure the second start virtual address of data + * prelock, which is combined with ICACHE_PRELOCK_SCT1_SIZE_REG + */ + +#define EXTMEM_ICACHE_PRELOCK_SCT1_ADDR 0xffffffff +#define EXTMEM_ICACHE_PRELOCK_SCT1_ADDR_M (EXTMEM_ICACHE_PRELOCK_SCT1_ADDR_V << EXTMEM_ICACHE_PRELOCK_SCT1_ADDR_S) +#define EXTMEM_ICACHE_PRELOCK_SCT1_ADDR_V 0xffffffff +#define EXTMEM_ICACHE_PRELOCK_SCT1_ADDR_S 0 + +/* EXTMEM_ICACHE_PRELOCK_SCT_SIZE_REG register + * ******* Description *********** + */ + +#define EXTMEM_ICACHE_PRELOCK_SCT_SIZE_REG (DR_REG_EXTMEM_BASE + 0x78) + +/* EXTMEM_ICACHE_PRELOCK_SCT0_SIZE : R/W; bitpos: [31:16]; default: 0; + * The bits are used to configure the first length of data locking, which is + * combined with ICACHE_PRELOCK_SCT0_ADDR_REG + */ + +#define EXTMEM_ICACHE_PRELOCK_SCT0_SIZE 0x0000ffff +#define EXTMEM_ICACHE_PRELOCK_SCT0_SIZE_M (EXTMEM_ICACHE_PRELOCK_SCT0_SIZE_V << EXTMEM_ICACHE_PRELOCK_SCT0_SIZE_S) +#define EXTMEM_ICACHE_PRELOCK_SCT0_SIZE_V 0x0000ffff +#define EXTMEM_ICACHE_PRELOCK_SCT0_SIZE_S 16 + +/* EXTMEM_ICACHE_PRELOCK_SCT1_SIZE : R/W; bitpos: [15:0]; default: 0; + * The bits are used to configure the second length of data locking, which + * is combined with ICACHE_PRELOCK_SCT1_ADDR_REG + */ + +#define EXTMEM_ICACHE_PRELOCK_SCT1_SIZE 0x0000ffff +#define EXTMEM_ICACHE_PRELOCK_SCT1_SIZE_M (EXTMEM_ICACHE_PRELOCK_SCT1_SIZE_V << EXTMEM_ICACHE_PRELOCK_SCT1_SIZE_S) +#define EXTMEM_ICACHE_PRELOCK_SCT1_SIZE_V 0x0000ffff +#define EXTMEM_ICACHE_PRELOCK_SCT1_SIZE_S 0 + +/* EXTMEM_ICACHE_LOCK_CTRL_REG register + * ******* Description *********** + */ + +#define EXTMEM_ICACHE_LOCK_CTRL_REG (DR_REG_EXTMEM_BASE + 0x7c) + +/* EXTMEM_ICACHE_LOCK_DONE : RO; bitpos: [2]; default: 1; + * The bit is used to indicate unlock/lock operation is finished. + */ + +#define EXTMEM_ICACHE_LOCK_DONE (BIT(2)) +#define EXTMEM_ICACHE_LOCK_DONE_M (EXTMEM_ICACHE_LOCK_DONE_V << EXTMEM_ICACHE_LOCK_DONE_S) +#define EXTMEM_ICACHE_LOCK_DONE_V 0x00000001 +#define EXTMEM_ICACHE_LOCK_DONE_S 2 + +/* EXTMEM_ICACHE_UNLOCK_ENA : R/W; bitpos: [1]; default: 0; + * The bit is used to enable unlock operation. It will be cleared by + * hardware after unlock operation done. + */ + +#define EXTMEM_ICACHE_UNLOCK_ENA (BIT(1)) +#define EXTMEM_ICACHE_UNLOCK_ENA_M (EXTMEM_ICACHE_UNLOCK_ENA_V << EXTMEM_ICACHE_UNLOCK_ENA_S) +#define EXTMEM_ICACHE_UNLOCK_ENA_V 0x00000001 +#define EXTMEM_ICACHE_UNLOCK_ENA_S 1 + +/* EXTMEM_ICACHE_LOCK_ENA : R/W; bitpos: [0]; default: 0; + * The bit is used to enable lock operation. It will be cleared by hardware + * after lock operation done. + */ + +#define EXTMEM_ICACHE_LOCK_ENA (BIT(0)) +#define EXTMEM_ICACHE_LOCK_ENA_M (EXTMEM_ICACHE_LOCK_ENA_V << EXTMEM_ICACHE_LOCK_ENA_S) +#define EXTMEM_ICACHE_LOCK_ENA_V 0x00000001 +#define EXTMEM_ICACHE_LOCK_ENA_S 0 + +/* EXTMEM_ICACHE_LOCK_ADDR_REG register + * ******* Description *********** + */ + +#define EXTMEM_ICACHE_LOCK_ADDR_REG (DR_REG_EXTMEM_BASE + 0x80) + +/* EXTMEM_ICACHE_LOCK_ADDR : R/W; bitpos: [31:0]; default: 0; + * The bits are used to configure the start virtual address for lock + * operations. It should be combined with ICACHE_LOCK_SIZE_REG. + */ + +#define EXTMEM_ICACHE_LOCK_ADDR 0xffffffff +#define EXTMEM_ICACHE_LOCK_ADDR_M (EXTMEM_ICACHE_LOCK_ADDR_V << EXTMEM_ICACHE_LOCK_ADDR_S) +#define EXTMEM_ICACHE_LOCK_ADDR_V 0xffffffff +#define EXTMEM_ICACHE_LOCK_ADDR_S 0 + +/* EXTMEM_ICACHE_LOCK_SIZE_REG register + * ******* Description *********** + */ + +#define EXTMEM_ICACHE_LOCK_SIZE_REG (DR_REG_EXTMEM_BASE + 0x84) + +/* EXTMEM_ICACHE_LOCK_SIZE : R/W; bitpos: [15:0]; default: 0; + * The bits are used to configure the length for lock operations. The bits + * are the counts of cache block. It should be combined with + * ICACHE_LOCK_ADDR_REG. + */ + +#define EXTMEM_ICACHE_LOCK_SIZE 0x0000ffff +#define EXTMEM_ICACHE_LOCK_SIZE_M (EXTMEM_ICACHE_LOCK_SIZE_V << EXTMEM_ICACHE_LOCK_SIZE_S) +#define EXTMEM_ICACHE_LOCK_SIZE_V 0x0000ffff +#define EXTMEM_ICACHE_LOCK_SIZE_S 0 + +/* EXTMEM_ICACHE_SYNC_CTRL_REG register + * ******* Description *********** + */ + +#define EXTMEM_ICACHE_SYNC_CTRL_REG (DR_REG_EXTMEM_BASE + 0x88) + +/* EXTMEM_ICACHE_SYNC_DONE : RO; bitpos: [1]; default: 0; + * The bit is used to indicate invalidate operation is finished. + */ + +#define EXTMEM_ICACHE_SYNC_DONE (BIT(1)) +#define EXTMEM_ICACHE_SYNC_DONE_M (EXTMEM_ICACHE_SYNC_DONE_V << EXTMEM_ICACHE_SYNC_DONE_S) +#define EXTMEM_ICACHE_SYNC_DONE_V 0x00000001 +#define EXTMEM_ICACHE_SYNC_DONE_S 1 + +/* EXTMEM_ICACHE_INVALIDATE_ENA : R/W; bitpos: [0]; default: 1; + * The bit is used to enable invalidate operation. It will be cleared by + * hardware after invalidate operation done. + */ + +#define EXTMEM_ICACHE_INVALIDATE_ENA (BIT(0)) +#define EXTMEM_ICACHE_INVALIDATE_ENA_M (EXTMEM_ICACHE_INVALIDATE_ENA_V << EXTMEM_ICACHE_INVALIDATE_ENA_S) +#define EXTMEM_ICACHE_INVALIDATE_ENA_V 0x00000001 +#define EXTMEM_ICACHE_INVALIDATE_ENA_S 0 + +/* EXTMEM_ICACHE_SYNC_ADDR_REG register + * ******* Description *********** + */ + +#define EXTMEM_ICACHE_SYNC_ADDR_REG (DR_REG_EXTMEM_BASE + 0x8c) + +/* EXTMEM_ICACHE_SYNC_ADDR : R/W; bitpos: [31:0]; default: 0; + * The bits are used to configure the start virtual address for clean + * operations. It should be combined with ICACHE_SYNC_SIZE_REG. + */ + +#define EXTMEM_ICACHE_SYNC_ADDR 0xffffffff +#define EXTMEM_ICACHE_SYNC_ADDR_M (EXTMEM_ICACHE_SYNC_ADDR_V << EXTMEM_ICACHE_SYNC_ADDR_S) +#define EXTMEM_ICACHE_SYNC_ADDR_V 0xffffffff +#define EXTMEM_ICACHE_SYNC_ADDR_S 0 + +/* EXTMEM_ICACHE_SYNC_SIZE_REG register + * ******* Description *********** + */ + +#define EXTMEM_ICACHE_SYNC_SIZE_REG (DR_REG_EXTMEM_BASE + 0x90) + +/* EXTMEM_ICACHE_SYNC_SIZE : R/W; bitpos: [22:0]; default: 0; + * The bits are used to configure the length for sync operations. The bits + * are the counts of cache block. It should be combined with + * ICACHE_SYNC_ADDR_REG. + */ + +#define EXTMEM_ICACHE_SYNC_SIZE 0x007fffff +#define EXTMEM_ICACHE_SYNC_SIZE_M (EXTMEM_ICACHE_SYNC_SIZE_V << EXTMEM_ICACHE_SYNC_SIZE_S) +#define EXTMEM_ICACHE_SYNC_SIZE_V 0x007fffff +#define EXTMEM_ICACHE_SYNC_SIZE_S 0 + +/* EXTMEM_ICACHE_PRELOAD_CTRL_REG register + * ******* Description *********** + */ + +#define EXTMEM_ICACHE_PRELOAD_CTRL_REG (DR_REG_EXTMEM_BASE + 0x94) + +/* EXTMEM_ICACHE_PRELOAD_ORDER : R/W; bitpos: [2]; default: 0; + * The bit is used to configure the direction of preload operation. 1: + * descending, 0: ascending. + */ + +#define EXTMEM_ICACHE_PRELOAD_ORDER (BIT(2)) +#define EXTMEM_ICACHE_PRELOAD_ORDER_M (EXTMEM_ICACHE_PRELOAD_ORDER_V << EXTMEM_ICACHE_PRELOAD_ORDER_S) +#define EXTMEM_ICACHE_PRELOAD_ORDER_V 0x00000001 +#define EXTMEM_ICACHE_PRELOAD_ORDER_S 2 + +/* EXTMEM_ICACHE_PRELOAD_DONE : RO; bitpos: [1]; default: 1; + * The bit is used to indicate preload operation is finished. + */ + +#define EXTMEM_ICACHE_PRELOAD_DONE (BIT(1)) +#define EXTMEM_ICACHE_PRELOAD_DONE_M (EXTMEM_ICACHE_PRELOAD_DONE_V << EXTMEM_ICACHE_PRELOAD_DONE_S) +#define EXTMEM_ICACHE_PRELOAD_DONE_V 0x00000001 +#define EXTMEM_ICACHE_PRELOAD_DONE_S 1 + +/* EXTMEM_ICACHE_PRELOAD_ENA : R/W; bitpos: [0]; default: 0; + * The bit is used to enable preload operation. It will be cleared by + * hardware after preload operation done. + */ + +#define EXTMEM_ICACHE_PRELOAD_ENA (BIT(0)) +#define EXTMEM_ICACHE_PRELOAD_ENA_M (EXTMEM_ICACHE_PRELOAD_ENA_V << EXTMEM_ICACHE_PRELOAD_ENA_S) +#define EXTMEM_ICACHE_PRELOAD_ENA_V 0x00000001 +#define EXTMEM_ICACHE_PRELOAD_ENA_S 0 + +/* EXTMEM_ICACHE_PRELOAD_ADDR_REG register + * ******* Description *********** + */ + +#define EXTMEM_ICACHE_PRELOAD_ADDR_REG (DR_REG_EXTMEM_BASE + 0x98) + +/* EXTMEM_ICACHE_PRELOAD_ADDR : R/W; bitpos: [31:0]; default: 0; + * The bits are used to configure the start virtual address for preload + * operation. It should be combined with ICACHE_PRELOAD_SIZE_REG. + */ + +#define EXTMEM_ICACHE_PRELOAD_ADDR 0xffffffff +#define EXTMEM_ICACHE_PRELOAD_ADDR_M (EXTMEM_ICACHE_PRELOAD_ADDR_V << EXTMEM_ICACHE_PRELOAD_ADDR_S) +#define EXTMEM_ICACHE_PRELOAD_ADDR_V 0xffffffff +#define EXTMEM_ICACHE_PRELOAD_ADDR_S 0 + +/* EXTMEM_ICACHE_PRELOAD_SIZE_REG register + * ******* Description *********** + */ + +#define EXTMEM_ICACHE_PRELOAD_SIZE_REG (DR_REG_EXTMEM_BASE + 0x9c) + +/* EXTMEM_ICACHE_PRELOAD_SIZE : R/W; bitpos: [15:0]; default: 0; + * The bits are used to configure the length for preload operation. The bits + * are the counts of cache block. It should be combined with + * ICACHE_PRELOAD_ADDR_REG.. + */ + +#define EXTMEM_ICACHE_PRELOAD_SIZE 0x0000ffff +#define EXTMEM_ICACHE_PRELOAD_SIZE_M (EXTMEM_ICACHE_PRELOAD_SIZE_V << EXTMEM_ICACHE_PRELOAD_SIZE_S) +#define EXTMEM_ICACHE_PRELOAD_SIZE_V 0x0000ffff +#define EXTMEM_ICACHE_PRELOAD_SIZE_S 0 + +/* EXTMEM_ICACHE_AUTOLOAD_CTRL_REG register + * ******* Description *********** + */ + +#define EXTMEM_ICACHE_AUTOLOAD_CTRL_REG (DR_REG_EXTMEM_BASE + 0xa0) + +/* EXTMEM_ICACHE_AUTOLOAD_BUFFER_CLEAR : R/W; bitpos: [9]; default: 0; + * The bit is used to clear autoload buffer in icache. + */ + +#define EXTMEM_ICACHE_AUTOLOAD_BUFFER_CLEAR (BIT(9)) +#define EXTMEM_ICACHE_AUTOLOAD_BUFFER_CLEAR_M (EXTMEM_ICACHE_AUTOLOAD_BUFFER_CLEAR_V << EXTMEM_ICACHE_AUTOLOAD_BUFFER_CLEAR_S) +#define EXTMEM_ICACHE_AUTOLOAD_BUFFER_CLEAR_V 0x00000001 +#define EXTMEM_ICACHE_AUTOLOAD_BUFFER_CLEAR_S 9 + +/* EXTMEM_ICACHE_AUTOLOAD_SIZE : R/W; bitpos: [8:7]; default: 0; + * The bits are used to configure the numbers of the cache block for the + * issuing autoload operation. + */ + +#define EXTMEM_ICACHE_AUTOLOAD_SIZE 0x00000003 +#define EXTMEM_ICACHE_AUTOLOAD_SIZE_M (EXTMEM_ICACHE_AUTOLOAD_SIZE_V << EXTMEM_ICACHE_AUTOLOAD_SIZE_S) +#define EXTMEM_ICACHE_AUTOLOAD_SIZE_V 0x00000003 +#define EXTMEM_ICACHE_AUTOLOAD_SIZE_S 7 + +/* EXTMEM_ICACHE_AUTOLOAD_RQST : R/W; bitpos: [6:5]; default: 0; + * The bits are used to configure trigger conditions for autoload. 0/3: + * cache miss, 1: cache hit, 2: both cache miss and hit. + */ + +#define EXTMEM_ICACHE_AUTOLOAD_RQST 0x00000003 +#define EXTMEM_ICACHE_AUTOLOAD_RQST_M (EXTMEM_ICACHE_AUTOLOAD_RQST_V << EXTMEM_ICACHE_AUTOLOAD_RQST_S) +#define EXTMEM_ICACHE_AUTOLOAD_RQST_V 0x00000003 +#define EXTMEM_ICACHE_AUTOLOAD_RQST_S 5 + +/* EXTMEM_ICACHE_AUTOLOAD_ORDER : R/W; bitpos: [4]; default: 0; + * The bits are used to configure the direction of autoload. 1: descending, + * 0: ascending. + */ + +#define EXTMEM_ICACHE_AUTOLOAD_ORDER (BIT(4)) +#define EXTMEM_ICACHE_AUTOLOAD_ORDER_M (EXTMEM_ICACHE_AUTOLOAD_ORDER_V << EXTMEM_ICACHE_AUTOLOAD_ORDER_S) +#define EXTMEM_ICACHE_AUTOLOAD_ORDER_V 0x00000001 +#define EXTMEM_ICACHE_AUTOLOAD_ORDER_S 4 + +/* EXTMEM_ICACHE_AUTOLOAD_DONE : RO; bitpos: [3]; default: 1; + * The bit is used to indicate autoload operation is finished. + */ + +#define EXTMEM_ICACHE_AUTOLOAD_DONE (BIT(3)) +#define EXTMEM_ICACHE_AUTOLOAD_DONE_M (EXTMEM_ICACHE_AUTOLOAD_DONE_V << EXTMEM_ICACHE_AUTOLOAD_DONE_S) +#define EXTMEM_ICACHE_AUTOLOAD_DONE_V 0x00000001 +#define EXTMEM_ICACHE_AUTOLOAD_DONE_S 3 + +/* EXTMEM_ICACHE_AUTOLOAD_ENA : R/W; bitpos: [2]; default: 0; + * The bit is used to enable and disable autoload operation. It is combined + * with icache_autoload_done. 1: enable, 0: disable. + */ + +#define EXTMEM_ICACHE_AUTOLOAD_ENA (BIT(2)) +#define EXTMEM_ICACHE_AUTOLOAD_ENA_M (EXTMEM_ICACHE_AUTOLOAD_ENA_V << EXTMEM_ICACHE_AUTOLOAD_ENA_S) +#define EXTMEM_ICACHE_AUTOLOAD_ENA_V 0x00000001 +#define EXTMEM_ICACHE_AUTOLOAD_ENA_S 2 + +/* EXTMEM_ICACHE_AUTOLOAD_SCT1_ENA : R/W; bitpos: [1]; default: 0; + * The bits are used to enable the second section for autoload operation. + */ + +#define EXTMEM_ICACHE_AUTOLOAD_SCT1_ENA (BIT(1)) +#define EXTMEM_ICACHE_AUTOLOAD_SCT1_ENA_M (EXTMEM_ICACHE_AUTOLOAD_SCT1_ENA_V << EXTMEM_ICACHE_AUTOLOAD_SCT1_ENA_S) +#define EXTMEM_ICACHE_AUTOLOAD_SCT1_ENA_V 0x00000001 +#define EXTMEM_ICACHE_AUTOLOAD_SCT1_ENA_S 1 + +/* EXTMEM_ICACHE_AUTOLOAD_SCT0_ENA : R/W; bitpos: [0]; default: 0; + * The bits are used to enable the first section for autoload operation. + */ + +#define EXTMEM_ICACHE_AUTOLOAD_SCT0_ENA (BIT(0)) +#define EXTMEM_ICACHE_AUTOLOAD_SCT0_ENA_M (EXTMEM_ICACHE_AUTOLOAD_SCT0_ENA_V << EXTMEM_ICACHE_AUTOLOAD_SCT0_ENA_S) +#define EXTMEM_ICACHE_AUTOLOAD_SCT0_ENA_V 0x00000001 +#define EXTMEM_ICACHE_AUTOLOAD_SCT0_ENA_S 0 + +/* EXTMEM_ICACHE_AUTOLOAD_SCT0_ADDR_REG register + * ******* Description *********** + */ + +#define EXTMEM_ICACHE_AUTOLOAD_SCT0_ADDR_REG (DR_REG_EXTMEM_BASE + 0xa4) + +/* EXTMEM_ICACHE_AUTOLOAD_SCT0_ADDR : R/W; bitpos: [31:0]; default: 0; + * The bits are used to configure the start virtual address of the first + * section for autoload operation. It should be combined with + * icache_autoload_sct0_ena. + */ + +#define EXTMEM_ICACHE_AUTOLOAD_SCT0_ADDR 0xffffffff +#define EXTMEM_ICACHE_AUTOLOAD_SCT0_ADDR_M (EXTMEM_ICACHE_AUTOLOAD_SCT0_ADDR_V << EXTMEM_ICACHE_AUTOLOAD_SCT0_ADDR_S) +#define EXTMEM_ICACHE_AUTOLOAD_SCT0_ADDR_V 0xffffffff +#define EXTMEM_ICACHE_AUTOLOAD_SCT0_ADDR_S 0 + +/* EXTMEM_ICACHE_AUTOLOAD_SCT0_SIZE_REG register + * ******* Description *********** + */ + +#define EXTMEM_ICACHE_AUTOLOAD_SCT0_SIZE_REG (DR_REG_EXTMEM_BASE + 0xa8) + +/* EXTMEM_ICACHE_AUTOLOAD_SCT0_SIZE : R/W; bitpos: [26:0]; default: 0; + * The bits are used to configure the length of the first section for + * autoload operation. It should be combined with icache_autoload_sct0_ena. + */ + +#define EXTMEM_ICACHE_AUTOLOAD_SCT0_SIZE 0x07ffffff +#define EXTMEM_ICACHE_AUTOLOAD_SCT0_SIZE_M (EXTMEM_ICACHE_AUTOLOAD_SCT0_SIZE_V << EXTMEM_ICACHE_AUTOLOAD_SCT0_SIZE_S) +#define EXTMEM_ICACHE_AUTOLOAD_SCT0_SIZE_V 0x07ffffff +#define EXTMEM_ICACHE_AUTOLOAD_SCT0_SIZE_S 0 + +/* EXTMEM_ICACHE_AUTOLOAD_SCT1_ADDR_REG register + * ******* Description *********** + */ + +#define EXTMEM_ICACHE_AUTOLOAD_SCT1_ADDR_REG (DR_REG_EXTMEM_BASE + 0xac) + +/* EXTMEM_ICACHE_AUTOLOAD_SCT1_ADDR : R/W; bitpos: [31:0]; default: 0; + * The bits are used to configure the start virtual address of the second + * section for autoload operation. It should be combined with + * icache_autoload_sct1_ena. + */ + +#define EXTMEM_ICACHE_AUTOLOAD_SCT1_ADDR 0xffffffff +#define EXTMEM_ICACHE_AUTOLOAD_SCT1_ADDR_M (EXTMEM_ICACHE_AUTOLOAD_SCT1_ADDR_V << EXTMEM_ICACHE_AUTOLOAD_SCT1_ADDR_S) +#define EXTMEM_ICACHE_AUTOLOAD_SCT1_ADDR_V 0xffffffff +#define EXTMEM_ICACHE_AUTOLOAD_SCT1_ADDR_S 0 + +/* EXTMEM_ICACHE_AUTOLOAD_SCT1_SIZE_REG register + * ******* Description *********** + */ + +#define EXTMEM_ICACHE_AUTOLOAD_SCT1_SIZE_REG (DR_REG_EXTMEM_BASE + 0xb0) + +/* EXTMEM_ICACHE_AUTOLOAD_SCT1_SIZE : R/W; bitpos: [26:0]; default: 0; + * The bits are used to configure the length of the second section for + * autoload operation. It should be combined with icache_autoload_sct1_ena. + */ + +#define EXTMEM_ICACHE_AUTOLOAD_SCT1_SIZE 0x07ffffff +#define EXTMEM_ICACHE_AUTOLOAD_SCT1_SIZE_M (EXTMEM_ICACHE_AUTOLOAD_SCT1_SIZE_V << EXTMEM_ICACHE_AUTOLOAD_SCT1_SIZE_S) +#define EXTMEM_ICACHE_AUTOLOAD_SCT1_SIZE_V 0x07ffffff +#define EXTMEM_ICACHE_AUTOLOAD_SCT1_SIZE_S 0 + +/* EXTMEM_IBUS_TO_FLASH_START_VADDR_REG register + * ******* Description *********** + */ + +#define EXTMEM_IBUS_TO_FLASH_START_VADDR_REG (DR_REG_EXTMEM_BASE + 0xb4) + +/* EXTMEM_IBUS_TO_FLASH_START_VADDR : R/W; bitpos: [31:0]; default: + * 1140850688; + * The bits are used to configure the start virtual address of ibus to + * access flash. The register is used to give constraints to ibus access + * counter. + */ + +#define EXTMEM_IBUS_TO_FLASH_START_VADDR 0xffffffff +#define EXTMEM_IBUS_TO_FLASH_START_VADDR_M (EXTMEM_IBUS_TO_FLASH_START_VADDR_V << EXTMEM_IBUS_TO_FLASH_START_VADDR_S) +#define EXTMEM_IBUS_TO_FLASH_START_VADDR_V 0xffffffff +#define EXTMEM_IBUS_TO_FLASH_START_VADDR_S 0 + +/* EXTMEM_IBUS_TO_FLASH_END_VADDR_REG register + * ******* Description *********** + */ + +#define EXTMEM_IBUS_TO_FLASH_END_VADDR_REG (DR_REG_EXTMEM_BASE + 0xb8) + +/* EXTMEM_IBUS_TO_FLASH_END_VADDR : R/W; bitpos: [31:0]; default: 1207959551; + * The bits are used to configure the end virtual address of ibus to access + * flash. The register is used to give constraints to ibus access counter. + */ + +#define EXTMEM_IBUS_TO_FLASH_END_VADDR 0xffffffff +#define EXTMEM_IBUS_TO_FLASH_END_VADDR_M (EXTMEM_IBUS_TO_FLASH_END_VADDR_V << EXTMEM_IBUS_TO_FLASH_END_VADDR_S) +#define EXTMEM_IBUS_TO_FLASH_END_VADDR_V 0xffffffff +#define EXTMEM_IBUS_TO_FLASH_END_VADDR_S 0 + +/* EXTMEM_DBUS_TO_FLASH_START_VADDR_REG register + * ******* Description *********** + */ + +#define EXTMEM_DBUS_TO_FLASH_START_VADDR_REG (DR_REG_EXTMEM_BASE + 0xbc) + +/* EXTMEM_DBUS_TO_FLASH_START_VADDR : R/W; bitpos: [31:0]; default: 0; + * The bits are used to configure the start virtual address of dbus to + * access flash. The register is used to give constraints to dbus access + * counter. + */ + +#define EXTMEM_DBUS_TO_FLASH_START_VADDR 0xffffffff +#define EXTMEM_DBUS_TO_FLASH_START_VADDR_M (EXTMEM_DBUS_TO_FLASH_START_VADDR_V << EXTMEM_DBUS_TO_FLASH_START_VADDR_S) +#define EXTMEM_DBUS_TO_FLASH_START_VADDR_V 0xffffffff +#define EXTMEM_DBUS_TO_FLASH_START_VADDR_S 0 + +/* EXTMEM_DBUS_TO_FLASH_END_VADDR_REG register + * ******* Description *********** + */ + +#define EXTMEM_DBUS_TO_FLASH_END_VADDR_REG (DR_REG_EXTMEM_BASE + 0xc0) + +/* EXTMEM_DBUS_TO_FLASH_END_VADDR : R/W; bitpos: [31:0]; default: 0; + * The bits are used to configure the end virtual address of dbus to access + * flash. The register is used to give constraints to dbus access counter. + */ + +#define EXTMEM_DBUS_TO_FLASH_END_VADDR 0xffffffff +#define EXTMEM_DBUS_TO_FLASH_END_VADDR_M (EXTMEM_DBUS_TO_FLASH_END_VADDR_V << EXTMEM_DBUS_TO_FLASH_END_VADDR_S) +#define EXTMEM_DBUS_TO_FLASH_END_VADDR_V 0xffffffff +#define EXTMEM_DBUS_TO_FLASH_END_VADDR_S 0 + +/* EXTMEM_CACHE_ACS_CNT_CLR_REG register + * ******* Description *********** + */ + +#define EXTMEM_CACHE_ACS_CNT_CLR_REG (DR_REG_EXTMEM_BASE + 0xc4) + +/* EXTMEM_ICACHE_ACS_CNT_CLR : WOD; bitpos: [1]; default: 0; + * The bit is used to clear icache counter. + */ + +#define EXTMEM_ICACHE_ACS_CNT_CLR (BIT(1)) +#define EXTMEM_ICACHE_ACS_CNT_CLR_M (EXTMEM_ICACHE_ACS_CNT_CLR_V << EXTMEM_ICACHE_ACS_CNT_CLR_S) +#define EXTMEM_ICACHE_ACS_CNT_CLR_V 0x00000001 +#define EXTMEM_ICACHE_ACS_CNT_CLR_S 1 + +/* EXTMEM_DCACHE_ACS_CNT_CLR : WOD; bitpos: [0]; default: 0; + * The bit is used to clear dcache counter. + */ + +#define EXTMEM_DCACHE_ACS_CNT_CLR (BIT(0)) +#define EXTMEM_DCACHE_ACS_CNT_CLR_M (EXTMEM_DCACHE_ACS_CNT_CLR_V << EXTMEM_DCACHE_ACS_CNT_CLR_S) +#define EXTMEM_DCACHE_ACS_CNT_CLR_V 0x00000001 +#define EXTMEM_DCACHE_ACS_CNT_CLR_S 0 + +/* EXTMEM_IBUS_ACS_MISS_CNT_REG register + * ******* Description *********** + */ + +#define EXTMEM_IBUS_ACS_MISS_CNT_REG (DR_REG_EXTMEM_BASE + 0xc8) + +/* EXTMEM_IBUS_ACS_MISS_CNT : RO; bitpos: [31:0]; default: 0; + * The bits are used to count the number of the cache miss caused by ibus + * access flash/spiram. + */ + +#define EXTMEM_IBUS_ACS_MISS_CNT 0xffffffff +#define EXTMEM_IBUS_ACS_MISS_CNT_M (EXTMEM_IBUS_ACS_MISS_CNT_V << EXTMEM_IBUS_ACS_MISS_CNT_S) +#define EXTMEM_IBUS_ACS_MISS_CNT_V 0xffffffff +#define EXTMEM_IBUS_ACS_MISS_CNT_S 0 + +/* EXTMEM_IBUS_ACS_CNT_REG register + * ******* Description *********** + */ + +#define EXTMEM_IBUS_ACS_CNT_REG (DR_REG_EXTMEM_BASE + 0xcc) + +/* EXTMEM_IBUS_ACS_CNT : RO; bitpos: [31:0]; default: 0; + * The bits are used to count the number of ibus access flash/spiram through + * icache. + */ + +#define EXTMEM_IBUS_ACS_CNT 0xffffffff +#define EXTMEM_IBUS_ACS_CNT_M (EXTMEM_IBUS_ACS_CNT_V << EXTMEM_IBUS_ACS_CNT_S) +#define EXTMEM_IBUS_ACS_CNT_V 0xffffffff +#define EXTMEM_IBUS_ACS_CNT_S 0 + +/* EXTMEM_DBUS_ACS_FLASH_MISS_CNT_REG register + * ******* Description *********** + */ + +#define EXTMEM_DBUS_ACS_FLASH_MISS_CNT_REG (DR_REG_EXTMEM_BASE + 0xd0) + +/* EXTMEM_DBUS_ACS_FLASH_MISS_CNT : RO; bitpos: [31:0]; default: 0; + * The bits are used to count the number of the cache miss caused by dbus + * access flash. + */ + +#define EXTMEM_DBUS_ACS_FLASH_MISS_CNT 0xffffffff +#define EXTMEM_DBUS_ACS_FLASH_MISS_CNT_M (EXTMEM_DBUS_ACS_FLASH_MISS_CNT_V << EXTMEM_DBUS_ACS_FLASH_MISS_CNT_S) +#define EXTMEM_DBUS_ACS_FLASH_MISS_CNT_V 0xffffffff +#define EXTMEM_DBUS_ACS_FLASH_MISS_CNT_S 0 + +/* EXTMEM_DBUS_ACS_SPIRAM_MISS_CNT_REG register + * ******* Description *********** + */ + +#define EXTMEM_DBUS_ACS_SPIRAM_MISS_CNT_REG (DR_REG_EXTMEM_BASE + 0xd4) + +/* EXTMEM_DBUS_ACS_SPIRAM_MISS_CNT : RO; bitpos: [31:0]; default: 0; + * The bits are used to count the number of the cache miss caused by dbus + * access spiram. + */ + +#define EXTMEM_DBUS_ACS_SPIRAM_MISS_CNT 0xffffffff +#define EXTMEM_DBUS_ACS_SPIRAM_MISS_CNT_M (EXTMEM_DBUS_ACS_SPIRAM_MISS_CNT_V << EXTMEM_DBUS_ACS_SPIRAM_MISS_CNT_S) +#define EXTMEM_DBUS_ACS_SPIRAM_MISS_CNT_V 0xffffffff +#define EXTMEM_DBUS_ACS_SPIRAM_MISS_CNT_S 0 + +/* EXTMEM_DBUS_ACS_CNT_REG register + * ******* Description *********** + */ + +#define EXTMEM_DBUS_ACS_CNT_REG (DR_REG_EXTMEM_BASE + 0xd8) + +/* EXTMEM_DBUS_ACS_CNT : RO; bitpos: [31:0]; default: 0; + * The bits are used to count the number of dbus access flash/spiram through + * dcache. + */ + +#define EXTMEM_DBUS_ACS_CNT 0xffffffff +#define EXTMEM_DBUS_ACS_CNT_M (EXTMEM_DBUS_ACS_CNT_V << EXTMEM_DBUS_ACS_CNT_S) +#define EXTMEM_DBUS_ACS_CNT_V 0xffffffff +#define EXTMEM_DBUS_ACS_CNT_S 0 + +/* EXTMEM_CACHE_ILG_INT_ENA_REG register + * ******* Description *********** + */ + +#define EXTMEM_CACHE_ILG_INT_ENA_REG (DR_REG_EXTMEM_BASE + 0xdc) + +/* EXTMEM_DBUS_CNT_OVF_INT_ENA : R/W; bitpos: [8]; default: 0; + * The bit is used to enable interrupt by dbus counter overflow. + */ + +#define EXTMEM_DBUS_CNT_OVF_INT_ENA (BIT(8)) +#define EXTMEM_DBUS_CNT_OVF_INT_ENA_M (EXTMEM_DBUS_CNT_OVF_INT_ENA_V << EXTMEM_DBUS_CNT_OVF_INT_ENA_S) +#define EXTMEM_DBUS_CNT_OVF_INT_ENA_V 0x00000001 +#define EXTMEM_DBUS_CNT_OVF_INT_ENA_S 8 + +/* EXTMEM_IBUS_CNT_OVF_INT_ENA : R/W; bitpos: [7]; default: 0; + * The bit is used to enable interrupt by ibus counter overflow. + */ + +#define EXTMEM_IBUS_CNT_OVF_INT_ENA (BIT(7)) +#define EXTMEM_IBUS_CNT_OVF_INT_ENA_M (EXTMEM_IBUS_CNT_OVF_INT_ENA_V << EXTMEM_IBUS_CNT_OVF_INT_ENA_S) +#define EXTMEM_IBUS_CNT_OVF_INT_ENA_V 0x00000001 +#define EXTMEM_IBUS_CNT_OVF_INT_ENA_S 7 + +/* EXTMEM_DCACHE_OCCUPY_EXC_INT_ENA : R/W; bitpos: [6]; default: 0; + * The bit is used to enable interrupt by dcache trying to replace a line + * whose blocks all have been occupied by occupy-mode. + */ + +#define EXTMEM_DCACHE_OCCUPY_EXC_INT_ENA (BIT(6)) +#define EXTMEM_DCACHE_OCCUPY_EXC_INT_ENA_M (EXTMEM_DCACHE_OCCUPY_EXC_INT_ENA_V << EXTMEM_DCACHE_OCCUPY_EXC_INT_ENA_S) +#define EXTMEM_DCACHE_OCCUPY_EXC_INT_ENA_V 0x00000001 +#define EXTMEM_DCACHE_OCCUPY_EXC_INT_ENA_S 6 + +/* EXTMEM_MMU_ENTRY_FAULT_INT_ENA : R/W; bitpos: [5]; default: 0; + * The bit is used to enable interrupt by mmu entry fault. + */ + +#define EXTMEM_MMU_ENTRY_FAULT_INT_ENA (BIT(5)) +#define EXTMEM_MMU_ENTRY_FAULT_INT_ENA_M (EXTMEM_MMU_ENTRY_FAULT_INT_ENA_V << EXTMEM_MMU_ENTRY_FAULT_INT_ENA_S) +#define EXTMEM_MMU_ENTRY_FAULT_INT_ENA_V 0x00000001 +#define EXTMEM_MMU_ENTRY_FAULT_INT_ENA_S 5 + +/* EXTMEM_DCACHE_WRITE_FLASH_INT_ENA : R/W; bitpos: [4]; default: 0; + * The bit is used to enable interrupt by dcache trying to write flash. + */ + +#define EXTMEM_DCACHE_WRITE_FLASH_INT_ENA (BIT(4)) +#define EXTMEM_DCACHE_WRITE_FLASH_INT_ENA_M (EXTMEM_DCACHE_WRITE_FLASH_INT_ENA_V << EXTMEM_DCACHE_WRITE_FLASH_INT_ENA_S) +#define EXTMEM_DCACHE_WRITE_FLASH_INT_ENA_V 0x00000001 +#define EXTMEM_DCACHE_WRITE_FLASH_INT_ENA_S 4 + +/* EXTMEM_DCACHE_PRELOAD_OP_FAULT_INT_ENA : R/W; bitpos: [3]; default: 0; + * The bit is used to enable interrupt by preload configurations fault. + */ + +#define EXTMEM_DCACHE_PRELOAD_OP_FAULT_INT_ENA (BIT(3)) +#define EXTMEM_DCACHE_PRELOAD_OP_FAULT_INT_ENA_M (EXTMEM_DCACHE_PRELOAD_OP_FAULT_INT_ENA_V << EXTMEM_DCACHE_PRELOAD_OP_FAULT_INT_ENA_S) +#define EXTMEM_DCACHE_PRELOAD_OP_FAULT_INT_ENA_V 0x00000001 +#define EXTMEM_DCACHE_PRELOAD_OP_FAULT_INT_ENA_S 3 + +/* EXTMEM_DCACHE_SYNC_OP_FAULT_INT_ENA : R/W; bitpos: [2]; default: 0; + * The bit is used to enable interrupt by sync configurations fault. + */ + +#define EXTMEM_DCACHE_SYNC_OP_FAULT_INT_ENA (BIT(2)) +#define EXTMEM_DCACHE_SYNC_OP_FAULT_INT_ENA_M (EXTMEM_DCACHE_SYNC_OP_FAULT_INT_ENA_V << EXTMEM_DCACHE_SYNC_OP_FAULT_INT_ENA_S) +#define EXTMEM_DCACHE_SYNC_OP_FAULT_INT_ENA_V 0x00000001 +#define EXTMEM_DCACHE_SYNC_OP_FAULT_INT_ENA_S 2 + +/* EXTMEM_ICACHE_PRELOAD_OP_FAULT_INT_ENA : R/W; bitpos: [1]; default: 0; + * The bit is used to enable interrupt by preload configurations fault. + */ + +#define EXTMEM_ICACHE_PRELOAD_OP_FAULT_INT_ENA (BIT(1)) +#define EXTMEM_ICACHE_PRELOAD_OP_FAULT_INT_ENA_M (EXTMEM_ICACHE_PRELOAD_OP_FAULT_INT_ENA_V << EXTMEM_ICACHE_PRELOAD_OP_FAULT_INT_ENA_S) +#define EXTMEM_ICACHE_PRELOAD_OP_FAULT_INT_ENA_V 0x00000001 +#define EXTMEM_ICACHE_PRELOAD_OP_FAULT_INT_ENA_S 1 + +/* EXTMEM_ICACHE_SYNC_OP_FAULT_INT_ENA : R/W; bitpos: [0]; default: 0; + * The bit is used to enable interrupt by sync configurations fault. + */ + +#define EXTMEM_ICACHE_SYNC_OP_FAULT_INT_ENA (BIT(0)) +#define EXTMEM_ICACHE_SYNC_OP_FAULT_INT_ENA_M (EXTMEM_ICACHE_SYNC_OP_FAULT_INT_ENA_V << EXTMEM_ICACHE_SYNC_OP_FAULT_INT_ENA_S) +#define EXTMEM_ICACHE_SYNC_OP_FAULT_INT_ENA_V 0x00000001 +#define EXTMEM_ICACHE_SYNC_OP_FAULT_INT_ENA_S 0 + +/* EXTMEM_CACHE_ILG_INT_CLR_REG register + * ******* Description *********** + */ + +#define EXTMEM_CACHE_ILG_INT_CLR_REG (DR_REG_EXTMEM_BASE + 0xe0) + +/* EXTMEM_DBUS_CNT_OVF_INT_CLR : WOD; bitpos: [8]; default: 0; + * The bit is used to clear interrupt by dbus counter overflow. + */ + +#define EXTMEM_DBUS_CNT_OVF_INT_CLR (BIT(8)) +#define EXTMEM_DBUS_CNT_OVF_INT_CLR_M (EXTMEM_DBUS_CNT_OVF_INT_CLR_V << EXTMEM_DBUS_CNT_OVF_INT_CLR_S) +#define EXTMEM_DBUS_CNT_OVF_INT_CLR_V 0x00000001 +#define EXTMEM_DBUS_CNT_OVF_INT_CLR_S 8 + +/* EXTMEM_IBUS_CNT_OVF_INT_CLR : WOD; bitpos: [7]; default: 0; + * The bit is used to clear interrupt by ibus counter overflow. + */ + +#define EXTMEM_IBUS_CNT_OVF_INT_CLR (BIT(7)) +#define EXTMEM_IBUS_CNT_OVF_INT_CLR_M (EXTMEM_IBUS_CNT_OVF_INT_CLR_V << EXTMEM_IBUS_CNT_OVF_INT_CLR_S) +#define EXTMEM_IBUS_CNT_OVF_INT_CLR_V 0x00000001 +#define EXTMEM_IBUS_CNT_OVF_INT_CLR_S 7 + +/* EXTMEM_DCACHE_OCCUPY_EXC_INT_CLR : WOD; bitpos: [6]; default: 0; + * The bit is used to clear interrupt by dcache trying to replace a line + * whose blocks all have been occupied by occupy-mode. + */ + +#define EXTMEM_DCACHE_OCCUPY_EXC_INT_CLR (BIT(6)) +#define EXTMEM_DCACHE_OCCUPY_EXC_INT_CLR_M (EXTMEM_DCACHE_OCCUPY_EXC_INT_CLR_V << EXTMEM_DCACHE_OCCUPY_EXC_INT_CLR_S) +#define EXTMEM_DCACHE_OCCUPY_EXC_INT_CLR_V 0x00000001 +#define EXTMEM_DCACHE_OCCUPY_EXC_INT_CLR_S 6 + +/* EXTMEM_MMU_ENTRY_FAULT_INT_CLR : WOD; bitpos: [5]; default: 0; + * The bit is used to clear interrupt by mmu entry fault. + */ + +#define EXTMEM_MMU_ENTRY_FAULT_INT_CLR (BIT(5)) +#define EXTMEM_MMU_ENTRY_FAULT_INT_CLR_M (EXTMEM_MMU_ENTRY_FAULT_INT_CLR_V << EXTMEM_MMU_ENTRY_FAULT_INT_CLR_S) +#define EXTMEM_MMU_ENTRY_FAULT_INT_CLR_V 0x00000001 +#define EXTMEM_MMU_ENTRY_FAULT_INT_CLR_S 5 + +/* EXTMEM_DCACHE_WRITE_FLASH_INT_CLR : WOD; bitpos: [4]; default: 0; + * The bit is used to clear interrupt by dcache trying to write flash. + */ + +#define EXTMEM_DCACHE_WRITE_FLASH_INT_CLR (BIT(4)) +#define EXTMEM_DCACHE_WRITE_FLASH_INT_CLR_M (EXTMEM_DCACHE_WRITE_FLASH_INT_CLR_V << EXTMEM_DCACHE_WRITE_FLASH_INT_CLR_S) +#define EXTMEM_DCACHE_WRITE_FLASH_INT_CLR_V 0x00000001 +#define EXTMEM_DCACHE_WRITE_FLASH_INT_CLR_S 4 + +/* EXTMEM_DCACHE_PRELOAD_OP_FAULT_INT_CLR : WOD; bitpos: [3]; default: 0; + * The bit is used to clear interrupt by preload configurations fault. + */ + +#define EXTMEM_DCACHE_PRELOAD_OP_FAULT_INT_CLR (BIT(3)) +#define EXTMEM_DCACHE_PRELOAD_OP_FAULT_INT_CLR_M (EXTMEM_DCACHE_PRELOAD_OP_FAULT_INT_CLR_V << EXTMEM_DCACHE_PRELOAD_OP_FAULT_INT_CLR_S) +#define EXTMEM_DCACHE_PRELOAD_OP_FAULT_INT_CLR_V 0x00000001 +#define EXTMEM_DCACHE_PRELOAD_OP_FAULT_INT_CLR_S 3 + +/* EXTMEM_DCACHE_SYNC_OP_FAULT_INT_CLR : WOD; bitpos: [2]; default: 0; + * The bit is used to clear interrupt by sync configurations fault. + */ + +#define EXTMEM_DCACHE_SYNC_OP_FAULT_INT_CLR (BIT(2)) +#define EXTMEM_DCACHE_SYNC_OP_FAULT_INT_CLR_M (EXTMEM_DCACHE_SYNC_OP_FAULT_INT_CLR_V << EXTMEM_DCACHE_SYNC_OP_FAULT_INT_CLR_S) +#define EXTMEM_DCACHE_SYNC_OP_FAULT_INT_CLR_V 0x00000001 +#define EXTMEM_DCACHE_SYNC_OP_FAULT_INT_CLR_S 2 + +/* EXTMEM_ICACHE_PRELOAD_OP_FAULT_INT_CLR : WOD; bitpos: [1]; default: 0; + * The bit is used to clear interrupt by preload configurations fault. + */ + +#define EXTMEM_ICACHE_PRELOAD_OP_FAULT_INT_CLR (BIT(1)) +#define EXTMEM_ICACHE_PRELOAD_OP_FAULT_INT_CLR_M (EXTMEM_ICACHE_PRELOAD_OP_FAULT_INT_CLR_V << EXTMEM_ICACHE_PRELOAD_OP_FAULT_INT_CLR_S) +#define EXTMEM_ICACHE_PRELOAD_OP_FAULT_INT_CLR_V 0x00000001 +#define EXTMEM_ICACHE_PRELOAD_OP_FAULT_INT_CLR_S 1 + +/* EXTMEM_ICACHE_SYNC_OP_FAULT_INT_CLR : WOD; bitpos: [0]; default: 0; + * The bit is used to clear interrupt by sync configurations fault. + */ + +#define EXTMEM_ICACHE_SYNC_OP_FAULT_INT_CLR (BIT(0)) +#define EXTMEM_ICACHE_SYNC_OP_FAULT_INT_CLR_M (EXTMEM_ICACHE_SYNC_OP_FAULT_INT_CLR_V << EXTMEM_ICACHE_SYNC_OP_FAULT_INT_CLR_S) +#define EXTMEM_ICACHE_SYNC_OP_FAULT_INT_CLR_V 0x00000001 +#define EXTMEM_ICACHE_SYNC_OP_FAULT_INT_CLR_S 0 + +/* EXTMEM_CACHE_ILG_INT_ST_REG register + * ******* Description *********** + */ + +#define EXTMEM_CACHE_ILG_INT_ST_REG (DR_REG_EXTMEM_BASE + 0xe4) + +/* EXTMEM_DBUS_ACS_SPIRAM_MISS_CNT_OVF_ST : RO; bitpos: [11]; default: 0; + * The bit is used to indicate interrupt by dbus access spiram miss counter + * overflow. + */ + +#define EXTMEM_DBUS_ACS_SPIRAM_MISS_CNT_OVF_ST (BIT(11)) +#define EXTMEM_DBUS_ACS_SPIRAM_MISS_CNT_OVF_ST_M (EXTMEM_DBUS_ACS_SPIRAM_MISS_CNT_OVF_ST_V << EXTMEM_DBUS_ACS_SPIRAM_MISS_CNT_OVF_ST_S) +#define EXTMEM_DBUS_ACS_SPIRAM_MISS_CNT_OVF_ST_V 0x00000001 +#define EXTMEM_DBUS_ACS_SPIRAM_MISS_CNT_OVF_ST_S 11 + +/* EXTMEM_DBUS_ACS_FLASH_MISS_CNT_OVF_ST : RO; bitpos: [10]; default: 0; + * The bit is used to indicate interrupt by dbus access flash miss counter + * overflow. + */ + +#define EXTMEM_DBUS_ACS_FLASH_MISS_CNT_OVF_ST (BIT(10)) +#define EXTMEM_DBUS_ACS_FLASH_MISS_CNT_OVF_ST_M (EXTMEM_DBUS_ACS_FLASH_MISS_CNT_OVF_ST_V << EXTMEM_DBUS_ACS_FLASH_MISS_CNT_OVF_ST_S) +#define EXTMEM_DBUS_ACS_FLASH_MISS_CNT_OVF_ST_V 0x00000001 +#define EXTMEM_DBUS_ACS_FLASH_MISS_CNT_OVF_ST_S 10 + +/* EXTMEM_DBUS_ACS_CNT_OVF_ST : RO; bitpos: [9]; default: 0; + * The bit is used to indicate interrupt by dbus access flash/spiram counter + * overflow. + */ + +#define EXTMEM_DBUS_ACS_CNT_OVF_ST (BIT(9)) +#define EXTMEM_DBUS_ACS_CNT_OVF_ST_M (EXTMEM_DBUS_ACS_CNT_OVF_ST_V << EXTMEM_DBUS_ACS_CNT_OVF_ST_S) +#define EXTMEM_DBUS_ACS_CNT_OVF_ST_V 0x00000001 +#define EXTMEM_DBUS_ACS_CNT_OVF_ST_S 9 + +/* EXTMEM_IBUS_ACS_MISS_CNT_OVF_ST : RO; bitpos: [8]; default: 0; + * The bit is used to indicate interrupt by ibus access flash/spiram miss + * counter overflow. + */ + +#define EXTMEM_IBUS_ACS_MISS_CNT_OVF_ST (BIT(8)) +#define EXTMEM_IBUS_ACS_MISS_CNT_OVF_ST_M (EXTMEM_IBUS_ACS_MISS_CNT_OVF_ST_V << EXTMEM_IBUS_ACS_MISS_CNT_OVF_ST_S) +#define EXTMEM_IBUS_ACS_MISS_CNT_OVF_ST_V 0x00000001 +#define EXTMEM_IBUS_ACS_MISS_CNT_OVF_ST_S 8 + +/* EXTMEM_IBUS_ACS_CNT_OVF_ST : RO; bitpos: [7]; default: 0; + * The bit is used to indicate interrupt by ibus access flash/spiram counter + * overflow. + */ + +#define EXTMEM_IBUS_ACS_CNT_OVF_ST (BIT(7)) +#define EXTMEM_IBUS_ACS_CNT_OVF_ST_M (EXTMEM_IBUS_ACS_CNT_OVF_ST_V << EXTMEM_IBUS_ACS_CNT_OVF_ST_S) +#define EXTMEM_IBUS_ACS_CNT_OVF_ST_V 0x00000001 +#define EXTMEM_IBUS_ACS_CNT_OVF_ST_S 7 + +/* EXTMEM_DCACHE_OCCUPY_EXC_ST : RO; bitpos: [6]; default: 0; + * The bit is used to indicate interrupt by dcache trying to replace a line + * whose blocks all have been occupied by occupy-mode. + */ + +#define EXTMEM_DCACHE_OCCUPY_EXC_ST (BIT(6)) +#define EXTMEM_DCACHE_OCCUPY_EXC_ST_M (EXTMEM_DCACHE_OCCUPY_EXC_ST_V << EXTMEM_DCACHE_OCCUPY_EXC_ST_S) +#define EXTMEM_DCACHE_OCCUPY_EXC_ST_V 0x00000001 +#define EXTMEM_DCACHE_OCCUPY_EXC_ST_S 6 + +/* EXTMEM_MMU_ENTRY_FAULT_ST : RO; bitpos: [5]; default: 0; + * The bit is used to indicate interrupt by mmu entry fault. + */ + +#define EXTMEM_MMU_ENTRY_FAULT_ST (BIT(5)) +#define EXTMEM_MMU_ENTRY_FAULT_ST_M (EXTMEM_MMU_ENTRY_FAULT_ST_V << EXTMEM_MMU_ENTRY_FAULT_ST_S) +#define EXTMEM_MMU_ENTRY_FAULT_ST_V 0x00000001 +#define EXTMEM_MMU_ENTRY_FAULT_ST_S 5 + +/* EXTMEM_DCACHE_WRITE_FLASH_ST : RO; bitpos: [4]; default: 0; + * The bit is used to indicate interrupt by dcache trying to write flash. + */ + +#define EXTMEM_DCACHE_WRITE_FLASH_ST (BIT(4)) +#define EXTMEM_DCACHE_WRITE_FLASH_ST_M (EXTMEM_DCACHE_WRITE_FLASH_ST_V << EXTMEM_DCACHE_WRITE_FLASH_ST_S) +#define EXTMEM_DCACHE_WRITE_FLASH_ST_V 0x00000001 +#define EXTMEM_DCACHE_WRITE_FLASH_ST_S 4 + +/* EXTMEM_DCACHE_PRELOAD_OP_FAULT_ST : RO; bitpos: [3]; default: 0; + * The bit is used to indicate interrupt by preload configurations fault. + */ + +#define EXTMEM_DCACHE_PRELOAD_OP_FAULT_ST (BIT(3)) +#define EXTMEM_DCACHE_PRELOAD_OP_FAULT_ST_M (EXTMEM_DCACHE_PRELOAD_OP_FAULT_ST_V << EXTMEM_DCACHE_PRELOAD_OP_FAULT_ST_S) +#define EXTMEM_DCACHE_PRELOAD_OP_FAULT_ST_V 0x00000001 +#define EXTMEM_DCACHE_PRELOAD_OP_FAULT_ST_S 3 + +/* EXTMEM_DCACHE_SYNC_OP_FAULT_ST : RO; bitpos: [2]; default: 0; + * The bit is used to indicate interrupt by sync configurations fault. + */ + +#define EXTMEM_DCACHE_SYNC_OP_FAULT_ST (BIT(2)) +#define EXTMEM_DCACHE_SYNC_OP_FAULT_ST_M (EXTMEM_DCACHE_SYNC_OP_FAULT_ST_V << EXTMEM_DCACHE_SYNC_OP_FAULT_ST_S) +#define EXTMEM_DCACHE_SYNC_OP_FAULT_ST_V 0x00000001 +#define EXTMEM_DCACHE_SYNC_OP_FAULT_ST_S 2 + +/* EXTMEM_ICACHE_PRELOAD_OP_FAULT_ST : RO; bitpos: [1]; default: 0; + * The bit is used to indicate interrupt by preload configurations fault. + */ + +#define EXTMEM_ICACHE_PRELOAD_OP_FAULT_ST (BIT(1)) +#define EXTMEM_ICACHE_PRELOAD_OP_FAULT_ST_M (EXTMEM_ICACHE_PRELOAD_OP_FAULT_ST_V << EXTMEM_ICACHE_PRELOAD_OP_FAULT_ST_S) +#define EXTMEM_ICACHE_PRELOAD_OP_FAULT_ST_V 0x00000001 +#define EXTMEM_ICACHE_PRELOAD_OP_FAULT_ST_S 1 + +/* EXTMEM_ICACHE_SYNC_OP_FAULT_ST : RO; bitpos: [0]; default: 0; + * The bit is used to indicate interrupt by sync configurations fault. + */ + +#define EXTMEM_ICACHE_SYNC_OP_FAULT_ST (BIT(0)) +#define EXTMEM_ICACHE_SYNC_OP_FAULT_ST_M (EXTMEM_ICACHE_SYNC_OP_FAULT_ST_V << EXTMEM_ICACHE_SYNC_OP_FAULT_ST_S) +#define EXTMEM_ICACHE_SYNC_OP_FAULT_ST_V 0x00000001 +#define EXTMEM_ICACHE_SYNC_OP_FAULT_ST_S 0 + +/* EXTMEM_CORE0_ACS_CACHE_INT_ENA_REG register + * ******* Description *********** + */ + +#define EXTMEM_CORE0_ACS_CACHE_INT_ENA_REG (DR_REG_EXTMEM_BASE + 0xe8) + +/* EXTMEM_CORE0_DBUS_REJECT_INT_ENA : R/W; bitpos: [4]; default: 0; + * The bit is used to enable interrupt by authentication fail. + */ + +#define EXTMEM_CORE0_DBUS_REJECT_INT_ENA (BIT(4)) +#define EXTMEM_CORE0_DBUS_REJECT_INT_ENA_M (EXTMEM_CORE0_DBUS_REJECT_INT_ENA_V << EXTMEM_CORE0_DBUS_REJECT_INT_ENA_S) +#define EXTMEM_CORE0_DBUS_REJECT_INT_ENA_V 0x00000001 +#define EXTMEM_CORE0_DBUS_REJECT_INT_ENA_S 4 + +/* EXTMEM_CORE0_DBUS_ACS_MSK_DC_INT_ENA : R/W; bitpos: [3]; default: 0; + * The bit is used to enable interrupt by cpu access dcache while the + * corresponding dbus is disabled which include speculative access. + */ + +#define EXTMEM_CORE0_DBUS_ACS_MSK_DC_INT_ENA (BIT(3)) +#define EXTMEM_CORE0_DBUS_ACS_MSK_DC_INT_ENA_M (EXTMEM_CORE0_DBUS_ACS_MSK_DC_INT_ENA_V << EXTMEM_CORE0_DBUS_ACS_MSK_DC_INT_ENA_S) +#define EXTMEM_CORE0_DBUS_ACS_MSK_DC_INT_ENA_V 0x00000001 +#define EXTMEM_CORE0_DBUS_ACS_MSK_DC_INT_ENA_S 3 + +/* EXTMEM_CORE0_IBUS_REJECT_INT_ENA : R/W; bitpos: [2]; default: 0; + * The bit is used to enable interrupt by authentication fail. + */ + +#define EXTMEM_CORE0_IBUS_REJECT_INT_ENA (BIT(2)) +#define EXTMEM_CORE0_IBUS_REJECT_INT_ENA_M (EXTMEM_CORE0_IBUS_REJECT_INT_ENA_V << EXTMEM_CORE0_IBUS_REJECT_INT_ENA_S) +#define EXTMEM_CORE0_IBUS_REJECT_INT_ENA_V 0x00000001 +#define EXTMEM_CORE0_IBUS_REJECT_INT_ENA_S 2 + +/* EXTMEM_CORE0_IBUS_WR_IC_INT_ENA : R/W; bitpos: [1]; default: 0; + * The bit is used to enable interrupt by ibus trying to write icache + */ + +#define EXTMEM_CORE0_IBUS_WR_IC_INT_ENA (BIT(1)) +#define EXTMEM_CORE0_IBUS_WR_IC_INT_ENA_M (EXTMEM_CORE0_IBUS_WR_IC_INT_ENA_V << EXTMEM_CORE0_IBUS_WR_IC_INT_ENA_S) +#define EXTMEM_CORE0_IBUS_WR_IC_INT_ENA_V 0x00000001 +#define EXTMEM_CORE0_IBUS_WR_IC_INT_ENA_S 1 + +/* EXTMEM_CORE0_IBUS_ACS_MSK_IC_INT_ENA : R/W; bitpos: [0]; default: 0; + * The bit is used to enable interrupt by cpu access icache while the + * corresponding ibus is disabled which include speculative access. + */ + +#define EXTMEM_CORE0_IBUS_ACS_MSK_IC_INT_ENA (BIT(0)) +#define EXTMEM_CORE0_IBUS_ACS_MSK_IC_INT_ENA_M (EXTMEM_CORE0_IBUS_ACS_MSK_IC_INT_ENA_V << EXTMEM_CORE0_IBUS_ACS_MSK_IC_INT_ENA_S) +#define EXTMEM_CORE0_IBUS_ACS_MSK_IC_INT_ENA_V 0x00000001 +#define EXTMEM_CORE0_IBUS_ACS_MSK_IC_INT_ENA_S 0 + +/* EXTMEM_CORE0_ACS_CACHE_INT_CLR_REG register + * ******* Description *********** + */ + +#define EXTMEM_CORE0_ACS_CACHE_INT_CLR_REG (DR_REG_EXTMEM_BASE + 0xec) + +/* EXTMEM_CORE0_DBUS_REJECT_INT_CLR : WOD; bitpos: [4]; default: 0; + * The bit is used to clear interrupt by authentication fail. + */ + +#define EXTMEM_CORE0_DBUS_REJECT_INT_CLR (BIT(4)) +#define EXTMEM_CORE0_DBUS_REJECT_INT_CLR_M (EXTMEM_CORE0_DBUS_REJECT_INT_CLR_V << EXTMEM_CORE0_DBUS_REJECT_INT_CLR_S) +#define EXTMEM_CORE0_DBUS_REJECT_INT_CLR_V 0x00000001 +#define EXTMEM_CORE0_DBUS_REJECT_INT_CLR_S 4 + +/* EXTMEM_CORE0_DBUS_ACS_MSK_DC_INT_CLR : WOD; bitpos: [3]; default: 0; + * The bit is used to clear interrupt by cpu access dcache while the + * corresponding dbus is disabled or dcache is disabled which include + * speculative access. + */ + +#define EXTMEM_CORE0_DBUS_ACS_MSK_DC_INT_CLR (BIT(3)) +#define EXTMEM_CORE0_DBUS_ACS_MSK_DC_INT_CLR_M (EXTMEM_CORE0_DBUS_ACS_MSK_DC_INT_CLR_V << EXTMEM_CORE0_DBUS_ACS_MSK_DC_INT_CLR_S) +#define EXTMEM_CORE0_DBUS_ACS_MSK_DC_INT_CLR_V 0x00000001 +#define EXTMEM_CORE0_DBUS_ACS_MSK_DC_INT_CLR_S 3 + +/* EXTMEM_CORE0_IBUS_REJECT_INT_CLR : WOD; bitpos: [2]; default: 0; + * The bit is used to clear interrupt by authentication fail. + */ + +#define EXTMEM_CORE0_IBUS_REJECT_INT_CLR (BIT(2)) +#define EXTMEM_CORE0_IBUS_REJECT_INT_CLR_M (EXTMEM_CORE0_IBUS_REJECT_INT_CLR_V << EXTMEM_CORE0_IBUS_REJECT_INT_CLR_S) +#define EXTMEM_CORE0_IBUS_REJECT_INT_CLR_V 0x00000001 +#define EXTMEM_CORE0_IBUS_REJECT_INT_CLR_S 2 + +/* EXTMEM_CORE0_IBUS_WR_IC_INT_CLR : WOD; bitpos: [1]; default: 0; + * The bit is used to clear interrupt by ibus trying to write icache + */ + +#define EXTMEM_CORE0_IBUS_WR_IC_INT_CLR (BIT(1)) +#define EXTMEM_CORE0_IBUS_WR_IC_INT_CLR_M (EXTMEM_CORE0_IBUS_WR_IC_INT_CLR_V << EXTMEM_CORE0_IBUS_WR_IC_INT_CLR_S) +#define EXTMEM_CORE0_IBUS_WR_IC_INT_CLR_V 0x00000001 +#define EXTMEM_CORE0_IBUS_WR_IC_INT_CLR_S 1 + +/* EXTMEM_CORE0_IBUS_ACS_MSK_IC_INT_CLR : WOD; bitpos: [0]; default: 0; + * The bit is used to clear interrupt by cpu access icache while the + * corresponding ibus is disabled or icache is disabled which include + * speculative access. + */ + +#define EXTMEM_CORE0_IBUS_ACS_MSK_IC_INT_CLR (BIT(0)) +#define EXTMEM_CORE0_IBUS_ACS_MSK_IC_INT_CLR_M (EXTMEM_CORE0_IBUS_ACS_MSK_IC_INT_CLR_V << EXTMEM_CORE0_IBUS_ACS_MSK_IC_INT_CLR_S) +#define EXTMEM_CORE0_IBUS_ACS_MSK_IC_INT_CLR_V 0x00000001 +#define EXTMEM_CORE0_IBUS_ACS_MSK_IC_INT_CLR_S 0 + +/* EXTMEM_CORE0_ACS_CACHE_INT_ST_REG register + * ******* Description *********** + */ + +#define EXTMEM_CORE0_ACS_CACHE_INT_ST_REG (DR_REG_EXTMEM_BASE + 0xf0) + +/* EXTMEM_CORE0_DBUS_REJECT_ST : RO; bitpos: [4]; default: 0; + * The bit is used to indicate interrupt by authentication fail. + */ + +#define EXTMEM_CORE0_DBUS_REJECT_ST (BIT(4)) +#define EXTMEM_CORE0_DBUS_REJECT_ST_M (EXTMEM_CORE0_DBUS_REJECT_ST_V << EXTMEM_CORE0_DBUS_REJECT_ST_S) +#define EXTMEM_CORE0_DBUS_REJECT_ST_V 0x00000001 +#define EXTMEM_CORE0_DBUS_REJECT_ST_S 4 + +/* EXTMEM_CORE0_DBUS_ACS_MSK_DCACHE_ST : RO; bitpos: [3]; default: 0; + * The bit is used to indicate interrupt by cpu access dcache while the + * core0_dbus is disabled or dcache is disabled which include speculative + * access. + */ + +#define EXTMEM_CORE0_DBUS_ACS_MSK_DCACHE_ST (BIT(3)) +#define EXTMEM_CORE0_DBUS_ACS_MSK_DCACHE_ST_M (EXTMEM_CORE0_DBUS_ACS_MSK_DCACHE_ST_V << EXTMEM_CORE0_DBUS_ACS_MSK_DCACHE_ST_S) +#define EXTMEM_CORE0_DBUS_ACS_MSK_DCACHE_ST_V 0x00000001 +#define EXTMEM_CORE0_DBUS_ACS_MSK_DCACHE_ST_S 3 + +/* EXTMEM_CORE0_IBUS_REJECT_ST : RO; bitpos: [2]; default: 0; + * The bit is used to indicate interrupt by authentication fail. + */ + +#define EXTMEM_CORE0_IBUS_REJECT_ST (BIT(2)) +#define EXTMEM_CORE0_IBUS_REJECT_ST_M (EXTMEM_CORE0_IBUS_REJECT_ST_V << EXTMEM_CORE0_IBUS_REJECT_ST_S) +#define EXTMEM_CORE0_IBUS_REJECT_ST_V 0x00000001 +#define EXTMEM_CORE0_IBUS_REJECT_ST_S 2 + +/* EXTMEM_CORE0_IBUS_WR_ICACHE_ST : RO; bitpos: [1]; default: 0; + * The bit is used to indicate interrupt by ibus trying to write icache + */ + +#define EXTMEM_CORE0_IBUS_WR_ICACHE_ST (BIT(1)) +#define EXTMEM_CORE0_IBUS_WR_ICACHE_ST_M (EXTMEM_CORE0_IBUS_WR_ICACHE_ST_V << EXTMEM_CORE0_IBUS_WR_ICACHE_ST_S) +#define EXTMEM_CORE0_IBUS_WR_ICACHE_ST_V 0x00000001 +#define EXTMEM_CORE0_IBUS_WR_ICACHE_ST_S 1 + +/* EXTMEM_CORE0_IBUS_ACS_MSK_ICACHE_ST : RO; bitpos: [0]; default: 0; + * The bit is used to indicate interrupt by cpu access icache while the + * core0_ibus is disabled or icache is disabled which include speculative + * access. + */ + +#define EXTMEM_CORE0_IBUS_ACS_MSK_ICACHE_ST (BIT(0)) +#define EXTMEM_CORE0_IBUS_ACS_MSK_ICACHE_ST_M (EXTMEM_CORE0_IBUS_ACS_MSK_ICACHE_ST_V << EXTMEM_CORE0_IBUS_ACS_MSK_ICACHE_ST_S) +#define EXTMEM_CORE0_IBUS_ACS_MSK_ICACHE_ST_V 0x00000001 +#define EXTMEM_CORE0_IBUS_ACS_MSK_ICACHE_ST_S 0 + +/* EXTMEM_CORE1_ACS_CACHE_INT_ENA_REG register + * ******* Description *********** + */ + +#define EXTMEM_CORE1_ACS_CACHE_INT_ENA_REG (DR_REG_EXTMEM_BASE + 0xf4) + +/* EXTMEM_CORE1_DBUS_REJECT_INT_ENA : R/W; bitpos: [4]; default: 0; + * The bit is used to enable interrupt by authentication fail. + */ + +#define EXTMEM_CORE1_DBUS_REJECT_INT_ENA (BIT(4)) +#define EXTMEM_CORE1_DBUS_REJECT_INT_ENA_M (EXTMEM_CORE1_DBUS_REJECT_INT_ENA_V << EXTMEM_CORE1_DBUS_REJECT_INT_ENA_S) +#define EXTMEM_CORE1_DBUS_REJECT_INT_ENA_V 0x00000001 +#define EXTMEM_CORE1_DBUS_REJECT_INT_ENA_S 4 + +/* EXTMEM_CORE1_DBUS_ACS_MSK_DC_INT_ENA : R/W; bitpos: [3]; default: 0; + * The bit is used to enable interrupt by cpu access dcache while the + * corresponding dbus is disabled which include speculative access. + */ + +#define EXTMEM_CORE1_DBUS_ACS_MSK_DC_INT_ENA (BIT(3)) +#define EXTMEM_CORE1_DBUS_ACS_MSK_DC_INT_ENA_M (EXTMEM_CORE1_DBUS_ACS_MSK_DC_INT_ENA_V << EXTMEM_CORE1_DBUS_ACS_MSK_DC_INT_ENA_S) +#define EXTMEM_CORE1_DBUS_ACS_MSK_DC_INT_ENA_V 0x00000001 +#define EXTMEM_CORE1_DBUS_ACS_MSK_DC_INT_ENA_S 3 + +/* EXTMEM_CORE1_IBUS_REJECT_INT_ENA : R/W; bitpos: [2]; default: 0; + * The bit is used to enable interrupt by authentication fail. + */ + +#define EXTMEM_CORE1_IBUS_REJECT_INT_ENA (BIT(2)) +#define EXTMEM_CORE1_IBUS_REJECT_INT_ENA_M (EXTMEM_CORE1_IBUS_REJECT_INT_ENA_V << EXTMEM_CORE1_IBUS_REJECT_INT_ENA_S) +#define EXTMEM_CORE1_IBUS_REJECT_INT_ENA_V 0x00000001 +#define EXTMEM_CORE1_IBUS_REJECT_INT_ENA_S 2 + +/* EXTMEM_CORE1_IBUS_WR_IC_INT_ENA : R/W; bitpos: [1]; default: 0; + * The bit is used to enable interrupt by ibus trying to write icache + */ + +#define EXTMEM_CORE1_IBUS_WR_IC_INT_ENA (BIT(1)) +#define EXTMEM_CORE1_IBUS_WR_IC_INT_ENA_M (EXTMEM_CORE1_IBUS_WR_IC_INT_ENA_V << EXTMEM_CORE1_IBUS_WR_IC_INT_ENA_S) +#define EXTMEM_CORE1_IBUS_WR_IC_INT_ENA_V 0x00000001 +#define EXTMEM_CORE1_IBUS_WR_IC_INT_ENA_S 1 + +/* EXTMEM_CORE1_IBUS_ACS_MSK_IC_INT_ENA : R/W; bitpos: [0]; default: 0; + * The bit is used to enable interrupt by cpu access icache while the + * corresponding ibus is disabled which include speculative access. + */ + +#define EXTMEM_CORE1_IBUS_ACS_MSK_IC_INT_ENA (BIT(0)) +#define EXTMEM_CORE1_IBUS_ACS_MSK_IC_INT_ENA_M (EXTMEM_CORE1_IBUS_ACS_MSK_IC_INT_ENA_V << EXTMEM_CORE1_IBUS_ACS_MSK_IC_INT_ENA_S) +#define EXTMEM_CORE1_IBUS_ACS_MSK_IC_INT_ENA_V 0x00000001 +#define EXTMEM_CORE1_IBUS_ACS_MSK_IC_INT_ENA_S 0 + +/* EXTMEM_CORE1_ACS_CACHE_INT_CLR_REG register + * ******* Description *********** + */ + +#define EXTMEM_CORE1_ACS_CACHE_INT_CLR_REG (DR_REG_EXTMEM_BASE + 0xf8) + +/* EXTMEM_CORE1_DBUS_REJECT_INT_CLR : WOD; bitpos: [4]; default: 0; + * The bit is used to clear interrupt by authentication fail. + */ + +#define EXTMEM_CORE1_DBUS_REJECT_INT_CLR (BIT(4)) +#define EXTMEM_CORE1_DBUS_REJECT_INT_CLR_M (EXTMEM_CORE1_DBUS_REJECT_INT_CLR_V << EXTMEM_CORE1_DBUS_REJECT_INT_CLR_S) +#define EXTMEM_CORE1_DBUS_REJECT_INT_CLR_V 0x00000001 +#define EXTMEM_CORE1_DBUS_REJECT_INT_CLR_S 4 + +/* EXTMEM_CORE1_DBUS_ACS_MSK_DC_INT_CLR : WOD; bitpos: [3]; default: 0; + * The bit is used to clear interrupt by cpu access dcache while the + * corresponding dbus is disabled or dcache is disabled which include + * speculative access. + */ + +#define EXTMEM_CORE1_DBUS_ACS_MSK_DC_INT_CLR (BIT(3)) +#define EXTMEM_CORE1_DBUS_ACS_MSK_DC_INT_CLR_M (EXTMEM_CORE1_DBUS_ACS_MSK_DC_INT_CLR_V << EXTMEM_CORE1_DBUS_ACS_MSK_DC_INT_CLR_S) +#define EXTMEM_CORE1_DBUS_ACS_MSK_DC_INT_CLR_V 0x00000001 +#define EXTMEM_CORE1_DBUS_ACS_MSK_DC_INT_CLR_S 3 + +/* EXTMEM_CORE1_IBUS_REJECT_INT_CLR : WOD; bitpos: [2]; default: 0; + * The bit is used to clear interrupt by authentication fail. + */ + +#define EXTMEM_CORE1_IBUS_REJECT_INT_CLR (BIT(2)) +#define EXTMEM_CORE1_IBUS_REJECT_INT_CLR_M (EXTMEM_CORE1_IBUS_REJECT_INT_CLR_V << EXTMEM_CORE1_IBUS_REJECT_INT_CLR_S) +#define EXTMEM_CORE1_IBUS_REJECT_INT_CLR_V 0x00000001 +#define EXTMEM_CORE1_IBUS_REJECT_INT_CLR_S 2 + +/* EXTMEM_CORE1_IBUS_WR_IC_INT_CLR : WOD; bitpos: [1]; default: 0; + * The bit is used to clear interrupt by ibus trying to write icache + */ + +#define EXTMEM_CORE1_IBUS_WR_IC_INT_CLR (BIT(1)) +#define EXTMEM_CORE1_IBUS_WR_IC_INT_CLR_M (EXTMEM_CORE1_IBUS_WR_IC_INT_CLR_V << EXTMEM_CORE1_IBUS_WR_IC_INT_CLR_S) +#define EXTMEM_CORE1_IBUS_WR_IC_INT_CLR_V 0x00000001 +#define EXTMEM_CORE1_IBUS_WR_IC_INT_CLR_S 1 + +/* EXTMEM_CORE1_IBUS_ACS_MSK_IC_INT_CLR : WOD; bitpos: [0]; default: 0; + * The bit is used to clear interrupt by cpu access icache while the + * corresponding ibus is disabled or icache is disabled which include + * speculative access. + */ + +#define EXTMEM_CORE1_IBUS_ACS_MSK_IC_INT_CLR (BIT(0)) +#define EXTMEM_CORE1_IBUS_ACS_MSK_IC_INT_CLR_M (EXTMEM_CORE1_IBUS_ACS_MSK_IC_INT_CLR_V << EXTMEM_CORE1_IBUS_ACS_MSK_IC_INT_CLR_S) +#define EXTMEM_CORE1_IBUS_ACS_MSK_IC_INT_CLR_V 0x00000001 +#define EXTMEM_CORE1_IBUS_ACS_MSK_IC_INT_CLR_S 0 + +/* EXTMEM_CORE1_ACS_CACHE_INT_ST_REG register + * ******* Description *********** + */ + +#define EXTMEM_CORE1_ACS_CACHE_INT_ST_REG (DR_REG_EXTMEM_BASE + 0xfc) + +/* EXTMEM_CORE1_DBUS_REJECT_ST : RO; bitpos: [4]; default: 0; + * The bit is used to indicate interrupt by authentication fail. + */ + +#define EXTMEM_CORE1_DBUS_REJECT_ST (BIT(4)) +#define EXTMEM_CORE1_DBUS_REJECT_ST_M (EXTMEM_CORE1_DBUS_REJECT_ST_V << EXTMEM_CORE1_DBUS_REJECT_ST_S) +#define EXTMEM_CORE1_DBUS_REJECT_ST_V 0x00000001 +#define EXTMEM_CORE1_DBUS_REJECT_ST_S 4 + +/* EXTMEM_CORE1_DBUS_ACS_MSK_DCACHE_ST : RO; bitpos: [3]; default: 0; + * The bit is used to indicate interrupt by cpu access dcache while the + * core1_dbus is disabled or dcache is disabled which include speculative + * access. + */ + +#define EXTMEM_CORE1_DBUS_ACS_MSK_DCACHE_ST (BIT(3)) +#define EXTMEM_CORE1_DBUS_ACS_MSK_DCACHE_ST_M (EXTMEM_CORE1_DBUS_ACS_MSK_DCACHE_ST_V << EXTMEM_CORE1_DBUS_ACS_MSK_DCACHE_ST_S) +#define EXTMEM_CORE1_DBUS_ACS_MSK_DCACHE_ST_V 0x00000001 +#define EXTMEM_CORE1_DBUS_ACS_MSK_DCACHE_ST_S 3 + +/* EXTMEM_CORE1_IBUS_REJECT_ST : RO; bitpos: [2]; default: 0; + * The bit is used to indicate interrupt by authentication fail. + */ + +#define EXTMEM_CORE1_IBUS_REJECT_ST (BIT(2)) +#define EXTMEM_CORE1_IBUS_REJECT_ST_M (EXTMEM_CORE1_IBUS_REJECT_ST_V << EXTMEM_CORE1_IBUS_REJECT_ST_S) +#define EXTMEM_CORE1_IBUS_REJECT_ST_V 0x00000001 +#define EXTMEM_CORE1_IBUS_REJECT_ST_S 2 + +/* EXTMEM_CORE1_IBUS_WR_ICACHE_ST : RO; bitpos: [1]; default: 0; + * The bit is used to indicate interrupt by ibus trying to write icache + */ + +#define EXTMEM_CORE1_IBUS_WR_ICACHE_ST (BIT(1)) +#define EXTMEM_CORE1_IBUS_WR_ICACHE_ST_M (EXTMEM_CORE1_IBUS_WR_ICACHE_ST_V << EXTMEM_CORE1_IBUS_WR_ICACHE_ST_S) +#define EXTMEM_CORE1_IBUS_WR_ICACHE_ST_V 0x00000001 +#define EXTMEM_CORE1_IBUS_WR_ICACHE_ST_S 1 + +/* EXTMEM_CORE1_IBUS_ACS_MSK_ICACHE_ST : RO; bitpos: [0]; default: 0; + * The bit is used to indicate interrupt by cpu access icache while the + * core1_ibus is disabled or icache is disabled which include speculative + * access. + */ + +#define EXTMEM_CORE1_IBUS_ACS_MSK_ICACHE_ST (BIT(0)) +#define EXTMEM_CORE1_IBUS_ACS_MSK_ICACHE_ST_M (EXTMEM_CORE1_IBUS_ACS_MSK_ICACHE_ST_V << EXTMEM_CORE1_IBUS_ACS_MSK_ICACHE_ST_S) +#define EXTMEM_CORE1_IBUS_ACS_MSK_ICACHE_ST_V 0x00000001 +#define EXTMEM_CORE1_IBUS_ACS_MSK_ICACHE_ST_S 0 + +/* EXTMEM_CORE0_DBUS_REJECT_ST_REG register + * ******* Description *********** + */ + +#define EXTMEM_CORE0_DBUS_REJECT_ST_REG (DR_REG_EXTMEM_BASE + 0x100) + +/* EXTMEM_CORE0_DBUS_WORLD : RO; bitpos: [6]; default: 0; + * The bit is used to indicate the world of CPU access dbus when + * authentication fail. 0: WORLD0, 1: WORLD1 + */ + +#define EXTMEM_CORE0_DBUS_WORLD (BIT(6)) +#define EXTMEM_CORE0_DBUS_WORLD_M (EXTMEM_CORE0_DBUS_WORLD_V << EXTMEM_CORE0_DBUS_WORLD_S) +#define EXTMEM_CORE0_DBUS_WORLD_V 0x00000001 +#define EXTMEM_CORE0_DBUS_WORLD_S 6 + +/* EXTMEM_CORE0_DBUS_ATTR : RO; bitpos: [5:3]; default: 0; + * The bits are used to indicate the attribute of CPU access dbus when + * authentication fail. 0: invalidate, 1: execute-able, 2: read-able, 4: + * write-able. + */ + +#define EXTMEM_CORE0_DBUS_ATTR 0x00000007 +#define EXTMEM_CORE0_DBUS_ATTR_M (EXTMEM_CORE0_DBUS_ATTR_V << EXTMEM_CORE0_DBUS_ATTR_S) +#define EXTMEM_CORE0_DBUS_ATTR_V 0x00000007 +#define EXTMEM_CORE0_DBUS_ATTR_S 3 + +/* EXTMEM_CORE0_DBUS_TAG_ATTR : RO; bitpos: [2:0]; default: 0; + * The bits are used to indicate the attribute of data from external memory + * when authentication fail. 0: invalidate, 1: execute-able, 2: read-able, + * 4: write-able. + */ + +#define EXTMEM_CORE0_DBUS_TAG_ATTR 0x00000007 +#define EXTMEM_CORE0_DBUS_TAG_ATTR_M (EXTMEM_CORE0_DBUS_TAG_ATTR_V << EXTMEM_CORE0_DBUS_TAG_ATTR_S) +#define EXTMEM_CORE0_DBUS_TAG_ATTR_V 0x00000007 +#define EXTMEM_CORE0_DBUS_TAG_ATTR_S 0 + +/* EXTMEM_CORE0_DBUS_REJECT_VADDR_REG register + * ******* Description *********** + */ + +#define EXTMEM_CORE0_DBUS_REJECT_VADDR_REG (DR_REG_EXTMEM_BASE + 0x104) + +/* EXTMEM_CORE0_DBUS_VADDR : RO; bitpos: [31:0]; default: 4294967295; + * The bits are used to indicate the virtual address of CPU access dbus when + * authentication fail. + */ + +#define EXTMEM_CORE0_DBUS_VADDR 0xffffffff +#define EXTMEM_CORE0_DBUS_VADDR_M (EXTMEM_CORE0_DBUS_VADDR_V << EXTMEM_CORE0_DBUS_VADDR_S) +#define EXTMEM_CORE0_DBUS_VADDR_V 0xffffffff +#define EXTMEM_CORE0_DBUS_VADDR_S 0 + +/* EXTMEM_CORE0_IBUS_REJECT_ST_REG register + * ******* Description *********** + */ + +#define EXTMEM_CORE0_IBUS_REJECT_ST_REG (DR_REG_EXTMEM_BASE + 0x108) + +/* EXTMEM_CORE0_IBUS_WORLD : RO; bitpos: [6]; default: 0; + * The bit is used to indicate the world of CPU access ibus when + * authentication fail. 0: WORLD0, 1: WORLD1 + */ + +#define EXTMEM_CORE0_IBUS_WORLD (BIT(6)) +#define EXTMEM_CORE0_IBUS_WORLD_M (EXTMEM_CORE0_IBUS_WORLD_V << EXTMEM_CORE0_IBUS_WORLD_S) +#define EXTMEM_CORE0_IBUS_WORLD_V 0x00000001 +#define EXTMEM_CORE0_IBUS_WORLD_S 6 + +/* EXTMEM_CORE0_IBUS_ATTR : RO; bitpos: [5:3]; default: 0; + * The bits are used to indicate the attribute of CPU access ibus when + * authentication fail. 0: invalidate, 1: execute-able, 2: read-able + */ + +#define EXTMEM_CORE0_IBUS_ATTR 0x00000007 +#define EXTMEM_CORE0_IBUS_ATTR_M (EXTMEM_CORE0_IBUS_ATTR_V << EXTMEM_CORE0_IBUS_ATTR_S) +#define EXTMEM_CORE0_IBUS_ATTR_V 0x00000007 +#define EXTMEM_CORE0_IBUS_ATTR_S 3 + +/* EXTMEM_CORE0_IBUS_TAG_ATTR : RO; bitpos: [2:0]; default: 0; + * The bits are used to indicate the attribute of data from external memory + * when authentication fail. 0: invalidate, 1: execute-able, 2: read-able, + * 4: write-able. + */ + +#define EXTMEM_CORE0_IBUS_TAG_ATTR 0x00000007 +#define EXTMEM_CORE0_IBUS_TAG_ATTR_M (EXTMEM_CORE0_IBUS_TAG_ATTR_V << EXTMEM_CORE0_IBUS_TAG_ATTR_S) +#define EXTMEM_CORE0_IBUS_TAG_ATTR_V 0x00000007 +#define EXTMEM_CORE0_IBUS_TAG_ATTR_S 0 + +/* EXTMEM_CORE0_IBUS_REJECT_VADDR_REG register + * ******* Description *********** + */ + +#define EXTMEM_CORE0_IBUS_REJECT_VADDR_REG (DR_REG_EXTMEM_BASE + 0x10c) + +/* EXTMEM_CORE0_IBUS_VADDR : RO; bitpos: [31:0]; default: 4294967295; + * The bits are used to indicate the virtual address of CPU access ibus + * when authentication fail. + */ + +#define EXTMEM_CORE0_IBUS_VADDR 0xffffffff +#define EXTMEM_CORE0_IBUS_VADDR_M (EXTMEM_CORE0_IBUS_VADDR_V << EXTMEM_CORE0_IBUS_VADDR_S) +#define EXTMEM_CORE0_IBUS_VADDR_V 0xffffffff +#define EXTMEM_CORE0_IBUS_VADDR_S 0 + +/* EXTMEM_CORE1_DBUS_REJECT_ST_REG register + * ******* Description *********** + */ + +#define EXTMEM_CORE1_DBUS_REJECT_ST_REG (DR_REG_EXTMEM_BASE + 0x110) + +/* EXTMEM_CORE1_DBUS_WORLD : RO; bitpos: [6]; default: 0; + * The bit is used to indicate the world of CPU access dbus when + * authentication fail. 0: WORLD0, 1: WORLD1 + */ + +#define EXTMEM_CORE1_DBUS_WORLD (BIT(6)) +#define EXTMEM_CORE1_DBUS_WORLD_M (EXTMEM_CORE1_DBUS_WORLD_V << EXTMEM_CORE1_DBUS_WORLD_S) +#define EXTMEM_CORE1_DBUS_WORLD_V 0x00000001 +#define EXTMEM_CORE1_DBUS_WORLD_S 6 + +/* EXTMEM_CORE1_DBUS_ATTR : RO; bitpos: [5:3]; default: 0; + * The bits are used to indicate the attribute of CPU access dbus when + * authentication fail. 0: invalidate, 1: execute-able, 2: read-able, 4: + * write-able. + */ + +#define EXTMEM_CORE1_DBUS_ATTR 0x00000007 +#define EXTMEM_CORE1_DBUS_ATTR_M (EXTMEM_CORE1_DBUS_ATTR_V << EXTMEM_CORE1_DBUS_ATTR_S) +#define EXTMEM_CORE1_DBUS_ATTR_V 0x00000007 +#define EXTMEM_CORE1_DBUS_ATTR_S 3 + +/* EXTMEM_CORE1_DBUS_TAG_ATTR : RO; bitpos: [2:0]; default: 0; + * The bits are used to indicate the attribute of data from external memory + * when authentication fail. 0: invalidate, 1: execute-able, 2: read-able, + * 4: write-able. + */ + +#define EXTMEM_CORE1_DBUS_TAG_ATTR 0x00000007 +#define EXTMEM_CORE1_DBUS_TAG_ATTR_M (EXTMEM_CORE1_DBUS_TAG_ATTR_V << EXTMEM_CORE1_DBUS_TAG_ATTR_S) +#define EXTMEM_CORE1_DBUS_TAG_ATTR_V 0x00000007 +#define EXTMEM_CORE1_DBUS_TAG_ATTR_S 0 + +/* EXTMEM_CORE1_DBUS_REJECT_VADDR_REG register + * ******* Description *********** + */ + +#define EXTMEM_CORE1_DBUS_REJECT_VADDR_REG (DR_REG_EXTMEM_BASE + 0x114) + +/* EXTMEM_CORE1_DBUS_VADDR : RO; bitpos: [31:0]; default: 4294967295; + * The bits are used to indicate the virtual address of CPU access dbus when + * authentication fail. + */ + +#define EXTMEM_CORE1_DBUS_VADDR 0xffffffff +#define EXTMEM_CORE1_DBUS_VADDR_M (EXTMEM_CORE1_DBUS_VADDR_V << EXTMEM_CORE1_DBUS_VADDR_S) +#define EXTMEM_CORE1_DBUS_VADDR_V 0xffffffff +#define EXTMEM_CORE1_DBUS_VADDR_S 0 + +/* EXTMEM_CORE1_IBUS_REJECT_ST_REG register + * ******* Description *********** + */ + +#define EXTMEM_CORE1_IBUS_REJECT_ST_REG (DR_REG_EXTMEM_BASE + 0x118) + +/* EXTMEM_CORE1_IBUS_WORLD : RO; bitpos: [6]; default: 0; + * The bit is used to indicate the world of CPU access ibus when + * authentication fail. 0: WORLD0, 1: WORLD1 + */ + +#define EXTMEM_CORE1_IBUS_WORLD (BIT(6)) +#define EXTMEM_CORE1_IBUS_WORLD_M (EXTMEM_CORE1_IBUS_WORLD_V << EXTMEM_CORE1_IBUS_WORLD_S) +#define EXTMEM_CORE1_IBUS_WORLD_V 0x00000001 +#define EXTMEM_CORE1_IBUS_WORLD_S 6 + +/* EXTMEM_CORE1_IBUS_ATTR : RO; bitpos: [5:3]; default: 0; + * The bits are used to indicate the attribute of CPU access ibus when + * authentication fail. 0: invalidate, 1: execute-able, 2: read-able + */ + +#define EXTMEM_CORE1_IBUS_ATTR 0x00000007 +#define EXTMEM_CORE1_IBUS_ATTR_M (EXTMEM_CORE1_IBUS_ATTR_V << EXTMEM_CORE1_IBUS_ATTR_S) +#define EXTMEM_CORE1_IBUS_ATTR_V 0x00000007 +#define EXTMEM_CORE1_IBUS_ATTR_S 3 + +/* EXTMEM_CORE1_IBUS_TAG_ATTR : RO; bitpos: [2:0]; default: 0; + * The bits are used to indicate the attribute of data from external memory + * when authentication fail. 0: invalidate, 1: execute-able, 2: read-able, + * 4: write-able. + */ + +#define EXTMEM_CORE1_IBUS_TAG_ATTR 0x00000007 +#define EXTMEM_CORE1_IBUS_TAG_ATTR_M (EXTMEM_CORE1_IBUS_TAG_ATTR_V << EXTMEM_CORE1_IBUS_TAG_ATTR_S) +#define EXTMEM_CORE1_IBUS_TAG_ATTR_V 0x00000007 +#define EXTMEM_CORE1_IBUS_TAG_ATTR_S 0 + +/* EXTMEM_CORE1_IBUS_REJECT_VADDR_REG register + * ******* Description *********** + */ + +#define EXTMEM_CORE1_IBUS_REJECT_VADDR_REG (DR_REG_EXTMEM_BASE + 0x11c) + +/* EXTMEM_CORE1_IBUS_VADDR : RO; bitpos: [31:0]; default: 4294967295; + * The bits are used to indicate the virtual address of CPU access ibus + * when authentication fail. + */ + +#define EXTMEM_CORE1_IBUS_VADDR 0xffffffff +#define EXTMEM_CORE1_IBUS_VADDR_M (EXTMEM_CORE1_IBUS_VADDR_V << EXTMEM_CORE1_IBUS_VADDR_S) +#define EXTMEM_CORE1_IBUS_VADDR_V 0xffffffff +#define EXTMEM_CORE1_IBUS_VADDR_S 0 + +/* EXTMEM_CACHE_MMU_FAULT_CONTENT_REG register + * ******* Description *********** + */ + +#define EXTMEM_CACHE_MMU_FAULT_CONTENT_REG (DR_REG_EXTMEM_BASE + 0x120) + +/* EXTMEM_CACHE_MMU_FAULT_CODE : RO; bitpos: [19:16]; default: 0; + * The right-most 3 bits are used to indicate the operations which cause mmu + * fault occurrence. 0: default, 1: cpu miss, 2: preload miss, 3: writeback, + * 4: cpu miss evict recovery address, 5: load miss evict recovery address, + * 6: external dma tx, 7: external dma rx. The most significant bit is used + * to indicate this operation occurs in which one icache. + */ + +#define EXTMEM_CACHE_MMU_FAULT_CODE 0x0000000f +#define EXTMEM_CACHE_MMU_FAULT_CODE_M (EXTMEM_CACHE_MMU_FAULT_CODE_V << EXTMEM_CACHE_MMU_FAULT_CODE_S) +#define EXTMEM_CACHE_MMU_FAULT_CODE_V 0x0000000f +#define EXTMEM_CACHE_MMU_FAULT_CODE_S 16 + +/* EXTMEM_CACHE_MMU_FAULT_CONTENT : RO; bitpos: [15:0]; default: 0; + * The bits are used to indicate the content of mmu entry which cause mmu + * fault.. + */ + +#define EXTMEM_CACHE_MMU_FAULT_CONTENT 0x0000ffff +#define EXTMEM_CACHE_MMU_FAULT_CONTENT_M (EXTMEM_CACHE_MMU_FAULT_CONTENT_V << EXTMEM_CACHE_MMU_FAULT_CONTENT_S) +#define EXTMEM_CACHE_MMU_FAULT_CONTENT_V 0x0000ffff +#define EXTMEM_CACHE_MMU_FAULT_CONTENT_S 0 + +/* EXTMEM_CACHE_MMU_FAULT_VADDR_REG register + * ******* Description *********** + */ + +#define EXTMEM_CACHE_MMU_FAULT_VADDR_REG (DR_REG_EXTMEM_BASE + 0x124) + +/* EXTMEM_CACHE_MMU_FAULT_VADDR : RO; bitpos: [31:0]; default: 0; + * The bits are used to indicate the virtual address which cause mmu fault.. + */ + +#define EXTMEM_CACHE_MMU_FAULT_VADDR 0xffffffff +#define EXTMEM_CACHE_MMU_FAULT_VADDR_M (EXTMEM_CACHE_MMU_FAULT_VADDR_V << EXTMEM_CACHE_MMU_FAULT_VADDR_S) +#define EXTMEM_CACHE_MMU_FAULT_VADDR_V 0xffffffff +#define EXTMEM_CACHE_MMU_FAULT_VADDR_S 0 + +/* EXTMEM_CACHE_WRAP_AROUND_CTRL_REG register + * ******* Description *********** + */ + +#define EXTMEM_CACHE_WRAP_AROUND_CTRL_REG (DR_REG_EXTMEM_BASE + 0x128) + +/* EXTMEM_CACHE_SRAM_RD_WRAP_AROUND : R/W; bitpos: [1]; default: 0; + * The bit is used to enable wrap around mode when read data from spiram. + */ + +#define EXTMEM_CACHE_SRAM_RD_WRAP_AROUND (BIT(1)) +#define EXTMEM_CACHE_SRAM_RD_WRAP_AROUND_M (EXTMEM_CACHE_SRAM_RD_WRAP_AROUND_V << EXTMEM_CACHE_SRAM_RD_WRAP_AROUND_S) +#define EXTMEM_CACHE_SRAM_RD_WRAP_AROUND_V 0x00000001 +#define EXTMEM_CACHE_SRAM_RD_WRAP_AROUND_S 1 + +/* EXTMEM_CACHE_FLASH_WRAP_AROUND : R/W; bitpos: [0]; default: 0; + * The bit is used to enable wrap around mode when read data from flash. + */ + +#define EXTMEM_CACHE_FLASH_WRAP_AROUND (BIT(0)) +#define EXTMEM_CACHE_FLASH_WRAP_AROUND_M (EXTMEM_CACHE_FLASH_WRAP_AROUND_V << EXTMEM_CACHE_FLASH_WRAP_AROUND_S) +#define EXTMEM_CACHE_FLASH_WRAP_AROUND_V 0x00000001 +#define EXTMEM_CACHE_FLASH_WRAP_AROUND_S 0 + +/* EXTMEM_CACHE_MMU_POWER_CTRL_REG register + * ******* Description *********** + */ + +#define EXTMEM_CACHE_MMU_POWER_CTRL_REG (DR_REG_EXTMEM_BASE + 0x12c) + +/* EXTMEM_CACHE_MMU_MEM_FORCE_PU : R/W; bitpos: [2]; default: 1; + * The bit is used to power mmu memory down, 0: follow_rtc_lslp_pd, 1: power + * up + */ + +#define EXTMEM_CACHE_MMU_MEM_FORCE_PU (BIT(2)) +#define EXTMEM_CACHE_MMU_MEM_FORCE_PU_M (EXTMEM_CACHE_MMU_MEM_FORCE_PU_V << EXTMEM_CACHE_MMU_MEM_FORCE_PU_S) +#define EXTMEM_CACHE_MMU_MEM_FORCE_PU_V 0x00000001 +#define EXTMEM_CACHE_MMU_MEM_FORCE_PU_S 2 + +/* EXTMEM_CACHE_MMU_MEM_FORCE_PD : R/W; bitpos: [1]; default: 0; + * The bit is used to power mmu memory down, 0: follow_rtc_lslp_pd, 1: power + * down + */ + +#define EXTMEM_CACHE_MMU_MEM_FORCE_PD (BIT(1)) +#define EXTMEM_CACHE_MMU_MEM_FORCE_PD_M (EXTMEM_CACHE_MMU_MEM_FORCE_PD_V << EXTMEM_CACHE_MMU_MEM_FORCE_PD_S) +#define EXTMEM_CACHE_MMU_MEM_FORCE_PD_V 0x00000001 +#define EXTMEM_CACHE_MMU_MEM_FORCE_PD_S 1 + +/* EXTMEM_CACHE_MMU_MEM_FORCE_ON : R/W; bitpos: [0]; default: 1; + * The bit is used to enable clock gating to save power when access mmu + * memory, 0: enable, 1: disable + */ + +#define EXTMEM_CACHE_MMU_MEM_FORCE_ON (BIT(0)) +#define EXTMEM_CACHE_MMU_MEM_FORCE_ON_M (EXTMEM_CACHE_MMU_MEM_FORCE_ON_V << EXTMEM_CACHE_MMU_MEM_FORCE_ON_S) +#define EXTMEM_CACHE_MMU_MEM_FORCE_ON_V 0x00000001 +#define EXTMEM_CACHE_MMU_MEM_FORCE_ON_S 0 + +/* EXTMEM_CACHE_STATE_REG register + * ******* Description *********** + */ + +#define EXTMEM_CACHE_STATE_REG (DR_REG_EXTMEM_BASE + 0x130) + +/* EXTMEM_DCACHE_STATE : RO; bitpos: [23:12]; default: 0; + * The bit is used to indicate whether dcache main fsm is in idle state or + * not. 1: in idle state, 0: not in idle state + */ + +#define EXTMEM_DCACHE_STATE 0x00000fff +#define EXTMEM_DCACHE_STATE_M (EXTMEM_DCACHE_STATE_V << EXTMEM_DCACHE_STATE_S) +#define EXTMEM_DCACHE_STATE_V 0x00000fff +#define EXTMEM_DCACHE_STATE_S 12 + +/* EXTMEM_ICACHE_STATE : RO; bitpos: [11:0]; default: 0; + * The bit is used to indicate whether icache main fsm is in idle state or + * not. 1: in idle state, 0: not in idle state + */ + +#define EXTMEM_ICACHE_STATE 0x00000fff +#define EXTMEM_ICACHE_STATE_M (EXTMEM_ICACHE_STATE_V << EXTMEM_ICACHE_STATE_S) +#define EXTMEM_ICACHE_STATE_V 0x00000fff +#define EXTMEM_ICACHE_STATE_S 0 + +/* EXTMEM_CACHE_ENCRYPT_DECRYPT_RECORD_DISABLE_REG register + * ******* Description *********** + */ + +#define EXTMEM_CACHE_ENCRYPT_DECRYPT_RECORD_DISABLE_REG (DR_REG_EXTMEM_BASE + 0x134) + +/* EXTMEM_RECORD_DISABLE_G0CB_DECRYPT : R/W; bitpos: [1]; default: 0; + * Reserved + */ + +#define EXTMEM_RECORD_DISABLE_G0CB_DECRYPT (BIT(1)) +#define EXTMEM_RECORD_DISABLE_G0CB_DECRYPT_M (EXTMEM_RECORD_DISABLE_G0CB_DECRYPT_V << EXTMEM_RECORD_DISABLE_G0CB_DECRYPT_S) +#define EXTMEM_RECORD_DISABLE_G0CB_DECRYPT_V 0x00000001 +#define EXTMEM_RECORD_DISABLE_G0CB_DECRYPT_S 1 + +/* EXTMEM_RECORD_DISABLE_DB_ENCRYPT : R/W; bitpos: [0]; default: 0; + * Reserved + */ + +#define EXTMEM_RECORD_DISABLE_DB_ENCRYPT (BIT(0)) +#define EXTMEM_RECORD_DISABLE_DB_ENCRYPT_M (EXTMEM_RECORD_DISABLE_DB_ENCRYPT_V << EXTMEM_RECORD_DISABLE_DB_ENCRYPT_S) +#define EXTMEM_RECORD_DISABLE_DB_ENCRYPT_V 0x00000001 +#define EXTMEM_RECORD_DISABLE_DB_ENCRYPT_S 0 + +/* EXTMEM_CACHE_ENCRYPT_DECRYPT_CLK_FORCE_ON_REG register + * ******* Description *********** + */ + +#define EXTMEM_CACHE_ENCRYPT_DECRYPT_CLK_FORCE_ON_REG (DR_REG_EXTMEM_BASE + 0x138) + +/* EXTMEM_CLK_FORCE_ON_CRYPT : R/W; bitpos: [2]; default: 1; + * The bit is used to close clock gating of external memory encrypt and + * decrypt clock. 1: close gating, 0: open clock gating. + */ + +#define EXTMEM_CLK_FORCE_ON_CRYPT (BIT(2)) +#define EXTMEM_CLK_FORCE_ON_CRYPT_M (EXTMEM_CLK_FORCE_ON_CRYPT_V << EXTMEM_CLK_FORCE_ON_CRYPT_S) +#define EXTMEM_CLK_FORCE_ON_CRYPT_V 0x00000001 +#define EXTMEM_CLK_FORCE_ON_CRYPT_S 2 + +/* EXTMEM_CLK_FORCE_ON_AUTO_CRYPT : R/W; bitpos: [1]; default: 1; + * The bit is used to close clock gating of automatic crypt clock. 1: close + * gating, 0: open clock gating. + */ + +#define EXTMEM_CLK_FORCE_ON_AUTO_CRYPT (BIT(1)) +#define EXTMEM_CLK_FORCE_ON_AUTO_CRYPT_M (EXTMEM_CLK_FORCE_ON_AUTO_CRYPT_V << EXTMEM_CLK_FORCE_ON_AUTO_CRYPT_S) +#define EXTMEM_CLK_FORCE_ON_AUTO_CRYPT_V 0x00000001 +#define EXTMEM_CLK_FORCE_ON_AUTO_CRYPT_S 1 + +/* EXTMEM_CLK_FORCE_ON_MANUAL_CRYPT : R/W; bitpos: [0]; default: 1; + * The bit is used to close clock gating of manual crypt clock. 1: close + * gating, 0: open clock gating. + */ + +#define EXTMEM_CLK_FORCE_ON_MANUAL_CRYPT (BIT(0)) +#define EXTMEM_CLK_FORCE_ON_MANUAL_CRYPT_M (EXTMEM_CLK_FORCE_ON_MANUAL_CRYPT_V << EXTMEM_CLK_FORCE_ON_MANUAL_CRYPT_S) +#define EXTMEM_CLK_FORCE_ON_MANUAL_CRYPT_V 0x00000001 +#define EXTMEM_CLK_FORCE_ON_MANUAL_CRYPT_S 0 + +/* EXTMEM_CACHE_BRIDGE_ARBITER_CTRL_REG register + * ******* Description *********** + */ + +#define EXTMEM_CACHE_BRIDGE_ARBITER_CTRL_REG (DR_REG_EXTMEM_BASE + 0x13c) + +/* EXTMEM_ALLOC_WB_HOLD_ARBITER : R/W; bitpos: [0]; default: 0; + * Reserved + */ + +#define EXTMEM_ALLOC_WB_HOLD_ARBITER (BIT(0)) +#define EXTMEM_ALLOC_WB_HOLD_ARBITER_M (EXTMEM_ALLOC_WB_HOLD_ARBITER_V << EXTMEM_ALLOC_WB_HOLD_ARBITER_S) +#define EXTMEM_ALLOC_WB_HOLD_ARBITER_V 0x00000001 +#define EXTMEM_ALLOC_WB_HOLD_ARBITER_S 0 + +/* EXTMEM_CACHE_PRELOAD_INT_CTRL_REG register + * ******* Description *********** + */ + +#define EXTMEM_CACHE_PRELOAD_INT_CTRL_REG (DR_REG_EXTMEM_BASE + 0x140) + +/* EXTMEM_DCACHE_PRELOAD_INT_CLR : WOD; bitpos: [5]; default: 0; + * The bit is used to clear the interrupt by dcache pre-load done. + */ + +#define EXTMEM_DCACHE_PRELOAD_INT_CLR (BIT(5)) +#define EXTMEM_DCACHE_PRELOAD_INT_CLR_M (EXTMEM_DCACHE_PRELOAD_INT_CLR_V << EXTMEM_DCACHE_PRELOAD_INT_CLR_S) +#define EXTMEM_DCACHE_PRELOAD_INT_CLR_V 0x00000001 +#define EXTMEM_DCACHE_PRELOAD_INT_CLR_S 5 + +/* EXTMEM_DCACHE_PRELOAD_INT_ENA : R/W; bitpos: [4]; default: 0; + * The bit is used to enable the interrupt by dcache pre-load done. + */ + +#define EXTMEM_DCACHE_PRELOAD_INT_ENA (BIT(4)) +#define EXTMEM_DCACHE_PRELOAD_INT_ENA_M (EXTMEM_DCACHE_PRELOAD_INT_ENA_V << EXTMEM_DCACHE_PRELOAD_INT_ENA_S) +#define EXTMEM_DCACHE_PRELOAD_INT_ENA_V 0x00000001 +#define EXTMEM_DCACHE_PRELOAD_INT_ENA_S 4 + +/* EXTMEM_DCACHE_PRELOAD_INT_ST : RO; bitpos: [3]; default: 0; + * The bit is used to indicate the interrupt by dcache pre-load done. + */ + +#define EXTMEM_DCACHE_PRELOAD_INT_ST (BIT(3)) +#define EXTMEM_DCACHE_PRELOAD_INT_ST_M (EXTMEM_DCACHE_PRELOAD_INT_ST_V << EXTMEM_DCACHE_PRELOAD_INT_ST_S) +#define EXTMEM_DCACHE_PRELOAD_INT_ST_V 0x00000001 +#define EXTMEM_DCACHE_PRELOAD_INT_ST_S 3 + +/* EXTMEM_ICACHE_PRELOAD_INT_CLR : WOD; bitpos: [2]; default: 0; + * The bit is used to clear the interrupt by icache pre-load done. + */ + +#define EXTMEM_ICACHE_PRELOAD_INT_CLR (BIT(2)) +#define EXTMEM_ICACHE_PRELOAD_INT_CLR_M (EXTMEM_ICACHE_PRELOAD_INT_CLR_V << EXTMEM_ICACHE_PRELOAD_INT_CLR_S) +#define EXTMEM_ICACHE_PRELOAD_INT_CLR_V 0x00000001 +#define EXTMEM_ICACHE_PRELOAD_INT_CLR_S 2 + +/* EXTMEM_ICACHE_PRELOAD_INT_ENA : R/W; bitpos: [1]; default: 0; + * The bit is used to enable the interrupt by icache pre-load done. + */ + +#define EXTMEM_ICACHE_PRELOAD_INT_ENA (BIT(1)) +#define EXTMEM_ICACHE_PRELOAD_INT_ENA_M (EXTMEM_ICACHE_PRELOAD_INT_ENA_V << EXTMEM_ICACHE_PRELOAD_INT_ENA_S) +#define EXTMEM_ICACHE_PRELOAD_INT_ENA_V 0x00000001 +#define EXTMEM_ICACHE_PRELOAD_INT_ENA_S 1 + +/* EXTMEM_ICACHE_PRELOAD_INT_ST : RO; bitpos: [0]; default: 0; + * The bit is used to indicate the interrupt by icache pre-load done. + */ + +#define EXTMEM_ICACHE_PRELOAD_INT_ST (BIT(0)) +#define EXTMEM_ICACHE_PRELOAD_INT_ST_M (EXTMEM_ICACHE_PRELOAD_INT_ST_V << EXTMEM_ICACHE_PRELOAD_INT_ST_S) +#define EXTMEM_ICACHE_PRELOAD_INT_ST_V 0x00000001 +#define EXTMEM_ICACHE_PRELOAD_INT_ST_S 0 + +/* EXTMEM_CACHE_SYNC_INT_CTRL_REG register + * ******* Description *********** + */ + +#define EXTMEM_CACHE_SYNC_INT_CTRL_REG (DR_REG_EXTMEM_BASE + 0x144) + +/* EXTMEM_DCACHE_SYNC_INT_CLR : WOD; bitpos: [5]; default: 0; + * The bit is used to clear the interrupt by dcache sync done. + */ + +#define EXTMEM_DCACHE_SYNC_INT_CLR (BIT(5)) +#define EXTMEM_DCACHE_SYNC_INT_CLR_M (EXTMEM_DCACHE_SYNC_INT_CLR_V << EXTMEM_DCACHE_SYNC_INT_CLR_S) +#define EXTMEM_DCACHE_SYNC_INT_CLR_V 0x00000001 +#define EXTMEM_DCACHE_SYNC_INT_CLR_S 5 + +/* EXTMEM_DCACHE_SYNC_INT_ENA : R/W; bitpos: [4]; default: 0; + * The bit is used to enable the interrupt by dcache sync done. + */ + +#define EXTMEM_DCACHE_SYNC_INT_ENA (BIT(4)) +#define EXTMEM_DCACHE_SYNC_INT_ENA_M (EXTMEM_DCACHE_SYNC_INT_ENA_V << EXTMEM_DCACHE_SYNC_INT_ENA_S) +#define EXTMEM_DCACHE_SYNC_INT_ENA_V 0x00000001 +#define EXTMEM_DCACHE_SYNC_INT_ENA_S 4 + +/* EXTMEM_DCACHE_SYNC_INT_ST : RO; bitpos: [3]; default: 0; + * The bit is used to indicate the interrupt by dcache sync done. + */ + +#define EXTMEM_DCACHE_SYNC_INT_ST (BIT(3)) +#define EXTMEM_DCACHE_SYNC_INT_ST_M (EXTMEM_DCACHE_SYNC_INT_ST_V << EXTMEM_DCACHE_SYNC_INT_ST_S) +#define EXTMEM_DCACHE_SYNC_INT_ST_V 0x00000001 +#define EXTMEM_DCACHE_SYNC_INT_ST_S 3 + +/* EXTMEM_ICACHE_SYNC_INT_CLR : WOD; bitpos: [2]; default: 0; + * The bit is used to clear the interrupt by icache sync done. + */ + +#define EXTMEM_ICACHE_SYNC_INT_CLR (BIT(2)) +#define EXTMEM_ICACHE_SYNC_INT_CLR_M (EXTMEM_ICACHE_SYNC_INT_CLR_V << EXTMEM_ICACHE_SYNC_INT_CLR_S) +#define EXTMEM_ICACHE_SYNC_INT_CLR_V 0x00000001 +#define EXTMEM_ICACHE_SYNC_INT_CLR_S 2 + +/* EXTMEM_ICACHE_SYNC_INT_ENA : R/W; bitpos: [1]; default: 0; + * The bit is used to enable the interrupt by icache sync done. + */ + +#define EXTMEM_ICACHE_SYNC_INT_ENA (BIT(1)) +#define EXTMEM_ICACHE_SYNC_INT_ENA_M (EXTMEM_ICACHE_SYNC_INT_ENA_V << EXTMEM_ICACHE_SYNC_INT_ENA_S) +#define EXTMEM_ICACHE_SYNC_INT_ENA_V 0x00000001 +#define EXTMEM_ICACHE_SYNC_INT_ENA_S 1 + +/* EXTMEM_ICACHE_SYNC_INT_ST : RO; bitpos: [0]; default: 0; + * The bit is used to indicate the interrupt by icache sync done. + */ + +#define EXTMEM_ICACHE_SYNC_INT_ST (BIT(0)) +#define EXTMEM_ICACHE_SYNC_INT_ST_M (EXTMEM_ICACHE_SYNC_INT_ST_V << EXTMEM_ICACHE_SYNC_INT_ST_S) +#define EXTMEM_ICACHE_SYNC_INT_ST_V 0x00000001 +#define EXTMEM_ICACHE_SYNC_INT_ST_S 0 + +/* EXTMEM_CACHE_MMU_OWNER_REG register + * ******* Description *********** + */ + +#define EXTMEM_CACHE_MMU_OWNER_REG (DR_REG_EXTMEM_BASE + 0x148) + +/* EXTMEM_CACHE_MMU_OWNER : R/W; bitpos: [23:0]; default: 0; + * The bits are used to specify the owner of MMU.bit0: icache, bit1: dcache, + * bit2: dma, bit3: reserved. + */ + +#define EXTMEM_CACHE_MMU_OWNER 0x00ffffff +#define EXTMEM_CACHE_MMU_OWNER_M (EXTMEM_CACHE_MMU_OWNER_V << EXTMEM_CACHE_MMU_OWNER_S) +#define EXTMEM_CACHE_MMU_OWNER_V 0x00ffffff +#define EXTMEM_CACHE_MMU_OWNER_S 0 + +/* EXTMEM_CACHE_CONF_MISC_REG register + * ******* Description *********** + */ + +#define EXTMEM_CACHE_CONF_MISC_REG (DR_REG_EXTMEM_BASE + 0x14c) + +/* EXTMEM_CACHE_TRACE_ENA : R/W; bitpos: [2]; default: 1; + * The bit is used to enable cache trace function. + */ + +#define EXTMEM_CACHE_TRACE_ENA (BIT(2)) +#define EXTMEM_CACHE_TRACE_ENA_M (EXTMEM_CACHE_TRACE_ENA_V << EXTMEM_CACHE_TRACE_ENA_S) +#define EXTMEM_CACHE_TRACE_ENA_V 0x00000001 +#define EXTMEM_CACHE_TRACE_ENA_S 2 + +/* EXTMEM_CACHE_IGNORE_SYNC_MMU_ENTRY_FAULT : R/W; bitpos: [1]; default: 1; + * The bit is used to disable checking mmu entry fault by sync operation. + */ + +#define EXTMEM_CACHE_IGNORE_SYNC_MMU_ENTRY_FAULT (BIT(1)) +#define EXTMEM_CACHE_IGNORE_SYNC_MMU_ENTRY_FAULT_M (EXTMEM_CACHE_IGNORE_SYNC_MMU_ENTRY_FAULT_V << EXTMEM_CACHE_IGNORE_SYNC_MMU_ENTRY_FAULT_S) +#define EXTMEM_CACHE_IGNORE_SYNC_MMU_ENTRY_FAULT_V 0x00000001 +#define EXTMEM_CACHE_IGNORE_SYNC_MMU_ENTRY_FAULT_S 1 + +/* EXTMEM_CACHE_IGNORE_PRELOAD_MMU_ENTRY_FAULT : R/W; bitpos: [0]; default: + * 1; + * The bit is used to disable checking mmu entry fault by preload operation. + */ + +#define EXTMEM_CACHE_IGNORE_PRELOAD_MMU_ENTRY_FAULT (BIT(0)) +#define EXTMEM_CACHE_IGNORE_PRELOAD_MMU_ENTRY_FAULT_M (EXTMEM_CACHE_IGNORE_PRELOAD_MMU_ENTRY_FAULT_V << EXTMEM_CACHE_IGNORE_PRELOAD_MMU_ENTRY_FAULT_S) +#define EXTMEM_CACHE_IGNORE_PRELOAD_MMU_ENTRY_FAULT_V 0x00000001 +#define EXTMEM_CACHE_IGNORE_PRELOAD_MMU_ENTRY_FAULT_S 0 + +/* EXTMEM_DCACHE_FREEZE_REG register + * ******* Description *********** + */ + +#define EXTMEM_DCACHE_FREEZE_REG (DR_REG_EXTMEM_BASE + 0x150) + +/* EXTMEM_DCACHE_FREEZE_DONE : RO; bitpos: [2]; default: 1; + * The bit is used to indicate dcache freeze success + */ + +#define EXTMEM_DCACHE_FREEZE_DONE (BIT(2)) +#define EXTMEM_DCACHE_FREEZE_DONE_M (EXTMEM_DCACHE_FREEZE_DONE_V << EXTMEM_DCACHE_FREEZE_DONE_S) +#define EXTMEM_DCACHE_FREEZE_DONE_V 0x00000001 +#define EXTMEM_DCACHE_FREEZE_DONE_S 2 + +/* EXTMEM_DCACHE_FREEZE_MODE : R/W; bitpos: [1]; default: 0; + * The bit is used to configure freeze mode, 0: assert busy if CPU miss 1: + * assert hit if CPU miss + */ + +#define EXTMEM_DCACHE_FREEZE_MODE (BIT(1)) +#define EXTMEM_DCACHE_FREEZE_MODE_M (EXTMEM_DCACHE_FREEZE_MODE_V << EXTMEM_DCACHE_FREEZE_MODE_S) +#define EXTMEM_DCACHE_FREEZE_MODE_V 0x00000001 +#define EXTMEM_DCACHE_FREEZE_MODE_S 1 + +/* EXTMEM_DCACHE_FREEZE_ENA : R/W; bitpos: [0]; default: 0; + * The bit is used to enable dcache freeze mode + */ + +#define EXTMEM_DCACHE_FREEZE_ENA (BIT(0)) +#define EXTMEM_DCACHE_FREEZE_ENA_M (EXTMEM_DCACHE_FREEZE_ENA_V << EXTMEM_DCACHE_FREEZE_ENA_S) +#define EXTMEM_DCACHE_FREEZE_ENA_V 0x00000001 +#define EXTMEM_DCACHE_FREEZE_ENA_S 0 + +/* EXTMEM_ICACHE_FREEZE_REG register + * ******* Description *********** + */ + +#define EXTMEM_ICACHE_FREEZE_REG (DR_REG_EXTMEM_BASE + 0x154) + +/* EXTMEM_ICACHE_FREEZE_DONE : RO; bitpos: [2]; default: 1; + * The bit is used to indicate icache freeze success + */ + +#define EXTMEM_ICACHE_FREEZE_DONE (BIT(2)) +#define EXTMEM_ICACHE_FREEZE_DONE_M (EXTMEM_ICACHE_FREEZE_DONE_V << EXTMEM_ICACHE_FREEZE_DONE_S) +#define EXTMEM_ICACHE_FREEZE_DONE_V 0x00000001 +#define EXTMEM_ICACHE_FREEZE_DONE_S 2 + +/* EXTMEM_ICACHE_FREEZE_MODE : R/W; bitpos: [1]; default: 0; + * The bit is used to configure freeze mode, 0: assert busy if CPU miss 1: + * assert hit if CPU miss + */ + +#define EXTMEM_ICACHE_FREEZE_MODE (BIT(1)) +#define EXTMEM_ICACHE_FREEZE_MODE_M (EXTMEM_ICACHE_FREEZE_MODE_V << EXTMEM_ICACHE_FREEZE_MODE_S) +#define EXTMEM_ICACHE_FREEZE_MODE_V 0x00000001 +#define EXTMEM_ICACHE_FREEZE_MODE_S 1 + +/* EXTMEM_ICACHE_FREEZE_ENA : R/W; bitpos: [0]; default: 0; + * The bit is used to enable icache freeze mode + */ + +#define EXTMEM_ICACHE_FREEZE_ENA (BIT(0)) +#define EXTMEM_ICACHE_FREEZE_ENA_M (EXTMEM_ICACHE_FREEZE_ENA_V << EXTMEM_ICACHE_FREEZE_ENA_S) +#define EXTMEM_ICACHE_FREEZE_ENA_V 0x00000001 +#define EXTMEM_ICACHE_FREEZE_ENA_S 0 + +/* EXTMEM_ICACHE_ATOMIC_OPERATE_ENA_REG register + * ******* Description *********** + */ + +#define EXTMEM_ICACHE_ATOMIC_OPERATE_ENA_REG (DR_REG_EXTMEM_BASE + 0x158) + +/* EXTMEM_ICACHE_ATOMIC_OPERATE_ENA : R/W; bitpos: [0]; default: 1; + * The bit is used to activate icache atomic operation protection. In this + * case, sync/lock operation can not interrupt miss-work. This feature does + * not work during invalidateAll operation. + */ + +#define EXTMEM_ICACHE_ATOMIC_OPERATE_ENA (BIT(0)) +#define EXTMEM_ICACHE_ATOMIC_OPERATE_ENA_M (EXTMEM_ICACHE_ATOMIC_OPERATE_ENA_V << EXTMEM_ICACHE_ATOMIC_OPERATE_ENA_S) +#define EXTMEM_ICACHE_ATOMIC_OPERATE_ENA_V 0x00000001 +#define EXTMEM_ICACHE_ATOMIC_OPERATE_ENA_S 0 + +/* EXTMEM_DCACHE_ATOMIC_OPERATE_ENA_REG register + * ******* Description *********** + */ + +#define EXTMEM_DCACHE_ATOMIC_OPERATE_ENA_REG (DR_REG_EXTMEM_BASE + 0x15c) + +/* EXTMEM_DCACHE_ATOMIC_OPERATE_ENA : R/W; bitpos: [0]; default: 1; + * The bit is used to activate dcache atomic operation protection. In this + * case, sync/lock/occupy operation can not interrupt miss-work. This + * feature does not work during invalidateAll operation. + */ + +#define EXTMEM_DCACHE_ATOMIC_OPERATE_ENA (BIT(0)) +#define EXTMEM_DCACHE_ATOMIC_OPERATE_ENA_M (EXTMEM_DCACHE_ATOMIC_OPERATE_ENA_V << EXTMEM_DCACHE_ATOMIC_OPERATE_ENA_S) +#define EXTMEM_DCACHE_ATOMIC_OPERATE_ENA_V 0x00000001 +#define EXTMEM_DCACHE_ATOMIC_OPERATE_ENA_S 0 + +/* EXTMEM_CACHE_REQUEST_REG register + * ******* Description *********** + */ + +#define EXTMEM_CACHE_REQUEST_REG (DR_REG_EXTMEM_BASE + 0x160) + +/* EXTMEM_CACHE_REQUEST_BYPASS : R/W; bitpos: [0]; default: 0; + * The bit is used to disable request recording which could cause + * performance issue + */ + +#define EXTMEM_CACHE_REQUEST_BYPASS (BIT(0)) +#define EXTMEM_CACHE_REQUEST_BYPASS_M (EXTMEM_CACHE_REQUEST_BYPASS_V << EXTMEM_CACHE_REQUEST_BYPASS_S) +#define EXTMEM_CACHE_REQUEST_BYPASS_V 0x00000001 +#define EXTMEM_CACHE_REQUEST_BYPASS_S 0 + +/* EXTMEM_CLOCK_GATE_REG register + * ******* Description *********** + */ + +#define EXTMEM_CLOCK_GATE_REG (DR_REG_EXTMEM_BASE + 0x164) + +/* EXTMEM_CLK_EN : R/W; bitpos: [0]; default: 1; + * Reserved + */ + +#define EXTMEM_CLK_EN (BIT(0)) +#define EXTMEM_CLK_EN_M (EXTMEM_CLK_EN_V << EXTMEM_CLK_EN_S) +#define EXTMEM_CLK_EN_V 0x00000001 +#define EXTMEM_CLK_EN_S 0 + +/* EXTMEM_CACHE_TAG_OBJECT_CTRL_REG register + * ******* Description *********** + */ + +#define EXTMEM_CACHE_TAG_OBJECT_CTRL_REG (DR_REG_EXTMEM_BASE + 0x180) + +/* EXTMEM_DCACHE_TAG_OBJECT : R/W; bitpos: [1]; default: 0; + * Set this bit to set dcache tag memory as object. This bit should be + * onehot with the others fields inside this register. + */ + +#define EXTMEM_DCACHE_TAG_OBJECT (BIT(1)) +#define EXTMEM_DCACHE_TAG_OBJECT_M (EXTMEM_DCACHE_TAG_OBJECT_V << EXTMEM_DCACHE_TAG_OBJECT_S) +#define EXTMEM_DCACHE_TAG_OBJECT_V 0x00000001 +#define EXTMEM_DCACHE_TAG_OBJECT_S 1 + +/* EXTMEM_ICACHE_TAG_OBJECT : R/W; bitpos: [0]; default: 0; + * Set this bit to set icache tag memory as object. This bit should be + * onehot with the others fields inside this register. + */ + +#define EXTMEM_ICACHE_TAG_OBJECT (BIT(0)) +#define EXTMEM_ICACHE_TAG_OBJECT_M (EXTMEM_ICACHE_TAG_OBJECT_V << EXTMEM_ICACHE_TAG_OBJECT_S) +#define EXTMEM_ICACHE_TAG_OBJECT_V 0x00000001 +#define EXTMEM_ICACHE_TAG_OBJECT_S 0 + +/* EXTMEM_CACHE_TAG_WAY_OBJECT_REG register + * ******* Description *********** + */ + +#define EXTMEM_CACHE_TAG_WAY_OBJECT_REG (DR_REG_EXTMEM_BASE + 0x184) + +/* EXTMEM_CACHE_TAG_WAY_OBJECT : R/W; bitpos: [2:0]; default: 0; + * Set this bits to select which way of the tag-object will be accessed. 0: + * way0, 1: way1, 2: way2, 3: way3, .., 7: way7. + */ + +#define EXTMEM_CACHE_TAG_WAY_OBJECT 0x00000007 +#define EXTMEM_CACHE_TAG_WAY_OBJECT_M (EXTMEM_CACHE_TAG_WAY_OBJECT_V << EXTMEM_CACHE_TAG_WAY_OBJECT_S) +#define EXTMEM_CACHE_TAG_WAY_OBJECT_V 0x00000007 +#define EXTMEM_CACHE_TAG_WAY_OBJECT_S 0 + +/* EXTMEM_CACHE_VADDR_REG register + * ******* Description *********** + */ + +#define EXTMEM_CACHE_VADDR_REG (DR_REG_EXTMEM_BASE + 0x188) + +/* EXTMEM_CACHE_VADDR : R/W; bitpos: [31:0]; default: 0; + * Those bits stores the virtual address which will decide where inside the + * specified tag memory object will be accessed. + */ + +#define EXTMEM_CACHE_VADDR 0xffffffff +#define EXTMEM_CACHE_VADDR_M (EXTMEM_CACHE_VADDR_V << EXTMEM_CACHE_VADDR_S) +#define EXTMEM_CACHE_VADDR_V 0xffffffff +#define EXTMEM_CACHE_VADDR_S 0 + +/* EXTMEM_CACHE_TAG_CONTENT_REG register + * ******* Description *********** + */ + +#define EXTMEM_CACHE_TAG_CONTENT_REG (DR_REG_EXTMEM_BASE + 0x18c) + +/* EXTMEM_CACHE_TAG_CONTENT : R/W; bitpos: [31:0]; default: 0; + * This is a constant place where we can write data to or read data from the + * tag memory on the specified cache. + */ + +#define EXTMEM_CACHE_TAG_CONTENT 0xffffffff +#define EXTMEM_CACHE_TAG_CONTENT_M (EXTMEM_CACHE_TAG_CONTENT_V << EXTMEM_CACHE_TAG_CONTENT_S) +#define EXTMEM_CACHE_TAG_CONTENT_V 0xffffffff +#define EXTMEM_CACHE_TAG_CONTENT_S 0 + +/* EXTMEM_DATE_REG register + * ******* Description *********** + */ + +#define EXTMEM_DATE_REG (DR_REG_EXTMEM_BASE + 0x3fc) + +/* EXTMEM_DATE : R/W; bitpos: [27:0]; default: 33628944; + * version information. + */ + +#define EXTMEM_DATE 0x0fffffff +#define EXTMEM_DATE_M (EXTMEM_DATE_V << EXTMEM_DATE_S) +#define EXTMEM_DATE_V 0x0fffffff +#define EXTMEM_DATE_S 0 + +#endif /* __ARCH_XTENSA_SRC_ESP32S3_HARDWARE_ESP32S3_EXTMEM_H */ diff --git a/arch/xtensa/src/esp32s3/hardware/esp32s3_gpio.h b/arch/xtensa/src/esp32s3/hardware/esp32s3_gpio.h new file mode 100644 index 0000000000..99d6ea85e2 --- /dev/null +++ b/arch/xtensa/src/esp32s3/hardware/esp32s3_gpio.h @@ -0,0 +1,15717 @@ +/**************************************************************************** + * arch/xtensa/src/esp32s3/hardware/esp32s3_gpio.h + * + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. The + * ASF licenses this file to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance with the + * License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT + * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the + * License for the specific language governing permissions and limitations + * under the License. + * + ****************************************************************************/ + +#ifndef __ARCH_XTENSA_SRC_ESP32S3_HARDWARE_ESP32S3_GPIO_H +#define __ARCH_XTENSA_SRC_ESP32S3_HARDWARE_ESP32S3_GPIO_H + +/**************************************************************************** + * Included Files + ****************************************************************************/ + +#include "esp32s3_soc.h" + +/**************************************************************************** + * Pre-processor Definitions + ****************************************************************************/ + +#define GPIO_REG(io_num) (GPIO_PIN0_REG + ((io_num) * 0x4)) + +/* GPIO_BT_SELECT_REG register + * GPIO bit select register + */ + +#define GPIO_BT_SELECT_REG (DR_REG_GPIO_BASE + 0x0) + +/* GPIO_BT_SEL : R/W; bitpos: [31:0]; default: 0; + * GPIO bit select register + */ + +#define GPIO_BT_SEL 0xffffffff +#define GPIO_BT_SEL_M (GPIO_BT_SEL_V << GPIO_BT_SEL_S) +#define GPIO_BT_SEL_V 0xffffffff +#define GPIO_BT_SEL_S 0 + +/* GPIO_OUT_REG register + * GPIO output register for GPIO0-31 + */ + +#define GPIO_OUT_REG (DR_REG_GPIO_BASE + 0x4) + +/* GPIO_OUT_DATA_ORIG : R/W/WS/WC; bitpos: [31:0]; default: 0; + * GPIO output register for GPIO0-31 + */ + +#define GPIO_OUT_DATA_ORIG 0xffffffff +#define GPIO_OUT_DATA_ORIG_M (GPIO_OUT_DATA_ORIG_V << GPIO_OUT_DATA_ORIG_S) +#define GPIO_OUT_DATA_ORIG_V 0xffffffff +#define GPIO_OUT_DATA_ORIG_S 0 + +/* GPIO_OUT_W1TS_REG register + * GPIO output set register for GPIO0-31 + */ + +#define GPIO_OUT_W1TS_REG (DR_REG_GPIO_BASE + 0x8) + +/* GPIO_OUT_W1TS : WT; bitpos: [31:0]; default: 0; + * GPIO output set register for GPIO0-31 + */ + +#define GPIO_OUT_W1TS 0xffffffff +#define GPIO_OUT_W1TS_M (GPIO_OUT_W1TS_V << GPIO_OUT_W1TS_S) +#define GPIO_OUT_W1TS_V 0xffffffff +#define GPIO_OUT_W1TS_S 0 + +/* GPIO_OUT_W1TC_REG register + * GPIO output clear register for GPIO0-31 + */ + +#define GPIO_OUT_W1TC_REG (DR_REG_GPIO_BASE + 0xc) + +/* GPIO_OUT_W1TC : WT; bitpos: [31:0]; default: 0; + * GPIO output clear register for GPIO0-31 + */ + +#define GPIO_OUT_W1TC 0xffffffff +#define GPIO_OUT_W1TC_M (GPIO_OUT_W1TC_V << GPIO_OUT_W1TC_S) +#define GPIO_OUT_W1TC_V 0xffffffff +#define GPIO_OUT_W1TC_S 0 + +/* GPIO_OUT1_REG register + * GPIO output register for GPIO32-53 + */ + +#define GPIO_OUT1_REG (DR_REG_GPIO_BASE + 0x10) + +/* GPIO_OUT1_DATA_ORIG : R/W/WS/WC; bitpos: [21:0]; default: 0; + * GPIO output register for GPIO32-53 + */ + +#define GPIO_OUT1_DATA_ORIG 0x003fffff +#define GPIO_OUT1_DATA_ORIG_M (GPIO_OUT1_DATA_ORIG_V << GPIO_OUT1_DATA_ORIG_S) +#define GPIO_OUT1_DATA_ORIG_V 0x003fffff +#define GPIO_OUT1_DATA_ORIG_S 0 + +/* GPIO_OUT1_W1TS_REG register + * GPIO output set register for GPIO32-53 + */ + +#define GPIO_OUT1_W1TS_REG (DR_REG_GPIO_BASE + 0x14) + +/* GPIO_OUT1_W1TS : WT; bitpos: [21:0]; default: 0; + * GPIO output set register for GPIO32-53 + */ + +#define GPIO_OUT1_W1TS 0x003fffff +#define GPIO_OUT1_W1TS_M (GPIO_OUT1_W1TS_V << GPIO_OUT1_W1TS_S) +#define GPIO_OUT1_W1TS_V 0x003fffff +#define GPIO_OUT1_W1TS_S 0 + +/* GPIO_OUT1_W1TC_REG register + * GPIO output clear register for GPIO32-53 + */ + +#define GPIO_OUT1_W1TC_REG (DR_REG_GPIO_BASE + 0x18) + +/* GPIO_OUT1_W1TC : WT; bitpos: [21:0]; default: 0; + * GPIO output clear register for GPIO32-53 + */ + +#define GPIO_OUT1_W1TC 0x003fffff +#define GPIO_OUT1_W1TC_M (GPIO_OUT1_W1TC_V << GPIO_OUT1_W1TC_S) +#define GPIO_OUT1_W1TC_V 0x003fffff +#define GPIO_OUT1_W1TC_S 0 + +/* GPIO_SDIO_SELECT_REG register + * GPIO sdio select register + */ + +#define GPIO_SDIO_SELECT_REG (DR_REG_GPIO_BASE + 0x1c) + +/* GPIO_SDIO_SEL : R/W; bitpos: [7:0]; default: 0; + * GPIO sdio select register + */ + +#define GPIO_SDIO_SEL 0x000000ff +#define GPIO_SDIO_SEL_M (GPIO_SDIO_SEL_V << GPIO_SDIO_SEL_S) +#define GPIO_SDIO_SEL_V 0x000000ff +#define GPIO_SDIO_SEL_S 0 + +/* GPIO_ENABLE_REG register + * GPIO output enable register for GPIO0-31 + */ + +#define GPIO_ENABLE_REG (DR_REG_GPIO_BASE + 0x20) + +/* GPIO_ENABLE_DATA : R/W/SS; bitpos: [31:0]; default: 0; + * GPIO output enable register for GPIO0-31 + */ + +#define GPIO_ENABLE_DATA 0xffffffff +#define GPIO_ENABLE_DATA_M (GPIO_ENABLE_DATA_V << GPIO_ENABLE_DATA_S) +#define GPIO_ENABLE_DATA_V 0xffffffff +#define GPIO_ENABLE_DATA_S 0 + +/* GPIO_ENABLE_W1TS_REG register + * GPIO output enable set register for GPIO0-31 + */ + +#define GPIO_ENABLE_W1TS_REG (DR_REG_GPIO_BASE + 0x24) + +/* GPIO_ENABLE_W1TS : WT; bitpos: [31:0]; default: 0; + * GPIO output enable set register for GPIO0-31 + */ + +#define GPIO_ENABLE_W1TS 0xffffffff +#define GPIO_ENABLE_W1TS_M (GPIO_ENABLE_W1TS_V << GPIO_ENABLE_W1TS_S) +#define GPIO_ENABLE_W1TS_V 0xffffffff +#define GPIO_ENABLE_W1TS_S 0 + +/* GPIO_ENABLE_W1TC_REG register + * GPIO output enable clear register for GPIO0-31 + */ + +#define GPIO_ENABLE_W1TC_REG (DR_REG_GPIO_BASE + 0x28) + +/* GPIO_ENABLE_W1TC : WT; bitpos: [31:0]; default: 0; + * GPIO output enable clear register for GPIO0-31 + */ + +#define GPIO_ENABLE_W1TC 0xffffffff +#define GPIO_ENABLE_W1TC_M (GPIO_ENABLE_W1TC_V << GPIO_ENABLE_W1TC_S) +#define GPIO_ENABLE_W1TC_V 0xffffffff +#define GPIO_ENABLE_W1TC_S 0 + +/* GPIO_ENABLE1_REG register + * GPIO output enable register for GPIO32-53 + */ + +#define GPIO_ENABLE1_REG (DR_REG_GPIO_BASE + 0x2c) + +/* GPIO_ENABLE1_DATA : R/W/SS; bitpos: [21:0]; default: 0; + * GPIO output enable register for GPIO32-53 + */ + +#define GPIO_ENABLE1_DATA 0x003fffff +#define GPIO_ENABLE1_DATA_M (GPIO_ENABLE1_DATA_V << GPIO_ENABLE1_DATA_S) +#define GPIO_ENABLE1_DATA_V 0x003fffff +#define GPIO_ENABLE1_DATA_S 0 + +/* GPIO_ENABLE1_W1TS_REG register + * GPIO output enable set register for GPIO32-53 + */ + +#define GPIO_ENABLE1_W1TS_REG (DR_REG_GPIO_BASE + 0x30) + +/* GPIO_ENABLE1_W1TS : WT; bitpos: [21:0]; default: 0; + * GPIO output enable set register for GPIO32-53 + */ + +#define GPIO_ENABLE1_W1TS 0x003fffff +#define GPIO_ENABLE1_W1TS_M (GPIO_ENABLE1_W1TS_V << GPIO_ENABLE1_W1TS_S) +#define GPIO_ENABLE1_W1TS_V 0x003fffff +#define GPIO_ENABLE1_W1TS_S 0 + +/* GPIO_ENABLE1_W1TC_REG register + * GPIO output enable clear register for GPIO32-53 + */ + +#define GPIO_ENABLE1_W1TC_REG (DR_REG_GPIO_BASE + 0x34) + +/* GPIO_ENABLE1_W1TC : WT; bitpos: [21:0]; default: 0; + * GPIO output enable clear register for GPIO32-53 + */ + +#define GPIO_ENABLE1_W1TC 0x003fffff +#define GPIO_ENABLE1_W1TC_M (GPIO_ENABLE1_W1TC_V << GPIO_ENABLE1_W1TC_S) +#define GPIO_ENABLE1_W1TC_V 0x003fffff +#define GPIO_ENABLE1_W1TC_S 0 + +/* GPIO_STRAP_REG register + * pad strapping register + */ + +#define GPIO_STRAP_REG (DR_REG_GPIO_BASE + 0x38) + +/* GPIO_STRAPPING : RO; bitpos: [15:0]; default: 0; + * pad strapping register + */ + +#define GPIO_STRAPPING 0x0000ffff +#define GPIO_STRAPPING_M (GPIO_STRAPPING_V << GPIO_STRAPPING_S) +#define GPIO_STRAPPING_V 0x0000ffff +#define GPIO_STRAPPING_S 0 + +/* GPIO_IN_REG register + * GPIO input register for GPIO0-31 + */ + +#define GPIO_IN_REG (DR_REG_GPIO_BASE + 0x3c) + +/* GPIO_IN_DATA_NEXT : RO; bitpos: [31:0]; default: 0; + * GPIO input register for GPIO0-31 + */ + +#define GPIO_IN_DATA_NEXT 0xffffffff +#define GPIO_IN_DATA_NEXT_M (GPIO_IN_DATA_NEXT_V << GPIO_IN_DATA_NEXT_S) +#define GPIO_IN_DATA_NEXT_V 0xffffffff +#define GPIO_IN_DATA_NEXT_S 0 + +/* GPIO_IN1_REG register + * GPIO input register for GPIO32-53 + */ + +#define GPIO_IN1_REG (DR_REG_GPIO_BASE + 0x40) + +/* GPIO_IN1_DATA_NEXT : RO; bitpos: [21:0]; default: 0; + * GPIO input register for GPIO32-53 + */ + +#define GPIO_IN1_DATA_NEXT 0x003fffff +#define GPIO_IN1_DATA_NEXT_M (GPIO_IN1_DATA_NEXT_V << GPIO_IN1_DATA_NEXT_S) +#define GPIO_IN1_DATA_NEXT_V 0x003fffff +#define GPIO_IN1_DATA_NEXT_S 0 + +/* GPIO_STATUS_REG register + * GPIO interrupt status register for GPIO0-31 + */ + +#define GPIO_STATUS_REG (DR_REG_GPIO_BASE + 0x44) + +/* GPIO_STATUS_INTERRUPT : R/W/SS; bitpos: [31:0]; default: 0; + * GPIO interrupt status register for GPIO0-31 + */ + +#define GPIO_STATUS_INTERRUPT 0xffffffff +#define GPIO_STATUS_INTERRUPT_M (GPIO_STATUS_INTERRUPT_V << GPIO_STATUS_INTERRUPT_S) +#define GPIO_STATUS_INTERRUPT_V 0xffffffff +#define GPIO_STATUS_INTERRUPT_S 0 + +/* GPIO_STATUS_W1TS_REG register + * GPIO interrupt status set register for GPIO0-31 + */ + +#define GPIO_STATUS_W1TS_REG (DR_REG_GPIO_BASE + 0x48) + +/* GPIO_STATUS_W1TS : WT; bitpos: [31:0]; default: 0; + * GPIO interrupt status set register for GPIO0-31 + */ + +#define GPIO_STATUS_W1TS 0xffffffff +#define GPIO_STATUS_W1TS_M (GPIO_STATUS_W1TS_V << GPIO_STATUS_W1TS_S) +#define GPIO_STATUS_W1TS_V 0xffffffff +#define GPIO_STATUS_W1TS_S 0 + +/* GPIO_STATUS_W1TC_REG register + * GPIO interrupt status clear register for GPIO0-31 + */ + +#define GPIO_STATUS_W1TC_REG (DR_REG_GPIO_BASE + 0x4c) + +/* GPIO_STATUS_W1TC : WT; bitpos: [31:0]; default: 0; + * GPIO interrupt status clear register for GPIO0-31 + */ + +#define GPIO_STATUS_W1TC 0xffffffff +#define GPIO_STATUS_W1TC_M (GPIO_STATUS_W1TC_V << GPIO_STATUS_W1TC_S) +#define GPIO_STATUS_W1TC_V 0xffffffff +#define GPIO_STATUS_W1TC_S 0 + +/* GPIO_STATUS1_REG register + * GPIO interrupt status register for GPIO32-53 + */ + +#define GPIO_STATUS1_REG (DR_REG_GPIO_BASE + 0x50) + +/* GPIO_STATUS1_INTERRUPT : R/W/SS; bitpos: [21:0]; default: 0; + * GPIO interrupt status register for GPIO32-53 + */ + +#define GPIO_STATUS1_INTERRUPT 0x003fffff +#define GPIO_STATUS1_INTERRUPT_M (GPIO_STATUS1_INTERRUPT_V << GPIO_STATUS1_INTERRUPT_S) +#define GPIO_STATUS1_INTERRUPT_V 0x003fffff +#define GPIO_STATUS1_INTERRUPT_S 0 + +/* GPIO_STATUS1_W1TS_REG register + * GPIO interrupt status set register for GPIO32-53 + */ + +#define GPIO_STATUS1_W1TS_REG (DR_REG_GPIO_BASE + 0x54) + +/* GPIO_STATUS1_W1TS : WT; bitpos: [21:0]; default: 0; + * GPIO interrupt status set register for GPIO32-53 + */ + +#define GPIO_STATUS1_W1TS 0x003fffff +#define GPIO_STATUS1_W1TS_M (GPIO_STATUS1_W1TS_V << GPIO_STATUS1_W1TS_S) +#define GPIO_STATUS1_W1TS_V 0x003fffff +#define GPIO_STATUS1_W1TS_S 0 + +/* GPIO_STATUS1_W1TC_REG register + * GPIO interrupt status clear register for GPIO32-53 + */ + +#define GPIO_STATUS1_W1TC_REG (DR_REG_GPIO_BASE + 0x58) + +/* GPIO_STATUS1_W1TC : WT; bitpos: [21:0]; default: 0; + * GPIO interrupt status clear register for GPIO32-53 + */ + +#define GPIO_STATUS1_W1TC 0x003fffff +#define GPIO_STATUS1_W1TC_M (GPIO_STATUS1_W1TC_V << GPIO_STATUS1_W1TC_S) +#define GPIO_STATUS1_W1TC_V 0x003fffff +#define GPIO_STATUS1_W1TC_S 0 + +/* GPIO_PCPU_INT_REG register + * GPIO PRO_CPU interrupt status register for GPIO0-31 + */ + +#define GPIO_PCPU_INT_REG (DR_REG_GPIO_BASE + 0x5c) + +/* GPIO_PROCPU_INT : RO; bitpos: [31:0]; default: 0; + * GPIO PRO_CPU interrupt status register for GPIO0-31 + */ + +#define GPIO_PROCPU_INT 0xffffffff +#define GPIO_PROCPU_INT_M (GPIO_PROCPU_INT_V << GPIO_PROCPU_INT_S) +#define GPIO_PROCPU_INT_V 0xffffffff +#define GPIO_PROCPU_INT_S 0 + +/* GPIO_PCPU_NMI_INT_REG register + * GPIO PRO_CPU(not shielded) interrupt status register for GPIO0-31 + */ + +#define GPIO_PCPU_NMI_INT_REG (DR_REG_GPIO_BASE + 0x60) + +/* GPIO_PROCPU_NMI_INT : RO; bitpos: [31:0]; default: 0; + * GPIO PRO_CPU(not shielded) interrupt status register for GPIO0-31 + */ + +#define GPIO_PROCPU_NMI_INT 0xffffffff +#define GPIO_PROCPU_NMI_INT_M (GPIO_PROCPU_NMI_INT_V << GPIO_PROCPU_NMI_INT_S) +#define GPIO_PROCPU_NMI_INT_V 0xffffffff +#define GPIO_PROCPU_NMI_INT_S 0 + +/* GPIO_CPUSDIO_INT_REG register + * GPIO CPUSDIO interrupt status register for GPIO0-31 + */ + +#define GPIO_CPUSDIO_INT_REG (DR_REG_GPIO_BASE + 0x64) + +/* GPIO_SDIO_INT : RO; bitpos: [31:0]; default: 0; + * GPIO CPUSDIO interrupt status register for GPIO0-31 + */ + +#define GPIO_SDIO_INT 0xffffffff +#define GPIO_SDIO_INT_M (GPIO_SDIO_INT_V << GPIO_SDIO_INT_S) +#define GPIO_SDIO_INT_V 0xffffffff +#define GPIO_SDIO_INT_S 0 + +/* GPIO_PCPU_INT1_REG register + * GPIO PRO_CPU interrupt status register for GPIO32-53 + */ + +#define GPIO_PCPU_INT1_REG (DR_REG_GPIO_BASE + 0x68) + +/* GPIO_PROCPU_INT1 : RO; bitpos: [21:0]; default: 0; + * GPIO PRO_CPU interrupt status register for GPIO32-53 + */ + +#define GPIO_PROCPU_INT1 0x003fffff +#define GPIO_PROCPU_INT1_M (GPIO_PROCPU_INT1_V << GPIO_PROCPU_INT1_S) +#define GPIO_PROCPU_INT1_V 0x003fffff +#define GPIO_PROCPU_INT1_S 0 + +/* GPIO_PCPU_NMI_INT1_REG register + * GPIO PRO_CPU(not shielded) interrupt status register for GPIO32-53 + */ + +#define GPIO_PCPU_NMI_INT1_REG (DR_REG_GPIO_BASE + 0x6c) + +/* GPIO_PROCPU_NMI_INT1 : RO; bitpos: [21:0]; default: 0; + * GPIO PRO_CPU(not shielded) interrupt status register for GPIO32-53 + */ + +#define GPIO_PROCPU_NMI_INT1 0x003fffff +#define GPIO_PROCPU_NMI_INT1_M (GPIO_PROCPU_NMI_INT1_V << GPIO_PROCPU_NMI_INT1_S) +#define GPIO_PROCPU_NMI_INT1_V 0x003fffff +#define GPIO_PROCPU_NMI_INT1_S 0 + +/* GPIO_CPUSDIO_INT1_REG register + * GPIO CPUSDIO interrupt status register for GPIO32-53 + */ + +#define GPIO_CPUSDIO_INT1_REG (DR_REG_GPIO_BASE + 0x70) + +/* GPIO_SDIO_INT1 : RO; bitpos: [21:0]; default: 0; + * GPIO CPUSDIO interrupt status register for GPIO32-53 + */ + +#define GPIO_SDIO_INT1 0x003fffff +#define GPIO_SDIO_INT1_M (GPIO_SDIO_INT1_V << GPIO_SDIO_INT1_S) +#define GPIO_SDIO_INT1_V 0x003fffff +#define GPIO_SDIO_INT1_S 0 + +/* GPIO_PIN0_REG register + * GPIO pin configuration register + */ + +#define GPIO_PIN0_REG (DR_REG_GPIO_BASE + 0x74) + +/* GPIO_PIN0_INT_ENA : R/W; bitpos: [17:13]; default: 0; + * set bit 13 to enable CPU interrupt. set bit 14 to enable CPU(not + * shielded) interrupt. + */ + +#define GPIO_PIN0_INT_ENA 0x0000001f +#define GPIO_PIN0_INT_ENA_M (GPIO_PIN0_INT_ENA_V << GPIO_PIN0_INT_ENA_S) +#define GPIO_PIN0_INT_ENA_V 0x0000001f +#define GPIO_PIN0_INT_ENA_S 13 + +/* GPIO_PIN0_CONFIG : R/W; bitpos: [12:11]; default: 0; + * reserved + */ + +#define GPIO_PIN0_CONFIG 0x00000003 +#define GPIO_PIN0_CONFIG_M (GPIO_PIN0_CONFIG_V << GPIO_PIN0_CONFIG_S) +#define GPIO_PIN0_CONFIG_V 0x00000003 +#define GPIO_PIN0_CONFIG_S 11 + +/* GPIO_PIN0_WAKEUP_ENABLE : R/W; bitpos: [10]; default: 0; + * set this bit to enable GPIO wakeup.(can only wakeup CPU from Light-sleep + * Mode) + */ + +#define GPIO_PIN0_WAKEUP_ENABLE (BIT(10)) +#define GPIO_PIN0_WAKEUP_ENABLE_M (GPIO_PIN0_WAKEUP_ENABLE_V << GPIO_PIN0_WAKEUP_ENABLE_S) +#define GPIO_PIN0_WAKEUP_ENABLE_V 0x00000001 +#define GPIO_PIN0_WAKEUP_ENABLE_S 10 + +/* GPIO_PIN0_INT_TYPE : R/W; bitpos: [9:7]; default: 0; + * set this value to choose interrupt mode. 0:disable GPIO interrupt. + * 1:trigger at posedge. 2:trigger at negedge. 3:trigger at any edge. + * 4:valid at low level. 5:valid at high level + */ + +#define GPIO_PIN0_INT_TYPE 0x00000007 +#define GPIO_PIN0_INT_TYPE_M (GPIO_PIN0_INT_TYPE_V << GPIO_PIN0_INT_TYPE_S) +#define GPIO_PIN0_INT_TYPE_V 0x00000007 +#define GPIO_PIN0_INT_TYPE_S 7 + +/* GPIO_PIN0_SYNC1_BYPASS : R/W; bitpos: [4:3]; default: 0; + * set GPIO input_sync1 signal mode. 0:disable. 1:trigger at negedge. + * 2or3:trigger at posedge. + */ + +#define GPIO_PIN0_SYNC1_BYPASS 0x00000003 +#define GPIO_PIN0_SYNC1_BYPASS_M (GPIO_PIN0_SYNC1_BYPASS_V << GPIO_PIN0_SYNC1_BYPASS_S) +#define GPIO_PIN0_SYNC1_BYPASS_V 0x00000003 +#define GPIO_PIN0_SYNC1_BYPASS_S 3 + +/* GPIO_PIN0_PAD_DRIVER : R/W; bitpos: [2]; default: 0; + * set this bit to select pad driver. 1:open-drain. 0:normal. + */ + +#define GPIO_PIN0_PAD_DRIVER (BIT(2)) +#define GPIO_PIN0_PAD_DRIVER_M (GPIO_PIN0_PAD_DRIVER_V << GPIO_PIN0_PAD_DRIVER_S) +#define GPIO_PIN0_PAD_DRIVER_V 0x00000001 +#define GPIO_PIN0_PAD_DRIVER_S 2 + +/* GPIO_PIN0_SYNC2_BYPASS : R/W; bitpos: [1:0]; default: 0; + * set GPIO input_sync2 signal mode. 0:disable. 1:trigger at negedge. + * 2or3:trigger at posedge. + */ + +#define GPIO_PIN0_SYNC2_BYPASS 0x00000003 +#define GPIO_PIN0_SYNC2_BYPASS_M (GPIO_PIN0_SYNC2_BYPASS_V << GPIO_PIN0_SYNC2_BYPASS_S) +#define GPIO_PIN0_SYNC2_BYPASS_V 0x00000003 +#define GPIO_PIN0_SYNC2_BYPASS_S 0 + +/* GPIO_PIN1_REG register + * GPIO pin configuration register + */ + +#define GPIO_PIN1_REG (DR_REG_GPIO_BASE + 0x78) + +/* GPIO_PIN1_INT_ENA : R/W; bitpos: [17:13]; default: 0; + * set bit 13 to enable CPU interrupt. set bit 14 to enable CPU(not + * shielded) interrupt. + */ + +#define GPIO_PIN1_INT_ENA 0x0000001f +#define GPIO_PIN1_INT_ENA_M (GPIO_PIN1_INT_ENA_V << GPIO_PIN1_INT_ENA_S) +#define GPIO_PIN1_INT_ENA_V 0x0000001f +#define GPIO_PIN1_INT_ENA_S 13 + +/* GPIO_PIN1_CONFIG : R/W; bitpos: [12:11]; default: 0; + * reserved + */ + +#define GPIO_PIN1_CONFIG 0x00000003 +#define GPIO_PIN1_CONFIG_M (GPIO_PIN1_CONFIG_V << GPIO_PIN1_CONFIG_S) +#define GPIO_PIN1_CONFIG_V 0x00000003 +#define GPIO_PIN1_CONFIG_S 11 + +/* GPIO_PIN1_WAKEUP_ENABLE : R/W; bitpos: [10]; default: 0; + * set this bit to enable GPIO wakeup.(can only wakeup CPU from Light-sleep + * Mode) + */ + +#define GPIO_PIN1_WAKEUP_ENABLE (BIT(10)) +#define GPIO_PIN1_WAKEUP_ENABLE_M (GPIO_PIN1_WAKEUP_ENABLE_V << GPIO_PIN1_WAKEUP_ENABLE_S) +#define GPIO_PIN1_WAKEUP_ENABLE_V 0x00000001 +#define GPIO_PIN1_WAKEUP_ENABLE_S 10 + +/* GPIO_PIN1_INT_TYPE : R/W; bitpos: [9:7]; default: 0; + * set this value to choose interrupt mode. 0:disable GPIO interrupt. + * 1:trigger at posedge. 2:trigger at negedge. 3:trigger at any edge. + * 4:valid at low level. 5:valid at high level + */ + +#define GPIO_PIN1_INT_TYPE 0x00000007 +#define GPIO_PIN1_INT_TYPE_M (GPIO_PIN1_INT_TYPE_V << GPIO_PIN1_INT_TYPE_S) +#define GPIO_PIN1_INT_TYPE_V 0x00000007 +#define GPIO_PIN1_INT_TYPE_S 7 + +/* GPIO_PIN1_SYNC1_BYPASS : R/W; bitpos: [4:3]; default: 0; + * set GPIO input_sync1 signal mode. 0:disable. 1:trigger at negedge. + * 2or3:trigger at posedge. + */ + +#define GPIO_PIN1_SYNC1_BYPASS 0x00000003 +#define GPIO_PIN1_SYNC1_BYPASS_M (GPIO_PIN1_SYNC1_BYPASS_V << GPIO_PIN1_SYNC1_BYPASS_S) +#define GPIO_PIN1_SYNC1_BYPASS_V 0x00000003 +#define GPIO_PIN1_SYNC1_BYPASS_S 3 + +/* GPIO_PIN1_PAD_DRIVER : R/W; bitpos: [2]; default: 0; + * set this bit to select pad driver. 1:open-drain. 0:normal. + */ + +#define GPIO_PIN1_PAD_DRIVER (BIT(2)) +#define GPIO_PIN1_PAD_DRIVER_M (GPIO_PIN1_PAD_DRIVER_V << GPIO_PIN1_PAD_DRIVER_S) +#define GPIO_PIN1_PAD_DRIVER_V 0x00000001 +#define GPIO_PIN1_PAD_DRIVER_S 2 + +/* GPIO_PIN1_SYNC2_BYPASS : R/W; bitpos: [1:0]; default: 0; + * set GPIO input_sync2 signal mode. 0:disable. 1:trigger at negedge. + * 2or3:trigger at posedge. + */ + +#define GPIO_PIN1_SYNC2_BYPASS 0x00000003 +#define GPIO_PIN1_SYNC2_BYPASS_M (GPIO_PIN1_SYNC2_BYPASS_V << GPIO_PIN1_SYNC2_BYPASS_S) +#define GPIO_PIN1_SYNC2_BYPASS_V 0x00000003 +#define GPIO_PIN1_SYNC2_BYPASS_S 0 + +/* GPIO_PIN2_REG register + * GPIO pin configuration register + */ + +#define GPIO_PIN2_REG (DR_REG_GPIO_BASE + 0x7c) + +/* GPIO_PIN2_INT_ENA : R/W; bitpos: [17:13]; default: 0; + * set bit 13 to enable CPU interrupt. set bit 14 to enable CPU(not + * shielded) interrupt. + */ + +#define GPIO_PIN2_INT_ENA 0x0000001f +#define GPIO_PIN2_INT_ENA_M (GPIO_PIN2_INT_ENA_V << GPIO_PIN2_INT_ENA_S) +#define GPIO_PIN2_INT_ENA_V 0x0000001f +#define GPIO_PIN2_INT_ENA_S 13 + +/* GPIO_PIN2_CONFIG : R/W; bitpos: [12:11]; default: 0; + * reserved + */ + +#define GPIO_PIN2_CONFIG 0x00000003 +#define GPIO_PIN2_CONFIG_M (GPIO_PIN2_CONFIG_V << GPIO_PIN2_CONFIG_S) +#define GPIO_PIN2_CONFIG_V 0x00000003 +#define GPIO_PIN2_CONFIG_S 11 + +/* GPIO_PIN2_WAKEUP_ENABLE : R/W; bitpos: [10]; default: 0; + * set this bit to enable GPIO wakeup.(can only wakeup CPU from Light-sleep + * Mode) + */ + +#define GPIO_PIN2_WAKEUP_ENABLE (BIT(10)) +#define GPIO_PIN2_WAKEUP_ENABLE_M (GPIO_PIN2_WAKEUP_ENABLE_V << GPIO_PIN2_WAKEUP_ENABLE_S) +#define GPIO_PIN2_WAKEUP_ENABLE_V 0x00000001 +#define GPIO_PIN2_WAKEUP_ENABLE_S 10 + +/* GPIO_PIN2_INT_TYPE : R/W; bitpos: [9:7]; default: 0; + * set this value to choose interrupt mode. 0:disable GPIO interrupt. + * 1:trigger at posedge. 2:trigger at negedge. 3:trigger at any edge. + * 4:valid at low level. 5:valid at high level + */ + +#define GPIO_PIN2_INT_TYPE 0x00000007 +#define GPIO_PIN2_INT_TYPE_M (GPIO_PIN2_INT_TYPE_V << GPIO_PIN2_INT_TYPE_S) +#define GPIO_PIN2_INT_TYPE_V 0x00000007 +#define GPIO_PIN2_INT_TYPE_S 7 + +/* GPIO_PIN2_SYNC1_BYPASS : R/W; bitpos: [4:3]; default: 0; + * set GPIO input_sync1 signal mode. 0:disable. 1:trigger at negedge. + * 2or3:trigger at posedge. + */ + +#define GPIO_PIN2_SYNC1_BYPASS 0x00000003 +#define GPIO_PIN2_SYNC1_BYPASS_M (GPIO_PIN2_SYNC1_BYPASS_V << GPIO_PIN2_SYNC1_BYPASS_S) +#define GPIO_PIN2_SYNC1_BYPASS_V 0x00000003 +#define GPIO_PIN2_SYNC1_BYPASS_S 3 + +/* GPIO_PIN2_PAD_DRIVER : R/W; bitpos: [2]; default: 0; + * set this bit to select pad driver. 1:open-drain. 0:normal. + */ + +#define GPIO_PIN2_PAD_DRIVER (BIT(2)) +#define GPIO_PIN2_PAD_DRIVER_M (GPIO_PIN2_PAD_DRIVER_V << GPIO_PIN2_PAD_DRIVER_S) +#define GPIO_PIN2_PAD_DRIVER_V 0x00000001 +#define GPIO_PIN2_PAD_DRIVER_S 2 + +/* GPIO_PIN2_SYNC2_BYPASS : R/W; bitpos: [1:0]; default: 0; + * set GPIO input_sync2 signal mode. 0:disable. 1:trigger at negedge. + * 2or3:trigger at posedge. + */ + +#define GPIO_PIN2_SYNC2_BYPASS 0x00000003 +#define GPIO_PIN2_SYNC2_BYPASS_M (GPIO_PIN2_SYNC2_BYPASS_V << GPIO_PIN2_SYNC2_BYPASS_S) +#define GPIO_PIN2_SYNC2_BYPASS_V 0x00000003 +#define GPIO_PIN2_SYNC2_BYPASS_S 0 + +/* GPIO_PIN3_REG register + * GPIO pin configuration register + */ + +#define GPIO_PIN3_REG (DR_REG_GPIO_BASE + 0x80) + +/* GPIO_PIN3_INT_ENA : R/W; bitpos: [17:13]; default: 0; + * set bit 13 to enable CPU interrupt. set bit 14 to enable CPU(not + * shielded) interrupt. + */ + +#define GPIO_PIN3_INT_ENA 0x0000001f +#define GPIO_PIN3_INT_ENA_M (GPIO_PIN3_INT_ENA_V << GPIO_PIN3_INT_ENA_S) +#define GPIO_PIN3_INT_ENA_V 0x0000001f +#define GPIO_PIN3_INT_ENA_S 13 + +/* GPIO_PIN3_CONFIG : R/W; bitpos: [12:11]; default: 0; + * reserved + */ + +#define GPIO_PIN3_CONFIG 0x00000003 +#define GPIO_PIN3_CONFIG_M (GPIO_PIN3_CONFIG_V << GPIO_PIN3_CONFIG_S) +#define GPIO_PIN3_CONFIG_V 0x00000003 +#define GPIO_PIN3_CONFIG_S 11 + +/* GPIO_PIN3_WAKEUP_ENABLE : R/W; bitpos: [10]; default: 0; + * set this bit to enable GPIO wakeup.(can only wakeup CPU from Light-sleep + * Mode) + */ + +#define GPIO_PIN3_WAKEUP_ENABLE (BIT(10)) +#define GPIO_PIN3_WAKEUP_ENABLE_M (GPIO_PIN3_WAKEUP_ENABLE_V << GPIO_PIN3_WAKEUP_ENABLE_S) +#define GPIO_PIN3_WAKEUP_ENABLE_V 0x00000001 +#define GPIO_PIN3_WAKEUP_ENABLE_S 10 + +/* GPIO_PIN3_INT_TYPE : R/W; bitpos: [9:7]; default: 0; + * set this value to choose interrupt mode. 0:disable GPIO interrupt. + * 1:trigger at posedge. 2:trigger at negedge. 3:trigger at any edge. + * 4:valid at low level. 5:valid at high level + */ + +#define GPIO_PIN3_INT_TYPE 0x00000007 +#define GPIO_PIN3_INT_TYPE_M (GPIO_PIN3_INT_TYPE_V << GPIO_PIN3_INT_TYPE_S) +#define GPIO_PIN3_INT_TYPE_V 0x00000007 +#define GPIO_PIN3_INT_TYPE_S 7 + +/* GPIO_PIN3_SYNC1_BYPASS : R/W; bitpos: [4:3]; default: 0; + * set GPIO input_sync1 signal mode. 0:disable. 1:trigger at negedge. + * 2or3:trigger at posedge. + */ + +#define GPIO_PIN3_SYNC1_BYPASS 0x00000003 +#define GPIO_PIN3_SYNC1_BYPASS_M (GPIO_PIN3_SYNC1_BYPASS_V << GPIO_PIN3_SYNC1_BYPASS_S) +#define GPIO_PIN3_SYNC1_BYPASS_V 0x00000003 +#define GPIO_PIN3_SYNC1_BYPASS_S 3 + +/* GPIO_PIN3_PAD_DRIVER : R/W; bitpos: [2]; default: 0; + * set this bit to select pad driver. 1:open-drain. 0:normal. + */ + +#define GPIO_PIN3_PAD_DRIVER (BIT(2)) +#define GPIO_PIN3_PAD_DRIVER_M (GPIO_PIN3_PAD_DRIVER_V << GPIO_PIN3_PAD_DRIVER_S) +#define GPIO_PIN3_PAD_DRIVER_V 0x00000001 +#define GPIO_PIN3_PAD_DRIVER_S 2 + +/* GPIO_PIN3_SYNC2_BYPASS : R/W; bitpos: [1:0]; default: 0; + * set GPIO input_sync2 signal mode. 0:disable. 1:trigger at negedge. + * 2or3:trigger at posedge. + */ + +#define GPIO_PIN3_SYNC2_BYPASS 0x00000003 +#define GPIO_PIN3_SYNC2_BYPASS_M (GPIO_PIN3_SYNC2_BYPASS_V << GPIO_PIN3_SYNC2_BYPASS_S) +#define GPIO_PIN3_SYNC2_BYPASS_V 0x00000003 +#define GPIO_PIN3_SYNC2_BYPASS_S 0 + +/* GPIO_PIN4_REG register + * GPIO pin configuration register + */ + +#define GPIO_PIN4_REG (DR_REG_GPIO_BASE + 0x84) + +/* GPIO_PIN4_INT_ENA : R/W; bitpos: [17:13]; default: 0; + * set bit 13 to enable CPU interrupt. set bit 14 to enable CPU(not + * shielded) interrupt. + */ + +#define GPIO_PIN4_INT_ENA 0x0000001f +#define GPIO_PIN4_INT_ENA_M (GPIO_PIN4_INT_ENA_V << GPIO_PIN4_INT_ENA_S) +#define GPIO_PIN4_INT_ENA_V 0x0000001f +#define GPIO_PIN4_INT_ENA_S 13 + +/* GPIO_PIN4_CONFIG : R/W; bitpos: [12:11]; default: 0; + * reserved + */ + +#define GPIO_PIN4_CONFIG 0x00000003 +#define GPIO_PIN4_CONFIG_M (GPIO_PIN4_CONFIG_V << GPIO_PIN4_CONFIG_S) +#define GPIO_PIN4_CONFIG_V 0x00000003 +#define GPIO_PIN4_CONFIG_S 11 + +/* GPIO_PIN4_WAKEUP_ENABLE : R/W; bitpos: [10]; default: 0; + * set this bit to enable GPIO wakeup.(can only wakeup CPU from Light-sleep + * Mode) + */ + +#define GPIO_PIN4_WAKEUP_ENABLE (BIT(10)) +#define GPIO_PIN4_WAKEUP_ENABLE_M (GPIO_PIN4_WAKEUP_ENABLE_V << GPIO_PIN4_WAKEUP_ENABLE_S) +#define GPIO_PIN4_WAKEUP_ENABLE_V 0x00000001 +#define GPIO_PIN4_WAKEUP_ENABLE_S 10 + +/* GPIO_PIN4_INT_TYPE : R/W; bitpos: [9:7]; default: 0; + * set this value to choose interrupt mode. 0:disable GPIO interrupt. + * 1:trigger at posedge. 2:trigger at negedge. 3:trigger at any edge. + * 4:valid at low level. 5:valid at high level + */ + +#define GPIO_PIN4_INT_TYPE 0x00000007 +#define GPIO_PIN4_INT_TYPE_M (GPIO_PIN4_INT_TYPE_V << GPIO_PIN4_INT_TYPE_S) +#define GPIO_PIN4_INT_TYPE_V 0x00000007 +#define GPIO_PIN4_INT_TYPE_S 7 + +/* GPIO_PIN4_SYNC1_BYPASS : R/W; bitpos: [4:3]; default: 0; + * set GPIO input_sync1 signal mode. 0:disable. 1:trigger at negedge. + * 2or3:trigger at posedge. + */ + +#define GPIO_PIN4_SYNC1_BYPASS 0x00000003 +#define GPIO_PIN4_SYNC1_BYPASS_M (GPIO_PIN4_SYNC1_BYPASS_V << GPIO_PIN4_SYNC1_BYPASS_S) +#define GPIO_PIN4_SYNC1_BYPASS_V 0x00000003 +#define GPIO_PIN4_SYNC1_BYPASS_S 3 + +/* GPIO_PIN4_PAD_DRIVER : R/W; bitpos: [2]; default: 0; + * set this bit to select pad driver. 1:open-drain. 0:normal. + */ + +#define GPIO_PIN4_PAD_DRIVER (BIT(2)) +#define GPIO_PIN4_PAD_DRIVER_M (GPIO_PIN4_PAD_DRIVER_V << GPIO_PIN4_PAD_DRIVER_S) +#define GPIO_PIN4_PAD_DRIVER_V 0x00000001 +#define GPIO_PIN4_PAD_DRIVER_S 2 + +/* GPIO_PIN4_SYNC2_BYPASS : R/W; bitpos: [1:0]; default: 0; + * set GPIO input_sync2 signal mode. 0:disable. 1:trigger at negedge. + * 2or3:trigger at posedge. + */ + +#define GPIO_PIN4_SYNC2_BYPASS 0x00000003 +#define GPIO_PIN4_SYNC2_BYPASS_M (GPIO_PIN4_SYNC2_BYPASS_V << GPIO_PIN4_SYNC2_BYPASS_S) +#define GPIO_PIN4_SYNC2_BYPASS_V 0x00000003 +#define GPIO_PIN4_SYNC2_BYPASS_S 0 + +/* GPIO_PIN5_REG register + * GPIO pin configuration register + */ + +#define GPIO_PIN5_REG (DR_REG_GPIO_BASE + 0x88) + +/* GPIO_PIN5_INT_ENA : R/W; bitpos: [17:13]; default: 0; + * set bit 13 to enable CPU interrupt. set bit 14 to enable CPU(not + * shielded) interrupt. + */ + +#define GPIO_PIN5_INT_ENA 0x0000001f +#define GPIO_PIN5_INT_ENA_M (GPIO_PIN5_INT_ENA_V << GPIO_PIN5_INT_ENA_S) +#define GPIO_PIN5_INT_ENA_V 0x0000001f +#define GPIO_PIN5_INT_ENA_S 13 + +/* GPIO_PIN5_CONFIG : R/W; bitpos: [12:11]; default: 0; + * reserved + */ + +#define GPIO_PIN5_CONFIG 0x00000003 +#define GPIO_PIN5_CONFIG_M (GPIO_PIN5_CONFIG_V << GPIO_PIN5_CONFIG_S) +#define GPIO_PIN5_CONFIG_V 0x00000003 +#define GPIO_PIN5_CONFIG_S 11 + +/* GPIO_PIN5_WAKEUP_ENABLE : R/W; bitpos: [10]; default: 0; + * set this bit to enable GPIO wakeup.(can only wakeup CPU from Light-sleep + * Mode) + */ + +#define GPIO_PIN5_WAKEUP_ENABLE (BIT(10)) +#define GPIO_PIN5_WAKEUP_ENABLE_M (GPIO_PIN5_WAKEUP_ENABLE_V << GPIO_PIN5_WAKEUP_ENABLE_S) +#define GPIO_PIN5_WAKEUP_ENABLE_V 0x00000001 +#define GPIO_PIN5_WAKEUP_ENABLE_S 10 + +/* GPIO_PIN5_INT_TYPE : R/W; bitpos: [9:7]; default: 0; + * set this value to choose interrupt mode. 0:disable GPIO interrupt. + * 1:trigger at posedge. 2:trigger at negedge. 3:trigger at any edge. + * 4:valid at low level. 5:valid at high level + */ + +#define GPIO_PIN5_INT_TYPE 0x00000007 +#define GPIO_PIN5_INT_TYPE_M (GPIO_PIN5_INT_TYPE_V << GPIO_PIN5_INT_TYPE_S) +#define GPIO_PIN5_INT_TYPE_V 0x00000007 +#define GPIO_PIN5_INT_TYPE_S 7 + +/* GPIO_PIN5_SYNC1_BYPASS : R/W; bitpos: [4:3]; default: 0; + * set GPIO input_sync1 signal mode. 0:disable. 1:trigger at negedge. + * 2or3:trigger at posedge. + */ + +#define GPIO_PIN5_SYNC1_BYPASS 0x00000003 +#define GPIO_PIN5_SYNC1_BYPASS_M (GPIO_PIN5_SYNC1_BYPASS_V << GPIO_PIN5_SYNC1_BYPASS_S) +#define GPIO_PIN5_SYNC1_BYPASS_V 0x00000003 +#define GPIO_PIN5_SYNC1_BYPASS_S 3 + +/* GPIO_PIN5_PAD_DRIVER : R/W; bitpos: [2]; default: 0; + * set this bit to select pad driver. 1:open-drain. 0:normal. + */ + +#define GPIO_PIN5_PAD_DRIVER (BIT(2)) +#define GPIO_PIN5_PAD_DRIVER_M (GPIO_PIN5_PAD_DRIVER_V << GPIO_PIN5_PAD_DRIVER_S) +#define GPIO_PIN5_PAD_DRIVER_V 0x00000001 +#define GPIO_PIN5_PAD_DRIVER_S 2 + +/* GPIO_PIN5_SYNC2_BYPASS : R/W; bitpos: [1:0]; default: 0; + * set GPIO input_sync2 signal mode. 0:disable. 1:trigger at negedge. + * 2or3:trigger at posedge. + */ + +#define GPIO_PIN5_SYNC2_BYPASS 0x00000003 +#define GPIO_PIN5_SYNC2_BYPASS_M (GPIO_PIN5_SYNC2_BYPASS_V << GPIO_PIN5_SYNC2_BYPASS_S) +#define GPIO_PIN5_SYNC2_BYPASS_V 0x00000003 +#define GPIO_PIN5_SYNC2_BYPASS_S 0 + +/* GPIO_PIN6_REG register + * GPIO pin configuration register + */ + +#define GPIO_PIN6_REG (DR_REG_GPIO_BASE + 0x8c) + +/* GPIO_PIN6_INT_ENA : R/W; bitpos: [17:13]; default: 0; + * set bit 13 to enable CPU interrupt. set bit 14 to enable CPU(not + * shielded) interrupt. + */ + +#define GPIO_PIN6_INT_ENA 0x0000001f +#define GPIO_PIN6_INT_ENA_M (GPIO_PIN6_INT_ENA_V << GPIO_PIN6_INT_ENA_S) +#define GPIO_PIN6_INT_ENA_V 0x0000001f +#define GPIO_PIN6_INT_ENA_S 13 + +/* GPIO_PIN6_CONFIG : R/W; bitpos: [12:11]; default: 0; + * reserved + */ + +#define GPIO_PIN6_CONFIG 0x00000003 +#define GPIO_PIN6_CONFIG_M (GPIO_PIN6_CONFIG_V << GPIO_PIN6_CONFIG_S) +#define GPIO_PIN6_CONFIG_V 0x00000003 +#define GPIO_PIN6_CONFIG_S 11 + +/* GPIO_PIN6_WAKEUP_ENABLE : R/W; bitpos: [10]; default: 0; + * set this bit to enable GPIO wakeup.(can only wakeup CPU from Light-sleep + * Mode) + */ + +#define GPIO_PIN6_WAKEUP_ENABLE (BIT(10)) +#define GPIO_PIN6_WAKEUP_ENABLE_M (GPIO_PIN6_WAKEUP_ENABLE_V << GPIO_PIN6_WAKEUP_ENABLE_S) +#define GPIO_PIN6_WAKEUP_ENABLE_V 0x00000001 +#define GPIO_PIN6_WAKEUP_ENABLE_S 10 + +/* GPIO_PIN6_INT_TYPE : R/W; bitpos: [9:7]; default: 0; + * set this value to choose interrupt mode. 0:disable GPIO interrupt. + * 1:trigger at posedge. 2:trigger at negedge. 3:trigger at any edge. + * 4:valid at low level. 5:valid at high level + */ + +#define GPIO_PIN6_INT_TYPE 0x00000007 +#define GPIO_PIN6_INT_TYPE_M (GPIO_PIN6_INT_TYPE_V << GPIO_PIN6_INT_TYPE_S) +#define GPIO_PIN6_INT_TYPE_V 0x00000007 +#define GPIO_PIN6_INT_TYPE_S 7 + +/* GPIO_PIN6_SYNC1_BYPASS : R/W; bitpos: [4:3]; default: 0; + * set GPIO input_sync1 signal mode. 0:disable. 1:trigger at negedge. + * 2or3:trigger at posedge. + */ + +#define GPIO_PIN6_SYNC1_BYPASS 0x00000003 +#define GPIO_PIN6_SYNC1_BYPASS_M (GPIO_PIN6_SYNC1_BYPASS_V << GPIO_PIN6_SYNC1_BYPASS_S) +#define GPIO_PIN6_SYNC1_BYPASS_V 0x00000003 +#define GPIO_PIN6_SYNC1_BYPASS_S 3 + +/* GPIO_PIN6_PAD_DRIVER : R/W; bitpos: [2]; default: 0; + * set this bit to select pad driver. 1:open-drain. 0:normal. + */ + +#define GPIO_PIN6_PAD_DRIVER (BIT(2)) +#define GPIO_PIN6_PAD_DRIVER_M (GPIO_PIN6_PAD_DRIVER_V << GPIO_PIN6_PAD_DRIVER_S) +#define GPIO_PIN6_PAD_DRIVER_V 0x00000001 +#define GPIO_PIN6_PAD_DRIVER_S 2 + +/* GPIO_PIN6_SYNC2_BYPASS : R/W; bitpos: [1:0]; default: 0; + * set GPIO input_sync2 signal mode. 0:disable. 1:trigger at negedge. + * 2or3:trigger at posedge. + */ + +#define GPIO_PIN6_SYNC2_BYPASS 0x00000003 +#define GPIO_PIN6_SYNC2_BYPASS_M (GPIO_PIN6_SYNC2_BYPASS_V << GPIO_PIN6_SYNC2_BYPASS_S) +#define GPIO_PIN6_SYNC2_BYPASS_V 0x00000003 +#define GPIO_PIN6_SYNC2_BYPASS_S 0 + +/* GPIO_PIN7_REG register + * GPIO pin configuration register + */ + +#define GPIO_PIN7_REG (DR_REG_GPIO_BASE + 0x90) + +/* GPIO_PIN7_INT_ENA : R/W; bitpos: [17:13]; default: 0; + * set bit 13 to enable CPU interrupt. set bit 14 to enable CPU(not + * shielded) interrupt. + */ + +#define GPIO_PIN7_INT_ENA 0x0000001f +#define GPIO_PIN7_INT_ENA_M (GPIO_PIN7_INT_ENA_V << GPIO_PIN7_INT_ENA_S) +#define GPIO_PIN7_INT_ENA_V 0x0000001f +#define GPIO_PIN7_INT_ENA_S 13 + +/* GPIO_PIN7_CONFIG : R/W; bitpos: [12:11]; default: 0; + * reserved + */ + +#define GPIO_PIN7_CONFIG 0x00000003 +#define GPIO_PIN7_CONFIG_M (GPIO_PIN7_CONFIG_V << GPIO_PIN7_CONFIG_S) +#define GPIO_PIN7_CONFIG_V 0x00000003 +#define GPIO_PIN7_CONFIG_S 11 + +/* GPIO_PIN7_WAKEUP_ENABLE : R/W; bitpos: [10]; default: 0; + * set this bit to enable GPIO wakeup.(can only wakeup CPU from Light-sleep + * Mode) + */ + +#define GPIO_PIN7_WAKEUP_ENABLE (BIT(10)) +#define GPIO_PIN7_WAKEUP_ENABLE_M (GPIO_PIN7_WAKEUP_ENABLE_V << GPIO_PIN7_WAKEUP_ENABLE_S) +#define GPIO_PIN7_WAKEUP_ENABLE_V 0x00000001 +#define GPIO_PIN7_WAKEUP_ENABLE_S 10 + +/* GPIO_PIN7_INT_TYPE : R/W; bitpos: [9:7]; default: 0; + * set this value to choose interrupt mode. 0:disable GPIO interrupt. + * 1:trigger at posedge. 2:trigger at negedge. 3:trigger at any edge. + * 4:valid at low level. 5:valid at high level + */ + +#define GPIO_PIN7_INT_TYPE 0x00000007 +#define GPIO_PIN7_INT_TYPE_M (GPIO_PIN7_INT_TYPE_V << GPIO_PIN7_INT_TYPE_S) +#define GPIO_PIN7_INT_TYPE_V 0x00000007 +#define GPIO_PIN7_INT_TYPE_S 7 + +/* GPIO_PIN7_SYNC1_BYPASS : R/W; bitpos: [4:3]; default: 0; + * set GPIO input_sync1 signal mode. 0:disable. 1:trigger at negedge. + * 2or3:trigger at posedge. + */ + +#define GPIO_PIN7_SYNC1_BYPASS 0x00000003 +#define GPIO_PIN7_SYNC1_BYPASS_M (GPIO_PIN7_SYNC1_BYPASS_V << GPIO_PIN7_SYNC1_BYPASS_S) +#define GPIO_PIN7_SYNC1_BYPASS_V 0x00000003 +#define GPIO_PIN7_SYNC1_BYPASS_S 3 + +/* GPIO_PIN7_PAD_DRIVER : R/W; bitpos: [2]; default: 0; + * set this bit to select pad driver. 1:open-drain. 0:normal. + */ + +#define GPIO_PIN7_PAD_DRIVER (BIT(2)) +#define GPIO_PIN7_PAD_DRIVER_M (GPIO_PIN7_PAD_DRIVER_V << GPIO_PIN7_PAD_DRIVER_S) +#define GPIO_PIN7_PAD_DRIVER_V 0x00000001 +#define GPIO_PIN7_PAD_DRIVER_S 2 + +/* GPIO_PIN7_SYNC2_BYPASS : R/W; bitpos: [1:0]; default: 0; + * set GPIO input_sync2 signal mode. 0:disable. 1:trigger at negedge. + * 2or3:trigger at posedge. + */ + +#define GPIO_PIN7_SYNC2_BYPASS 0x00000003 +#define GPIO_PIN7_SYNC2_BYPASS_M (GPIO_PIN7_SYNC2_BYPASS_V << GPIO_PIN7_SYNC2_BYPASS_S) +#define GPIO_PIN7_SYNC2_BYPASS_V 0x00000003 +#define GPIO_PIN7_SYNC2_BYPASS_S 0 + +/* GPIO_PIN8_REG register + * GPIO pin configuration register + */ + +#define GPIO_PIN8_REG (DR_REG_GPIO_BASE + 0x94) + +/* GPIO_PIN8_INT_ENA : R/W; bitpos: [17:13]; default: 0; + * set bit 13 to enable CPU interrupt. set bit 14 to enable CPU(not + * shielded) interrupt. + */ + +#define GPIO_PIN8_INT_ENA 0x0000001f +#define GPIO_PIN8_INT_ENA_M (GPIO_PIN8_INT_ENA_V << GPIO_PIN8_INT_ENA_S) +#define GPIO_PIN8_INT_ENA_V 0x0000001f +#define GPIO_PIN8_INT_ENA_S 13 + +/* GPIO_PIN8_CONFIG : R/W; bitpos: [12:11]; default: 0; + * reserved + */ + +#define GPIO_PIN8_CONFIG 0x00000003 +#define GPIO_PIN8_CONFIG_M (GPIO_PIN8_CONFIG_V << GPIO_PIN8_CONFIG_S) +#define GPIO_PIN8_CONFIG_V 0x00000003 +#define GPIO_PIN8_CONFIG_S 11 + +/* GPIO_PIN8_WAKEUP_ENABLE : R/W; bitpos: [10]; default: 0; + * set this bit to enable GPIO wakeup.(can only wakeup CPU from Light-sleep + * Mode) + */ + +#define GPIO_PIN8_WAKEUP_ENABLE (BIT(10)) +#define GPIO_PIN8_WAKEUP_ENABLE_M (GPIO_PIN8_WAKEUP_ENABLE_V << GPIO_PIN8_WAKEUP_ENABLE_S) +#define GPIO_PIN8_WAKEUP_ENABLE_V 0x00000001 +#define GPIO_PIN8_WAKEUP_ENABLE_S 10 + +/* GPIO_PIN8_INT_TYPE : R/W; bitpos: [9:7]; default: 0; + * set this value to choose interrupt mode. 0:disable GPIO interrupt. + * 1:trigger at posedge. 2:trigger at negedge. 3:trigger at any edge. + * 4:valid at low level. 5:valid at high level + */ + +#define GPIO_PIN8_INT_TYPE 0x00000007 +#define GPIO_PIN8_INT_TYPE_M (GPIO_PIN8_INT_TYPE_V << GPIO_PIN8_INT_TYPE_S) +#define GPIO_PIN8_INT_TYPE_V 0x00000007 +#define GPIO_PIN8_INT_TYPE_S 7 + +/* GPIO_PIN8_SYNC1_BYPASS : R/W; bitpos: [4:3]; default: 0; + * set GPIO input_sync1 signal mode. 0:disable. 1:trigger at negedge. + * 2or3:trigger at posedge. + */ + +#define GPIO_PIN8_SYNC1_BYPASS 0x00000003 +#define GPIO_PIN8_SYNC1_BYPASS_M (GPIO_PIN8_SYNC1_BYPASS_V << GPIO_PIN8_SYNC1_BYPASS_S) +#define GPIO_PIN8_SYNC1_BYPASS_V 0x00000003 +#define GPIO_PIN8_SYNC1_BYPASS_S 3 + +/* GPIO_PIN8_PAD_DRIVER : R/W; bitpos: [2]; default: 0; + * set this bit to select pad driver. 1:open-drain. 0:normal. + */ + +#define GPIO_PIN8_PAD_DRIVER (BIT(2)) +#define GPIO_PIN8_PAD_DRIVER_M (GPIO_PIN8_PAD_DRIVER_V << GPIO_PIN8_PAD_DRIVER_S) +#define GPIO_PIN8_PAD_DRIVER_V 0x00000001 +#define GPIO_PIN8_PAD_DRIVER_S 2 + +/* GPIO_PIN8_SYNC2_BYPASS : R/W; bitpos: [1:0]; default: 0; + * set GPIO input_sync2 signal mode. 0:disable. 1:trigger at negedge. + * 2or3:trigger at posedge. + */ + +#define GPIO_PIN8_SYNC2_BYPASS 0x00000003 +#define GPIO_PIN8_SYNC2_BYPASS_M (GPIO_PIN8_SYNC2_BYPASS_V << GPIO_PIN8_SYNC2_BYPASS_S) +#define GPIO_PIN8_SYNC2_BYPASS_V 0x00000003 +#define GPIO_PIN8_SYNC2_BYPASS_S 0 + +/* GPIO_PIN9_REG register + * GPIO pin configuration register + */ + +#define GPIO_PIN9_REG (DR_REG_GPIO_BASE + 0x98) + +/* GPIO_PIN9_INT_ENA : R/W; bitpos: [17:13]; default: 0; + * set bit 13 to enable CPU interrupt. set bit 14 to enable CPU(not + * shielded) interrupt. + */ + +#define GPIO_PIN9_INT_ENA 0x0000001f +#define GPIO_PIN9_INT_ENA_M (GPIO_PIN9_INT_ENA_V << GPIO_PIN9_INT_ENA_S) +#define GPIO_PIN9_INT_ENA_V 0x0000001f +#define GPIO_PIN9_INT_ENA_S 13 + +/* GPIO_PIN9_CONFIG : R/W; bitpos: [12:11]; default: 0; + * reserved + */ + +#define GPIO_PIN9_CONFIG 0x00000003 +#define GPIO_PIN9_CONFIG_M (GPIO_PIN9_CONFIG_V << GPIO_PIN9_CONFIG_S) +#define GPIO_PIN9_CONFIG_V 0x00000003 +#define GPIO_PIN9_CONFIG_S 11 + +/* GPIO_PIN9_WAKEUP_ENABLE : R/W; bitpos: [10]; default: 0; + * set this bit to enable GPIO wakeup.(can only wakeup CPU from Light-sleep + * Mode) + */ + +#define GPIO_PIN9_WAKEUP_ENABLE (BIT(10)) +#define GPIO_PIN9_WAKEUP_ENABLE_M (GPIO_PIN9_WAKEUP_ENABLE_V << GPIO_PIN9_WAKEUP_ENABLE_S) +#define GPIO_PIN9_WAKEUP_ENABLE_V 0x00000001 +#define GPIO_PIN9_WAKEUP_ENABLE_S 10 + +/* GPIO_PIN9_INT_TYPE : R/W; bitpos: [9:7]; default: 0; + * set this value to choose interrupt mode. 0:disable GPIO interrupt. + * 1:trigger at posedge. 2:trigger at negedge. 3:trigger at any edge. + * 4:valid at low level. 5:valid at high level + */ + +#define GPIO_PIN9_INT_TYPE 0x00000007 +#define GPIO_PIN9_INT_TYPE_M (GPIO_PIN9_INT_TYPE_V << GPIO_PIN9_INT_TYPE_S) +#define GPIO_PIN9_INT_TYPE_V 0x00000007 +#define GPIO_PIN9_INT_TYPE_S 7 + +/* GPIO_PIN9_SYNC1_BYPASS : R/W; bitpos: [4:3]; default: 0; + * set GPIO input_sync1 signal mode. 0:disable. 1:trigger at negedge. + * 2or3:trigger at posedge. + */ + +#define GPIO_PIN9_SYNC1_BYPASS 0x00000003 +#define GPIO_PIN9_SYNC1_BYPASS_M (GPIO_PIN9_SYNC1_BYPASS_V << GPIO_PIN9_SYNC1_BYPASS_S) +#define GPIO_PIN9_SYNC1_BYPASS_V 0x00000003 +#define GPIO_PIN9_SYNC1_BYPASS_S 3 + +/* GPIO_PIN9_PAD_DRIVER : R/W; bitpos: [2]; default: 0; + * set this bit to select pad driver. 1:open-drain. 0:normal. + */ + +#define GPIO_PIN9_PAD_DRIVER (BIT(2)) +#define GPIO_PIN9_PAD_DRIVER_M (GPIO_PIN9_PAD_DRIVER_V << GPIO_PIN9_PAD_DRIVER_S) +#define GPIO_PIN9_PAD_DRIVER_V 0x00000001 +#define GPIO_PIN9_PAD_DRIVER_S 2 + +/* GPIO_PIN9_SYNC2_BYPASS : R/W; bitpos: [1:0]; default: 0; + * set GPIO input_sync2 signal mode. 0:disable. 1:trigger at negedge. + * 2or3:trigger at posedge. + */ + +#define GPIO_PIN9_SYNC2_BYPASS 0x00000003 +#define GPIO_PIN9_SYNC2_BYPASS_M (GPIO_PIN9_SYNC2_BYPASS_V << GPIO_PIN9_SYNC2_BYPASS_S) +#define GPIO_PIN9_SYNC2_BYPASS_V 0x00000003 +#define GPIO_PIN9_SYNC2_BYPASS_S 0 + +/* GPIO_PIN10_REG register + * GPIO pin configuration register + */ + +#define GPIO_PIN10_REG (DR_REG_GPIO_BASE + 0x9c) + +/* GPIO_PIN10_INT_ENA : R/W; bitpos: [17:13]; default: 0; + * set bit 13 to enable CPU interrupt. set bit 14 to enable CPU(not + * shielded) interrupt. + */ + +#define GPIO_PIN10_INT_ENA 0x0000001f +#define GPIO_PIN10_INT_ENA_M (GPIO_PIN10_INT_ENA_V << GPIO_PIN10_INT_ENA_S) +#define GPIO_PIN10_INT_ENA_V 0x0000001f +#define GPIO_PIN10_INT_ENA_S 13 + +/* GPIO_PIN10_CONFIG : R/W; bitpos: [12:11]; default: 0; + * reserved + */ + +#define GPIO_PIN10_CONFIG 0x00000003 +#define GPIO_PIN10_CONFIG_M (GPIO_PIN10_CONFIG_V << GPIO_PIN10_CONFIG_S) +#define GPIO_PIN10_CONFIG_V 0x00000003 +#define GPIO_PIN10_CONFIG_S 11 + +/* GPIO_PIN10_WAKEUP_ENABLE : R/W; bitpos: [10]; default: 0; + * set this bit to enable GPIO wakeup.(can only wakeup CPU from Light-sleep + * Mode) + */ + +#define GPIO_PIN10_WAKEUP_ENABLE (BIT(10)) +#define GPIO_PIN10_WAKEUP_ENABLE_M (GPIO_PIN10_WAKEUP_ENABLE_V << GPIO_PIN10_WAKEUP_ENABLE_S) +#define GPIO_PIN10_WAKEUP_ENABLE_V 0x00000001 +#define GPIO_PIN10_WAKEUP_ENABLE_S 10 + +/* GPIO_PIN10_INT_TYPE : R/W; bitpos: [9:7]; default: 0; + * set this value to choose interrupt mode. 0:disable GPIO interrupt. + * 1:trigger at posedge. 2:trigger at negedge. 3:trigger at any edge. + * 4:valid at low level. 5:valid at high level + */ + +#define GPIO_PIN10_INT_TYPE 0x00000007 +#define GPIO_PIN10_INT_TYPE_M (GPIO_PIN10_INT_TYPE_V << GPIO_PIN10_INT_TYPE_S) +#define GPIO_PIN10_INT_TYPE_V 0x00000007 +#define GPIO_PIN10_INT_TYPE_S 7 + +/* GPIO_PIN10_SYNC1_BYPASS : R/W; bitpos: [4:3]; default: 0; + * set GPIO input_sync1 signal mode. 0:disable. 1:trigger at negedge. + * 2or3:trigger at posedge. + */ + +#define GPIO_PIN10_SYNC1_BYPASS 0x00000003 +#define GPIO_PIN10_SYNC1_BYPASS_M (GPIO_PIN10_SYNC1_BYPASS_V << GPIO_PIN10_SYNC1_BYPASS_S) +#define GPIO_PIN10_SYNC1_BYPASS_V 0x00000003 +#define GPIO_PIN10_SYNC1_BYPASS_S 3 + +/* GPIO_PIN10_PAD_DRIVER : R/W; bitpos: [2]; default: 0; + * set this bit to select pad driver. 1:open-drain. 0:normal. + */ + +#define GPIO_PIN10_PAD_DRIVER (BIT(2)) +#define GPIO_PIN10_PAD_DRIVER_M (GPIO_PIN10_PAD_DRIVER_V << GPIO_PIN10_PAD_DRIVER_S) +#define GPIO_PIN10_PAD_DRIVER_V 0x00000001 +#define GPIO_PIN10_PAD_DRIVER_S 2 + +/* GPIO_PIN10_SYNC2_BYPASS : R/W; bitpos: [1:0]; default: 0; + * set GPIO input_sync2 signal mode. 0:disable. 1:trigger at negedge. + * 2or3:trigger at posedge. + */ + +#define GPIO_PIN10_SYNC2_BYPASS 0x00000003 +#define GPIO_PIN10_SYNC2_BYPASS_M (GPIO_PIN10_SYNC2_BYPASS_V << GPIO_PIN10_SYNC2_BYPASS_S) +#define GPIO_PIN10_SYNC2_BYPASS_V 0x00000003 +#define GPIO_PIN10_SYNC2_BYPASS_S 0 + +/* GPIO_PIN11_REG register + * GPIO pin configuration register + */ + +#define GPIO_PIN11_REG (DR_REG_GPIO_BASE + 0xa0) + +/* GPIO_PIN11_INT_ENA : R/W; bitpos: [17:13]; default: 0; + * set bit 13 to enable CPU interrupt. set bit 14 to enable CPU(not + * shielded) interrupt. + */ + +#define GPIO_PIN11_INT_ENA 0x0000001f +#define GPIO_PIN11_INT_ENA_M (GPIO_PIN11_INT_ENA_V << GPIO_PIN11_INT_ENA_S) +#define GPIO_PIN11_INT_ENA_V 0x0000001f +#define GPIO_PIN11_INT_ENA_S 13 + +/* GPIO_PIN11_CONFIG : R/W; bitpos: [12:11]; default: 0; + * reserved + */ + +#define GPIO_PIN11_CONFIG 0x00000003 +#define GPIO_PIN11_CONFIG_M (GPIO_PIN11_CONFIG_V << GPIO_PIN11_CONFIG_S) +#define GPIO_PIN11_CONFIG_V 0x00000003 +#define GPIO_PIN11_CONFIG_S 11 + +/* GPIO_PIN11_WAKEUP_ENABLE : R/W; bitpos: [10]; default: 0; + * set this bit to enable GPIO wakeup.(can only wakeup CPU from Light-sleep + * Mode) + */ + +#define GPIO_PIN11_WAKEUP_ENABLE (BIT(10)) +#define GPIO_PIN11_WAKEUP_ENABLE_M (GPIO_PIN11_WAKEUP_ENABLE_V << GPIO_PIN11_WAKEUP_ENABLE_S) +#define GPIO_PIN11_WAKEUP_ENABLE_V 0x00000001 +#define GPIO_PIN11_WAKEUP_ENABLE_S 10 + +/* GPIO_PIN11_INT_TYPE : R/W; bitpos: [9:7]; default: 0; + * set this value to choose interrupt mode. 0:disable GPIO interrupt. + * 1:trigger at posedge. 2:trigger at negedge. 3:trigger at any edge. + * 4:valid at low level. 5:valid at high level + */ + +#define GPIO_PIN11_INT_TYPE 0x00000007 +#define GPIO_PIN11_INT_TYPE_M (GPIO_PIN11_INT_TYPE_V << GPIO_PIN11_INT_TYPE_S) +#define GPIO_PIN11_INT_TYPE_V 0x00000007 +#define GPIO_PIN11_INT_TYPE_S 7 + +/* GPIO_PIN11_SYNC1_BYPASS : R/W; bitpos: [4:3]; default: 0; + * set GPIO input_sync1 signal mode. 0:disable. 1:trigger at negedge. + * 2or3:trigger at posedge. + */ + +#define GPIO_PIN11_SYNC1_BYPASS 0x00000003 +#define GPIO_PIN11_SYNC1_BYPASS_M (GPIO_PIN11_SYNC1_BYPASS_V << GPIO_PIN11_SYNC1_BYPASS_S) +#define GPIO_PIN11_SYNC1_BYPASS_V 0x00000003 +#define GPIO_PIN11_SYNC1_BYPASS_S 3 + +/* GPIO_PIN11_PAD_DRIVER : R/W; bitpos: [2]; default: 0; + * set this bit to select pad driver. 1:open-drain. 0:normal. + */ + +#define GPIO_PIN11_PAD_DRIVER (BIT(2)) +#define GPIO_PIN11_PAD_DRIVER_M (GPIO_PIN11_PAD_DRIVER_V << GPIO_PIN11_PAD_DRIVER_S) +#define GPIO_PIN11_PAD_DRIVER_V 0x00000001 +#define GPIO_PIN11_PAD_DRIVER_S 2 + +/* GPIO_PIN11_SYNC2_BYPASS : R/W; bitpos: [1:0]; default: 0; + * set GPIO input_sync2 signal mode. 0:disable. 1:trigger at negedge. + * 2or3:trigger at posedge. + */ + +#define GPIO_PIN11_SYNC2_BYPASS 0x00000003 +#define GPIO_PIN11_SYNC2_BYPASS_M (GPIO_PIN11_SYNC2_BYPASS_V << GPIO_PIN11_SYNC2_BYPASS_S) +#define GPIO_PIN11_SYNC2_BYPASS_V 0x00000003 +#define GPIO_PIN11_SYNC2_BYPASS_S 0 + +/* GPIO_PIN12_REG register + * GPIO pin configuration register + */ + +#define GPIO_PIN12_REG (DR_REG_GPIO_BASE + 0xa4) + +/* GPIO_PIN12_INT_ENA : R/W; bitpos: [17:13]; default: 0; + * set bit 13 to enable CPU interrupt. set bit 14 to enable CPU(not + * shielded) interrupt. + */ + +#define GPIO_PIN12_INT_ENA 0x0000001f +#define GPIO_PIN12_INT_ENA_M (GPIO_PIN12_INT_ENA_V << GPIO_PIN12_INT_ENA_S) +#define GPIO_PIN12_INT_ENA_V 0x0000001f +#define GPIO_PIN12_INT_ENA_S 13 + +/* GPIO_PIN12_CONFIG : R/W; bitpos: [12:11]; default: 0; + * reserved + */ + +#define GPIO_PIN12_CONFIG 0x00000003 +#define GPIO_PIN12_CONFIG_M (GPIO_PIN12_CONFIG_V << GPIO_PIN12_CONFIG_S) +#define GPIO_PIN12_CONFIG_V 0x00000003 +#define GPIO_PIN12_CONFIG_S 11 + +/* GPIO_PIN12_WAKEUP_ENABLE : R/W; bitpos: [10]; default: 0; + * set this bit to enable GPIO wakeup.(can only wakeup CPU from Light-sleep + * Mode) + */ + +#define GPIO_PIN12_WAKEUP_ENABLE (BIT(10)) +#define GPIO_PIN12_WAKEUP_ENABLE_M (GPIO_PIN12_WAKEUP_ENABLE_V << GPIO_PIN12_WAKEUP_ENABLE_S) +#define GPIO_PIN12_WAKEUP_ENABLE_V 0x00000001 +#define GPIO_PIN12_WAKEUP_ENABLE_S 10 + +/* GPIO_PIN12_INT_TYPE : R/W; bitpos: [9:7]; default: 0; + * set this value to choose interrupt mode. 0:disable GPIO interrupt. + * 1:trigger at posedge. 2:trigger at negedge. 3:trigger at any edge. + * 4:valid at low level. 5:valid at high level + */ + +#define GPIO_PIN12_INT_TYPE 0x00000007 +#define GPIO_PIN12_INT_TYPE_M (GPIO_PIN12_INT_TYPE_V << GPIO_PIN12_INT_TYPE_S) +#define GPIO_PIN12_INT_TYPE_V 0x00000007 +#define GPIO_PIN12_INT_TYPE_S 7 + +/* GPIO_PIN12_SYNC1_BYPASS : R/W; bitpos: [4:3]; default: 0; + * set GPIO input_sync1 signal mode. 0:disable. 1:trigger at negedge. + * 2or3:trigger at posedge. + */ + +#define GPIO_PIN12_SYNC1_BYPASS 0x00000003 +#define GPIO_PIN12_SYNC1_BYPASS_M (GPIO_PIN12_SYNC1_BYPASS_V << GPIO_PIN12_SYNC1_BYPASS_S) +#define GPIO_PIN12_SYNC1_BYPASS_V 0x00000003 +#define GPIO_PIN12_SYNC1_BYPASS_S 3 + +/* GPIO_PIN12_PAD_DRIVER : R/W; bitpos: [2]; default: 0; + * set this bit to select pad driver. 1:open-drain. 0:normal. + */ + +#define GPIO_PIN12_PAD_DRIVER (BIT(2)) +#define GPIO_PIN12_PAD_DRIVER_M (GPIO_PIN12_PAD_DRIVER_V << GPIO_PIN12_PAD_DRIVER_S) +#define GPIO_PIN12_PAD_DRIVER_V 0x00000001 +#define GPIO_PIN12_PAD_DRIVER_S 2 + +/* GPIO_PIN12_SYNC2_BYPASS : R/W; bitpos: [1:0]; default: 0; + * set GPIO input_sync2 signal mode. 0:disable. 1:trigger at negedge. + * 2or3:trigger at posedge. + */ + +#define GPIO_PIN12_SYNC2_BYPASS 0x00000003 +#define GPIO_PIN12_SYNC2_BYPASS_M (GPIO_PIN12_SYNC2_BYPASS_V << GPIO_PIN12_SYNC2_BYPASS_S) +#define GPIO_PIN12_SYNC2_BYPASS_V 0x00000003 +#define GPIO_PIN12_SYNC2_BYPASS_S 0 + +/* GPIO_PIN13_REG register + * GPIO pin configuration register + */ + +#define GPIO_PIN13_REG (DR_REG_GPIO_BASE + 0xa8) + +/* GPIO_PIN13_INT_ENA : R/W; bitpos: [17:13]; default: 0; + * set bit 13 to enable CPU interrupt. set bit 14 to enable CPU(not + * shielded) interrupt. + */ + +#define GPIO_PIN13_INT_ENA 0x0000001f +#define GPIO_PIN13_INT_ENA_M (GPIO_PIN13_INT_ENA_V << GPIO_PIN13_INT_ENA_S) +#define GPIO_PIN13_INT_ENA_V 0x0000001f +#define GPIO_PIN13_INT_ENA_S 13 + +/* GPIO_PIN13_CONFIG : R/W; bitpos: [12:11]; default: 0; + * reserved + */ + +#define GPIO_PIN13_CONFIG 0x00000003 +#define GPIO_PIN13_CONFIG_M (GPIO_PIN13_CONFIG_V << GPIO_PIN13_CONFIG_S) +#define GPIO_PIN13_CONFIG_V 0x00000003 +#define GPIO_PIN13_CONFIG_S 11 + +/* GPIO_PIN13_WAKEUP_ENABLE : R/W; bitpos: [10]; default: 0; + * set this bit to enable GPIO wakeup.(can only wakeup CPU from Light-sleep + * Mode) + */ + +#define GPIO_PIN13_WAKEUP_ENABLE (BIT(10)) +#define GPIO_PIN13_WAKEUP_ENABLE_M (GPIO_PIN13_WAKEUP_ENABLE_V << GPIO_PIN13_WAKEUP_ENABLE_S) +#define GPIO_PIN13_WAKEUP_ENABLE_V 0x00000001 +#define GPIO_PIN13_WAKEUP_ENABLE_S 10 + +/* GPIO_PIN13_INT_TYPE : R/W; bitpos: [9:7]; default: 0; + * set this value to choose interrupt mode. 0:disable GPIO interrupt. + * 1:trigger at posedge. 2:trigger at negedge. 3:trigger at any edge. + * 4:valid at low level. 5:valid at high level + */ + +#define GPIO_PIN13_INT_TYPE 0x00000007 +#define GPIO_PIN13_INT_TYPE_M (GPIO_PIN13_INT_TYPE_V << GPIO_PIN13_INT_TYPE_S) +#define GPIO_PIN13_INT_TYPE_V 0x00000007 +#define GPIO_PIN13_INT_TYPE_S 7 + +/* GPIO_PIN13_SYNC1_BYPASS : R/W; bitpos: [4:3]; default: 0; + * set GPIO input_sync1 signal mode. 0:disable. 1:trigger at negedge. + * 2or3:trigger at posedge. + */ + +#define GPIO_PIN13_SYNC1_BYPASS 0x00000003 +#define GPIO_PIN13_SYNC1_BYPASS_M (GPIO_PIN13_SYNC1_BYPASS_V << GPIO_PIN13_SYNC1_BYPASS_S) +#define GPIO_PIN13_SYNC1_BYPASS_V 0x00000003 +#define GPIO_PIN13_SYNC1_BYPASS_S 3 + +/* GPIO_PIN13_PAD_DRIVER : R/W; bitpos: [2]; default: 0; + * set this bit to select pad driver. 1:open-drain. 0:normal. + */ + +#define GPIO_PIN13_PAD_DRIVER (BIT(2)) +#define GPIO_PIN13_PAD_DRIVER_M (GPIO_PIN13_PAD_DRIVER_V << GPIO_PIN13_PAD_DRIVER_S) +#define GPIO_PIN13_PAD_DRIVER_V 0x00000001 +#define GPIO_PIN13_PAD_DRIVER_S 2 + +/* GPIO_PIN13_SYNC2_BYPASS : R/W; bitpos: [1:0]; default: 0; + * set GPIO input_sync2 signal mode. 0:disable. 1:trigger at negedge. + * 2or3:trigger at posedge. + */ + +#define GPIO_PIN13_SYNC2_BYPASS 0x00000003 +#define GPIO_PIN13_SYNC2_BYPASS_M (GPIO_PIN13_SYNC2_BYPASS_V << GPIO_PIN13_SYNC2_BYPASS_S) +#define GPIO_PIN13_SYNC2_BYPASS_V 0x00000003 +#define GPIO_PIN13_SYNC2_BYPASS_S 0 + +/* GPIO_PIN14_REG register + * GPIO pin configuration register + */ + +#define GPIO_PIN14_REG (DR_REG_GPIO_BASE + 0xac) + +/* GPIO_PIN14_INT_ENA : R/W; bitpos: [17:13]; default: 0; + * set bit 13 to enable CPU interrupt. set bit 14 to enable CPU(not + * shielded) interrupt. + */ + +#define GPIO_PIN14_INT_ENA 0x0000001f +#define GPIO_PIN14_INT_ENA_M (GPIO_PIN14_INT_ENA_V << GPIO_PIN14_INT_ENA_S) +#define GPIO_PIN14_INT_ENA_V 0x0000001f +#define GPIO_PIN14_INT_ENA_S 13 + +/* GPIO_PIN14_CONFIG : R/W; bitpos: [12:11]; default: 0; + * reserved + */ + +#define GPIO_PIN14_CONFIG 0x00000003 +#define GPIO_PIN14_CONFIG_M (GPIO_PIN14_CONFIG_V << GPIO_PIN14_CONFIG_S) +#define GPIO_PIN14_CONFIG_V 0x00000003 +#define GPIO_PIN14_CONFIG_S 11 + +/* GPIO_PIN14_WAKEUP_ENABLE : R/W; bitpos: [10]; default: 0; + * set this bit to enable GPIO wakeup.(can only wakeup CPU from Light-sleep + * Mode) + */ + +#define GPIO_PIN14_WAKEUP_ENABLE (BIT(10)) +#define GPIO_PIN14_WAKEUP_ENABLE_M (GPIO_PIN14_WAKEUP_ENABLE_V << GPIO_PIN14_WAKEUP_ENABLE_S) +#define GPIO_PIN14_WAKEUP_ENABLE_V 0x00000001 +#define GPIO_PIN14_WAKEUP_ENABLE_S 10 + +/* GPIO_PIN14_INT_TYPE : R/W; bitpos: [9:7]; default: 0; + * set this value to choose interrupt mode. 0:disable GPIO interrupt. + * 1:trigger at posedge. 2:trigger at negedge. 3:trigger at any edge. + * 4:valid at low level. 5:valid at high level + */ + +#define GPIO_PIN14_INT_TYPE 0x00000007 +#define GPIO_PIN14_INT_TYPE_M (GPIO_PIN14_INT_TYPE_V << GPIO_PIN14_INT_TYPE_S) +#define GPIO_PIN14_INT_TYPE_V 0x00000007 +#define GPIO_PIN14_INT_TYPE_S 7 + +/* GPIO_PIN14_SYNC1_BYPASS : R/W; bitpos: [4:3]; default: 0; + * set GPIO input_sync1 signal mode. 0:disable. 1:trigger at negedge. + * 2or3:trigger at posedge. + */ + +#define GPIO_PIN14_SYNC1_BYPASS 0x00000003 +#define GPIO_PIN14_SYNC1_BYPASS_M (GPIO_PIN14_SYNC1_BYPASS_V << GPIO_PIN14_SYNC1_BYPASS_S) +#define GPIO_PIN14_SYNC1_BYPASS_V 0x00000003 +#define GPIO_PIN14_SYNC1_BYPASS_S 3 + +/* GPIO_PIN14_PAD_DRIVER : R/W; bitpos: [2]; default: 0; + * set this bit to select pad driver. 1:open-drain. 0:normal. + */ + +#define GPIO_PIN14_PAD_DRIVER (BIT(2)) +#define GPIO_PIN14_PAD_DRIVER_M (GPIO_PIN14_PAD_DRIVER_V << GPIO_PIN14_PAD_DRIVER_S) +#define GPIO_PIN14_PAD_DRIVER_V 0x00000001 +#define GPIO_PIN14_PAD_DRIVER_S 2 + +/* GPIO_PIN14_SYNC2_BYPASS : R/W; bitpos: [1:0]; default: 0; + * set GPIO input_sync2 signal mode. 0:disable. 1:trigger at negedge. + * 2or3:trigger at posedge. + */ + +#define GPIO_PIN14_SYNC2_BYPASS 0x00000003 +#define GPIO_PIN14_SYNC2_BYPASS_M (GPIO_PIN14_SYNC2_BYPASS_V << GPIO_PIN14_SYNC2_BYPASS_S) +#define GPIO_PIN14_SYNC2_BYPASS_V 0x00000003 +#define GPIO_PIN14_SYNC2_BYPASS_S 0 + +/* GPIO_PIN15_REG register + * GPIO pin configuration register + */ + +#define GPIO_PIN15_REG (DR_REG_GPIO_BASE + 0xb0) + +/* GPIO_PIN15_INT_ENA : R/W; bitpos: [17:13]; default: 0; + * set bit 13 to enable CPU interrupt. set bit 14 to enable CPU(not + * shielded) interrupt. + */ + +#define GPIO_PIN15_INT_ENA 0x0000001f +#define GPIO_PIN15_INT_ENA_M (GPIO_PIN15_INT_ENA_V << GPIO_PIN15_INT_ENA_S) +#define GPIO_PIN15_INT_ENA_V 0x0000001f +#define GPIO_PIN15_INT_ENA_S 13 + +/* GPIO_PIN15_CONFIG : R/W; bitpos: [12:11]; default: 0; + * reserved + */ + +#define GPIO_PIN15_CONFIG 0x00000003 +#define GPIO_PIN15_CONFIG_M (GPIO_PIN15_CONFIG_V << GPIO_PIN15_CONFIG_S) +#define GPIO_PIN15_CONFIG_V 0x00000003 +#define GPIO_PIN15_CONFIG_S 11 + +/* GPIO_PIN15_WAKEUP_ENABLE : R/W; bitpos: [10]; default: 0; + * set this bit to enable GPIO wakeup.(can only wakeup CPU from Light-sleep + * Mode) + */ + +#define GPIO_PIN15_WAKEUP_ENABLE (BIT(10)) +#define GPIO_PIN15_WAKEUP_ENABLE_M (GPIO_PIN15_WAKEUP_ENABLE_V << GPIO_PIN15_WAKEUP_ENABLE_S) +#define GPIO_PIN15_WAKEUP_ENABLE_V 0x00000001 +#define GPIO_PIN15_WAKEUP_ENABLE_S 10 + +/* GPIO_PIN15_INT_TYPE : R/W; bitpos: [9:7]; default: 0; + * set this value to choose interrupt mode. 0:disable GPIO interrupt. + * 1:trigger at posedge. 2:trigger at negedge. 3:trigger at any edge. + * 4:valid at low level. 5:valid at high level + */ + +#define GPIO_PIN15_INT_TYPE 0x00000007 +#define GPIO_PIN15_INT_TYPE_M (GPIO_PIN15_INT_TYPE_V << GPIO_PIN15_INT_TYPE_S) +#define GPIO_PIN15_INT_TYPE_V 0x00000007 +#define GPIO_PIN15_INT_TYPE_S 7 + +/* GPIO_PIN15_SYNC1_BYPASS : R/W; bitpos: [4:3]; default: 0; + * set GPIO input_sync1 signal mode. 0:disable. 1:trigger at negedge. + * 2or3:trigger at posedge. + */ + +#define GPIO_PIN15_SYNC1_BYPASS 0x00000003 +#define GPIO_PIN15_SYNC1_BYPASS_M (GPIO_PIN15_SYNC1_BYPASS_V << GPIO_PIN15_SYNC1_BYPASS_S) +#define GPIO_PIN15_SYNC1_BYPASS_V 0x00000003 +#define GPIO_PIN15_SYNC1_BYPASS_S 3 + +/* GPIO_PIN15_PAD_DRIVER : R/W; bitpos: [2]; default: 0; + * set this bit to select pad driver. 1:open-drain. 0:normal. + */ + +#define GPIO_PIN15_PAD_DRIVER (BIT(2)) +#define GPIO_PIN15_PAD_DRIVER_M (GPIO_PIN15_PAD_DRIVER_V << GPIO_PIN15_PAD_DRIVER_S) +#define GPIO_PIN15_PAD_DRIVER_V 0x00000001 +#define GPIO_PIN15_PAD_DRIVER_S 2 + +/* GPIO_PIN15_SYNC2_BYPASS : R/W; bitpos: [1:0]; default: 0; + * set GPIO input_sync2 signal mode. 0:disable. 1:trigger at negedge. + * 2or3:trigger at posedge. + */ + +#define GPIO_PIN15_SYNC2_BYPASS 0x00000003 +#define GPIO_PIN15_SYNC2_BYPASS_M (GPIO_PIN15_SYNC2_BYPASS_V << GPIO_PIN15_SYNC2_BYPASS_S) +#define GPIO_PIN15_SYNC2_BYPASS_V 0x00000003 +#define GPIO_PIN15_SYNC2_BYPASS_S 0 + +/* GPIO_PIN16_REG register + * GPIO pin configuration register + */ + +#define GPIO_PIN16_REG (DR_REG_GPIO_BASE + 0xb4) + +/* GPIO_PIN16_INT_ENA : R/W; bitpos: [17:13]; default: 0; + * set bit 13 to enable CPU interrupt. set bit 14 to enable CPU(not + * shielded) interrupt. + */ + +#define GPIO_PIN16_INT_ENA 0x0000001f +#define GPIO_PIN16_INT_ENA_M (GPIO_PIN16_INT_ENA_V << GPIO_PIN16_INT_ENA_S) +#define GPIO_PIN16_INT_ENA_V 0x0000001f +#define GPIO_PIN16_INT_ENA_S 13 + +/* GPIO_PIN16_CONFIG : R/W; bitpos: [12:11]; default: 0; + * reserved + */ + +#define GPIO_PIN16_CONFIG 0x00000003 +#define GPIO_PIN16_CONFIG_M (GPIO_PIN16_CONFIG_V << GPIO_PIN16_CONFIG_S) +#define GPIO_PIN16_CONFIG_V 0x00000003 +#define GPIO_PIN16_CONFIG_S 11 + +/* GPIO_PIN16_WAKEUP_ENABLE : R/W; bitpos: [10]; default: 0; + * set this bit to enable GPIO wakeup.(can only wakeup CPU from Light-sleep + * Mode) + */ + +#define GPIO_PIN16_WAKEUP_ENABLE (BIT(10)) +#define GPIO_PIN16_WAKEUP_ENABLE_M (GPIO_PIN16_WAKEUP_ENABLE_V << GPIO_PIN16_WAKEUP_ENABLE_S) +#define GPIO_PIN16_WAKEUP_ENABLE_V 0x00000001 +#define GPIO_PIN16_WAKEUP_ENABLE_S 10 + +/* GPIO_PIN16_INT_TYPE : R/W; bitpos: [9:7]; default: 0; + * set this value to choose interrupt mode. 0:disable GPIO interrupt. + * 1:trigger at posedge. 2:trigger at negedge. 3:trigger at any edge. + * 4:valid at low level. 5:valid at high level + */ + +#define GPIO_PIN16_INT_TYPE 0x00000007 +#define GPIO_PIN16_INT_TYPE_M (GPIO_PIN16_INT_TYPE_V << GPIO_PIN16_INT_TYPE_S) +#define GPIO_PIN16_INT_TYPE_V 0x00000007 +#define GPIO_PIN16_INT_TYPE_S 7 + +/* GPIO_PIN16_SYNC1_BYPASS : R/W; bitpos: [4:3]; default: 0; + * set GPIO input_sync1 signal mode. 0:disable. 1:trigger at negedge. + * 2or3:trigger at posedge. + */ + +#define GPIO_PIN16_SYNC1_BYPASS 0x00000003 +#define GPIO_PIN16_SYNC1_BYPASS_M (GPIO_PIN16_SYNC1_BYPASS_V << GPIO_PIN16_SYNC1_BYPASS_S) +#define GPIO_PIN16_SYNC1_BYPASS_V 0x00000003 +#define GPIO_PIN16_SYNC1_BYPASS_S 3 + +/* GPIO_PIN16_PAD_DRIVER : R/W; bitpos: [2]; default: 0; + * set this bit to select pad driver. 1:open-drain. 0:normal. + */ + +#define GPIO_PIN16_PAD_DRIVER (BIT(2)) +#define GPIO_PIN16_PAD_DRIVER_M (GPIO_PIN16_PAD_DRIVER_V << GPIO_PIN16_PAD_DRIVER_S) +#define GPIO_PIN16_PAD_DRIVER_V 0x00000001 +#define GPIO_PIN16_PAD_DRIVER_S 2 + +/* GPIO_PIN16_SYNC2_BYPASS : R/W; bitpos: [1:0]; default: 0; + * set GPIO input_sync2 signal mode. 0:disable. 1:trigger at negedge. + * 2or3:trigger at posedge. + */ + +#define GPIO_PIN16_SYNC2_BYPASS 0x00000003 +#define GPIO_PIN16_SYNC2_BYPASS_M (GPIO_PIN16_SYNC2_BYPASS_V << GPIO_PIN16_SYNC2_BYPASS_S) +#define GPIO_PIN16_SYNC2_BYPASS_V 0x00000003 +#define GPIO_PIN16_SYNC2_BYPASS_S 0 + +/* GPIO_PIN17_REG register + * GPIO pin configuration register + */ + +#define GPIO_PIN17_REG (DR_REG_GPIO_BASE + 0xb8) + +/* GPIO_PIN17_INT_ENA : R/W; bitpos: [17:13]; default: 0; + * set bit 13 to enable CPU interrupt. set bit 14 to enable CPU(not + * shielded) interrupt. + */ + +#define GPIO_PIN17_INT_ENA 0x0000001f +#define GPIO_PIN17_INT_ENA_M (GPIO_PIN17_INT_ENA_V << GPIO_PIN17_INT_ENA_S) +#define GPIO_PIN17_INT_ENA_V 0x0000001f +#define GPIO_PIN17_INT_ENA_S 13 + +/* GPIO_PIN17_CONFIG : R/W; bitpos: [12:11]; default: 0; + * reserved + */ + +#define GPIO_PIN17_CONFIG 0x00000003 +#define GPIO_PIN17_CONFIG_M (GPIO_PIN17_CONFIG_V << GPIO_PIN17_CONFIG_S) +#define GPIO_PIN17_CONFIG_V 0x00000003 +#define GPIO_PIN17_CONFIG_S 11 + +/* GPIO_PIN17_WAKEUP_ENABLE : R/W; bitpos: [10]; default: 0; + * set this bit to enable GPIO wakeup.(can only wakeup CPU from Light-sleep + * Mode) + */ + +#define GPIO_PIN17_WAKEUP_ENABLE (BIT(10)) +#define GPIO_PIN17_WAKEUP_ENABLE_M (GPIO_PIN17_WAKEUP_ENABLE_V << GPIO_PIN17_WAKEUP_ENABLE_S) +#define GPIO_PIN17_WAKEUP_ENABLE_V 0x00000001 +#define GPIO_PIN17_WAKEUP_ENABLE_S 10 + +/* GPIO_PIN17_INT_TYPE : R/W; bitpos: [9:7]; default: 0; + * set this value to choose interrupt mode. 0:disable GPIO interrupt. + * 1:trigger at posedge. 2:trigger at negedge. 3:trigger at any edge. + * 4:valid at low level. 5:valid at high level + */ + +#define GPIO_PIN17_INT_TYPE 0x00000007 +#define GPIO_PIN17_INT_TYPE_M (GPIO_PIN17_INT_TYPE_V << GPIO_PIN17_INT_TYPE_S) +#define GPIO_PIN17_INT_TYPE_V 0x00000007 +#define GPIO_PIN17_INT_TYPE_S 7 + +/* GPIO_PIN17_SYNC1_BYPASS : R/W; bitpos: [4:3]; default: 0; + * set GPIO input_sync1 signal mode. 0:disable. 1:trigger at negedge. + * 2or3:trigger at posedge. + */ + +#define GPIO_PIN17_SYNC1_BYPASS 0x00000003 +#define GPIO_PIN17_SYNC1_BYPASS_M (GPIO_PIN17_SYNC1_BYPASS_V << GPIO_PIN17_SYNC1_BYPASS_S) +#define GPIO_PIN17_SYNC1_BYPASS_V 0x00000003 +#define GPIO_PIN17_SYNC1_BYPASS_S 3 + +/* GPIO_PIN17_PAD_DRIVER : R/W; bitpos: [2]; default: 0; + * set this bit to select pad driver. 1:open-drain. 0:normal. + */ + +#define GPIO_PIN17_PAD_DRIVER (BIT(2)) +#define GPIO_PIN17_PAD_DRIVER_M (GPIO_PIN17_PAD_DRIVER_V << GPIO_PIN17_PAD_DRIVER_S) +#define GPIO_PIN17_PAD_DRIVER_V 0x00000001 +#define GPIO_PIN17_PAD_DRIVER_S 2 + +/* GPIO_PIN17_SYNC2_BYPASS : R/W; bitpos: [1:0]; default: 0; + * set GPIO input_sync2 signal mode. 0:disable. 1:trigger at negedge. + * 2or3:trigger at posedge. + */ + +#define GPIO_PIN17_SYNC2_BYPASS 0x00000003 +#define GPIO_PIN17_SYNC2_BYPASS_M (GPIO_PIN17_SYNC2_BYPASS_V << GPIO_PIN17_SYNC2_BYPASS_S) +#define GPIO_PIN17_SYNC2_BYPASS_V 0x00000003 +#define GPIO_PIN17_SYNC2_BYPASS_S 0 + +/* GPIO_PIN18_REG register + * GPIO pin configuration register + */ + +#define GPIO_PIN18_REG (DR_REG_GPIO_BASE + 0xbc) + +/* GPIO_PIN18_INT_ENA : R/W; bitpos: [17:13]; default: 0; + * set bit 13 to enable CPU interrupt. set bit 14 to enable CPU(not + * shielded) interrupt. + */ + +#define GPIO_PIN18_INT_ENA 0x0000001f +#define GPIO_PIN18_INT_ENA_M (GPIO_PIN18_INT_ENA_V << GPIO_PIN18_INT_ENA_S) +#define GPIO_PIN18_INT_ENA_V 0x0000001f +#define GPIO_PIN18_INT_ENA_S 13 + +/* GPIO_PIN18_CONFIG : R/W; bitpos: [12:11]; default: 0; + * reserved + */ + +#define GPIO_PIN18_CONFIG 0x00000003 +#define GPIO_PIN18_CONFIG_M (GPIO_PIN18_CONFIG_V << GPIO_PIN18_CONFIG_S) +#define GPIO_PIN18_CONFIG_V 0x00000003 +#define GPIO_PIN18_CONFIG_S 11 + +/* GPIO_PIN18_WAKEUP_ENABLE : R/W; bitpos: [10]; default: 0; + * set this bit to enable GPIO wakeup.(can only wakeup CPU from Light-sleep + * Mode) + */ + +#define GPIO_PIN18_WAKEUP_ENABLE (BIT(10)) +#define GPIO_PIN18_WAKEUP_ENABLE_M (GPIO_PIN18_WAKEUP_ENABLE_V << GPIO_PIN18_WAKEUP_ENABLE_S) +#define GPIO_PIN18_WAKEUP_ENABLE_V 0x00000001 +#define GPIO_PIN18_WAKEUP_ENABLE_S 10 + +/* GPIO_PIN18_INT_TYPE : R/W; bitpos: [9:7]; default: 0; + * set this value to choose interrupt mode. 0:disable GPIO interrupt. + * 1:trigger at posedge. 2:trigger at negedge. 3:trigger at any edge. + * 4:valid at low level. 5:valid at high level + */ + +#define GPIO_PIN18_INT_TYPE 0x00000007 +#define GPIO_PIN18_INT_TYPE_M (GPIO_PIN18_INT_TYPE_V << GPIO_PIN18_INT_TYPE_S) +#define GPIO_PIN18_INT_TYPE_V 0x00000007 +#define GPIO_PIN18_INT_TYPE_S 7 + +/* GPIO_PIN18_SYNC1_BYPASS : R/W; bitpos: [4:3]; default: 0; + * set GPIO input_sync1 signal mode. 0:disable. 1:trigger at negedge. + * 2or3:trigger at posedge. + */ + +#define GPIO_PIN18_SYNC1_BYPASS 0x00000003 +#define GPIO_PIN18_SYNC1_BYPASS_M (GPIO_PIN18_SYNC1_BYPASS_V << GPIO_PIN18_SYNC1_BYPASS_S) +#define GPIO_PIN18_SYNC1_BYPASS_V 0x00000003 +#define GPIO_PIN18_SYNC1_BYPASS_S 3 + +/* GPIO_PIN18_PAD_DRIVER : R/W; bitpos: [2]; default: 0; + * set this bit to select pad driver. 1:open-drain. 0:normal. + */ + +#define GPIO_PIN18_PAD_DRIVER (BIT(2)) +#define GPIO_PIN18_PAD_DRIVER_M (GPIO_PIN18_PAD_DRIVER_V << GPIO_PIN18_PAD_DRIVER_S) +#define GPIO_PIN18_PAD_DRIVER_V 0x00000001 +#define GPIO_PIN18_PAD_DRIVER_S 2 + +/* GPIO_PIN18_SYNC2_BYPASS : R/W; bitpos: [1:0]; default: 0; + * set GPIO input_sync2 signal mode. 0:disable. 1:trigger at negedge. + * 2or3:trigger at posedge. + */ + +#define GPIO_PIN18_SYNC2_BYPASS 0x00000003 +#define GPIO_PIN18_SYNC2_BYPASS_M (GPIO_PIN18_SYNC2_BYPASS_V << GPIO_PIN18_SYNC2_BYPASS_S) +#define GPIO_PIN18_SYNC2_BYPASS_V 0x00000003 +#define GPIO_PIN18_SYNC2_BYPASS_S 0 + +/* GPIO_PIN19_REG register + * GPIO pin configuration register + */ + +#define GPIO_PIN19_REG (DR_REG_GPIO_BASE + 0xc0) + +/* GPIO_PIN19_INT_ENA : R/W; bitpos: [17:13]; default: 0; + * set bit 13 to enable CPU interrupt. set bit 14 to enable CPU(not + * shielded) interrupt. + */ + +#define GPIO_PIN19_INT_ENA 0x0000001f +#define GPIO_PIN19_INT_ENA_M (GPIO_PIN19_INT_ENA_V << GPIO_PIN19_INT_ENA_S) +#define GPIO_PIN19_INT_ENA_V 0x0000001f +#define GPIO_PIN19_INT_ENA_S 13 + +/* GPIO_PIN19_CONFIG : R/W; bitpos: [12:11]; default: 0; + * reserved + */ + +#define GPIO_PIN19_CONFIG 0x00000003 +#define GPIO_PIN19_CONFIG_M (GPIO_PIN19_CONFIG_V << GPIO_PIN19_CONFIG_S) +#define GPIO_PIN19_CONFIG_V 0x00000003 +#define GPIO_PIN19_CONFIG_S 11 + +/* GPIO_PIN19_WAKEUP_ENABLE : R/W; bitpos: [10]; default: 0; + * set this bit to enable GPIO wakeup.(can only wakeup CPU from Light-sleep + * Mode) + */ + +#define GPIO_PIN19_WAKEUP_ENABLE (BIT(10)) +#define GPIO_PIN19_WAKEUP_ENABLE_M (GPIO_PIN19_WAKEUP_ENABLE_V << GPIO_PIN19_WAKEUP_ENABLE_S) +#define GPIO_PIN19_WAKEUP_ENABLE_V 0x00000001 +#define GPIO_PIN19_WAKEUP_ENABLE_S 10 + +/* GPIO_PIN19_INT_TYPE : R/W; bitpos: [9:7]; default: 0; + * set this value to choose interrupt mode. 0:disable GPIO interrupt. + * 1:trigger at posedge. 2:trigger at negedge. 3:trigger at any edge. + * 4:valid at low level. 5:valid at high level + */ + +#define GPIO_PIN19_INT_TYPE 0x00000007 +#define GPIO_PIN19_INT_TYPE_M (GPIO_PIN19_INT_TYPE_V << GPIO_PIN19_INT_TYPE_S) +#define GPIO_PIN19_INT_TYPE_V 0x00000007 +#define GPIO_PIN19_INT_TYPE_S 7 + +/* GPIO_PIN19_SYNC1_BYPASS : R/W; bitpos: [4:3]; default: 0; + * set GPIO input_sync1 signal mode. 0:disable. 1:trigger at negedge. + * 2or3:trigger at posedge. + */ + +#define GPIO_PIN19_SYNC1_BYPASS 0x00000003 +#define GPIO_PIN19_SYNC1_BYPASS_M (GPIO_PIN19_SYNC1_BYPASS_V << GPIO_PIN19_SYNC1_BYPASS_S) +#define GPIO_PIN19_SYNC1_BYPASS_V 0x00000003 +#define GPIO_PIN19_SYNC1_BYPASS_S 3 + +/* GPIO_PIN19_PAD_DRIVER : R/W; bitpos: [2]; default: 0; + * set this bit to select pad driver. 1:open-drain. 0:normal. + */ + +#define GPIO_PIN19_PAD_DRIVER (BIT(2)) +#define GPIO_PIN19_PAD_DRIVER_M (GPIO_PIN19_PAD_DRIVER_V << GPIO_PIN19_PAD_DRIVER_S) +#define GPIO_PIN19_PAD_DRIVER_V 0x00000001 +#define GPIO_PIN19_PAD_DRIVER_S 2 + +/* GPIO_PIN19_SYNC2_BYPASS : R/W; bitpos: [1:0]; default: 0; + * set GPIO input_sync2 signal mode. 0:disable. 1:trigger at negedge. + * 2or3:trigger at posedge. + */ + +#define GPIO_PIN19_SYNC2_BYPASS 0x00000003 +#define GPIO_PIN19_SYNC2_BYPASS_M (GPIO_PIN19_SYNC2_BYPASS_V << GPIO_PIN19_SYNC2_BYPASS_S) +#define GPIO_PIN19_SYNC2_BYPASS_V 0x00000003 +#define GPIO_PIN19_SYNC2_BYPASS_S 0 + +/* GPIO_PIN20_REG register + * GPIO pin configuration register + */ + +#define GPIO_PIN20_REG (DR_REG_GPIO_BASE + 0xc4) + +/* GPIO_PIN20_INT_ENA : R/W; bitpos: [17:13]; default: 0; + * set bit 13 to enable CPU interrupt. set bit 14 to enable CPU(not + * shielded) interrupt. + */ + +#define GPIO_PIN20_INT_ENA 0x0000001f +#define GPIO_PIN20_INT_ENA_M (GPIO_PIN20_INT_ENA_V << GPIO_PIN20_INT_ENA_S) +#define GPIO_PIN20_INT_ENA_V 0x0000001f +#define GPIO_PIN20_INT_ENA_S 13 + +/* GPIO_PIN20_CONFIG : R/W; bitpos: [12:11]; default: 0; + * reserved + */ + +#define GPIO_PIN20_CONFIG 0x00000003 +#define GPIO_PIN20_CONFIG_M (GPIO_PIN20_CONFIG_V << GPIO_PIN20_CONFIG_S) +#define GPIO_PIN20_CONFIG_V 0x00000003 +#define GPIO_PIN20_CONFIG_S 11 + +/* GPIO_PIN20_WAKEUP_ENABLE : R/W; bitpos: [10]; default: 0; + * set this bit to enable GPIO wakeup.(can only wakeup CPU from Light-sleep + * Mode) + */ + +#define GPIO_PIN20_WAKEUP_ENABLE (BIT(10)) +#define GPIO_PIN20_WAKEUP_ENABLE_M (GPIO_PIN20_WAKEUP_ENABLE_V << GPIO_PIN20_WAKEUP_ENABLE_S) +#define GPIO_PIN20_WAKEUP_ENABLE_V 0x00000001 +#define GPIO_PIN20_WAKEUP_ENABLE_S 10 + +/* GPIO_PIN20_INT_TYPE : R/W; bitpos: [9:7]; default: 0; + * set this value to choose interrupt mode. 0:disable GPIO interrupt. + * 1:trigger at posedge. 2:trigger at negedge. 3:trigger at any edge. + * 4:valid at low level. 5:valid at high level + */ + +#define GPIO_PIN20_INT_TYPE 0x00000007 +#define GPIO_PIN20_INT_TYPE_M (GPIO_PIN20_INT_TYPE_V << GPIO_PIN20_INT_TYPE_S) +#define GPIO_PIN20_INT_TYPE_V 0x00000007 +#define GPIO_PIN20_INT_TYPE_S 7 + +/* GPIO_PIN20_SYNC1_BYPASS : R/W; bitpos: [4:3]; default: 0; + * set GPIO input_sync1 signal mode. 0:disable. 1:trigger at negedge. + * 2or3:trigger at posedge. + */ + +#define GPIO_PIN20_SYNC1_BYPASS 0x00000003 +#define GPIO_PIN20_SYNC1_BYPASS_M (GPIO_PIN20_SYNC1_BYPASS_V << GPIO_PIN20_SYNC1_BYPASS_S) +#define GPIO_PIN20_SYNC1_BYPASS_V 0x00000003 +#define GPIO_PIN20_SYNC1_BYPASS_S 3 + +/* GPIO_PIN20_PAD_DRIVER : R/W; bitpos: [2]; default: 0; + * set this bit to select pad driver. 1:open-drain. 0:normal. + */ + +#define GPIO_PIN20_PAD_DRIVER (BIT(2)) +#define GPIO_PIN20_PAD_DRIVER_M (GPIO_PIN20_PAD_DRIVER_V << GPIO_PIN20_PAD_DRIVER_S) +#define GPIO_PIN20_PAD_DRIVER_V 0x00000001 +#define GPIO_PIN20_PAD_DRIVER_S 2 + +/* GPIO_PIN20_SYNC2_BYPASS : R/W; bitpos: [1:0]; default: 0; + * set GPIO input_sync2 signal mode. 0:disable. 1:trigger at negedge. + * 2or3:trigger at posedge. + */ + +#define GPIO_PIN20_SYNC2_BYPASS 0x00000003 +#define GPIO_PIN20_SYNC2_BYPASS_M (GPIO_PIN20_SYNC2_BYPASS_V << GPIO_PIN20_SYNC2_BYPASS_S) +#define GPIO_PIN20_SYNC2_BYPASS_V 0x00000003 +#define GPIO_PIN20_SYNC2_BYPASS_S 0 + +/* GPIO_PIN21_REG register + * GPIO pin configuration register + */ + +#define GPIO_PIN21_REG (DR_REG_GPIO_BASE + 0xc8) + +/* GPIO_PIN21_INT_ENA : R/W; bitpos: [17:13]; default: 0; + * set bit 13 to enable CPU interrupt. set bit 14 to enable CPU(not + * shielded) interrupt. + */ + +#define GPIO_PIN21_INT_ENA 0x0000001f +#define GPIO_PIN21_INT_ENA_M (GPIO_PIN21_INT_ENA_V << GPIO_PIN21_INT_ENA_S) +#define GPIO_PIN21_INT_ENA_V 0x0000001f +#define GPIO_PIN21_INT_ENA_S 13 + +/* GPIO_PIN21_CONFIG : R/W; bitpos: [12:11]; default: 0; + * reserved + */ + +#define GPIO_PIN21_CONFIG 0x00000003 +#define GPIO_PIN21_CONFIG_M (GPIO_PIN21_CONFIG_V << GPIO_PIN21_CONFIG_S) +#define GPIO_PIN21_CONFIG_V 0x00000003 +#define GPIO_PIN21_CONFIG_S 11 + +/* GPIO_PIN21_WAKEUP_ENABLE : R/W; bitpos: [10]; default: 0; + * set this bit to enable GPIO wakeup.(can only wakeup CPU from Light-sleep + * Mode) + */ + +#define GPIO_PIN21_WAKEUP_ENABLE (BIT(10)) +#define GPIO_PIN21_WAKEUP_ENABLE_M (GPIO_PIN21_WAKEUP_ENABLE_V << GPIO_PIN21_WAKEUP_ENABLE_S) +#define GPIO_PIN21_WAKEUP_ENABLE_V 0x00000001 +#define GPIO_PIN21_WAKEUP_ENABLE_S 10 + +/* GPIO_PIN21_INT_TYPE : R/W; bitpos: [9:7]; default: 0; + * set this value to choose interrupt mode. 0:disable GPIO interrupt. + * 1:trigger at posedge. 2:trigger at negedge. 3:trigger at any edge. + * 4:valid at low level. 5:valid at high level + */ + +#define GPIO_PIN21_INT_TYPE 0x00000007 +#define GPIO_PIN21_INT_TYPE_M (GPIO_PIN21_INT_TYPE_V << GPIO_PIN21_INT_TYPE_S) +#define GPIO_PIN21_INT_TYPE_V 0x00000007 +#define GPIO_PIN21_INT_TYPE_S 7 + +/* GPIO_PIN21_SYNC1_BYPASS : R/W; bitpos: [4:3]; default: 0; + * set GPIO input_sync1 signal mode. 0:disable. 1:trigger at negedge. + * 2or3:trigger at posedge. + */ + +#define GPIO_PIN21_SYNC1_BYPASS 0x00000003 +#define GPIO_PIN21_SYNC1_BYPASS_M (GPIO_PIN21_SYNC1_BYPASS_V << GPIO_PIN21_SYNC1_BYPASS_S) +#define GPIO_PIN21_SYNC1_BYPASS_V 0x00000003 +#define GPIO_PIN21_SYNC1_BYPASS_S 3 + +/* GPIO_PIN21_PAD_DRIVER : R/W; bitpos: [2]; default: 0; + * set this bit to select pad driver. 1:open-drain. 0:normal. + */ + +#define GPIO_PIN21_PAD_DRIVER (BIT(2)) +#define GPIO_PIN21_PAD_DRIVER_M (GPIO_PIN21_PAD_DRIVER_V << GPIO_PIN21_PAD_DRIVER_S) +#define GPIO_PIN21_PAD_DRIVER_V 0x00000001 +#define GPIO_PIN21_PAD_DRIVER_S 2 + +/* GPIO_PIN21_SYNC2_BYPASS : R/W; bitpos: [1:0]; default: 0; + * set GPIO input_sync2 signal mode. 0:disable. 1:trigger at negedge. + * 2or3:trigger at posedge. + */ + +#define GPIO_PIN21_SYNC2_BYPASS 0x00000003 +#define GPIO_PIN21_SYNC2_BYPASS_M (GPIO_PIN21_SYNC2_BYPASS_V << GPIO_PIN21_SYNC2_BYPASS_S) +#define GPIO_PIN21_SYNC2_BYPASS_V 0x00000003 +#define GPIO_PIN21_SYNC2_BYPASS_S 0 + +/* GPIO_PIN22_REG register + * GPIO pin configuration register + */ + +#define GPIO_PIN22_REG (DR_REG_GPIO_BASE + 0xcc) + +/* GPIO_PIN22_INT_ENA : R/W; bitpos: [17:13]; default: 0; + * set bit 13 to enable CPU interrupt. set bit 14 to enable CPU(not + * shielded) interrupt. + */ + +#define GPIO_PIN22_INT_ENA 0x0000001f +#define GPIO_PIN22_INT_ENA_M (GPIO_PIN22_INT_ENA_V << GPIO_PIN22_INT_ENA_S) +#define GPIO_PIN22_INT_ENA_V 0x0000001f +#define GPIO_PIN22_INT_ENA_S 13 + +/* GPIO_PIN22_CONFIG : R/W; bitpos: [12:11]; default: 0; + * reserved + */ + +#define GPIO_PIN22_CONFIG 0x00000003 +#define GPIO_PIN22_CONFIG_M (GPIO_PIN22_CONFIG_V << GPIO_PIN22_CONFIG_S) +#define GPIO_PIN22_CONFIG_V 0x00000003 +#define GPIO_PIN22_CONFIG_S 11 + +/* GPIO_PIN22_WAKEUP_ENABLE : R/W; bitpos: [10]; default: 0; + * set this bit to enable GPIO wakeup.(can only wakeup CPU from Light-sleep + * Mode) + */ + +#define GPIO_PIN22_WAKEUP_ENABLE (BIT(10)) +#define GPIO_PIN22_WAKEUP_ENABLE_M (GPIO_PIN22_WAKEUP_ENABLE_V << GPIO_PIN22_WAKEUP_ENABLE_S) +#define GPIO_PIN22_WAKEUP_ENABLE_V 0x00000001 +#define GPIO_PIN22_WAKEUP_ENABLE_S 10 + +/* GPIO_PIN22_INT_TYPE : R/W; bitpos: [9:7]; default: 0; + * set this value to choose interrupt mode. 0:disable GPIO interrupt. + * 1:trigger at posedge. 2:trigger at negedge. 3:trigger at any edge. + * 4:valid at low level. 5:valid at high level + */ + +#define GPIO_PIN22_INT_TYPE 0x00000007 +#define GPIO_PIN22_INT_TYPE_M (GPIO_PIN22_INT_TYPE_V << GPIO_PIN22_INT_TYPE_S) +#define GPIO_PIN22_INT_TYPE_V 0x00000007 +#define GPIO_PIN22_INT_TYPE_S 7 + +/* GPIO_PIN22_SYNC1_BYPASS : R/W; bitpos: [4:3]; default: 0; + * set GPIO input_sync1 signal mode. 0:disable. 1:trigger at negedge. + * 2or3:trigger at posedge. + */ + +#define GPIO_PIN22_SYNC1_BYPASS 0x00000003 +#define GPIO_PIN22_SYNC1_BYPASS_M (GPIO_PIN22_SYNC1_BYPASS_V << GPIO_PIN22_SYNC1_BYPASS_S) +#define GPIO_PIN22_SYNC1_BYPASS_V 0x00000003 +#define GPIO_PIN22_SYNC1_BYPASS_S 3 + +/* GPIO_PIN22_PAD_DRIVER : R/W; bitpos: [2]; default: 0; + * set this bit to select pad driver. 1:open-drain. 0:normal. + */ + +#define GPIO_PIN22_PAD_DRIVER (BIT(2)) +#define GPIO_PIN22_PAD_DRIVER_M (GPIO_PIN22_PAD_DRIVER_V << GPIO_PIN22_PAD_DRIVER_S) +#define GPIO_PIN22_PAD_DRIVER_V 0x00000001 +#define GPIO_PIN22_PAD_DRIVER_S 2 + +/* GPIO_PIN22_SYNC2_BYPASS : R/W; bitpos: [1:0]; default: 0; + * set GPIO input_sync2 signal mode. 0:disable. 1:trigger at negedge. + * 2or3:trigger at posedge. + */ + +#define GPIO_PIN22_SYNC2_BYPASS 0x00000003 +#define GPIO_PIN22_SYNC2_BYPASS_M (GPIO_PIN22_SYNC2_BYPASS_V << GPIO_PIN22_SYNC2_BYPASS_S) +#define GPIO_PIN22_SYNC2_BYPASS_V 0x00000003 +#define GPIO_PIN22_SYNC2_BYPASS_S 0 + +/* GPIO_PIN23_REG register + * GPIO pin configuration register + */ + +#define GPIO_PIN23_REG (DR_REG_GPIO_BASE + 0xd0) + +/* GPIO_PIN23_INT_ENA : R/W; bitpos: [17:13]; default: 0; + * set bit 13 to enable CPU interrupt. set bit 14 to enable CPU(not + * shielded) interrupt. + */ + +#define GPIO_PIN23_INT_ENA 0x0000001f +#define GPIO_PIN23_INT_ENA_M (GPIO_PIN23_INT_ENA_V << GPIO_PIN23_INT_ENA_S) +#define GPIO_PIN23_INT_ENA_V 0x0000001f +#define GPIO_PIN23_INT_ENA_S 13 + +/* GPIO_PIN23_CONFIG : R/W; bitpos: [12:11]; default: 0; + * reserved + */ + +#define GPIO_PIN23_CONFIG 0x00000003 +#define GPIO_PIN23_CONFIG_M (GPIO_PIN23_CONFIG_V << GPIO_PIN23_CONFIG_S) +#define GPIO_PIN23_CONFIG_V 0x00000003 +#define GPIO_PIN23_CONFIG_S 11 + +/* GPIO_PIN23_WAKEUP_ENABLE : R/W; bitpos: [10]; default: 0; + * set this bit to enable GPIO wakeup.(can only wakeup CPU from Light-sleep + * Mode) + */ + +#define GPIO_PIN23_WAKEUP_ENABLE (BIT(10)) +#define GPIO_PIN23_WAKEUP_ENABLE_M (GPIO_PIN23_WAKEUP_ENABLE_V << GPIO_PIN23_WAKEUP_ENABLE_S) +#define GPIO_PIN23_WAKEUP_ENABLE_V 0x00000001 +#define GPIO_PIN23_WAKEUP_ENABLE_S 10 + +/* GPIO_PIN23_INT_TYPE : R/W; bitpos: [9:7]; default: 0; + * set this value to choose interrupt mode. 0:disable GPIO interrupt. + * 1:trigger at posedge. 2:trigger at negedge. 3:trigger at any edge. + * 4:valid at low level. 5:valid at high level + */ + +#define GPIO_PIN23_INT_TYPE 0x00000007 +#define GPIO_PIN23_INT_TYPE_M (GPIO_PIN23_INT_TYPE_V << GPIO_PIN23_INT_TYPE_S) +#define GPIO_PIN23_INT_TYPE_V 0x00000007 +#define GPIO_PIN23_INT_TYPE_S 7 + +/* GPIO_PIN23_SYNC1_BYPASS : R/W; bitpos: [4:3]; default: 0; + * set GPIO input_sync1 signal mode. 0:disable. 1:trigger at negedge. + * 2or3:trigger at posedge. + */ + +#define GPIO_PIN23_SYNC1_BYPASS 0x00000003 +#define GPIO_PIN23_SYNC1_BYPASS_M (GPIO_PIN23_SYNC1_BYPASS_V << GPIO_PIN23_SYNC1_BYPASS_S) +#define GPIO_PIN23_SYNC1_BYPASS_V 0x00000003 +#define GPIO_PIN23_SYNC1_BYPASS_S 3 + +/* GPIO_PIN23_PAD_DRIVER : R/W; bitpos: [2]; default: 0; + * set this bit to select pad driver. 1:open-drain. 0:normal. + */ + +#define GPIO_PIN23_PAD_DRIVER (BIT(2)) +#define GPIO_PIN23_PAD_DRIVER_M (GPIO_PIN23_PAD_DRIVER_V << GPIO_PIN23_PAD_DRIVER_S) +#define GPIO_PIN23_PAD_DRIVER_V 0x00000001 +#define GPIO_PIN23_PAD_DRIVER_S 2 + +/* GPIO_PIN23_SYNC2_BYPASS : R/W; bitpos: [1:0]; default: 0; + * set GPIO input_sync2 signal mode. 0:disable. 1:trigger at negedge. + * 2or3:trigger at posedge. + */ + +#define GPIO_PIN23_SYNC2_BYPASS 0x00000003 +#define GPIO_PIN23_SYNC2_BYPASS_M (GPIO_PIN23_SYNC2_BYPASS_V << GPIO_PIN23_SYNC2_BYPASS_S) +#define GPIO_PIN23_SYNC2_BYPASS_V 0x00000003 +#define GPIO_PIN23_SYNC2_BYPASS_S 0 + +/* GPIO_PIN24_REG register + * GPIO pin configuration register + */ + +#define GPIO_PIN24_REG (DR_REG_GPIO_BASE + 0xd4) + +/* GPIO_PIN24_INT_ENA : R/W; bitpos: [17:13]; default: 0; + * set bit 13 to enable CPU interrupt. set bit 14 to enable CPU(not + * shielded) interrupt. + */ + +#define GPIO_PIN24_INT_ENA 0x0000001f +#define GPIO_PIN24_INT_ENA_M (GPIO_PIN24_INT_ENA_V << GPIO_PIN24_INT_ENA_S) +#define GPIO_PIN24_INT_ENA_V 0x0000001f +#define GPIO_PIN24_INT_ENA_S 13 + +/* GPIO_PIN24_CONFIG : R/W; bitpos: [12:11]; default: 0; + * reserved + */ + +#define GPIO_PIN24_CONFIG 0x00000003 +#define GPIO_PIN24_CONFIG_M (GPIO_PIN24_CONFIG_V << GPIO_PIN24_CONFIG_S) +#define GPIO_PIN24_CONFIG_V 0x00000003 +#define GPIO_PIN24_CONFIG_S 11 + +/* GPIO_PIN24_WAKEUP_ENABLE : R/W; bitpos: [10]; default: 0; + * set this bit to enable GPIO wakeup.(can only wakeup CPU from Light-sleep + * Mode) + */ + +#define GPIO_PIN24_WAKEUP_ENABLE (BIT(10)) +#define GPIO_PIN24_WAKEUP_ENABLE_M (GPIO_PIN24_WAKEUP_ENABLE_V << GPIO_PIN24_WAKEUP_ENABLE_S) +#define GPIO_PIN24_WAKEUP_ENABLE_V 0x00000001 +#define GPIO_PIN24_WAKEUP_ENABLE_S 10 + +/* GPIO_PIN24_INT_TYPE : R/W; bitpos: [9:7]; default: 0; + * set this value to choose interrupt mode. 0:disable GPIO interrupt. + * 1:trigger at posedge. 2:trigger at negedge. 3:trigger at any edge. + * 4:valid at low level. 5:valid at high level + */ + +#define GPIO_PIN24_INT_TYPE 0x00000007 +#define GPIO_PIN24_INT_TYPE_M (GPIO_PIN24_INT_TYPE_V << GPIO_PIN24_INT_TYPE_S) +#define GPIO_PIN24_INT_TYPE_V 0x00000007 +#define GPIO_PIN24_INT_TYPE_S 7 + +/* GPIO_PIN24_SYNC1_BYPASS : R/W; bitpos: [4:3]; default: 0; + * set GPIO input_sync1 signal mode. 0:disable. 1:trigger at negedge. + * 2or3:trigger at posedge. + */ + +#define GPIO_PIN24_SYNC1_BYPASS 0x00000003 +#define GPIO_PIN24_SYNC1_BYPASS_M (GPIO_PIN24_SYNC1_BYPASS_V << GPIO_PIN24_SYNC1_BYPASS_S) +#define GPIO_PIN24_SYNC1_BYPASS_V 0x00000003 +#define GPIO_PIN24_SYNC1_BYPASS_S 3 + +/* GPIO_PIN24_PAD_DRIVER : R/W; bitpos: [2]; default: 0; + * set this bit to select pad driver. 1:open-drain. 0:normal. + */ + +#define GPIO_PIN24_PAD_DRIVER (BIT(2)) +#define GPIO_PIN24_PAD_DRIVER_M (GPIO_PIN24_PAD_DRIVER_V << GPIO_PIN24_PAD_DRIVER_S) +#define GPIO_PIN24_PAD_DRIVER_V 0x00000001 +#define GPIO_PIN24_PAD_DRIVER_S 2 + +/* GPIO_PIN24_SYNC2_BYPASS : R/W; bitpos: [1:0]; default: 0; + * set GPIO input_sync2 signal mode. 0:disable. 1:trigger at negedge. + * 2or3:trigger at posedge. + */ + +#define GPIO_PIN24_SYNC2_BYPASS 0x00000003 +#define GPIO_PIN24_SYNC2_BYPASS_M (GPIO_PIN24_SYNC2_BYPASS_V << GPIO_PIN24_SYNC2_BYPASS_S) +#define GPIO_PIN24_SYNC2_BYPASS_V 0x00000003 +#define GPIO_PIN24_SYNC2_BYPASS_S 0 + +/* GPIO_PIN25_REG register + * GPIO pin configuration register + */ + +#define GPIO_PIN25_REG (DR_REG_GPIO_BASE + 0xd8) + +/* GPIO_PIN25_INT_ENA : R/W; bitpos: [17:13]; default: 0; + * set bit 13 to enable CPU interrupt. set bit 14 to enable CPU(not + * shielded) interrupt. + */ + +#define GPIO_PIN25_INT_ENA 0x0000001f +#define GPIO_PIN25_INT_ENA_M (GPIO_PIN25_INT_ENA_V << GPIO_PIN25_INT_ENA_S) +#define GPIO_PIN25_INT_ENA_V 0x0000001f +#define GPIO_PIN25_INT_ENA_S 13 + +/* GPIO_PIN25_CONFIG : R/W; bitpos: [12:11]; default: 0; + * reserved + */ + +#define GPIO_PIN25_CONFIG 0x00000003 +#define GPIO_PIN25_CONFIG_M (GPIO_PIN25_CONFIG_V << GPIO_PIN25_CONFIG_S) +#define GPIO_PIN25_CONFIG_V 0x00000003 +#define GPIO_PIN25_CONFIG_S 11 + +/* GPIO_PIN25_WAKEUP_ENABLE : R/W; bitpos: [10]; default: 0; + * set this bit to enable GPIO wakeup.(can only wakeup CPU from Light-sleep + * Mode) + */ + +#define GPIO_PIN25_WAKEUP_ENABLE (BIT(10)) +#define GPIO_PIN25_WAKEUP_ENABLE_M (GPIO_PIN25_WAKEUP_ENABLE_V << GPIO_PIN25_WAKEUP_ENABLE_S) +#define GPIO_PIN25_WAKEUP_ENABLE_V 0x00000001 +#define GPIO_PIN25_WAKEUP_ENABLE_S 10 + +/* GPIO_PIN25_INT_TYPE : R/W; bitpos: [9:7]; default: 0; + * set this value to choose interrupt mode. 0:disable GPIO interrupt. + * 1:trigger at posedge. 2:trigger at negedge. 3:trigger at any edge. + * 4:valid at low level. 5:valid at high level + */ + +#define GPIO_PIN25_INT_TYPE 0x00000007 +#define GPIO_PIN25_INT_TYPE_M (GPIO_PIN25_INT_TYPE_V << GPIO_PIN25_INT_TYPE_S) +#define GPIO_PIN25_INT_TYPE_V 0x00000007 +#define GPIO_PIN25_INT_TYPE_S 7 + +/* GPIO_PIN25_SYNC1_BYPASS : R/W; bitpos: [4:3]; default: 0; + * set GPIO input_sync1 signal mode. 0:disable. 1:trigger at negedge. + * 2or3:trigger at posedge. + */ + +#define GPIO_PIN25_SYNC1_BYPASS 0x00000003 +#define GPIO_PIN25_SYNC1_BYPASS_M (GPIO_PIN25_SYNC1_BYPASS_V << GPIO_PIN25_SYNC1_BYPASS_S) +#define GPIO_PIN25_SYNC1_BYPASS_V 0x00000003 +#define GPIO_PIN25_SYNC1_BYPASS_S 3 + +/* GPIO_PIN25_PAD_DRIVER : R/W; bitpos: [2]; default: 0; + * set this bit to select pad driver. 1:open-drain. 0:normal. + */ + +#define GPIO_PIN25_PAD_DRIVER (BIT(2)) +#define GPIO_PIN25_PAD_DRIVER_M (GPIO_PIN25_PAD_DRIVER_V << GPIO_PIN25_PAD_DRIVER_S) +#define GPIO_PIN25_PAD_DRIVER_V 0x00000001 +#define GPIO_PIN25_PAD_DRIVER_S 2 + +/* GPIO_PIN25_SYNC2_BYPASS : R/W; bitpos: [1:0]; default: 0; + * set GPIO input_sync2 signal mode. 0:disable. 1:trigger at negedge. + * 2or3:trigger at posedge. + */ + +#define GPIO_PIN25_SYNC2_BYPASS 0x00000003 +#define GPIO_PIN25_SYNC2_BYPASS_M (GPIO_PIN25_SYNC2_BYPASS_V << GPIO_PIN25_SYNC2_BYPASS_S) +#define GPIO_PIN25_SYNC2_BYPASS_V 0x00000003 +#define GPIO_PIN25_SYNC2_BYPASS_S 0 + +/* GPIO_PIN26_REG register + * GPIO pin configuration register + */ + +#define GPIO_PIN26_REG (DR_REG_GPIO_BASE + 0xdc) + +/* GPIO_PIN26_INT_ENA : R/W; bitpos: [17:13]; default: 0; + * set bit 13 to enable CPU interrupt. set bit 14 to enable CPU(not + * shielded) interrupt. + */ + +#define GPIO_PIN26_INT_ENA 0x0000001f +#define GPIO_PIN26_INT_ENA_M (GPIO_PIN26_INT_ENA_V << GPIO_PIN26_INT_ENA_S) +#define GPIO_PIN26_INT_ENA_V 0x0000001f +#define GPIO_PIN26_INT_ENA_S 13 + +/* GPIO_PIN26_CONFIG : R/W; bitpos: [12:11]; default: 0; + * reserved + */ + +#define GPIO_PIN26_CONFIG 0x00000003 +#define GPIO_PIN26_CONFIG_M (GPIO_PIN26_CONFIG_V << GPIO_PIN26_CONFIG_S) +#define GPIO_PIN26_CONFIG_V 0x00000003 +#define GPIO_PIN26_CONFIG_S 11 + +/* GPIO_PIN26_WAKEUP_ENABLE : R/W; bitpos: [10]; default: 0; + * set this bit to enable GPIO wakeup.(can only wakeup CPU from Light-sleep + * Mode) + */ + +#define GPIO_PIN26_WAKEUP_ENABLE (BIT(10)) +#define GPIO_PIN26_WAKEUP_ENABLE_M (GPIO_PIN26_WAKEUP_ENABLE_V << GPIO_PIN26_WAKEUP_ENABLE_S) +#define GPIO_PIN26_WAKEUP_ENABLE_V 0x00000001 +#define GPIO_PIN26_WAKEUP_ENABLE_S 10 + +/* GPIO_PIN26_INT_TYPE : R/W; bitpos: [9:7]; default: 0; + * set this value to choose interrupt mode. 0:disable GPIO interrupt. + * 1:trigger at posedge. 2:trigger at negedge. 3:trigger at any edge. + * 4:valid at low level. 5:valid at high level + */ + +#define GPIO_PIN26_INT_TYPE 0x00000007 +#define GPIO_PIN26_INT_TYPE_M (GPIO_PIN26_INT_TYPE_V << GPIO_PIN26_INT_TYPE_S) +#define GPIO_PIN26_INT_TYPE_V 0x00000007 +#define GPIO_PIN26_INT_TYPE_S 7 + +/* GPIO_PIN26_SYNC1_BYPASS : R/W; bitpos: [4:3]; default: 0; + * set GPIO input_sync1 signal mode. 0:disable. 1:trigger at negedge. + * 2or3:trigger at posedge. + */ + +#define GPIO_PIN26_SYNC1_BYPASS 0x00000003 +#define GPIO_PIN26_SYNC1_BYPASS_M (GPIO_PIN26_SYNC1_BYPASS_V << GPIO_PIN26_SYNC1_BYPASS_S) +#define GPIO_PIN26_SYNC1_BYPASS_V 0x00000003 +#define GPIO_PIN26_SYNC1_BYPASS_S 3 + +/* GPIO_PIN26_PAD_DRIVER : R/W; bitpos: [2]; default: 0; + * set this bit to select pad driver. 1:open-drain. 0:normal. + */ + +#define GPIO_PIN26_PAD_DRIVER (BIT(2)) +#define GPIO_PIN26_PAD_DRIVER_M (GPIO_PIN26_PAD_DRIVER_V << GPIO_PIN26_PAD_DRIVER_S) +#define GPIO_PIN26_PAD_DRIVER_V 0x00000001 +#define GPIO_PIN26_PAD_DRIVER_S 2 + +/* GPIO_PIN26_SYNC2_BYPASS : R/W; bitpos: [1:0]; default: 0; + * set GPIO input_sync2 signal mode. 0:disable. 1:trigger at negedge. + * 2or3:trigger at posedge. + */ + +#define GPIO_PIN26_SYNC2_BYPASS 0x00000003 +#define GPIO_PIN26_SYNC2_BYPASS_M (GPIO_PIN26_SYNC2_BYPASS_V << GPIO_PIN26_SYNC2_BYPASS_S) +#define GPIO_PIN26_SYNC2_BYPASS_V 0x00000003 +#define GPIO_PIN26_SYNC2_BYPASS_S 0 + +/* GPIO_PIN27_REG register + * GPIO pin configuration register + */ + +#define GPIO_PIN27_REG (DR_REG_GPIO_BASE + 0xe0) + +/* GPIO_PIN27_INT_ENA : R/W; bitpos: [17:13]; default: 0; + * set bit 13 to enable CPU interrupt. set bit 14 to enable CPU(not + * shielded) interrupt. + */ + +#define GPIO_PIN27_INT_ENA 0x0000001f +#define GPIO_PIN27_INT_ENA_M (GPIO_PIN27_INT_ENA_V << GPIO_PIN27_INT_ENA_S) +#define GPIO_PIN27_INT_ENA_V 0x0000001f +#define GPIO_PIN27_INT_ENA_S 13 + +/* GPIO_PIN27_CONFIG : R/W; bitpos: [12:11]; default: 0; + * reserved + */ + +#define GPIO_PIN27_CONFIG 0x00000003 +#define GPIO_PIN27_CONFIG_M (GPIO_PIN27_CONFIG_V << GPIO_PIN27_CONFIG_S) +#define GPIO_PIN27_CONFIG_V 0x00000003 +#define GPIO_PIN27_CONFIG_S 11 + +/* GPIO_PIN27_WAKEUP_ENABLE : R/W; bitpos: [10]; default: 0; + * set this bit to enable GPIO wakeup.(can only wakeup CPU from Light-sleep + * Mode) + */ + +#define GPIO_PIN27_WAKEUP_ENABLE (BIT(10)) +#define GPIO_PIN27_WAKEUP_ENABLE_M (GPIO_PIN27_WAKEUP_ENABLE_V << GPIO_PIN27_WAKEUP_ENABLE_S) +#define GPIO_PIN27_WAKEUP_ENABLE_V 0x00000001 +#define GPIO_PIN27_WAKEUP_ENABLE_S 10 + +/* GPIO_PIN27_INT_TYPE : R/W; bitpos: [9:7]; default: 0; + * set this value to choose interrupt mode. 0:disable GPIO interrupt. + * 1:trigger at posedge. 2:trigger at negedge. 3:trigger at any edge. + * 4:valid at low level. 5:valid at high level + */ + +#define GPIO_PIN27_INT_TYPE 0x00000007 +#define GPIO_PIN27_INT_TYPE_M (GPIO_PIN27_INT_TYPE_V << GPIO_PIN27_INT_TYPE_S) +#define GPIO_PIN27_INT_TYPE_V 0x00000007 +#define GPIO_PIN27_INT_TYPE_S 7 + +/* GPIO_PIN27_SYNC1_BYPASS : R/W; bitpos: [4:3]; default: 0; + * set GPIO input_sync1 signal mode. 0:disable. 1:trigger at negedge. + * 2or3:trigger at posedge. + */ + +#define GPIO_PIN27_SYNC1_BYPASS 0x00000003 +#define GPIO_PIN27_SYNC1_BYPASS_M (GPIO_PIN27_SYNC1_BYPASS_V << GPIO_PIN27_SYNC1_BYPASS_S) +#define GPIO_PIN27_SYNC1_BYPASS_V 0x00000003 +#define GPIO_PIN27_SYNC1_BYPASS_S 3 + +/* GPIO_PIN27_PAD_DRIVER : R/W; bitpos: [2]; default: 0; + * set this bit to select pad driver. 1:open-drain. 0:normal. + */ + +#define GPIO_PIN27_PAD_DRIVER (BIT(2)) +#define GPIO_PIN27_PAD_DRIVER_M (GPIO_PIN27_PAD_DRIVER_V << GPIO_PIN27_PAD_DRIVER_S) +#define GPIO_PIN27_PAD_DRIVER_V 0x00000001 +#define GPIO_PIN27_PAD_DRIVER_S 2 + +/* GPIO_PIN27_SYNC2_BYPASS : R/W; bitpos: [1:0]; default: 0; + * set GPIO input_sync2 signal mode. 0:disable. 1:trigger at negedge. + * 2or3:trigger at posedge. + */ + +#define GPIO_PIN27_SYNC2_BYPASS 0x00000003 +#define GPIO_PIN27_SYNC2_BYPASS_M (GPIO_PIN27_SYNC2_BYPASS_V << GPIO_PIN27_SYNC2_BYPASS_S) +#define GPIO_PIN27_SYNC2_BYPASS_V 0x00000003 +#define GPIO_PIN27_SYNC2_BYPASS_S 0 + +/* GPIO_PIN28_REG register + * GPIO pin configuration register + */ + +#define GPIO_PIN28_REG (DR_REG_GPIO_BASE + 0xe4) + +/* GPIO_PIN28_INT_ENA : R/W; bitpos: [17:13]; default: 0; + * set bit 13 to enable CPU interrupt. set bit 14 to enable CPU(not + * shielded) interrupt. + */ + +#define GPIO_PIN28_INT_ENA 0x0000001f +#define GPIO_PIN28_INT_ENA_M (GPIO_PIN28_INT_ENA_V << GPIO_PIN28_INT_ENA_S) +#define GPIO_PIN28_INT_ENA_V 0x0000001f +#define GPIO_PIN28_INT_ENA_S 13 + +/* GPIO_PIN28_CONFIG : R/W; bitpos: [12:11]; default: 0; + * reserved + */ + +#define GPIO_PIN28_CONFIG 0x00000003 +#define GPIO_PIN28_CONFIG_M (GPIO_PIN28_CONFIG_V << GPIO_PIN28_CONFIG_S) +#define GPIO_PIN28_CONFIG_V 0x00000003 +#define GPIO_PIN28_CONFIG_S 11 + +/* GPIO_PIN28_WAKEUP_ENABLE : R/W; bitpos: [10]; default: 0; + * set this bit to enable GPIO wakeup.(can only wakeup CPU from Light-sleep + * Mode) + */ + +#define GPIO_PIN28_WAKEUP_ENABLE (BIT(10)) +#define GPIO_PIN28_WAKEUP_ENABLE_M (GPIO_PIN28_WAKEUP_ENABLE_V << GPIO_PIN28_WAKEUP_ENABLE_S) +#define GPIO_PIN28_WAKEUP_ENABLE_V 0x00000001 +#define GPIO_PIN28_WAKEUP_ENABLE_S 10 + +/* GPIO_PIN28_INT_TYPE : R/W; bitpos: [9:7]; default: 0; + * set this value to choose interrupt mode. 0:disable GPIO interrupt. + * 1:trigger at posedge. 2:trigger at negedge. 3:trigger at any edge. + * 4:valid at low level. 5:valid at high level + */ + +#define GPIO_PIN28_INT_TYPE 0x00000007 +#define GPIO_PIN28_INT_TYPE_M (GPIO_PIN28_INT_TYPE_V << GPIO_PIN28_INT_TYPE_S) +#define GPIO_PIN28_INT_TYPE_V 0x00000007 +#define GPIO_PIN28_INT_TYPE_S 7 + +/* GPIO_PIN28_SYNC1_BYPASS : R/W; bitpos: [4:3]; default: 0; + * set GPIO input_sync1 signal mode. 0:disable. 1:trigger at negedge. + * 2or3:trigger at posedge. + */ + +#define GPIO_PIN28_SYNC1_BYPASS 0x00000003 +#define GPIO_PIN28_SYNC1_BYPASS_M (GPIO_PIN28_SYNC1_BYPASS_V << GPIO_PIN28_SYNC1_BYPASS_S) +#define GPIO_PIN28_SYNC1_BYPASS_V 0x00000003 +#define GPIO_PIN28_SYNC1_BYPASS_S 3 + +/* GPIO_PIN28_PAD_DRIVER : R/W; bitpos: [2]; default: 0; + * set this bit to select pad driver. 1:open-drain. 0:normal. + */ + +#define GPIO_PIN28_PAD_DRIVER (BIT(2)) +#define GPIO_PIN28_PAD_DRIVER_M (GPIO_PIN28_PAD_DRIVER_V << GPIO_PIN28_PAD_DRIVER_S) +#define GPIO_PIN28_PAD_DRIVER_V 0x00000001 +#define GPIO_PIN28_PAD_DRIVER_S 2 + +/* GPIO_PIN28_SYNC2_BYPASS : R/W; bitpos: [1:0]; default: 0; + * set GPIO input_sync2 signal mode. 0:disable. 1:trigger at negedge. + * 2or3:trigger at posedge. + */ + +#define GPIO_PIN28_SYNC2_BYPASS 0x00000003 +#define GPIO_PIN28_SYNC2_BYPASS_M (GPIO_PIN28_SYNC2_BYPASS_V << GPIO_PIN28_SYNC2_BYPASS_S) +#define GPIO_PIN28_SYNC2_BYPASS_V 0x00000003 +#define GPIO_PIN28_SYNC2_BYPASS_S 0 + +/* GPIO_PIN29_REG register + * GPIO pin configuration register + */ + +#define GPIO_PIN29_REG (DR_REG_GPIO_BASE + 0xe8) + +/* GPIO_PIN29_INT_ENA : R/W; bitpos: [17:13]; default: 0; + * set bit 13 to enable CPU interrupt. set bit 14 to enable CPU(not + * shielded) interrupt. + */ + +#define GPIO_PIN29_INT_ENA 0x0000001f +#define GPIO_PIN29_INT_ENA_M (GPIO_PIN29_INT_ENA_V << GPIO_PIN29_INT_ENA_S) +#define GPIO_PIN29_INT_ENA_V 0x0000001f +#define GPIO_PIN29_INT_ENA_S 13 + +/* GPIO_PIN29_CONFIG : R/W; bitpos: [12:11]; default: 0; + * reserved + */ + +#define GPIO_PIN29_CONFIG 0x00000003 +#define GPIO_PIN29_CONFIG_M (GPIO_PIN29_CONFIG_V << GPIO_PIN29_CONFIG_S) +#define GPIO_PIN29_CONFIG_V 0x00000003 +#define GPIO_PIN29_CONFIG_S 11 + +/* GPIO_PIN29_WAKEUP_ENABLE : R/W; bitpos: [10]; default: 0; + * set this bit to enable GPIO wakeup.(can only wakeup CPU from Light-sleep + * Mode) + */ + +#define GPIO_PIN29_WAKEUP_ENABLE (BIT(10)) +#define GPIO_PIN29_WAKEUP_ENABLE_M (GPIO_PIN29_WAKEUP_ENABLE_V << GPIO_PIN29_WAKEUP_ENABLE_S) +#define GPIO_PIN29_WAKEUP_ENABLE_V 0x00000001 +#define GPIO_PIN29_WAKEUP_ENABLE_S 10 + +/* GPIO_PIN29_INT_TYPE : R/W; bitpos: [9:7]; default: 0; + * set this value to choose interrupt mode. 0:disable GPIO interrupt. + * 1:trigger at posedge. 2:trigger at negedge. 3:trigger at any edge. + * 4:valid at low level. 5:valid at high level + */ + +#define GPIO_PIN29_INT_TYPE 0x00000007 +#define GPIO_PIN29_INT_TYPE_M (GPIO_PIN29_INT_TYPE_V << GPIO_PIN29_INT_TYPE_S) +#define GPIO_PIN29_INT_TYPE_V 0x00000007 +#define GPIO_PIN29_INT_TYPE_S 7 + +/* GPIO_PIN29_SYNC1_BYPASS : R/W; bitpos: [4:3]; default: 0; + * set GPIO input_sync1 signal mode. 0:disable. 1:trigger at negedge. + * 2or3:trigger at posedge. + */ + +#define GPIO_PIN29_SYNC1_BYPASS 0x00000003 +#define GPIO_PIN29_SYNC1_BYPASS_M (GPIO_PIN29_SYNC1_BYPASS_V << GPIO_PIN29_SYNC1_BYPASS_S) +#define GPIO_PIN29_SYNC1_BYPASS_V 0x00000003 +#define GPIO_PIN29_SYNC1_BYPASS_S 3 + +/* GPIO_PIN29_PAD_DRIVER : R/W; bitpos: [2]; default: 0; + * set this bit to select pad driver. 1:open-drain. 0:normal. + */ + +#define GPIO_PIN29_PAD_DRIVER (BIT(2)) +#define GPIO_PIN29_PAD_DRIVER_M (GPIO_PIN29_PAD_DRIVER_V << GPIO_PIN29_PAD_DRIVER_S) +#define GPIO_PIN29_PAD_DRIVER_V 0x00000001 +#define GPIO_PIN29_PAD_DRIVER_S 2 + +/* GPIO_PIN29_SYNC2_BYPASS : R/W; bitpos: [1:0]; default: 0; + * set GPIO input_sync2 signal mode. 0:disable. 1:trigger at negedge. + * 2or3:trigger at posedge. + */ + +#define GPIO_PIN29_SYNC2_BYPASS 0x00000003 +#define GPIO_PIN29_SYNC2_BYPASS_M (GPIO_PIN29_SYNC2_BYPASS_V << GPIO_PIN29_SYNC2_BYPASS_S) +#define GPIO_PIN29_SYNC2_BYPASS_V 0x00000003 +#define GPIO_PIN29_SYNC2_BYPASS_S 0 + +/* GPIO_PIN30_REG register + * GPIO pin configuration register + */ + +#define GPIO_PIN30_REG (DR_REG_GPIO_BASE + 0xec) + +/* GPIO_PIN30_INT_ENA : R/W; bitpos: [17:13]; default: 0; + * set bit 13 to enable CPU interrupt. set bit 14 to enable CPU(not + * shielded) interrupt. + */ + +#define GPIO_PIN30_INT_ENA 0x0000001f +#define GPIO_PIN30_INT_ENA_M (GPIO_PIN30_INT_ENA_V << GPIO_PIN30_INT_ENA_S) +#define GPIO_PIN30_INT_ENA_V 0x0000001f +#define GPIO_PIN30_INT_ENA_S 13 + +/* GPIO_PIN30_CONFIG : R/W; bitpos: [12:11]; default: 0; + * reserved + */ + +#define GPIO_PIN30_CONFIG 0x00000003 +#define GPIO_PIN30_CONFIG_M (GPIO_PIN30_CONFIG_V << GPIO_PIN30_CONFIG_S) +#define GPIO_PIN30_CONFIG_V 0x00000003 +#define GPIO_PIN30_CONFIG_S 11 + +/* GPIO_PIN30_WAKEUP_ENABLE : R/W; bitpos: [10]; default: 0; + * set this bit to enable GPIO wakeup.(can only wakeup CPU from Light-sleep + * Mode) + */ + +#define GPIO_PIN30_WAKEUP_ENABLE (BIT(10)) +#define GPIO_PIN30_WAKEUP_ENABLE_M (GPIO_PIN30_WAKEUP_ENABLE_V << GPIO_PIN30_WAKEUP_ENABLE_S) +#define GPIO_PIN30_WAKEUP_ENABLE_V 0x00000001 +#define GPIO_PIN30_WAKEUP_ENABLE_S 10 + +/* GPIO_PIN30_INT_TYPE : R/W; bitpos: [9:7]; default: 0; + * set this value to choose interrupt mode. 0:disable GPIO interrupt. + * 1:trigger at posedge. 2:trigger at negedge. 3:trigger at any edge. + * 4:valid at low level. 5:valid at high level + */ + +#define GPIO_PIN30_INT_TYPE 0x00000007 +#define GPIO_PIN30_INT_TYPE_M (GPIO_PIN30_INT_TYPE_V << GPIO_PIN30_INT_TYPE_S) +#define GPIO_PIN30_INT_TYPE_V 0x00000007 +#define GPIO_PIN30_INT_TYPE_S 7 + +/* GPIO_PIN30_SYNC1_BYPASS : R/W; bitpos: [4:3]; default: 0; + * set GPIO input_sync1 signal mode. 0:disable. 1:trigger at negedge. + * 2or3:trigger at posedge. + */ + +#define GPIO_PIN30_SYNC1_BYPASS 0x00000003 +#define GPIO_PIN30_SYNC1_BYPASS_M (GPIO_PIN30_SYNC1_BYPASS_V << GPIO_PIN30_SYNC1_BYPASS_S) +#define GPIO_PIN30_SYNC1_BYPASS_V 0x00000003 +#define GPIO_PIN30_SYNC1_BYPASS_S 3 + +/* GPIO_PIN30_PAD_DRIVER : R/W; bitpos: [2]; default: 0; + * set this bit to select pad driver. 1:open-drain. 0:normal. + */ + +#define GPIO_PIN30_PAD_DRIVER (BIT(2)) +#define GPIO_PIN30_PAD_DRIVER_M (GPIO_PIN30_PAD_DRIVER_V << GPIO_PIN30_PAD_DRIVER_S) +#define GPIO_PIN30_PAD_DRIVER_V 0x00000001 +#define GPIO_PIN30_PAD_DRIVER_S 2 + +/* GPIO_PIN30_SYNC2_BYPASS : R/W; bitpos: [1:0]; default: 0; + * set GPIO input_sync2 signal mode. 0:disable. 1:trigger at negedge. + * 2or3:trigger at posedge. + */ + +#define GPIO_PIN30_SYNC2_BYPASS 0x00000003 +#define GPIO_PIN30_SYNC2_BYPASS_M (GPIO_PIN30_SYNC2_BYPASS_V << GPIO_PIN30_SYNC2_BYPASS_S) +#define GPIO_PIN30_SYNC2_BYPASS_V 0x00000003 +#define GPIO_PIN30_SYNC2_BYPASS_S 0 + +/* GPIO_PIN31_REG register + * GPIO pin configuration register + */ + +#define GPIO_PIN31_REG (DR_REG_GPIO_BASE + 0xf0) + +/* GPIO_PIN31_INT_ENA : R/W; bitpos: [17:13]; default: 0; + * set bit 13 to enable CPU interrupt. set bit 14 to enable CPU(not + * shielded) interrupt. + */ + +#define GPIO_PIN31_INT_ENA 0x0000001f +#define GPIO_PIN31_INT_ENA_M (GPIO_PIN31_INT_ENA_V << GPIO_PIN31_INT_ENA_S) +#define GPIO_PIN31_INT_ENA_V 0x0000001f +#define GPIO_PIN31_INT_ENA_S 13 + +/* GPIO_PIN31_CONFIG : R/W; bitpos: [12:11]; default: 0; + * reserved + */ + +#define GPIO_PIN31_CONFIG 0x00000003 +#define GPIO_PIN31_CONFIG_M (GPIO_PIN31_CONFIG_V << GPIO_PIN31_CONFIG_S) +#define GPIO_PIN31_CONFIG_V 0x00000003 +#define GPIO_PIN31_CONFIG_S 11 + +/* GPIO_PIN31_WAKEUP_ENABLE : R/W; bitpos: [10]; default: 0; + * set this bit to enable GPIO wakeup.(can only wakeup CPU from Light-sleep + * Mode) + */ + +#define GPIO_PIN31_WAKEUP_ENABLE (BIT(10)) +#define GPIO_PIN31_WAKEUP_ENABLE_M (GPIO_PIN31_WAKEUP_ENABLE_V << GPIO_PIN31_WAKEUP_ENABLE_S) +#define GPIO_PIN31_WAKEUP_ENABLE_V 0x00000001 +#define GPIO_PIN31_WAKEUP_ENABLE_S 10 + +/* GPIO_PIN31_INT_TYPE : R/W; bitpos: [9:7]; default: 0; + * set this value to choose interrupt mode. 0:disable GPIO interrupt. + * 1:trigger at posedge. 2:trigger at negedge. 3:trigger at any edge. + * 4:valid at low level. 5:valid at high level + */ + +#define GPIO_PIN31_INT_TYPE 0x00000007 +#define GPIO_PIN31_INT_TYPE_M (GPIO_PIN31_INT_TYPE_V << GPIO_PIN31_INT_TYPE_S) +#define GPIO_PIN31_INT_TYPE_V 0x00000007 +#define GPIO_PIN31_INT_TYPE_S 7 + +/* GPIO_PIN31_SYNC1_BYPASS : R/W; bitpos: [4:3]; default: 0; + * set GPIO input_sync1 signal mode. 0:disable. 1:trigger at negedge. + * 2or3:trigger at posedge. + */ + +#define GPIO_PIN31_SYNC1_BYPASS 0x00000003 +#define GPIO_PIN31_SYNC1_BYPASS_M (GPIO_PIN31_SYNC1_BYPASS_V << GPIO_PIN31_SYNC1_BYPASS_S) +#define GPIO_PIN31_SYNC1_BYPASS_V 0x00000003 +#define GPIO_PIN31_SYNC1_BYPASS_S 3 + +/* GPIO_PIN31_PAD_DRIVER : R/W; bitpos: [2]; default: 0; + * set this bit to select pad driver. 1:open-drain. 0:normal. + */ + +#define GPIO_PIN31_PAD_DRIVER (BIT(2)) +#define GPIO_PIN31_PAD_DRIVER_M (GPIO_PIN31_PAD_DRIVER_V << GPIO_PIN31_PAD_DRIVER_S) +#define GPIO_PIN31_PAD_DRIVER_V 0x00000001 +#define GPIO_PIN31_PAD_DRIVER_S 2 + +/* GPIO_PIN31_SYNC2_BYPASS : R/W; bitpos: [1:0]; default: 0; + * set GPIO input_sync2 signal mode. 0:disable. 1:trigger at negedge. + * 2or3:trigger at posedge. + */ + +#define GPIO_PIN31_SYNC2_BYPASS 0x00000003 +#define GPIO_PIN31_SYNC2_BYPASS_M (GPIO_PIN31_SYNC2_BYPASS_V << GPIO_PIN31_SYNC2_BYPASS_S) +#define GPIO_PIN31_SYNC2_BYPASS_V 0x00000003 +#define GPIO_PIN31_SYNC2_BYPASS_S 0 + +/* GPIO_PIN32_REG register + * GPIO pin configuration register + */ + +#define GPIO_PIN32_REG (DR_REG_GPIO_BASE + 0xf4) + +/* GPIO_PIN32_INT_ENA : R/W; bitpos: [17:13]; default: 0; + * set bit 13 to enable CPU interrupt. set bit 14 to enable CPU(not + * shielded) interrupt. + */ + +#define GPIO_PIN32_INT_ENA 0x0000001f +#define GPIO_PIN32_INT_ENA_M (GPIO_PIN32_INT_ENA_V << GPIO_PIN32_INT_ENA_S) +#define GPIO_PIN32_INT_ENA_V 0x0000001f +#define GPIO_PIN32_INT_ENA_S 13 + +/* GPIO_PIN32_CONFIG : R/W; bitpos: [12:11]; default: 0; + * reserved + */ + +#define GPIO_PIN32_CONFIG 0x00000003 +#define GPIO_PIN32_CONFIG_M (GPIO_PIN32_CONFIG_V << GPIO_PIN32_CONFIG_S) +#define GPIO_PIN32_CONFIG_V 0x00000003 +#define GPIO_PIN32_CONFIG_S 11 + +/* GPIO_PIN32_WAKEUP_ENABLE : R/W; bitpos: [10]; default: 0; + * set this bit to enable GPIO wakeup.(can only wakeup CPU from Light-sleep + * Mode) + */ + +#define GPIO_PIN32_WAKEUP_ENABLE (BIT(10)) +#define GPIO_PIN32_WAKEUP_ENABLE_M (GPIO_PIN32_WAKEUP_ENABLE_V << GPIO_PIN32_WAKEUP_ENABLE_S) +#define GPIO_PIN32_WAKEUP_ENABLE_V 0x00000001 +#define GPIO_PIN32_WAKEUP_ENABLE_S 10 + +/* GPIO_PIN32_INT_TYPE : R/W; bitpos: [9:7]; default: 0; + * set this value to choose interrupt mode. 0:disable GPIO interrupt. + * 1:trigger at posedge. 2:trigger at negedge. 3:trigger at any edge. + * 4:valid at low level. 5:valid at high level + */ + +#define GPIO_PIN32_INT_TYPE 0x00000007 +#define GPIO_PIN32_INT_TYPE_M (GPIO_PIN32_INT_TYPE_V << GPIO_PIN32_INT_TYPE_S) +#define GPIO_PIN32_INT_TYPE_V 0x00000007 +#define GPIO_PIN32_INT_TYPE_S 7 + +/* GPIO_PIN32_SYNC1_BYPASS : R/W; bitpos: [4:3]; default: 0; + * set GPIO input_sync1 signal mode. 0:disable. 1:trigger at negedge. + * 2or3:trigger at posedge. + */ + +#define GPIO_PIN32_SYNC1_BYPASS 0x00000003 +#define GPIO_PIN32_SYNC1_BYPASS_M (GPIO_PIN32_SYNC1_BYPASS_V << GPIO_PIN32_SYNC1_BYPASS_S) +#define GPIO_PIN32_SYNC1_BYPASS_V 0x00000003 +#define GPIO_PIN32_SYNC1_BYPASS_S 3 + +/* GPIO_PIN32_PAD_DRIVER : R/W; bitpos: [2]; default: 0; + * set this bit to select pad driver. 1:open-drain. 0:normal. + */ + +#define GPIO_PIN32_PAD_DRIVER (BIT(2)) +#define GPIO_PIN32_PAD_DRIVER_M (GPIO_PIN32_PAD_DRIVER_V << GPIO_PIN32_PAD_DRIVER_S) +#define GPIO_PIN32_PAD_DRIVER_V 0x00000001 +#define GPIO_PIN32_PAD_DRIVER_S 2 + +/* GPIO_PIN32_SYNC2_BYPASS : R/W; bitpos: [1:0]; default: 0; + * set GPIO input_sync2 signal mode. 0:disable. 1:trigger at negedge. + * 2or3:trigger at posedge. + */ + +#define GPIO_PIN32_SYNC2_BYPASS 0x00000003 +#define GPIO_PIN32_SYNC2_BYPASS_M (GPIO_PIN32_SYNC2_BYPASS_V << GPIO_PIN32_SYNC2_BYPASS_S) +#define GPIO_PIN32_SYNC2_BYPASS_V 0x00000003 +#define GPIO_PIN32_SYNC2_BYPASS_S 0 + +/* GPIO_PIN33_REG register + * GPIO pin configuration register + */ + +#define GPIO_PIN33_REG (DR_REG_GPIO_BASE + 0xf8) + +/* GPIO_PIN33_INT_ENA : R/W; bitpos: [17:13]; default: 0; + * set bit 13 to enable CPU interrupt. set bit 14 to enable CPU(not + * shielded) interrupt. + */ + +#define GPIO_PIN33_INT_ENA 0x0000001f +#define GPIO_PIN33_INT_ENA_M (GPIO_PIN33_INT_ENA_V << GPIO_PIN33_INT_ENA_S) +#define GPIO_PIN33_INT_ENA_V 0x0000001f +#define GPIO_PIN33_INT_ENA_S 13 + +/* GPIO_PIN33_CONFIG : R/W; bitpos: [12:11]; default: 0; + * reserved + */ + +#define GPIO_PIN33_CONFIG 0x00000003 +#define GPIO_PIN33_CONFIG_M (GPIO_PIN33_CONFIG_V << GPIO_PIN33_CONFIG_S) +#define GPIO_PIN33_CONFIG_V 0x00000003 +#define GPIO_PIN33_CONFIG_S 11 + +/* GPIO_PIN33_WAKEUP_ENABLE : R/W; bitpos: [10]; default: 0; + * set this bit to enable GPIO wakeup.(can only wakeup CPU from Light-sleep + * Mode) + */ + +#define GPIO_PIN33_WAKEUP_ENABLE (BIT(10)) +#define GPIO_PIN33_WAKEUP_ENABLE_M (GPIO_PIN33_WAKEUP_ENABLE_V << GPIO_PIN33_WAKEUP_ENABLE_S) +#define GPIO_PIN33_WAKEUP_ENABLE_V 0x00000001 +#define GPIO_PIN33_WAKEUP_ENABLE_S 10 + +/* GPIO_PIN33_INT_TYPE : R/W; bitpos: [9:7]; default: 0; + * set this value to choose interrupt mode. 0:disable GPIO interrupt. + * 1:trigger at posedge. 2:trigger at negedge. 3:trigger at any edge. + * 4:valid at low level. 5:valid at high level + */ + +#define GPIO_PIN33_INT_TYPE 0x00000007 +#define GPIO_PIN33_INT_TYPE_M (GPIO_PIN33_INT_TYPE_V << GPIO_PIN33_INT_TYPE_S) +#define GPIO_PIN33_INT_TYPE_V 0x00000007 +#define GPIO_PIN33_INT_TYPE_S 7 + +/* GPIO_PIN33_SYNC1_BYPASS : R/W; bitpos: [4:3]; default: 0; + * set GPIO input_sync1 signal mode. 0:disable. 1:trigger at negedge. + * 2or3:trigger at posedge. + */ + +#define GPIO_PIN33_SYNC1_BYPASS 0x00000003 +#define GPIO_PIN33_SYNC1_BYPASS_M (GPIO_PIN33_SYNC1_BYPASS_V << GPIO_PIN33_SYNC1_BYPASS_S) +#define GPIO_PIN33_SYNC1_BYPASS_V 0x00000003 +#define GPIO_PIN33_SYNC1_BYPASS_S 3 + +/* GPIO_PIN33_PAD_DRIVER : R/W; bitpos: [2]; default: 0; + * set this bit to select pad driver. 1:open-drain. 0:normal. + */ + +#define GPIO_PIN33_PAD_DRIVER (BIT(2)) +#define GPIO_PIN33_PAD_DRIVER_M (GPIO_PIN33_PAD_DRIVER_V << GPIO_PIN33_PAD_DRIVER_S) +#define GPIO_PIN33_PAD_DRIVER_V 0x00000001 +#define GPIO_PIN33_PAD_DRIVER_S 2 + +/* GPIO_PIN33_SYNC2_BYPASS : R/W; bitpos: [1:0]; default: 0; + * set GPIO input_sync2 signal mode. 0:disable. 1:trigger at negedge. + * 2or3:trigger at posedge. + */ + +#define GPIO_PIN33_SYNC2_BYPASS 0x00000003 +#define GPIO_PIN33_SYNC2_BYPASS_M (GPIO_PIN33_SYNC2_BYPASS_V << GPIO_PIN33_SYNC2_BYPASS_S) +#define GPIO_PIN33_SYNC2_BYPASS_V 0x00000003 +#define GPIO_PIN33_SYNC2_BYPASS_S 0 + +/* GPIO_PIN34_REG register + * GPIO pin configuration register + */ + +#define GPIO_PIN34_REG (DR_REG_GPIO_BASE + 0xfc) + +/* GPIO_PIN34_INT_ENA : R/W; bitpos: [17:13]; default: 0; + * set bit 13 to enable CPU interrupt. set bit 14 to enable CPU(not + * shielded) interrupt. + */ + +#define GPIO_PIN34_INT_ENA 0x0000001f +#define GPIO_PIN34_INT_ENA_M (GPIO_PIN34_INT_ENA_V << GPIO_PIN34_INT_ENA_S) +#define GPIO_PIN34_INT_ENA_V 0x0000001f +#define GPIO_PIN34_INT_ENA_S 13 + +/* GPIO_PIN34_CONFIG : R/W; bitpos: [12:11]; default: 0; + * reserved + */ + +#define GPIO_PIN34_CONFIG 0x00000003 +#define GPIO_PIN34_CONFIG_M (GPIO_PIN34_CONFIG_V << GPIO_PIN34_CONFIG_S) +#define GPIO_PIN34_CONFIG_V 0x00000003 +#define GPIO_PIN34_CONFIG_S 11 + +/* GPIO_PIN34_WAKEUP_ENABLE : R/W; bitpos: [10]; default: 0; + * set this bit to enable GPIO wakeup.(can only wakeup CPU from Light-sleep + * Mode) + */ + +#define GPIO_PIN34_WAKEUP_ENABLE (BIT(10)) +#define GPIO_PIN34_WAKEUP_ENABLE_M (GPIO_PIN34_WAKEUP_ENABLE_V << GPIO_PIN34_WAKEUP_ENABLE_S) +#define GPIO_PIN34_WAKEUP_ENABLE_V 0x00000001 +#define GPIO_PIN34_WAKEUP_ENABLE_S 10 + +/* GPIO_PIN34_INT_TYPE : R/W; bitpos: [9:7]; default: 0; + * set this value to choose interrupt mode. 0:disable GPIO interrupt. + * 1:trigger at posedge. 2:trigger at negedge. 3:trigger at any edge. + * 4:valid at low level. 5:valid at high level + */ + +#define GPIO_PIN34_INT_TYPE 0x00000007 +#define GPIO_PIN34_INT_TYPE_M (GPIO_PIN34_INT_TYPE_V << GPIO_PIN34_INT_TYPE_S) +#define GPIO_PIN34_INT_TYPE_V 0x00000007 +#define GPIO_PIN34_INT_TYPE_S 7 + +/* GPIO_PIN34_SYNC1_BYPASS : R/W; bitpos: [4:3]; default: 0; + * set GPIO input_sync1 signal mode. 0:disable. 1:trigger at negedge. + * 2or3:trigger at posedge. + */ + +#define GPIO_PIN34_SYNC1_BYPASS 0x00000003 +#define GPIO_PIN34_SYNC1_BYPASS_M (GPIO_PIN34_SYNC1_BYPASS_V << GPIO_PIN34_SYNC1_BYPASS_S) +#define GPIO_PIN34_SYNC1_BYPASS_V 0x00000003 +#define GPIO_PIN34_SYNC1_BYPASS_S 3 + +/* GPIO_PIN34_PAD_DRIVER : R/W; bitpos: [2]; default: 0; + * set this bit to select pad driver. 1:open-drain. 0:normal. + */ + +#define GPIO_PIN34_PAD_DRIVER (BIT(2)) +#define GPIO_PIN34_PAD_DRIVER_M (GPIO_PIN34_PAD_DRIVER_V << GPIO_PIN34_PAD_DRIVER_S) +#define GPIO_PIN34_PAD_DRIVER_V 0x00000001 +#define GPIO_PIN34_PAD_DRIVER_S 2 + +/* GPIO_PIN34_SYNC2_BYPASS : R/W; bitpos: [1:0]; default: 0; + * set GPIO input_sync2 signal mode. 0:disable. 1:trigger at negedge. + * 2or3:trigger at posedge. + */ + +#define GPIO_PIN34_SYNC2_BYPASS 0x00000003 +#define GPIO_PIN34_SYNC2_BYPASS_M (GPIO_PIN34_SYNC2_BYPASS_V << GPIO_PIN34_SYNC2_BYPASS_S) +#define GPIO_PIN34_SYNC2_BYPASS_V 0x00000003 +#define GPIO_PIN34_SYNC2_BYPASS_S 0 + +/* GPIO_PIN35_REG register + * GPIO pin configuration register + */ + +#define GPIO_PIN35_REG (DR_REG_GPIO_BASE + 0x100) + +/* GPIO_PIN35_INT_ENA : R/W; bitpos: [17:13]; default: 0; + * set bit 13 to enable CPU interrupt. set bit 14 to enable CPU(not + * shielded) interrupt. + */ + +#define GPIO_PIN35_INT_ENA 0x0000001f +#define GPIO_PIN35_INT_ENA_M (GPIO_PIN35_INT_ENA_V << GPIO_PIN35_INT_ENA_S) +#define GPIO_PIN35_INT_ENA_V 0x0000001f +#define GPIO_PIN35_INT_ENA_S 13 + +/* GPIO_PIN35_CONFIG : R/W; bitpos: [12:11]; default: 0; + * reserved + */ + +#define GPIO_PIN35_CONFIG 0x00000003 +#define GPIO_PIN35_CONFIG_M (GPIO_PIN35_CONFIG_V << GPIO_PIN35_CONFIG_S) +#define GPIO_PIN35_CONFIG_V 0x00000003 +#define GPIO_PIN35_CONFIG_S 11 + +/* GPIO_PIN35_WAKEUP_ENABLE : R/W; bitpos: [10]; default: 0; + * set this bit to enable GPIO wakeup.(can only wakeup CPU from Light-sleep + * Mode) + */ + +#define GPIO_PIN35_WAKEUP_ENABLE (BIT(10)) +#define GPIO_PIN35_WAKEUP_ENABLE_M (GPIO_PIN35_WAKEUP_ENABLE_V << GPIO_PIN35_WAKEUP_ENABLE_S) +#define GPIO_PIN35_WAKEUP_ENABLE_V 0x00000001 +#define GPIO_PIN35_WAKEUP_ENABLE_S 10 + +/* GPIO_PIN35_INT_TYPE : R/W; bitpos: [9:7]; default: 0; + * set this value to choose interrupt mode. 0:disable GPIO interrupt. + * 1:trigger at posedge. 2:trigger at negedge. 3:trigger at any edge. + * 4:valid at low level. 5:valid at high level + */ + +#define GPIO_PIN35_INT_TYPE 0x00000007 +#define GPIO_PIN35_INT_TYPE_M (GPIO_PIN35_INT_TYPE_V << GPIO_PIN35_INT_TYPE_S) +#define GPIO_PIN35_INT_TYPE_V 0x00000007 +#define GPIO_PIN35_INT_TYPE_S 7 + +/* GPIO_PIN35_SYNC1_BYPASS : R/W; bitpos: [4:3]; default: 0; + * set GPIO input_sync1 signal mode. 0:disable. 1:trigger at negedge. + * 2or3:trigger at posedge. + */ + +#define GPIO_PIN35_SYNC1_BYPASS 0x00000003 +#define GPIO_PIN35_SYNC1_BYPASS_M (GPIO_PIN35_SYNC1_BYPASS_V << GPIO_PIN35_SYNC1_BYPASS_S) +#define GPIO_PIN35_SYNC1_BYPASS_V 0x00000003 +#define GPIO_PIN35_SYNC1_BYPASS_S 3 + +/* GPIO_PIN35_PAD_DRIVER : R/W; bitpos: [2]; default: 0; + * set this bit to select pad driver. 1:open-drain. 0:normal. + */ + +#define GPIO_PIN35_PAD_DRIVER (BIT(2)) +#define GPIO_PIN35_PAD_DRIVER_M (GPIO_PIN35_PAD_DRIVER_V << GPIO_PIN35_PAD_DRIVER_S) +#define GPIO_PIN35_PAD_DRIVER_V 0x00000001 +#define GPIO_PIN35_PAD_DRIVER_S 2 + +/* GPIO_PIN35_SYNC2_BYPASS : R/W; bitpos: [1:0]; default: 0; + * set GPIO input_sync2 signal mode. 0:disable. 1:trigger at negedge. + * 2or3:trigger at posedge. + */ + +#define GPIO_PIN35_SYNC2_BYPASS 0x00000003 +#define GPIO_PIN35_SYNC2_BYPASS_M (GPIO_PIN35_SYNC2_BYPASS_V << GPIO_PIN35_SYNC2_BYPASS_S) +#define GPIO_PIN35_SYNC2_BYPASS_V 0x00000003 +#define GPIO_PIN35_SYNC2_BYPASS_S 0 + +/* GPIO_PIN36_REG register + * GPIO pin configuration register + */ + +#define GPIO_PIN36_REG (DR_REG_GPIO_BASE + 0x104) + +/* GPIO_PIN36_INT_ENA : R/W; bitpos: [17:13]; default: 0; + * set bit 13 to enable CPU interrupt. set bit 14 to enable CPU(not + * shielded) interrupt. + */ + +#define GPIO_PIN36_INT_ENA 0x0000001f +#define GPIO_PIN36_INT_ENA_M (GPIO_PIN36_INT_ENA_V << GPIO_PIN36_INT_ENA_S) +#define GPIO_PIN36_INT_ENA_V 0x0000001f +#define GPIO_PIN36_INT_ENA_S 13 + +/* GPIO_PIN36_CONFIG : R/W; bitpos: [12:11]; default: 0; + * reserved + */ + +#define GPIO_PIN36_CONFIG 0x00000003 +#define GPIO_PIN36_CONFIG_M (GPIO_PIN36_CONFIG_V << GPIO_PIN36_CONFIG_S) +#define GPIO_PIN36_CONFIG_V 0x00000003 +#define GPIO_PIN36_CONFIG_S 11 + +/* GPIO_PIN36_WAKEUP_ENABLE : R/W; bitpos: [10]; default: 0; + * set this bit to enable GPIO wakeup.(can only wakeup CPU from Light-sleep + * Mode) + */ + +#define GPIO_PIN36_WAKEUP_ENABLE (BIT(10)) +#define GPIO_PIN36_WAKEUP_ENABLE_M (GPIO_PIN36_WAKEUP_ENABLE_V << GPIO_PIN36_WAKEUP_ENABLE_S) +#define GPIO_PIN36_WAKEUP_ENABLE_V 0x00000001 +#define GPIO_PIN36_WAKEUP_ENABLE_S 10 + +/* GPIO_PIN36_INT_TYPE : R/W; bitpos: [9:7]; default: 0; + * set this value to choose interrupt mode. 0:disable GPIO interrupt. + * 1:trigger at posedge. 2:trigger at negedge. 3:trigger at any edge. + * 4:valid at low level. 5:valid at high level + */ + +#define GPIO_PIN36_INT_TYPE 0x00000007 +#define GPIO_PIN36_INT_TYPE_M (GPIO_PIN36_INT_TYPE_V << GPIO_PIN36_INT_TYPE_S) +#define GPIO_PIN36_INT_TYPE_V 0x00000007 +#define GPIO_PIN36_INT_TYPE_S 7 + +/* GPIO_PIN36_SYNC1_BYPASS : R/W; bitpos: [4:3]; default: 0; + * set GPIO input_sync1 signal mode. 0:disable. 1:trigger at negedge. + * 2or3:trigger at posedge. + */ + +#define GPIO_PIN36_SYNC1_BYPASS 0x00000003 +#define GPIO_PIN36_SYNC1_BYPASS_M (GPIO_PIN36_SYNC1_BYPASS_V << GPIO_PIN36_SYNC1_BYPASS_S) +#define GPIO_PIN36_SYNC1_BYPASS_V 0x00000003 +#define GPIO_PIN36_SYNC1_BYPASS_S 3 + +/* GPIO_PIN36_PAD_DRIVER : R/W; bitpos: [2]; default: 0; + * set this bit to select pad driver. 1:open-drain. 0:normal. + */ + +#define GPIO_PIN36_PAD_DRIVER (BIT(2)) +#define GPIO_PIN36_PAD_DRIVER_M (GPIO_PIN36_PAD_DRIVER_V << GPIO_PIN36_PAD_DRIVER_S) +#define GPIO_PIN36_PAD_DRIVER_V 0x00000001 +#define GPIO_PIN36_PAD_DRIVER_S 2 + +/* GPIO_PIN36_SYNC2_BYPASS : R/W; bitpos: [1:0]; default: 0; + * set GPIO input_sync2 signal mode. 0:disable. 1:trigger at negedge. + * 2or3:trigger at posedge. + */ + +#define GPIO_PIN36_SYNC2_BYPASS 0x00000003 +#define GPIO_PIN36_SYNC2_BYPASS_M (GPIO_PIN36_SYNC2_BYPASS_V << GPIO_PIN36_SYNC2_BYPASS_S) +#define GPIO_PIN36_SYNC2_BYPASS_V 0x00000003 +#define GPIO_PIN36_SYNC2_BYPASS_S 0 + +/* GPIO_PIN37_REG register + * GPIO pin configuration register + */ + +#define GPIO_PIN37_REG (DR_REG_GPIO_BASE + 0x108) + +/* GPIO_PIN37_INT_ENA : R/W; bitpos: [17:13]; default: 0; + * set bit 13 to enable CPU interrupt. set bit 14 to enable CPU(not + * shielded) interrupt. + */ + +#define GPIO_PIN37_INT_ENA 0x0000001f +#define GPIO_PIN37_INT_ENA_M (GPIO_PIN37_INT_ENA_V << GPIO_PIN37_INT_ENA_S) +#define GPIO_PIN37_INT_ENA_V 0x0000001f +#define GPIO_PIN37_INT_ENA_S 13 + +/* GPIO_PIN37_CONFIG : R/W; bitpos: [12:11]; default: 0; + * reserved + */ + +#define GPIO_PIN37_CONFIG 0x00000003 +#define GPIO_PIN37_CONFIG_M (GPIO_PIN37_CONFIG_V << GPIO_PIN37_CONFIG_S) +#define GPIO_PIN37_CONFIG_V 0x00000003 +#define GPIO_PIN37_CONFIG_S 11 + +/* GPIO_PIN37_WAKEUP_ENABLE : R/W; bitpos: [10]; default: 0; + * set this bit to enable GPIO wakeup.(can only wakeup CPU from Light-sleep + * Mode) + */ + +#define GPIO_PIN37_WAKEUP_ENABLE (BIT(10)) +#define GPIO_PIN37_WAKEUP_ENABLE_M (GPIO_PIN37_WAKEUP_ENABLE_V << GPIO_PIN37_WAKEUP_ENABLE_S) +#define GPIO_PIN37_WAKEUP_ENABLE_V 0x00000001 +#define GPIO_PIN37_WAKEUP_ENABLE_S 10 + +/* GPIO_PIN37_INT_TYPE : R/W; bitpos: [9:7]; default: 0; + * set this value to choose interrupt mode. 0:disable GPIO interrupt. + * 1:trigger at posedge. 2:trigger at negedge. 3:trigger at any edge. + * 4:valid at low level. 5:valid at high level + */ + +#define GPIO_PIN37_INT_TYPE 0x00000007 +#define GPIO_PIN37_INT_TYPE_M (GPIO_PIN37_INT_TYPE_V << GPIO_PIN37_INT_TYPE_S) +#define GPIO_PIN37_INT_TYPE_V 0x00000007 +#define GPIO_PIN37_INT_TYPE_S 7 + +/* GPIO_PIN37_SYNC1_BYPASS : R/W; bitpos: [4:3]; default: 0; + * set GPIO input_sync1 signal mode. 0:disable. 1:trigger at negedge. + * 2or3:trigger at posedge. + */ + +#define GPIO_PIN37_SYNC1_BYPASS 0x00000003 +#define GPIO_PIN37_SYNC1_BYPASS_M (GPIO_PIN37_SYNC1_BYPASS_V << GPIO_PIN37_SYNC1_BYPASS_S) +#define GPIO_PIN37_SYNC1_BYPASS_V 0x00000003 +#define GPIO_PIN37_SYNC1_BYPASS_S 3 + +/* GPIO_PIN37_PAD_DRIVER : R/W; bitpos: [2]; default: 0; + * set this bit to select pad driver. 1:open-drain. 0:normal. + */ + +#define GPIO_PIN37_PAD_DRIVER (BIT(2)) +#define GPIO_PIN37_PAD_DRIVER_M (GPIO_PIN37_PAD_DRIVER_V << GPIO_PIN37_PAD_DRIVER_S) +#define GPIO_PIN37_PAD_DRIVER_V 0x00000001 +#define GPIO_PIN37_PAD_DRIVER_S 2 + +/* GPIO_PIN37_SYNC2_BYPASS : R/W; bitpos: [1:0]; default: 0; + * set GPIO input_sync2 signal mode. 0:disable. 1:trigger at negedge. + * 2or3:trigger at posedge. + */ + +#define GPIO_PIN37_SYNC2_BYPASS 0x00000003 +#define GPIO_PIN37_SYNC2_BYPASS_M (GPIO_PIN37_SYNC2_BYPASS_V << GPIO_PIN37_SYNC2_BYPASS_S) +#define GPIO_PIN37_SYNC2_BYPASS_V 0x00000003 +#define GPIO_PIN37_SYNC2_BYPASS_S 0 + +/* GPIO_PIN38_REG register + * GPIO pin configuration register + */ + +#define GPIO_PIN38_REG (DR_REG_GPIO_BASE + 0x10c) + +/* GPIO_PIN38_INT_ENA : R/W; bitpos: [17:13]; default: 0; + * set bit 13 to enable CPU interrupt. set bit 14 to enable CPU(not + * shielded) interrupt. + */ + +#define GPIO_PIN38_INT_ENA 0x0000001f +#define GPIO_PIN38_INT_ENA_M (GPIO_PIN38_INT_ENA_V << GPIO_PIN38_INT_ENA_S) +#define GPIO_PIN38_INT_ENA_V 0x0000001f +#define GPIO_PIN38_INT_ENA_S 13 + +/* GPIO_PIN38_CONFIG : R/W; bitpos: [12:11]; default: 0; + * reserved + */ + +#define GPIO_PIN38_CONFIG 0x00000003 +#define GPIO_PIN38_CONFIG_M (GPIO_PIN38_CONFIG_V << GPIO_PIN38_CONFIG_S) +#define GPIO_PIN38_CONFIG_V 0x00000003 +#define GPIO_PIN38_CONFIG_S 11 + +/* GPIO_PIN38_WAKEUP_ENABLE : R/W; bitpos: [10]; default: 0; + * set this bit to enable GPIO wakeup.(can only wakeup CPU from Light-sleep + * Mode) + */ + +#define GPIO_PIN38_WAKEUP_ENABLE (BIT(10)) +#define GPIO_PIN38_WAKEUP_ENABLE_M (GPIO_PIN38_WAKEUP_ENABLE_V << GPIO_PIN38_WAKEUP_ENABLE_S) +#define GPIO_PIN38_WAKEUP_ENABLE_V 0x00000001 +#define GPIO_PIN38_WAKEUP_ENABLE_S 10 + +/* GPIO_PIN38_INT_TYPE : R/W; bitpos: [9:7]; default: 0; + * set this value to choose interrupt mode. 0:disable GPIO interrupt. + * 1:trigger at posedge. 2:trigger at negedge. 3:trigger at any edge. + * 4:valid at low level. 5:valid at high level + */ + +#define GPIO_PIN38_INT_TYPE 0x00000007 +#define GPIO_PIN38_INT_TYPE_M (GPIO_PIN38_INT_TYPE_V << GPIO_PIN38_INT_TYPE_S) +#define GPIO_PIN38_INT_TYPE_V 0x00000007 +#define GPIO_PIN38_INT_TYPE_S 7 + +/* GPIO_PIN38_SYNC1_BYPASS : R/W; bitpos: [4:3]; default: 0; + * set GPIO input_sync1 signal mode. 0:disable. 1:trigger at negedge. + * 2or3:trigger at posedge. + */ + +#define GPIO_PIN38_SYNC1_BYPASS 0x00000003 +#define GPIO_PIN38_SYNC1_BYPASS_M (GPIO_PIN38_SYNC1_BYPASS_V << GPIO_PIN38_SYNC1_BYPASS_S) +#define GPIO_PIN38_SYNC1_BYPASS_V 0x00000003 +#define GPIO_PIN38_SYNC1_BYPASS_S 3 + +/* GPIO_PIN38_PAD_DRIVER : R/W; bitpos: [2]; default: 0; + * set this bit to select pad driver. 1:open-drain. 0:normal. + */ + +#define GPIO_PIN38_PAD_DRIVER (BIT(2)) +#define GPIO_PIN38_PAD_DRIVER_M (GPIO_PIN38_PAD_DRIVER_V << GPIO_PIN38_PAD_DRIVER_S) +#define GPIO_PIN38_PAD_DRIVER_V 0x00000001 +#define GPIO_PIN38_PAD_DRIVER_S 2 + +/* GPIO_PIN38_SYNC2_BYPASS : R/W; bitpos: [1:0]; default: 0; + * set GPIO input_sync2 signal mode. 0:disable. 1:trigger at negedge. + * 2or3:trigger at posedge. + */ + +#define GPIO_PIN38_SYNC2_BYPASS 0x00000003 +#define GPIO_PIN38_SYNC2_BYPASS_M (GPIO_PIN38_SYNC2_BYPASS_V << GPIO_PIN38_SYNC2_BYPASS_S) +#define GPIO_PIN38_SYNC2_BYPASS_V 0x00000003 +#define GPIO_PIN38_SYNC2_BYPASS_S 0 + +/* GPIO_PIN39_REG register + * GPIO pin configuration register + */ + +#define GPIO_PIN39_REG (DR_REG_GPIO_BASE + 0x110) + +/* GPIO_PIN39_INT_ENA : R/W; bitpos: [17:13]; default: 0; + * set bit 13 to enable CPU interrupt. set bit 14 to enable CPU(not + * shielded) interrupt. + */ + +#define GPIO_PIN39_INT_ENA 0x0000001f +#define GPIO_PIN39_INT_ENA_M (GPIO_PIN39_INT_ENA_V << GPIO_PIN39_INT_ENA_S) +#define GPIO_PIN39_INT_ENA_V 0x0000001f +#define GPIO_PIN39_INT_ENA_S 13 + +/* GPIO_PIN39_CONFIG : R/W; bitpos: [12:11]; default: 0; + * reserved + */ + +#define GPIO_PIN39_CONFIG 0x00000003 +#define GPIO_PIN39_CONFIG_M (GPIO_PIN39_CONFIG_V << GPIO_PIN39_CONFIG_S) +#define GPIO_PIN39_CONFIG_V 0x00000003 +#define GPIO_PIN39_CONFIG_S 11 + +/* GPIO_PIN39_WAKEUP_ENABLE : R/W; bitpos: [10]; default: 0; + * set this bit to enable GPIO wakeup.(can only wakeup CPU from Light-sleep + * Mode) + */ + +#define GPIO_PIN39_WAKEUP_ENABLE (BIT(10)) +#define GPIO_PIN39_WAKEUP_ENABLE_M (GPIO_PIN39_WAKEUP_ENABLE_V << GPIO_PIN39_WAKEUP_ENABLE_S) +#define GPIO_PIN39_WAKEUP_ENABLE_V 0x00000001 +#define GPIO_PIN39_WAKEUP_ENABLE_S 10 + +/* GPIO_PIN39_INT_TYPE : R/W; bitpos: [9:7]; default: 0; + * set this value to choose interrupt mode. 0:disable GPIO interrupt. + * 1:trigger at posedge. 2:trigger at negedge. 3:trigger at any edge. + * 4:valid at low level. 5:valid at high level + */ + +#define GPIO_PIN39_INT_TYPE 0x00000007 +#define GPIO_PIN39_INT_TYPE_M (GPIO_PIN39_INT_TYPE_V << GPIO_PIN39_INT_TYPE_S) +#define GPIO_PIN39_INT_TYPE_V 0x00000007 +#define GPIO_PIN39_INT_TYPE_S 7 + +/* GPIO_PIN39_SYNC1_BYPASS : R/W; bitpos: [4:3]; default: 0; + * set GPIO input_sync1 signal mode. 0:disable. 1:trigger at negedge. + * 2or3:trigger at posedge. + */ + +#define GPIO_PIN39_SYNC1_BYPASS 0x00000003 +#define GPIO_PIN39_SYNC1_BYPASS_M (GPIO_PIN39_SYNC1_BYPASS_V << GPIO_PIN39_SYNC1_BYPASS_S) +#define GPIO_PIN39_SYNC1_BYPASS_V 0x00000003 +#define GPIO_PIN39_SYNC1_BYPASS_S 3 + +/* GPIO_PIN39_PAD_DRIVER : R/W; bitpos: [2]; default: 0; + * set this bit to select pad driver. 1:open-drain. 0:normal. + */ + +#define GPIO_PIN39_PAD_DRIVER (BIT(2)) +#define GPIO_PIN39_PAD_DRIVER_M (GPIO_PIN39_PAD_DRIVER_V << GPIO_PIN39_PAD_DRIVER_S) +#define GPIO_PIN39_PAD_DRIVER_V 0x00000001 +#define GPIO_PIN39_PAD_DRIVER_S 2 + +/* GPIO_PIN39_SYNC2_BYPASS : R/W; bitpos: [1:0]; default: 0; + * set GPIO input_sync2 signal mode. 0:disable. 1:trigger at negedge. + * 2or3:trigger at posedge. + */ + +#define GPIO_PIN39_SYNC2_BYPASS 0x00000003 +#define GPIO_PIN39_SYNC2_BYPASS_M (GPIO_PIN39_SYNC2_BYPASS_V << GPIO_PIN39_SYNC2_BYPASS_S) +#define GPIO_PIN39_SYNC2_BYPASS_V 0x00000003 +#define GPIO_PIN39_SYNC2_BYPASS_S 0 + +/* GPIO_PIN40_REG register + * GPIO pin configuration register + */ + +#define GPIO_PIN40_REG (DR_REG_GPIO_BASE + 0x114) + +/* GPIO_PIN40_INT_ENA : R/W; bitpos: [17:13]; default: 0; + * set bit 13 to enable CPU interrupt. set bit 14 to enable CPU(not + * shielded) interrupt. + */ + +#define GPIO_PIN40_INT_ENA 0x0000001f +#define GPIO_PIN40_INT_ENA_M (GPIO_PIN40_INT_ENA_V << GPIO_PIN40_INT_ENA_S) +#define GPIO_PIN40_INT_ENA_V 0x0000001f +#define GPIO_PIN40_INT_ENA_S 13 + +/* GPIO_PIN40_CONFIG : R/W; bitpos: [12:11]; default: 0; + * reserved + */ + +#define GPIO_PIN40_CONFIG 0x00000003 +#define GPIO_PIN40_CONFIG_M (GPIO_PIN40_CONFIG_V << GPIO_PIN40_CONFIG_S) +#define GPIO_PIN40_CONFIG_V 0x00000003 +#define GPIO_PIN40_CONFIG_S 11 + +/* GPIO_PIN40_WAKEUP_ENABLE : R/W; bitpos: [10]; default: 0; + * set this bit to enable GPIO wakeup.(can only wakeup CPU from Light-sleep + * Mode) + */ + +#define GPIO_PIN40_WAKEUP_ENABLE (BIT(10)) +#define GPIO_PIN40_WAKEUP_ENABLE_M (GPIO_PIN40_WAKEUP_ENABLE_V << GPIO_PIN40_WAKEUP_ENABLE_S) +#define GPIO_PIN40_WAKEUP_ENABLE_V 0x00000001 +#define GPIO_PIN40_WAKEUP_ENABLE_S 10 + +/* GPIO_PIN40_INT_TYPE : R/W; bitpos: [9:7]; default: 0; + * set this value to choose interrupt mode. 0:disable GPIO interrupt. + * 1:trigger at posedge. 2:trigger at negedge. 3:trigger at any edge. + * 4:valid at low level. 5:valid at high level + */ + +#define GPIO_PIN40_INT_TYPE 0x00000007 +#define GPIO_PIN40_INT_TYPE_M (GPIO_PIN40_INT_TYPE_V << GPIO_PIN40_INT_TYPE_S) +#define GPIO_PIN40_INT_TYPE_V 0x00000007 +#define GPIO_PIN40_INT_TYPE_S 7 + +/* GPIO_PIN40_SYNC1_BYPASS : R/W; bitpos: [4:3]; default: 0; + * set GPIO input_sync1 signal mode. 0:disable. 1:trigger at negedge. + * 2or3:trigger at posedge. + */ + +#define GPIO_PIN40_SYNC1_BYPASS 0x00000003 +#define GPIO_PIN40_SYNC1_BYPASS_M (GPIO_PIN40_SYNC1_BYPASS_V << GPIO_PIN40_SYNC1_BYPASS_S) +#define GPIO_PIN40_SYNC1_BYPASS_V 0x00000003 +#define GPIO_PIN40_SYNC1_BYPASS_S 3 + +/* GPIO_PIN40_PAD_DRIVER : R/W; bitpos: [2]; default: 0; + * set this bit to select pad driver. 1:open-drain. 0:normal. + */ + +#define GPIO_PIN40_PAD_DRIVER (BIT(2)) +#define GPIO_PIN40_PAD_DRIVER_M (GPIO_PIN40_PAD_DRIVER_V << GPIO_PIN40_PAD_DRIVER_S) +#define GPIO_PIN40_PAD_DRIVER_V 0x00000001 +#define GPIO_PIN40_PAD_DRIVER_S 2 + +/* GPIO_PIN40_SYNC2_BYPASS : R/W; bitpos: [1:0]; default: 0; + * set GPIO input_sync2 signal mode. 0:disable. 1:trigger at negedge. + * 2or3:trigger at posedge. + */ + +#define GPIO_PIN40_SYNC2_BYPASS 0x00000003 +#define GPIO_PIN40_SYNC2_BYPASS_M (GPIO_PIN40_SYNC2_BYPASS_V << GPIO_PIN40_SYNC2_BYPASS_S) +#define GPIO_PIN40_SYNC2_BYPASS_V 0x00000003 +#define GPIO_PIN40_SYNC2_BYPASS_S 0 + +/* GPIO_PIN41_REG register + * GPIO pin configuration register + */ + +#define GPIO_PIN41_REG (DR_REG_GPIO_BASE + 0x118) + +/* GPIO_PIN41_INT_ENA : R/W; bitpos: [17:13]; default: 0; + * set bit 13 to enable CPU interrupt. set bit 14 to enable CPU(not + * shielded) interrupt. + */ + +#define GPIO_PIN41_INT_ENA 0x0000001f +#define GPIO_PIN41_INT_ENA_M (GPIO_PIN41_INT_ENA_V << GPIO_PIN41_INT_ENA_S) +#define GPIO_PIN41_INT_ENA_V 0x0000001f +#define GPIO_PIN41_INT_ENA_S 13 + +/* GPIO_PIN41_CONFIG : R/W; bitpos: [12:11]; default: 0; + * reserved + */ + +#define GPIO_PIN41_CONFIG 0x00000003 +#define GPIO_PIN41_CONFIG_M (GPIO_PIN41_CONFIG_V << GPIO_PIN41_CONFIG_S) +#define GPIO_PIN41_CONFIG_V 0x00000003 +#define GPIO_PIN41_CONFIG_S 11 + +/* GPIO_PIN41_WAKEUP_ENABLE : R/W; bitpos: [10]; default: 0; + * set this bit to enable GPIO wakeup.(can only wakeup CPU from Light-sleep + * Mode) + */ + +#define GPIO_PIN41_WAKEUP_ENABLE (BIT(10)) +#define GPIO_PIN41_WAKEUP_ENABLE_M (GPIO_PIN41_WAKEUP_ENABLE_V << GPIO_PIN41_WAKEUP_ENABLE_S) +#define GPIO_PIN41_WAKEUP_ENABLE_V 0x00000001 +#define GPIO_PIN41_WAKEUP_ENABLE_S 10 + +/* GPIO_PIN41_INT_TYPE : R/W; bitpos: [9:7]; default: 0; + * set this value to choose interrupt mode. 0:disable GPIO interrupt. + * 1:trigger at posedge. 2:trigger at negedge. 3:trigger at any edge. + * 4:valid at low level. 5:valid at high level + */ + +#define GPIO_PIN41_INT_TYPE 0x00000007 +#define GPIO_PIN41_INT_TYPE_M (GPIO_PIN41_INT_TYPE_V << GPIO_PIN41_INT_TYPE_S) +#define GPIO_PIN41_INT_TYPE_V 0x00000007 +#define GPIO_PIN41_INT_TYPE_S 7 + +/* GPIO_PIN41_SYNC1_BYPASS : R/W; bitpos: [4:3]; default: 0; + * set GPIO input_sync1 signal mode. 0:disable. 1:trigger at negedge. + * 2or3:trigger at posedge. + */ + +#define GPIO_PIN41_SYNC1_BYPASS 0x00000003 +#define GPIO_PIN41_SYNC1_BYPASS_M (GPIO_PIN41_SYNC1_BYPASS_V << GPIO_PIN41_SYNC1_BYPASS_S) +#define GPIO_PIN41_SYNC1_BYPASS_V 0x00000003 +#define GPIO_PIN41_SYNC1_BYPASS_S 3 + +/* GPIO_PIN41_PAD_DRIVER : R/W; bitpos: [2]; default: 0; + * set this bit to select pad driver. 1:open-drain. 0:normal. + */ + +#define GPIO_PIN41_PAD_DRIVER (BIT(2)) +#define GPIO_PIN41_PAD_DRIVER_M (GPIO_PIN41_PAD_DRIVER_V << GPIO_PIN41_PAD_DRIVER_S) +#define GPIO_PIN41_PAD_DRIVER_V 0x00000001 +#define GPIO_PIN41_PAD_DRIVER_S 2 + +/* GPIO_PIN41_SYNC2_BYPASS : R/W; bitpos: [1:0]; default: 0; + * set GPIO input_sync2 signal mode. 0:disable. 1:trigger at negedge. + * 2or3:trigger at posedge. + */ + +#define GPIO_PIN41_SYNC2_BYPASS 0x00000003 +#define GPIO_PIN41_SYNC2_BYPASS_M (GPIO_PIN41_SYNC2_BYPASS_V << GPIO_PIN41_SYNC2_BYPASS_S) +#define GPIO_PIN41_SYNC2_BYPASS_V 0x00000003 +#define GPIO_PIN41_SYNC2_BYPASS_S 0 + +/* GPIO_PIN42_REG register + * GPIO pin configuration register + */ + +#define GPIO_PIN42_REG (DR_REG_GPIO_BASE + 0x11c) + +/* GPIO_PIN42_INT_ENA : R/W; bitpos: [17:13]; default: 0; + * set bit 13 to enable CPU interrupt. set bit 14 to enable CPU(not + * shielded) interrupt. + */ + +#define GPIO_PIN42_INT_ENA 0x0000001f +#define GPIO_PIN42_INT_ENA_M (GPIO_PIN42_INT_ENA_V << GPIO_PIN42_INT_ENA_S) +#define GPIO_PIN42_INT_ENA_V 0x0000001f +#define GPIO_PIN42_INT_ENA_S 13 + +/* GPIO_PIN42_CONFIG : R/W; bitpos: [12:11]; default: 0; + * reserved + */ + +#define GPIO_PIN42_CONFIG 0x00000003 +#define GPIO_PIN42_CONFIG_M (GPIO_PIN42_CONFIG_V << GPIO_PIN42_CONFIG_S) +#define GPIO_PIN42_CONFIG_V 0x00000003 +#define GPIO_PIN42_CONFIG_S 11 + +/* GPIO_PIN42_WAKEUP_ENABLE : R/W; bitpos: [10]; default: 0; + * set this bit to enable GPIO wakeup.(can only wakeup CPU from Light-sleep + * Mode) + */ + +#define GPIO_PIN42_WAKEUP_ENABLE (BIT(10)) +#define GPIO_PIN42_WAKEUP_ENABLE_M (GPIO_PIN42_WAKEUP_ENABLE_V << GPIO_PIN42_WAKEUP_ENABLE_S) +#define GPIO_PIN42_WAKEUP_ENABLE_V 0x00000001 +#define GPIO_PIN42_WAKEUP_ENABLE_S 10 + +/* GPIO_PIN42_INT_TYPE : R/W; bitpos: [9:7]; default: 0; + * set this value to choose interrupt mode. 0:disable GPIO interrupt. + * 1:trigger at posedge. 2:trigger at negedge. 3:trigger at any edge. + * 4:valid at low level. 5:valid at high level + */ + +#define GPIO_PIN42_INT_TYPE 0x00000007 +#define GPIO_PIN42_INT_TYPE_M (GPIO_PIN42_INT_TYPE_V << GPIO_PIN42_INT_TYPE_S) +#define GPIO_PIN42_INT_TYPE_V 0x00000007 +#define GPIO_PIN42_INT_TYPE_S 7 + +/* GPIO_PIN42_SYNC1_BYPASS : R/W; bitpos: [4:3]; default: 0; + * set GPIO input_sync1 signal mode. 0:disable. 1:trigger at negedge. + * 2or3:trigger at posedge. + */ + +#define GPIO_PIN42_SYNC1_BYPASS 0x00000003 +#define GPIO_PIN42_SYNC1_BYPASS_M (GPIO_PIN42_SYNC1_BYPASS_V << GPIO_PIN42_SYNC1_BYPASS_S) +#define GPIO_PIN42_SYNC1_BYPASS_V 0x00000003 +#define GPIO_PIN42_SYNC1_BYPASS_S 3 + +/* GPIO_PIN42_PAD_DRIVER : R/W; bitpos: [2]; default: 0; + * set this bit to select pad driver. 1:open-drain. 0:normal. + */ + +#define GPIO_PIN42_PAD_DRIVER (BIT(2)) +#define GPIO_PIN42_PAD_DRIVER_M (GPIO_PIN42_PAD_DRIVER_V << GPIO_PIN42_PAD_DRIVER_S) +#define GPIO_PIN42_PAD_DRIVER_V 0x00000001 +#define GPIO_PIN42_PAD_DRIVER_S 2 + +/* GPIO_PIN42_SYNC2_BYPASS : R/W; bitpos: [1:0]; default: 0; + * set GPIO input_sync2 signal mode. 0:disable. 1:trigger at negedge. + * 2or3:trigger at posedge. + */ + +#define GPIO_PIN42_SYNC2_BYPASS 0x00000003 +#define GPIO_PIN42_SYNC2_BYPASS_M (GPIO_PIN42_SYNC2_BYPASS_V << GPIO_PIN42_SYNC2_BYPASS_S) +#define GPIO_PIN42_SYNC2_BYPASS_V 0x00000003 +#define GPIO_PIN42_SYNC2_BYPASS_S 0 + +/* GPIO_PIN43_REG register + * GPIO pin configuration register + */ + +#define GPIO_PIN43_REG (DR_REG_GPIO_BASE + 0x120) + +/* GPIO_PIN43_INT_ENA : R/W; bitpos: [17:13]; default: 0; + * set bit 13 to enable CPU interrupt. set bit 14 to enable CPU(not + * shielded) interrupt. + */ + +#define GPIO_PIN43_INT_ENA 0x0000001f +#define GPIO_PIN43_INT_ENA_M (GPIO_PIN43_INT_ENA_V << GPIO_PIN43_INT_ENA_S) +#define GPIO_PIN43_INT_ENA_V 0x0000001f +#define GPIO_PIN43_INT_ENA_S 13 + +/* GPIO_PIN43_CONFIG : R/W; bitpos: [12:11]; default: 0; + * reserved + */ + +#define GPIO_PIN43_CONFIG 0x00000003 +#define GPIO_PIN43_CONFIG_M (GPIO_PIN43_CONFIG_V << GPIO_PIN43_CONFIG_S) +#define GPIO_PIN43_CONFIG_V 0x00000003 +#define GPIO_PIN43_CONFIG_S 11 + +/* GPIO_PIN43_WAKEUP_ENABLE : R/W; bitpos: [10]; default: 0; + * set this bit to enable GPIO wakeup.(can only wakeup CPU from Light-sleep + * Mode) + */ + +#define GPIO_PIN43_WAKEUP_ENABLE (BIT(10)) +#define GPIO_PIN43_WAKEUP_ENABLE_M (GPIO_PIN43_WAKEUP_ENABLE_V << GPIO_PIN43_WAKEUP_ENABLE_S) +#define GPIO_PIN43_WAKEUP_ENABLE_V 0x00000001 +#define GPIO_PIN43_WAKEUP_ENABLE_S 10 + +/* GPIO_PIN43_INT_TYPE : R/W; bitpos: [9:7]; default: 0; + * set this value to choose interrupt mode. 0:disable GPIO interrupt. + * 1:trigger at posedge. 2:trigger at negedge. 3:trigger at any edge. + * 4:valid at low level. 5:valid at high level + */ + +#define GPIO_PIN43_INT_TYPE 0x00000007 +#define GPIO_PIN43_INT_TYPE_M (GPIO_PIN43_INT_TYPE_V << GPIO_PIN43_INT_TYPE_S) +#define GPIO_PIN43_INT_TYPE_V 0x00000007 +#define GPIO_PIN43_INT_TYPE_S 7 + +/* GPIO_PIN43_SYNC1_BYPASS : R/W; bitpos: [4:3]; default: 0; + * set GPIO input_sync1 signal mode. 0:disable. 1:trigger at negedge. + * 2or3:trigger at posedge. + */ + +#define GPIO_PIN43_SYNC1_BYPASS 0x00000003 +#define GPIO_PIN43_SYNC1_BYPASS_M (GPIO_PIN43_SYNC1_BYPASS_V << GPIO_PIN43_SYNC1_BYPASS_S) +#define GPIO_PIN43_SYNC1_BYPASS_V 0x00000003 +#define GPIO_PIN43_SYNC1_BYPASS_S 3 + +/* GPIO_PIN43_PAD_DRIVER : R/W; bitpos: [2]; default: 0; + * set this bit to select pad driver. 1:open-drain. 0:normal. + */ + +#define GPIO_PIN43_PAD_DRIVER (BIT(2)) +#define GPIO_PIN43_PAD_DRIVER_M (GPIO_PIN43_PAD_DRIVER_V << GPIO_PIN43_PAD_DRIVER_S) +#define GPIO_PIN43_PAD_DRIVER_V 0x00000001 +#define GPIO_PIN43_PAD_DRIVER_S 2 + +/* GPIO_PIN43_SYNC2_BYPASS : R/W; bitpos: [1:0]; default: 0; + * set GPIO input_sync2 signal mode. 0:disable. 1:trigger at negedge. + * 2or3:trigger at posedge. + */ + +#define GPIO_PIN43_SYNC2_BYPASS 0x00000003 +#define GPIO_PIN43_SYNC2_BYPASS_M (GPIO_PIN43_SYNC2_BYPASS_V << GPIO_PIN43_SYNC2_BYPASS_S) +#define GPIO_PIN43_SYNC2_BYPASS_V 0x00000003 +#define GPIO_PIN43_SYNC2_BYPASS_S 0 + +/* GPIO_PIN44_REG register + * GPIO pin configuration register + */ + +#define GPIO_PIN44_REG (DR_REG_GPIO_BASE + 0x124) + +/* GPIO_PIN44_INT_ENA : R/W; bitpos: [17:13]; default: 0; + * set bit 13 to enable CPU interrupt. set bit 14 to enable CPU(not + * shielded) interrupt. + */ + +#define GPIO_PIN44_INT_ENA 0x0000001f +#define GPIO_PIN44_INT_ENA_M (GPIO_PIN44_INT_ENA_V << GPIO_PIN44_INT_ENA_S) +#define GPIO_PIN44_INT_ENA_V 0x0000001f +#define GPIO_PIN44_INT_ENA_S 13 + +/* GPIO_PIN44_CONFIG : R/W; bitpos: [12:11]; default: 0; + * reserved + */ + +#define GPIO_PIN44_CONFIG 0x00000003 +#define GPIO_PIN44_CONFIG_M (GPIO_PIN44_CONFIG_V << GPIO_PIN44_CONFIG_S) +#define GPIO_PIN44_CONFIG_V 0x00000003 +#define GPIO_PIN44_CONFIG_S 11 + +/* GPIO_PIN44_WAKEUP_ENABLE : R/W; bitpos: [10]; default: 0; + * set this bit to enable GPIO wakeup.(can only wakeup CPU from Light-sleep + * Mode) + */ + +#define GPIO_PIN44_WAKEUP_ENABLE (BIT(10)) +#define GPIO_PIN44_WAKEUP_ENABLE_M (GPIO_PIN44_WAKEUP_ENABLE_V << GPIO_PIN44_WAKEUP_ENABLE_S) +#define GPIO_PIN44_WAKEUP_ENABLE_V 0x00000001 +#define GPIO_PIN44_WAKEUP_ENABLE_S 10 + +/* GPIO_PIN44_INT_TYPE : R/W; bitpos: [9:7]; default: 0; + * set this value to choose interrupt mode. 0:disable GPIO interrupt. + * 1:trigger at posedge. 2:trigger at negedge. 3:trigger at any edge. + * 4:valid at low level. 5:valid at high level + */ + +#define GPIO_PIN44_INT_TYPE 0x00000007 +#define GPIO_PIN44_INT_TYPE_M (GPIO_PIN44_INT_TYPE_V << GPIO_PIN44_INT_TYPE_S) +#define GPIO_PIN44_INT_TYPE_V 0x00000007 +#define GPIO_PIN44_INT_TYPE_S 7 + +/* GPIO_PIN44_SYNC1_BYPASS : R/W; bitpos: [4:3]; default: 0; + * set GPIO input_sync1 signal mode. 0:disable. 1:trigger at negedge. + * 2or3:trigger at posedge. + */ + +#define GPIO_PIN44_SYNC1_BYPASS 0x00000003 +#define GPIO_PIN44_SYNC1_BYPASS_M (GPIO_PIN44_SYNC1_BYPASS_V << GPIO_PIN44_SYNC1_BYPASS_S) +#define GPIO_PIN44_SYNC1_BYPASS_V 0x00000003 +#define GPIO_PIN44_SYNC1_BYPASS_S 3 + +/* GPIO_PIN44_PAD_DRIVER : R/W; bitpos: [2]; default: 0; + * set this bit to select pad driver. 1:open-drain. 0:normal. + */ + +#define GPIO_PIN44_PAD_DRIVER (BIT(2)) +#define GPIO_PIN44_PAD_DRIVER_M (GPIO_PIN44_PAD_DRIVER_V << GPIO_PIN44_PAD_DRIVER_S) +#define GPIO_PIN44_PAD_DRIVER_V 0x00000001 +#define GPIO_PIN44_PAD_DRIVER_S 2 + +/* GPIO_PIN44_SYNC2_BYPASS : R/W; bitpos: [1:0]; default: 0; + * set GPIO input_sync2 signal mode. 0:disable. 1:trigger at negedge. + * 2or3:trigger at posedge. + */ + +#define GPIO_PIN44_SYNC2_BYPASS 0x00000003 +#define GPIO_PIN44_SYNC2_BYPASS_M (GPIO_PIN44_SYNC2_BYPASS_V << GPIO_PIN44_SYNC2_BYPASS_S) +#define GPIO_PIN44_SYNC2_BYPASS_V 0x00000003 +#define GPIO_PIN44_SYNC2_BYPASS_S 0 + +/* GPIO_PIN45_REG register + * GPIO pin configuration register + */ + +#define GPIO_PIN45_REG (DR_REG_GPIO_BASE + 0x128) + +/* GPIO_PIN45_INT_ENA : R/W; bitpos: [17:13]; default: 0; + * set bit 13 to enable CPU interrupt. set bit 14 to enable CPU(not + * shielded) interrupt. + */ + +#define GPIO_PIN45_INT_ENA 0x0000001f +#define GPIO_PIN45_INT_ENA_M (GPIO_PIN45_INT_ENA_V << GPIO_PIN45_INT_ENA_S) +#define GPIO_PIN45_INT_ENA_V 0x0000001f +#define GPIO_PIN45_INT_ENA_S 13 + +/* GPIO_PIN45_CONFIG : R/W; bitpos: [12:11]; default: 0; + * reserved + */ + +#define GPIO_PIN45_CONFIG 0x00000003 +#define GPIO_PIN45_CONFIG_M (GPIO_PIN45_CONFIG_V << GPIO_PIN45_CONFIG_S) +#define GPIO_PIN45_CONFIG_V 0x00000003 +#define GPIO_PIN45_CONFIG_S 11 + +/* GPIO_PIN45_WAKEUP_ENABLE : R/W; bitpos: [10]; default: 0; + * set this bit to enable GPIO wakeup.(can only wakeup CPU from Light-sleep + * Mode) + */ + +#define GPIO_PIN45_WAKEUP_ENABLE (BIT(10)) +#define GPIO_PIN45_WAKEUP_ENABLE_M (GPIO_PIN45_WAKEUP_ENABLE_V << GPIO_PIN45_WAKEUP_ENABLE_S) +#define GPIO_PIN45_WAKEUP_ENABLE_V 0x00000001 +#define GPIO_PIN45_WAKEUP_ENABLE_S 10 + +/* GPIO_PIN45_INT_TYPE : R/W; bitpos: [9:7]; default: 0; + * set this value to choose interrupt mode. 0:disable GPIO interrupt. + * 1:trigger at posedge. 2:trigger at negedge. 3:trigger at any edge. + * 4:valid at low level. 5:valid at high level + */ + +#define GPIO_PIN45_INT_TYPE 0x00000007 +#define GPIO_PIN45_INT_TYPE_M (GPIO_PIN45_INT_TYPE_V << GPIO_PIN45_INT_TYPE_S) +#define GPIO_PIN45_INT_TYPE_V 0x00000007 +#define GPIO_PIN45_INT_TYPE_S 7 + +/* GPIO_PIN45_SYNC1_BYPASS : R/W; bitpos: [4:3]; default: 0; + * set GPIO input_sync1 signal mode. 0:disable. 1:trigger at negedge. + * 2or3:trigger at posedge. + */ + +#define GPIO_PIN45_SYNC1_BYPASS 0x00000003 +#define GPIO_PIN45_SYNC1_BYPASS_M (GPIO_PIN45_SYNC1_BYPASS_V << GPIO_PIN45_SYNC1_BYPASS_S) +#define GPIO_PIN45_SYNC1_BYPASS_V 0x00000003 +#define GPIO_PIN45_SYNC1_BYPASS_S 3 + +/* GPIO_PIN45_PAD_DRIVER : R/W; bitpos: [2]; default: 0; + * set this bit to select pad driver. 1:open-drain. 0:normal. + */ + +#define GPIO_PIN45_PAD_DRIVER (BIT(2)) +#define GPIO_PIN45_PAD_DRIVER_M (GPIO_PIN45_PAD_DRIVER_V << GPIO_PIN45_PAD_DRIVER_S) +#define GPIO_PIN45_PAD_DRIVER_V 0x00000001 +#define GPIO_PIN45_PAD_DRIVER_S 2 + +/* GPIO_PIN45_SYNC2_BYPASS : R/W; bitpos: [1:0]; default: 0; + * set GPIO input_sync2 signal mode. 0:disable. 1:trigger at negedge. + * 2or3:trigger at posedge. + */ + +#define GPIO_PIN45_SYNC2_BYPASS 0x00000003 +#define GPIO_PIN45_SYNC2_BYPASS_M (GPIO_PIN45_SYNC2_BYPASS_V << GPIO_PIN45_SYNC2_BYPASS_S) +#define GPIO_PIN45_SYNC2_BYPASS_V 0x00000003 +#define GPIO_PIN45_SYNC2_BYPASS_S 0 + +/* GPIO_PIN46_REG register + * GPIO pin configuration register + */ + +#define GPIO_PIN46_REG (DR_REG_GPIO_BASE + 0x12c) + +/* GPIO_PIN46_INT_ENA : R/W; bitpos: [17:13]; default: 0; + * set bit 13 to enable CPU interrupt. set bit 14 to enable CPU(not + * shielded) interrupt. + */ + +#define GPIO_PIN46_INT_ENA 0x0000001f +#define GPIO_PIN46_INT_ENA_M (GPIO_PIN46_INT_ENA_V << GPIO_PIN46_INT_ENA_S) +#define GPIO_PIN46_INT_ENA_V 0x0000001f +#define GPIO_PIN46_INT_ENA_S 13 + +/* GPIO_PIN46_CONFIG : R/W; bitpos: [12:11]; default: 0; + * reserved + */ + +#define GPIO_PIN46_CONFIG 0x00000003 +#define GPIO_PIN46_CONFIG_M (GPIO_PIN46_CONFIG_V << GPIO_PIN46_CONFIG_S) +#define GPIO_PIN46_CONFIG_V 0x00000003 +#define GPIO_PIN46_CONFIG_S 11 + +/* GPIO_PIN46_WAKEUP_ENABLE : R/W; bitpos: [10]; default: 0; + * set this bit to enable GPIO wakeup.(can only wakeup CPU from Light-sleep + * Mode) + */ + +#define GPIO_PIN46_WAKEUP_ENABLE (BIT(10)) +#define GPIO_PIN46_WAKEUP_ENABLE_M (GPIO_PIN46_WAKEUP_ENABLE_V << GPIO_PIN46_WAKEUP_ENABLE_S) +#define GPIO_PIN46_WAKEUP_ENABLE_V 0x00000001 +#define GPIO_PIN46_WAKEUP_ENABLE_S 10 + +/* GPIO_PIN46_INT_TYPE : R/W; bitpos: [9:7]; default: 0; + * set this value to choose interrupt mode. 0:disable GPIO interrupt. + * 1:trigger at posedge. 2:trigger at negedge. 3:trigger at any edge. + * 4:valid at low level. 5:valid at high level + */ + +#define GPIO_PIN46_INT_TYPE 0x00000007 +#define GPIO_PIN46_INT_TYPE_M (GPIO_PIN46_INT_TYPE_V << GPIO_PIN46_INT_TYPE_S) +#define GPIO_PIN46_INT_TYPE_V 0x00000007 +#define GPIO_PIN46_INT_TYPE_S 7 + +/* GPIO_PIN46_SYNC1_BYPASS : R/W; bitpos: [4:3]; default: 0; + * set GPIO input_sync1 signal mode. 0:disable. 1:trigger at negedge. + * 2or3:trigger at posedge. + */ + +#define GPIO_PIN46_SYNC1_BYPASS 0x00000003 +#define GPIO_PIN46_SYNC1_BYPASS_M (GPIO_PIN46_SYNC1_BYPASS_V << GPIO_PIN46_SYNC1_BYPASS_S) +#define GPIO_PIN46_SYNC1_BYPASS_V 0x00000003 +#define GPIO_PIN46_SYNC1_BYPASS_S 3 + +/* GPIO_PIN46_PAD_DRIVER : R/W; bitpos: [2]; default: 0; + * set this bit to select pad driver. 1:open-drain. 0:normal. + */ + +#define GPIO_PIN46_PAD_DRIVER (BIT(2)) +#define GPIO_PIN46_PAD_DRIVER_M (GPIO_PIN46_PAD_DRIVER_V << GPIO_PIN46_PAD_DRIVER_S) +#define GPIO_PIN46_PAD_DRIVER_V 0x00000001 +#define GPIO_PIN46_PAD_DRIVER_S 2 + +/* GPIO_PIN46_SYNC2_BYPASS : R/W; bitpos: [1:0]; default: 0; + * set GPIO input_sync2 signal mode. 0:disable. 1:trigger at negedge. + * 2or3:trigger at posedge. + */ + +#define GPIO_PIN46_SYNC2_BYPASS 0x00000003 +#define GPIO_PIN46_SYNC2_BYPASS_M (GPIO_PIN46_SYNC2_BYPASS_V << GPIO_PIN46_SYNC2_BYPASS_S) +#define GPIO_PIN46_SYNC2_BYPASS_V 0x00000003 +#define GPIO_PIN46_SYNC2_BYPASS_S 0 + +/* GPIO_PIN47_REG register + * GPIO pin configuration register + */ + +#define GPIO_PIN47_REG (DR_REG_GPIO_BASE + 0x130) + +/* GPIO_PIN47_INT_ENA : R/W; bitpos: [17:13]; default: 0; + * set bit 13 to enable CPU interrupt. set bit 14 to enable CPU(not + * shielded) interrupt. + */ + +#define GPIO_PIN47_INT_ENA 0x0000001f +#define GPIO_PIN47_INT_ENA_M (GPIO_PIN47_INT_ENA_V << GPIO_PIN47_INT_ENA_S) +#define GPIO_PIN47_INT_ENA_V 0x0000001f +#define GPIO_PIN47_INT_ENA_S 13 + +/* GPIO_PIN47_CONFIG : R/W; bitpos: [12:11]; default: 0; + * reserved + */ + +#define GPIO_PIN47_CONFIG 0x00000003 +#define GPIO_PIN47_CONFIG_M (GPIO_PIN47_CONFIG_V << GPIO_PIN47_CONFIG_S) +#define GPIO_PIN47_CONFIG_V 0x00000003 +#define GPIO_PIN47_CONFIG_S 11 + +/* GPIO_PIN47_WAKEUP_ENABLE : R/W; bitpos: [10]; default: 0; + * set this bit to enable GPIO wakeup.(can only wakeup CPU from Light-sleep + * Mode) + */ + +#define GPIO_PIN47_WAKEUP_ENABLE (BIT(10)) +#define GPIO_PIN47_WAKEUP_ENABLE_M (GPIO_PIN47_WAKEUP_ENABLE_V << GPIO_PIN47_WAKEUP_ENABLE_S) +#define GPIO_PIN47_WAKEUP_ENABLE_V 0x00000001 +#define GPIO_PIN47_WAKEUP_ENABLE_S 10 + +/* GPIO_PIN47_INT_TYPE : R/W; bitpos: [9:7]; default: 0; + * set this value to choose interrupt mode. 0:disable GPIO interrupt. + * 1:trigger at posedge. 2:trigger at negedge. 3:trigger at any edge. + * 4:valid at low level. 5:valid at high level + */ + +#define GPIO_PIN47_INT_TYPE 0x00000007 +#define GPIO_PIN47_INT_TYPE_M (GPIO_PIN47_INT_TYPE_V << GPIO_PIN47_INT_TYPE_S) +#define GPIO_PIN47_INT_TYPE_V 0x00000007 +#define GPIO_PIN47_INT_TYPE_S 7 + +/* GPIO_PIN47_SYNC1_BYPASS : R/W; bitpos: [4:3]; default: 0; + * set GPIO input_sync1 signal mode. 0:disable. 1:trigger at negedge. + * 2or3:trigger at posedge. + */ + +#define GPIO_PIN47_SYNC1_BYPASS 0x00000003 +#define GPIO_PIN47_SYNC1_BYPASS_M (GPIO_PIN47_SYNC1_BYPASS_V << GPIO_PIN47_SYNC1_BYPASS_S) +#define GPIO_PIN47_SYNC1_BYPASS_V 0x00000003 +#define GPIO_PIN47_SYNC1_BYPASS_S 3 + +/* GPIO_PIN47_PAD_DRIVER : R/W; bitpos: [2]; default: 0; + * set this bit to select pad driver. 1:open-drain. 0:normal. + */ + +#define GPIO_PIN47_PAD_DRIVER (BIT(2)) +#define GPIO_PIN47_PAD_DRIVER_M (GPIO_PIN47_PAD_DRIVER_V << GPIO_PIN47_PAD_DRIVER_S) +#define GPIO_PIN47_PAD_DRIVER_V 0x00000001 +#define GPIO_PIN47_PAD_DRIVER_S 2 + +/* GPIO_PIN47_SYNC2_BYPASS : R/W; bitpos: [1:0]; default: 0; + * set GPIO input_sync2 signal mode. 0:disable. 1:trigger at negedge. + * 2or3:trigger at posedge. + */ + +#define GPIO_PIN47_SYNC2_BYPASS 0x00000003 +#define GPIO_PIN47_SYNC2_BYPASS_M (GPIO_PIN47_SYNC2_BYPASS_V << GPIO_PIN47_SYNC2_BYPASS_S) +#define GPIO_PIN47_SYNC2_BYPASS_V 0x00000003 +#define GPIO_PIN47_SYNC2_BYPASS_S 0 + +/* GPIO_PIN48_REG register + * GPIO pin configuration register + */ + +#define GPIO_PIN48_REG (DR_REG_GPIO_BASE + 0x134) + +/* GPIO_PIN48_INT_ENA : R/W; bitpos: [17:13]; default: 0; + * set bit 13 to enable CPU interrupt. set bit 14 to enable CPU(not + * shielded) interrupt. + */ + +#define GPIO_PIN48_INT_ENA 0x0000001f +#define GPIO_PIN48_INT_ENA_M (GPIO_PIN48_INT_ENA_V << GPIO_PIN48_INT_ENA_S) +#define GPIO_PIN48_INT_ENA_V 0x0000001f +#define GPIO_PIN48_INT_ENA_S 13 + +/* GPIO_PIN48_CONFIG : R/W; bitpos: [12:11]; default: 0; + * reserved + */ + +#define GPIO_PIN48_CONFIG 0x00000003 +#define GPIO_PIN48_CONFIG_M (GPIO_PIN48_CONFIG_V << GPIO_PIN48_CONFIG_S) +#define GPIO_PIN48_CONFIG_V 0x00000003 +#define GPIO_PIN48_CONFIG_S 11 + +/* GPIO_PIN48_WAKEUP_ENABLE : R/W; bitpos: [10]; default: 0; + * set this bit to enable GPIO wakeup.(can only wakeup CPU from Light-sleep + * Mode) + */ + +#define GPIO_PIN48_WAKEUP_ENABLE (BIT(10)) +#define GPIO_PIN48_WAKEUP_ENABLE_M (GPIO_PIN48_WAKEUP_ENABLE_V << GPIO_PIN48_WAKEUP_ENABLE_S) +#define GPIO_PIN48_WAKEUP_ENABLE_V 0x00000001 +#define GPIO_PIN48_WAKEUP_ENABLE_S 10 + +/* GPIO_PIN48_INT_TYPE : R/W; bitpos: [9:7]; default: 0; + * set this value to choose interrupt mode. 0:disable GPIO interrupt. + * 1:trigger at posedge. 2:trigger at negedge. 3:trigger at any edge. + * 4:valid at low level. 5:valid at high level + */ + +#define GPIO_PIN48_INT_TYPE 0x00000007 +#define GPIO_PIN48_INT_TYPE_M (GPIO_PIN48_INT_TYPE_V << GPIO_PIN48_INT_TYPE_S) +#define GPIO_PIN48_INT_TYPE_V 0x00000007 +#define GPIO_PIN48_INT_TYPE_S 7 + +/* GPIO_PIN48_SYNC1_BYPASS : R/W; bitpos: [4:3]; default: 0; + * set GPIO input_sync1 signal mode. 0:disable. 1:trigger at negedge. + * 2or3:trigger at posedge. + */ + +#define GPIO_PIN48_SYNC1_BYPASS 0x00000003 +#define GPIO_PIN48_SYNC1_BYPASS_M (GPIO_PIN48_SYNC1_BYPASS_V << GPIO_PIN48_SYNC1_BYPASS_S) +#define GPIO_PIN48_SYNC1_BYPASS_V 0x00000003 +#define GPIO_PIN48_SYNC1_BYPASS_S 3 + +/* GPIO_PIN48_PAD_DRIVER : R/W; bitpos: [2]; default: 0; + * set this bit to select pad driver. 1:open-drain. 0:normal. + */ + +#define GPIO_PIN48_PAD_DRIVER (BIT(2)) +#define GPIO_PIN48_PAD_DRIVER_M (GPIO_PIN48_PAD_DRIVER_V << GPIO_PIN48_PAD_DRIVER_S) +#define GPIO_PIN48_PAD_DRIVER_V 0x00000001 +#define GPIO_PIN48_PAD_DRIVER_S 2 + +/* GPIO_PIN48_SYNC2_BYPASS : R/W; bitpos: [1:0]; default: 0; + * set GPIO input_sync2 signal mode. 0:disable. 1:trigger at negedge. + * 2or3:trigger at posedge. + */ + +#define GPIO_PIN48_SYNC2_BYPASS 0x00000003 +#define GPIO_PIN48_SYNC2_BYPASS_M (GPIO_PIN48_SYNC2_BYPASS_V << GPIO_PIN48_SYNC2_BYPASS_S) +#define GPIO_PIN48_SYNC2_BYPASS_V 0x00000003 +#define GPIO_PIN48_SYNC2_BYPASS_S 0 + +/* GPIO_PIN49_REG register + * GPIO pin configuration register + */ + +#define GPIO_PIN49_REG (DR_REG_GPIO_BASE + 0x138) + +/* GPIO_PIN49_INT_ENA : R/W; bitpos: [17:13]; default: 0; + * set bit 13 to enable CPU interrupt. set bit 14 to enable CPU(not + * shielded) interrupt. + */ + +#define GPIO_PIN49_INT_ENA 0x0000001f +#define GPIO_PIN49_INT_ENA_M (GPIO_PIN49_INT_ENA_V << GPIO_PIN49_INT_ENA_S) +#define GPIO_PIN49_INT_ENA_V 0x0000001f +#define GPIO_PIN49_INT_ENA_S 13 + +/* GPIO_PIN49_CONFIG : R/W; bitpos: [12:11]; default: 0; + * reserved + */ + +#define GPIO_PIN49_CONFIG 0x00000003 +#define GPIO_PIN49_CONFIG_M (GPIO_PIN49_CONFIG_V << GPIO_PIN49_CONFIG_S) +#define GPIO_PIN49_CONFIG_V 0x00000003 +#define GPIO_PIN49_CONFIG_S 11 + +/* GPIO_PIN49_WAKEUP_ENABLE : R/W; bitpos: [10]; default: 0; + * set this bit to enable GPIO wakeup.(can only wakeup CPU from Light-sleep + * Mode) + */ + +#define GPIO_PIN49_WAKEUP_ENABLE (BIT(10)) +#define GPIO_PIN49_WAKEUP_ENABLE_M (GPIO_PIN49_WAKEUP_ENABLE_V << GPIO_PIN49_WAKEUP_ENABLE_S) +#define GPIO_PIN49_WAKEUP_ENABLE_V 0x00000001 +#define GPIO_PIN49_WAKEUP_ENABLE_S 10 + +/* GPIO_PIN49_INT_TYPE : R/W; bitpos: [9:7]; default: 0; + * set this value to choose interrupt mode. 0:disable GPIO interrupt. + * 1:trigger at posedge. 2:trigger at negedge. 3:trigger at any edge. + * 4:valid at low level. 5:valid at high level + */ + +#define GPIO_PIN49_INT_TYPE 0x00000007 +#define GPIO_PIN49_INT_TYPE_M (GPIO_PIN49_INT_TYPE_V << GPIO_PIN49_INT_TYPE_S) +#define GPIO_PIN49_INT_TYPE_V 0x00000007 +#define GPIO_PIN49_INT_TYPE_S 7 + +/* GPIO_PIN49_SYNC1_BYPASS : R/W; bitpos: [4:3]; default: 0; + * set GPIO input_sync1 signal mode. 0:disable. 1:trigger at negedge. + * 2or3:trigger at posedge. + */ + +#define GPIO_PIN49_SYNC1_BYPASS 0x00000003 +#define GPIO_PIN49_SYNC1_BYPASS_M (GPIO_PIN49_SYNC1_BYPASS_V << GPIO_PIN49_SYNC1_BYPASS_S) +#define GPIO_PIN49_SYNC1_BYPASS_V 0x00000003 +#define GPIO_PIN49_SYNC1_BYPASS_S 3 + +/* GPIO_PIN49_PAD_DRIVER : R/W; bitpos: [2]; default: 0; + * set this bit to select pad driver. 1:open-drain. 0:normal. + */ + +#define GPIO_PIN49_PAD_DRIVER (BIT(2)) +#define GPIO_PIN49_PAD_DRIVER_M (GPIO_PIN49_PAD_DRIVER_V << GPIO_PIN49_PAD_DRIVER_S) +#define GPIO_PIN49_PAD_DRIVER_V 0x00000001 +#define GPIO_PIN49_PAD_DRIVER_S 2 + +/* GPIO_PIN49_SYNC2_BYPASS : R/W; bitpos: [1:0]; default: 0; + * set GPIO input_sync2 signal mode. 0:disable. 1:trigger at negedge. + * 2or3:trigger at posedge. + */ + +#define GPIO_PIN49_SYNC2_BYPASS 0x00000003 +#define GPIO_PIN49_SYNC2_BYPASS_M (GPIO_PIN49_SYNC2_BYPASS_V << GPIO_PIN49_SYNC2_BYPASS_S) +#define GPIO_PIN49_SYNC2_BYPASS_V 0x00000003 +#define GPIO_PIN49_SYNC2_BYPASS_S 0 + +/* GPIO_PIN50_REG register + * GPIO pin configuration register + */ + +#define GPIO_PIN50_REG (DR_REG_GPIO_BASE + 0x13c) + +/* GPIO_PIN50_INT_ENA : R/W; bitpos: [17:13]; default: 0; + * set bit 13 to enable CPU interrupt. set bit 14 to enable CPU(not + * shielded) interrupt. + */ + +#define GPIO_PIN50_INT_ENA 0x0000001f +#define GPIO_PIN50_INT_ENA_M (GPIO_PIN50_INT_ENA_V << GPIO_PIN50_INT_ENA_S) +#define GPIO_PIN50_INT_ENA_V 0x0000001f +#define GPIO_PIN50_INT_ENA_S 13 + +/* GPIO_PIN50_CONFIG : R/W; bitpos: [12:11]; default: 0; + * reserved + */ + +#define GPIO_PIN50_CONFIG 0x00000003 +#define GPIO_PIN50_CONFIG_M (GPIO_PIN50_CONFIG_V << GPIO_PIN50_CONFIG_S) +#define GPIO_PIN50_CONFIG_V 0x00000003 +#define GPIO_PIN50_CONFIG_S 11 + +/* GPIO_PIN50_WAKEUP_ENABLE : R/W; bitpos: [10]; default: 0; + * set this bit to enable GPIO wakeup.(can only wakeup CPU from Light-sleep + * Mode) + */ + +#define GPIO_PIN50_WAKEUP_ENABLE (BIT(10)) +#define GPIO_PIN50_WAKEUP_ENABLE_M (GPIO_PIN50_WAKEUP_ENABLE_V << GPIO_PIN50_WAKEUP_ENABLE_S) +#define GPIO_PIN50_WAKEUP_ENABLE_V 0x00000001 +#define GPIO_PIN50_WAKEUP_ENABLE_S 10 + +/* GPIO_PIN50_INT_TYPE : R/W; bitpos: [9:7]; default: 0; + * set this value to choose interrupt mode. 0:disable GPIO interrupt. + * 1:trigger at posedge. 2:trigger at negedge. 3:trigger at any edge. + * 4:valid at low level. 5:valid at high level + */ + +#define GPIO_PIN50_INT_TYPE 0x00000007 +#define GPIO_PIN50_INT_TYPE_M (GPIO_PIN50_INT_TYPE_V << GPIO_PIN50_INT_TYPE_S) +#define GPIO_PIN50_INT_TYPE_V 0x00000007 +#define GPIO_PIN50_INT_TYPE_S 7 + +/* GPIO_PIN50_SYNC1_BYPASS : R/W; bitpos: [4:3]; default: 0; + * set GPIO input_sync1 signal mode. 0:disable. 1:trigger at negedge. + * 2or3:trigger at posedge. + */ + +#define GPIO_PIN50_SYNC1_BYPASS 0x00000003 +#define GPIO_PIN50_SYNC1_BYPASS_M (GPIO_PIN50_SYNC1_BYPASS_V << GPIO_PIN50_SYNC1_BYPASS_S) +#define GPIO_PIN50_SYNC1_BYPASS_V 0x00000003 +#define GPIO_PIN50_SYNC1_BYPASS_S 3 + +/* GPIO_PIN50_PAD_DRIVER : R/W; bitpos: [2]; default: 0; + * set this bit to select pad driver. 1:open-drain. 0:normal. + */ + +#define GPIO_PIN50_PAD_DRIVER (BIT(2)) +#define GPIO_PIN50_PAD_DRIVER_M (GPIO_PIN50_PAD_DRIVER_V << GPIO_PIN50_PAD_DRIVER_S) +#define GPIO_PIN50_PAD_DRIVER_V 0x00000001 +#define GPIO_PIN50_PAD_DRIVER_S 2 + +/* GPIO_PIN50_SYNC2_BYPASS : R/W; bitpos: [1:0]; default: 0; + * set GPIO input_sync2 signal mode. 0:disable. 1:trigger at negedge. + * 2or3:trigger at posedge. + */ + +#define GPIO_PIN50_SYNC2_BYPASS 0x00000003 +#define GPIO_PIN50_SYNC2_BYPASS_M (GPIO_PIN50_SYNC2_BYPASS_V << GPIO_PIN50_SYNC2_BYPASS_S) +#define GPIO_PIN50_SYNC2_BYPASS_V 0x00000003 +#define GPIO_PIN50_SYNC2_BYPASS_S 0 + +/* GPIO_PIN51_REG register + * GPIO pin configuration register + */ + +#define GPIO_PIN51_REG (DR_REG_GPIO_BASE + 0x140) + +/* GPIO_PIN51_INT_ENA : R/W; bitpos: [17:13]; default: 0; + * set bit 13 to enable CPU interrupt. set bit 14 to enable CPU(not + * shielded) interrupt. + */ + +#define GPIO_PIN51_INT_ENA 0x0000001f +#define GPIO_PIN51_INT_ENA_M (GPIO_PIN51_INT_ENA_V << GPIO_PIN51_INT_ENA_S) +#define GPIO_PIN51_INT_ENA_V 0x0000001f +#define GPIO_PIN51_INT_ENA_S 13 + +/* GPIO_PIN51_CONFIG : R/W; bitpos: [12:11]; default: 0; + * reserved + */ + +#define GPIO_PIN51_CONFIG 0x00000003 +#define GPIO_PIN51_CONFIG_M (GPIO_PIN51_CONFIG_V << GPIO_PIN51_CONFIG_S) +#define GPIO_PIN51_CONFIG_V 0x00000003 +#define GPIO_PIN51_CONFIG_S 11 + +/* GPIO_PIN51_WAKEUP_ENABLE : R/W; bitpos: [10]; default: 0; + * set this bit to enable GPIO wakeup.(can only wakeup CPU from Light-sleep + * Mode) + */ + +#define GPIO_PIN51_WAKEUP_ENABLE (BIT(10)) +#define GPIO_PIN51_WAKEUP_ENABLE_M (GPIO_PIN51_WAKEUP_ENABLE_V << GPIO_PIN51_WAKEUP_ENABLE_S) +#define GPIO_PIN51_WAKEUP_ENABLE_V 0x00000001 +#define GPIO_PIN51_WAKEUP_ENABLE_S 10 + +/* GPIO_PIN51_INT_TYPE : R/W; bitpos: [9:7]; default: 0; + * set this value to choose interrupt mode. 0:disable GPIO interrupt. + * 1:trigger at posedge. 2:trigger at negedge. 3:trigger at any edge. + * 4:valid at low level. 5:valid at high level + */ + +#define GPIO_PIN51_INT_TYPE 0x00000007 +#define GPIO_PIN51_INT_TYPE_M (GPIO_PIN51_INT_TYPE_V << GPIO_PIN51_INT_TYPE_S) +#define GPIO_PIN51_INT_TYPE_V 0x00000007 +#define GPIO_PIN51_INT_TYPE_S 7 + +/* GPIO_PIN51_SYNC1_BYPASS : R/W; bitpos: [4:3]; default: 0; + * set GPIO input_sync1 signal mode. 0:disable. 1:trigger at negedge. + * 2or3:trigger at posedge. + */ + +#define GPIO_PIN51_SYNC1_BYPASS 0x00000003 +#define GPIO_PIN51_SYNC1_BYPASS_M (GPIO_PIN51_SYNC1_BYPASS_V << GPIO_PIN51_SYNC1_BYPASS_S) +#define GPIO_PIN51_SYNC1_BYPASS_V 0x00000003 +#define GPIO_PIN51_SYNC1_BYPASS_S 3 + +/* GPIO_PIN51_PAD_DRIVER : R/W; bitpos: [2]; default: 0; + * set this bit to select pad driver. 1:open-drain. 0:normal. + */ + +#define GPIO_PIN51_PAD_DRIVER (BIT(2)) +#define GPIO_PIN51_PAD_DRIVER_M (GPIO_PIN51_PAD_DRIVER_V << GPIO_PIN51_PAD_DRIVER_S) +#define GPIO_PIN51_PAD_DRIVER_V 0x00000001 +#define GPIO_PIN51_PAD_DRIVER_S 2 + +/* GPIO_PIN51_SYNC2_BYPASS : R/W; bitpos: [1:0]; default: 0; + * set GPIO input_sync2 signal mode. 0:disable. 1:trigger at negedge. + * 2or3:trigger at posedge. + */ + +#define GPIO_PIN51_SYNC2_BYPASS 0x00000003 +#define GPIO_PIN51_SYNC2_BYPASS_M (GPIO_PIN51_SYNC2_BYPASS_V << GPIO_PIN51_SYNC2_BYPASS_S) +#define GPIO_PIN51_SYNC2_BYPASS_V 0x00000003 +#define GPIO_PIN51_SYNC2_BYPASS_S 0 + +/* GPIO_PIN52_REG register + * GPIO pin configuration register + */ + +#define GPIO_PIN52_REG (DR_REG_GPIO_BASE + 0x144) + +/* GPIO_PIN52_INT_ENA : R/W; bitpos: [17:13]; default: 0; + * set bit 13 to enable CPU interrupt. set bit 14 to enable CPU(not + * shielded) interrupt. + */ + +#define GPIO_PIN52_INT_ENA 0x0000001f +#define GPIO_PIN52_INT_ENA_M (GPIO_PIN52_INT_ENA_V << GPIO_PIN52_INT_ENA_S) +#define GPIO_PIN52_INT_ENA_V 0x0000001f +#define GPIO_PIN52_INT_ENA_S 13 + +/* GPIO_PIN52_CONFIG : R/W; bitpos: [12:11]; default: 0; + * reserved + */ + +#define GPIO_PIN52_CONFIG 0x00000003 +#define GPIO_PIN52_CONFIG_M (GPIO_PIN52_CONFIG_V << GPIO_PIN52_CONFIG_S) +#define GPIO_PIN52_CONFIG_V 0x00000003 +#define GPIO_PIN52_CONFIG_S 11 + +/* GPIO_PIN52_WAKEUP_ENABLE : R/W; bitpos: [10]; default: 0; + * set this bit to enable GPIO wakeup.(can only wakeup CPU from Light-sleep + * Mode) + */ + +#define GPIO_PIN52_WAKEUP_ENABLE (BIT(10)) +#define GPIO_PIN52_WAKEUP_ENABLE_M (GPIO_PIN52_WAKEUP_ENABLE_V << GPIO_PIN52_WAKEUP_ENABLE_S) +#define GPIO_PIN52_WAKEUP_ENABLE_V 0x00000001 +#define GPIO_PIN52_WAKEUP_ENABLE_S 10 + +/* GPIO_PIN52_INT_TYPE : R/W; bitpos: [9:7]; default: 0; + * set this value to choose interrupt mode. 0:disable GPIO interrupt. + * 1:trigger at posedge. 2:trigger at negedge. 3:trigger at any edge. + * 4:valid at low level. 5:valid at high level + */ + +#define GPIO_PIN52_INT_TYPE 0x00000007 +#define GPIO_PIN52_INT_TYPE_M (GPIO_PIN52_INT_TYPE_V << GPIO_PIN52_INT_TYPE_S) +#define GPIO_PIN52_INT_TYPE_V 0x00000007 +#define GPIO_PIN52_INT_TYPE_S 7 + +/* GPIO_PIN52_SYNC1_BYPASS : R/W; bitpos: [4:3]; default: 0; + * set GPIO input_sync1 signal mode. 0:disable. 1:trigger at negedge. + * 2or3:trigger at posedge. + */ + +#define GPIO_PIN52_SYNC1_BYPASS 0x00000003 +#define GPIO_PIN52_SYNC1_BYPASS_M (GPIO_PIN52_SYNC1_BYPASS_V << GPIO_PIN52_SYNC1_BYPASS_S) +#define GPIO_PIN52_SYNC1_BYPASS_V 0x00000003 +#define GPIO_PIN52_SYNC1_BYPASS_S 3 + +/* GPIO_PIN52_PAD_DRIVER : R/W; bitpos: [2]; default: 0; + * set this bit to select pad driver. 1:open-drain. 0:normal. + */ + +#define GPIO_PIN52_PAD_DRIVER (BIT(2)) +#define GPIO_PIN52_PAD_DRIVER_M (GPIO_PIN52_PAD_DRIVER_V << GPIO_PIN52_PAD_DRIVER_S) +#define GPIO_PIN52_PAD_DRIVER_V 0x00000001 +#define GPIO_PIN52_PAD_DRIVER_S 2 + +/* GPIO_PIN52_SYNC2_BYPASS : R/W; bitpos: [1:0]; default: 0; + * set GPIO input_sync2 signal mode. 0:disable. 1:trigger at negedge. + * 2or3:trigger at posedge. + */ + +#define GPIO_PIN52_SYNC2_BYPASS 0x00000003 +#define GPIO_PIN52_SYNC2_BYPASS_M (GPIO_PIN52_SYNC2_BYPASS_V << GPIO_PIN52_SYNC2_BYPASS_S) +#define GPIO_PIN52_SYNC2_BYPASS_V 0x00000003 +#define GPIO_PIN52_SYNC2_BYPASS_S 0 + +/* GPIO_PIN53_REG register + * GPIO pin configuration register + */ + +#define GPIO_PIN53_REG (DR_REG_GPIO_BASE + 0x148) + +/* GPIO_PIN53_INT_ENA : R/W; bitpos: [17:13]; default: 0; + * set bit 13 to enable CPU interrupt. set bit 14 to enable CPU(not + * shielded) interrupt. + */ + +#define GPIO_PIN53_INT_ENA 0x0000001f +#define GPIO_PIN53_INT_ENA_M (GPIO_PIN53_INT_ENA_V << GPIO_PIN53_INT_ENA_S) +#define GPIO_PIN53_INT_ENA_V 0x0000001f +#define GPIO_PIN53_INT_ENA_S 13 + +/* GPIO_PIN53_CONFIG : R/W; bitpos: [12:11]; default: 0; + * reserved + */ + +#define GPIO_PIN53_CONFIG 0x00000003 +#define GPIO_PIN53_CONFIG_M (GPIO_PIN53_CONFIG_V << GPIO_PIN53_CONFIG_S) +#define GPIO_PIN53_CONFIG_V 0x00000003 +#define GPIO_PIN53_CONFIG_S 11 + +/* GPIO_PIN53_WAKEUP_ENABLE : R/W; bitpos: [10]; default: 0; + * set this bit to enable GPIO wakeup.(can only wakeup CPU from Light-sleep + * Mode) + */ + +#define GPIO_PIN53_WAKEUP_ENABLE (BIT(10)) +#define GPIO_PIN53_WAKEUP_ENABLE_M (GPIO_PIN53_WAKEUP_ENABLE_V << GPIO_PIN53_WAKEUP_ENABLE_S) +#define GPIO_PIN53_WAKEUP_ENABLE_V 0x00000001 +#define GPIO_PIN53_WAKEUP_ENABLE_S 10 + +/* GPIO_PIN53_INT_TYPE : R/W; bitpos: [9:7]; default: 0; + * set this value to choose interrupt mode. 0:disable GPIO interrupt. + * 1:trigger at posedge. 2:trigger at negedge. 3:trigger at any edge. + * 4:valid at low level. 5:valid at high level + */ + +#define GPIO_PIN53_INT_TYPE 0x00000007 +#define GPIO_PIN53_INT_TYPE_M (GPIO_PIN53_INT_TYPE_V << GPIO_PIN53_INT_TYPE_S) +#define GPIO_PIN53_INT_TYPE_V 0x00000007 +#define GPIO_PIN53_INT_TYPE_S 7 + +/* GPIO_PIN53_SYNC1_BYPASS : R/W; bitpos: [4:3]; default: 0; + * set GPIO input_sync1 signal mode. 0:disable. 1:trigger at negedge. + * 2or3:trigger at posedge. + */ + +#define GPIO_PIN53_SYNC1_BYPASS 0x00000003 +#define GPIO_PIN53_SYNC1_BYPASS_M (GPIO_PIN53_SYNC1_BYPASS_V << GPIO_PIN53_SYNC1_BYPASS_S) +#define GPIO_PIN53_SYNC1_BYPASS_V 0x00000003 +#define GPIO_PIN53_SYNC1_BYPASS_S 3 + +/* GPIO_PIN53_PAD_DRIVER : R/W; bitpos: [2]; default: 0; + * set this bit to select pad driver. 1:open-drain. 0:normal. + */ + +#define GPIO_PIN53_PAD_DRIVER (BIT(2)) +#define GPIO_PIN53_PAD_DRIVER_M (GPIO_PIN53_PAD_DRIVER_V << GPIO_PIN53_PAD_DRIVER_S) +#define GPIO_PIN53_PAD_DRIVER_V 0x00000001 +#define GPIO_PIN53_PAD_DRIVER_S 2 + +/* GPIO_PIN53_SYNC2_BYPASS : R/W; bitpos: [1:0]; default: 0; + * set GPIO input_sync2 signal mode. 0:disable. 1:trigger at negedge. + * 2or3:trigger at posedge. + */ + +#define GPIO_PIN53_SYNC2_BYPASS 0x00000003 +#define GPIO_PIN53_SYNC2_BYPASS_M (GPIO_PIN53_SYNC2_BYPASS_V << GPIO_PIN53_SYNC2_BYPASS_S) +#define GPIO_PIN53_SYNC2_BYPASS_V 0x00000003 +#define GPIO_PIN53_SYNC2_BYPASS_S 0 + +/* GPIO_STATUS_NEXT_REG register + * GPIO interrupt source register for GPIO0-31 + */ + +#define GPIO_STATUS_NEXT_REG (DR_REG_GPIO_BASE + 0x14c) + +/* GPIO_STATUS_INTERRUPT_NEXT : RO; bitpos: [31:0]; default: 0; + * GPIO interrupt source register for GPIO0-31 + */ + +#define GPIO_STATUS_INTERRUPT_NEXT 0xffffffff +#define GPIO_STATUS_INTERRUPT_NEXT_M (GPIO_STATUS_INTERRUPT_NEXT_V << GPIO_STATUS_INTERRUPT_NEXT_S) +#define GPIO_STATUS_INTERRUPT_NEXT_V 0xffffffff +#define GPIO_STATUS_INTERRUPT_NEXT_S 0 + +/* GPIO_STATUS_NEXT1_REG register + * GPIO interrupt source register for GPIO32-53 + */ + +#define GPIO_STATUS_NEXT1_REG (DR_REG_GPIO_BASE + 0x150) + +/* GPIO_STATUS_INTERRUPT_NEXT1 : RO; bitpos: [21:0]; default: 0; + * GPIO interrupt source register for GPIO32-53 + */ + +#define GPIO_STATUS_INTERRUPT_NEXT1 0x003fffff +#define GPIO_STATUS_INTERRUPT_NEXT1_M (GPIO_STATUS_INTERRUPT_NEXT1_V << GPIO_STATUS_INTERRUPT_NEXT1_S) +#define GPIO_STATUS_INTERRUPT_NEXT1_V 0x003fffff +#define GPIO_STATUS_INTERRUPT_NEXT1_S 0 + +/* GPIO_FUNC0_IN_SEL_CFG_REG register + * GPIO input function configuration register + */ + +#define GPIO_FUNC0_IN_SEL_CFG_REG (DR_REG_GPIO_BASE + 0x154) + +/* GPIO_SIG0_IN_SEL : R/W; bitpos: [7]; default: 0; + * set this bit to bypass GPIO. 1:do not bypass GPIO. 0:bypass GPIO. + */ + +#define GPIO_SIG0_IN_SEL (BIT(7)) +#define GPIO_SIG0_IN_SEL_M (GPIO_SIG0_IN_SEL_V << GPIO_SIG0_IN_SEL_S) +#define GPIO_SIG0_IN_SEL_V 0x00000001 +#define GPIO_SIG0_IN_SEL_S 7 + +/* GPIO_FUNC0_IN_INV_SEL : R/W; bitpos: [6]; default: 0; + * set this bit to invert input signal. 1:invert. 0:not invert. + */ + +#define GPIO_FUNC0_IN_INV_SEL (BIT(6)) +#define GPIO_FUNC0_IN_INV_SEL_M (GPIO_FUNC0_IN_INV_SEL_V << GPIO_FUNC0_IN_INV_SEL_S) +#define GPIO_FUNC0_IN_INV_SEL_V 0x00000001 +#define GPIO_FUNC0_IN_INV_SEL_S 6 + +/* GPIO_FUNC0_IN_SEL : R/W; bitpos: [5:0]; default: 0; + * set this value: s=0-53: connect GPIO[s] to this port. s=0x38: set this + * port always high level. s=0x3C: set this port always low level. + */ + +#define GPIO_FUNC0_IN_SEL 0x0000003f +#define GPIO_FUNC0_IN_SEL_M (GPIO_FUNC0_IN_SEL_V << GPIO_FUNC0_IN_SEL_S) +#define GPIO_FUNC0_IN_SEL_V 0x0000003f +#define GPIO_FUNC0_IN_SEL_S 0 + +/* GPIO_FUNC1_IN_SEL_CFG_REG register + * GPIO input function configuration register + */ + +#define GPIO_FUNC1_IN_SEL_CFG_REG (DR_REG_GPIO_BASE + 0x158) + +/* GPIO_SIG1_IN_SEL : R/W; bitpos: [7]; default: 0; + * set this bit to bypass GPIO. 1:do not bypass GPIO. 0:bypass GPIO. + */ + +#define GPIO_SIG1_IN_SEL (BIT(7)) +#define GPIO_SIG1_IN_SEL_M (GPIO_SIG1_IN_SEL_V << GPIO_SIG1_IN_SEL_S) +#define GPIO_SIG1_IN_SEL_V 0x00000001 +#define GPIO_SIG1_IN_SEL_S 7 + +/* GPIO_FUNC1_IN_INV_SEL : R/W; bitpos: [6]; default: 0; + * set this bit to invert input signal. 1:invert. 0:not invert. + */ + +#define GPIO_FUNC1_IN_INV_SEL (BIT(6)) +#define GPIO_FUNC1_IN_INV_SEL_M (GPIO_FUNC1_IN_INV_SEL_V << GPIO_FUNC1_IN_INV_SEL_S) +#define GPIO_FUNC1_IN_INV_SEL_V 0x00000001 +#define GPIO_FUNC1_IN_INV_SEL_S 6 + +/* GPIO_FUNC1_IN_SEL : R/W; bitpos: [5:0]; default: 0; + * set this value: s=0-53: connect GPIO[s] to this port. s=0x38: set this + * port always high level. s=0x3C: set this port always low level. + */ + +#define GPIO_FUNC1_IN_SEL 0x0000003f +#define GPIO_FUNC1_IN_SEL_M (GPIO_FUNC1_IN_SEL_V << GPIO_FUNC1_IN_SEL_S) +#define GPIO_FUNC1_IN_SEL_V 0x0000003f +#define GPIO_FUNC1_IN_SEL_S 0 + +/* GPIO_FUNC2_IN_SEL_CFG_REG register + * GPIO input function configuration register + */ + +#define GPIO_FUNC2_IN_SEL_CFG_REG (DR_REG_GPIO_BASE + 0x15c) + +/* GPIO_SIG2_IN_SEL : R/W; bitpos: [7]; default: 0; + * set this bit to bypass GPIO. 1:do not bypass GPIO. 0:bypass GPIO. + */ + +#define GPIO_SIG2_IN_SEL (BIT(7)) +#define GPIO_SIG2_IN_SEL_M (GPIO_SIG2_IN_SEL_V << GPIO_SIG2_IN_SEL_S) +#define GPIO_SIG2_IN_SEL_V 0x00000001 +#define GPIO_SIG2_IN_SEL_S 7 + +/* GPIO_FUNC2_IN_INV_SEL : R/W; bitpos: [6]; default: 0; + * set this bit to invert input signal. 1:invert. 0:not invert. + */ + +#define GPIO_FUNC2_IN_INV_SEL (BIT(6)) +#define GPIO_FUNC2_IN_INV_SEL_M (GPIO_FUNC2_IN_INV_SEL_V << GPIO_FUNC2_IN_INV_SEL_S) +#define GPIO_FUNC2_IN_INV_SEL_V 0x00000001 +#define GPIO_FUNC2_IN_INV_SEL_S 6 + +/* GPIO_FUNC2_IN_SEL : R/W; bitpos: [5:0]; default: 0; + * set this value: s=0-53: connect GPIO[s] to this port. s=0x38: set this + * port always high level. s=0x3C: set this port always low level. + */ + +#define GPIO_FUNC2_IN_SEL 0x0000003f +#define GPIO_FUNC2_IN_SEL_M (GPIO_FUNC2_IN_SEL_V << GPIO_FUNC2_IN_SEL_S) +#define GPIO_FUNC2_IN_SEL_V 0x0000003f +#define GPIO_FUNC2_IN_SEL_S 0 + +/* GPIO_FUNC3_IN_SEL_CFG_REG register + * GPIO input function configuration register + */ + +#define GPIO_FUNC3_IN_SEL_CFG_REG (DR_REG_GPIO_BASE + 0x160) + +/* GPIO_SIG3_IN_SEL : R/W; bitpos: [7]; default: 0; + * set this bit to bypass GPIO. 1:do not bypass GPIO. 0:bypass GPIO. + */ + +#define GPIO_SIG3_IN_SEL (BIT(7)) +#define GPIO_SIG3_IN_SEL_M (GPIO_SIG3_IN_SEL_V << GPIO_SIG3_IN_SEL_S) +#define GPIO_SIG3_IN_SEL_V 0x00000001 +#define GPIO_SIG3_IN_SEL_S 7 + +/* GPIO_FUNC3_IN_INV_SEL : R/W; bitpos: [6]; default: 0; + * set this bit to invert input signal. 1:invert. 0:not invert. + */ + +#define GPIO_FUNC3_IN_INV_SEL (BIT(6)) +#define GPIO_FUNC3_IN_INV_SEL_M (GPIO_FUNC3_IN_INV_SEL_V << GPIO_FUNC3_IN_INV_SEL_S) +#define GPIO_FUNC3_IN_INV_SEL_V 0x00000001 +#define GPIO_FUNC3_IN_INV_SEL_S 6 + +/* GPIO_FUNC3_IN_SEL : R/W; bitpos: [5:0]; default: 0; + * set this value: s=0-53: connect GPIO[s] to this port. s=0x38: set this + * port always high level. s=0x3C: set this port always low level. + */ + +#define GPIO_FUNC3_IN_SEL 0x0000003f +#define GPIO_FUNC3_IN_SEL_M (GPIO_FUNC3_IN_SEL_V << GPIO_FUNC3_IN_SEL_S) +#define GPIO_FUNC3_IN_SEL_V 0x0000003f +#define GPIO_FUNC3_IN_SEL_S 0 + +/* GPIO_FUNC4_IN_SEL_CFG_REG register + * GPIO input function configuration register + */ + +#define GPIO_FUNC4_IN_SEL_CFG_REG (DR_REG_GPIO_BASE + 0x164) + +/* GPIO_SIG4_IN_SEL : R/W; bitpos: [7]; default: 0; + * set this bit to bypass GPIO. 1:do not bypass GPIO. 0:bypass GPIO. + */ + +#define GPIO_SIG4_IN_SEL (BIT(7)) +#define GPIO_SIG4_IN_SEL_M (GPIO_SIG4_IN_SEL_V << GPIO_SIG4_IN_SEL_S) +#define GPIO_SIG4_IN_SEL_V 0x00000001 +#define GPIO_SIG4_IN_SEL_S 7 + +/* GPIO_FUNC4_IN_INV_SEL : R/W; bitpos: [6]; default: 0; + * set this bit to invert input signal. 1:invert. 0:not invert. + */ + +#define GPIO_FUNC4_IN_INV_SEL (BIT(6)) +#define GPIO_FUNC4_IN_INV_SEL_M (GPIO_FUNC4_IN_INV_SEL_V << GPIO_FUNC4_IN_INV_SEL_S) +#define GPIO_FUNC4_IN_INV_SEL_V 0x00000001 +#define GPIO_FUNC4_IN_INV_SEL_S 6 + +/* GPIO_FUNC4_IN_SEL : R/W; bitpos: [5:0]; default: 0; + * set this value: s=0-53: connect GPIO[s] to this port. s=0x38: set this + * port always high level. s=0x3C: set this port always low level. + */ + +#define GPIO_FUNC4_IN_SEL 0x0000003f +#define GPIO_FUNC4_IN_SEL_M (GPIO_FUNC4_IN_SEL_V << GPIO_FUNC4_IN_SEL_S) +#define GPIO_FUNC4_IN_SEL_V 0x0000003f +#define GPIO_FUNC4_IN_SEL_S 0 + +/* GPIO_FUNC5_IN_SEL_CFG_REG register + * GPIO input function configuration register + */ + +#define GPIO_FUNC5_IN_SEL_CFG_REG (DR_REG_GPIO_BASE + 0x168) + +/* GPIO_SIG5_IN_SEL : R/W; bitpos: [7]; default: 0; + * set this bit to bypass GPIO. 1:do not bypass GPIO. 0:bypass GPIO. + */ + +#define GPIO_SIG5_IN_SEL (BIT(7)) +#define GPIO_SIG5_IN_SEL_M (GPIO_SIG5_IN_SEL_V << GPIO_SIG5_IN_SEL_S) +#define GPIO_SIG5_IN_SEL_V 0x00000001 +#define GPIO_SIG5_IN_SEL_S 7 + +/* GPIO_FUNC5_IN_INV_SEL : R/W; bitpos: [6]; default: 0; + * set this bit to invert input signal. 1:invert. 0:not invert. + */ + +#define GPIO_FUNC5_IN_INV_SEL (BIT(6)) +#define GPIO_FUNC5_IN_INV_SEL_M (GPIO_FUNC5_IN_INV_SEL_V << GPIO_FUNC5_IN_INV_SEL_S) +#define GPIO_FUNC5_IN_INV_SEL_V 0x00000001 +#define GPIO_FUNC5_IN_INV_SEL_S 6 + +/* GPIO_FUNC5_IN_SEL : R/W; bitpos: [5:0]; default: 0; + * set this value: s=0-53: connect GPIO[s] to this port. s=0x38: set this + * port always high level. s=0x3C: set this port always low level. + */ + +#define GPIO_FUNC5_IN_SEL 0x0000003f +#define GPIO_FUNC5_IN_SEL_M (GPIO_FUNC5_IN_SEL_V << GPIO_FUNC5_IN_SEL_S) +#define GPIO_FUNC5_IN_SEL_V 0x0000003f +#define GPIO_FUNC5_IN_SEL_S 0 + +/* GPIO_FUNC6_IN_SEL_CFG_REG register + * GPIO input function configuration register + */ + +#define GPIO_FUNC6_IN_SEL_CFG_REG (DR_REG_GPIO_BASE + 0x16c) + +/* GPIO_SIG6_IN_SEL : R/W; bitpos: [7]; default: 0; + * set this bit to bypass GPIO. 1:do not bypass GPIO. 0:bypass GPIO. + */ + +#define GPIO_SIG6_IN_SEL (BIT(7)) +#define GPIO_SIG6_IN_SEL_M (GPIO_SIG6_IN_SEL_V << GPIO_SIG6_IN_SEL_S) +#define GPIO_SIG6_IN_SEL_V 0x00000001 +#define GPIO_SIG6_IN_SEL_S 7 + +/* GPIO_FUNC6_IN_INV_SEL : R/W; bitpos: [6]; default: 0; + * set this bit to invert input signal. 1:invert. 0:not invert. + */ + +#define GPIO_FUNC6_IN_INV_SEL (BIT(6)) +#define GPIO_FUNC6_IN_INV_SEL_M (GPIO_FUNC6_IN_INV_SEL_V << GPIO_FUNC6_IN_INV_SEL_S) +#define GPIO_FUNC6_IN_INV_SEL_V 0x00000001 +#define GPIO_FUNC6_IN_INV_SEL_S 6 + +/* GPIO_FUNC6_IN_SEL : R/W; bitpos: [5:0]; default: 0; + * set this value: s=0-53: connect GPIO[s] to this port. s=0x38: set this + * port always high level. s=0x3C: set this port always low level. + */ + +#define GPIO_FUNC6_IN_SEL 0x0000003f +#define GPIO_FUNC6_IN_SEL_M (GPIO_FUNC6_IN_SEL_V << GPIO_FUNC6_IN_SEL_S) +#define GPIO_FUNC6_IN_SEL_V 0x0000003f +#define GPIO_FUNC6_IN_SEL_S 0 + +/* GPIO_FUNC7_IN_SEL_CFG_REG register + * GPIO input function configuration register + */ + +#define GPIO_FUNC7_IN_SEL_CFG_REG (DR_REG_GPIO_BASE + 0x170) + +/* GPIO_SIG7_IN_SEL : R/W; bitpos: [7]; default: 0; + * set this bit to bypass GPIO. 1:do not bypass GPIO. 0:bypass GPIO. + */ + +#define GPIO_SIG7_IN_SEL (BIT(7)) +#define GPIO_SIG7_IN_SEL_M (GPIO_SIG7_IN_SEL_V << GPIO_SIG7_IN_SEL_S) +#define GPIO_SIG7_IN_SEL_V 0x00000001 +#define GPIO_SIG7_IN_SEL_S 7 + +/* GPIO_FUNC7_IN_INV_SEL : R/W; bitpos: [6]; default: 0; + * set this bit to invert input signal. 1:invert. 0:not invert. + */ + +#define GPIO_FUNC7_IN_INV_SEL (BIT(6)) +#define GPIO_FUNC7_IN_INV_SEL_M (GPIO_FUNC7_IN_INV_SEL_V << GPIO_FUNC7_IN_INV_SEL_S) +#define GPIO_FUNC7_IN_INV_SEL_V 0x00000001 +#define GPIO_FUNC7_IN_INV_SEL_S 6 + +/* GPIO_FUNC7_IN_SEL : R/W; bitpos: [5:0]; default: 0; + * set this value: s=0-53: connect GPIO[s] to this port. s=0x38: set this + * port always high level. s=0x3C: set this port always low level. + */ + +#define GPIO_FUNC7_IN_SEL 0x0000003f +#define GPIO_FUNC7_IN_SEL_M (GPIO_FUNC7_IN_SEL_V << GPIO_FUNC7_IN_SEL_S) +#define GPIO_FUNC7_IN_SEL_V 0x0000003f +#define GPIO_FUNC7_IN_SEL_S 0 + +/* GPIO_FUNC8_IN_SEL_CFG_REG register + * GPIO input function configuration register + */ + +#define GPIO_FUNC8_IN_SEL_CFG_REG (DR_REG_GPIO_BASE + 0x174) + +/* GPIO_SIG8_IN_SEL : R/W; bitpos: [7]; default: 0; + * set this bit to bypass GPIO. 1:do not bypass GPIO. 0:bypass GPIO. + */ + +#define GPIO_SIG8_IN_SEL (BIT(7)) +#define GPIO_SIG8_IN_SEL_M (GPIO_SIG8_IN_SEL_V << GPIO_SIG8_IN_SEL_S) +#define GPIO_SIG8_IN_SEL_V 0x00000001 +#define GPIO_SIG8_IN_SEL_S 7 + +/* GPIO_FUNC8_IN_INV_SEL : R/W; bitpos: [6]; default: 0; + * set this bit to invert input signal. 1:invert. 0:not invert. + */ + +#define GPIO_FUNC8_IN_INV_SEL (BIT(6)) +#define GPIO_FUNC8_IN_INV_SEL_M (GPIO_FUNC8_IN_INV_SEL_V << GPIO_FUNC8_IN_INV_SEL_S) +#define GPIO_FUNC8_IN_INV_SEL_V 0x00000001 +#define GPIO_FUNC8_IN_INV_SEL_S 6 + +/* GPIO_FUNC8_IN_SEL : R/W; bitpos: [5:0]; default: 0; + * set this value: s=0-53: connect GPIO[s] to this port. s=0x38: set this + * port always high level. s=0x3C: set this port always low level. + */ + +#define GPIO_FUNC8_IN_SEL 0x0000003f +#define GPIO_FUNC8_IN_SEL_M (GPIO_FUNC8_IN_SEL_V << GPIO_FUNC8_IN_SEL_S) +#define GPIO_FUNC8_IN_SEL_V 0x0000003f +#define GPIO_FUNC8_IN_SEL_S 0 + +/* GPIO_FUNC9_IN_SEL_CFG_REG register + * GPIO input function configuration register + */ + +#define GPIO_FUNC9_IN_SEL_CFG_REG (DR_REG_GPIO_BASE + 0x178) + +/* GPIO_SIG9_IN_SEL : R/W; bitpos: [7]; default: 0; + * set this bit to bypass GPIO. 1:do not bypass GPIO. 0:bypass GPIO. + */ + +#define GPIO_SIG9_IN_SEL (BIT(7)) +#define GPIO_SIG9_IN_SEL_M (GPIO_SIG9_IN_SEL_V << GPIO_SIG9_IN_SEL_S) +#define GPIO_SIG9_IN_SEL_V 0x00000001 +#define GPIO_SIG9_IN_SEL_S 7 + +/* GPIO_FUNC9_IN_INV_SEL : R/W; bitpos: [6]; default: 0; + * set this bit to invert input signal. 1:invert. 0:not invert. + */ + +#define GPIO_FUNC9_IN_INV_SEL (BIT(6)) +#define GPIO_FUNC9_IN_INV_SEL_M (GPIO_FUNC9_IN_INV_SEL_V << GPIO_FUNC9_IN_INV_SEL_S) +#define GPIO_FUNC9_IN_INV_SEL_V 0x00000001 +#define GPIO_FUNC9_IN_INV_SEL_S 6 + +/* GPIO_FUNC9_IN_SEL : R/W; bitpos: [5:0]; default: 0; + * set this value: s=0-53: connect GPIO[s] to this port. s=0x38: set this + * port always high level. s=0x3C: set this port always low level. + */ + +#define GPIO_FUNC9_IN_SEL 0x0000003f +#define GPIO_FUNC9_IN_SEL_M (GPIO_FUNC9_IN_SEL_V << GPIO_FUNC9_IN_SEL_S) +#define GPIO_FUNC9_IN_SEL_V 0x0000003f +#define GPIO_FUNC9_IN_SEL_S 0 + +/* GPIO_FUNC10_IN_SEL_CFG_REG register + * GPIO input function configuration register + */ + +#define GPIO_FUNC10_IN_SEL_CFG_REG (DR_REG_GPIO_BASE + 0x17c) + +/* GPIO_SIG10_IN_SEL : R/W; bitpos: [7]; default: 0; + * set this bit to bypass GPIO. 1:do not bypass GPIO. 0:bypass GPIO. + */ + +#define GPIO_SIG10_IN_SEL (BIT(7)) +#define GPIO_SIG10_IN_SEL_M (GPIO_SIG10_IN_SEL_V << GPIO_SIG10_IN_SEL_S) +#define GPIO_SIG10_IN_SEL_V 0x00000001 +#define GPIO_SIG10_IN_SEL_S 7 + +/* GPIO_FUNC10_IN_INV_SEL : R/W; bitpos: [6]; default: 0; + * set this bit to invert input signal. 1:invert. 0:not invert. + */ + +#define GPIO_FUNC10_IN_INV_SEL (BIT(6)) +#define GPIO_FUNC10_IN_INV_SEL_M (GPIO_FUNC10_IN_INV_SEL_V << GPIO_FUNC10_IN_INV_SEL_S) +#define GPIO_FUNC10_IN_INV_SEL_V 0x00000001 +#define GPIO_FUNC10_IN_INV_SEL_S 6 + +/* GPIO_FUNC10_IN_SEL : R/W; bitpos: [5:0]; default: 0; + * set this value: s=0-53: connect GPIO[s] to this port. s=0x38: set this + * port always high level. s=0x3C: set this port always low level. + */ + +#define GPIO_FUNC10_IN_SEL 0x0000003f +#define GPIO_FUNC10_IN_SEL_M (GPIO_FUNC10_IN_SEL_V << GPIO_FUNC10_IN_SEL_S) +#define GPIO_FUNC10_IN_SEL_V 0x0000003f +#define GPIO_FUNC10_IN_SEL_S 0 + +/* GPIO_FUNC11_IN_SEL_CFG_REG register + * GPIO input function configuration register + */ + +#define GPIO_FUNC11_IN_SEL_CFG_REG (DR_REG_GPIO_BASE + 0x180) + +/* GPIO_SIG11_IN_SEL : R/W; bitpos: [7]; default: 0; + * set this bit to bypass GPIO. 1:do not bypass GPIO. 0:bypass GPIO. + */ + +#define GPIO_SIG11_IN_SEL (BIT(7)) +#define GPIO_SIG11_IN_SEL_M (GPIO_SIG11_IN_SEL_V << GPIO_SIG11_IN_SEL_S) +#define GPIO_SIG11_IN_SEL_V 0x00000001 +#define GPIO_SIG11_IN_SEL_S 7 + +/* GPIO_FUNC11_IN_INV_SEL : R/W; bitpos: [6]; default: 0; + * set this bit to invert input signal. 1:invert. 0:not invert. + */ + +#define GPIO_FUNC11_IN_INV_SEL (BIT(6)) +#define GPIO_FUNC11_IN_INV_SEL_M (GPIO_FUNC11_IN_INV_SEL_V << GPIO_FUNC11_IN_INV_SEL_S) +#define GPIO_FUNC11_IN_INV_SEL_V 0x00000001 +#define GPIO_FUNC11_IN_INV_SEL_S 6 + +/* GPIO_FUNC11_IN_SEL : R/W; bitpos: [5:0]; default: 0; + * set this value: s=0-53: connect GPIO[s] to this port. s=0x38: set this + * port always high level. s=0x3C: set this port always low level. + */ + +#define GPIO_FUNC11_IN_SEL 0x0000003f +#define GPIO_FUNC11_IN_SEL_M (GPIO_FUNC11_IN_SEL_V << GPIO_FUNC11_IN_SEL_S) +#define GPIO_FUNC11_IN_SEL_V 0x0000003f +#define GPIO_FUNC11_IN_SEL_S 0 + +/* GPIO_FUNC12_IN_SEL_CFG_REG register + * GPIO input function configuration register + */ + +#define GPIO_FUNC12_IN_SEL_CFG_REG (DR_REG_GPIO_BASE + 0x184) + +/* GPIO_SIG12_IN_SEL : R/W; bitpos: [7]; default: 0; + * set this bit to bypass GPIO. 1:do not bypass GPIO. 0:bypass GPIO. + */ + +#define GPIO_SIG12_IN_SEL (BIT(7)) +#define GPIO_SIG12_IN_SEL_M (GPIO_SIG12_IN_SEL_V << GPIO_SIG12_IN_SEL_S) +#define GPIO_SIG12_IN_SEL_V 0x00000001 +#define GPIO_SIG12_IN_SEL_S 7 + +/* GPIO_FUNC12_IN_INV_SEL : R/W; bitpos: [6]; default: 0; + * set this bit to invert input signal. 1:invert. 0:not invert. + */ + +#define GPIO_FUNC12_IN_INV_SEL (BIT(6)) +#define GPIO_FUNC12_IN_INV_SEL_M (GPIO_FUNC12_IN_INV_SEL_V << GPIO_FUNC12_IN_INV_SEL_S) +#define GPIO_FUNC12_IN_INV_SEL_V 0x00000001 +#define GPIO_FUNC12_IN_INV_SEL_S 6 + +/* GPIO_FUNC12_IN_SEL : R/W; bitpos: [5:0]; default: 0; + * set this value: s=0-53: connect GPIO[s] to this port. s=0x38: set this + * port always high level. s=0x3C: set this port always low level. + */ + +#define GPIO_FUNC12_IN_SEL 0x0000003f +#define GPIO_FUNC12_IN_SEL_M (GPIO_FUNC12_IN_SEL_V << GPIO_FUNC12_IN_SEL_S) +#define GPIO_FUNC12_IN_SEL_V 0x0000003f +#define GPIO_FUNC12_IN_SEL_S 0 + +/* GPIO_FUNC13_IN_SEL_CFG_REG register + * GPIO input function configuration register + */ + +#define GPIO_FUNC13_IN_SEL_CFG_REG (DR_REG_GPIO_BASE + 0x188) + +/* GPIO_SIG13_IN_SEL : R/W; bitpos: [7]; default: 0; + * set this bit to bypass GPIO. 1:do not bypass GPIO. 0:bypass GPIO. + */ + +#define GPIO_SIG13_IN_SEL (BIT(7)) +#define GPIO_SIG13_IN_SEL_M (GPIO_SIG13_IN_SEL_V << GPIO_SIG13_IN_SEL_S) +#define GPIO_SIG13_IN_SEL_V 0x00000001 +#define GPIO_SIG13_IN_SEL_S 7 + +/* GPIO_FUNC13_IN_INV_SEL : R/W; bitpos: [6]; default: 0; + * set this bit to invert input signal. 1:invert. 0:not invert. + */ + +#define GPIO_FUNC13_IN_INV_SEL (BIT(6)) +#define GPIO_FUNC13_IN_INV_SEL_M (GPIO_FUNC13_IN_INV_SEL_V << GPIO_FUNC13_IN_INV_SEL_S) +#define GPIO_FUNC13_IN_INV_SEL_V 0x00000001 +#define GPIO_FUNC13_IN_INV_SEL_S 6 + +/* GPIO_FUNC13_IN_SEL : R/W; bitpos: [5:0]; default: 0; + * set this value: s=0-53: connect GPIO[s] to this port. s=0x38: set this + * port always high level. s=0x3C: set this port always low level. + */ + +#define GPIO_FUNC13_IN_SEL 0x0000003f +#define GPIO_FUNC13_IN_SEL_M (GPIO_FUNC13_IN_SEL_V << GPIO_FUNC13_IN_SEL_S) +#define GPIO_FUNC13_IN_SEL_V 0x0000003f +#define GPIO_FUNC13_IN_SEL_S 0 + +/* GPIO_FUNC14_IN_SEL_CFG_REG register + * GPIO input function configuration register + */ + +#define GPIO_FUNC14_IN_SEL_CFG_REG (DR_REG_GPIO_BASE + 0x18c) + +/* GPIO_SIG14_IN_SEL : R/W; bitpos: [7]; default: 0; + * set this bit to bypass GPIO. 1:do not bypass GPIO. 0:bypass GPIO. + */ + +#define GPIO_SIG14_IN_SEL (BIT(7)) +#define GPIO_SIG14_IN_SEL_M (GPIO_SIG14_IN_SEL_V << GPIO_SIG14_IN_SEL_S) +#define GPIO_SIG14_IN_SEL_V 0x00000001 +#define GPIO_SIG14_IN_SEL_S 7 + +/* GPIO_FUNC14_IN_INV_SEL : R/W; bitpos: [6]; default: 0; + * set this bit to invert input signal. 1:invert. 0:not invert. + */ + +#define GPIO_FUNC14_IN_INV_SEL (BIT(6)) +#define GPIO_FUNC14_IN_INV_SEL_M (GPIO_FUNC14_IN_INV_SEL_V << GPIO_FUNC14_IN_INV_SEL_S) +#define GPIO_FUNC14_IN_INV_SEL_V 0x00000001 +#define GPIO_FUNC14_IN_INV_SEL_S 6 + +/* GPIO_FUNC14_IN_SEL : R/W; bitpos: [5:0]; default: 0; + * set this value: s=0-53: connect GPIO[s] to this port. s=0x38: set this + * port always high level. s=0x3C: set this port always low level. + */ + +#define GPIO_FUNC14_IN_SEL 0x0000003f +#define GPIO_FUNC14_IN_SEL_M (GPIO_FUNC14_IN_SEL_V << GPIO_FUNC14_IN_SEL_S) +#define GPIO_FUNC14_IN_SEL_V 0x0000003f +#define GPIO_FUNC14_IN_SEL_S 0 + +/* GPIO_FUNC15_IN_SEL_CFG_REG register + * GPIO input function configuration register + */ + +#define GPIO_FUNC15_IN_SEL_CFG_REG (DR_REG_GPIO_BASE + 0x190) + +/* GPIO_SIG15_IN_SEL : R/W; bitpos: [7]; default: 0; + * set this bit to bypass GPIO. 1:do not bypass GPIO. 0:bypass GPIO. + */ + +#define GPIO_SIG15_IN_SEL (BIT(7)) +#define GPIO_SIG15_IN_SEL_M (GPIO_SIG15_IN_SEL_V << GPIO_SIG15_IN_SEL_S) +#define GPIO_SIG15_IN_SEL_V 0x00000001 +#define GPIO_SIG15_IN_SEL_S 7 + +/* GPIO_FUNC15_IN_INV_SEL : R/W; bitpos: [6]; default: 0; + * set this bit to invert input signal. 1:invert. 0:not invert. + */ + +#define GPIO_FUNC15_IN_INV_SEL (BIT(6)) +#define GPIO_FUNC15_IN_INV_SEL_M (GPIO_FUNC15_IN_INV_SEL_V << GPIO_FUNC15_IN_INV_SEL_S) +#define GPIO_FUNC15_IN_INV_SEL_V 0x00000001 +#define GPIO_FUNC15_IN_INV_SEL_S 6 + +/* GPIO_FUNC15_IN_SEL : R/W; bitpos: [5:0]; default: 0; + * set this value: s=0-53: connect GPIO[s] to this port. s=0x38: set this + * port always high level. s=0x3C: set this port always low level. + */ + +#define GPIO_FUNC15_IN_SEL 0x0000003f +#define GPIO_FUNC15_IN_SEL_M (GPIO_FUNC15_IN_SEL_V << GPIO_FUNC15_IN_SEL_S) +#define GPIO_FUNC15_IN_SEL_V 0x0000003f +#define GPIO_FUNC15_IN_SEL_S 0 + +/* GPIO_FUNC16_IN_SEL_CFG_REG register + * GPIO input function configuration register + */ + +#define GPIO_FUNC16_IN_SEL_CFG_REG (DR_REG_GPIO_BASE + 0x194) + +/* GPIO_SIG16_IN_SEL : R/W; bitpos: [7]; default: 0; + * set this bit to bypass GPIO. 1:do not bypass GPIO. 0:bypass GPIO. + */ + +#define GPIO_SIG16_IN_SEL (BIT(7)) +#define GPIO_SIG16_IN_SEL_M (GPIO_SIG16_IN_SEL_V << GPIO_SIG16_IN_SEL_S) +#define GPIO_SIG16_IN_SEL_V 0x00000001 +#define GPIO_SIG16_IN_SEL_S 7 + +/* GPIO_FUNC16_IN_INV_SEL : R/W; bitpos: [6]; default: 0; + * set this bit to invert input signal. 1:invert. 0:not invert. + */ + +#define GPIO_FUNC16_IN_INV_SEL (BIT(6)) +#define GPIO_FUNC16_IN_INV_SEL_M (GPIO_FUNC16_IN_INV_SEL_V << GPIO_FUNC16_IN_INV_SEL_S) +#define GPIO_FUNC16_IN_INV_SEL_V 0x00000001 +#define GPIO_FUNC16_IN_INV_SEL_S 6 + +/* GPIO_FUNC16_IN_SEL : R/W; bitpos: [5:0]; default: 0; + * set this value: s=0-53: connect GPIO[s] to this port. s=0x38: set this + * port always high level. s=0x3C: set this port always low level. + */ + +#define GPIO_FUNC16_IN_SEL 0x0000003f +#define GPIO_FUNC16_IN_SEL_M (GPIO_FUNC16_IN_SEL_V << GPIO_FUNC16_IN_SEL_S) +#define GPIO_FUNC16_IN_SEL_V 0x0000003f +#define GPIO_FUNC16_IN_SEL_S 0 + +/* GPIO_FUNC17_IN_SEL_CFG_REG register + * GPIO input function configuration register + */ + +#define GPIO_FUNC17_IN_SEL_CFG_REG (DR_REG_GPIO_BASE + 0x198) + +/* GPIO_SIG17_IN_SEL : R/W; bitpos: [7]; default: 0; + * set this bit to bypass GPIO. 1:do not bypass GPIO. 0:bypass GPIO. + */ + +#define GPIO_SIG17_IN_SEL (BIT(7)) +#define GPIO_SIG17_IN_SEL_M (GPIO_SIG17_IN_SEL_V << GPIO_SIG17_IN_SEL_S) +#define GPIO_SIG17_IN_SEL_V 0x00000001 +#define GPIO_SIG17_IN_SEL_S 7 + +/* GPIO_FUNC17_IN_INV_SEL : R/W; bitpos: [6]; default: 0; + * set this bit to invert input signal. 1:invert. 0:not invert. + */ + +#define GPIO_FUNC17_IN_INV_SEL (BIT(6)) +#define GPIO_FUNC17_IN_INV_SEL_M (GPIO_FUNC17_IN_INV_SEL_V << GPIO_FUNC17_IN_INV_SEL_S) +#define GPIO_FUNC17_IN_INV_SEL_V 0x00000001 +#define GPIO_FUNC17_IN_INV_SEL_S 6 + +/* GPIO_FUNC17_IN_SEL : R/W; bitpos: [5:0]; default: 0; + * set this value: s=0-53: connect GPIO[s] to this port. s=0x38: set this + * port always high level. s=0x3C: set this port always low level. + */ + +#define GPIO_FUNC17_IN_SEL 0x0000003f +#define GPIO_FUNC17_IN_SEL_M (GPIO_FUNC17_IN_SEL_V << GPIO_FUNC17_IN_SEL_S) +#define GPIO_FUNC17_IN_SEL_V 0x0000003f +#define GPIO_FUNC17_IN_SEL_S 0 + +/* GPIO_FUNC18_IN_SEL_CFG_REG register + * GPIO input function configuration register + */ + +#define GPIO_FUNC18_IN_SEL_CFG_REG (DR_REG_GPIO_BASE + 0x19c) + +/* GPIO_SIG18_IN_SEL : R/W; bitpos: [7]; default: 0; + * set this bit to bypass GPIO. 1:do not bypass GPIO. 0:bypass GPIO. + */ + +#define GPIO_SIG18_IN_SEL (BIT(7)) +#define GPIO_SIG18_IN_SEL_M (GPIO_SIG18_IN_SEL_V << GPIO_SIG18_IN_SEL_S) +#define GPIO_SIG18_IN_SEL_V 0x00000001 +#define GPIO_SIG18_IN_SEL_S 7 + +/* GPIO_FUNC18_IN_INV_SEL : R/W; bitpos: [6]; default: 0; + * set this bit to invert input signal. 1:invert. 0:not invert. + */ + +#define GPIO_FUNC18_IN_INV_SEL (BIT(6)) +#define GPIO_FUNC18_IN_INV_SEL_M (GPIO_FUNC18_IN_INV_SEL_V << GPIO_FUNC18_IN_INV_SEL_S) +#define GPIO_FUNC18_IN_INV_SEL_V 0x00000001 +#define GPIO_FUNC18_IN_INV_SEL_S 6 + +/* GPIO_FUNC18_IN_SEL : R/W; bitpos: [5:0]; default: 0; + * set this value: s=0-53: connect GPIO[s] to this port. s=0x38: set this + * port always high level. s=0x3C: set this port always low level. + */ + +#define GPIO_FUNC18_IN_SEL 0x0000003f +#define GPIO_FUNC18_IN_SEL_M (GPIO_FUNC18_IN_SEL_V << GPIO_FUNC18_IN_SEL_S) +#define GPIO_FUNC18_IN_SEL_V 0x0000003f +#define GPIO_FUNC18_IN_SEL_S 0 + +/* GPIO_FUNC19_IN_SEL_CFG_REG register + * GPIO input function configuration register + */ + +#define GPIO_FUNC19_IN_SEL_CFG_REG (DR_REG_GPIO_BASE + 0x1a0) + +/* GPIO_SIG19_IN_SEL : R/W; bitpos: [7]; default: 0; + * set this bit to bypass GPIO. 1:do not bypass GPIO. 0:bypass GPIO. + */ + +#define GPIO_SIG19_IN_SEL (BIT(7)) +#define GPIO_SIG19_IN_SEL_M (GPIO_SIG19_IN_SEL_V << GPIO_SIG19_IN_SEL_S) +#define GPIO_SIG19_IN_SEL_V 0x00000001 +#define GPIO_SIG19_IN_SEL_S 7 + +/* GPIO_FUNC19_IN_INV_SEL : R/W; bitpos: [6]; default: 0; + * set this bit to invert input signal. 1:invert. 0:not invert. + */ + +#define GPIO_FUNC19_IN_INV_SEL (BIT(6)) +#define GPIO_FUNC19_IN_INV_SEL_M (GPIO_FUNC19_IN_INV_SEL_V << GPIO_FUNC19_IN_INV_SEL_S) +#define GPIO_FUNC19_IN_INV_SEL_V 0x00000001 +#define GPIO_FUNC19_IN_INV_SEL_S 6 + +/* GPIO_FUNC19_IN_SEL : R/W; bitpos: [5:0]; default: 0; + * set this value: s=0-53: connect GPIO[s] to this port. s=0x38: set this + * port always high level. s=0x3C: set this port always low level. + */ + +#define GPIO_FUNC19_IN_SEL 0x0000003f +#define GPIO_FUNC19_IN_SEL_M (GPIO_FUNC19_IN_SEL_V << GPIO_FUNC19_IN_SEL_S) +#define GPIO_FUNC19_IN_SEL_V 0x0000003f +#define GPIO_FUNC19_IN_SEL_S 0 + +/* GPIO_FUNC20_IN_SEL_CFG_REG register + * GPIO input function configuration register + */ + +#define GPIO_FUNC20_IN_SEL_CFG_REG (DR_REG_GPIO_BASE + 0x1a4) + +/* GPIO_SIG20_IN_SEL : R/W; bitpos: [7]; default: 0; + * set this bit to bypass GPIO. 1:do not bypass GPIO. 0:bypass GPIO. + */ + +#define GPIO_SIG20_IN_SEL (BIT(7)) +#define GPIO_SIG20_IN_SEL_M (GPIO_SIG20_IN_SEL_V << GPIO_SIG20_IN_SEL_S) +#define GPIO_SIG20_IN_SEL_V 0x00000001 +#define GPIO_SIG20_IN_SEL_S 7 + +/* GPIO_FUNC20_IN_INV_SEL : R/W; bitpos: [6]; default: 0; + * set this bit to invert input signal. 1:invert. 0:not invert. + */ + +#define GPIO_FUNC20_IN_INV_SEL (BIT(6)) +#define GPIO_FUNC20_IN_INV_SEL_M (GPIO_FUNC20_IN_INV_SEL_V << GPIO_FUNC20_IN_INV_SEL_S) +#define GPIO_FUNC20_IN_INV_SEL_V 0x00000001 +#define GPIO_FUNC20_IN_INV_SEL_S 6 + +/* GPIO_FUNC20_IN_SEL : R/W; bitpos: [5:0]; default: 0; + * set this value: s=0-53: connect GPIO[s] to this port. s=0x38: set this + * port always high level. s=0x3C: set this port always low level. + */ + +#define GPIO_FUNC20_IN_SEL 0x0000003f +#define GPIO_FUNC20_IN_SEL_M (GPIO_FUNC20_IN_SEL_V << GPIO_FUNC20_IN_SEL_S) +#define GPIO_FUNC20_IN_SEL_V 0x0000003f +#define GPIO_FUNC20_IN_SEL_S 0 + +/* GPIO_FUNC21_IN_SEL_CFG_REG register + * GPIO input function configuration register + */ + +#define GPIO_FUNC21_IN_SEL_CFG_REG (DR_REG_GPIO_BASE + 0x1a8) + +/* GPIO_SIG21_IN_SEL : R/W; bitpos: [7]; default: 0; + * set this bit to bypass GPIO. 1:do not bypass GPIO. 0:bypass GPIO. + */ + +#define GPIO_SIG21_IN_SEL (BIT(7)) +#define GPIO_SIG21_IN_SEL_M (GPIO_SIG21_IN_SEL_V << GPIO_SIG21_IN_SEL_S) +#define GPIO_SIG21_IN_SEL_V 0x00000001 +#define GPIO_SIG21_IN_SEL_S 7 + +/* GPIO_FUNC21_IN_INV_SEL : R/W; bitpos: [6]; default: 0; + * set this bit to invert input signal. 1:invert. 0:not invert. + */ + +#define GPIO_FUNC21_IN_INV_SEL (BIT(6)) +#define GPIO_FUNC21_IN_INV_SEL_M (GPIO_FUNC21_IN_INV_SEL_V << GPIO_FUNC21_IN_INV_SEL_S) +#define GPIO_FUNC21_IN_INV_SEL_V 0x00000001 +#define GPIO_FUNC21_IN_INV_SEL_S 6 + +/* GPIO_FUNC21_IN_SEL : R/W; bitpos: [5:0]; default: 0; + * set this value: s=0-53: connect GPIO[s] to this port. s=0x38: set this + * port always high level. s=0x3C: set this port always low level. + */ + +#define GPIO_FUNC21_IN_SEL 0x0000003f +#define GPIO_FUNC21_IN_SEL_M (GPIO_FUNC21_IN_SEL_V << GPIO_FUNC21_IN_SEL_S) +#define GPIO_FUNC21_IN_SEL_V 0x0000003f +#define GPIO_FUNC21_IN_SEL_S 0 + +/* GPIO_FUNC22_IN_SEL_CFG_REG register + * GPIO input function configuration register + */ + +#define GPIO_FUNC22_IN_SEL_CFG_REG (DR_REG_GPIO_BASE + 0x1ac) + +/* GPIO_SIG22_IN_SEL : R/W; bitpos: [7]; default: 0; + * set this bit to bypass GPIO. 1:do not bypass GPIO. 0:bypass GPIO. + */ + +#define GPIO_SIG22_IN_SEL (BIT(7)) +#define GPIO_SIG22_IN_SEL_M (GPIO_SIG22_IN_SEL_V << GPIO_SIG22_IN_SEL_S) +#define GPIO_SIG22_IN_SEL_V 0x00000001 +#define GPIO_SIG22_IN_SEL_S 7 + +/* GPIO_FUNC22_IN_INV_SEL : R/W; bitpos: [6]; default: 0; + * set this bit to invert input signal. 1:invert. 0:not invert. + */ + +#define GPIO_FUNC22_IN_INV_SEL (BIT(6)) +#define GPIO_FUNC22_IN_INV_SEL_M (GPIO_FUNC22_IN_INV_SEL_V << GPIO_FUNC22_IN_INV_SEL_S) +#define GPIO_FUNC22_IN_INV_SEL_V 0x00000001 +#define GPIO_FUNC22_IN_INV_SEL_S 6 + +/* GPIO_FUNC22_IN_SEL : R/W; bitpos: [5:0]; default: 0; + * set this value: s=0-53: connect GPIO[s] to this port. s=0x38: set this + * port always high level. s=0x3C: set this port always low level. + */ + +#define GPIO_FUNC22_IN_SEL 0x0000003f +#define GPIO_FUNC22_IN_SEL_M (GPIO_FUNC22_IN_SEL_V << GPIO_FUNC22_IN_SEL_S) +#define GPIO_FUNC22_IN_SEL_V 0x0000003f +#define GPIO_FUNC22_IN_SEL_S 0 + +/* GPIO_FUNC23_IN_SEL_CFG_REG register + * GPIO input function configuration register + */ + +#define GPIO_FUNC23_IN_SEL_CFG_REG (DR_REG_GPIO_BASE + 0x1b0) + +/* GPIO_SIG23_IN_SEL : R/W; bitpos: [7]; default: 0; + * set this bit to bypass GPIO. 1:do not bypass GPIO. 0:bypass GPIO. + */ + +#define GPIO_SIG23_IN_SEL (BIT(7)) +#define GPIO_SIG23_IN_SEL_M (GPIO_SIG23_IN_SEL_V << GPIO_SIG23_IN_SEL_S) +#define GPIO_SIG23_IN_SEL_V 0x00000001 +#define GPIO_SIG23_IN_SEL_S 7 + +/* GPIO_FUNC23_IN_INV_SEL : R/W; bitpos: [6]; default: 0; + * set this bit to invert input signal. 1:invert. 0:not invert. + */ + +#define GPIO_FUNC23_IN_INV_SEL (BIT(6)) +#define GPIO_FUNC23_IN_INV_SEL_M (GPIO_FUNC23_IN_INV_SEL_V << GPIO_FUNC23_IN_INV_SEL_S) +#define GPIO_FUNC23_IN_INV_SEL_V 0x00000001 +#define GPIO_FUNC23_IN_INV_SEL_S 6 + +/* GPIO_FUNC23_IN_SEL : R/W; bitpos: [5:0]; default: 0; + * set this value: s=0-53: connect GPIO[s] to this port. s=0x38: set this + * port always high level. s=0x3C: set this port always low level. + */ + +#define GPIO_FUNC23_IN_SEL 0x0000003f +#define GPIO_FUNC23_IN_SEL_M (GPIO_FUNC23_IN_SEL_V << GPIO_FUNC23_IN_SEL_S) +#define GPIO_FUNC23_IN_SEL_V 0x0000003f +#define GPIO_FUNC23_IN_SEL_S 0 + +/* GPIO_FUNC24_IN_SEL_CFG_REG register + * GPIO input function configuration register + */ + +#define GPIO_FUNC24_IN_SEL_CFG_REG (DR_REG_GPIO_BASE + 0x1b4) + +/* GPIO_SIG24_IN_SEL : R/W; bitpos: [7]; default: 0; + * set this bit to bypass GPIO. 1:do not bypass GPIO. 0:bypass GPIO. + */ + +#define GPIO_SIG24_IN_SEL (BIT(7)) +#define GPIO_SIG24_IN_SEL_M (GPIO_SIG24_IN_SEL_V << GPIO_SIG24_IN_SEL_S) +#define GPIO_SIG24_IN_SEL_V 0x00000001 +#define GPIO_SIG24_IN_SEL_S 7 + +/* GPIO_FUNC24_IN_INV_SEL : R/W; bitpos: [6]; default: 0; + * set this bit to invert input signal. 1:invert. 0:not invert. + */ + +#define GPIO_FUNC24_IN_INV_SEL (BIT(6)) +#define GPIO_FUNC24_IN_INV_SEL_M (GPIO_FUNC24_IN_INV_SEL_V << GPIO_FUNC24_IN_INV_SEL_S) +#define GPIO_FUNC24_IN_INV_SEL_V 0x00000001 +#define GPIO_FUNC24_IN_INV_SEL_S 6 + +/* GPIO_FUNC24_IN_SEL : R/W; bitpos: [5:0]; default: 0; + * set this value: s=0-53: connect GPIO[s] to this port. s=0x38: set this + * port always high level. s=0x3C: set this port always low level. + */ + +#define GPIO_FUNC24_IN_SEL 0x0000003f +#define GPIO_FUNC24_IN_SEL_M (GPIO_FUNC24_IN_SEL_V << GPIO_FUNC24_IN_SEL_S) +#define GPIO_FUNC24_IN_SEL_V 0x0000003f +#define GPIO_FUNC24_IN_SEL_S 0 + +/* GPIO_FUNC25_IN_SEL_CFG_REG register + * GPIO input function configuration register + */ + +#define GPIO_FUNC25_IN_SEL_CFG_REG (DR_REG_GPIO_BASE + 0x1b8) + +/* GPIO_SIG25_IN_SEL : R/W; bitpos: [7]; default: 0; + * set this bit to bypass GPIO. 1:do not bypass GPIO. 0:bypass GPIO. + */ + +#define GPIO_SIG25_IN_SEL (BIT(7)) +#define GPIO_SIG25_IN_SEL_M (GPIO_SIG25_IN_SEL_V << GPIO_SIG25_IN_SEL_S) +#define GPIO_SIG25_IN_SEL_V 0x00000001 +#define GPIO_SIG25_IN_SEL_S 7 + +/* GPIO_FUNC25_IN_INV_SEL : R/W; bitpos: [6]; default: 0; + * set this bit to invert input signal. 1:invert. 0:not invert. + */ + +#define GPIO_FUNC25_IN_INV_SEL (BIT(6)) +#define GPIO_FUNC25_IN_INV_SEL_M (GPIO_FUNC25_IN_INV_SEL_V << GPIO_FUNC25_IN_INV_SEL_S) +#define GPIO_FUNC25_IN_INV_SEL_V 0x00000001 +#define GPIO_FUNC25_IN_INV_SEL_S 6 + +/* GPIO_FUNC25_IN_SEL : R/W; bitpos: [5:0]; default: 0; + * set this value: s=0-53: connect GPIO[s] to this port. s=0x38: set this + * port always high level. s=0x3C: set this port always low level. + */ + +#define GPIO_FUNC25_IN_SEL 0x0000003f +#define GPIO_FUNC25_IN_SEL_M (GPIO_FUNC25_IN_SEL_V << GPIO_FUNC25_IN_SEL_S) +#define GPIO_FUNC25_IN_SEL_V 0x0000003f +#define GPIO_FUNC25_IN_SEL_S 0 + +/* GPIO_FUNC26_IN_SEL_CFG_REG register + * GPIO input function configuration register + */ + +#define GPIO_FUNC26_IN_SEL_CFG_REG (DR_REG_GPIO_BASE + 0x1bc) + +/* GPIO_SIG26_IN_SEL : R/W; bitpos: [7]; default: 0; + * set this bit to bypass GPIO. 1:do not bypass GPIO. 0:bypass GPIO. + */ + +#define GPIO_SIG26_IN_SEL (BIT(7)) +#define GPIO_SIG26_IN_SEL_M (GPIO_SIG26_IN_SEL_V << GPIO_SIG26_IN_SEL_S) +#define GPIO_SIG26_IN_SEL_V 0x00000001 +#define GPIO_SIG26_IN_SEL_S 7 + +/* GPIO_FUNC26_IN_INV_SEL : R/W; bitpos: [6]; default: 0; + * set this bit to invert input signal. 1:invert. 0:not invert. + */ + +#define GPIO_FUNC26_IN_INV_SEL (BIT(6)) +#define GPIO_FUNC26_IN_INV_SEL_M (GPIO_FUNC26_IN_INV_SEL_V << GPIO_FUNC26_IN_INV_SEL_S) +#define GPIO_FUNC26_IN_INV_SEL_V 0x00000001 +#define GPIO_FUNC26_IN_INV_SEL_S 6 + +/* GPIO_FUNC26_IN_SEL : R/W; bitpos: [5:0]; default: 0; + * set this value: s=0-53: connect GPIO[s] to this port. s=0x38: set this + * port always high level. s=0x3C: set this port always low level. + */ + +#define GPIO_FUNC26_IN_SEL 0x0000003f +#define GPIO_FUNC26_IN_SEL_M (GPIO_FUNC26_IN_SEL_V << GPIO_FUNC26_IN_SEL_S) +#define GPIO_FUNC26_IN_SEL_V 0x0000003f +#define GPIO_FUNC26_IN_SEL_S 0 + +/* GPIO_FUNC27_IN_SEL_CFG_REG register + * GPIO input function configuration register + */ + +#define GPIO_FUNC27_IN_SEL_CFG_REG (DR_REG_GPIO_BASE + 0x1c0) + +/* GPIO_SIG27_IN_SEL : R/W; bitpos: [7]; default: 0; + * set this bit to bypass GPIO. 1:do not bypass GPIO. 0:bypass GPIO. + */ + +#define GPIO_SIG27_IN_SEL (BIT(7)) +#define GPIO_SIG27_IN_SEL_M (GPIO_SIG27_IN_SEL_V << GPIO_SIG27_IN_SEL_S) +#define GPIO_SIG27_IN_SEL_V 0x00000001 +#define GPIO_SIG27_IN_SEL_S 7 + +/* GPIO_FUNC27_IN_INV_SEL : R/W; bitpos: [6]; default: 0; + * set this bit to invert input signal. 1:invert. 0:not invert. + */ + +#define GPIO_FUNC27_IN_INV_SEL (BIT(6)) +#define GPIO_FUNC27_IN_INV_SEL_M (GPIO_FUNC27_IN_INV_SEL_V << GPIO_FUNC27_IN_INV_SEL_S) +#define GPIO_FUNC27_IN_INV_SEL_V 0x00000001 +#define GPIO_FUNC27_IN_INV_SEL_S 6 + +/* GPIO_FUNC27_IN_SEL : R/W; bitpos: [5:0]; default: 0; + * set this value: s=0-53: connect GPIO[s] to this port. s=0x38: set this + * port always high level. s=0x3C: set this port always low level. + */ + +#define GPIO_FUNC27_IN_SEL 0x0000003f +#define GPIO_FUNC27_IN_SEL_M (GPIO_FUNC27_IN_SEL_V << GPIO_FUNC27_IN_SEL_S) +#define GPIO_FUNC27_IN_SEL_V 0x0000003f +#define GPIO_FUNC27_IN_SEL_S 0 + +/* GPIO_FUNC28_IN_SEL_CFG_REG register + * GPIO input function configuration register + */ + +#define GPIO_FUNC28_IN_SEL_CFG_REG (DR_REG_GPIO_BASE + 0x1c4) + +/* GPIO_SIG28_IN_SEL : R/W; bitpos: [7]; default: 0; + * set this bit to bypass GPIO. 1:do not bypass GPIO. 0:bypass GPIO. + */ + +#define GPIO_SIG28_IN_SEL (BIT(7)) +#define GPIO_SIG28_IN_SEL_M (GPIO_SIG28_IN_SEL_V << GPIO_SIG28_IN_SEL_S) +#define GPIO_SIG28_IN_SEL_V 0x00000001 +#define GPIO_SIG28_IN_SEL_S 7 + +/* GPIO_FUNC28_IN_INV_SEL : R/W; bitpos: [6]; default: 0; + * set this bit to invert input signal. 1:invert. 0:not invert. + */ + +#define GPIO_FUNC28_IN_INV_SEL (BIT(6)) +#define GPIO_FUNC28_IN_INV_SEL_M (GPIO_FUNC28_IN_INV_SEL_V << GPIO_FUNC28_IN_INV_SEL_S) +#define GPIO_FUNC28_IN_INV_SEL_V 0x00000001 +#define GPIO_FUNC28_IN_INV_SEL_S 6 + +/* GPIO_FUNC28_IN_SEL : R/W; bitpos: [5:0]; default: 0; + * set this value: s=0-53: connect GPIO[s] to this port. s=0x38: set this + * port always high level. s=0x3C: set this port always low level. + */ + +#define GPIO_FUNC28_IN_SEL 0x0000003f +#define GPIO_FUNC28_IN_SEL_M (GPIO_FUNC28_IN_SEL_V << GPIO_FUNC28_IN_SEL_S) +#define GPIO_FUNC28_IN_SEL_V 0x0000003f +#define GPIO_FUNC28_IN_SEL_S 0 + +/* GPIO_FUNC29_IN_SEL_CFG_REG register + * GPIO input function configuration register + */ + +#define GPIO_FUNC29_IN_SEL_CFG_REG (DR_REG_GPIO_BASE + 0x1c8) + +/* GPIO_SIG29_IN_SEL : R/W; bitpos: [7]; default: 0; + * set this bit to bypass GPIO. 1:do not bypass GPIO. 0:bypass GPIO. + */ + +#define GPIO_SIG29_IN_SEL (BIT(7)) +#define GPIO_SIG29_IN_SEL_M (GPIO_SIG29_IN_SEL_V << GPIO_SIG29_IN_SEL_S) +#define GPIO_SIG29_IN_SEL_V 0x00000001 +#define GPIO_SIG29_IN_SEL_S 7 + +/* GPIO_FUNC29_IN_INV_SEL : R/W; bitpos: [6]; default: 0; + * set this bit to invert input signal. 1:invert. 0:not invert. + */ + +#define GPIO_FUNC29_IN_INV_SEL (BIT(6)) +#define GPIO_FUNC29_IN_INV_SEL_M (GPIO_FUNC29_IN_INV_SEL_V << GPIO_FUNC29_IN_INV_SEL_S) +#define GPIO_FUNC29_IN_INV_SEL_V 0x00000001 +#define GPIO_FUNC29_IN_INV_SEL_S 6 + +/* GPIO_FUNC29_IN_SEL : R/W; bitpos: [5:0]; default: 0; + * set this value: s=0-53: connect GPIO[s] to this port. s=0x38: set this + * port always high level. s=0x3C: set this port always low level. + */ + +#define GPIO_FUNC29_IN_SEL 0x0000003f +#define GPIO_FUNC29_IN_SEL_M (GPIO_FUNC29_IN_SEL_V << GPIO_FUNC29_IN_SEL_S) +#define GPIO_FUNC29_IN_SEL_V 0x0000003f +#define GPIO_FUNC29_IN_SEL_S 0 + +/* GPIO_FUNC30_IN_SEL_CFG_REG register + * GPIO input function configuration register + */ + +#define GPIO_FUNC30_IN_SEL_CFG_REG (DR_REG_GPIO_BASE + 0x1cc) + +/* GPIO_SIG30_IN_SEL : R/W; bitpos: [7]; default: 0; + * set this bit to bypass GPIO. 1:do not bypass GPIO. 0:bypass GPIO. + */ + +#define GPIO_SIG30_IN_SEL (BIT(7)) +#define GPIO_SIG30_IN_SEL_M (GPIO_SIG30_IN_SEL_V << GPIO_SIG30_IN_SEL_S) +#define GPIO_SIG30_IN_SEL_V 0x00000001 +#define GPIO_SIG30_IN_SEL_S 7 + +/* GPIO_FUNC30_IN_INV_SEL : R/W; bitpos: [6]; default: 0; + * set this bit to invert input signal. 1:invert. 0:not invert. + */ + +#define GPIO_FUNC30_IN_INV_SEL (BIT(6)) +#define GPIO_FUNC30_IN_INV_SEL_M (GPIO_FUNC30_IN_INV_SEL_V << GPIO_FUNC30_IN_INV_SEL_S) +#define GPIO_FUNC30_IN_INV_SEL_V 0x00000001 +#define GPIO_FUNC30_IN_INV_SEL_S 6 + +/* GPIO_FUNC30_IN_SEL : R/W; bitpos: [5:0]; default: 0; + * set this value: s=0-53: connect GPIO[s] to this port. s=0x38: set this + * port always high level. s=0x3C: set this port always low level. + */ + +#define GPIO_FUNC30_IN_SEL 0x0000003f +#define GPIO_FUNC30_IN_SEL_M (GPIO_FUNC30_IN_SEL_V << GPIO_FUNC30_IN_SEL_S) +#define GPIO_FUNC30_IN_SEL_V 0x0000003f +#define GPIO_FUNC30_IN_SEL_S 0 + +/* GPIO_FUNC31_IN_SEL_CFG_REG register + * GPIO input function configuration register + */ + +#define GPIO_FUNC31_IN_SEL_CFG_REG (DR_REG_GPIO_BASE + 0x1d0) + +/* GPIO_SIG31_IN_SEL : R/W; bitpos: [7]; default: 0; + * set this bit to bypass GPIO. 1:do not bypass GPIO. 0:bypass GPIO. + */ + +#define GPIO_SIG31_IN_SEL (BIT(7)) +#define GPIO_SIG31_IN_SEL_M (GPIO_SIG31_IN_SEL_V << GPIO_SIG31_IN_SEL_S) +#define GPIO_SIG31_IN_SEL_V 0x00000001 +#define GPIO_SIG31_IN_SEL_S 7 + +/* GPIO_FUNC31_IN_INV_SEL : R/W; bitpos: [6]; default: 0; + * set this bit to invert input signal. 1:invert. 0:not invert. + */ + +#define GPIO_FUNC31_IN_INV_SEL (BIT(6)) +#define GPIO_FUNC31_IN_INV_SEL_M (GPIO_FUNC31_IN_INV_SEL_V << GPIO_FUNC31_IN_INV_SEL_S) +#define GPIO_FUNC31_IN_INV_SEL_V 0x00000001 +#define GPIO_FUNC31_IN_INV_SEL_S 6 + +/* GPIO_FUNC31_IN_SEL : R/W; bitpos: [5:0]; default: 0; + * set this value: s=0-53: connect GPIO[s] to this port. s=0x38: set this + * port always high level. s=0x3C: set this port always low level. + */ + +#define GPIO_FUNC31_IN_SEL 0x0000003f +#define GPIO_FUNC31_IN_SEL_M (GPIO_FUNC31_IN_SEL_V << GPIO_FUNC31_IN_SEL_S) +#define GPIO_FUNC31_IN_SEL_V 0x0000003f +#define GPIO_FUNC31_IN_SEL_S 0 + +/* GPIO_FUNC32_IN_SEL_CFG_REG register + * GPIO input function configuration register + */ + +#define GPIO_FUNC32_IN_SEL_CFG_REG (DR_REG_GPIO_BASE + 0x1d4) + +/* GPIO_SIG32_IN_SEL : R/W; bitpos: [7]; default: 0; + * set this bit to bypass GPIO. 1:do not bypass GPIO. 0:bypass GPIO. + */ + +#define GPIO_SIG32_IN_SEL (BIT(7)) +#define GPIO_SIG32_IN_SEL_M (GPIO_SIG32_IN_SEL_V << GPIO_SIG32_IN_SEL_S) +#define GPIO_SIG32_IN_SEL_V 0x00000001 +#define GPIO_SIG32_IN_SEL_S 7 + +/* GPIO_FUNC32_IN_INV_SEL : R/W; bitpos: [6]; default: 0; + * set this bit to invert input signal. 1:invert. 0:not invert. + */ + +#define GPIO_FUNC32_IN_INV_SEL (BIT(6)) +#define GPIO_FUNC32_IN_INV_SEL_M (GPIO_FUNC32_IN_INV_SEL_V << GPIO_FUNC32_IN_INV_SEL_S) +#define GPIO_FUNC32_IN_INV_SEL_V 0x00000001 +#define GPIO_FUNC32_IN_INV_SEL_S 6 + +/* GPIO_FUNC32_IN_SEL : R/W; bitpos: [5:0]; default: 0; + * set this value: s=0-53: connect GPIO[s] to this port. s=0x38: set this + * port always high level. s=0x3C: set this port always low level. + */ + +#define GPIO_FUNC32_IN_SEL 0x0000003f +#define GPIO_FUNC32_IN_SEL_M (GPIO_FUNC32_IN_SEL_V << GPIO_FUNC32_IN_SEL_S) +#define GPIO_FUNC32_IN_SEL_V 0x0000003f +#define GPIO_FUNC32_IN_SEL_S 0 + +/* GPIO_FUNC33_IN_SEL_CFG_REG register + * GPIO input function configuration register + */ + +#define GPIO_FUNC33_IN_SEL_CFG_REG (DR_REG_GPIO_BASE + 0x1d8) + +/* GPIO_SIG33_IN_SEL : R/W; bitpos: [7]; default: 0; + * set this bit to bypass GPIO. 1:do not bypass GPIO. 0:bypass GPIO. + */ + +#define GPIO_SIG33_IN_SEL (BIT(7)) +#define GPIO_SIG33_IN_SEL_M (GPIO_SIG33_IN_SEL_V << GPIO_SIG33_IN_SEL_S) +#define GPIO_SIG33_IN_SEL_V 0x00000001 +#define GPIO_SIG33_IN_SEL_S 7 + +/* GPIO_FUNC33_IN_INV_SEL : R/W; bitpos: [6]; default: 0; + * set this bit to invert input signal. 1:invert. 0:not invert. + */ + +#define GPIO_FUNC33_IN_INV_SEL (BIT(6)) +#define GPIO_FUNC33_IN_INV_SEL_M (GPIO_FUNC33_IN_INV_SEL_V << GPIO_FUNC33_IN_INV_SEL_S) +#define GPIO_FUNC33_IN_INV_SEL_V 0x00000001 +#define GPIO_FUNC33_IN_INV_SEL_S 6 + +/* GPIO_FUNC33_IN_SEL : R/W; bitpos: [5:0]; default: 0; + * set this value: s=0-53: connect GPIO[s] to this port. s=0x38: set this + * port always high level. s=0x3C: set this port always low level. + */ + +#define GPIO_FUNC33_IN_SEL 0x0000003f +#define GPIO_FUNC33_IN_SEL_M (GPIO_FUNC33_IN_SEL_V << GPIO_FUNC33_IN_SEL_S) +#define GPIO_FUNC33_IN_SEL_V 0x0000003f +#define GPIO_FUNC33_IN_SEL_S 0 + +/* GPIO_FUNC34_IN_SEL_CFG_REG register + * GPIO input function configuration register + */ + +#define GPIO_FUNC34_IN_SEL_CFG_REG (DR_REG_GPIO_BASE + 0x1dc) + +/* GPIO_SIG34_IN_SEL : R/W; bitpos: [7]; default: 0; + * set this bit to bypass GPIO. 1:do not bypass GPIO. 0:bypass GPIO. + */ + +#define GPIO_SIG34_IN_SEL (BIT(7)) +#define GPIO_SIG34_IN_SEL_M (GPIO_SIG34_IN_SEL_V << GPIO_SIG34_IN_SEL_S) +#define GPIO_SIG34_IN_SEL_V 0x00000001 +#define GPIO_SIG34_IN_SEL_S 7 + +/* GPIO_FUNC34_IN_INV_SEL : R/W; bitpos: [6]; default: 0; + * set this bit to invert input signal. 1:invert. 0:not invert. + */ + +#define GPIO_FUNC34_IN_INV_SEL (BIT(6)) +#define GPIO_FUNC34_IN_INV_SEL_M (GPIO_FUNC34_IN_INV_SEL_V << GPIO_FUNC34_IN_INV_SEL_S) +#define GPIO_FUNC34_IN_INV_SEL_V 0x00000001 +#define GPIO_FUNC34_IN_INV_SEL_S 6 + +/* GPIO_FUNC34_IN_SEL : R/W; bitpos: [5:0]; default: 0; + * set this value: s=0-53: connect GPIO[s] to this port. s=0x38: set this + * port always high level. s=0x3C: set this port always low level. + */ + +#define GPIO_FUNC34_IN_SEL 0x0000003f +#define GPIO_FUNC34_IN_SEL_M (GPIO_FUNC34_IN_SEL_V << GPIO_FUNC34_IN_SEL_S) +#define GPIO_FUNC34_IN_SEL_V 0x0000003f +#define GPIO_FUNC34_IN_SEL_S 0 + +/* GPIO_FUNC35_IN_SEL_CFG_REG register + * GPIO input function configuration register + */ + +#define GPIO_FUNC35_IN_SEL_CFG_REG (DR_REG_GPIO_BASE + 0x1e0) + +/* GPIO_SIG35_IN_SEL : R/W; bitpos: [7]; default: 0; + * set this bit to bypass GPIO. 1:do not bypass GPIO. 0:bypass GPIO. + */ + +#define GPIO_SIG35_IN_SEL (BIT(7)) +#define GPIO_SIG35_IN_SEL_M (GPIO_SIG35_IN_SEL_V << GPIO_SIG35_IN_SEL_S) +#define GPIO_SIG35_IN_SEL_V 0x00000001 +#define GPIO_SIG35_IN_SEL_S 7 + +/* GPIO_FUNC35_IN_INV_SEL : R/W; bitpos: [6]; default: 0; + * set this bit to invert input signal. 1:invert. 0:not invert. + */ + +#define GPIO_FUNC35_IN_INV_SEL (BIT(6)) +#define GPIO_FUNC35_IN_INV_SEL_M (GPIO_FUNC35_IN_INV_SEL_V << GPIO_FUNC35_IN_INV_SEL_S) +#define GPIO_FUNC35_IN_INV_SEL_V 0x00000001 +#define GPIO_FUNC35_IN_INV_SEL_S 6 + +/* GPIO_FUNC35_IN_SEL : R/W; bitpos: [5:0]; default: 0; + * set this value: s=0-53: connect GPIO[s] to this port. s=0x38: set this + * port always high level. s=0x3C: set this port always low level. + */ + +#define GPIO_FUNC35_IN_SEL 0x0000003f +#define GPIO_FUNC35_IN_SEL_M (GPIO_FUNC35_IN_SEL_V << GPIO_FUNC35_IN_SEL_S) +#define GPIO_FUNC35_IN_SEL_V 0x0000003f +#define GPIO_FUNC35_IN_SEL_S 0 + +/* GPIO_FUNC36_IN_SEL_CFG_REG register + * GPIO input function configuration register + */ + +#define GPIO_FUNC36_IN_SEL_CFG_REG (DR_REG_GPIO_BASE + 0x1e4) + +/* GPIO_SIG36_IN_SEL : R/W; bitpos: [7]; default: 0; + * set this bit to bypass GPIO. 1:do not bypass GPIO. 0:bypass GPIO. + */ + +#define GPIO_SIG36_IN_SEL (BIT(7)) +#define GPIO_SIG36_IN_SEL_M (GPIO_SIG36_IN_SEL_V << GPIO_SIG36_IN_SEL_S) +#define GPIO_SIG36_IN_SEL_V 0x00000001 +#define GPIO_SIG36_IN_SEL_S 7 + +/* GPIO_FUNC36_IN_INV_SEL : R/W; bitpos: [6]; default: 0; + * set this bit to invert input signal. 1:invert. 0:not invert. + */ + +#define GPIO_FUNC36_IN_INV_SEL (BIT(6)) +#define GPIO_FUNC36_IN_INV_SEL_M (GPIO_FUNC36_IN_INV_SEL_V << GPIO_FUNC36_IN_INV_SEL_S) +#define GPIO_FUNC36_IN_INV_SEL_V 0x00000001 +#define GPIO_FUNC36_IN_INV_SEL_S 6 + +/* GPIO_FUNC36_IN_SEL : R/W; bitpos: [5:0]; default: 0; + * set this value: s=0-53: connect GPIO[s] to this port. s=0x38: set this + * port always high level. s=0x3C: set this port always low level. + */ + +#define GPIO_FUNC36_IN_SEL 0x0000003f +#define GPIO_FUNC36_IN_SEL_M (GPIO_FUNC36_IN_SEL_V << GPIO_FUNC36_IN_SEL_S) +#define GPIO_FUNC36_IN_SEL_V 0x0000003f +#define GPIO_FUNC36_IN_SEL_S 0 + +/* GPIO_FUNC37_IN_SEL_CFG_REG register + * GPIO input function configuration register + */ + +#define GPIO_FUNC37_IN_SEL_CFG_REG (DR_REG_GPIO_BASE + 0x1e8) + +/* GPIO_SIG37_IN_SEL : R/W; bitpos: [7]; default: 0; + * set this bit to bypass GPIO. 1:do not bypass GPIO. 0:bypass GPIO. + */ + +#define GPIO_SIG37_IN_SEL (BIT(7)) +#define GPIO_SIG37_IN_SEL_M (GPIO_SIG37_IN_SEL_V << GPIO_SIG37_IN_SEL_S) +#define GPIO_SIG37_IN_SEL_V 0x00000001 +#define GPIO_SIG37_IN_SEL_S 7 + +/* GPIO_FUNC37_IN_INV_SEL : R/W; bitpos: [6]; default: 0; + * set this bit to invert input signal. 1:invert. 0:not invert. + */ + +#define GPIO_FUNC37_IN_INV_SEL (BIT(6)) +#define GPIO_FUNC37_IN_INV_SEL_M (GPIO_FUNC37_IN_INV_SEL_V << GPIO_FUNC37_IN_INV_SEL_S) +#define GPIO_FUNC37_IN_INV_SEL_V 0x00000001 +#define GPIO_FUNC37_IN_INV_SEL_S 6 + +/* GPIO_FUNC37_IN_SEL : R/W; bitpos: [5:0]; default: 0; + * set this value: s=0-53: connect GPIO[s] to this port. s=0x38: set this + * port always high level. s=0x3C: set this port always low level. + */ + +#define GPIO_FUNC37_IN_SEL 0x0000003f +#define GPIO_FUNC37_IN_SEL_M (GPIO_FUNC37_IN_SEL_V << GPIO_FUNC37_IN_SEL_S) +#define GPIO_FUNC37_IN_SEL_V 0x0000003f +#define GPIO_FUNC37_IN_SEL_S 0 + +/* GPIO_FUNC38_IN_SEL_CFG_REG register + * GPIO input function configuration register + */ + +#define GPIO_FUNC38_IN_SEL_CFG_REG (DR_REG_GPIO_BASE + 0x1ec) + +/* GPIO_SIG38_IN_SEL : R/W; bitpos: [7]; default: 0; + * set this bit to bypass GPIO. 1:do not bypass GPIO. 0:bypass GPIO. + */ + +#define GPIO_SIG38_IN_SEL (BIT(7)) +#define GPIO_SIG38_IN_SEL_M (GPIO_SIG38_IN_SEL_V << GPIO_SIG38_IN_SEL_S) +#define GPIO_SIG38_IN_SEL_V 0x00000001 +#define GPIO_SIG38_IN_SEL_S 7 + +/* GPIO_FUNC38_IN_INV_SEL : R/W; bitpos: [6]; default: 0; + * set this bit to invert input signal. 1:invert. 0:not invert. + */ + +#define GPIO_FUNC38_IN_INV_SEL (BIT(6)) +#define GPIO_FUNC38_IN_INV_SEL_M (GPIO_FUNC38_IN_INV_SEL_V << GPIO_FUNC38_IN_INV_SEL_S) +#define GPIO_FUNC38_IN_INV_SEL_V 0x00000001 +#define GPIO_FUNC38_IN_INV_SEL_S 6 + +/* GPIO_FUNC38_IN_SEL : R/W; bitpos: [5:0]; default: 0; + * set this value: s=0-53: connect GPIO[s] to this port. s=0x38: set this + * port always high level. s=0x3C: set this port always low level. + */ + +#define GPIO_FUNC38_IN_SEL 0x0000003f +#define GPIO_FUNC38_IN_SEL_M (GPIO_FUNC38_IN_SEL_V << GPIO_FUNC38_IN_SEL_S) +#define GPIO_FUNC38_IN_SEL_V 0x0000003f +#define GPIO_FUNC38_IN_SEL_S 0 + +/* GPIO_FUNC39_IN_SEL_CFG_REG register + * GPIO input function configuration register + */ + +#define GPIO_FUNC39_IN_SEL_CFG_REG (DR_REG_GPIO_BASE + 0x1f0) + +/* GPIO_SIG39_IN_SEL : R/W; bitpos: [7]; default: 0; + * set this bit to bypass GPIO. 1:do not bypass GPIO. 0:bypass GPIO. + */ + +#define GPIO_SIG39_IN_SEL (BIT(7)) +#define GPIO_SIG39_IN_SEL_M (GPIO_SIG39_IN_SEL_V << GPIO_SIG39_IN_SEL_S) +#define GPIO_SIG39_IN_SEL_V 0x00000001 +#define GPIO_SIG39_IN_SEL_S 7 + +/* GPIO_FUNC39_IN_INV_SEL : R/W; bitpos: [6]; default: 0; + * set this bit to invert input signal. 1:invert. 0:not invert. + */ + +#define GPIO_FUNC39_IN_INV_SEL (BIT(6)) +#define GPIO_FUNC39_IN_INV_SEL_M (GPIO_FUNC39_IN_INV_SEL_V << GPIO_FUNC39_IN_INV_SEL_S) +#define GPIO_FUNC39_IN_INV_SEL_V 0x00000001 +#define GPIO_FUNC39_IN_INV_SEL_S 6 + +/* GPIO_FUNC39_IN_SEL : R/W; bitpos: [5:0]; default: 0; + * set this value: s=0-53: connect GPIO[s] to this port. s=0x38: set this + * port always high level. s=0x3C: set this port always low level. + */ + +#define GPIO_FUNC39_IN_SEL 0x0000003f +#define GPIO_FUNC39_IN_SEL_M (GPIO_FUNC39_IN_SEL_V << GPIO_FUNC39_IN_SEL_S) +#define GPIO_FUNC39_IN_SEL_V 0x0000003f +#define GPIO_FUNC39_IN_SEL_S 0 + +/* GPIO_FUNC40_IN_SEL_CFG_REG register + * GPIO input function configuration register + */ + +#define GPIO_FUNC40_IN_SEL_CFG_REG (DR_REG_GPIO_BASE + 0x1f4) + +/* GPIO_SIG40_IN_SEL : R/W; bitpos: [7]; default: 0; + * set this bit to bypass GPIO. 1:do not bypass GPIO. 0:bypass GPIO. + */ + +#define GPIO_SIG40_IN_SEL (BIT(7)) +#define GPIO_SIG40_IN_SEL_M (GPIO_SIG40_IN_SEL_V << GPIO_SIG40_IN_SEL_S) +#define GPIO_SIG40_IN_SEL_V 0x00000001 +#define GPIO_SIG40_IN_SEL_S 7 + +/* GPIO_FUNC40_IN_INV_SEL : R/W; bitpos: [6]; default: 0; + * set this bit to invert input signal. 1:invert. 0:not invert. + */ + +#define GPIO_FUNC40_IN_INV_SEL (BIT(6)) +#define GPIO_FUNC40_IN_INV_SEL_M (GPIO_FUNC40_IN_INV_SEL_V << GPIO_FUNC40_IN_INV_SEL_S) +#define GPIO_FUNC40_IN_INV_SEL_V 0x00000001 +#define GPIO_FUNC40_IN_INV_SEL_S 6 + +/* GPIO_FUNC40_IN_SEL : R/W; bitpos: [5:0]; default: 0; + * set this value: s=0-53: connect GPIO[s] to this port. s=0x38: set this + * port always high level. s=0x3C: set this port always low level. + */ + +#define GPIO_FUNC40_IN_SEL 0x0000003f +#define GPIO_FUNC40_IN_SEL_M (GPIO_FUNC40_IN_SEL_V << GPIO_FUNC40_IN_SEL_S) +#define GPIO_FUNC40_IN_SEL_V 0x0000003f +#define GPIO_FUNC40_IN_SEL_S 0 + +/* GPIO_FUNC41_IN_SEL_CFG_REG register + * GPIO input function configuration register + */ + +#define GPIO_FUNC41_IN_SEL_CFG_REG (DR_REG_GPIO_BASE + 0x1f8) + +/* GPIO_SIG41_IN_SEL : R/W; bitpos: [7]; default: 0; + * set this bit to bypass GPIO. 1:do not bypass GPIO. 0:bypass GPIO. + */ + +#define GPIO_SIG41_IN_SEL (BIT(7)) +#define GPIO_SIG41_IN_SEL_M (GPIO_SIG41_IN_SEL_V << GPIO_SIG41_IN_SEL_S) +#define GPIO_SIG41_IN_SEL_V 0x00000001 +#define GPIO_SIG41_IN_SEL_S 7 + +/* GPIO_FUNC41_IN_INV_SEL : R/W; bitpos: [6]; default: 0; + * set this bit to invert input signal. 1:invert. 0:not invert. + */ + +#define GPIO_FUNC41_IN_INV_SEL (BIT(6)) +#define GPIO_FUNC41_IN_INV_SEL_M (GPIO_FUNC41_IN_INV_SEL_V << GPIO_FUNC41_IN_INV_SEL_S) +#define GPIO_FUNC41_IN_INV_SEL_V 0x00000001 +#define GPIO_FUNC41_IN_INV_SEL_S 6 + +/* GPIO_FUNC41_IN_SEL : R/W; bitpos: [5:0]; default: 0; + * set this value: s=0-53: connect GPIO[s] to this port. s=0x38: set this + * port always high level. s=0x3C: set this port always low level. + */ + +#define GPIO_FUNC41_IN_SEL 0x0000003f +#define GPIO_FUNC41_IN_SEL_M (GPIO_FUNC41_IN_SEL_V << GPIO_FUNC41_IN_SEL_S) +#define GPIO_FUNC41_IN_SEL_V 0x0000003f +#define GPIO_FUNC41_IN_SEL_S 0 + +/* GPIO_FUNC42_IN_SEL_CFG_REG register + * GPIO input function configuration register + */ + +#define GPIO_FUNC42_IN_SEL_CFG_REG (DR_REG_GPIO_BASE + 0x1fc) + +/* GPIO_SIG42_IN_SEL : R/W; bitpos: [7]; default: 0; + * set this bit to bypass GPIO. 1:do not bypass GPIO. 0:bypass GPIO. + */ + +#define GPIO_SIG42_IN_SEL (BIT(7)) +#define GPIO_SIG42_IN_SEL_M (GPIO_SIG42_IN_SEL_V << GPIO_SIG42_IN_SEL_S) +#define GPIO_SIG42_IN_SEL_V 0x00000001 +#define GPIO_SIG42_IN_SEL_S 7 + +/* GPIO_FUNC42_IN_INV_SEL : R/W; bitpos: [6]; default: 0; + * set this bit to invert input signal. 1:invert. 0:not invert. + */ + +#define GPIO_FUNC42_IN_INV_SEL (BIT(6)) +#define GPIO_FUNC42_IN_INV_SEL_M (GPIO_FUNC42_IN_INV_SEL_V << GPIO_FUNC42_IN_INV_SEL_S) +#define GPIO_FUNC42_IN_INV_SEL_V 0x00000001 +#define GPIO_FUNC42_IN_INV_SEL_S 6 + +/* GPIO_FUNC42_IN_SEL : R/W; bitpos: [5:0]; default: 0; + * set this value: s=0-53: connect GPIO[s] to this port. s=0x38: set this + * port always high level. s=0x3C: set this port always low level. + */ + +#define GPIO_FUNC42_IN_SEL 0x0000003f +#define GPIO_FUNC42_IN_SEL_M (GPIO_FUNC42_IN_SEL_V << GPIO_FUNC42_IN_SEL_S) +#define GPIO_FUNC42_IN_SEL_V 0x0000003f +#define GPIO_FUNC42_IN_SEL_S 0 + +/* GPIO_FUNC43_IN_SEL_CFG_REG register + * GPIO input function configuration register + */ + +#define GPIO_FUNC43_IN_SEL_CFG_REG (DR_REG_GPIO_BASE + 0x200) + +/* GPIO_SIG43_IN_SEL : R/W; bitpos: [7]; default: 0; + * set this bit to bypass GPIO. 1:do not bypass GPIO. 0:bypass GPIO. + */ + +#define GPIO_SIG43_IN_SEL (BIT(7)) +#define GPIO_SIG43_IN_SEL_M (GPIO_SIG43_IN_SEL_V << GPIO_SIG43_IN_SEL_S) +#define GPIO_SIG43_IN_SEL_V 0x00000001 +#define GPIO_SIG43_IN_SEL_S 7 + +/* GPIO_FUNC43_IN_INV_SEL : R/W; bitpos: [6]; default: 0; + * set this bit to invert input signal. 1:invert. 0:not invert. + */ + +#define GPIO_FUNC43_IN_INV_SEL (BIT(6)) +#define GPIO_FUNC43_IN_INV_SEL_M (GPIO_FUNC43_IN_INV_SEL_V << GPIO_FUNC43_IN_INV_SEL_S) +#define GPIO_FUNC43_IN_INV_SEL_V 0x00000001 +#define GPIO_FUNC43_IN_INV_SEL_S 6 + +/* GPIO_FUNC43_IN_SEL : R/W; bitpos: [5:0]; default: 0; + * set this value: s=0-53: connect GPIO[s] to this port. s=0x38: set this + * port always high level. s=0x3C: set this port always low level. + */ + +#define GPIO_FUNC43_IN_SEL 0x0000003f +#define GPIO_FUNC43_IN_SEL_M (GPIO_FUNC43_IN_SEL_V << GPIO_FUNC43_IN_SEL_S) +#define GPIO_FUNC43_IN_SEL_V 0x0000003f +#define GPIO_FUNC43_IN_SEL_S 0 + +/* GPIO_FUNC44_IN_SEL_CFG_REG register + * GPIO input function configuration register + */ + +#define GPIO_FUNC44_IN_SEL_CFG_REG (DR_REG_GPIO_BASE + 0x204) + +/* GPIO_SIG44_IN_SEL : R/W; bitpos: [7]; default: 0; + * set this bit to bypass GPIO. 1:do not bypass GPIO. 0:bypass GPIO. + */ + +#define GPIO_SIG44_IN_SEL (BIT(7)) +#define GPIO_SIG44_IN_SEL_M (GPIO_SIG44_IN_SEL_V << GPIO_SIG44_IN_SEL_S) +#define GPIO_SIG44_IN_SEL_V 0x00000001 +#define GPIO_SIG44_IN_SEL_S 7 + +/* GPIO_FUNC44_IN_INV_SEL : R/W; bitpos: [6]; default: 0; + * set this bit to invert input signal. 1:invert. 0:not invert. + */ + +#define GPIO_FUNC44_IN_INV_SEL (BIT(6)) +#define GPIO_FUNC44_IN_INV_SEL_M (GPIO_FUNC44_IN_INV_SEL_V << GPIO_FUNC44_IN_INV_SEL_S) +#define GPIO_FUNC44_IN_INV_SEL_V 0x00000001 +#define GPIO_FUNC44_IN_INV_SEL_S 6 + +/* GPIO_FUNC44_IN_SEL : R/W; bitpos: [5:0]; default: 0; + * set this value: s=0-53: connect GPIO[s] to this port. s=0x38: set this + * port always high level. s=0x3C: set this port always low level. + */ + +#define GPIO_FUNC44_IN_SEL 0x0000003f +#define GPIO_FUNC44_IN_SEL_M (GPIO_FUNC44_IN_SEL_V << GPIO_FUNC44_IN_SEL_S) +#define GPIO_FUNC44_IN_SEL_V 0x0000003f +#define GPIO_FUNC44_IN_SEL_S 0 + +/* GPIO_FUNC45_IN_SEL_CFG_REG register + * GPIO input function configuration register + */ + +#define GPIO_FUNC45_IN_SEL_CFG_REG (DR_REG_GPIO_BASE + 0x208) + +/* GPIO_SIG45_IN_SEL : R/W; bitpos: [7]; default: 0; + * set this bit to bypass GPIO. 1:do not bypass GPIO. 0:bypass GPIO. + */ + +#define GPIO_SIG45_IN_SEL (BIT(7)) +#define GPIO_SIG45_IN_SEL_M (GPIO_SIG45_IN_SEL_V << GPIO_SIG45_IN_SEL_S) +#define GPIO_SIG45_IN_SEL_V 0x00000001 +#define GPIO_SIG45_IN_SEL_S 7 + +/* GPIO_FUNC45_IN_INV_SEL : R/W; bitpos: [6]; default: 0; + * set this bit to invert input signal. 1:invert. 0:not invert. + */ + +#define GPIO_FUNC45_IN_INV_SEL (BIT(6)) +#define GPIO_FUNC45_IN_INV_SEL_M (GPIO_FUNC45_IN_INV_SEL_V << GPIO_FUNC45_IN_INV_SEL_S) +#define GPIO_FUNC45_IN_INV_SEL_V 0x00000001 +#define GPIO_FUNC45_IN_INV_SEL_S 6 + +/* GPIO_FUNC45_IN_SEL : R/W; bitpos: [5:0]; default: 0; + * set this value: s=0-53: connect GPIO[s] to this port. s=0x38: set this + * port always high level. s=0x3C: set this port always low level. + */ + +#define GPIO_FUNC45_IN_SEL 0x0000003f +#define GPIO_FUNC45_IN_SEL_M (GPIO_FUNC45_IN_SEL_V << GPIO_FUNC45_IN_SEL_S) +#define GPIO_FUNC45_IN_SEL_V 0x0000003f +#define GPIO_FUNC45_IN_SEL_S 0 + +/* GPIO_FUNC46_IN_SEL_CFG_REG register + * GPIO input function configuration register + */ + +#define GPIO_FUNC46_IN_SEL_CFG_REG (DR_REG_GPIO_BASE + 0x20c) + +/* GPIO_SIG46_IN_SEL : R/W; bitpos: [7]; default: 0; + * set this bit to bypass GPIO. 1:do not bypass GPIO. 0:bypass GPIO. + */ + +#define GPIO_SIG46_IN_SEL (BIT(7)) +#define GPIO_SIG46_IN_SEL_M (GPIO_SIG46_IN_SEL_V << GPIO_SIG46_IN_SEL_S) +#define GPIO_SIG46_IN_SEL_V 0x00000001 +#define GPIO_SIG46_IN_SEL_S 7 + +/* GPIO_FUNC46_IN_INV_SEL : R/W; bitpos: [6]; default: 0; + * set this bit to invert input signal. 1:invert. 0:not invert. + */ + +#define GPIO_FUNC46_IN_INV_SEL (BIT(6)) +#define GPIO_FUNC46_IN_INV_SEL_M (GPIO_FUNC46_IN_INV_SEL_V << GPIO_FUNC46_IN_INV_SEL_S) +#define GPIO_FUNC46_IN_INV_SEL_V 0x00000001 +#define GPIO_FUNC46_IN_INV_SEL_S 6 + +/* GPIO_FUNC46_IN_SEL : R/W; bitpos: [5:0]; default: 0; + * set this value: s=0-53: connect GPIO[s] to this port. s=0x38: set this + * port always high level. s=0x3C: set this port always low level. + */ + +#define GPIO_FUNC46_IN_SEL 0x0000003f +#define GPIO_FUNC46_IN_SEL_M (GPIO_FUNC46_IN_SEL_V << GPIO_FUNC46_IN_SEL_S) +#define GPIO_FUNC46_IN_SEL_V 0x0000003f +#define GPIO_FUNC46_IN_SEL_S 0 + +/* GPIO_FUNC47_IN_SEL_CFG_REG register + * GPIO input function configuration register + */ + +#define GPIO_FUNC47_IN_SEL_CFG_REG (DR_REG_GPIO_BASE + 0x210) + +/* GPIO_SIG47_IN_SEL : R/W; bitpos: [7]; default: 0; + * set this bit to bypass GPIO. 1:do not bypass GPIO. 0:bypass GPIO. + */ + +#define GPIO_SIG47_IN_SEL (BIT(7)) +#define GPIO_SIG47_IN_SEL_M (GPIO_SIG47_IN_SEL_V << GPIO_SIG47_IN_SEL_S) +#define GPIO_SIG47_IN_SEL_V 0x00000001 +#define GPIO_SIG47_IN_SEL_S 7 + +/* GPIO_FUNC47_IN_INV_SEL : R/W; bitpos: [6]; default: 0; + * set this bit to invert input signal. 1:invert. 0:not invert. + */ + +#define GPIO_FUNC47_IN_INV_SEL (BIT(6)) +#define GPIO_FUNC47_IN_INV_SEL_M (GPIO_FUNC47_IN_INV_SEL_V << GPIO_FUNC47_IN_INV_SEL_S) +#define GPIO_FUNC47_IN_INV_SEL_V 0x00000001 +#define GPIO_FUNC47_IN_INV_SEL_S 6 + +/* GPIO_FUNC47_IN_SEL : R/W; bitpos: [5:0]; default: 0; + * set this value: s=0-53: connect GPIO[s] to this port. s=0x38: set this + * port always high level. s=0x3C: set this port always low level. + */ + +#define GPIO_FUNC47_IN_SEL 0x0000003f +#define GPIO_FUNC47_IN_SEL_M (GPIO_FUNC47_IN_SEL_V << GPIO_FUNC47_IN_SEL_S) +#define GPIO_FUNC47_IN_SEL_V 0x0000003f +#define GPIO_FUNC47_IN_SEL_S 0 + +/* GPIO_FUNC48_IN_SEL_CFG_REG register + * GPIO input function configuration register + */ + +#define GPIO_FUNC48_IN_SEL_CFG_REG (DR_REG_GPIO_BASE + 0x214) + +/* GPIO_SIG48_IN_SEL : R/W; bitpos: [7]; default: 0; + * set this bit to bypass GPIO. 1:do not bypass GPIO. 0:bypass GPIO. + */ + +#define GPIO_SIG48_IN_SEL (BIT(7)) +#define GPIO_SIG48_IN_SEL_M (GPIO_SIG48_IN_SEL_V << GPIO_SIG48_IN_SEL_S) +#define GPIO_SIG48_IN_SEL_V 0x00000001 +#define GPIO_SIG48_IN_SEL_S 7 + +/* GPIO_FUNC48_IN_INV_SEL : R/W; bitpos: [6]; default: 0; + * set this bit to invert input signal. 1:invert. 0:not invert. + */ + +#define GPIO_FUNC48_IN_INV_SEL (BIT(6)) +#define GPIO_FUNC48_IN_INV_SEL_M (GPIO_FUNC48_IN_INV_SEL_V << GPIO_FUNC48_IN_INV_SEL_S) +#define GPIO_FUNC48_IN_INV_SEL_V 0x00000001 +#define GPIO_FUNC48_IN_INV_SEL_S 6 + +/* GPIO_FUNC48_IN_SEL : R/W; bitpos: [5:0]; default: 0; + * set this value: s=0-53: connect GPIO[s] to this port. s=0x38: set this + * port always high level. s=0x3C: set this port always low level. + */ + +#define GPIO_FUNC48_IN_SEL 0x0000003f +#define GPIO_FUNC48_IN_SEL_M (GPIO_FUNC48_IN_SEL_V << GPIO_FUNC48_IN_SEL_S) +#define GPIO_FUNC48_IN_SEL_V 0x0000003f +#define GPIO_FUNC48_IN_SEL_S 0 + +/* GPIO_FUNC49_IN_SEL_CFG_REG register + * GPIO input function configuration register + */ + +#define GPIO_FUNC49_IN_SEL_CFG_REG (DR_REG_GPIO_BASE + 0x218) + +/* GPIO_SIG49_IN_SEL : R/W; bitpos: [7]; default: 0; + * set this bit to bypass GPIO. 1:do not bypass GPIO. 0:bypass GPIO. + */ + +#define GPIO_SIG49_IN_SEL (BIT(7)) +#define GPIO_SIG49_IN_SEL_M (GPIO_SIG49_IN_SEL_V << GPIO_SIG49_IN_SEL_S) +#define GPIO_SIG49_IN_SEL_V 0x00000001 +#define GPIO_SIG49_IN_SEL_S 7 + +/* GPIO_FUNC49_IN_INV_SEL : R/W; bitpos: [6]; default: 0; + * set this bit to invert input signal. 1:invert. 0:not invert. + */ + +#define GPIO_FUNC49_IN_INV_SEL (BIT(6)) +#define GPIO_FUNC49_IN_INV_SEL_M (GPIO_FUNC49_IN_INV_SEL_V << GPIO_FUNC49_IN_INV_SEL_S) +#define GPIO_FUNC49_IN_INV_SEL_V 0x00000001 +#define GPIO_FUNC49_IN_INV_SEL_S 6 + +/* GPIO_FUNC49_IN_SEL : R/W; bitpos: [5:0]; default: 0; + * set this value: s=0-53: connect GPIO[s] to this port. s=0x38: set this + * port always high level. s=0x3C: set this port always low level. + */ + +#define GPIO_FUNC49_IN_SEL 0x0000003f +#define GPIO_FUNC49_IN_SEL_M (GPIO_FUNC49_IN_SEL_V << GPIO_FUNC49_IN_SEL_S) +#define GPIO_FUNC49_IN_SEL_V 0x0000003f +#define GPIO_FUNC49_IN_SEL_S 0 + +/* GPIO_FUNC50_IN_SEL_CFG_REG register + * GPIO input function configuration register + */ + +#define GPIO_FUNC50_IN_SEL_CFG_REG (DR_REG_GPIO_BASE + 0x21c) + +/* GPIO_SIG50_IN_SEL : R/W; bitpos: [7]; default: 0; + * set this bit to bypass GPIO. 1:do not bypass GPIO. 0:bypass GPIO. + */ + +#define GPIO_SIG50_IN_SEL (BIT(7)) +#define GPIO_SIG50_IN_SEL_M (GPIO_SIG50_IN_SEL_V << GPIO_SIG50_IN_SEL_S) +#define GPIO_SIG50_IN_SEL_V 0x00000001 +#define GPIO_SIG50_IN_SEL_S 7 + +/* GPIO_FUNC50_IN_INV_SEL : R/W; bitpos: [6]; default: 0; + * set this bit to invert input signal. 1:invert. 0:not invert. + */ + +#define GPIO_FUNC50_IN_INV_SEL (BIT(6)) +#define GPIO_FUNC50_IN_INV_SEL_M (GPIO_FUNC50_IN_INV_SEL_V << GPIO_FUNC50_IN_INV_SEL_S) +#define GPIO_FUNC50_IN_INV_SEL_V 0x00000001 +#define GPIO_FUNC50_IN_INV_SEL_S 6 + +/* GPIO_FUNC50_IN_SEL : R/W; bitpos: [5:0]; default: 0; + * set this value: s=0-53: connect GPIO[s] to this port. s=0x38: set this + * port always high level. s=0x3C: set this port always low level. + */ + +#define GPIO_FUNC50_IN_SEL 0x0000003f +#define GPIO_FUNC50_IN_SEL_M (GPIO_FUNC50_IN_SEL_V << GPIO_FUNC50_IN_SEL_S) +#define GPIO_FUNC50_IN_SEL_V 0x0000003f +#define GPIO_FUNC50_IN_SEL_S 0 + +/* GPIO_FUNC51_IN_SEL_CFG_REG register + * GPIO input function configuration register + */ + +#define GPIO_FUNC51_IN_SEL_CFG_REG (DR_REG_GPIO_BASE + 0x220) + +/* GPIO_SIG51_IN_SEL : R/W; bitpos: [7]; default: 0; + * set this bit to bypass GPIO. 1:do not bypass GPIO. 0:bypass GPIO. + */ + +#define GPIO_SIG51_IN_SEL (BIT(7)) +#define GPIO_SIG51_IN_SEL_M (GPIO_SIG51_IN_SEL_V << GPIO_SIG51_IN_SEL_S) +#define GPIO_SIG51_IN_SEL_V 0x00000001 +#define GPIO_SIG51_IN_SEL_S 7 + +/* GPIO_FUNC51_IN_INV_SEL : R/W; bitpos: [6]; default: 0; + * set this bit to invert input signal. 1:invert. 0:not invert. + */ + +#define GPIO_FUNC51_IN_INV_SEL (BIT(6)) +#define GPIO_FUNC51_IN_INV_SEL_M (GPIO_FUNC51_IN_INV_SEL_V << GPIO_FUNC51_IN_INV_SEL_S) +#define GPIO_FUNC51_IN_INV_SEL_V 0x00000001 +#define GPIO_FUNC51_IN_INV_SEL_S 6 + +/* GPIO_FUNC51_IN_SEL : R/W; bitpos: [5:0]; default: 0; + * set this value: s=0-53: connect GPIO[s] to this port. s=0x38: set this + * port always high level. s=0x3C: set this port always low level. + */ + +#define GPIO_FUNC51_IN_SEL 0x0000003f +#define GPIO_FUNC51_IN_SEL_M (GPIO_FUNC51_IN_SEL_V << GPIO_FUNC51_IN_SEL_S) +#define GPIO_FUNC51_IN_SEL_V 0x0000003f +#define GPIO_FUNC51_IN_SEL_S 0 + +/* GPIO_FUNC52_IN_SEL_CFG_REG register + * GPIO input function configuration register + */ + +#define GPIO_FUNC52_IN_SEL_CFG_REG (DR_REG_GPIO_BASE + 0x224) + +/* GPIO_SIG52_IN_SEL : R/W; bitpos: [7]; default: 0; + * set this bit to bypass GPIO. 1:do not bypass GPIO. 0:bypass GPIO. + */ + +#define GPIO_SIG52_IN_SEL (BIT(7)) +#define GPIO_SIG52_IN_SEL_M (GPIO_SIG52_IN_SEL_V << GPIO_SIG52_IN_SEL_S) +#define GPIO_SIG52_IN_SEL_V 0x00000001 +#define GPIO_SIG52_IN_SEL_S 7 + +/* GPIO_FUNC52_IN_INV_SEL : R/W; bitpos: [6]; default: 0; + * set this bit to invert input signal. 1:invert. 0:not invert. + */ + +#define GPIO_FUNC52_IN_INV_SEL (BIT(6)) +#define GPIO_FUNC52_IN_INV_SEL_M (GPIO_FUNC52_IN_INV_SEL_V << GPIO_FUNC52_IN_INV_SEL_S) +#define GPIO_FUNC52_IN_INV_SEL_V 0x00000001 +#define GPIO_FUNC52_IN_INV_SEL_S 6 + +/* GPIO_FUNC52_IN_SEL : R/W; bitpos: [5:0]; default: 0; + * set this value: s=0-53: connect GPIO[s] to this port. s=0x38: set this + * port always high level. s=0x3C: set this port always low level. + */ + +#define GPIO_FUNC52_IN_SEL 0x0000003f +#define GPIO_FUNC52_IN_SEL_M (GPIO_FUNC52_IN_SEL_V << GPIO_FUNC52_IN_SEL_S) +#define GPIO_FUNC52_IN_SEL_V 0x0000003f +#define GPIO_FUNC52_IN_SEL_S 0 + +/* GPIO_FUNC53_IN_SEL_CFG_REG register + * GPIO input function configuration register + */ + +#define GPIO_FUNC53_IN_SEL_CFG_REG (DR_REG_GPIO_BASE + 0x228) + +/* GPIO_SIG53_IN_SEL : R/W; bitpos: [7]; default: 0; + * set this bit to bypass GPIO. 1:do not bypass GPIO. 0:bypass GPIO. + */ + +#define GPIO_SIG53_IN_SEL (BIT(7)) +#define GPIO_SIG53_IN_SEL_M (GPIO_SIG53_IN_SEL_V << GPIO_SIG53_IN_SEL_S) +#define GPIO_SIG53_IN_SEL_V 0x00000001 +#define GPIO_SIG53_IN_SEL_S 7 + +/* GPIO_FUNC53_IN_INV_SEL : R/W; bitpos: [6]; default: 0; + * set this bit to invert input signal. 1:invert. 0:not invert. + */ + +#define GPIO_FUNC53_IN_INV_SEL (BIT(6)) +#define GPIO_FUNC53_IN_INV_SEL_M (GPIO_FUNC53_IN_INV_SEL_V << GPIO_FUNC53_IN_INV_SEL_S) +#define GPIO_FUNC53_IN_INV_SEL_V 0x00000001 +#define GPIO_FUNC53_IN_INV_SEL_S 6 + +/* GPIO_FUNC53_IN_SEL : R/W; bitpos: [5:0]; default: 0; + * set this value: s=0-53: connect GPIO[s] to this port. s=0x38: set this + * port always high level. s=0x3C: set this port always low level. + */ + +#define GPIO_FUNC53_IN_SEL 0x0000003f +#define GPIO_FUNC53_IN_SEL_M (GPIO_FUNC53_IN_SEL_V << GPIO_FUNC53_IN_SEL_S) +#define GPIO_FUNC53_IN_SEL_V 0x0000003f +#define GPIO_FUNC53_IN_SEL_S 0 + +/* GPIO_FUNC54_IN_SEL_CFG_REG register + * GPIO input function configuration register + */ + +#define GPIO_FUNC54_IN_SEL_CFG_REG (DR_REG_GPIO_BASE + 0x22c) + +/* GPIO_SIG54_IN_SEL : R/W; bitpos: [7]; default: 0; + * set this bit to bypass GPIO. 1:do not bypass GPIO. 0:bypass GPIO. + */ + +#define GPIO_SIG54_IN_SEL (BIT(7)) +#define GPIO_SIG54_IN_SEL_M (GPIO_SIG54_IN_SEL_V << GPIO_SIG54_IN_SEL_S) +#define GPIO_SIG54_IN_SEL_V 0x00000001 +#define GPIO_SIG54_IN_SEL_S 7 + +/* GPIO_FUNC54_IN_INV_SEL : R/W; bitpos: [6]; default: 0; + * set this bit to invert input signal. 1:invert. 0:not invert. + */ + +#define GPIO_FUNC54_IN_INV_SEL (BIT(6)) +#define GPIO_FUNC54_IN_INV_SEL_M (GPIO_FUNC54_IN_INV_SEL_V << GPIO_FUNC54_IN_INV_SEL_S) +#define GPIO_FUNC54_IN_INV_SEL_V 0x00000001 +#define GPIO_FUNC54_IN_INV_SEL_S 6 + +/* GPIO_FUNC54_IN_SEL : R/W; bitpos: [5:0]; default: 0; + * set this value: s=0-53: connect GPIO[s] to this port. s=0x38: set this + * port always high level. s=0x3C: set this port always low level. + */ + +#define GPIO_FUNC54_IN_SEL 0x0000003f +#define GPIO_FUNC54_IN_SEL_M (GPIO_FUNC54_IN_SEL_V << GPIO_FUNC54_IN_SEL_S) +#define GPIO_FUNC54_IN_SEL_V 0x0000003f +#define GPIO_FUNC54_IN_SEL_S 0 + +/* GPIO_FUNC55_IN_SEL_CFG_REG register + * GPIO input function configuration register + */ + +#define GPIO_FUNC55_IN_SEL_CFG_REG (DR_REG_GPIO_BASE + 0x230) + +/* GPIO_SIG55_IN_SEL : R/W; bitpos: [7]; default: 0; + * set this bit to bypass GPIO. 1:do not bypass GPIO. 0:bypass GPIO. + */ + +#define GPIO_SIG55_IN_SEL (BIT(7)) +#define GPIO_SIG55_IN_SEL_M (GPIO_SIG55_IN_SEL_V << GPIO_SIG55_IN_SEL_S) +#define GPIO_SIG55_IN_SEL_V 0x00000001 +#define GPIO_SIG55_IN_SEL_S 7 + +/* GPIO_FUNC55_IN_INV_SEL : R/W; bitpos: [6]; default: 0; + * set this bit to invert input signal. 1:invert. 0:not invert. + */ + +#define GPIO_FUNC55_IN_INV_SEL (BIT(6)) +#define GPIO_FUNC55_IN_INV_SEL_M (GPIO_FUNC55_IN_INV_SEL_V << GPIO_FUNC55_IN_INV_SEL_S) +#define GPIO_FUNC55_IN_INV_SEL_V 0x00000001 +#define GPIO_FUNC55_IN_INV_SEL_S 6 + +/* GPIO_FUNC55_IN_SEL : R/W; bitpos: [5:0]; default: 0; + * set this value: s=0-53: connect GPIO[s] to this port. s=0x38: set this + * port always high level. s=0x3C: set this port always low level. + */ + +#define GPIO_FUNC55_IN_SEL 0x0000003f +#define GPIO_FUNC55_IN_SEL_M (GPIO_FUNC55_IN_SEL_V << GPIO_FUNC55_IN_SEL_S) +#define GPIO_FUNC55_IN_SEL_V 0x0000003f +#define GPIO_FUNC55_IN_SEL_S 0 + +/* GPIO_FUNC56_IN_SEL_CFG_REG register + * GPIO input function configuration register + */ + +#define GPIO_FUNC56_IN_SEL_CFG_REG (DR_REG_GPIO_BASE + 0x234) + +/* GPIO_SIG56_IN_SEL : R/W; bitpos: [7]; default: 0; + * set this bit to bypass GPIO. 1:do not bypass GPIO. 0:bypass GPIO. + */ + +#define GPIO_SIG56_IN_SEL (BIT(7)) +#define GPIO_SIG56_IN_SEL_M (GPIO_SIG56_IN_SEL_V << GPIO_SIG56_IN_SEL_S) +#define GPIO_SIG56_IN_SEL_V 0x00000001 +#define GPIO_SIG56_IN_SEL_S 7 + +/* GPIO_FUNC56_IN_INV_SEL : R/W; bitpos: [6]; default: 0; + * set this bit to invert input signal. 1:invert. 0:not invert. + */ + +#define GPIO_FUNC56_IN_INV_SEL (BIT(6)) +#define GPIO_FUNC56_IN_INV_SEL_M (GPIO_FUNC56_IN_INV_SEL_V << GPIO_FUNC56_IN_INV_SEL_S) +#define GPIO_FUNC56_IN_INV_SEL_V 0x00000001 +#define GPIO_FUNC56_IN_INV_SEL_S 6 + +/* GPIO_FUNC56_IN_SEL : R/W; bitpos: [5:0]; default: 0; + * set this value: s=0-53: connect GPIO[s] to this port. s=0x38: set this + * port always high level. s=0x3C: set this port always low level. + */ + +#define GPIO_FUNC56_IN_SEL 0x0000003f +#define GPIO_FUNC56_IN_SEL_M (GPIO_FUNC56_IN_SEL_V << GPIO_FUNC56_IN_SEL_S) +#define GPIO_FUNC56_IN_SEL_V 0x0000003f +#define GPIO_FUNC56_IN_SEL_S 0 + +/* GPIO_FUNC57_IN_SEL_CFG_REG register + * GPIO input function configuration register + */ + +#define GPIO_FUNC57_IN_SEL_CFG_REG (DR_REG_GPIO_BASE + 0x238) + +/* GPIO_SIG57_IN_SEL : R/W; bitpos: [7]; default: 0; + * set this bit to bypass GPIO. 1:do not bypass GPIO. 0:bypass GPIO. + */ + +#define GPIO_SIG57_IN_SEL (BIT(7)) +#define GPIO_SIG57_IN_SEL_M (GPIO_SIG57_IN_SEL_V << GPIO_SIG57_IN_SEL_S) +#define GPIO_SIG57_IN_SEL_V 0x00000001 +#define GPIO_SIG57_IN_SEL_S 7 + +/* GPIO_FUNC57_IN_INV_SEL : R/W; bitpos: [6]; default: 0; + * set this bit to invert input signal. 1:invert. 0:not invert. + */ + +#define GPIO_FUNC57_IN_INV_SEL (BIT(6)) +#define GPIO_FUNC57_IN_INV_SEL_M (GPIO_FUNC57_IN_INV_SEL_V << GPIO_FUNC57_IN_INV_SEL_S) +#define GPIO_FUNC57_IN_INV_SEL_V 0x00000001 +#define GPIO_FUNC57_IN_INV_SEL_S 6 + +/* GPIO_FUNC57_IN_SEL : R/W; bitpos: [5:0]; default: 0; + * set this value: s=0-53: connect GPIO[s] to this port. s=0x38: set this + * port always high level. s=0x3C: set this port always low level. + */ + +#define GPIO_FUNC57_IN_SEL 0x0000003f +#define GPIO_FUNC57_IN_SEL_M (GPIO_FUNC57_IN_SEL_V << GPIO_FUNC57_IN_SEL_S) +#define GPIO_FUNC57_IN_SEL_V 0x0000003f +#define GPIO_FUNC57_IN_SEL_S 0 + +/* GPIO_FUNC58_IN_SEL_CFG_REG register + * GPIO input function configuration register + */ + +#define GPIO_FUNC58_IN_SEL_CFG_REG (DR_REG_GPIO_BASE + 0x23c) + +/* GPIO_SIG58_IN_SEL : R/W; bitpos: [7]; default: 0; + * set this bit to bypass GPIO. 1:do not bypass GPIO. 0:bypass GPIO. + */ + +#define GPIO_SIG58_IN_SEL (BIT(7)) +#define GPIO_SIG58_IN_SEL_M (GPIO_SIG58_IN_SEL_V << GPIO_SIG58_IN_SEL_S) +#define GPIO_SIG58_IN_SEL_V 0x00000001 +#define GPIO_SIG58_IN_SEL_S 7 + +/* GPIO_FUNC58_IN_INV_SEL : R/W; bitpos: [6]; default: 0; + * set this bit to invert input signal. 1:invert. 0:not invert. + */ + +#define GPIO_FUNC58_IN_INV_SEL (BIT(6)) +#define GPIO_FUNC58_IN_INV_SEL_M (GPIO_FUNC58_IN_INV_SEL_V << GPIO_FUNC58_IN_INV_SEL_S) +#define GPIO_FUNC58_IN_INV_SEL_V 0x00000001 +#define GPIO_FUNC58_IN_INV_SEL_S 6 + +/* GPIO_FUNC58_IN_SEL : R/W; bitpos: [5:0]; default: 0; + * set this value: s=0-53: connect GPIO[s] to this port. s=0x38: set this + * port always high level. s=0x3C: set this port always low level. + */ + +#define GPIO_FUNC58_IN_SEL 0x0000003f +#define GPIO_FUNC58_IN_SEL_M (GPIO_FUNC58_IN_SEL_V << GPIO_FUNC58_IN_SEL_S) +#define GPIO_FUNC58_IN_SEL_V 0x0000003f +#define GPIO_FUNC58_IN_SEL_S 0 + +/* GPIO_FUNC59_IN_SEL_CFG_REG register + * GPIO input function configuration register + */ + +#define GPIO_FUNC59_IN_SEL_CFG_REG (DR_REG_GPIO_BASE + 0x240) + +/* GPIO_SIG59_IN_SEL : R/W; bitpos: [7]; default: 0; + * set this bit to bypass GPIO. 1:do not bypass GPIO. 0:bypass GPIO. + */ + +#define GPIO_SIG59_IN_SEL (BIT(7)) +#define GPIO_SIG59_IN_SEL_M (GPIO_SIG59_IN_SEL_V << GPIO_SIG59_IN_SEL_S) +#define GPIO_SIG59_IN_SEL_V 0x00000001 +#define GPIO_SIG59_IN_SEL_S 7 + +/* GPIO_FUNC59_IN_INV_SEL : R/W; bitpos: [6]; default: 0; + * set this bit to invert input signal. 1:invert. 0:not invert. + */ + +#define GPIO_FUNC59_IN_INV_SEL (BIT(6)) +#define GPIO_FUNC59_IN_INV_SEL_M (GPIO_FUNC59_IN_INV_SEL_V << GPIO_FUNC59_IN_INV_SEL_S) +#define GPIO_FUNC59_IN_INV_SEL_V 0x00000001 +#define GPIO_FUNC59_IN_INV_SEL_S 6 + +/* GPIO_FUNC59_IN_SEL : R/W; bitpos: [5:0]; default: 0; + * set this value: s=0-53: connect GPIO[s] to this port. s=0x38: set this + * port always high level. s=0x3C: set this port always low level. + */ + +#define GPIO_FUNC59_IN_SEL 0x0000003f +#define GPIO_FUNC59_IN_SEL_M (GPIO_FUNC59_IN_SEL_V << GPIO_FUNC59_IN_SEL_S) +#define GPIO_FUNC59_IN_SEL_V 0x0000003f +#define GPIO_FUNC59_IN_SEL_S 0 + +/* GPIO_FUNC60_IN_SEL_CFG_REG register + * GPIO input function configuration register + */ + +#define GPIO_FUNC60_IN_SEL_CFG_REG (DR_REG_GPIO_BASE + 0x244) + +/* GPIO_SIG60_IN_SEL : R/W; bitpos: [7]; default: 0; + * set this bit to bypass GPIO. 1:do not bypass GPIO. 0:bypass GPIO. + */ + +#define GPIO_SIG60_IN_SEL (BIT(7)) +#define GPIO_SIG60_IN_SEL_M (GPIO_SIG60_IN_SEL_V << GPIO_SIG60_IN_SEL_S) +#define GPIO_SIG60_IN_SEL_V 0x00000001 +#define GPIO_SIG60_IN_SEL_S 7 + +/* GPIO_FUNC60_IN_INV_SEL : R/W; bitpos: [6]; default: 0; + * set this bit to invert input signal. 1:invert. 0:not invert. + */ + +#define GPIO_FUNC60_IN_INV_SEL (BIT(6)) +#define GPIO_FUNC60_IN_INV_SEL_M (GPIO_FUNC60_IN_INV_SEL_V << GPIO_FUNC60_IN_INV_SEL_S) +#define GPIO_FUNC60_IN_INV_SEL_V 0x00000001 +#define GPIO_FUNC60_IN_INV_SEL_S 6 + +/* GPIO_FUNC60_IN_SEL : R/W; bitpos: [5:0]; default: 0; + * set this value: s=0-53: connect GPIO[s] to this port. s=0x38: set this + * port always high level. s=0x3C: set this port always low level. + */ + +#define GPIO_FUNC60_IN_SEL 0x0000003f +#define GPIO_FUNC60_IN_SEL_M (GPIO_FUNC60_IN_SEL_V << GPIO_FUNC60_IN_SEL_S) +#define GPIO_FUNC60_IN_SEL_V 0x0000003f +#define GPIO_FUNC60_IN_SEL_S 0 + +/* GPIO_FUNC61_IN_SEL_CFG_REG register + * GPIO input function configuration register + */ + +#define GPIO_FUNC61_IN_SEL_CFG_REG (DR_REG_GPIO_BASE + 0x248) + +/* GPIO_SIG61_IN_SEL : R/W; bitpos: [7]; default: 0; + * set this bit to bypass GPIO. 1:do not bypass GPIO. 0:bypass GPIO. + */ + +#define GPIO_SIG61_IN_SEL (BIT(7)) +#define GPIO_SIG61_IN_SEL_M (GPIO_SIG61_IN_SEL_V << GPIO_SIG61_IN_SEL_S) +#define GPIO_SIG61_IN_SEL_V 0x00000001 +#define GPIO_SIG61_IN_SEL_S 7 + +/* GPIO_FUNC61_IN_INV_SEL : R/W; bitpos: [6]; default: 0; + * set this bit to invert input signal. 1:invert. 0:not invert. + */ + +#define GPIO_FUNC61_IN_INV_SEL (BIT(6)) +#define GPIO_FUNC61_IN_INV_SEL_M (GPIO_FUNC61_IN_INV_SEL_V << GPIO_FUNC61_IN_INV_SEL_S) +#define GPIO_FUNC61_IN_INV_SEL_V 0x00000001 +#define GPIO_FUNC61_IN_INV_SEL_S 6 + +/* GPIO_FUNC61_IN_SEL : R/W; bitpos: [5:0]; default: 0; + * set this value: s=0-53: connect GPIO[s] to this port. s=0x38: set this + * port always high level. s=0x3C: set this port always low level. + */ + +#define GPIO_FUNC61_IN_SEL 0x0000003f +#define GPIO_FUNC61_IN_SEL_M (GPIO_FUNC61_IN_SEL_V << GPIO_FUNC61_IN_SEL_S) +#define GPIO_FUNC61_IN_SEL_V 0x0000003f +#define GPIO_FUNC61_IN_SEL_S 0 + +/* GPIO_FUNC62_IN_SEL_CFG_REG register + * GPIO input function configuration register + */ + +#define GPIO_FUNC62_IN_SEL_CFG_REG (DR_REG_GPIO_BASE + 0x24c) + +/* GPIO_SIG62_IN_SEL : R/W; bitpos: [7]; default: 0; + * set this bit to bypass GPIO. 1:do not bypass GPIO. 0:bypass GPIO. + */ + +#define GPIO_SIG62_IN_SEL (BIT(7)) +#define GPIO_SIG62_IN_SEL_M (GPIO_SIG62_IN_SEL_V << GPIO_SIG62_IN_SEL_S) +#define GPIO_SIG62_IN_SEL_V 0x00000001 +#define GPIO_SIG62_IN_SEL_S 7 + +/* GPIO_FUNC62_IN_INV_SEL : R/W; bitpos: [6]; default: 0; + * set this bit to invert input signal. 1:invert. 0:not invert. + */ + +#define GPIO_FUNC62_IN_INV_SEL (BIT(6)) +#define GPIO_FUNC62_IN_INV_SEL_M (GPIO_FUNC62_IN_INV_SEL_V << GPIO_FUNC62_IN_INV_SEL_S) +#define GPIO_FUNC62_IN_INV_SEL_V 0x00000001 +#define GPIO_FUNC62_IN_INV_SEL_S 6 + +/* GPIO_FUNC62_IN_SEL : R/W; bitpos: [5:0]; default: 0; + * set this value: s=0-53: connect GPIO[s] to this port. s=0x38: set this + * port always high level. s=0x3C: set this port always low level. + */ + +#define GPIO_FUNC62_IN_SEL 0x0000003f +#define GPIO_FUNC62_IN_SEL_M (GPIO_FUNC62_IN_SEL_V << GPIO_FUNC62_IN_SEL_S) +#define GPIO_FUNC62_IN_SEL_V 0x0000003f +#define GPIO_FUNC62_IN_SEL_S 0 + +/* GPIO_FUNC63_IN_SEL_CFG_REG register + * GPIO input function configuration register + */ + +#define GPIO_FUNC63_IN_SEL_CFG_REG (DR_REG_GPIO_BASE + 0x250) + +/* GPIO_SIG63_IN_SEL : R/W; bitpos: [7]; default: 0; + * set this bit to bypass GPIO. 1:do not bypass GPIO. 0:bypass GPIO. + */ + +#define GPIO_SIG63_IN_SEL (BIT(7)) +#define GPIO_SIG63_IN_SEL_M (GPIO_SIG63_IN_SEL_V << GPIO_SIG63_IN_SEL_S) +#define GPIO_SIG63_IN_SEL_V 0x00000001 +#define GPIO_SIG63_IN_SEL_S 7 + +/* GPIO_FUNC63_IN_INV_SEL : R/W; bitpos: [6]; default: 0; + * set this bit to invert input signal. 1:invert. 0:not invert. + */ + +#define GPIO_FUNC63_IN_INV_SEL (BIT(6)) +#define GPIO_FUNC63_IN_INV_SEL_M (GPIO_FUNC63_IN_INV_SEL_V << GPIO_FUNC63_IN_INV_SEL_S) +#define GPIO_FUNC63_IN_INV_SEL_V 0x00000001 +#define GPIO_FUNC63_IN_INV_SEL_S 6 + +/* GPIO_FUNC63_IN_SEL : R/W; bitpos: [5:0]; default: 0; + * set this value: s=0-53: connect GPIO[s] to this port. s=0x38: set this + * port always high level. s=0x3C: set this port always low level. + */ + +#define GPIO_FUNC63_IN_SEL 0x0000003f +#define GPIO_FUNC63_IN_SEL_M (GPIO_FUNC63_IN_SEL_V << GPIO_FUNC63_IN_SEL_S) +#define GPIO_FUNC63_IN_SEL_V 0x0000003f +#define GPIO_FUNC63_IN_SEL_S 0 + +/* GPIO_FUNC64_IN_SEL_CFG_REG register + * GPIO input function configuration register + */ + +#define GPIO_FUNC64_IN_SEL_CFG_REG (DR_REG_GPIO_BASE + 0x254) + +/* GPIO_SIG64_IN_SEL : R/W; bitpos: [7]; default: 0; + * set this bit to bypass GPIO. 1:do not bypass GPIO. 0:bypass GPIO. + */ + +#define GPIO_SIG64_IN_SEL (BIT(7)) +#define GPIO_SIG64_IN_SEL_M (GPIO_SIG64_IN_SEL_V << GPIO_SIG64_IN_SEL_S) +#define GPIO_SIG64_IN_SEL_V 0x00000001 +#define GPIO_SIG64_IN_SEL_S 7 + +/* GPIO_FUNC64_IN_INV_SEL : R/W; bitpos: [6]; default: 0; + * set this bit to invert input signal. 1:invert. 0:not invert. + */ + +#define GPIO_FUNC64_IN_INV_SEL (BIT(6)) +#define GPIO_FUNC64_IN_INV_SEL_M (GPIO_FUNC64_IN_INV_SEL_V << GPIO_FUNC64_IN_INV_SEL_S) +#define GPIO_FUNC64_IN_INV_SEL_V 0x00000001 +#define GPIO_FUNC64_IN_INV_SEL_S 6 + +/* GPIO_FUNC64_IN_SEL : R/W; bitpos: [5:0]; default: 0; + * set this value: s=0-53: connect GPIO[s] to this port. s=0x38: set this + * port always high level. s=0x3C: set this port always low level. + */ + +#define GPIO_FUNC64_IN_SEL 0x0000003f +#define GPIO_FUNC64_IN_SEL_M (GPIO_FUNC64_IN_SEL_V << GPIO_FUNC64_IN_SEL_S) +#define GPIO_FUNC64_IN_SEL_V 0x0000003f +#define GPIO_FUNC64_IN_SEL_S 0 + +/* GPIO_FUNC65_IN_SEL_CFG_REG register + * GPIO input function configuration register + */ + +#define GPIO_FUNC65_IN_SEL_CFG_REG (DR_REG_GPIO_BASE + 0x258) + +/* GPIO_SIG65_IN_SEL : R/W; bitpos: [7]; default: 0; + * set this bit to bypass GPIO. 1:do not bypass GPIO. 0:bypass GPIO. + */ + +#define GPIO_SIG65_IN_SEL (BIT(7)) +#define GPIO_SIG65_IN_SEL_M (GPIO_SIG65_IN_SEL_V << GPIO_SIG65_IN_SEL_S) +#define GPIO_SIG65_IN_SEL_V 0x00000001 +#define GPIO_SIG65_IN_SEL_S 7 + +/* GPIO_FUNC65_IN_INV_SEL : R/W; bitpos: [6]; default: 0; + * set this bit to invert input signal. 1:invert. 0:not invert. + */ + +#define GPIO_FUNC65_IN_INV_SEL (BIT(6)) +#define GPIO_FUNC65_IN_INV_SEL_M (GPIO_FUNC65_IN_INV_SEL_V << GPIO_FUNC65_IN_INV_SEL_S) +#define GPIO_FUNC65_IN_INV_SEL_V 0x00000001 +#define GPIO_FUNC65_IN_INV_SEL_S 6 + +/* GPIO_FUNC65_IN_SEL : R/W; bitpos: [5:0]; default: 0; + * set this value: s=0-53: connect GPIO[s] to this port. s=0x38: set this + * port always high level. s=0x3C: set this port always low level. + */ + +#define GPIO_FUNC65_IN_SEL 0x0000003f +#define GPIO_FUNC65_IN_SEL_M (GPIO_FUNC65_IN_SEL_V << GPIO_FUNC65_IN_SEL_S) +#define GPIO_FUNC65_IN_SEL_V 0x0000003f +#define GPIO_FUNC65_IN_SEL_S 0 + +/* GPIO_FUNC66_IN_SEL_CFG_REG register + * GPIO input function configuration register + */ + +#define GPIO_FUNC66_IN_SEL_CFG_REG (DR_REG_GPIO_BASE + 0x25c) + +/* GPIO_SIG66_IN_SEL : R/W; bitpos: [7]; default: 0; + * set this bit to bypass GPIO. 1:do not bypass GPIO. 0:bypass GPIO. + */ + +#define GPIO_SIG66_IN_SEL (BIT(7)) +#define GPIO_SIG66_IN_SEL_M (GPIO_SIG66_IN_SEL_V << GPIO_SIG66_IN_SEL_S) +#define GPIO_SIG66_IN_SEL_V 0x00000001 +#define GPIO_SIG66_IN_SEL_S 7 + +/* GPIO_FUNC66_IN_INV_SEL : R/W; bitpos: [6]; default: 0; + * set this bit to invert input signal. 1:invert. 0:not invert. + */ + +#define GPIO_FUNC66_IN_INV_SEL (BIT(6)) +#define GPIO_FUNC66_IN_INV_SEL_M (GPIO_FUNC66_IN_INV_SEL_V << GPIO_FUNC66_IN_INV_SEL_S) +#define GPIO_FUNC66_IN_INV_SEL_V 0x00000001 +#define GPIO_FUNC66_IN_INV_SEL_S 6 + +/* GPIO_FUNC66_IN_SEL : R/W; bitpos: [5:0]; default: 0; + * set this value: s=0-53: connect GPIO[s] to this port. s=0x38: set this + * port always high level. s=0x3C: set this port always low level. + */ + +#define GPIO_FUNC66_IN_SEL 0x0000003f +#define GPIO_FUNC66_IN_SEL_M (GPIO_FUNC66_IN_SEL_V << GPIO_FUNC66_IN_SEL_S) +#define GPIO_FUNC66_IN_SEL_V 0x0000003f +#define GPIO_FUNC66_IN_SEL_S 0 + +/* GPIO_FUNC67_IN_SEL_CFG_REG register + * GPIO input function configuration register + */ + +#define GPIO_FUNC67_IN_SEL_CFG_REG (DR_REG_GPIO_BASE + 0x260) + +/* GPIO_SIG67_IN_SEL : R/W; bitpos: [7]; default: 0; + * set this bit to bypass GPIO. 1:do not bypass GPIO. 0:bypass GPIO. + */ + +#define GPIO_SIG67_IN_SEL (BIT(7)) +#define GPIO_SIG67_IN_SEL_M (GPIO_SIG67_IN_SEL_V << GPIO_SIG67_IN_SEL_S) +#define GPIO_SIG67_IN_SEL_V 0x00000001 +#define GPIO_SIG67_IN_SEL_S 7 + +/* GPIO_FUNC67_IN_INV_SEL : R/W; bitpos: [6]; default: 0; + * set this bit to invert input signal. 1:invert. 0:not invert. + */ + +#define GPIO_FUNC67_IN_INV_SEL (BIT(6)) +#define GPIO_FUNC67_IN_INV_SEL_M (GPIO_FUNC67_IN_INV_SEL_V << GPIO_FUNC67_IN_INV_SEL_S) +#define GPIO_FUNC67_IN_INV_SEL_V 0x00000001 +#define GPIO_FUNC67_IN_INV_SEL_S 6 + +/* GPIO_FUNC67_IN_SEL : R/W; bitpos: [5:0]; default: 0; + * set this value: s=0-53: connect GPIO[s] to this port. s=0x38: set this + * port always high level. s=0x3C: set this port always low level. + */ + +#define GPIO_FUNC67_IN_SEL 0x0000003f +#define GPIO_FUNC67_IN_SEL_M (GPIO_FUNC67_IN_SEL_V << GPIO_FUNC67_IN_SEL_S) +#define GPIO_FUNC67_IN_SEL_V 0x0000003f +#define GPIO_FUNC67_IN_SEL_S 0 + +/* GPIO_FUNC68_IN_SEL_CFG_REG register + * GPIO input function configuration register + */ + +#define GPIO_FUNC68_IN_SEL_CFG_REG (DR_REG_GPIO_BASE + 0x264) + +/* GPIO_SIG68_IN_SEL : R/W; bitpos: [7]; default: 0; + * set this bit to bypass GPIO. 1:do not bypass GPIO. 0:bypass GPIO. + */ + +#define GPIO_SIG68_IN_SEL (BIT(7)) +#define GPIO_SIG68_IN_SEL_M (GPIO_SIG68_IN_SEL_V << GPIO_SIG68_IN_SEL_S) +#define GPIO_SIG68_IN_SEL_V 0x00000001 +#define GPIO_SIG68_IN_SEL_S 7 + +/* GPIO_FUNC68_IN_INV_SEL : R/W; bitpos: [6]; default: 0; + * set this bit to invert input signal. 1:invert. 0:not invert. + */ + +#define GPIO_FUNC68_IN_INV_SEL (BIT(6)) +#define GPIO_FUNC68_IN_INV_SEL_M (GPIO_FUNC68_IN_INV_SEL_V << GPIO_FUNC68_IN_INV_SEL_S) +#define GPIO_FUNC68_IN_INV_SEL_V 0x00000001 +#define GPIO_FUNC68_IN_INV_SEL_S 6 + +/* GPIO_FUNC68_IN_SEL : R/W; bitpos: [5:0]; default: 0; + * set this value: s=0-53: connect GPIO[s] to this port. s=0x38: set this + * port always high level. s=0x3C: set this port always low level. + */ + +#define GPIO_FUNC68_IN_SEL 0x0000003f +#define GPIO_FUNC68_IN_SEL_M (GPIO_FUNC68_IN_SEL_V << GPIO_FUNC68_IN_SEL_S) +#define GPIO_FUNC68_IN_SEL_V 0x0000003f +#define GPIO_FUNC68_IN_SEL_S 0 + +/* GPIO_FUNC69_IN_SEL_CFG_REG register + * GPIO input function configuration register + */ + +#define GPIO_FUNC69_IN_SEL_CFG_REG (DR_REG_GPIO_BASE + 0x268) + +/* GPIO_SIG69_IN_SEL : R/W; bitpos: [7]; default: 0; + * set this bit to bypass GPIO. 1:do not bypass GPIO. 0:bypass GPIO. + */ + +#define GPIO_SIG69_IN_SEL (BIT(7)) +#define GPIO_SIG69_IN_SEL_M (GPIO_SIG69_IN_SEL_V << GPIO_SIG69_IN_SEL_S) +#define GPIO_SIG69_IN_SEL_V 0x00000001 +#define GPIO_SIG69_IN_SEL_S 7 + +/* GPIO_FUNC69_IN_INV_SEL : R/W; bitpos: [6]; default: 0; + * set this bit to invert input signal. 1:invert. 0:not invert. + */ + +#define GPIO_FUNC69_IN_INV_SEL (BIT(6)) +#define GPIO_FUNC69_IN_INV_SEL_M (GPIO_FUNC69_IN_INV_SEL_V << GPIO_FUNC69_IN_INV_SEL_S) +#define GPIO_FUNC69_IN_INV_SEL_V 0x00000001 +#define GPIO_FUNC69_IN_INV_SEL_S 6 + +/* GPIO_FUNC69_IN_SEL : R/W; bitpos: [5:0]; default: 0; + * set this value: s=0-53: connect GPIO[s] to this port. s=0x38: set this + * port always high level. s=0x3C: set this port always low level. + */ + +#define GPIO_FUNC69_IN_SEL 0x0000003f +#define GPIO_FUNC69_IN_SEL_M (GPIO_FUNC69_IN_SEL_V << GPIO_FUNC69_IN_SEL_S) +#define GPIO_FUNC69_IN_SEL_V 0x0000003f +#define GPIO_FUNC69_IN_SEL_S 0 + +/* GPIO_FUNC70_IN_SEL_CFG_REG register + * GPIO input function configuration register + */ + +#define GPIO_FUNC70_IN_SEL_CFG_REG (DR_REG_GPIO_BASE + 0x26c) + +/* GPIO_SIG70_IN_SEL : R/W; bitpos: [7]; default: 0; + * set this bit to bypass GPIO. 1:do not bypass GPIO. 0:bypass GPIO. + */ + +#define GPIO_SIG70_IN_SEL (BIT(7)) +#define GPIO_SIG70_IN_SEL_M (GPIO_SIG70_IN_SEL_V << GPIO_SIG70_IN_SEL_S) +#define GPIO_SIG70_IN_SEL_V 0x00000001 +#define GPIO_SIG70_IN_SEL_S 7 + +/* GPIO_FUNC70_IN_INV_SEL : R/W; bitpos: [6]; default: 0; + * set this bit to invert input signal. 1:invert. 0:not invert. + */ + +#define GPIO_FUNC70_IN_INV_SEL (BIT(6)) +#define GPIO_FUNC70_IN_INV_SEL_M (GPIO_FUNC70_IN_INV_SEL_V << GPIO_FUNC70_IN_INV_SEL_S) +#define GPIO_FUNC70_IN_INV_SEL_V 0x00000001 +#define GPIO_FUNC70_IN_INV_SEL_S 6 + +/* GPIO_FUNC70_IN_SEL : R/W; bitpos: [5:0]; default: 0; + * set this value: s=0-53: connect GPIO[s] to this port. s=0x38: set this + * port always high level. s=0x3C: set this port always low level. + */ + +#define GPIO_FUNC70_IN_SEL 0x0000003f +#define GPIO_FUNC70_IN_SEL_M (GPIO_FUNC70_IN_SEL_V << GPIO_FUNC70_IN_SEL_S) +#define GPIO_FUNC70_IN_SEL_V 0x0000003f +#define GPIO_FUNC70_IN_SEL_S 0 + +/* GPIO_FUNC71_IN_SEL_CFG_REG register + * GPIO input function configuration register + */ + +#define GPIO_FUNC71_IN_SEL_CFG_REG (DR_REG_GPIO_BASE + 0x270) + +/* GPIO_SIG71_IN_SEL : R/W; bitpos: [7]; default: 0; + * set this bit to bypass GPIO. 1:do not bypass GPIO. 0:bypass GPIO. + */ + +#define GPIO_SIG71_IN_SEL (BIT(7)) +#define GPIO_SIG71_IN_SEL_M (GPIO_SIG71_IN_SEL_V << GPIO_SIG71_IN_SEL_S) +#define GPIO_SIG71_IN_SEL_V 0x00000001 +#define GPIO_SIG71_IN_SEL_S 7 + +/* GPIO_FUNC71_IN_INV_SEL : R/W; bitpos: [6]; default: 0; + * set this bit to invert input signal. 1:invert. 0:not invert. + */ + +#define GPIO_FUNC71_IN_INV_SEL (BIT(6)) +#define GPIO_FUNC71_IN_INV_SEL_M (GPIO_FUNC71_IN_INV_SEL_V << GPIO_FUNC71_IN_INV_SEL_S) +#define GPIO_FUNC71_IN_INV_SEL_V 0x00000001 +#define GPIO_FUNC71_IN_INV_SEL_S 6 + +/* GPIO_FUNC71_IN_SEL : R/W; bitpos: [5:0]; default: 0; + * set this value: s=0-53: connect GPIO[s] to this port. s=0x38: set this + * port always high level. s=0x3C: set this port always low level. + */ + +#define GPIO_FUNC71_IN_SEL 0x0000003f +#define GPIO_FUNC71_IN_SEL_M (GPIO_FUNC71_IN_SEL_V << GPIO_FUNC71_IN_SEL_S) +#define GPIO_FUNC71_IN_SEL_V 0x0000003f +#define GPIO_FUNC71_IN_SEL_S 0 + +/* GPIO_FUNC72_IN_SEL_CFG_REG register + * GPIO input function configuration register + */ + +#define GPIO_FUNC72_IN_SEL_CFG_REG (DR_REG_GPIO_BASE + 0x274) + +/* GPIO_SIG72_IN_SEL : R/W; bitpos: [7]; default: 0; + * set this bit to bypass GPIO. 1:do not bypass GPIO. 0:bypass GPIO. + */ + +#define GPIO_SIG72_IN_SEL (BIT(7)) +#define GPIO_SIG72_IN_SEL_M (GPIO_SIG72_IN_SEL_V << GPIO_SIG72_IN_SEL_S) +#define GPIO_SIG72_IN_SEL_V 0x00000001 +#define GPIO_SIG72_IN_SEL_S 7 + +/* GPIO_FUNC72_IN_INV_SEL : R/W; bitpos: [6]; default: 0; + * set this bit to invert input signal. 1:invert. 0:not invert. + */ + +#define GPIO_FUNC72_IN_INV_SEL (BIT(6)) +#define GPIO_FUNC72_IN_INV_SEL_M (GPIO_FUNC72_IN_INV_SEL_V << GPIO_FUNC72_IN_INV_SEL_S) +#define GPIO_FUNC72_IN_INV_SEL_V 0x00000001 +#define GPIO_FUNC72_IN_INV_SEL_S 6 + +/* GPIO_FUNC72_IN_SEL : R/W; bitpos: [5:0]; default: 0; + * set this value: s=0-53: connect GPIO[s] to this port. s=0x38: set this + * port always high level. s=0x3C: set this port always low level. + */ + +#define GPIO_FUNC72_IN_SEL 0x0000003f +#define GPIO_FUNC72_IN_SEL_M (GPIO_FUNC72_IN_SEL_V << GPIO_FUNC72_IN_SEL_S) +#define GPIO_FUNC72_IN_SEL_V 0x0000003f +#define GPIO_FUNC72_IN_SEL_S 0 + +/* GPIO_FUNC73_IN_SEL_CFG_REG register + * GPIO input function configuration register + */ + +#define GPIO_FUNC73_IN_SEL_CFG_REG (DR_REG_GPIO_BASE + 0x278) + +/* GPIO_SIG73_IN_SEL : R/W; bitpos: [7]; default: 0; + * set this bit to bypass GPIO. 1:do not bypass GPIO. 0:bypass GPIO. + */ + +#define GPIO_SIG73_IN_SEL (BIT(7)) +#define GPIO_SIG73_IN_SEL_M (GPIO_SIG73_IN_SEL_V << GPIO_SIG73_IN_SEL_S) +#define GPIO_SIG73_IN_SEL_V 0x00000001 +#define GPIO_SIG73_IN_SEL_S 7 + +/* GPIO_FUNC73_IN_INV_SEL : R/W; bitpos: [6]; default: 0; + * set this bit to invert input signal. 1:invert. 0:not invert. + */ + +#define GPIO_FUNC73_IN_INV_SEL (BIT(6)) +#define GPIO_FUNC73_IN_INV_SEL_M (GPIO_FUNC73_IN_INV_SEL_V << GPIO_FUNC73_IN_INV_SEL_S) +#define GPIO_FUNC73_IN_INV_SEL_V 0x00000001 +#define GPIO_FUNC73_IN_INV_SEL_S 6 + +/* GPIO_FUNC73_IN_SEL : R/W; bitpos: [5:0]; default: 0; + * set this value: s=0-53: connect GPIO[s] to this port. s=0x38: set this + * port always high level. s=0x3C: set this port always low level. + */ + +#define GPIO_FUNC73_IN_SEL 0x0000003f +#define GPIO_FUNC73_IN_SEL_M (GPIO_FUNC73_IN_SEL_V << GPIO_FUNC73_IN_SEL_S) +#define GPIO_FUNC73_IN_SEL_V 0x0000003f +#define GPIO_FUNC73_IN_SEL_S 0 + +/* GPIO_FUNC74_IN_SEL_CFG_REG register + * GPIO input function configuration register + */ + +#define GPIO_FUNC74_IN_SEL_CFG_REG (DR_REG_GPIO_BASE + 0x27c) + +/* GPIO_SIG74_IN_SEL : R/W; bitpos: [7]; default: 0; + * set this bit to bypass GPIO. 1:do not bypass GPIO. 0:bypass GPIO. + */ + +#define GPIO_SIG74_IN_SEL (BIT(7)) +#define GPIO_SIG74_IN_SEL_M (GPIO_SIG74_IN_SEL_V << GPIO_SIG74_IN_SEL_S) +#define GPIO_SIG74_IN_SEL_V 0x00000001 +#define GPIO_SIG74_IN_SEL_S 7 + +/* GPIO_FUNC74_IN_INV_SEL : R/W; bitpos: [6]; default: 0; + * set this bit to invert input signal. 1:invert. 0:not invert. + */ + +#define GPIO_FUNC74_IN_INV_SEL (BIT(6)) +#define GPIO_FUNC74_IN_INV_SEL_M (GPIO_FUNC74_IN_INV_SEL_V << GPIO_FUNC74_IN_INV_SEL_S) +#define GPIO_FUNC74_IN_INV_SEL_V 0x00000001 +#define GPIO_FUNC74_IN_INV_SEL_S 6 + +/* GPIO_FUNC74_IN_SEL : R/W; bitpos: [5:0]; default: 0; + * set this value: s=0-53: connect GPIO[s] to this port. s=0x38: set this + * port always high level. s=0x3C: set this port always low level. + */ + +#define GPIO_FUNC74_IN_SEL 0x0000003f +#define GPIO_FUNC74_IN_SEL_M (GPIO_FUNC74_IN_SEL_V << GPIO_FUNC74_IN_SEL_S) +#define GPIO_FUNC74_IN_SEL_V 0x0000003f +#define GPIO_FUNC74_IN_SEL_S 0 + +/* GPIO_FUNC75_IN_SEL_CFG_REG register + * GPIO input function configuration register + */ + +#define GPIO_FUNC75_IN_SEL_CFG_REG (DR_REG_GPIO_BASE + 0x280) + +/* GPIO_SIG75_IN_SEL : R/W; bitpos: [7]; default: 0; + * set this bit to bypass GPIO. 1:do not bypass GPIO. 0:bypass GPIO. + */ + +#define GPIO_SIG75_IN_SEL (BIT(7)) +#define GPIO_SIG75_IN_SEL_M (GPIO_SIG75_IN_SEL_V << GPIO_SIG75_IN_SEL_S) +#define GPIO_SIG75_IN_SEL_V 0x00000001 +#define GPIO_SIG75_IN_SEL_S 7 + +/* GPIO_FUNC75_IN_INV_SEL : R/W; bitpos: [6]; default: 0; + * set this bit to invert input signal. 1:invert. 0:not invert. + */ + +#define GPIO_FUNC75_IN_INV_SEL (BIT(6)) +#define GPIO_FUNC75_IN_INV_SEL_M (GPIO_FUNC75_IN_INV_SEL_V << GPIO_FUNC75_IN_INV_SEL_S) +#define GPIO_FUNC75_IN_INV_SEL_V 0x00000001 +#define GPIO_FUNC75_IN_INV_SEL_S 6 + +/* GPIO_FUNC75_IN_SEL : R/W; bitpos: [5:0]; default: 0; + * set this value: s=0-53: connect GPIO[s] to this port. s=0x38: set this + * port always high level. s=0x3C: set this port always low level. + */ + +#define GPIO_FUNC75_IN_SEL 0x0000003f +#define GPIO_FUNC75_IN_SEL_M (GPIO_FUNC75_IN_SEL_V << GPIO_FUNC75_IN_SEL_S) +#define GPIO_FUNC75_IN_SEL_V 0x0000003f +#define GPIO_FUNC75_IN_SEL_S 0 + +/* GPIO_FUNC76_IN_SEL_CFG_REG register + * GPIO input function configuration register + */ + +#define GPIO_FUNC76_IN_SEL_CFG_REG (DR_REG_GPIO_BASE + 0x284) + +/* GPIO_SIG76_IN_SEL : R/W; bitpos: [7]; default: 0; + * set this bit to bypass GPIO. 1:do not bypass GPIO. 0:bypass GPIO. + */ + +#define GPIO_SIG76_IN_SEL (BIT(7)) +#define GPIO_SIG76_IN_SEL_M (GPIO_SIG76_IN_SEL_V << GPIO_SIG76_IN_SEL_S) +#define GPIO_SIG76_IN_SEL_V 0x00000001 +#define GPIO_SIG76_IN_SEL_S 7 + +/* GPIO_FUNC76_IN_INV_SEL : R/W; bitpos: [6]; default: 0; + * set this bit to invert input signal. 1:invert. 0:not invert. + */ + +#define GPIO_FUNC76_IN_INV_SEL (BIT(6)) +#define GPIO_FUNC76_IN_INV_SEL_M (GPIO_FUNC76_IN_INV_SEL_V << GPIO_FUNC76_IN_INV_SEL_S) +#define GPIO_FUNC76_IN_INV_SEL_V 0x00000001 +#define GPIO_FUNC76_IN_INV_SEL_S 6 + +/* GPIO_FUNC76_IN_SEL : R/W; bitpos: [5:0]; default: 0; + * set this value: s=0-53: connect GPIO[s] to this port. s=0x38: set this + * port always high level. s=0x3C: set this port always low level. + */ + +#define GPIO_FUNC76_IN_SEL 0x0000003f +#define GPIO_FUNC76_IN_SEL_M (GPIO_FUNC76_IN_SEL_V << GPIO_FUNC76_IN_SEL_S) +#define GPIO_FUNC76_IN_SEL_V 0x0000003f +#define GPIO_FUNC76_IN_SEL_S 0 + +/* GPIO_FUNC77_IN_SEL_CFG_REG register + * GPIO input function configuration register + */ + +#define GPIO_FUNC77_IN_SEL_CFG_REG (DR_REG_GPIO_BASE + 0x288) + +/* GPIO_SIG77_IN_SEL : R/W; bitpos: [7]; default: 0; + * set this bit to bypass GPIO. 1:do not bypass GPIO. 0:bypass GPIO. + */ + +#define GPIO_SIG77_IN_SEL (BIT(7)) +#define GPIO_SIG77_IN_SEL_M (GPIO_SIG77_IN_SEL_V << GPIO_SIG77_IN_SEL_S) +#define GPIO_SIG77_IN_SEL_V 0x00000001 +#define GPIO_SIG77_IN_SEL_S 7 + +/* GPIO_FUNC77_IN_INV_SEL : R/W; bitpos: [6]; default: 0; + * set this bit to invert input signal. 1:invert. 0:not invert. + */ + +#define GPIO_FUNC77_IN_INV_SEL (BIT(6)) +#define GPIO_FUNC77_IN_INV_SEL_M (GPIO_FUNC77_IN_INV_SEL_V << GPIO_FUNC77_IN_INV_SEL_S) +#define GPIO_FUNC77_IN_INV_SEL_V 0x00000001 +#define GPIO_FUNC77_IN_INV_SEL_S 6 + +/* GPIO_FUNC77_IN_SEL : R/W; bitpos: [5:0]; default: 0; + * set this value: s=0-53: connect GPIO[s] to this port. s=0x38: set this + * port always high level. s=0x3C: set this port always low level. + */ + +#define GPIO_FUNC77_IN_SEL 0x0000003f +#define GPIO_FUNC77_IN_SEL_M (GPIO_FUNC77_IN_SEL_V << GPIO_FUNC77_IN_SEL_S) +#define GPIO_FUNC77_IN_SEL_V 0x0000003f +#define GPIO_FUNC77_IN_SEL_S 0 + +/* GPIO_FUNC78_IN_SEL_CFG_REG register + * GPIO input function configuration register + */ + +#define GPIO_FUNC78_IN_SEL_CFG_REG (DR_REG_GPIO_BASE + 0x28c) + +/* GPIO_SIG78_IN_SEL : R/W; bitpos: [7]; default: 0; + * set this bit to bypass GPIO. 1:do not bypass GPIO. 0:bypass GPIO. + */ + +#define GPIO_SIG78_IN_SEL (BIT(7)) +#define GPIO_SIG78_IN_SEL_M (GPIO_SIG78_IN_SEL_V << GPIO_SIG78_IN_SEL_S) +#define GPIO_SIG78_IN_SEL_V 0x00000001 +#define GPIO_SIG78_IN_SEL_S 7 + +/* GPIO_FUNC78_IN_INV_SEL : R/W; bitpos: [6]; default: 0; + * set this bit to invert input signal. 1:invert. 0:not invert. + */ + +#define GPIO_FUNC78_IN_INV_SEL (BIT(6)) +#define GPIO_FUNC78_IN_INV_SEL_M (GPIO_FUNC78_IN_INV_SEL_V << GPIO_FUNC78_IN_INV_SEL_S) +#define GPIO_FUNC78_IN_INV_SEL_V 0x00000001 +#define GPIO_FUNC78_IN_INV_SEL_S 6 + +/* GPIO_FUNC78_IN_SEL : R/W; bitpos: [5:0]; default: 0; + * set this value: s=0-53: connect GPIO[s] to this port. s=0x38: set this + * port always high level. s=0x3C: set this port always low level. + */ + +#define GPIO_FUNC78_IN_SEL 0x0000003f +#define GPIO_FUNC78_IN_SEL_M (GPIO_FUNC78_IN_SEL_V << GPIO_FUNC78_IN_SEL_S) +#define GPIO_FUNC78_IN_SEL_V 0x0000003f +#define GPIO_FUNC78_IN_SEL_S 0 + +/* GPIO_FUNC79_IN_SEL_CFG_REG register + * GPIO input function configuration register + */ + +#define GPIO_FUNC79_IN_SEL_CFG_REG (DR_REG_GPIO_BASE + 0x290) + +/* GPIO_SIG79_IN_SEL : R/W; bitpos: [7]; default: 0; + * set this bit to bypass GPIO. 1:do not bypass GPIO. 0:bypass GPIO. + */ + +#define GPIO_SIG79_IN_SEL (BIT(7)) +#define GPIO_SIG79_IN_SEL_M (GPIO_SIG79_IN_SEL_V << GPIO_SIG79_IN_SEL_S) +#define GPIO_SIG79_IN_SEL_V 0x00000001 +#define GPIO_SIG79_IN_SEL_S 7 + +/* GPIO_FUNC79_IN_INV_SEL : R/W; bitpos: [6]; default: 0; + * set this bit to invert input signal. 1:invert. 0:not invert. + */ + +#define GPIO_FUNC79_IN_INV_SEL (BIT(6)) +#define GPIO_FUNC79_IN_INV_SEL_M (GPIO_FUNC79_IN_INV_SEL_V << GPIO_FUNC79_IN_INV_SEL_S) +#define GPIO_FUNC79_IN_INV_SEL_V 0x00000001 +#define GPIO_FUNC79_IN_INV_SEL_S 6 + +/* GPIO_FUNC79_IN_SEL : R/W; bitpos: [5:0]; default: 0; + * set this value: s=0-53: connect GPIO[s] to this port. s=0x38: set this + * port always high level. s=0x3C: set this port always low level. + */ + +#define GPIO_FUNC79_IN_SEL 0x0000003f +#define GPIO_FUNC79_IN_SEL_M (GPIO_FUNC79_IN_SEL_V << GPIO_FUNC79_IN_SEL_S) +#define GPIO_FUNC79_IN_SEL_V 0x0000003f +#define GPIO_FUNC79_IN_SEL_S 0 + +/* GPIO_FUNC80_IN_SEL_CFG_REG register + * GPIO input function configuration register + */ + +#define GPIO_FUNC80_IN_SEL_CFG_REG (DR_REG_GPIO_BASE + 0x294) + +/* GPIO_SIG80_IN_SEL : R/W; bitpos: [7]; default: 0; + * set this bit to bypass GPIO. 1:do not bypass GPIO. 0:bypass GPIO. + */ + +#define GPIO_SIG80_IN_SEL (BIT(7)) +#define GPIO_SIG80_IN_SEL_M (GPIO_SIG80_IN_SEL_V << GPIO_SIG80_IN_SEL_S) +#define GPIO_SIG80_IN_SEL_V 0x00000001 +#define GPIO_SIG80_IN_SEL_S 7 + +/* GPIO_FUNC80_IN_INV_SEL : R/W; bitpos: [6]; default: 0; + * set this bit to invert input signal. 1:invert. 0:not invert. + */ + +#define GPIO_FUNC80_IN_INV_SEL (BIT(6)) +#define GPIO_FUNC80_IN_INV_SEL_M (GPIO_FUNC80_IN_INV_SEL_V << GPIO_FUNC80_IN_INV_SEL_S) +#define GPIO_FUNC80_IN_INV_SEL_V 0x00000001 +#define GPIO_FUNC80_IN_INV_SEL_S 6 + +/* GPIO_FUNC80_IN_SEL : R/W; bitpos: [5:0]; default: 0; + * set this value: s=0-53: connect GPIO[s] to this port. s=0x38: set this + * port always high level. s=0x3C: set this port always low level. + */ + +#define GPIO_FUNC80_IN_SEL 0x0000003f +#define GPIO_FUNC80_IN_SEL_M (GPIO_FUNC80_IN_SEL_V << GPIO_FUNC80_IN_SEL_S) +#define GPIO_FUNC80_IN_SEL_V 0x0000003f +#define GPIO_FUNC80_IN_SEL_S 0 + +/* GPIO_FUNC81_IN_SEL_CFG_REG register + * GPIO input function configuration register + */ + +#define GPIO_FUNC81_IN_SEL_CFG_REG (DR_REG_GPIO_BASE + 0x298) + +/* GPIO_SIG81_IN_SEL : R/W; bitpos: [7]; default: 0; + * set this bit to bypass GPIO. 1:do not bypass GPIO. 0:bypass GPIO. + */ + +#define GPIO_SIG81_IN_SEL (BIT(7)) +#define GPIO_SIG81_IN_SEL_M (GPIO_SIG81_IN_SEL_V << GPIO_SIG81_IN_SEL_S) +#define GPIO_SIG81_IN_SEL_V 0x00000001 +#define GPIO_SIG81_IN_SEL_S 7 + +/* GPIO_FUNC81_IN_INV_SEL : R/W; bitpos: [6]; default: 0; + * set this bit to invert input signal. 1:invert. 0:not invert. + */ + +#define GPIO_FUNC81_IN_INV_SEL (BIT(6)) +#define GPIO_FUNC81_IN_INV_SEL_M (GPIO_FUNC81_IN_INV_SEL_V << GPIO_FUNC81_IN_INV_SEL_S) +#define GPIO_FUNC81_IN_INV_SEL_V 0x00000001 +#define GPIO_FUNC81_IN_INV_SEL_S 6 + +/* GPIO_FUNC81_IN_SEL : R/W; bitpos: [5:0]; default: 0; + * set this value: s=0-53: connect GPIO[s] to this port. s=0x38: set this + * port always high level. s=0x3C: set this port always low level. + */ + +#define GPIO_FUNC81_IN_SEL 0x0000003f +#define GPIO_FUNC81_IN_SEL_M (GPIO_FUNC81_IN_SEL_V << GPIO_FUNC81_IN_SEL_S) +#define GPIO_FUNC81_IN_SEL_V 0x0000003f +#define GPIO_FUNC81_IN_SEL_S 0 + +/* GPIO_FUNC82_IN_SEL_CFG_REG register + * GPIO input function configuration register + */ + +#define GPIO_FUNC82_IN_SEL_CFG_REG (DR_REG_GPIO_BASE + 0x29c) + +/* GPIO_SIG82_IN_SEL : R/W; bitpos: [7]; default: 0; + * set this bit to bypass GPIO. 1:do not bypass GPIO. 0:bypass GPIO. + */ + +#define GPIO_SIG82_IN_SEL (BIT(7)) +#define GPIO_SIG82_IN_SEL_M (GPIO_SIG82_IN_SEL_V << GPIO_SIG82_IN_SEL_S) +#define GPIO_SIG82_IN_SEL_V 0x00000001 +#define GPIO_SIG82_IN_SEL_S 7 + +/* GPIO_FUNC82_IN_INV_SEL : R/W; bitpos: [6]; default: 0; + * set this bit to invert input signal. 1:invert. 0:not invert. + */ + +#define GPIO_FUNC82_IN_INV_SEL (BIT(6)) +#define GPIO_FUNC82_IN_INV_SEL_M (GPIO_FUNC82_IN_INV_SEL_V << GPIO_FUNC82_IN_INV_SEL_S) +#define GPIO_FUNC82_IN_INV_SEL_V 0x00000001 +#define GPIO_FUNC82_IN_INV_SEL_S 6 + +/* GPIO_FUNC82_IN_SEL : R/W; bitpos: [5:0]; default: 0; + * set this value: s=0-53: connect GPIO[s] to this port. s=0x38: set this + * port always high level. s=0x3C: set this port always low level. + */ + +#define GPIO_FUNC82_IN_SEL 0x0000003f +#define GPIO_FUNC82_IN_SEL_M (GPIO_FUNC82_IN_SEL_V << GPIO_FUNC82_IN_SEL_S) +#define GPIO_FUNC82_IN_SEL_V 0x0000003f +#define GPIO_FUNC82_IN_SEL_S 0 + +/* GPIO_FUNC83_IN_SEL_CFG_REG register + * GPIO input function configuration register + */ + +#define GPIO_FUNC83_IN_SEL_CFG_REG (DR_REG_GPIO_BASE + 0x2a0) + +/* GPIO_SIG83_IN_SEL : R/W; bitpos: [7]; default: 0; + * set this bit to bypass GPIO. 1:do not bypass GPIO. 0:bypass GPIO. + */ + +#define GPIO_SIG83_IN_SEL (BIT(7)) +#define GPIO_SIG83_IN_SEL_M (GPIO_SIG83_IN_SEL_V << GPIO_SIG83_IN_SEL_S) +#define GPIO_SIG83_IN_SEL_V 0x00000001 +#define GPIO_SIG83_IN_SEL_S 7 + +/* GPIO_FUNC83_IN_INV_SEL : R/W; bitpos: [6]; default: 0; + * set this bit to invert input signal. 1:invert. 0:not invert. + */ + +#define GPIO_FUNC83_IN_INV_SEL (BIT(6)) +#define GPIO_FUNC83_IN_INV_SEL_M (GPIO_FUNC83_IN_INV_SEL_V << GPIO_FUNC83_IN_INV_SEL_S) +#define GPIO_FUNC83_IN_INV_SEL_V 0x00000001 +#define GPIO_FUNC83_IN_INV_SEL_S 6 + +/* GPIO_FUNC83_IN_SEL : R/W; bitpos: [5:0]; default: 0; + * set this value: s=0-53: connect GPIO[s] to this port. s=0x38: set this + * port always high level. s=0x3C: set this port always low level. + */ + +#define GPIO_FUNC83_IN_SEL 0x0000003f +#define GPIO_FUNC83_IN_SEL_M (GPIO_FUNC83_IN_SEL_V << GPIO_FUNC83_IN_SEL_S) +#define GPIO_FUNC83_IN_SEL_V 0x0000003f +#define GPIO_FUNC83_IN_SEL_S 0 + +/* GPIO_FUNC84_IN_SEL_CFG_REG register + * GPIO input function configuration register + */ + +#define GPIO_FUNC84_IN_SEL_CFG_REG (DR_REG_GPIO_BASE + 0x2a4) + +/* GPIO_SIG84_IN_SEL : R/W; bitpos: [7]; default: 0; + * set this bit to bypass GPIO. 1:do not bypass GPIO. 0:bypass GPIO. + */ + +#define GPIO_SIG84_IN_SEL (BIT(7)) +#define GPIO_SIG84_IN_SEL_M (GPIO_SIG84_IN_SEL_V << GPIO_SIG84_IN_SEL_S) +#define GPIO_SIG84_IN_SEL_V 0x00000001 +#define GPIO_SIG84_IN_SEL_S 7 + +/* GPIO_FUNC84_IN_INV_SEL : R/W; bitpos: [6]; default: 0; + * set this bit to invert input signal. 1:invert. 0:not invert. + */ + +#define GPIO_FUNC84_IN_INV_SEL (BIT(6)) +#define GPIO_FUNC84_IN_INV_SEL_M (GPIO_FUNC84_IN_INV_SEL_V << GPIO_FUNC84_IN_INV_SEL_S) +#define GPIO_FUNC84_IN_INV_SEL_V 0x00000001 +#define GPIO_FUNC84_IN_INV_SEL_S 6 + +/* GPIO_FUNC84_IN_SEL : R/W; bitpos: [5:0]; default: 0; + * set this value: s=0-53: connect GPIO[s] to this port. s=0x38: set this + * port always high level. s=0x3C: set this port always low level. + */ + +#define GPIO_FUNC84_IN_SEL 0x0000003f +#define GPIO_FUNC84_IN_SEL_M (GPIO_FUNC84_IN_SEL_V << GPIO_FUNC84_IN_SEL_S) +#define GPIO_FUNC84_IN_SEL_V 0x0000003f +#define GPIO_FUNC84_IN_SEL_S 0 + +/* GPIO_FUNC85_IN_SEL_CFG_REG register + * GPIO input function configuration register + */ + +#define GPIO_FUNC85_IN_SEL_CFG_REG (DR_REG_GPIO_BASE + 0x2a8) + +/* GPIO_SIG85_IN_SEL : R/W; bitpos: [7]; default: 0; + * set this bit to bypass GPIO. 1:do not bypass GPIO. 0:bypass GPIO. + */ + +#define GPIO_SIG85_IN_SEL (BIT(7)) +#define GPIO_SIG85_IN_SEL_M (GPIO_SIG85_IN_SEL_V << GPIO_SIG85_IN_SEL_S) +#define GPIO_SIG85_IN_SEL_V 0x00000001 +#define GPIO_SIG85_IN_SEL_S 7 + +/* GPIO_FUNC85_IN_INV_SEL : R/W; bitpos: [6]; default: 0; + * set this bit to invert input signal. 1:invert. 0:not invert. + */ + +#define GPIO_FUNC85_IN_INV_SEL (BIT(6)) +#define GPIO_FUNC85_IN_INV_SEL_M (GPIO_FUNC85_IN_INV_SEL_V << GPIO_FUNC85_IN_INV_SEL_S) +#define GPIO_FUNC85_IN_INV_SEL_V 0x00000001 +#define GPIO_FUNC85_IN_INV_SEL_S 6 + +/* GPIO_FUNC85_IN_SEL : R/W; bitpos: [5:0]; default: 0; + * set this value: s=0-53: connect GPIO[s] to this port. s=0x38: set this + * port always high level. s=0x3C: set this port always low level. + */ + +#define GPIO_FUNC85_IN_SEL 0x0000003f +#define GPIO_FUNC85_IN_SEL_M (GPIO_FUNC85_IN_SEL_V << GPIO_FUNC85_IN_SEL_S) +#define GPIO_FUNC85_IN_SEL_V 0x0000003f +#define GPIO_FUNC85_IN_SEL_S 0 + +/* GPIO_FUNC86_IN_SEL_CFG_REG register + * GPIO input function configuration register + */ + +#define GPIO_FUNC86_IN_SEL_CFG_REG (DR_REG_GPIO_BASE + 0x2ac) + +/* GPIO_SIG86_IN_SEL : R/W; bitpos: [7]; default: 0; + * set this bit to bypass GPIO. 1:do not bypass GPIO. 0:bypass GPIO. + */ + +#define GPIO_SIG86_IN_SEL (BIT(7)) +#define GPIO_SIG86_IN_SEL_M (GPIO_SIG86_IN_SEL_V << GPIO_SIG86_IN_SEL_S) +#define GPIO_SIG86_IN_SEL_V 0x00000001 +#define GPIO_SIG86_IN_SEL_S 7 + +/* GPIO_FUNC86_IN_INV_SEL : R/W; bitpos: [6]; default: 0; + * set this bit to invert input signal. 1:invert. 0:not invert. + */ + +#define GPIO_FUNC86_IN_INV_SEL (BIT(6)) +#define GPIO_FUNC86_IN_INV_SEL_M (GPIO_FUNC86_IN_INV_SEL_V << GPIO_FUNC86_IN_INV_SEL_S) +#define GPIO_FUNC86_IN_INV_SEL_V 0x00000001 +#define GPIO_FUNC86_IN_INV_SEL_S 6 + +/* GPIO_FUNC86_IN_SEL : R/W; bitpos: [5:0]; default: 0; + * set this value: s=0-53: connect GPIO[s] to this port. s=0x38: set this + * port always high level. s=0x3C: set this port always low level. + */ + +#define GPIO_FUNC86_IN_SEL 0x0000003f +#define GPIO_FUNC86_IN_SEL_M (GPIO_FUNC86_IN_SEL_V << GPIO_FUNC86_IN_SEL_S) +#define GPIO_FUNC86_IN_SEL_V 0x0000003f +#define GPIO_FUNC86_IN_SEL_S 0 + +/* GPIO_FUNC87_IN_SEL_CFG_REG register + * GPIO input function configuration register + */ + +#define GPIO_FUNC87_IN_SEL_CFG_REG (DR_REG_GPIO_BASE + 0x2b0) + +/* GPIO_SIG87_IN_SEL : R/W; bitpos: [7]; default: 0; + * set this bit to bypass GPIO. 1:do not bypass GPIO. 0:bypass GPIO. + */ + +#define GPIO_SIG87_IN_SEL (BIT(7)) +#define GPIO_SIG87_IN_SEL_M (GPIO_SIG87_IN_SEL_V << GPIO_SIG87_IN_SEL_S) +#define GPIO_SIG87_IN_SEL_V 0x00000001 +#define GPIO_SIG87_IN_SEL_S 7 + +/* GPIO_FUNC87_IN_INV_SEL : R/W; bitpos: [6]; default: 0; + * set this bit to invert input signal. 1:invert. 0:not invert. + */ + +#define GPIO_FUNC87_IN_INV_SEL (BIT(6)) +#define GPIO_FUNC87_IN_INV_SEL_M (GPIO_FUNC87_IN_INV_SEL_V << GPIO_FUNC87_IN_INV_SEL_S) +#define GPIO_FUNC87_IN_INV_SEL_V 0x00000001 +#define GPIO_FUNC87_IN_INV_SEL_S 6 + +/* GPIO_FUNC87_IN_SEL : R/W; bitpos: [5:0]; default: 0; + * set this value: s=0-53: connect GPIO[s] to this port. s=0x38: set this + * port always high level. s=0x3C: set this port always low level. + */ + +#define GPIO_FUNC87_IN_SEL 0x0000003f +#define GPIO_FUNC87_IN_SEL_M (GPIO_FUNC87_IN_SEL_V << GPIO_FUNC87_IN_SEL_S) +#define GPIO_FUNC87_IN_SEL_V 0x0000003f +#define GPIO_FUNC87_IN_SEL_S 0 + +/* GPIO_FUNC88_IN_SEL_CFG_REG register + * GPIO input function configuration register + */ + +#define GPIO_FUNC88_IN_SEL_CFG_REG (DR_REG_GPIO_BASE + 0x2b4) + +/* GPIO_SIG88_IN_SEL : R/W; bitpos: [7]; default: 0; + * set this bit to bypass GPIO. 1:do not bypass GPIO. 0:bypass GPIO. + */ + +#define GPIO_SIG88_IN_SEL (BIT(7)) +#define GPIO_SIG88_IN_SEL_M (GPIO_SIG88_IN_SEL_V << GPIO_SIG88_IN_SEL_S) +#define GPIO_SIG88_IN_SEL_V 0x00000001 +#define GPIO_SIG88_IN_SEL_S 7 + +/* GPIO_FUNC88_IN_INV_SEL : R/W; bitpos: [6]; default: 0; + * set this bit to invert input signal. 1:invert. 0:not invert. + */ + +#define GPIO_FUNC88_IN_INV_SEL (BIT(6)) +#define GPIO_FUNC88_IN_INV_SEL_M (GPIO_FUNC88_IN_INV_SEL_V << GPIO_FUNC88_IN_INV_SEL_S) +#define GPIO_FUNC88_IN_INV_SEL_V 0x00000001 +#define GPIO_FUNC88_IN_INV_SEL_S 6 + +/* GPIO_FUNC88_IN_SEL : R/W; bitpos: [5:0]; default: 0; + * set this value: s=0-53: connect GPIO[s] to this port. s=0x38: set this + * port always high level. s=0x3C: set this port always low level. + */ + +#define GPIO_FUNC88_IN_SEL 0x0000003f +#define GPIO_FUNC88_IN_SEL_M (GPIO_FUNC88_IN_SEL_V << GPIO_FUNC88_IN_SEL_S) +#define GPIO_FUNC88_IN_SEL_V 0x0000003f +#define GPIO_FUNC88_IN_SEL_S 0 + +/* GPIO_FUNC89_IN_SEL_CFG_REG register + * GPIO input function configuration register + */ + +#define GPIO_FUNC89_IN_SEL_CFG_REG (DR_REG_GPIO_BASE + 0x2b8) + +/* GPIO_SIG89_IN_SEL : R/W; bitpos: [7]; default: 0; + * set this bit to bypass GPIO. 1:do not bypass GPIO. 0:bypass GPIO. + */ + +#define GPIO_SIG89_IN_SEL (BIT(7)) +#define GPIO_SIG89_IN_SEL_M (GPIO_SIG89_IN_SEL_V << GPIO_SIG89_IN_SEL_S) +#define GPIO_SIG89_IN_SEL_V 0x00000001 +#define GPIO_SIG89_IN_SEL_S 7 + +/* GPIO_FUNC89_IN_INV_SEL : R/W; bitpos: [6]; default: 0; + * set this bit to invert input signal. 1:invert. 0:not invert. + */ + +#define GPIO_FUNC89_IN_INV_SEL (BIT(6)) +#define GPIO_FUNC89_IN_INV_SEL_M (GPIO_FUNC89_IN_INV_SEL_V << GPIO_FUNC89_IN_INV_SEL_S) +#define GPIO_FUNC89_IN_INV_SEL_V 0x00000001 +#define GPIO_FUNC89_IN_INV_SEL_S 6 + +/* GPIO_FUNC89_IN_SEL : R/W; bitpos: [5:0]; default: 0; + * set this value: s=0-53: connect GPIO[s] to this port. s=0x38: set this + * port always high level. s=0x3C: set this port always low level. + */ + +#define GPIO_FUNC89_IN_SEL 0x0000003f +#define GPIO_FUNC89_IN_SEL_M (GPIO_FUNC89_IN_SEL_V << GPIO_FUNC89_IN_SEL_S) +#define GPIO_FUNC89_IN_SEL_V 0x0000003f +#define GPIO_FUNC89_IN_SEL_S 0 + +/* GPIO_FUNC90_IN_SEL_CFG_REG register + * GPIO input function configuration register + */ + +#define GPIO_FUNC90_IN_SEL_CFG_REG (DR_REG_GPIO_BASE + 0x2bc) + +/* GPIO_SIG90_IN_SEL : R/W; bitpos: [7]; default: 0; + * set this bit to bypass GPIO. 1:do not bypass GPIO. 0:bypass GPIO. + */ + +#define GPIO_SIG90_IN_SEL (BIT(7)) +#define GPIO_SIG90_IN_SEL_M (GPIO_SIG90_IN_SEL_V << GPIO_SIG90_IN_SEL_S) +#define GPIO_SIG90_IN_SEL_V 0x00000001 +#define GPIO_SIG90_IN_SEL_S 7 + +/* GPIO_FUNC90_IN_INV_SEL : R/W; bitpos: [6]; default: 0; + * set this bit to invert input signal. 1:invert. 0:not invert. + */ + +#define GPIO_FUNC90_IN_INV_SEL (BIT(6)) +#define GPIO_FUNC90_IN_INV_SEL_M (GPIO_FUNC90_IN_INV_SEL_V << GPIO_FUNC90_IN_INV_SEL_S) +#define GPIO_FUNC90_IN_INV_SEL_V 0x00000001 +#define GPIO_FUNC90_IN_INV_SEL_S 6 + +/* GPIO_FUNC90_IN_SEL : R/W; bitpos: [5:0]; default: 0; + * set this value: s=0-53: connect GPIO[s] to this port. s=0x38: set this + * port always high level. s=0x3C: set this port always low level. + */ + +#define GPIO_FUNC90_IN_SEL 0x0000003f +#define GPIO_FUNC90_IN_SEL_M (GPIO_FUNC90_IN_SEL_V << GPIO_FUNC90_IN_SEL_S) +#define GPIO_FUNC90_IN_SEL_V 0x0000003f +#define GPIO_FUNC90_IN_SEL_S 0 + +/* GPIO_FUNC91_IN_SEL_CFG_REG register + * GPIO input function configuration register + */ + +#define GPIO_FUNC91_IN_SEL_CFG_REG (DR_REG_GPIO_BASE + 0x2c0) + +/* GPIO_SIG91_IN_SEL : R/W; bitpos: [7]; default: 0; + * set this bit to bypass GPIO. 1:do not bypass GPIO. 0:bypass GPIO. + */ + +#define GPIO_SIG91_IN_SEL (BIT(7)) +#define GPIO_SIG91_IN_SEL_M (GPIO_SIG91_IN_SEL_V << GPIO_SIG91_IN_SEL_S) +#define GPIO_SIG91_IN_SEL_V 0x00000001 +#define GPIO_SIG91_IN_SEL_S 7 + +/* GPIO_FUNC91_IN_INV_SEL : R/W; bitpos: [6]; default: 0; + * set this bit to invert input signal. 1:invert. 0:not invert. + */ + +#define GPIO_FUNC91_IN_INV_SEL (BIT(6)) +#define GPIO_FUNC91_IN_INV_SEL_M (GPIO_FUNC91_IN_INV_SEL_V << GPIO_FUNC91_IN_INV_SEL_S) +#define GPIO_FUNC91_IN_INV_SEL_V 0x00000001 +#define GPIO_FUNC91_IN_INV_SEL_S 6 + +/* GPIO_FUNC91_IN_SEL : R/W; bitpos: [5:0]; default: 0; + * set this value: s=0-53: connect GPIO[s] to this port. s=0x38: set this + * port always high level. s=0x3C: set this port always low level. + */ + +#define GPIO_FUNC91_IN_SEL 0x0000003f +#define GPIO_FUNC91_IN_SEL_M (GPIO_FUNC91_IN_SEL_V << GPIO_FUNC91_IN_SEL_S) +#define GPIO_FUNC91_IN_SEL_V 0x0000003f +#define GPIO_FUNC91_IN_SEL_S 0 + +/* GPIO_FUNC92_IN_SEL_CFG_REG register + * GPIO input function configuration register + */ + +#define GPIO_FUNC92_IN_SEL_CFG_REG (DR_REG_GPIO_BASE + 0x2c4) + +/* GPIO_SIG92_IN_SEL : R/W; bitpos: [7]; default: 0; + * set this bit to bypass GPIO. 1:do not bypass GPIO. 0:bypass GPIO. + */ + +#define GPIO_SIG92_IN_SEL (BIT(7)) +#define GPIO_SIG92_IN_SEL_M (GPIO_SIG92_IN_SEL_V << GPIO_SIG92_IN_SEL_S) +#define GPIO_SIG92_IN_SEL_V 0x00000001 +#define GPIO_SIG92_IN_SEL_S 7 + +/* GPIO_FUNC92_IN_INV_SEL : R/W; bitpos: [6]; default: 0; + * set this bit to invert input signal. 1:invert. 0:not invert. + */ + +#define GPIO_FUNC92_IN_INV_SEL (BIT(6)) +#define GPIO_FUNC92_IN_INV_SEL_M (GPIO_FUNC92_IN_INV_SEL_V << GPIO_FUNC92_IN_INV_SEL_S) +#define GPIO_FUNC92_IN_INV_SEL_V 0x00000001 +#define GPIO_FUNC92_IN_INV_SEL_S 6 + +/* GPIO_FUNC92_IN_SEL : R/W; bitpos: [5:0]; default: 0; + * set this value: s=0-53: connect GPIO[s] to this port. s=0x38: set this + * port always high level. s=0x3C: set this port always low level. + */ + +#define GPIO_FUNC92_IN_SEL 0x0000003f +#define GPIO_FUNC92_IN_SEL_M (GPIO_FUNC92_IN_SEL_V << GPIO_FUNC92_IN_SEL_S) +#define GPIO_FUNC92_IN_SEL_V 0x0000003f +#define GPIO_FUNC92_IN_SEL_S 0 + +/* GPIO_FUNC93_IN_SEL_CFG_REG register + * GPIO input function configuration register + */ + +#define GPIO_FUNC93_IN_SEL_CFG_REG (DR_REG_GPIO_BASE + 0x2c8) + +/* GPIO_SIG93_IN_SEL : R/W; bitpos: [7]; default: 0; + * set this bit to bypass GPIO. 1:do not bypass GPIO. 0:bypass GPIO. + */ + +#define GPIO_SIG93_IN_SEL (BIT(7)) +#define GPIO_SIG93_IN_SEL_M (GPIO_SIG93_IN_SEL_V << GPIO_SIG93_IN_SEL_S) +#define GPIO_SIG93_IN_SEL_V 0x00000001 +#define GPIO_SIG93_IN_SEL_S 7 + +/* GPIO_FUNC93_IN_INV_SEL : R/W; bitpos: [6]; default: 0; + * set this bit to invert input signal. 1:invert. 0:not invert. + */ + +#define GPIO_FUNC93_IN_INV_SEL (BIT(6)) +#define GPIO_FUNC93_IN_INV_SEL_M (GPIO_FUNC93_IN_INV_SEL_V << GPIO_FUNC93_IN_INV_SEL_S) +#define GPIO_FUNC93_IN_INV_SEL_V 0x00000001 +#define GPIO_FUNC93_IN_INV_SEL_S 6 + +/* GPIO_FUNC93_IN_SEL : R/W; bitpos: [5:0]; default: 0; + * set this value: s=0-53: connect GPIO[s] to this port. s=0x38: set this + * port always high level. s=0x3C: set this port always low level. + */ + +#define GPIO_FUNC93_IN_SEL 0x0000003f +#define GPIO_FUNC93_IN_SEL_M (GPIO_FUNC93_IN_SEL_V << GPIO_FUNC93_IN_SEL_S) +#define GPIO_FUNC93_IN_SEL_V 0x0000003f +#define GPIO_FUNC93_IN_SEL_S 0 + +/* GPIO_FUNC94_IN_SEL_CFG_REG register + * GPIO input function configuration register + */ + +#define GPIO_FUNC94_IN_SEL_CFG_REG (DR_REG_GPIO_BASE + 0x2cc) + +/* GPIO_SIG94_IN_SEL : R/W; bitpos: [7]; default: 0; + * set this bit to bypass GPIO. 1:do not bypass GPIO. 0:bypass GPIO. + */ + +#define GPIO_SIG94_IN_SEL (BIT(7)) +#define GPIO_SIG94_IN_SEL_M (GPIO_SIG94_IN_SEL_V << GPIO_SIG94_IN_SEL_S) +#define GPIO_SIG94_IN_SEL_V 0x00000001 +#define GPIO_SIG94_IN_SEL_S 7 + +/* GPIO_FUNC94_IN_INV_SEL : R/W; bitpos: [6]; default: 0; + * set this bit to invert input signal. 1:invert. 0:not invert. + */ + +#define GPIO_FUNC94_IN_INV_SEL (BIT(6)) +#define GPIO_FUNC94_IN_INV_SEL_M (GPIO_FUNC94_IN_INV_SEL_V << GPIO_FUNC94_IN_INV_SEL_S) +#define GPIO_FUNC94_IN_INV_SEL_V 0x00000001 +#define GPIO_FUNC94_IN_INV_SEL_S 6 + +/* GPIO_FUNC94_IN_SEL : R/W; bitpos: [5:0]; default: 0; + * set this value: s=0-53: connect GPIO[s] to this port. s=0x38: set this + * port always high level. s=0x3C: set this port always low level. + */ + +#define GPIO_FUNC94_IN_SEL 0x0000003f +#define GPIO_FUNC94_IN_SEL_M (GPIO_FUNC94_IN_SEL_V << GPIO_FUNC94_IN_SEL_S) +#define GPIO_FUNC94_IN_SEL_V 0x0000003f +#define GPIO_FUNC94_IN_SEL_S 0 + +/* GPIO_FUNC95_IN_SEL_CFG_REG register + * GPIO input function configuration register + */ + +#define GPIO_FUNC95_IN_SEL_CFG_REG (DR_REG_GPIO_BASE + 0x2d0) + +/* GPIO_SIG95_IN_SEL : R/W; bitpos: [7]; default: 0; + * set this bit to bypass GPIO. 1:do not bypass GPIO. 0:bypass GPIO. + */ + +#define GPIO_SIG95_IN_SEL (BIT(7)) +#define GPIO_SIG95_IN_SEL_M (GPIO_SIG95_IN_SEL_V << GPIO_SIG95_IN_SEL_S) +#define GPIO_SIG95_IN_SEL_V 0x00000001 +#define GPIO_SIG95_IN_SEL_S 7 + +/* GPIO_FUNC95_IN_INV_SEL : R/W; bitpos: [6]; default: 0; + * set this bit to invert input signal. 1:invert. 0:not invert. + */ + +#define GPIO_FUNC95_IN_INV_SEL (BIT(6)) +#define GPIO_FUNC95_IN_INV_SEL_M (GPIO_FUNC95_IN_INV_SEL_V << GPIO_FUNC95_IN_INV_SEL_S) +#define GPIO_FUNC95_IN_INV_SEL_V 0x00000001 +#define GPIO_FUNC95_IN_INV_SEL_S 6 + +/* GPIO_FUNC95_IN_SEL : R/W; bitpos: [5:0]; default: 0; + * set this value: s=0-53: connect GPIO[s] to this port. s=0x38: set this + * port always high level. s=0x3C: set this port always low level. + */ + +#define GPIO_FUNC95_IN_SEL 0x0000003f +#define GPIO_FUNC95_IN_SEL_M (GPIO_FUNC95_IN_SEL_V << GPIO_FUNC95_IN_SEL_S) +#define GPIO_FUNC95_IN_SEL_V 0x0000003f +#define GPIO_FUNC95_IN_SEL_S 0 + +/* GPIO_FUNC96_IN_SEL_CFG_REG register + * GPIO input function configuration register + */ + +#define GPIO_FUNC96_IN_SEL_CFG_REG (DR_REG_GPIO_BASE + 0x2d4) + +/* GPIO_SIG96_IN_SEL : R/W; bitpos: [7]; default: 0; + * set this bit to bypass GPIO. 1:do not bypass GPIO. 0:bypass GPIO. + */ + +#define GPIO_SIG96_IN_SEL (BIT(7)) +#define GPIO_SIG96_IN_SEL_M (GPIO_SIG96_IN_SEL_V << GPIO_SIG96_IN_SEL_S) +#define GPIO_SIG96_IN_SEL_V 0x00000001 +#define GPIO_SIG96_IN_SEL_S 7 + +/* GPIO_FUNC96_IN_INV_SEL : R/W; bitpos: [6]; default: 0; + * set this bit to invert input signal. 1:invert. 0:not invert. + */ + +#define GPIO_FUNC96_IN_INV_SEL (BIT(6)) +#define GPIO_FUNC96_IN_INV_SEL_M (GPIO_FUNC96_IN_INV_SEL_V << GPIO_FUNC96_IN_INV_SEL_S) +#define GPIO_FUNC96_IN_INV_SEL_V 0x00000001 +#define GPIO_FUNC96_IN_INV_SEL_S 6 + +/* GPIO_FUNC96_IN_SEL : R/W; bitpos: [5:0]; default: 0; + * set this value: s=0-53: connect GPIO[s] to this port. s=0x38: set this + * port always high level. s=0x3C: set this port always low level. + */ + +#define GPIO_FUNC96_IN_SEL 0x0000003f +#define GPIO_FUNC96_IN_SEL_M (GPIO_FUNC96_IN_SEL_V << GPIO_FUNC96_IN_SEL_S) +#define GPIO_FUNC96_IN_SEL_V 0x0000003f +#define GPIO_FUNC96_IN_SEL_S 0 + +/* GPIO_FUNC97_IN_SEL_CFG_REG register + * GPIO input function configuration register + */ + +#define GPIO_FUNC97_IN_SEL_CFG_REG (DR_REG_GPIO_BASE + 0x2d8) + +/* GPIO_SIG97_IN_SEL : R/W; bitpos: [7]; default: 0; + * set this bit to bypass GPIO. 1:do not bypass GPIO. 0:bypass GPIO. + */ + +#define GPIO_SIG97_IN_SEL (BIT(7)) +#define GPIO_SIG97_IN_SEL_M (GPIO_SIG97_IN_SEL_V << GPIO_SIG97_IN_SEL_S) +#define GPIO_SIG97_IN_SEL_V 0x00000001 +#define GPIO_SIG97_IN_SEL_S 7 + +/* GPIO_FUNC97_IN_INV_SEL : R/W; bitpos: [6]; default: 0; + * set this bit to invert input signal. 1:invert. 0:not invert. + */ + +#define GPIO_FUNC97_IN_INV_SEL (BIT(6)) +#define GPIO_FUNC97_IN_INV_SEL_M (GPIO_FUNC97_IN_INV_SEL_V << GPIO_FUNC97_IN_INV_SEL_S) +#define GPIO_FUNC97_IN_INV_SEL_V 0x00000001 +#define GPIO_FUNC97_IN_INV_SEL_S 6 + +/* GPIO_FUNC97_IN_SEL : R/W; bitpos: [5:0]; default: 0; + * set this value: s=0-53: connect GPIO[s] to this port. s=0x38: set this + * port always high level. s=0x3C: set this port always low level. + */ + +#define GPIO_FUNC97_IN_SEL 0x0000003f +#define GPIO_FUNC97_IN_SEL_M (GPIO_FUNC97_IN_SEL_V << GPIO_FUNC97_IN_SEL_S) +#define GPIO_FUNC97_IN_SEL_V 0x0000003f +#define GPIO_FUNC97_IN_SEL_S 0 + +/* GPIO_FUNC98_IN_SEL_CFG_REG register + * GPIO input function configuration register + */ + +#define GPIO_FUNC98_IN_SEL_CFG_REG (DR_REG_GPIO_BASE + 0x2dc) + +/* GPIO_SIG98_IN_SEL : R/W; bitpos: [7]; default: 0; + * set this bit to bypass GPIO. 1:do not bypass GPIO. 0:bypass GPIO. + */ + +#define GPIO_SIG98_IN_SEL (BIT(7)) +#define GPIO_SIG98_IN_SEL_M (GPIO_SIG98_IN_SEL_V << GPIO_SIG98_IN_SEL_S) +#define GPIO_SIG98_IN_SEL_V 0x00000001 +#define GPIO_SIG98_IN_SEL_S 7 + +/* GPIO_FUNC98_IN_INV_SEL : R/W; bitpos: [6]; default: 0; + * set this bit to invert input signal. 1:invert. 0:not invert. + */ + +#define GPIO_FUNC98_IN_INV_SEL (BIT(6)) +#define GPIO_FUNC98_IN_INV_SEL_M (GPIO_FUNC98_IN_INV_SEL_V << GPIO_FUNC98_IN_INV_SEL_S) +#define GPIO_FUNC98_IN_INV_SEL_V 0x00000001 +#define GPIO_FUNC98_IN_INV_SEL_S 6 + +/* GPIO_FUNC98_IN_SEL : R/W; bitpos: [5:0]; default: 0; + * set this value: s=0-53: connect GPIO[s] to this port. s=0x38: set this + * port always high level. s=0x3C: set this port always low level. + */ + +#define GPIO_FUNC98_IN_SEL 0x0000003f +#define GPIO_FUNC98_IN_SEL_M (GPIO_FUNC98_IN_SEL_V << GPIO_FUNC98_IN_SEL_S) +#define GPIO_FUNC98_IN_SEL_V 0x0000003f +#define GPIO_FUNC98_IN_SEL_S 0 + +/* GPIO_FUNC99_IN_SEL_CFG_REG register + * GPIO input function configuration register + */ + +#define GPIO_FUNC99_IN_SEL_CFG_REG (DR_REG_GPIO_BASE + 0x2e0) + +/* GPIO_SIG99_IN_SEL : R/W; bitpos: [7]; default: 0; + * set this bit to bypass GPIO. 1:do not bypass GPIO. 0:bypass GPIO. + */ + +#define GPIO_SIG99_IN_SEL (BIT(7)) +#define GPIO_SIG99_IN_SEL_M (GPIO_SIG99_IN_SEL_V << GPIO_SIG99_IN_SEL_S) +#define GPIO_SIG99_IN_SEL_V 0x00000001 +#define GPIO_SIG99_IN_SEL_S 7 + +/* GPIO_FUNC99_IN_INV_SEL : R/W; bitpos: [6]; default: 0; + * set this bit to invert input signal. 1:invert. 0:not invert. + */ + +#define GPIO_FUNC99_IN_INV_SEL (BIT(6)) +#define GPIO_FUNC99_IN_INV_SEL_M (GPIO_FUNC99_IN_INV_SEL_V << GPIO_FUNC99_IN_INV_SEL_S) +#define GPIO_FUNC99_IN_INV_SEL_V 0x00000001 +#define GPIO_FUNC99_IN_INV_SEL_S 6 + +/* GPIO_FUNC99_IN_SEL : R/W; bitpos: [5:0]; default: 0; + * set this value: s=0-53: connect GPIO[s] to this port. s=0x38: set this + * port always high level. s=0x3C: set this port always low level. + */ + +#define GPIO_FUNC99_IN_SEL 0x0000003f +#define GPIO_FUNC99_IN_SEL_M (GPIO_FUNC99_IN_SEL_V << GPIO_FUNC99_IN_SEL_S) +#define GPIO_FUNC99_IN_SEL_V 0x0000003f +#define GPIO_FUNC99_IN_SEL_S 0 + +/* GPIO_FUNC100_IN_SEL_CFG_REG register + * GPIO input function configuration register + */ + +#define GPIO_FUNC100_IN_SEL_CFG_REG (DR_REG_GPIO_BASE + 0x2e4) + +/* GPIO_SIG100_IN_SEL : R/W; bitpos: [7]; default: 0; + * set this bit to bypass GPIO. 1:do not bypass GPIO. 0:bypass GPIO. + */ + +#define GPIO_SIG100_IN_SEL (BIT(7)) +#define GPIO_SIG100_IN_SEL_M (GPIO_SIG100_IN_SEL_V << GPIO_SIG100_IN_SEL_S) +#define GPIO_SIG100_IN_SEL_V 0x00000001 +#define GPIO_SIG100_IN_SEL_S 7 + +/* GPIO_FUNC100_IN_INV_SEL : R/W; bitpos: [6]; default: 0; + * set this bit to invert input signal. 1:invert. 0:not invert. + */ + +#define GPIO_FUNC100_IN_INV_SEL (BIT(6)) +#define GPIO_FUNC100_IN_INV_SEL_M (GPIO_FUNC100_IN_INV_SEL_V << GPIO_FUNC100_IN_INV_SEL_S) +#define GPIO_FUNC100_IN_INV_SEL_V 0x00000001 +#define GPIO_FUNC100_IN_INV_SEL_S 6 + +/* GPIO_FUNC100_IN_SEL : R/W; bitpos: [5:0]; default: 0; + * set this value: s=0-53: connect GPIO[s] to this port. s=0x38: set this + * port always high level. s=0x3C: set this port always low level. + */ + +#define GPIO_FUNC100_IN_SEL 0x0000003f +#define GPIO_FUNC100_IN_SEL_M (GPIO_FUNC100_IN_SEL_V << GPIO_FUNC100_IN_SEL_S) +#define GPIO_FUNC100_IN_SEL_V 0x0000003f +#define GPIO_FUNC100_IN_SEL_S 0 + +/* GPIO_FUNC101_IN_SEL_CFG_REG register + * GPIO input function configuration register + */ + +#define GPIO_FUNC101_IN_SEL_CFG_REG (DR_REG_GPIO_BASE + 0x2e8) + +/* GPIO_SIG101_IN_SEL : R/W; bitpos: [7]; default: 0; + * set this bit to bypass GPIO. 1:do not bypass GPIO. 0:bypass GPIO. + */ + +#define GPIO_SIG101_IN_SEL (BIT(7)) +#define GPIO_SIG101_IN_SEL_M (GPIO_SIG101_IN_SEL_V << GPIO_SIG101_IN_SEL_S) +#define GPIO_SIG101_IN_SEL_V 0x00000001 +#define GPIO_SIG101_IN_SEL_S 7 + +/* GPIO_FUNC101_IN_INV_SEL : R/W; bitpos: [6]; default: 0; + * set this bit to invert input signal. 1:invert. 0:not invert. + */ + +#define GPIO_FUNC101_IN_INV_SEL (BIT(6)) +#define GPIO_FUNC101_IN_INV_SEL_M (GPIO_FUNC101_IN_INV_SEL_V << GPIO_FUNC101_IN_INV_SEL_S) +#define GPIO_FUNC101_IN_INV_SEL_V 0x00000001 +#define GPIO_FUNC101_IN_INV_SEL_S 6 + +/* GPIO_FUNC101_IN_SEL : R/W; bitpos: [5:0]; default: 0; + * set this value: s=0-53: connect GPIO[s] to this port. s=0x38: set this + * port always high level. s=0x3C: set this port always low level. + */ + +#define GPIO_FUNC101_IN_SEL 0x0000003f +#define GPIO_FUNC101_IN_SEL_M (GPIO_FUNC101_IN_SEL_V << GPIO_FUNC101_IN_SEL_S) +#define GPIO_FUNC101_IN_SEL_V 0x0000003f +#define GPIO_FUNC101_IN_SEL_S 0 + +/* GPIO_FUNC102_IN_SEL_CFG_REG register + * GPIO input function configuration register + */ + +#define GPIO_FUNC102_IN_SEL_CFG_REG (DR_REG_GPIO_BASE + 0x2ec) + +/* GPIO_SIG102_IN_SEL : R/W; bitpos: [7]; default: 0; + * set this bit to bypass GPIO. 1:do not bypass GPIO. 0:bypass GPIO. + */ + +#define GPIO_SIG102_IN_SEL (BIT(7)) +#define GPIO_SIG102_IN_SEL_M (GPIO_SIG102_IN_SEL_V << GPIO_SIG102_IN_SEL_S) +#define GPIO_SIG102_IN_SEL_V 0x00000001 +#define GPIO_SIG102_IN_SEL_S 7 + +/* GPIO_FUNC102_IN_INV_SEL : R/W; bitpos: [6]; default: 0; + * set this bit to invert input signal. 1:invert. 0:not invert. + */ + +#define GPIO_FUNC102_IN_INV_SEL (BIT(6)) +#define GPIO_FUNC102_IN_INV_SEL_M (GPIO_FUNC102_IN_INV_SEL_V << GPIO_FUNC102_IN_INV_SEL_S) +#define GPIO_FUNC102_IN_INV_SEL_V 0x00000001 +#define GPIO_FUNC102_IN_INV_SEL_S 6 + +/* GPIO_FUNC102_IN_SEL : R/W; bitpos: [5:0]; default: 0; + * set this value: s=0-53: connect GPIO[s] to this port. s=0x38: set this + * port always high level. s=0x3C: set this port always low level. + */ + +#define GPIO_FUNC102_IN_SEL 0x0000003f +#define GPIO_FUNC102_IN_SEL_M (GPIO_FUNC102_IN_SEL_V << GPIO_FUNC102_IN_SEL_S) +#define GPIO_FUNC102_IN_SEL_V 0x0000003f +#define GPIO_FUNC102_IN_SEL_S 0 + +/* GPIO_FUNC103_IN_SEL_CFG_REG register + * GPIO input function configuration register + */ + +#define GPIO_FUNC103_IN_SEL_CFG_REG (DR_REG_GPIO_BASE + 0x2f0) + +/* GPIO_SIG103_IN_SEL : R/W; bitpos: [7]; default: 0; + * set this bit to bypass GPIO. 1:do not bypass GPIO. 0:bypass GPIO. + */ + +#define GPIO_SIG103_IN_SEL (BIT(7)) +#define GPIO_SIG103_IN_SEL_M (GPIO_SIG103_IN_SEL_V << GPIO_SIG103_IN_SEL_S) +#define GPIO_SIG103_IN_SEL_V 0x00000001 +#define GPIO_SIG103_IN_SEL_S 7 + +/* GPIO_FUNC103_IN_INV_SEL : R/W; bitpos: [6]; default: 0; + * set this bit to invert input signal. 1:invert. 0:not invert. + */ + +#define GPIO_FUNC103_IN_INV_SEL (BIT(6)) +#define GPIO_FUNC103_IN_INV_SEL_M (GPIO_FUNC103_IN_INV_SEL_V << GPIO_FUNC103_IN_INV_SEL_S) +#define GPIO_FUNC103_IN_INV_SEL_V 0x00000001 +#define GPIO_FUNC103_IN_INV_SEL_S 6 + +/* GPIO_FUNC103_IN_SEL : R/W; bitpos: [5:0]; default: 0; + * set this value: s=0-53: connect GPIO[s] to this port. s=0x38: set this + * port always high level. s=0x3C: set this port always low level. + */ + +#define GPIO_FUNC103_IN_SEL 0x0000003f +#define GPIO_FUNC103_IN_SEL_M (GPIO_FUNC103_IN_SEL_V << GPIO_FUNC103_IN_SEL_S) +#define GPIO_FUNC103_IN_SEL_V 0x0000003f +#define GPIO_FUNC103_IN_SEL_S 0 + +/* GPIO_FUNC104_IN_SEL_CFG_REG register + * GPIO input function configuration register + */ + +#define GPIO_FUNC104_IN_SEL_CFG_REG (DR_REG_GPIO_BASE + 0x2f4) + +/* GPIO_SIG104_IN_SEL : R/W; bitpos: [7]; default: 0; + * set this bit to bypass GPIO. 1:do not bypass GPIO. 0:bypass GPIO. + */ + +#define GPIO_SIG104_IN_SEL (BIT(7)) +#define GPIO_SIG104_IN_SEL_M (GPIO_SIG104_IN_SEL_V << GPIO_SIG104_IN_SEL_S) +#define GPIO_SIG104_IN_SEL_V 0x00000001 +#define GPIO_SIG104_IN_SEL_S 7 + +/* GPIO_FUNC104_IN_INV_SEL : R/W; bitpos: [6]; default: 0; + * set this bit to invert input signal. 1:invert. 0:not invert. + */ + +#define GPIO_FUNC104_IN_INV_SEL (BIT(6)) +#define GPIO_FUNC104_IN_INV_SEL_M (GPIO_FUNC104_IN_INV_SEL_V << GPIO_FUNC104_IN_INV_SEL_S) +#define GPIO_FUNC104_IN_INV_SEL_V 0x00000001 +#define GPIO_FUNC104_IN_INV_SEL_S 6 + +/* GPIO_FUNC104_IN_SEL : R/W; bitpos: [5:0]; default: 0; + * set this value: s=0-53: connect GPIO[s] to this port. s=0x38: set this + * port always high level. s=0x3C: set this port always low level. + */ + +#define GPIO_FUNC104_IN_SEL 0x0000003f +#define GPIO_FUNC104_IN_SEL_M (GPIO_FUNC104_IN_SEL_V << GPIO_FUNC104_IN_SEL_S) +#define GPIO_FUNC104_IN_SEL_V 0x0000003f +#define GPIO_FUNC104_IN_SEL_S 0 + +/* GPIO_FUNC105_IN_SEL_CFG_REG register + * GPIO input function configuration register + */ + +#define GPIO_FUNC105_IN_SEL_CFG_REG (DR_REG_GPIO_BASE + 0x2f8) + +/* GPIO_SIG105_IN_SEL : R/W; bitpos: [7]; default: 0; + * set this bit to bypass GPIO. 1:do not bypass GPIO. 0:bypass GPIO. + */ + +#define GPIO_SIG105_IN_SEL (BIT(7)) +#define GPIO_SIG105_IN_SEL_M (GPIO_SIG105_IN_SEL_V << GPIO_SIG105_IN_SEL_S) +#define GPIO_SIG105_IN_SEL_V 0x00000001 +#define GPIO_SIG105_IN_SEL_S 7 + +/* GPIO_FUNC105_IN_INV_SEL : R/W; bitpos: [6]; default: 0; + * set this bit to invert input signal. 1:invert. 0:not invert. + */ + +#define GPIO_FUNC105_IN_INV_SEL (BIT(6)) +#define GPIO_FUNC105_IN_INV_SEL_M (GPIO_FUNC105_IN_INV_SEL_V << GPIO_FUNC105_IN_INV_SEL_S) +#define GPIO_FUNC105_IN_INV_SEL_V 0x00000001 +#define GPIO_FUNC105_IN_INV_SEL_S 6 + +/* GPIO_FUNC105_IN_SEL : R/W; bitpos: [5:0]; default: 0; + * set this value: s=0-53: connect GPIO[s] to this port. s=0x38: set this + * port always high level. s=0x3C: set this port always low level. + */ + +#define GPIO_FUNC105_IN_SEL 0x0000003f +#define GPIO_FUNC105_IN_SEL_M (GPIO_FUNC105_IN_SEL_V << GPIO_FUNC105_IN_SEL_S) +#define GPIO_FUNC105_IN_SEL_V 0x0000003f +#define GPIO_FUNC105_IN_SEL_S 0 + +/* GPIO_FUNC106_IN_SEL_CFG_REG register + * GPIO input function configuration register + */ + +#define GPIO_FUNC106_IN_SEL_CFG_REG (DR_REG_GPIO_BASE + 0x2fc) + +/* GPIO_SIG106_IN_SEL : R/W; bitpos: [7]; default: 0; + * set this bit to bypass GPIO. 1:do not bypass GPIO. 0:bypass GPIO. + */ + +#define GPIO_SIG106_IN_SEL (BIT(7)) +#define GPIO_SIG106_IN_SEL_M (GPIO_SIG106_IN_SEL_V << GPIO_SIG106_IN_SEL_S) +#define GPIO_SIG106_IN_SEL_V 0x00000001 +#define GPIO_SIG106_IN_SEL_S 7 + +/* GPIO_FUNC106_IN_INV_SEL : R/W; bitpos: [6]; default: 0; + * set this bit to invert input signal. 1:invert. 0:not invert. + */ + +#define GPIO_FUNC106_IN_INV_SEL (BIT(6)) +#define GPIO_FUNC106_IN_INV_SEL_M (GPIO_FUNC106_IN_INV_SEL_V << GPIO_FUNC106_IN_INV_SEL_S) +#define GPIO_FUNC106_IN_INV_SEL_V 0x00000001 +#define GPIO_FUNC106_IN_INV_SEL_S 6 + +/* GPIO_FUNC106_IN_SEL : R/W; bitpos: [5:0]; default: 0; + * set this value: s=0-53: connect GPIO[s] to this port. s=0x38: set this + * port always high level. s=0x3C: set this port always low level. + */ + +#define GPIO_FUNC106_IN_SEL 0x0000003f +#define GPIO_FUNC106_IN_SEL_M (GPIO_FUNC106_IN_SEL_V << GPIO_FUNC106_IN_SEL_S) +#define GPIO_FUNC106_IN_SEL_V 0x0000003f +#define GPIO_FUNC106_IN_SEL_S 0 + +/* GPIO_FUNC107_IN_SEL_CFG_REG register + * GPIO input function configuration register + */ + +#define GPIO_FUNC107_IN_SEL_CFG_REG (DR_REG_GPIO_BASE + 0x300) + +/* GPIO_SIG107_IN_SEL : R/W; bitpos: [7]; default: 0; + * set this bit to bypass GPIO. 1:do not bypass GPIO. 0:bypass GPIO. + */ + +#define GPIO_SIG107_IN_SEL (BIT(7)) +#define GPIO_SIG107_IN_SEL_M (GPIO_SIG107_IN_SEL_V << GPIO_SIG107_IN_SEL_S) +#define GPIO_SIG107_IN_SEL_V 0x00000001 +#define GPIO_SIG107_IN_SEL_S 7 + +/* GPIO_FUNC107_IN_INV_SEL : R/W; bitpos: [6]; default: 0; + * set this bit to invert input signal. 1:invert. 0:not invert. + */ + +#define GPIO_FUNC107_IN_INV_SEL (BIT(6)) +#define GPIO_FUNC107_IN_INV_SEL_M (GPIO_FUNC107_IN_INV_SEL_V << GPIO_FUNC107_IN_INV_SEL_S) +#define GPIO_FUNC107_IN_INV_SEL_V 0x00000001 +#define GPIO_FUNC107_IN_INV_SEL_S 6 + +/* GPIO_FUNC107_IN_SEL : R/W; bitpos: [5:0]; default: 0; + * set this value: s=0-53: connect GPIO[s] to this port. s=0x38: set this + * port always high level. s=0x3C: set this port always low level. + */ + +#define GPIO_FUNC107_IN_SEL 0x0000003f +#define GPIO_FUNC107_IN_SEL_M (GPIO_FUNC107_IN_SEL_V << GPIO_FUNC107_IN_SEL_S) +#define GPIO_FUNC107_IN_SEL_V 0x0000003f +#define GPIO_FUNC107_IN_SEL_S 0 + +/* GPIO_FUNC108_IN_SEL_CFG_REG register + * GPIO input function configuration register + */ + +#define GPIO_FUNC108_IN_SEL_CFG_REG (DR_REG_GPIO_BASE + 0x304) + +/* GPIO_SIG108_IN_SEL : R/W; bitpos: [7]; default: 0; + * set this bit to bypass GPIO. 1:do not bypass GPIO. 0:bypass GPIO. + */ + +#define GPIO_SIG108_IN_SEL (BIT(7)) +#define GPIO_SIG108_IN_SEL_M (GPIO_SIG108_IN_SEL_V << GPIO_SIG108_IN_SEL_S) +#define GPIO_SIG108_IN_SEL_V 0x00000001 +#define GPIO_SIG108_IN_SEL_S 7 + +/* GPIO_FUNC108_IN_INV_SEL : R/W; bitpos: [6]; default: 0; + * set this bit to invert input signal. 1:invert. 0:not invert. + */ + +#define GPIO_FUNC108_IN_INV_SEL (BIT(6)) +#define GPIO_FUNC108_IN_INV_SEL_M (GPIO_FUNC108_IN_INV_SEL_V << GPIO_FUNC108_IN_INV_SEL_S) +#define GPIO_FUNC108_IN_INV_SEL_V 0x00000001 +#define GPIO_FUNC108_IN_INV_SEL_S 6 + +/* GPIO_FUNC108_IN_SEL : R/W; bitpos: [5:0]; default: 0; + * set this value: s=0-53: connect GPIO[s] to this port. s=0x38: set this + * port always high level. s=0x3C: set this port always low level. + */ + +#define GPIO_FUNC108_IN_SEL 0x0000003f +#define GPIO_FUNC108_IN_SEL_M (GPIO_FUNC108_IN_SEL_V << GPIO_FUNC108_IN_SEL_S) +#define GPIO_FUNC108_IN_SEL_V 0x0000003f +#define GPIO_FUNC108_IN_SEL_S 0 + +/* GPIO_FUNC109_IN_SEL_CFG_REG register + * GPIO input function configuration register + */ + +#define GPIO_FUNC109_IN_SEL_CFG_REG (DR_REG_GPIO_BASE + 0x308) + +/* GPIO_SIG109_IN_SEL : R/W; bitpos: [7]; default: 0; + * set this bit to bypass GPIO. 1:do not bypass GPIO. 0:bypass GPIO. + */ + +#define GPIO_SIG109_IN_SEL (BIT(7)) +#define GPIO_SIG109_IN_SEL_M (GPIO_SIG109_IN_SEL_V << GPIO_SIG109_IN_SEL_S) +#define GPIO_SIG109_IN_SEL_V 0x00000001 +#define GPIO_SIG109_IN_SEL_S 7 + +/* GPIO_FUNC109_IN_INV_SEL : R/W; bitpos: [6]; default: 0; + * set this bit to invert input signal. 1:invert. 0:not invert. + */ + +#define GPIO_FUNC109_IN_INV_SEL (BIT(6)) +#define GPIO_FUNC109_IN_INV_SEL_M (GPIO_FUNC109_IN_INV_SEL_V << GPIO_FUNC109_IN_INV_SEL_S) +#define GPIO_FUNC109_IN_INV_SEL_V 0x00000001 +#define GPIO_FUNC109_IN_INV_SEL_S 6 + +/* GPIO_FUNC109_IN_SEL : R/W; bitpos: [5:0]; default: 0; + * set this value: s=0-53: connect GPIO[s] to this port. s=0x38: set this + * port always high level. s=0x3C: set this port always low level. + */ + +#define GPIO_FUNC109_IN_SEL 0x0000003f +#define GPIO_FUNC109_IN_SEL_M (GPIO_FUNC109_IN_SEL_V << GPIO_FUNC109_IN_SEL_S) +#define GPIO_FUNC109_IN_SEL_V 0x0000003f +#define GPIO_FUNC109_IN_SEL_S 0 + +/* GPIO_FUNC110_IN_SEL_CFG_REG register + * GPIO input function configuration register + */ + +#define GPIO_FUNC110_IN_SEL_CFG_REG (DR_REG_GPIO_BASE + 0x30c) + +/* GPIO_SIG110_IN_SEL : R/W; bitpos: [7]; default: 0; + * set this bit to bypass GPIO. 1:do not bypass GPIO. 0:bypass GPIO. + */ + +#define GPIO_SIG110_IN_SEL (BIT(7)) +#define GPIO_SIG110_IN_SEL_M (GPIO_SIG110_IN_SEL_V << GPIO_SIG110_IN_SEL_S) +#define GPIO_SIG110_IN_SEL_V 0x00000001 +#define GPIO_SIG110_IN_SEL_S 7 + +/* GPIO_FUNC110_IN_INV_SEL : R/W; bitpos: [6]; default: 0; + * set this bit to invert input signal. 1:invert. 0:not invert. + */ + +#define GPIO_FUNC110_IN_INV_SEL (BIT(6)) +#define GPIO_FUNC110_IN_INV_SEL_M (GPIO_FUNC110_IN_INV_SEL_V << GPIO_FUNC110_IN_INV_SEL_S) +#define GPIO_FUNC110_IN_INV_SEL_V 0x00000001 +#define GPIO_FUNC110_IN_INV_SEL_S 6 + +/* GPIO_FUNC110_IN_SEL : R/W; bitpos: [5:0]; default: 0; + * set this value: s=0-53: connect GPIO[s] to this port. s=0x38: set this + * port always high level. s=0x3C: set this port always low level. + */ + +#define GPIO_FUNC110_IN_SEL 0x0000003f +#define GPIO_FUNC110_IN_SEL_M (GPIO_FUNC110_IN_SEL_V << GPIO_FUNC110_IN_SEL_S) +#define GPIO_FUNC110_IN_SEL_V 0x0000003f +#define GPIO_FUNC110_IN_SEL_S 0 + +/* GPIO_FUNC111_IN_SEL_CFG_REG register + * GPIO input function configuration register + */ + +#define GPIO_FUNC111_IN_SEL_CFG_REG (DR_REG_GPIO_BASE + 0x310) + +/* GPIO_SIG111_IN_SEL : R/W; bitpos: [7]; default: 0; + * set this bit to bypass GPIO. 1:do not bypass GPIO. 0:bypass GPIO. + */ + +#define GPIO_SIG111_IN_SEL (BIT(7)) +#define GPIO_SIG111_IN_SEL_M (GPIO_SIG111_IN_SEL_V << GPIO_SIG111_IN_SEL_S) +#define GPIO_SIG111_IN_SEL_V 0x00000001 +#define GPIO_SIG111_IN_SEL_S 7 + +/* GPIO_FUNC111_IN_INV_SEL : R/W; bitpos: [6]; default: 0; + * set this bit to invert input signal. 1:invert. 0:not invert. + */ + +#define GPIO_FUNC111_IN_INV_SEL (BIT(6)) +#define GPIO_FUNC111_IN_INV_SEL_M (GPIO_FUNC111_IN_INV_SEL_V << GPIO_FUNC111_IN_INV_SEL_S) +#define GPIO_FUNC111_IN_INV_SEL_V 0x00000001 +#define GPIO_FUNC111_IN_INV_SEL_S 6 + +/* GPIO_FUNC111_IN_SEL : R/W; bitpos: [5:0]; default: 0; + * set this value: s=0-53: connect GPIO[s] to this port. s=0x38: set this + * port always high level. s=0x3C: set this port always low level. + */ + +#define GPIO_FUNC111_IN_SEL 0x0000003f +#define GPIO_FUNC111_IN_SEL_M (GPIO_FUNC111_IN_SEL_V << GPIO_FUNC111_IN_SEL_S) +#define GPIO_FUNC111_IN_SEL_V 0x0000003f +#define GPIO_FUNC111_IN_SEL_S 0 + +/* GPIO_FUNC112_IN_SEL_CFG_REG register + * GPIO input function configuration register + */ + +#define GPIO_FUNC112_IN_SEL_CFG_REG (DR_REG_GPIO_BASE + 0x314) + +/* GPIO_SIG112_IN_SEL : R/W; bitpos: [7]; default: 0; + * set this bit to bypass GPIO. 1:do not bypass GPIO. 0:bypass GPIO. + */ + +#define GPIO_SIG112_IN_SEL (BIT(7)) +#define GPIO_SIG112_IN_SEL_M (GPIO_SIG112_IN_SEL_V << GPIO_SIG112_IN_SEL_S) +#define GPIO_SIG112_IN_SEL_V 0x00000001 +#define GPIO_SIG112_IN_SEL_S 7 + +/* GPIO_FUNC112_IN_INV_SEL : R/W; bitpos: [6]; default: 0; + * set this bit to invert input signal. 1:invert. 0:not invert. + */ + +#define GPIO_FUNC112_IN_INV_SEL (BIT(6)) +#define GPIO_FUNC112_IN_INV_SEL_M (GPIO_FUNC112_IN_INV_SEL_V << GPIO_FUNC112_IN_INV_SEL_S) +#define GPIO_FUNC112_IN_INV_SEL_V 0x00000001 +#define GPIO_FUNC112_IN_INV_SEL_S 6 + +/* GPIO_FUNC112_IN_SEL : R/W; bitpos: [5:0]; default: 0; + * set this value: s=0-53: connect GPIO[s] to this port. s=0x38: set this + * port always high level. s=0x3C: set this port always low level. + */ + +#define GPIO_FUNC112_IN_SEL 0x0000003f +#define GPIO_FUNC112_IN_SEL_M (GPIO_FUNC112_IN_SEL_V << GPIO_FUNC112_IN_SEL_S) +#define GPIO_FUNC112_IN_SEL_V 0x0000003f +#define GPIO_FUNC112_IN_SEL_S 0 + +/* GPIO_FUNC113_IN_SEL_CFG_REG register + * GPIO input function configuration register + */ + +#define GPIO_FUNC113_IN_SEL_CFG_REG (DR_REG_GPIO_BASE + 0x318) + +/* GPIO_SIG113_IN_SEL : R/W; bitpos: [7]; default: 0; + * set this bit to bypass GPIO. 1:do not bypass GPIO. 0:bypass GPIO. + */ + +#define GPIO_SIG113_IN_SEL (BIT(7)) +#define GPIO_SIG113_IN_SEL_M (GPIO_SIG113_IN_SEL_V << GPIO_SIG113_IN_SEL_S) +#define GPIO_SIG113_IN_SEL_V 0x00000001 +#define GPIO_SIG113_IN_SEL_S 7 + +/* GPIO_FUNC113_IN_INV_SEL : R/W; bitpos: [6]; default: 0; + * set this bit to invert input signal. 1:invert. 0:not invert. + */ + +#define GPIO_FUNC113_IN_INV_SEL (BIT(6)) +#define GPIO_FUNC113_IN_INV_SEL_M (GPIO_FUNC113_IN_INV_SEL_V << GPIO_FUNC113_IN_INV_SEL_S) +#define GPIO_FUNC113_IN_INV_SEL_V 0x00000001 +#define GPIO_FUNC113_IN_INV_SEL_S 6 + +/* GPIO_FUNC113_IN_SEL : R/W; bitpos: [5:0]; default: 0; + * set this value: s=0-53: connect GPIO[s] to this port. s=0x38: set this + * port always high level. s=0x3C: set this port always low level. + */ + +#define GPIO_FUNC113_IN_SEL 0x0000003f +#define GPIO_FUNC113_IN_SEL_M (GPIO_FUNC113_IN_SEL_V << GPIO_FUNC113_IN_SEL_S) +#define GPIO_FUNC113_IN_SEL_V 0x0000003f +#define GPIO_FUNC113_IN_SEL_S 0 + +/* GPIO_FUNC114_IN_SEL_CFG_REG register + * GPIO input function configuration register + */ + +#define GPIO_FUNC114_IN_SEL_CFG_REG (DR_REG_GPIO_BASE + 0x31c) + +/* GPIO_SIG114_IN_SEL : R/W; bitpos: [7]; default: 0; + * set this bit to bypass GPIO. 1:do not bypass GPIO. 0:bypass GPIO. + */ + +#define GPIO_SIG114_IN_SEL (BIT(7)) +#define GPIO_SIG114_IN_SEL_M (GPIO_SIG114_IN_SEL_V << GPIO_SIG114_IN_SEL_S) +#define GPIO_SIG114_IN_SEL_V 0x00000001 +#define GPIO_SIG114_IN_SEL_S 7 + +/* GPIO_FUNC114_IN_INV_SEL : R/W; bitpos: [6]; default: 0; + * set this bit to invert input signal. 1:invert. 0:not invert. + */ + +#define GPIO_FUNC114_IN_INV_SEL (BIT(6)) +#define GPIO_FUNC114_IN_INV_SEL_M (GPIO_FUNC114_IN_INV_SEL_V << GPIO_FUNC114_IN_INV_SEL_S) +#define GPIO_FUNC114_IN_INV_SEL_V 0x00000001 +#define GPIO_FUNC114_IN_INV_SEL_S 6 + +/* GPIO_FUNC114_IN_SEL : R/W; bitpos: [5:0]; default: 0; + * set this value: s=0-53: connect GPIO[s] to this port. s=0x38: set this + * port always high level. s=0x3C: set this port always low level. + */ + +#define GPIO_FUNC114_IN_SEL 0x0000003f +#define GPIO_FUNC114_IN_SEL_M (GPIO_FUNC114_IN_SEL_V << GPIO_FUNC114_IN_SEL_S) +#define GPIO_FUNC114_IN_SEL_V 0x0000003f +#define GPIO_FUNC114_IN_SEL_S 0 + +/* GPIO_FUNC115_IN_SEL_CFG_REG register + * GPIO input function configuration register + */ + +#define GPIO_FUNC115_IN_SEL_CFG_REG (DR_REG_GPIO_BASE + 0x320) + +/* GPIO_SIG115_IN_SEL : R/W; bitpos: [7]; default: 0; + * set this bit to bypass GPIO. 1:do not bypass GPIO. 0:bypass GPIO. + */ + +#define GPIO_SIG115_IN_SEL (BIT(7)) +#define GPIO_SIG115_IN_SEL_M (GPIO_SIG115_IN_SEL_V << GPIO_SIG115_IN_SEL_S) +#define GPIO_SIG115_IN_SEL_V 0x00000001 +#define GPIO_SIG115_IN_SEL_S 7 + +/* GPIO_FUNC115_IN_INV_SEL : R/W; bitpos: [6]; default: 0; + * set this bit to invert input signal. 1:invert. 0:not invert. + */ + +#define GPIO_FUNC115_IN_INV_SEL (BIT(6)) +#define GPIO_FUNC115_IN_INV_SEL_M (GPIO_FUNC115_IN_INV_SEL_V << GPIO_FUNC115_IN_INV_SEL_S) +#define GPIO_FUNC115_IN_INV_SEL_V 0x00000001 +#define GPIO_FUNC115_IN_INV_SEL_S 6 + +/* GPIO_FUNC115_IN_SEL : R/W; bitpos: [5:0]; default: 0; + * set this value: s=0-53: connect GPIO[s] to this port. s=0x38: set this + * port always high level. s=0x3C: set this port always low level. + */ + +#define GPIO_FUNC115_IN_SEL 0x0000003f +#define GPIO_FUNC115_IN_SEL_M (GPIO_FUNC115_IN_SEL_V << GPIO_FUNC115_IN_SEL_S) +#define GPIO_FUNC115_IN_SEL_V 0x0000003f +#define GPIO_FUNC115_IN_SEL_S 0 + +/* GPIO_FUNC116_IN_SEL_CFG_REG register + * GPIO input function configuration register + */ + +#define GPIO_FUNC116_IN_SEL_CFG_REG (DR_REG_GPIO_BASE + 0x324) + +/* GPIO_SIG116_IN_SEL : R/W; bitpos: [7]; default: 0; + * set this bit to bypass GPIO. 1:do not bypass GPIO. 0:bypass GPIO. + */ + +#define GPIO_SIG116_IN_SEL (BIT(7)) +#define GPIO_SIG116_IN_SEL_M (GPIO_SIG116_IN_SEL_V << GPIO_SIG116_IN_SEL_S) +#define GPIO_SIG116_IN_SEL_V 0x00000001 +#define GPIO_SIG116_IN_SEL_S 7 + +/* GPIO_FUNC116_IN_INV_SEL : R/W; bitpos: [6]; default: 0; + * set this bit to invert input signal. 1:invert. 0:not invert. + */ + +#define GPIO_FUNC116_IN_INV_SEL (BIT(6)) +#define GPIO_FUNC116_IN_INV_SEL_M (GPIO_FUNC116_IN_INV_SEL_V << GPIO_FUNC116_IN_INV_SEL_S) +#define GPIO_FUNC116_IN_INV_SEL_V 0x00000001 +#define GPIO_FUNC116_IN_INV_SEL_S 6 + +/* GPIO_FUNC116_IN_SEL : R/W; bitpos: [5:0]; default: 0; + * set this value: s=0-53: connect GPIO[s] to this port. s=0x38: set this + * port always high level. s=0x3C: set this port always low level. + */ + +#define GPIO_FUNC116_IN_SEL 0x0000003f +#define GPIO_FUNC116_IN_SEL_M (GPIO_FUNC116_IN_SEL_V << GPIO_FUNC116_IN_SEL_S) +#define GPIO_FUNC116_IN_SEL_V 0x0000003f +#define GPIO_FUNC116_IN_SEL_S 0 + +/* GPIO_FUNC117_IN_SEL_CFG_REG register + * GPIO input function configuration register + */ + +#define GPIO_FUNC117_IN_SEL_CFG_REG (DR_REG_GPIO_BASE + 0x328) + +/* GPIO_SIG117_IN_SEL : R/W; bitpos: [7]; default: 0; + * set this bit to bypass GPIO. 1:do not bypass GPIO. 0:bypass GPIO. + */ + +#define GPIO_SIG117_IN_SEL (BIT(7)) +#define GPIO_SIG117_IN_SEL_M (GPIO_SIG117_IN_SEL_V << GPIO_SIG117_IN_SEL_S) +#define GPIO_SIG117_IN_SEL_V 0x00000001 +#define GPIO_SIG117_IN_SEL_S 7 + +/* GPIO_FUNC117_IN_INV_SEL : R/W; bitpos: [6]; default: 0; + * set this bit to invert input signal. 1:invert. 0:not invert. + */ + +#define GPIO_FUNC117_IN_INV_SEL (BIT(6)) +#define GPIO_FUNC117_IN_INV_SEL_M (GPIO_FUNC117_IN_INV_SEL_V << GPIO_FUNC117_IN_INV_SEL_S) +#define GPIO_FUNC117_IN_INV_SEL_V 0x00000001 +#define GPIO_FUNC117_IN_INV_SEL_S 6 + +/* GPIO_FUNC117_IN_SEL : R/W; bitpos: [5:0]; default: 0; + * set this value: s=0-53: connect GPIO[s] to this port. s=0x38: set this + * port always high level. s=0x3C: set this port always low level. + */ + +#define GPIO_FUNC117_IN_SEL 0x0000003f +#define GPIO_FUNC117_IN_SEL_M (GPIO_FUNC117_IN_SEL_V << GPIO_FUNC117_IN_SEL_S) +#define GPIO_FUNC117_IN_SEL_V 0x0000003f +#define GPIO_FUNC117_IN_SEL_S 0 + +/* GPIO_FUNC118_IN_SEL_CFG_REG register + * GPIO input function configuration register + */ + +#define GPIO_FUNC118_IN_SEL_CFG_REG (DR_REG_GPIO_BASE + 0x32c) + +/* GPIO_SIG118_IN_SEL : R/W; bitpos: [7]; default: 0; + * set this bit to bypass GPIO. 1:do not bypass GPIO. 0:bypass GPIO. + */ + +#define GPIO_SIG118_IN_SEL (BIT(7)) +#define GPIO_SIG118_IN_SEL_M (GPIO_SIG118_IN_SEL_V << GPIO_SIG118_IN_SEL_S) +#define GPIO_SIG118_IN_SEL_V 0x00000001 +#define GPIO_SIG118_IN_SEL_S 7 + +/* GPIO_FUNC118_IN_INV_SEL : R/W; bitpos: [6]; default: 0; + * set this bit to invert input signal. 1:invert. 0:not invert. + */ + +#define GPIO_FUNC118_IN_INV_SEL (BIT(6)) +#define GPIO_FUNC118_IN_INV_SEL_M (GPIO_FUNC118_IN_INV_SEL_V << GPIO_FUNC118_IN_INV_SEL_S) +#define GPIO_FUNC118_IN_INV_SEL_V 0x00000001 +#define GPIO_FUNC118_IN_INV_SEL_S 6 + +/* GPIO_FUNC118_IN_SEL : R/W; bitpos: [5:0]; default: 0; + * set this value: s=0-53: connect GPIO[s] to this port. s=0x38: set this + * port always high level. s=0x3C: set this port always low level. + */ + +#define GPIO_FUNC118_IN_SEL 0x0000003f +#define GPIO_FUNC118_IN_SEL_M (GPIO_FUNC118_IN_SEL_V << GPIO_FUNC118_IN_SEL_S) +#define GPIO_FUNC118_IN_SEL_V 0x0000003f +#define GPIO_FUNC118_IN_SEL_S 0 + +/* GPIO_FUNC119_IN_SEL_CFG_REG register + * GPIO input function configuration register + */ + +#define GPIO_FUNC119_IN_SEL_CFG_REG (DR_REG_GPIO_BASE + 0x330) + +/* GPIO_SIG119_IN_SEL : R/W; bitpos: [7]; default: 0; + * set this bit to bypass GPIO. 1:do not bypass GPIO. 0:bypass GPIO. + */ + +#define GPIO_SIG119_IN_SEL (BIT(7)) +#define GPIO_SIG119_IN_SEL_M (GPIO_SIG119_IN_SEL_V << GPIO_SIG119_IN_SEL_S) +#define GPIO_SIG119_IN_SEL_V 0x00000001 +#define GPIO_SIG119_IN_SEL_S 7 + +/* GPIO_FUNC119_IN_INV_SEL : R/W; bitpos: [6]; default: 0; + * set this bit to invert input signal. 1:invert. 0:not invert. + */ + +#define GPIO_FUNC119_IN_INV_SEL (BIT(6)) +#define GPIO_FUNC119_IN_INV_SEL_M (GPIO_FUNC119_IN_INV_SEL_V << GPIO_FUNC119_IN_INV_SEL_S) +#define GPIO_FUNC119_IN_INV_SEL_V 0x00000001 +#define GPIO_FUNC119_IN_INV_SEL_S 6 + +/* GPIO_FUNC119_IN_SEL : R/W; bitpos: [5:0]; default: 0; + * set this value: s=0-53: connect GPIO[s] to this port. s=0x38: set this + * port always high level. s=0x3C: set this port always low level. + */ + +#define GPIO_FUNC119_IN_SEL 0x0000003f +#define GPIO_FUNC119_IN_SEL_M (GPIO_FUNC119_IN_SEL_V << GPIO_FUNC119_IN_SEL_S) +#define GPIO_FUNC119_IN_SEL_V 0x0000003f +#define GPIO_FUNC119_IN_SEL_S 0 + +/* GPIO_FUNC120_IN_SEL_CFG_REG register + * GPIO input function configuration register + */ + +#define GPIO_FUNC120_IN_SEL_CFG_REG (DR_REG_GPIO_BASE + 0x334) + +/* GPIO_SIG120_IN_SEL : R/W; bitpos: [7]; default: 0; + * set this bit to bypass GPIO. 1:do not bypass GPIO. 0:bypass GPIO. + */ + +#define GPIO_SIG120_IN_SEL (BIT(7)) +#define GPIO_SIG120_IN_SEL_M (GPIO_SIG120_IN_SEL_V << GPIO_SIG120_IN_SEL_S) +#define GPIO_SIG120_IN_SEL_V 0x00000001 +#define GPIO_SIG120_IN_SEL_S 7 + +/* GPIO_FUNC120_IN_INV_SEL : R/W; bitpos: [6]; default: 0; + * set this bit to invert input signal. 1:invert. 0:not invert. + */ + +#define GPIO_FUNC120_IN_INV_SEL (BIT(6)) +#define GPIO_FUNC120_IN_INV_SEL_M (GPIO_FUNC120_IN_INV_SEL_V << GPIO_FUNC120_IN_INV_SEL_S) +#define GPIO_FUNC120_IN_INV_SEL_V 0x00000001 +#define GPIO_FUNC120_IN_INV_SEL_S 6 + +/* GPIO_FUNC120_IN_SEL : R/W; bitpos: [5:0]; default: 0; + * set this value: s=0-53: connect GPIO[s] to this port. s=0x38: set this + * port always high level. s=0x3C: set this port always low level. + */ + +#define GPIO_FUNC120_IN_SEL 0x0000003f +#define GPIO_FUNC120_IN_SEL_M (GPIO_FUNC120_IN_SEL_V << GPIO_FUNC120_IN_SEL_S) +#define GPIO_FUNC120_IN_SEL_V 0x0000003f +#define GPIO_FUNC120_IN_SEL_S 0 + +/* GPIO_FUNC121_IN_SEL_CFG_REG register + * GPIO input function configuration register + */ + +#define GPIO_FUNC121_IN_SEL_CFG_REG (DR_REG_GPIO_BASE + 0x338) + +/* GPIO_SIG121_IN_SEL : R/W; bitpos: [7]; default: 0; + * set this bit to bypass GPIO. 1:do not bypass GPIO. 0:bypass GPIO. + */ + +#define GPIO_SIG121_IN_SEL (BIT(7)) +#define GPIO_SIG121_IN_SEL_M (GPIO_SIG121_IN_SEL_V << GPIO_SIG121_IN_SEL_S) +#define GPIO_SIG121_IN_SEL_V 0x00000001 +#define GPIO_SIG121_IN_SEL_S 7 + +/* GPIO_FUNC121_IN_INV_SEL : R/W; bitpos: [6]; default: 0; + * set this bit to invert input signal. 1:invert. 0:not invert. + */ + +#define GPIO_FUNC121_IN_INV_SEL (BIT(6)) +#define GPIO_FUNC121_IN_INV_SEL_M (GPIO_FUNC121_IN_INV_SEL_V << GPIO_FUNC121_IN_INV_SEL_S) +#define GPIO_FUNC121_IN_INV_SEL_V 0x00000001 +#define GPIO_FUNC121_IN_INV_SEL_S 6 + +/* GPIO_FUNC121_IN_SEL : R/W; bitpos: [5:0]; default: 0; + * set this value: s=0-53: connect GPIO[s] to this port. s=0x38: set this + * port always high level. s=0x3C: set this port always low level. + */ + +#define GPIO_FUNC121_IN_SEL 0x0000003f +#define GPIO_FUNC121_IN_SEL_M (GPIO_FUNC121_IN_SEL_V << GPIO_FUNC121_IN_SEL_S) +#define GPIO_FUNC121_IN_SEL_V 0x0000003f +#define GPIO_FUNC121_IN_SEL_S 0 + +/* GPIO_FUNC122_IN_SEL_CFG_REG register + * GPIO input function configuration register + */ + +#define GPIO_FUNC122_IN_SEL_CFG_REG (DR_REG_GPIO_BASE + 0x33c) + +/* GPIO_SIG122_IN_SEL : R/W; bitpos: [7]; default: 0; + * set this bit to bypass GPIO. 1:do not bypass GPIO. 0:bypass GPIO. + */ + +#define GPIO_SIG122_IN_SEL (BIT(7)) +#define GPIO_SIG122_IN_SEL_M (GPIO_SIG122_IN_SEL_V << GPIO_SIG122_IN_SEL_S) +#define GPIO_SIG122_IN_SEL_V 0x00000001 +#define GPIO_SIG122_IN_SEL_S 7 + +/* GPIO_FUNC122_IN_INV_SEL : R/W; bitpos: [6]; default: 0; + * set this bit to invert input signal. 1:invert. 0:not invert. + */ + +#define GPIO_FUNC122_IN_INV_SEL (BIT(6)) +#define GPIO_FUNC122_IN_INV_SEL_M (GPIO_FUNC122_IN_INV_SEL_V << GPIO_FUNC122_IN_INV_SEL_S) +#define GPIO_FUNC122_IN_INV_SEL_V 0x00000001 +#define GPIO_FUNC122_IN_INV_SEL_S 6 + +/* GPIO_FUNC122_IN_SEL : R/W; bitpos: [5:0]; default: 0; + * set this value: s=0-53: connect GPIO[s] to this port. s=0x38: set this + * port always high level. s=0x3C: set this port always low level. + */ + +#define GPIO_FUNC122_IN_SEL 0x0000003f +#define GPIO_FUNC122_IN_SEL_M (GPIO_FUNC122_IN_SEL_V << GPIO_FUNC122_IN_SEL_S) +#define GPIO_FUNC122_IN_SEL_V 0x0000003f +#define GPIO_FUNC122_IN_SEL_S 0 + +/* GPIO_FUNC123_IN_SEL_CFG_REG register + * GPIO input function configuration register + */ + +#define GPIO_FUNC123_IN_SEL_CFG_REG (DR_REG_GPIO_BASE + 0x340) + +/* GPIO_SIG123_IN_SEL : R/W; bitpos: [7]; default: 0; + * set this bit to bypass GPIO. 1:do not bypass GPIO. 0:bypass GPIO. + */ + +#define GPIO_SIG123_IN_SEL (BIT(7)) +#define GPIO_SIG123_IN_SEL_M (GPIO_SIG123_IN_SEL_V << GPIO_SIG123_IN_SEL_S) +#define GPIO_SIG123_IN_SEL_V 0x00000001 +#define GPIO_SIG123_IN_SEL_S 7 + +/* GPIO_FUNC123_IN_INV_SEL : R/W; bitpos: [6]; default: 0; + * set this bit to invert input signal. 1:invert. 0:not invert. + */ + +#define GPIO_FUNC123_IN_INV_SEL (BIT(6)) +#define GPIO_FUNC123_IN_INV_SEL_M (GPIO_FUNC123_IN_INV_SEL_V << GPIO_FUNC123_IN_INV_SEL_S) +#define GPIO_FUNC123_IN_INV_SEL_V 0x00000001 +#define GPIO_FUNC123_IN_INV_SEL_S 6 + +/* GPIO_FUNC123_IN_SEL : R/W; bitpos: [5:0]; default: 0; + * set this value: s=0-53: connect GPIO[s] to this port. s=0x38: set this + * port always high level. s=0x3C: set this port always low level. + */ + +#define GPIO_FUNC123_IN_SEL 0x0000003f +#define GPIO_FUNC123_IN_SEL_M (GPIO_FUNC123_IN_SEL_V << GPIO_FUNC123_IN_SEL_S) +#define GPIO_FUNC123_IN_SEL_V 0x0000003f +#define GPIO_FUNC123_IN_SEL_S 0 + +/* GPIO_FUNC124_IN_SEL_CFG_REG register + * GPIO input function configuration register + */ + +#define GPIO_FUNC124_IN_SEL_CFG_REG (DR_REG_GPIO_BASE + 0x344) + +/* GPIO_SIG124_IN_SEL : R/W; bitpos: [7]; default: 0; + * set this bit to bypass GPIO. 1:do not bypass GPIO. 0:bypass GPIO. + */ + +#define GPIO_SIG124_IN_SEL (BIT(7)) +#define GPIO_SIG124_IN_SEL_M (GPIO_SIG124_IN_SEL_V << GPIO_SIG124_IN_SEL_S) +#define GPIO_SIG124_IN_SEL_V 0x00000001 +#define GPIO_SIG124_IN_SEL_S 7 + +/* GPIO_FUNC124_IN_INV_SEL : R/W; bitpos: [6]; default: 0; + * set this bit to invert input signal. 1:invert. 0:not invert. + */ + +#define GPIO_FUNC124_IN_INV_SEL (BIT(6)) +#define GPIO_FUNC124_IN_INV_SEL_M (GPIO_FUNC124_IN_INV_SEL_V << GPIO_FUNC124_IN_INV_SEL_S) +#define GPIO_FUNC124_IN_INV_SEL_V 0x00000001 +#define GPIO_FUNC124_IN_INV_SEL_S 6 + +/* GPIO_FUNC124_IN_SEL : R/W; bitpos: [5:0]; default: 0; + * set this value: s=0-53: connect GPIO[s] to this port. s=0x38: set this + * port always high level. s=0x3C: set this port always low level. + */ + +#define GPIO_FUNC124_IN_SEL 0x0000003f +#define GPIO_FUNC124_IN_SEL_M (GPIO_FUNC124_IN_SEL_V << GPIO_FUNC124_IN_SEL_S) +#define GPIO_FUNC124_IN_SEL_V 0x0000003f +#define GPIO_FUNC124_IN_SEL_S 0 + +/* GPIO_FUNC125_IN_SEL_CFG_REG register + * GPIO input function configuration register + */ + +#define GPIO_FUNC125_IN_SEL_CFG_REG (DR_REG_GPIO_BASE + 0x348) + +/* GPIO_SIG125_IN_SEL : R/W; bitpos: [7]; default: 0; + * set this bit to bypass GPIO. 1:do not bypass GPIO. 0:bypass GPIO. + */ + +#define GPIO_SIG125_IN_SEL (BIT(7)) +#define GPIO_SIG125_IN_SEL_M (GPIO_SIG125_IN_SEL_V << GPIO_SIG125_IN_SEL_S) +#define GPIO_SIG125_IN_SEL_V 0x00000001 +#define GPIO_SIG125_IN_SEL_S 7 + +/* GPIO_FUNC125_IN_INV_SEL : R/W; bitpos: [6]; default: 0; + * set this bit to invert input signal. 1:invert. 0:not invert. + */ + +#define GPIO_FUNC125_IN_INV_SEL (BIT(6)) +#define GPIO_FUNC125_IN_INV_SEL_M (GPIO_FUNC125_IN_INV_SEL_V << GPIO_FUNC125_IN_INV_SEL_S) +#define GPIO_FUNC125_IN_INV_SEL_V 0x00000001 +#define GPIO_FUNC125_IN_INV_SEL_S 6 + +/* GPIO_FUNC125_IN_SEL : R/W; bitpos: [5:0]; default: 0; + * set this value: s=0-53: connect GPIO[s] to this port. s=0x38: set this + * port always high level. s=0x3C: set this port always low level. + */ + +#define GPIO_FUNC125_IN_SEL 0x0000003f +#define GPIO_FUNC125_IN_SEL_M (GPIO_FUNC125_IN_SEL_V << GPIO_FUNC125_IN_SEL_S) +#define GPIO_FUNC125_IN_SEL_V 0x0000003f +#define GPIO_FUNC125_IN_SEL_S 0 + +/* GPIO_FUNC126_IN_SEL_CFG_REG register + * GPIO input function configuration register + */ + +#define GPIO_FUNC126_IN_SEL_CFG_REG (DR_REG_GPIO_BASE + 0x34c) + +/* GPIO_SIG126_IN_SEL : R/W; bitpos: [7]; default: 0; + * set this bit to bypass GPIO. 1:do not bypass GPIO. 0:bypass GPIO. + */ + +#define GPIO_SIG126_IN_SEL (BIT(7)) +#define GPIO_SIG126_IN_SEL_M (GPIO_SIG126_IN_SEL_V << GPIO_SIG126_IN_SEL_S) +#define GPIO_SIG126_IN_SEL_V 0x00000001 +#define GPIO_SIG126_IN_SEL_S 7 + +/* GPIO_FUNC126_IN_INV_SEL : R/W; bitpos: [6]; default: 0; + * set this bit to invert input signal. 1:invert. 0:not invert. + */ + +#define GPIO_FUNC126_IN_INV_SEL (BIT(6)) +#define GPIO_FUNC126_IN_INV_SEL_M (GPIO_FUNC126_IN_INV_SEL_V << GPIO_FUNC126_IN_INV_SEL_S) +#define GPIO_FUNC126_IN_INV_SEL_V 0x00000001 +#define GPIO_FUNC126_IN_INV_SEL_S 6 + +/* GPIO_FUNC126_IN_SEL : R/W; bitpos: [5:0]; default: 0; + * set this value: s=0-53: connect GPIO[s] to this port. s=0x38: set this + * port always high level. s=0x3C: set this port always low level. + */ + +#define GPIO_FUNC126_IN_SEL 0x0000003f +#define GPIO_FUNC126_IN_SEL_M (GPIO_FUNC126_IN_SEL_V << GPIO_FUNC126_IN_SEL_S) +#define GPIO_FUNC126_IN_SEL_V 0x0000003f +#define GPIO_FUNC126_IN_SEL_S 0 + +/* GPIO_FUNC127_IN_SEL_CFG_REG register + * GPIO input function configuration register + */ + +#define GPIO_FUNC127_IN_SEL_CFG_REG (DR_REG_GPIO_BASE + 0x350) + +/* GPIO_SIG127_IN_SEL : R/W; bitpos: [7]; default: 0; + * set this bit to bypass GPIO. 1:do not bypass GPIO. 0:bypass GPIO. + */ + +#define GPIO_SIG127_IN_SEL (BIT(7)) +#define GPIO_SIG127_IN_SEL_M (GPIO_SIG127_IN_SEL_V << GPIO_SIG127_IN_SEL_S) +#define GPIO_SIG127_IN_SEL_V 0x00000001 +#define GPIO_SIG127_IN_SEL_S 7 + +/* GPIO_FUNC127_IN_INV_SEL : R/W; bitpos: [6]; default: 0; + * set this bit to invert input signal. 1:invert. 0:not invert. + */ + +#define GPIO_FUNC127_IN_INV_SEL (BIT(6)) +#define GPIO_FUNC127_IN_INV_SEL_M (GPIO_FUNC127_IN_INV_SEL_V << GPIO_FUNC127_IN_INV_SEL_S) +#define GPIO_FUNC127_IN_INV_SEL_V 0x00000001 +#define GPIO_FUNC127_IN_INV_SEL_S 6 + +/* GPIO_FUNC127_IN_SEL : R/W; bitpos: [5:0]; default: 0; + * set this value: s=0-53: connect GPIO[s] to this port. s=0x38: set this + * port always high level. s=0x3C: set this port always low level. + */ + +#define GPIO_FUNC127_IN_SEL 0x0000003f +#define GPIO_FUNC127_IN_SEL_M (GPIO_FUNC127_IN_SEL_V << GPIO_FUNC127_IN_SEL_S) +#define GPIO_FUNC127_IN_SEL_V 0x0000003f +#define GPIO_FUNC127_IN_SEL_S 0 + +/* GPIO_FUNC128_IN_SEL_CFG_REG register + * GPIO input function configuration register + */ + +#define GPIO_FUNC128_IN_SEL_CFG_REG (DR_REG_GPIO_BASE + 0x354) + +/* GPIO_SIG128_IN_SEL : R/W; bitpos: [7]; default: 0; + * set this bit to bypass GPIO. 1:do not bypass GPIO. 0:bypass GPIO. + */ + +#define GPIO_SIG128_IN_SEL (BIT(7)) +#define GPIO_SIG128_IN_SEL_M (GPIO_SIG128_IN_SEL_V << GPIO_SIG128_IN_SEL_S) +#define GPIO_SIG128_IN_SEL_V 0x00000001 +#define GPIO_SIG128_IN_SEL_S 7 + +/* GPIO_FUNC128_IN_INV_SEL : R/W; bitpos: [6]; default: 0; + * set this bit to invert input signal. 1:invert. 0:not invert. + */ + +#define GPIO_FUNC128_IN_INV_SEL (BIT(6)) +#define GPIO_FUNC128_IN_INV_SEL_M (GPIO_FUNC128_IN_INV_SEL_V << GPIO_FUNC128_IN_INV_SEL_S) +#define GPIO_FUNC128_IN_INV_SEL_V 0x00000001 +#define GPIO_FUNC128_IN_INV_SEL_S 6 + +/* GPIO_FUNC128_IN_SEL : R/W; bitpos: [5:0]; default: 0; + * set this value: s=0-53: connect GPIO[s] to this port. s=0x38: set this + * port always high level. s=0x3C: set this port always low level. + */ + +#define GPIO_FUNC128_IN_SEL 0x0000003f +#define GPIO_FUNC128_IN_SEL_M (GPIO_FUNC128_IN_SEL_V << GPIO_FUNC128_IN_SEL_S) +#define GPIO_FUNC128_IN_SEL_V 0x0000003f +#define GPIO_FUNC128_IN_SEL_S 0 + +/* GPIO_FUNC129_IN_SEL_CFG_REG register + * GPIO input function configuration register + */ + +#define GPIO_FUNC129_IN_SEL_CFG_REG (DR_REG_GPIO_BASE + 0x358) + +/* GPIO_SIG129_IN_SEL : R/W; bitpos: [7]; default: 0; + * set this bit to bypass GPIO. 1:do not bypass GPIO. 0:bypass GPIO. + */ + +#define GPIO_SIG129_IN_SEL (BIT(7)) +#define GPIO_SIG129_IN_SEL_M (GPIO_SIG129_IN_SEL_V << GPIO_SIG129_IN_SEL_S) +#define GPIO_SIG129_IN_SEL_V 0x00000001 +#define GPIO_SIG129_IN_SEL_S 7 + +/* GPIO_FUNC129_IN_INV_SEL : R/W; bitpos: [6]; default: 0; + * set this bit to invert input signal. 1:invert. 0:not invert. + */ + +#define GPIO_FUNC129_IN_INV_SEL (BIT(6)) +#define GPIO_FUNC129_IN_INV_SEL_M (GPIO_FUNC129_IN_INV_SEL_V << GPIO_FUNC129_IN_INV_SEL_S) +#define GPIO_FUNC129_IN_INV_SEL_V 0x00000001 +#define GPIO_FUNC129_IN_INV_SEL_S 6 + +/* GPIO_FUNC129_IN_SEL : R/W; bitpos: [5:0]; default: 0; + * set this value: s=0-53: connect GPIO[s] to this port. s=0x38: set this + * port always high level. s=0x3C: set this port always low level. + */ + +#define GPIO_FUNC129_IN_SEL 0x0000003f +#define GPIO_FUNC129_IN_SEL_M (GPIO_FUNC129_IN_SEL_V << GPIO_FUNC129_IN_SEL_S) +#define GPIO_FUNC129_IN_SEL_V 0x0000003f +#define GPIO_FUNC129_IN_SEL_S 0 + +/* GPIO_FUNC130_IN_SEL_CFG_REG register + * GPIO input function configuration register + */ + +#define GPIO_FUNC130_IN_SEL_CFG_REG (DR_REG_GPIO_BASE + 0x35c) + +/* GPIO_SIG130_IN_SEL : R/W; bitpos: [7]; default: 0; + * set this bit to bypass GPIO. 1:do not bypass GPIO. 0:bypass GPIO. + */ + +#define GPIO_SIG130_IN_SEL (BIT(7)) +#define GPIO_SIG130_IN_SEL_M (GPIO_SIG130_IN_SEL_V << GPIO_SIG130_IN_SEL_S) +#define GPIO_SIG130_IN_SEL_V 0x00000001 +#define GPIO_SIG130_IN_SEL_S 7 + +/* GPIO_FUNC130_IN_INV_SEL : R/W; bitpos: [6]; default: 0; + * set this bit to invert input signal. 1:invert. 0:not invert. + */ + +#define GPIO_FUNC130_IN_INV_SEL (BIT(6)) +#define GPIO_FUNC130_IN_INV_SEL_M (GPIO_FUNC130_IN_INV_SEL_V << GPIO_FUNC130_IN_INV_SEL_S) +#define GPIO_FUNC130_IN_INV_SEL_V 0x00000001 +#define GPIO_FUNC130_IN_INV_SEL_S 6 + +/* GPIO_FUNC130_IN_SEL : R/W; bitpos: [5:0]; default: 0; + * set this value: s=0-53: connect GPIO[s] to this port. s=0x38: set this + * port always high level. s=0x3C: set this port always low level. + */ + +#define GPIO_FUNC130_IN_SEL 0x0000003f +#define GPIO_FUNC130_IN_SEL_M (GPIO_FUNC130_IN_SEL_V << GPIO_FUNC130_IN_SEL_S) +#define GPIO_FUNC130_IN_SEL_V 0x0000003f +#define GPIO_FUNC130_IN_SEL_S 0 + +/* GPIO_FUNC131_IN_SEL_CFG_REG register + * GPIO input function configuration register + */ + +#define GPIO_FUNC131_IN_SEL_CFG_REG (DR_REG_GPIO_BASE + 0x360) + +/* GPIO_SIG131_IN_SEL : R/W; bitpos: [7]; default: 0; + * set this bit to bypass GPIO. 1:do not bypass GPIO. 0:bypass GPIO. + */ + +#define GPIO_SIG131_IN_SEL (BIT(7)) +#define GPIO_SIG131_IN_SEL_M (GPIO_SIG131_IN_SEL_V << GPIO_SIG131_IN_SEL_S) +#define GPIO_SIG131_IN_SEL_V 0x00000001 +#define GPIO_SIG131_IN_SEL_S 7 + +/* GPIO_FUNC131_IN_INV_SEL : R/W; bitpos: [6]; default: 0; + * set this bit to invert input signal. 1:invert. 0:not invert. + */ + +#define GPIO_FUNC131_IN_INV_SEL (BIT(6)) +#define GPIO_FUNC131_IN_INV_SEL_M (GPIO_FUNC131_IN_INV_SEL_V << GPIO_FUNC131_IN_INV_SEL_S) +#define GPIO_FUNC131_IN_INV_SEL_V 0x00000001 +#define GPIO_FUNC131_IN_INV_SEL_S 6 + +/* GPIO_FUNC131_IN_SEL : R/W; bitpos: [5:0]; default: 0; + * set this value: s=0-53: connect GPIO[s] to this port. s=0x38: set this + * port always high level. s=0x3C: set this port always low level. + */ + +#define GPIO_FUNC131_IN_SEL 0x0000003f +#define GPIO_FUNC131_IN_SEL_M (GPIO_FUNC131_IN_SEL_V << GPIO_FUNC131_IN_SEL_S) +#define GPIO_FUNC131_IN_SEL_V 0x0000003f +#define GPIO_FUNC131_IN_SEL_S 0 + +/* GPIO_FUNC132_IN_SEL_CFG_REG register + * GPIO input function configuration register + */ + +#define GPIO_FUNC132_IN_SEL_CFG_REG (DR_REG_GPIO_BASE + 0x364) + +/* GPIO_SIG132_IN_SEL : R/W; bitpos: [7]; default: 0; + * set this bit to bypass GPIO. 1:do not bypass GPIO. 0:bypass GPIO. + */ + +#define GPIO_SIG132_IN_SEL (BIT(7)) +#define GPIO_SIG132_IN_SEL_M (GPIO_SIG132_IN_SEL_V << GPIO_SIG132_IN_SEL_S) +#define GPIO_SIG132_IN_SEL_V 0x00000001 +#define GPIO_SIG132_IN_SEL_S 7 + +/* GPIO_FUNC132_IN_INV_SEL : R/W; bitpos: [6]; default: 0; + * set this bit to invert input signal. 1:invert. 0:not invert. + */ + +#define GPIO_FUNC132_IN_INV_SEL (BIT(6)) +#define GPIO_FUNC132_IN_INV_SEL_M (GPIO_FUNC132_IN_INV_SEL_V << GPIO_FUNC132_IN_INV_SEL_S) +#define GPIO_FUNC132_IN_INV_SEL_V 0x00000001 +#define GPIO_FUNC132_IN_INV_SEL_S 6 + +/* GPIO_FUNC132_IN_SEL : R/W; bitpos: [5:0]; default: 0; + * set this value: s=0-53: connect GPIO[s] to this port. s=0x38: set this + * port always high level. s=0x3C: set this port always low level. + */ + +#define GPIO_FUNC132_IN_SEL 0x0000003f +#define GPIO_FUNC132_IN_SEL_M (GPIO_FUNC132_IN_SEL_V << GPIO_FUNC132_IN_SEL_S) +#define GPIO_FUNC132_IN_SEL_V 0x0000003f +#define GPIO_FUNC132_IN_SEL_S 0 + +/* GPIO_FUNC133_IN_SEL_CFG_REG register + * GPIO input function configuration register + */ + +#define GPIO_FUNC133_IN_SEL_CFG_REG (DR_REG_GPIO_BASE + 0x368) + +/* GPIO_SIG133_IN_SEL : R/W; bitpos: [7]; default: 0; + * set this bit to bypass GPIO. 1:do not bypass GPIO. 0:bypass GPIO. + */ + +#define GPIO_SIG133_IN_SEL (BIT(7)) +#define GPIO_SIG133_IN_SEL_M (GPIO_SIG133_IN_SEL_V << GPIO_SIG133_IN_SEL_S) +#define GPIO_SIG133_IN_SEL_V 0x00000001 +#define GPIO_SIG133_IN_SEL_S 7 + +/* GPIO_FUNC133_IN_INV_SEL : R/W; bitpos: [6]; default: 0; + * set this bit to invert input signal. 1:invert. 0:not invert. + */ + +#define GPIO_FUNC133_IN_INV_SEL (BIT(6)) +#define GPIO_FUNC133_IN_INV_SEL_M (GPIO_FUNC133_IN_INV_SEL_V << GPIO_FUNC133_IN_INV_SEL_S) +#define GPIO_FUNC133_IN_INV_SEL_V 0x00000001 +#define GPIO_FUNC133_IN_INV_SEL_S 6 + +/* GPIO_FUNC133_IN_SEL : R/W; bitpos: [5:0]; default: 0; + * set this value: s=0-53: connect GPIO[s] to this port. s=0x38: set this + * port always high level. s=0x3C: set this port always low level. + */ + +#define GPIO_FUNC133_IN_SEL 0x0000003f +#define GPIO_FUNC133_IN_SEL_M (GPIO_FUNC133_IN_SEL_V << GPIO_FUNC133_IN_SEL_S) +#define GPIO_FUNC133_IN_SEL_V 0x0000003f +#define GPIO_FUNC133_IN_SEL_S 0 + +/* GPIO_FUNC134_IN_SEL_CFG_REG register + * GPIO input function configuration register + */ + +#define GPIO_FUNC134_IN_SEL_CFG_REG (DR_REG_GPIO_BASE + 0x36c) + +/* GPIO_SIG134_IN_SEL : R/W; bitpos: [7]; default: 0; + * set this bit to bypass GPIO. 1:do not bypass GPIO. 0:bypass GPIO. + */ + +#define GPIO_SIG134_IN_SEL (BIT(7)) +#define GPIO_SIG134_IN_SEL_M (GPIO_SIG134_IN_SEL_V << GPIO_SIG134_IN_SEL_S) +#define GPIO_SIG134_IN_SEL_V 0x00000001 +#define GPIO_SIG134_IN_SEL_S 7 + +/* GPIO_FUNC134_IN_INV_SEL : R/W; bitpos: [6]; default: 0; + * set this bit to invert input signal. 1:invert. 0:not invert. + */ + +#define GPIO_FUNC134_IN_INV_SEL (BIT(6)) +#define GPIO_FUNC134_IN_INV_SEL_M (GPIO_FUNC134_IN_INV_SEL_V << GPIO_FUNC134_IN_INV_SEL_S) +#define GPIO_FUNC134_IN_INV_SEL_V 0x00000001 +#define GPIO_FUNC134_IN_INV_SEL_S 6 + +/* GPIO_FUNC134_IN_SEL : R/W; bitpos: [5:0]; default: 0; + * set this value: s=0-53: connect GPIO[s] to this port. s=0x38: set this + * port always high level. s=0x3C: set this port always low level. + */ + +#define GPIO_FUNC134_IN_SEL 0x0000003f +#define GPIO_FUNC134_IN_SEL_M (GPIO_FUNC134_IN_SEL_V << GPIO_FUNC134_IN_SEL_S) +#define GPIO_FUNC134_IN_SEL_V 0x0000003f +#define GPIO_FUNC134_IN_SEL_S 0 + +/* GPIO_FUNC135_IN_SEL_CFG_REG register + * GPIO input function configuration register + */ + +#define GPIO_FUNC135_IN_SEL_CFG_REG (DR_REG_GPIO_BASE + 0x370) + +/* GPIO_SIG135_IN_SEL : R/W; bitpos: [7]; default: 0; + * set this bit to bypass GPIO. 1:do not bypass GPIO. 0:bypass GPIO. + */ + +#define GPIO_SIG135_IN_SEL (BIT(7)) +#define GPIO_SIG135_IN_SEL_M (GPIO_SIG135_IN_SEL_V << GPIO_SIG135_IN_SEL_S) +#define GPIO_SIG135_IN_SEL_V 0x00000001 +#define GPIO_SIG135_IN_SEL_S 7 + +/* GPIO_FUNC135_IN_INV_SEL : R/W; bitpos: [6]; default: 0; + * set this bit to invert input signal. 1:invert. 0:not invert. + */ + +#define GPIO_FUNC135_IN_INV_SEL (BIT(6)) +#define GPIO_FUNC135_IN_INV_SEL_M (GPIO_FUNC135_IN_INV_SEL_V << GPIO_FUNC135_IN_INV_SEL_S) +#define GPIO_FUNC135_IN_INV_SEL_V 0x00000001 +#define GPIO_FUNC135_IN_INV_SEL_S 6 + +/* GPIO_FUNC135_IN_SEL : R/W; bitpos: [5:0]; default: 0; + * set this value: s=0-53: connect GPIO[s] to this port. s=0x38: set this + * port always high level. s=0x3C: set this port always low level. + */ + +#define GPIO_FUNC135_IN_SEL 0x0000003f +#define GPIO_FUNC135_IN_SEL_M (GPIO_FUNC135_IN_SEL_V << GPIO_FUNC135_IN_SEL_S) +#define GPIO_FUNC135_IN_SEL_V 0x0000003f +#define GPIO_FUNC135_IN_SEL_S 0 + +/* GPIO_FUNC136_IN_SEL_CFG_REG register + * GPIO input function configuration register + */ + +#define GPIO_FUNC136_IN_SEL_CFG_REG (DR_REG_GPIO_BASE + 0x374) + +/* GPIO_SIG136_IN_SEL : R/W; bitpos: [7]; default: 0; + * set this bit to bypass GPIO. 1:do not bypass GPIO. 0:bypass GPIO. + */ + +#define GPIO_SIG136_IN_SEL (BIT(7)) +#define GPIO_SIG136_IN_SEL_M (GPIO_SIG136_IN_SEL_V << GPIO_SIG136_IN_SEL_S) +#define GPIO_SIG136_IN_SEL_V 0x00000001 +#define GPIO_SIG136_IN_SEL_S 7 + +/* GPIO_FUNC136_IN_INV_SEL : R/W; bitpos: [6]; default: 0; + * set this bit to invert input signal. 1:invert. 0:not invert. + */ + +#define GPIO_FUNC136_IN_INV_SEL (BIT(6)) +#define GPIO_FUNC136_IN_INV_SEL_M (GPIO_FUNC136_IN_INV_SEL_V << GPIO_FUNC136_IN_INV_SEL_S) +#define GPIO_FUNC136_IN_INV_SEL_V 0x00000001 +#define GPIO_FUNC136_IN_INV_SEL_S 6 + +/* GPIO_FUNC136_IN_SEL : R/W; bitpos: [5:0]; default: 0; + * set this value: s=0-53: connect GPIO[s] to this port. s=0x38: set this + * port always high level. s=0x3C: set this port always low level. + */ + +#define GPIO_FUNC136_IN_SEL 0x0000003f +#define GPIO_FUNC136_IN_SEL_M (GPIO_FUNC136_IN_SEL_V << GPIO_FUNC136_IN_SEL_S) +#define GPIO_FUNC136_IN_SEL_V 0x0000003f +#define GPIO_FUNC136_IN_SEL_S 0 + +/* GPIO_FUNC137_IN_SEL_CFG_REG register + * GPIO input function configuration register + */ + +#define GPIO_FUNC137_IN_SEL_CFG_REG (DR_REG_GPIO_BASE + 0x378) + +/* GPIO_SIG137_IN_SEL : R/W; bitpos: [7]; default: 0; + * set this bit to bypass GPIO. 1:do not bypass GPIO. 0:bypass GPIO. + */ + +#define GPIO_SIG137_IN_SEL (BIT(7)) +#define GPIO_SIG137_IN_SEL_M (GPIO_SIG137_IN_SEL_V << GPIO_SIG137_IN_SEL_S) +#define GPIO_SIG137_IN_SEL_V 0x00000001 +#define GPIO_SIG137_IN_SEL_S 7 + +/* GPIO_FUNC137_IN_INV_SEL : R/W; bitpos: [6]; default: 0; + * set this bit to invert input signal. 1:invert. 0:not invert. + */ + +#define GPIO_FUNC137_IN_INV_SEL (BIT(6)) +#define GPIO_FUNC137_IN_INV_SEL_M (GPIO_FUNC137_IN_INV_SEL_V << GPIO_FUNC137_IN_INV_SEL_S) +#define GPIO_FUNC137_IN_INV_SEL_V 0x00000001 +#define GPIO_FUNC137_IN_INV_SEL_S 6 + +/* GPIO_FUNC137_IN_SEL : R/W; bitpos: [5:0]; default: 0; + * set this value: s=0-53: connect GPIO[s] to this port. s=0x38: set this + * port always high level. s=0x3C: set this port always low level. + */ + +#define GPIO_FUNC137_IN_SEL 0x0000003f +#define GPIO_FUNC137_IN_SEL_M (GPIO_FUNC137_IN_SEL_V << GPIO_FUNC137_IN_SEL_S) +#define GPIO_FUNC137_IN_SEL_V 0x0000003f +#define GPIO_FUNC137_IN_SEL_S 0 + +/* GPIO_FUNC138_IN_SEL_CFG_REG register + * GPIO input function configuration register + */ + +#define GPIO_FUNC138_IN_SEL_CFG_REG (DR_REG_GPIO_BASE + 0x37c) + +/* GPIO_SIG138_IN_SEL : R/W; bitpos: [7]; default: 0; + * set this bit to bypass GPIO. 1:do not bypass GPIO. 0:bypass GPIO. + */ + +#define GPIO_SIG138_IN_SEL (BIT(7)) +#define GPIO_SIG138_IN_SEL_M (GPIO_SIG138_IN_SEL_V << GPIO_SIG138_IN_SEL_S) +#define GPIO_SIG138_IN_SEL_V 0x00000001 +#define GPIO_SIG138_IN_SEL_S 7 + +/* GPIO_FUNC138_IN_INV_SEL : R/W; bitpos: [6]; default: 0; + * set this bit to invert input signal. 1:invert. 0:not invert. + */ + +#define GPIO_FUNC138_IN_INV_SEL (BIT(6)) +#define GPIO_FUNC138_IN_INV_SEL_M (GPIO_FUNC138_IN_INV_SEL_V << GPIO_FUNC138_IN_INV_SEL_S) +#define GPIO_FUNC138_IN_INV_SEL_V 0x00000001 +#define GPIO_FUNC138_IN_INV_SEL_S 6 + +/* GPIO_FUNC138_IN_SEL : R/W; bitpos: [5:0]; default: 0; + * set this value: s=0-53: connect GPIO[s] to this port. s=0x38: set this + * port always high level. s=0x3C: set this port always low level. + */ + +#define GPIO_FUNC138_IN_SEL 0x0000003f +#define GPIO_FUNC138_IN_SEL_M (GPIO_FUNC138_IN_SEL_V << GPIO_FUNC138_IN_SEL_S) +#define GPIO_FUNC138_IN_SEL_V 0x0000003f +#define GPIO_FUNC138_IN_SEL_S 0 + +/* GPIO_FUNC139_IN_SEL_CFG_REG register + * GPIO input function configuration register + */ + +#define GPIO_FUNC139_IN_SEL_CFG_REG (DR_REG_GPIO_BASE + 0x380) + +/* GPIO_SIG139_IN_SEL : R/W; bitpos: [7]; default: 0; + * set this bit to bypass GPIO. 1:do not bypass GPIO. 0:bypass GPIO. + */ + +#define GPIO_SIG139_IN_SEL (BIT(7)) +#define GPIO_SIG139_IN_SEL_M (GPIO_SIG139_IN_SEL_V << GPIO_SIG139_IN_SEL_S) +#define GPIO_SIG139_IN_SEL_V 0x00000001 +#define GPIO_SIG139_IN_SEL_S 7 + +/* GPIO_FUNC139_IN_INV_SEL : R/W; bitpos: [6]; default: 0; + * set this bit to invert input signal. 1:invert. 0:not invert. + */ + +#define GPIO_FUNC139_IN_INV_SEL (BIT(6)) +#define GPIO_FUNC139_IN_INV_SEL_M (GPIO_FUNC139_IN_INV_SEL_V << GPIO_FUNC139_IN_INV_SEL_S) +#define GPIO_FUNC139_IN_INV_SEL_V 0x00000001 +#define GPIO_FUNC139_IN_INV_SEL_S 6 + +/* GPIO_FUNC139_IN_SEL : R/W; bitpos: [5:0]; default: 0; + * set this value: s=0-53: connect GPIO[s] to this port. s=0x38: set this + * port always high level. s=0x3C: set this port always low level. + */ + +#define GPIO_FUNC139_IN_SEL 0x0000003f +#define GPIO_FUNC139_IN_SEL_M (GPIO_FUNC139_IN_SEL_V << GPIO_FUNC139_IN_SEL_S) +#define GPIO_FUNC139_IN_SEL_V 0x0000003f +#define GPIO_FUNC139_IN_SEL_S 0 + +/* GPIO_FUNC140_IN_SEL_CFG_REG register + * GPIO input function configuration register + */ + +#define GPIO_FUNC140_IN_SEL_CFG_REG (DR_REG_GPIO_BASE + 0x384) + +/* GPIO_SIG140_IN_SEL : R/W; bitpos: [7]; default: 0; + * set this bit to bypass GPIO. 1:do not bypass GPIO. 0:bypass GPIO. + */ + +#define GPIO_SIG140_IN_SEL (BIT(7)) +#define GPIO_SIG140_IN_SEL_M (GPIO_SIG140_IN_SEL_V << GPIO_SIG140_IN_SEL_S) +#define GPIO_SIG140_IN_SEL_V 0x00000001 +#define GPIO_SIG140_IN_SEL_S 7 + +/* GPIO_FUNC140_IN_INV_SEL : R/W; bitpos: [6]; default: 0; + * set this bit to invert input signal. 1:invert. 0:not invert. + */ + +#define GPIO_FUNC140_IN_INV_SEL (BIT(6)) +#define GPIO_FUNC140_IN_INV_SEL_M (GPIO_FUNC140_IN_INV_SEL_V << GPIO_FUNC140_IN_INV_SEL_S) +#define GPIO_FUNC140_IN_INV_SEL_V 0x00000001 +#define GPIO_FUNC140_IN_INV_SEL_S 6 + +/* GPIO_FUNC140_IN_SEL : R/W; bitpos: [5:0]; default: 0; + * set this value: s=0-53: connect GPIO[s] to this port. s=0x38: set this + * port always high level. s=0x3C: set this port always low level. + */ + +#define GPIO_FUNC140_IN_SEL 0x0000003f +#define GPIO_FUNC140_IN_SEL_M (GPIO_FUNC140_IN_SEL_V << GPIO_FUNC140_IN_SEL_S) +#define GPIO_FUNC140_IN_SEL_V 0x0000003f +#define GPIO_FUNC140_IN_SEL_S 0 + +/* GPIO_FUNC141_IN_SEL_CFG_REG register + * GPIO input function configuration register + */ + +#define GPIO_FUNC141_IN_SEL_CFG_REG (DR_REG_GPIO_BASE + 0x388) + +/* GPIO_SIG141_IN_SEL : R/W; bitpos: [7]; default: 0; + * set this bit to bypass GPIO. 1:do not bypass GPIO. 0:bypass GPIO. + */ + +#define GPIO_SIG141_IN_SEL (BIT(7)) +#define GPIO_SIG141_IN_SEL_M (GPIO_SIG141_IN_SEL_V << GPIO_SIG141_IN_SEL_S) +#define GPIO_SIG141_IN_SEL_V 0x00000001 +#define GPIO_SIG141_IN_SEL_S 7 + +/* GPIO_FUNC141_IN_INV_SEL : R/W; bitpos: [6]; default: 0; + * set this bit to invert input signal. 1:invert. 0:not invert. + */ + +#define GPIO_FUNC141_IN_INV_SEL (BIT(6)) +#define GPIO_FUNC141_IN_INV_SEL_M (GPIO_FUNC141_IN_INV_SEL_V << GPIO_FUNC141_IN_INV_SEL_S) +#define GPIO_FUNC141_IN_INV_SEL_V 0x00000001 +#define GPIO_FUNC141_IN_INV_SEL_S 6 + +/* GPIO_FUNC141_IN_SEL : R/W; bitpos: [5:0]; default: 0; + * set this value: s=0-53: connect GPIO[s] to this port. s=0x38: set this + * port always high level. s=0x3C: set this port always low level. + */ + +#define GPIO_FUNC141_IN_SEL 0x0000003f +#define GPIO_FUNC141_IN_SEL_M (GPIO_FUNC141_IN_SEL_V << GPIO_FUNC141_IN_SEL_S) +#define GPIO_FUNC141_IN_SEL_V 0x0000003f +#define GPIO_FUNC141_IN_SEL_S 0 + +/* GPIO_FUNC142_IN_SEL_CFG_REG register + * GPIO input function configuration register + */ + +#define GPIO_FUNC142_IN_SEL_CFG_REG (DR_REG_GPIO_BASE + 0x38c) + +/* GPIO_SIG142_IN_SEL : R/W; bitpos: [7]; default: 0; + * set this bit to bypass GPIO. 1:do not bypass GPIO. 0:bypass GPIO. + */ + +#define GPIO_SIG142_IN_SEL (BIT(7)) +#define GPIO_SIG142_IN_SEL_M (GPIO_SIG142_IN_SEL_V << GPIO_SIG142_IN_SEL_S) +#define GPIO_SIG142_IN_SEL_V 0x00000001 +#define GPIO_SIG142_IN_SEL_S 7 + +/* GPIO_FUNC142_IN_INV_SEL : R/W; bitpos: [6]; default: 0; + * set this bit to invert input signal. 1:invert. 0:not invert. + */ + +#define GPIO_FUNC142_IN_INV_SEL (BIT(6)) +#define GPIO_FUNC142_IN_INV_SEL_M (GPIO_FUNC142_IN_INV_SEL_V << GPIO_FUNC142_IN_INV_SEL_S) +#define GPIO_FUNC142_IN_INV_SEL_V 0x00000001 +#define GPIO_FUNC142_IN_INV_SEL_S 6 + +/* GPIO_FUNC142_IN_SEL : R/W; bitpos: [5:0]; default: 0; + * set this value: s=0-53: connect GPIO[s] to this port. s=0x38: set this + * port always high level. s=0x3C: set this port always low level. + */ + +#define GPIO_FUNC142_IN_SEL 0x0000003f +#define GPIO_FUNC142_IN_SEL_M (GPIO_FUNC142_IN_SEL_V << GPIO_FUNC142_IN_SEL_S) +#define GPIO_FUNC142_IN_SEL_V 0x0000003f +#define GPIO_FUNC142_IN_SEL_S 0 + +/* GPIO_FUNC143_IN_SEL_CFG_REG register + * GPIO input function configuration register + */ + +#define GPIO_FUNC143_IN_SEL_CFG_REG (DR_REG_GPIO_BASE + 0x390) + +/* GPIO_SIG143_IN_SEL : R/W; bitpos: [7]; default: 0; + * set this bit to bypass GPIO. 1:do not bypass GPIO. 0:bypass GPIO. + */ + +#define GPIO_SIG143_IN_SEL (BIT(7)) +#define GPIO_SIG143_IN_SEL_M (GPIO_SIG143_IN_SEL_V << GPIO_SIG143_IN_SEL_S) +#define GPIO_SIG143_IN_SEL_V 0x00000001 +#define GPIO_SIG143_IN_SEL_S 7 + +/* GPIO_FUNC143_IN_INV_SEL : R/W; bitpos: [6]; default: 0; + * set this bit to invert input signal. 1:invert. 0:not invert. + */ + +#define GPIO_FUNC143_IN_INV_SEL (BIT(6)) +#define GPIO_FUNC143_IN_INV_SEL_M (GPIO_FUNC143_IN_INV_SEL_V << GPIO_FUNC143_IN_INV_SEL_S) +#define GPIO_FUNC143_IN_INV_SEL_V 0x00000001 +#define GPIO_FUNC143_IN_INV_SEL_S 6 + +/* GPIO_FUNC143_IN_SEL : R/W; bitpos: [5:0]; default: 0; + * set this value: s=0-53: connect GPIO[s] to this port. s=0x38: set this + * port always high level. s=0x3C: set this port always low level. + */ + +#define GPIO_FUNC143_IN_SEL 0x0000003f +#define GPIO_FUNC143_IN_SEL_M (GPIO_FUNC143_IN_SEL_V << GPIO_FUNC143_IN_SEL_S) +#define GPIO_FUNC143_IN_SEL_V 0x0000003f +#define GPIO_FUNC143_IN_SEL_S 0 + +/* GPIO_FUNC144_IN_SEL_CFG_REG register + * GPIO input function configuration register + */ + +#define GPIO_FUNC144_IN_SEL_CFG_REG (DR_REG_GPIO_BASE + 0x394) + +/* GPIO_SIG144_IN_SEL : R/W; bitpos: [7]; default: 0; + * set this bit to bypass GPIO. 1:do not bypass GPIO. 0:bypass GPIO. + */ + +#define GPIO_SIG144_IN_SEL (BIT(7)) +#define GPIO_SIG144_IN_SEL_M (GPIO_SIG144_IN_SEL_V << GPIO_SIG144_IN_SEL_S) +#define GPIO_SIG144_IN_SEL_V 0x00000001 +#define GPIO_SIG144_IN_SEL_S 7 + +/* GPIO_FUNC144_IN_INV_SEL : R/W; bitpos: [6]; default: 0; + * set this bit to invert input signal. 1:invert. 0:not invert. + */ + +#define GPIO_FUNC144_IN_INV_SEL (BIT(6)) +#define GPIO_FUNC144_IN_INV_SEL_M (GPIO_FUNC144_IN_INV_SEL_V << GPIO_FUNC144_IN_INV_SEL_S) +#define GPIO_FUNC144_IN_INV_SEL_V 0x00000001 +#define GPIO_FUNC144_IN_INV_SEL_S 6 + +/* GPIO_FUNC144_IN_SEL : R/W; bitpos: [5:0]; default: 0; + * set this value: s=0-53: connect GPIO[s] to this port. s=0x38: set this + * port always high level. s=0x3C: set this port always low level. + */ + +#define GPIO_FUNC144_IN_SEL 0x0000003f +#define GPIO_FUNC144_IN_SEL_M (GPIO_FUNC144_IN_SEL_V << GPIO_FUNC144_IN_SEL_S) +#define GPIO_FUNC144_IN_SEL_V 0x0000003f +#define GPIO_FUNC144_IN_SEL_S 0 + +/* GPIO_FUNC145_IN_SEL_CFG_REG register + * GPIO input function configuration register + */ + +#define GPIO_FUNC145_IN_SEL_CFG_REG (DR_REG_GPIO_BASE + 0x398) + +/* GPIO_SIG145_IN_SEL : R/W; bitpos: [7]; default: 0; + * set this bit to bypass GPIO. 1:do not bypass GPIO. 0:bypass GPIO. + */ + +#define GPIO_SIG145_IN_SEL (BIT(7)) +#define GPIO_SIG145_IN_SEL_M (GPIO_SIG145_IN_SEL_V << GPIO_SIG145_IN_SEL_S) +#define GPIO_SIG145_IN_SEL_V 0x00000001 +#define GPIO_SIG145_IN_SEL_S 7 + +/* GPIO_FUNC145_IN_INV_SEL : R/W; bitpos: [6]; default: 0; + * set this bit to invert input signal. 1:invert. 0:not invert. + */ + +#define GPIO_FUNC145_IN_INV_SEL (BIT(6)) +#define GPIO_FUNC145_IN_INV_SEL_M (GPIO_FUNC145_IN_INV_SEL_V << GPIO_FUNC145_IN_INV_SEL_S) +#define GPIO_FUNC145_IN_INV_SEL_V 0x00000001 +#define GPIO_FUNC145_IN_INV_SEL_S 6 + +/* GPIO_FUNC145_IN_SEL : R/W; bitpos: [5:0]; default: 0; + * set this value: s=0-53: connect GPIO[s] to this port. s=0x38: set this + * port always high level. s=0x3C: set this port always low level. + */ + +#define GPIO_FUNC145_IN_SEL 0x0000003f +#define GPIO_FUNC145_IN_SEL_M (GPIO_FUNC145_IN_SEL_V << GPIO_FUNC145_IN_SEL_S) +#define GPIO_FUNC145_IN_SEL_V 0x0000003f +#define GPIO_FUNC145_IN_SEL_S 0 + +/* GPIO_FUNC146_IN_SEL_CFG_REG register + * GPIO input function configuration register + */ + +#define GPIO_FUNC146_IN_SEL_CFG_REG (DR_REG_GPIO_BASE + 0x39c) + +/* GPIO_SIG146_IN_SEL : R/W; bitpos: [7]; default: 0; + * set this bit to bypass GPIO. 1:do not bypass GPIO. 0:bypass GPIO. + */ + +#define GPIO_SIG146_IN_SEL (BIT(7)) +#define GPIO_SIG146_IN_SEL_M (GPIO_SIG146_IN_SEL_V << GPIO_SIG146_IN_SEL_S) +#define GPIO_SIG146_IN_SEL_V 0x00000001 +#define GPIO_SIG146_IN_SEL_S 7 + +/* GPIO_FUNC146_IN_INV_SEL : R/W; bitpos: [6]; default: 0; + * set this bit to invert input signal. 1:invert. 0:not invert. + */ + +#define GPIO_FUNC146_IN_INV_SEL (BIT(6)) +#define GPIO_FUNC146_IN_INV_SEL_M (GPIO_FUNC146_IN_INV_SEL_V << GPIO_FUNC146_IN_INV_SEL_S) +#define GPIO_FUNC146_IN_INV_SEL_V 0x00000001 +#define GPIO_FUNC146_IN_INV_SEL_S 6 + +/* GPIO_FUNC146_IN_SEL : R/W; bitpos: [5:0]; default: 0; + * set this value: s=0-53: connect GPIO[s] to this port. s=0x38: set this + * port always high level. s=0x3C: set this port always low level. + */ + +#define GPIO_FUNC146_IN_SEL 0x0000003f +#define GPIO_FUNC146_IN_SEL_M (GPIO_FUNC146_IN_SEL_V << GPIO_FUNC146_IN_SEL_S) +#define GPIO_FUNC146_IN_SEL_V 0x0000003f +#define GPIO_FUNC146_IN_SEL_S 0 + +/* GPIO_FUNC147_IN_SEL_CFG_REG register + * GPIO input function configuration register + */ + +#define GPIO_FUNC147_IN_SEL_CFG_REG (DR_REG_GPIO_BASE + 0x3a0) + +/* GPIO_SIG147_IN_SEL : R/W; bitpos: [7]; default: 0; + * set this bit to bypass GPIO. 1:do not bypass GPIO. 0:bypass GPIO. + */ + +#define GPIO_SIG147_IN_SEL (BIT(7)) +#define GPIO_SIG147_IN_SEL_M (GPIO_SIG147_IN_SEL_V << GPIO_SIG147_IN_SEL_S) +#define GPIO_SIG147_IN_SEL_V 0x00000001 +#define GPIO_SIG147_IN_SEL_S 7 + +/* GPIO_FUNC147_IN_INV_SEL : R/W; bitpos: [6]; default: 0; + * set this bit to invert input signal. 1:invert. 0:not invert. + */ + +#define GPIO_FUNC147_IN_INV_SEL (BIT(6)) +#define GPIO_FUNC147_IN_INV_SEL_M (GPIO_FUNC147_IN_INV_SEL_V << GPIO_FUNC147_IN_INV_SEL_S) +#define GPIO_FUNC147_IN_INV_SEL_V 0x00000001 +#define GPIO_FUNC147_IN_INV_SEL_S 6 + +/* GPIO_FUNC147_IN_SEL : R/W; bitpos: [5:0]; default: 0; + * set this value: s=0-53: connect GPIO[s] to this port. s=0x38: set this + * port always high level. s=0x3C: set this port always low level. + */ + +#define GPIO_FUNC147_IN_SEL 0x0000003f +#define GPIO_FUNC147_IN_SEL_M (GPIO_FUNC147_IN_SEL_V << GPIO_FUNC147_IN_SEL_S) +#define GPIO_FUNC147_IN_SEL_V 0x0000003f +#define GPIO_FUNC147_IN_SEL_S 0 + +/* GPIO_FUNC148_IN_SEL_CFG_REG register + * GPIO input function configuration register + */ + +#define GPIO_FUNC148_IN_SEL_CFG_REG (DR_REG_GPIO_BASE + 0x3a4) + +/* GPIO_SIG148_IN_SEL : R/W; bitpos: [7]; default: 0; + * set this bit to bypass GPIO. 1:do not bypass GPIO. 0:bypass GPIO. + */ + +#define GPIO_SIG148_IN_SEL (BIT(7)) +#define GPIO_SIG148_IN_SEL_M (GPIO_SIG148_IN_SEL_V << GPIO_SIG148_IN_SEL_S) +#define GPIO_SIG148_IN_SEL_V 0x00000001 +#define GPIO_SIG148_IN_SEL_S 7 + +/* GPIO_FUNC148_IN_INV_SEL : R/W; bitpos: [6]; default: 0; + * set this bit to invert input signal. 1:invert. 0:not invert. + */ + +#define GPIO_FUNC148_IN_INV_SEL (BIT(6)) +#define GPIO_FUNC148_IN_INV_SEL_M (GPIO_FUNC148_IN_INV_SEL_V << GPIO_FUNC148_IN_INV_SEL_S) +#define GPIO_FUNC148_IN_INV_SEL_V 0x00000001 +#define GPIO_FUNC148_IN_INV_SEL_S 6 + +/* GPIO_FUNC148_IN_SEL : R/W; bitpos: [5:0]; default: 0; + * set this value: s=0-53: connect GPIO[s] to this port. s=0x38: set this + * port always high level. s=0x3C: set this port always low level. + */ + +#define GPIO_FUNC148_IN_SEL 0x0000003f +#define GPIO_FUNC148_IN_SEL_M (GPIO_FUNC148_IN_SEL_V << GPIO_FUNC148_IN_SEL_S) +#define GPIO_FUNC148_IN_SEL_V 0x0000003f +#define GPIO_FUNC148_IN_SEL_S 0 + +/* GPIO_FUNC149_IN_SEL_CFG_REG register + * GPIO input function configuration register + */ + +#define GPIO_FUNC149_IN_SEL_CFG_REG (DR_REG_GPIO_BASE + 0x3a8) + +/* GPIO_SIG149_IN_SEL : R/W; bitpos: [7]; default: 0; + * set this bit to bypass GPIO. 1:do not bypass GPIO. 0:bypass GPIO. + */ + +#define GPIO_SIG149_IN_SEL (BIT(7)) +#define GPIO_SIG149_IN_SEL_M (GPIO_SIG149_IN_SEL_V << GPIO_SIG149_IN_SEL_S) +#define GPIO_SIG149_IN_SEL_V 0x00000001 +#define GPIO_SIG149_IN_SEL_S 7 + +/* GPIO_FUNC149_IN_INV_SEL : R/W; bitpos: [6]; default: 0; + * set this bit to invert input signal. 1:invert. 0:not invert. + */ + +#define GPIO_FUNC149_IN_INV_SEL (BIT(6)) +#define GPIO_FUNC149_IN_INV_SEL_M (GPIO_FUNC149_IN_INV_SEL_V << GPIO_FUNC149_IN_INV_SEL_S) +#define GPIO_FUNC149_IN_INV_SEL_V 0x00000001 +#define GPIO_FUNC149_IN_INV_SEL_S 6 + +/* GPIO_FUNC149_IN_SEL : R/W; bitpos: [5:0]; default: 0; + * set this value: s=0-53: connect GPIO[s] to this port. s=0x38: set this + * port always high level. s=0x3C: set this port always low level. + */ + +#define GPIO_FUNC149_IN_SEL 0x0000003f +#define GPIO_FUNC149_IN_SEL_M (GPIO_FUNC149_IN_SEL_V << GPIO_FUNC149_IN_SEL_S) +#define GPIO_FUNC149_IN_SEL_V 0x0000003f +#define GPIO_FUNC149_IN_SEL_S 0 + +/* GPIO_FUNC150_IN_SEL_CFG_REG register + * GPIO input function configuration register + */ + +#define GPIO_FUNC150_IN_SEL_CFG_REG (DR_REG_GPIO_BASE + 0x3ac) + +/* GPIO_SIG150_IN_SEL : R/W; bitpos: [7]; default: 0; + * set this bit to bypass GPIO. 1:do not bypass GPIO. 0:bypass GPIO. + */ + +#define GPIO_SIG150_IN_SEL (BIT(7)) +#define GPIO_SIG150_IN_SEL_M (GPIO_SIG150_IN_SEL_V << GPIO_SIG150_IN_SEL_S) +#define GPIO_SIG150_IN_SEL_V 0x00000001 +#define GPIO_SIG150_IN_SEL_S 7 + +/* GPIO_FUNC150_IN_INV_SEL : R/W; bitpos: [6]; default: 0; + * set this bit to invert input signal. 1:invert. 0:not invert. + */ + +#define GPIO_FUNC150_IN_INV_SEL (BIT(6)) +#define GPIO_FUNC150_IN_INV_SEL_M (GPIO_FUNC150_IN_INV_SEL_V << GPIO_FUNC150_IN_INV_SEL_S) +#define GPIO_FUNC150_IN_INV_SEL_V 0x00000001 +#define GPIO_FUNC150_IN_INV_SEL_S 6 + +/* GPIO_FUNC150_IN_SEL : R/W; bitpos: [5:0]; default: 0; + * set this value: s=0-53: connect GPIO[s] to this port. s=0x38: set this + * port always high level. s=0x3C: set this port always low level. + */ + +#define GPIO_FUNC150_IN_SEL 0x0000003f +#define GPIO_FUNC150_IN_SEL_M (GPIO_FUNC150_IN_SEL_V << GPIO_FUNC150_IN_SEL_S) +#define GPIO_FUNC150_IN_SEL_V 0x0000003f +#define GPIO_FUNC150_IN_SEL_S 0 + +/* GPIO_FUNC151_IN_SEL_CFG_REG register + * GPIO input function configuration register + */ + +#define GPIO_FUNC151_IN_SEL_CFG_REG (DR_REG_GPIO_BASE + 0x3b0) + +/* GPIO_SIG151_IN_SEL : R/W; bitpos: [7]; default: 0; + * set this bit to bypass GPIO. 1:do not bypass GPIO. 0:bypass GPIO. + */ + +#define GPIO_SIG151_IN_SEL (BIT(7)) +#define GPIO_SIG151_IN_SEL_M (GPIO_SIG151_IN_SEL_V << GPIO_SIG151_IN_SEL_S) +#define GPIO_SIG151_IN_SEL_V 0x00000001 +#define GPIO_SIG151_IN_SEL_S 7 + +/* GPIO_FUNC151_IN_INV_SEL : R/W; bitpos: [6]; default: 0; + * set this bit to invert input signal. 1:invert. 0:not invert. + */ + +#define GPIO_FUNC151_IN_INV_SEL (BIT(6)) +#define GPIO_FUNC151_IN_INV_SEL_M (GPIO_FUNC151_IN_INV_SEL_V << GPIO_FUNC151_IN_INV_SEL_S) +#define GPIO_FUNC151_IN_INV_SEL_V 0x00000001 +#define GPIO_FUNC151_IN_INV_SEL_S 6 + +/* GPIO_FUNC151_IN_SEL : R/W; bitpos: [5:0]; default: 0; + * set this value: s=0-53: connect GPIO[s] to this port. s=0x38: set this + * port always high level. s=0x3C: set this port always low level. + */ + +#define GPIO_FUNC151_IN_SEL 0x0000003f +#define GPIO_FUNC151_IN_SEL_M (GPIO_FUNC151_IN_SEL_V << GPIO_FUNC151_IN_SEL_S) +#define GPIO_FUNC151_IN_SEL_V 0x0000003f +#define GPIO_FUNC151_IN_SEL_S 0 + +/* GPIO_FUNC152_IN_SEL_CFG_REG register + * GPIO input function configuration register + */ + +#define GPIO_FUNC152_IN_SEL_CFG_REG (DR_REG_GPIO_BASE + 0x3b4) + +/* GPIO_SIG152_IN_SEL : R/W; bitpos: [7]; default: 0; + * set this bit to bypass GPIO. 1:do not bypass GPIO. 0:bypass GPIO. + */ + +#define GPIO_SIG152_IN_SEL (BIT(7)) +#define GPIO_SIG152_IN_SEL_M (GPIO_SIG152_IN_SEL_V << GPIO_SIG152_IN_SEL_S) +#define GPIO_SIG152_IN_SEL_V 0x00000001 +#define GPIO_SIG152_IN_SEL_S 7 + +/* GPIO_FUNC152_IN_INV_SEL : R/W; bitpos: [6]; default: 0; + * set this bit to invert input signal. 1:invert. 0:not invert. + */ + +#define GPIO_FUNC152_IN_INV_SEL (BIT(6)) +#define GPIO_FUNC152_IN_INV_SEL_M (GPIO_FUNC152_IN_INV_SEL_V << GPIO_FUNC152_IN_INV_SEL_S) +#define GPIO_FUNC152_IN_INV_SEL_V 0x00000001 +#define GPIO_FUNC152_IN_INV_SEL_S 6 + +/* GPIO_FUNC152_IN_SEL : R/W; bitpos: [5:0]; default: 0; + * set this value: s=0-53: connect GPIO[s] to this port. s=0x38: set this + * port always high level. s=0x3C: set this port always low level. + */ + +#define GPIO_FUNC152_IN_SEL 0x0000003f +#define GPIO_FUNC152_IN_SEL_M (GPIO_FUNC152_IN_SEL_V << GPIO_FUNC152_IN_SEL_S) +#define GPIO_FUNC152_IN_SEL_V 0x0000003f +#define GPIO_FUNC152_IN_SEL_S 0 + +/* GPIO_FUNC153_IN_SEL_CFG_REG register + * GPIO input function configuration register + */ + +#define GPIO_FUNC153_IN_SEL_CFG_REG (DR_REG_GPIO_BASE + 0x3b8) + +/* GPIO_SIG153_IN_SEL : R/W; bitpos: [7]; default: 0; + * set this bit to bypass GPIO. 1:do not bypass GPIO. 0:bypass GPIO. + */ + +#define GPIO_SIG153_IN_SEL (BIT(7)) +#define GPIO_SIG153_IN_SEL_M (GPIO_SIG153_IN_SEL_V << GPIO_SIG153_IN_SEL_S) +#define GPIO_SIG153_IN_SEL_V 0x00000001 +#define GPIO_SIG153_IN_SEL_S 7 + +/* GPIO_FUNC153_IN_INV_SEL : R/W; bitpos: [6]; default: 0; + * set this bit to invert input signal. 1:invert. 0:not invert. + */ + +#define GPIO_FUNC153_IN_INV_SEL (BIT(6)) +#define GPIO_FUNC153_IN_INV_SEL_M (GPIO_FUNC153_IN_INV_SEL_V << GPIO_FUNC153_IN_INV_SEL_S) +#define GPIO_FUNC153_IN_INV_SEL_V 0x00000001 +#define GPIO_FUNC153_IN_INV_SEL_S 6 + +/* GPIO_FUNC153_IN_SEL : R/W; bitpos: [5:0]; default: 0; + * set this value: s=0-53: connect GPIO[s] to this port. s=0x38: set this + * port always high level. s=0x3C: set this port always low level. + */ + +#define GPIO_FUNC153_IN_SEL 0x0000003f +#define GPIO_FUNC153_IN_SEL_M (GPIO_FUNC153_IN_SEL_V << GPIO_FUNC153_IN_SEL_S) +#define GPIO_FUNC153_IN_SEL_V 0x0000003f +#define GPIO_FUNC153_IN_SEL_S 0 + +/* GPIO_FUNC154_IN_SEL_CFG_REG register + * GPIO input function configuration register + */ + +#define GPIO_FUNC154_IN_SEL_CFG_REG (DR_REG_GPIO_BASE + 0x3bc) + +/* GPIO_SIG154_IN_SEL : R/W; bitpos: [7]; default: 0; + * set this bit to bypass GPIO. 1:do not bypass GPIO. 0:bypass GPIO. + */ + +#define GPIO_SIG154_IN_SEL (BIT(7)) +#define GPIO_SIG154_IN_SEL_M (GPIO_SIG154_IN_SEL_V << GPIO_SIG154_IN_SEL_S) +#define GPIO_SIG154_IN_SEL_V 0x00000001 +#define GPIO_SIG154_IN_SEL_S 7 + +/* GPIO_FUNC154_IN_INV_SEL : R/W; bitpos: [6]; default: 0; + * set this bit to invert input signal. 1:invert. 0:not invert. + */ + +#define GPIO_FUNC154_IN_INV_SEL (BIT(6)) +#define GPIO_FUNC154_IN_INV_SEL_M (GPIO_FUNC154_IN_INV_SEL_V << GPIO_FUNC154_IN_INV_SEL_S) +#define GPIO_FUNC154_IN_INV_SEL_V 0x00000001 +#define GPIO_FUNC154_IN_INV_SEL_S 6 + +/* GPIO_FUNC154_IN_SEL : R/W; bitpos: [5:0]; default: 0; + * set this value: s=0-53: connect GPIO[s] to this port. s=0x38: set this + * port always high level. s=0x3C: set this port always low level. + */ + +#define GPIO_FUNC154_IN_SEL 0x0000003f +#define GPIO_FUNC154_IN_SEL_M (GPIO_FUNC154_IN_SEL_V << GPIO_FUNC154_IN_SEL_S) +#define GPIO_FUNC154_IN_SEL_V 0x0000003f +#define GPIO_FUNC154_IN_SEL_S 0 + +/* GPIO_FUNC155_IN_SEL_CFG_REG register + * GPIO input function configuration register + */ + +#define GPIO_FUNC155_IN_SEL_CFG_REG (DR_REG_GPIO_BASE + 0x3c0) + +/* GPIO_SIG155_IN_SEL : R/W; bitpos: [7]; default: 0; + * set this bit to bypass GPIO. 1:do not bypass GPIO. 0:bypass GPIO. + */ + +#define GPIO_SIG155_IN_SEL (BIT(7)) +#define GPIO_SIG155_IN_SEL_M (GPIO_SIG155_IN_SEL_V << GPIO_SIG155_IN_SEL_S) +#define GPIO_SIG155_IN_SEL_V 0x00000001 +#define GPIO_SIG155_IN_SEL_S 7 + +/* GPIO_FUNC155_IN_INV_SEL : R/W; bitpos: [6]; default: 0; + * set this bit to invert input signal. 1:invert. 0:not invert. + */ + +#define GPIO_FUNC155_IN_INV_SEL (BIT(6)) +#define GPIO_FUNC155_IN_INV_SEL_M (GPIO_FUNC155_IN_INV_SEL_V << GPIO_FUNC155_IN_INV_SEL_S) +#define GPIO_FUNC155_IN_INV_SEL_V 0x00000001 +#define GPIO_FUNC155_IN_INV_SEL_S 6 + +/* GPIO_FUNC155_IN_SEL : R/W; bitpos: [5:0]; default: 0; + * set this value: s=0-53: connect GPIO[s] to this port. s=0x38: set this + * port always high level. s=0x3C: set this port always low level. + */ + +#define GPIO_FUNC155_IN_SEL 0x0000003f +#define GPIO_FUNC155_IN_SEL_M (GPIO_FUNC155_IN_SEL_V << GPIO_FUNC155_IN_SEL_S) +#define GPIO_FUNC155_IN_SEL_V 0x0000003f +#define GPIO_FUNC155_IN_SEL_S 0 + +/* GPIO_FUNC156_IN_SEL_CFG_REG register + * GPIO input function configuration register + */ + +#define GPIO_FUNC156_IN_SEL_CFG_REG (DR_REG_GPIO_BASE + 0x3c4) + +/* GPIO_SIG156_IN_SEL : R/W; bitpos: [7]; default: 0; + * set this bit to bypass GPIO. 1:do not bypass GPIO. 0:bypass GPIO. + */ + +#define GPIO_SIG156_IN_SEL (BIT(7)) +#define GPIO_SIG156_IN_SEL_M (GPIO_SIG156_IN_SEL_V << GPIO_SIG156_IN_SEL_S) +#define GPIO_SIG156_IN_SEL_V 0x00000001 +#define GPIO_SIG156_IN_SEL_S 7 + +/* GPIO_FUNC156_IN_INV_SEL : R/W; bitpos: [6]; default: 0; + * set this bit to invert input signal. 1:invert. 0:not invert. + */ + +#define GPIO_FUNC156_IN_INV_SEL (BIT(6)) +#define GPIO_FUNC156_IN_INV_SEL_M (GPIO_FUNC156_IN_INV_SEL_V << GPIO_FUNC156_IN_INV_SEL_S) +#define GPIO_FUNC156_IN_INV_SEL_V 0x00000001 +#define GPIO_FUNC156_IN_INV_SEL_S 6 + +/* GPIO_FUNC156_IN_SEL : R/W; bitpos: [5:0]; default: 0; + * set this value: s=0-53: connect GPIO[s] to this port. s=0x38: set this + * port always high level. s=0x3C: set this port always low level. + */ + +#define GPIO_FUNC156_IN_SEL 0x0000003f +#define GPIO_FUNC156_IN_SEL_M (GPIO_FUNC156_IN_SEL_V << GPIO_FUNC156_IN_SEL_S) +#define GPIO_FUNC156_IN_SEL_V 0x0000003f +#define GPIO_FUNC156_IN_SEL_S 0 + +/* GPIO_FUNC157_IN_SEL_CFG_REG register + * GPIO input function configuration register + */ + +#define GPIO_FUNC157_IN_SEL_CFG_REG (DR_REG_GPIO_BASE + 0x3c8) + +/* GPIO_SIG157_IN_SEL : R/W; bitpos: [7]; default: 0; + * set this bit to bypass GPIO. 1:do not bypass GPIO. 0:bypass GPIO. + */ + +#define GPIO_SIG157_IN_SEL (BIT(7)) +#define GPIO_SIG157_IN_SEL_M (GPIO_SIG157_IN_SEL_V << GPIO_SIG157_IN_SEL_S) +#define GPIO_SIG157_IN_SEL_V 0x00000001 +#define GPIO_SIG157_IN_SEL_S 7 + +/* GPIO_FUNC157_IN_INV_SEL : R/W; bitpos: [6]; default: 0; + * set this bit to invert input signal. 1:invert. 0:not invert. + */ + +#define GPIO_FUNC157_IN_INV_SEL (BIT(6)) +#define GPIO_FUNC157_IN_INV_SEL_M (GPIO_FUNC157_IN_INV_SEL_V << GPIO_FUNC157_IN_INV_SEL_S) +#define GPIO_FUNC157_IN_INV_SEL_V 0x00000001 +#define GPIO_FUNC157_IN_INV_SEL_S 6 + +/* GPIO_FUNC157_IN_SEL : R/W; bitpos: [5:0]; default: 0; + * set this value: s=0-53: connect GPIO[s] to this port. s=0x38: set this + * port always high level. s=0x3C: set this port always low level. + */ + +#define GPIO_FUNC157_IN_SEL 0x0000003f +#define GPIO_FUNC157_IN_SEL_M (GPIO_FUNC157_IN_SEL_V << GPIO_FUNC157_IN_SEL_S) +#define GPIO_FUNC157_IN_SEL_V 0x0000003f +#define GPIO_FUNC157_IN_SEL_S 0 + +/* GPIO_FUNC158_IN_SEL_CFG_REG register + * GPIO input function configuration register + */ + +#define GPIO_FUNC158_IN_SEL_CFG_REG (DR_REG_GPIO_BASE + 0x3cc) + +/* GPIO_SIG158_IN_SEL : R/W; bitpos: [7]; default: 0; + * set this bit to bypass GPIO. 1:do not bypass GPIO. 0:bypass GPIO. + */ + +#define GPIO_SIG158_IN_SEL (BIT(7)) +#define GPIO_SIG158_IN_SEL_M (GPIO_SIG158_IN_SEL_V << GPIO_SIG158_IN_SEL_S) +#define GPIO_SIG158_IN_SEL_V 0x00000001 +#define GPIO_SIG158_IN_SEL_S 7 + +/* GPIO_FUNC158_IN_INV_SEL : R/W; bitpos: [6]; default: 0; + * set this bit to invert input signal. 1:invert. 0:not invert. + */ + +#define GPIO_FUNC158_IN_INV_SEL (BIT(6)) +#define GPIO_FUNC158_IN_INV_SEL_M (GPIO_FUNC158_IN_INV_SEL_V << GPIO_FUNC158_IN_INV_SEL_S) +#define GPIO_FUNC158_IN_INV_SEL_V 0x00000001 +#define GPIO_FUNC158_IN_INV_SEL_S 6 + +/* GPIO_FUNC158_IN_SEL : R/W; bitpos: [5:0]; default: 0; + * set this value: s=0-53: connect GPIO[s] to this port. s=0x38: set this + * port always high level. s=0x3C: set this port always low level. + */ + +#define GPIO_FUNC158_IN_SEL 0x0000003f +#define GPIO_FUNC158_IN_SEL_M (GPIO_FUNC158_IN_SEL_V << GPIO_FUNC158_IN_SEL_S) +#define GPIO_FUNC158_IN_SEL_V 0x0000003f +#define GPIO_FUNC158_IN_SEL_S 0 + +/* GPIO_FUNC159_IN_SEL_CFG_REG register + * GPIO input function configuration register + */ + +#define GPIO_FUNC159_IN_SEL_CFG_REG (DR_REG_GPIO_BASE + 0x3d0) + +/* GPIO_SIG159_IN_SEL : R/W; bitpos: [7]; default: 0; + * set this bit to bypass GPIO. 1:do not bypass GPIO. 0:bypass GPIO. + */ + +#define GPIO_SIG159_IN_SEL (BIT(7)) +#define GPIO_SIG159_IN_SEL_M (GPIO_SIG159_IN_SEL_V << GPIO_SIG159_IN_SEL_S) +#define GPIO_SIG159_IN_SEL_V 0x00000001 +#define GPIO_SIG159_IN_SEL_S 7 + +/* GPIO_FUNC159_IN_INV_SEL : R/W; bitpos: [6]; default: 0; + * set this bit to invert input signal. 1:invert. 0:not invert. + */ + +#define GPIO_FUNC159_IN_INV_SEL (BIT(6)) +#define GPIO_FUNC159_IN_INV_SEL_M (GPIO_FUNC159_IN_INV_SEL_V << GPIO_FUNC159_IN_INV_SEL_S) +#define GPIO_FUNC159_IN_INV_SEL_V 0x00000001 +#define GPIO_FUNC159_IN_INV_SEL_S 6 + +/* GPIO_FUNC159_IN_SEL : R/W; bitpos: [5:0]; default: 0; + * set this value: s=0-53: connect GPIO[s] to this port. s=0x38: set this + * port always high level. s=0x3C: set this port always low level. + */ + +#define GPIO_FUNC159_IN_SEL 0x0000003f +#define GPIO_FUNC159_IN_SEL_M (GPIO_FUNC159_IN_SEL_V << GPIO_FUNC159_IN_SEL_S) +#define GPIO_FUNC159_IN_SEL_V 0x0000003f +#define GPIO_FUNC159_IN_SEL_S 0 + +/* GPIO_FUNC160_IN_SEL_CFG_REG register + * GPIO input function configuration register + */ + +#define GPIO_FUNC160_IN_SEL_CFG_REG (DR_REG_GPIO_BASE + 0x3d4) + +/* GPIO_SIG160_IN_SEL : R/W; bitpos: [7]; default: 0; + * set this bit to bypass GPIO. 1:do not bypass GPIO. 0:bypass GPIO. + */ + +#define GPIO_SIG160_IN_SEL (BIT(7)) +#define GPIO_SIG160_IN_SEL_M (GPIO_SIG160_IN_SEL_V << GPIO_SIG160_IN_SEL_S) +#define GPIO_SIG160_IN_SEL_V 0x00000001 +#define GPIO_SIG160_IN_SEL_S 7 + +/* GPIO_FUNC160_IN_INV_SEL : R/W; bitpos: [6]; default: 0; + * set this bit to invert input signal. 1:invert. 0:not invert. + */ + +#define GPIO_FUNC160_IN_INV_SEL (BIT(6)) +#define GPIO_FUNC160_IN_INV_SEL_M (GPIO_FUNC160_IN_INV_SEL_V << GPIO_FUNC160_IN_INV_SEL_S) +#define GPIO_FUNC160_IN_INV_SEL_V 0x00000001 +#define GPIO_FUNC160_IN_INV_SEL_S 6 + +/* GPIO_FUNC160_IN_SEL : R/W; bitpos: [5:0]; default: 0; + * set this value: s=0-53: connect GPIO[s] to this port. s=0x38: set this + * port always high level. s=0x3C: set this port always low level. + */ + +#define GPIO_FUNC160_IN_SEL 0x0000003f +#define GPIO_FUNC160_IN_SEL_M (GPIO_FUNC160_IN_SEL_V << GPIO_FUNC160_IN_SEL_S) +#define GPIO_FUNC160_IN_SEL_V 0x0000003f +#define GPIO_FUNC160_IN_SEL_S 0 + +/* GPIO_FUNC161_IN_SEL_CFG_REG register + * GPIO input function configuration register + */ + +#define GPIO_FUNC161_IN_SEL_CFG_REG (DR_REG_GPIO_BASE + 0x3d8) + +/* GPIO_SIG161_IN_SEL : R/W; bitpos: [7]; default: 0; + * set this bit to bypass GPIO. 1:do not bypass GPIO. 0:bypass GPIO. + */ + +#define GPIO_SIG161_IN_SEL (BIT(7)) +#define GPIO_SIG161_IN_SEL_M (GPIO_SIG161_IN_SEL_V << GPIO_SIG161_IN_SEL_S) +#define GPIO_SIG161_IN_SEL_V 0x00000001 +#define GPIO_SIG161_IN_SEL_S 7 + +/* GPIO_FUNC161_IN_INV_SEL : R/W; bitpos: [6]; default: 0; + * set this bit to invert input signal. 1:invert. 0:not invert. + */ + +#define GPIO_FUNC161_IN_INV_SEL (BIT(6)) +#define GPIO_FUNC161_IN_INV_SEL_M (GPIO_FUNC161_IN_INV_SEL_V << GPIO_FUNC161_IN_INV_SEL_S) +#define GPIO_FUNC161_IN_INV_SEL_V 0x00000001 +#define GPIO_FUNC161_IN_INV_SEL_S 6 + +/* GPIO_FUNC161_IN_SEL : R/W; bitpos: [5:0]; default: 0; + * set this value: s=0-53: connect GPIO[s] to this port. s=0x38: set this + * port always high level. s=0x3C: set this port always low level. + */ + +#define GPIO_FUNC161_IN_SEL 0x0000003f +#define GPIO_FUNC161_IN_SEL_M (GPIO_FUNC161_IN_SEL_V << GPIO_FUNC161_IN_SEL_S) +#define GPIO_FUNC161_IN_SEL_V 0x0000003f +#define GPIO_FUNC161_IN_SEL_S 0 + +/* GPIO_FUNC162_IN_SEL_CFG_REG register + * GPIO input function configuration register + */ + +#define GPIO_FUNC162_IN_SEL_CFG_REG (DR_REG_GPIO_BASE + 0x3dc) + +/* GPIO_SIG162_IN_SEL : R/W; bitpos: [7]; default: 0; + * set this bit to bypass GPIO. 1:do not bypass GPIO. 0:bypass GPIO. + */ + +#define GPIO_SIG162_IN_SEL (BIT(7)) +#define GPIO_SIG162_IN_SEL_M (GPIO_SIG162_IN_SEL_V << GPIO_SIG162_IN_SEL_S) +#define GPIO_SIG162_IN_SEL_V 0x00000001 +#define GPIO_SIG162_IN_SEL_S 7 + +/* GPIO_FUNC162_IN_INV_SEL : R/W; bitpos: [6]; default: 0; + * set this bit to invert input signal. 1:invert. 0:not invert. + */ + +#define GPIO_FUNC162_IN_INV_SEL (BIT(6)) +#define GPIO_FUNC162_IN_INV_SEL_M (GPIO_FUNC162_IN_INV_SEL_V << GPIO_FUNC162_IN_INV_SEL_S) +#define GPIO_FUNC162_IN_INV_SEL_V 0x00000001 +#define GPIO_FUNC162_IN_INV_SEL_S 6 + +/* GPIO_FUNC162_IN_SEL : R/W; bitpos: [5:0]; default: 0; + * set this value: s=0-53: connect GPIO[s] to this port. s=0x38: set this + * port always high level. s=0x3C: set this port always low level. + */ + +#define GPIO_FUNC162_IN_SEL 0x0000003f +#define GPIO_FUNC162_IN_SEL_M (GPIO_FUNC162_IN_SEL_V << GPIO_FUNC162_IN_SEL_S) +#define GPIO_FUNC162_IN_SEL_V 0x0000003f +#define GPIO_FUNC162_IN_SEL_S 0 + +/* GPIO_FUNC163_IN_SEL_CFG_REG register + * GPIO input function configuration register + */ + +#define GPIO_FUNC163_IN_SEL_CFG_REG (DR_REG_GPIO_BASE + 0x3e0) + +/* GPIO_SIG163_IN_SEL : R/W; bitpos: [7]; default: 0; + * set this bit to bypass GPIO. 1:do not bypass GPIO. 0:bypass GPIO. + */ + +#define GPIO_SIG163_IN_SEL (BIT(7)) +#define GPIO_SIG163_IN_SEL_M (GPIO_SIG163_IN_SEL_V << GPIO_SIG163_IN_SEL_S) +#define GPIO_SIG163_IN_SEL_V 0x00000001 +#define GPIO_SIG163_IN_SEL_S 7 + +/* GPIO_FUNC163_IN_INV_SEL : R/W; bitpos: [6]; default: 0; + * set this bit to invert input signal. 1:invert. 0:not invert. + */ + +#define GPIO_FUNC163_IN_INV_SEL (BIT(6)) +#define GPIO_FUNC163_IN_INV_SEL_M (GPIO_FUNC163_IN_INV_SEL_V << GPIO_FUNC163_IN_INV_SEL_S) +#define GPIO_FUNC163_IN_INV_SEL_V 0x00000001 +#define GPIO_FUNC163_IN_INV_SEL_S 6 + +/* GPIO_FUNC163_IN_SEL : R/W; bitpos: [5:0]; default: 0; + * set this value: s=0-53: connect GPIO[s] to this port. s=0x38: set this + * port always high level. s=0x3C: set this port always low level. + */ + +#define GPIO_FUNC163_IN_SEL 0x0000003f +#define GPIO_FUNC163_IN_SEL_M (GPIO_FUNC163_IN_SEL_V << GPIO_FUNC163_IN_SEL_S) +#define GPIO_FUNC163_IN_SEL_V 0x0000003f +#define GPIO_FUNC163_IN_SEL_S 0 + +/* GPIO_FUNC164_IN_SEL_CFG_REG register + * GPIO input function configuration register + */ + +#define GPIO_FUNC164_IN_SEL_CFG_REG (DR_REG_GPIO_BASE + 0x3e4) + +/* GPIO_SIG164_IN_SEL : R/W; bitpos: [7]; default: 0; + * set this bit to bypass GPIO. 1:do not bypass GPIO. 0:bypass GPIO. + */ + +#define GPIO_SIG164_IN_SEL (BIT(7)) +#define GPIO_SIG164_IN_SEL_M (GPIO_SIG164_IN_SEL_V << GPIO_SIG164_IN_SEL_S) +#define GPIO_SIG164_IN_SEL_V 0x00000001 +#define GPIO_SIG164_IN_SEL_S 7 + +/* GPIO_FUNC164_IN_INV_SEL : R/W; bitpos: [6]; default: 0; + * set this bit to invert input signal. 1:invert. 0:not invert. + */ + +#define GPIO_FUNC164_IN_INV_SEL (BIT(6)) +#define GPIO_FUNC164_IN_INV_SEL_M (GPIO_FUNC164_IN_INV_SEL_V << GPIO_FUNC164_IN_INV_SEL_S) +#define GPIO_FUNC164_IN_INV_SEL_V 0x00000001 +#define GPIO_FUNC164_IN_INV_SEL_S 6 + +/* GPIO_FUNC164_IN_SEL : R/W; bitpos: [5:0]; default: 0; + * set this value: s=0-53: connect GPIO[s] to this port. s=0x38: set this + * port always high level. s=0x3C: set this port always low level. + */ + +#define GPIO_FUNC164_IN_SEL 0x0000003f +#define GPIO_FUNC164_IN_SEL_M (GPIO_FUNC164_IN_SEL_V << GPIO_FUNC164_IN_SEL_S) +#define GPIO_FUNC164_IN_SEL_V 0x0000003f +#define GPIO_FUNC164_IN_SEL_S 0 + +/* GPIO_FUNC165_IN_SEL_CFG_REG register + * GPIO input function configuration register + */ + +#define GPIO_FUNC165_IN_SEL_CFG_REG (DR_REG_GPIO_BASE + 0x3e8) + +/* GPIO_SIG165_IN_SEL : R/W; bitpos: [7]; default: 0; + * set this bit to bypass GPIO. 1:do not bypass GPIO. 0:bypass GPIO. + */ + +#define GPIO_SIG165_IN_SEL (BIT(7)) +#define GPIO_SIG165_IN_SEL_M (GPIO_SIG165_IN_SEL_V << GPIO_SIG165_IN_SEL_S) +#define GPIO_SIG165_IN_SEL_V 0x00000001 +#define GPIO_SIG165_IN_SEL_S 7 + +/* GPIO_FUNC165_IN_INV_SEL : R/W; bitpos: [6]; default: 0; + * set this bit to invert input signal. 1:invert. 0:not invert. + */ + +#define GPIO_FUNC165_IN_INV_SEL (BIT(6)) +#define GPIO_FUNC165_IN_INV_SEL_M (GPIO_FUNC165_IN_INV_SEL_V << GPIO_FUNC165_IN_INV_SEL_S) +#define GPIO_FUNC165_IN_INV_SEL_V 0x00000001 +#define GPIO_FUNC165_IN_INV_SEL_S 6 + +/* GPIO_FUNC165_IN_SEL : R/W; bitpos: [5:0]; default: 0; + * set this value: s=0-53: connect GPIO[s] to this port. s=0x38: set this + * port always high level. s=0x3C: set this port always low level. + */ + +#define GPIO_FUNC165_IN_SEL 0x0000003f +#define GPIO_FUNC165_IN_SEL_M (GPIO_FUNC165_IN_SEL_V << GPIO_FUNC165_IN_SEL_S) +#define GPIO_FUNC165_IN_SEL_V 0x0000003f +#define GPIO_FUNC165_IN_SEL_S 0 + +/* GPIO_FUNC166_IN_SEL_CFG_REG register + * GPIO input function configuration register + */ + +#define GPIO_FUNC166_IN_SEL_CFG_REG (DR_REG_GPIO_BASE + 0x3ec) + +/* GPIO_SIG166_IN_SEL : R/W; bitpos: [7]; default: 0; + * set this bit to bypass GPIO. 1:do not bypass GPIO. 0:bypass GPIO. + */ + +#define GPIO_SIG166_IN_SEL (BIT(7)) +#define GPIO_SIG166_IN_SEL_M (GPIO_SIG166_IN_SEL_V << GPIO_SIG166_IN_SEL_S) +#define GPIO_SIG166_IN_SEL_V 0x00000001 +#define GPIO_SIG166_IN_SEL_S 7 + +/* GPIO_FUNC166_IN_INV_SEL : R/W; bitpos: [6]; default: 0; + * set this bit to invert input signal. 1:invert. 0:not invert. + */ + +#define GPIO_FUNC166_IN_INV_SEL (BIT(6)) +#define GPIO_FUNC166_IN_INV_SEL_M (GPIO_FUNC166_IN_INV_SEL_V << GPIO_FUNC166_IN_INV_SEL_S) +#define GPIO_FUNC166_IN_INV_SEL_V 0x00000001 +#define GPIO_FUNC166_IN_INV_SEL_S 6 + +/* GPIO_FUNC166_IN_SEL : R/W; bitpos: [5:0]; default: 0; + * set this value: s=0-53: connect GPIO[s] to this port. s=0x38: set this + * port always high level. s=0x3C: set this port always low level. + */ + +#define GPIO_FUNC166_IN_SEL 0x0000003f +#define GPIO_FUNC166_IN_SEL_M (GPIO_FUNC166_IN_SEL_V << GPIO_FUNC166_IN_SEL_S) +#define GPIO_FUNC166_IN_SEL_V 0x0000003f +#define GPIO_FUNC166_IN_SEL_S 0 + +/* GPIO_FUNC167_IN_SEL_CFG_REG register + * GPIO input function configuration register + */ + +#define GPIO_FUNC167_IN_SEL_CFG_REG (DR_REG_GPIO_BASE + 0x3f0) + +/* GPIO_SIG167_IN_SEL : R/W; bitpos: [7]; default: 0; + * set this bit to bypass GPIO. 1:do not bypass GPIO. 0:bypass GPIO. + */ + +#define GPIO_SIG167_IN_SEL (BIT(7)) +#define GPIO_SIG167_IN_SEL_M (GPIO_SIG167_IN_SEL_V << GPIO_SIG167_IN_SEL_S) +#define GPIO_SIG167_IN_SEL_V 0x00000001 +#define GPIO_SIG167_IN_SEL_S 7 + +/* GPIO_FUNC167_IN_INV_SEL : R/W; bitpos: [6]; default: 0; + * set this bit to invert input signal. 1:invert. 0:not invert. + */ + +#define GPIO_FUNC167_IN_INV_SEL (BIT(6)) +#define GPIO_FUNC167_IN_INV_SEL_M (GPIO_FUNC167_IN_INV_SEL_V << GPIO_FUNC167_IN_INV_SEL_S) +#define GPIO_FUNC167_IN_INV_SEL_V 0x00000001 +#define GPIO_FUNC167_IN_INV_SEL_S 6 + +/* GPIO_FUNC167_IN_SEL : R/W; bitpos: [5:0]; default: 0; + * set this value: s=0-53: connect GPIO[s] to this port. s=0x38: set this + * port always high level. s=0x3C: set this port always low level. + */ + +#define GPIO_FUNC167_IN_SEL 0x0000003f +#define GPIO_FUNC167_IN_SEL_M (GPIO_FUNC167_IN_SEL_V << GPIO_FUNC167_IN_SEL_S) +#define GPIO_FUNC167_IN_SEL_V 0x0000003f +#define GPIO_FUNC167_IN_SEL_S 0 + +/* GPIO_FUNC168_IN_SEL_CFG_REG register + * GPIO input function configuration register + */ + +#define GPIO_FUNC168_IN_SEL_CFG_REG (DR_REG_GPIO_BASE + 0x3f4) + +/* GPIO_SIG168_IN_SEL : R/W; bitpos: [7]; default: 0; + * set this bit to bypass GPIO. 1:do not bypass GPIO. 0:bypass GPIO. + */ + +#define GPIO_SIG168_IN_SEL (BIT(7)) +#define GPIO_SIG168_IN_SEL_M (GPIO_SIG168_IN_SEL_V << GPIO_SIG168_IN_SEL_S) +#define GPIO_SIG168_IN_SEL_V 0x00000001 +#define GPIO_SIG168_IN_SEL_S 7 + +/* GPIO_FUNC168_IN_INV_SEL : R/W; bitpos: [6]; default: 0; + * set this bit to invert input signal. 1:invert. 0:not invert. + */ + +#define GPIO_FUNC168_IN_INV_SEL (BIT(6)) +#define GPIO_FUNC168_IN_INV_SEL_M (GPIO_FUNC168_IN_INV_SEL_V << GPIO_FUNC168_IN_INV_SEL_S) +#define GPIO_FUNC168_IN_INV_SEL_V 0x00000001 +#define GPIO_FUNC168_IN_INV_SEL_S 6 + +/* GPIO_FUNC168_IN_SEL : R/W; bitpos: [5:0]; default: 0; + * set this value: s=0-53: connect GPIO[s] to this port. s=0x38: set this + * port always high level. s=0x3C: set this port always low level. + */ + +#define GPIO_FUNC168_IN_SEL 0x0000003f +#define GPIO_FUNC168_IN_SEL_M (GPIO_FUNC168_IN_SEL_V << GPIO_FUNC168_IN_SEL_S) +#define GPIO_FUNC168_IN_SEL_V 0x0000003f +#define GPIO_FUNC168_IN_SEL_S 0 + +/* GPIO_FUNC169_IN_SEL_CFG_REG register + * GPIO input function configuration register + */ + +#define GPIO_FUNC169_IN_SEL_CFG_REG (DR_REG_GPIO_BASE + 0x3f8) + +/* GPIO_SIG169_IN_SEL : R/W; bitpos: [7]; default: 0; + * set this bit to bypass GPIO. 1:do not bypass GPIO. 0:bypass GPIO. + */ + +#define GPIO_SIG169_IN_SEL (BIT(7)) +#define GPIO_SIG169_IN_SEL_M (GPIO_SIG169_IN_SEL_V << GPIO_SIG169_IN_SEL_S) +#define GPIO_SIG169_IN_SEL_V 0x00000001 +#define GPIO_SIG169_IN_SEL_S 7 + +/* GPIO_FUNC169_IN_INV_SEL : R/W; bitpos: [6]; default: 0; + * set this bit to invert input signal. 1:invert. 0:not invert. + */ + +#define GPIO_FUNC169_IN_INV_SEL (BIT(6)) +#define GPIO_FUNC169_IN_INV_SEL_M (GPIO_FUNC169_IN_INV_SEL_V << GPIO_FUNC169_IN_INV_SEL_S) +#define GPIO_FUNC169_IN_INV_SEL_V 0x00000001 +#define GPIO_FUNC169_IN_INV_SEL_S 6 + +/* GPIO_FUNC169_IN_SEL : R/W; bitpos: [5:0]; default: 0; + * set this value: s=0-53: connect GPIO[s] to this port. s=0x38: set this + * port always high level. s=0x3C: set this port always low level. + */ + +#define GPIO_FUNC169_IN_SEL 0x0000003f +#define GPIO_FUNC169_IN_SEL_M (GPIO_FUNC169_IN_SEL_V << GPIO_FUNC169_IN_SEL_S) +#define GPIO_FUNC169_IN_SEL_V 0x0000003f +#define GPIO_FUNC169_IN_SEL_S 0 + +/* GPIO_FUNC170_IN_SEL_CFG_REG register + * GPIO input function configuration register + */ + +#define GPIO_FUNC170_IN_SEL_CFG_REG (DR_REG_GPIO_BASE + 0x3fc) + +/* GPIO_SIG170_IN_SEL : R/W; bitpos: [7]; default: 0; + * set this bit to bypass GPIO. 1:do not bypass GPIO. 0:bypass GPIO. + */ + +#define GPIO_SIG170_IN_SEL (BIT(7)) +#define GPIO_SIG170_IN_SEL_M (GPIO_SIG170_IN_SEL_V << GPIO_SIG170_IN_SEL_S) +#define GPIO_SIG170_IN_SEL_V 0x00000001 +#define GPIO_SIG170_IN_SEL_S 7 + +/* GPIO_FUNC170_IN_INV_SEL : R/W; bitpos: [6]; default: 0; + * set this bit to invert input signal. 1:invert. 0:not invert. + */ + +#define GPIO_FUNC170_IN_INV_SEL (BIT(6)) +#define GPIO_FUNC170_IN_INV_SEL_M (GPIO_FUNC170_IN_INV_SEL_V << GPIO_FUNC170_IN_INV_SEL_S) +#define GPIO_FUNC170_IN_INV_SEL_V 0x00000001 +#define GPIO_FUNC170_IN_INV_SEL_S 6 + +/* GPIO_FUNC170_IN_SEL : R/W; bitpos: [5:0]; default: 0; + * set this value: s=0-53: connect GPIO[s] to this port. s=0x38: set this + * port always high level. s=0x3C: set this port always low level. + */ + +#define GPIO_FUNC170_IN_SEL 0x0000003f +#define GPIO_FUNC170_IN_SEL_M (GPIO_FUNC170_IN_SEL_V << GPIO_FUNC170_IN_SEL_S) +#define GPIO_FUNC170_IN_SEL_V 0x0000003f +#define GPIO_FUNC170_IN_SEL_S 0 + +/* GPIO_FUNC171_IN_SEL_CFG_REG register + * GPIO input function configuration register + */ + +#define GPIO_FUNC171_IN_SEL_CFG_REG (DR_REG_GPIO_BASE + 0x400) + +/* GPIO_SIG171_IN_SEL : R/W; bitpos: [7]; default: 0; + * set this bit to bypass GPIO. 1:do not bypass GPIO. 0:bypass GPIO. + */ + +#define GPIO_SIG171_IN_SEL (BIT(7)) +#define GPIO_SIG171_IN_SEL_M (GPIO_SIG171_IN_SEL_V << GPIO_SIG171_IN_SEL_S) +#define GPIO_SIG171_IN_SEL_V 0x00000001 +#define GPIO_SIG171_IN_SEL_S 7 + +/* GPIO_FUNC171_IN_INV_SEL : R/W; bitpos: [6]; default: 0; + * set this bit to invert input signal. 1:invert. 0:not invert. + */ + +#define GPIO_FUNC171_IN_INV_SEL (BIT(6)) +#define GPIO_FUNC171_IN_INV_SEL_M (GPIO_FUNC171_IN_INV_SEL_V << GPIO_FUNC171_IN_INV_SEL_S) +#define GPIO_FUNC171_IN_INV_SEL_V 0x00000001 +#define GPIO_FUNC171_IN_INV_SEL_S 6 + +/* GPIO_FUNC171_IN_SEL : R/W; bitpos: [5:0]; default: 0; + * set this value: s=0-53: connect GPIO[s] to this port. s=0x38: set this + * port always high level. s=0x3C: set this port always low level. + */ + +#define GPIO_FUNC171_IN_SEL 0x0000003f +#define GPIO_FUNC171_IN_SEL_M (GPIO_FUNC171_IN_SEL_V << GPIO_FUNC171_IN_SEL_S) +#define GPIO_FUNC171_IN_SEL_V 0x0000003f +#define GPIO_FUNC171_IN_SEL_S 0 + +/* GPIO_FUNC172_IN_SEL_CFG_REG register + * GPIO input function configuration register + */ + +#define GPIO_FUNC172_IN_SEL_CFG_REG (DR_REG_GPIO_BASE + 0x404) + +/* GPIO_SIG172_IN_SEL : R/W; bitpos: [7]; default: 0; + * set this bit to bypass GPIO. 1:do not bypass GPIO. 0:bypass GPIO. + */ + +#define GPIO_SIG172_IN_SEL (BIT(7)) +#define GPIO_SIG172_IN_SEL_M (GPIO_SIG172_IN_SEL_V << GPIO_SIG172_IN_SEL_S) +#define GPIO_SIG172_IN_SEL_V 0x00000001 +#define GPIO_SIG172_IN_SEL_S 7 + +/* GPIO_FUNC172_IN_INV_SEL : R/W; bitpos: [6]; default: 0; + * set this bit to invert input signal. 1:invert. 0:not invert. + */ + +#define GPIO_FUNC172_IN_INV_SEL (BIT(6)) +#define GPIO_FUNC172_IN_INV_SEL_M (GPIO_FUNC172_IN_INV_SEL_V << GPIO_FUNC172_IN_INV_SEL_S) +#define GPIO_FUNC172_IN_INV_SEL_V 0x00000001 +#define GPIO_FUNC172_IN_INV_SEL_S 6 + +/* GPIO_FUNC172_IN_SEL : R/W; bitpos: [5:0]; default: 0; + * set this value: s=0-53: connect GPIO[s] to this port. s=0x38: set this + * port always high level. s=0x3C: set this port always low level. + */ + +#define GPIO_FUNC172_IN_SEL 0x0000003f +#define GPIO_FUNC172_IN_SEL_M (GPIO_FUNC172_IN_SEL_V << GPIO_FUNC172_IN_SEL_S) +#define GPIO_FUNC172_IN_SEL_V 0x0000003f +#define GPIO_FUNC172_IN_SEL_S 0 + +/* GPIO_FUNC173_IN_SEL_CFG_REG register + * GPIO input function configuration register + */ + +#define GPIO_FUNC173_IN_SEL_CFG_REG (DR_REG_GPIO_BASE + 0x408) + +/* GPIO_SIG173_IN_SEL : R/W; bitpos: [7]; default: 0; + * set this bit to bypass GPIO. 1:do not bypass GPIO. 0:bypass GPIO. + */ + +#define GPIO_SIG173_IN_SEL (BIT(7)) +#define GPIO_SIG173_IN_SEL_M (GPIO_SIG173_IN_SEL_V << GPIO_SIG173_IN_SEL_S) +#define GPIO_SIG173_IN_SEL_V 0x00000001 +#define GPIO_SIG173_IN_SEL_S 7 + +/* GPIO_FUNC173_IN_INV_SEL : R/W; bitpos: [6]; default: 0; + * set this bit to invert input signal. 1:invert. 0:not invert. + */ + +#define GPIO_FUNC173_IN_INV_SEL (BIT(6)) +#define GPIO_FUNC173_IN_INV_SEL_M (GPIO_FUNC173_IN_INV_SEL_V << GPIO_FUNC173_IN_INV_SEL_S) +#define GPIO_FUNC173_IN_INV_SEL_V 0x00000001 +#define GPIO_FUNC173_IN_INV_SEL_S 6 + +/* GPIO_FUNC173_IN_SEL : R/W; bitpos: [5:0]; default: 0; + * set this value: s=0-53: connect GPIO[s] to this port. s=0x38: set this + * port always high level. s=0x3C: set this port always low level. + */ + +#define GPIO_FUNC173_IN_SEL 0x0000003f +#define GPIO_FUNC173_IN_SEL_M (GPIO_FUNC173_IN_SEL_V << GPIO_FUNC173_IN_SEL_S) +#define GPIO_FUNC173_IN_SEL_V 0x0000003f +#define GPIO_FUNC173_IN_SEL_S 0 + +/* GPIO_FUNC174_IN_SEL_CFG_REG register + * GPIO input function configuration register + */ + +#define GPIO_FUNC174_IN_SEL_CFG_REG (DR_REG_GPIO_BASE + 0x40c) + +/* GPIO_SIG174_IN_SEL : R/W; bitpos: [7]; default: 0; + * set this bit to bypass GPIO. 1:do not bypass GPIO. 0:bypass GPIO. + */ + +#define GPIO_SIG174_IN_SEL (BIT(7)) +#define GPIO_SIG174_IN_SEL_M (GPIO_SIG174_IN_SEL_V << GPIO_SIG174_IN_SEL_S) +#define GPIO_SIG174_IN_SEL_V 0x00000001 +#define GPIO_SIG174_IN_SEL_S 7 + +/* GPIO_FUNC174_IN_INV_SEL : R/W; bitpos: [6]; default: 0; + * set this bit to invert input signal. 1:invert. 0:not invert. + */ + +#define GPIO_FUNC174_IN_INV_SEL (BIT(6)) +#define GPIO_FUNC174_IN_INV_SEL_M (GPIO_FUNC174_IN_INV_SEL_V << GPIO_FUNC174_IN_INV_SEL_S) +#define GPIO_FUNC174_IN_INV_SEL_V 0x00000001 +#define GPIO_FUNC174_IN_INV_SEL_S 6 + +/* GPIO_FUNC174_IN_SEL : R/W; bitpos: [5:0]; default: 0; + * set this value: s=0-53: connect GPIO[s] to this port. s=0x38: set this + * port always high level. s=0x3C: set this port always low level. + */ + +#define GPIO_FUNC174_IN_SEL 0x0000003f +#define GPIO_FUNC174_IN_SEL_M (GPIO_FUNC174_IN_SEL_V << GPIO_FUNC174_IN_SEL_S) +#define GPIO_FUNC174_IN_SEL_V 0x0000003f +#define GPIO_FUNC174_IN_SEL_S 0 + +/* GPIO_FUNC175_IN_SEL_CFG_REG register + * GPIO input function configuration register + */ + +#define GPIO_FUNC175_IN_SEL_CFG_REG (DR_REG_GPIO_BASE + 0x410) + +/* GPIO_SIG175_IN_SEL : R/W; bitpos: [7]; default: 0; + * set this bit to bypass GPIO. 1:do not bypass GPIO. 0:bypass GPIO. + */ + +#define GPIO_SIG175_IN_SEL (BIT(7)) +#define GPIO_SIG175_IN_SEL_M (GPIO_SIG175_IN_SEL_V << GPIO_SIG175_IN_SEL_S) +#define GPIO_SIG175_IN_SEL_V 0x00000001 +#define GPIO_SIG175_IN_SEL_S 7 + +/* GPIO_FUNC175_IN_INV_SEL : R/W; bitpos: [6]; default: 0; + * set this bit to invert input signal. 1:invert. 0:not invert. + */ + +#define GPIO_FUNC175_IN_INV_SEL (BIT(6)) +#define GPIO_FUNC175_IN_INV_SEL_M (GPIO_FUNC175_IN_INV_SEL_V << GPIO_FUNC175_IN_INV_SEL_S) +#define GPIO_FUNC175_IN_INV_SEL_V 0x00000001 +#define GPIO_FUNC175_IN_INV_SEL_S 6 + +/* GPIO_FUNC175_IN_SEL : R/W; bitpos: [5:0]; default: 0; + * set this value: s=0-53: connect GPIO[s] to this port. s=0x38: set this + * port always high level. s=0x3C: set this port always low level. + */ + +#define GPIO_FUNC175_IN_SEL 0x0000003f +#define GPIO_FUNC175_IN_SEL_M (GPIO_FUNC175_IN_SEL_V << GPIO_FUNC175_IN_SEL_S) +#define GPIO_FUNC175_IN_SEL_V 0x0000003f +#define GPIO_FUNC175_IN_SEL_S 0 + +/* GPIO_FUNC176_IN_SEL_CFG_REG register + * GPIO input function configuration register + */ + +#define GPIO_FUNC176_IN_SEL_CFG_REG (DR_REG_GPIO_BASE + 0x414) + +/* GPIO_SIG176_IN_SEL : R/W; bitpos: [7]; default: 0; + * set this bit to bypass GPIO. 1:do not bypass GPIO. 0:bypass GPIO. + */ + +#define GPIO_SIG176_IN_SEL (BIT(7)) +#define GPIO_SIG176_IN_SEL_M (GPIO_SIG176_IN_SEL_V << GPIO_SIG176_IN_SEL_S) +#define GPIO_SIG176_IN_SEL_V 0x00000001 +#define GPIO_SIG176_IN_SEL_S 7 + +/* GPIO_FUNC176_IN_INV_SEL : R/W; bitpos: [6]; default: 0; + * set this bit to invert input signal. 1:invert. 0:not invert. + */ + +#define GPIO_FUNC176_IN_INV_SEL (BIT(6)) +#define GPIO_FUNC176_IN_INV_SEL_M (GPIO_FUNC176_IN_INV_SEL_V << GPIO_FUNC176_IN_INV_SEL_S) +#define GPIO_FUNC176_IN_INV_SEL_V 0x00000001 +#define GPIO_FUNC176_IN_INV_SEL_S 6 + +/* GPIO_FUNC176_IN_SEL : R/W; bitpos: [5:0]; default: 0; + * set this value: s=0-53: connect GPIO[s] to this port. s=0x38: set this + * port always high level. s=0x3C: set this port always low level. + */ + +#define GPIO_FUNC176_IN_SEL 0x0000003f +#define GPIO_FUNC176_IN_SEL_M (GPIO_FUNC176_IN_SEL_V << GPIO_FUNC176_IN_SEL_S) +#define GPIO_FUNC176_IN_SEL_V 0x0000003f +#define GPIO_FUNC176_IN_SEL_S 0 + +/* GPIO_FUNC177_IN_SEL_CFG_REG register + * GPIO input function configuration register + */ + +#define GPIO_FUNC177_IN_SEL_CFG_REG (DR_REG_GPIO_BASE + 0x418) + +/* GPIO_SIG177_IN_SEL : R/W; bitpos: [7]; default: 0; + * set this bit to bypass GPIO. 1:do not bypass GPIO. 0:bypass GPIO. + */ + +#define GPIO_SIG177_IN_SEL (BIT(7)) +#define GPIO_SIG177_IN_SEL_M (GPIO_SIG177_IN_SEL_V << GPIO_SIG177_IN_SEL_S) +#define GPIO_SIG177_IN_SEL_V 0x00000001 +#define GPIO_SIG177_IN_SEL_S 7 + +/* GPIO_FUNC177_IN_INV_SEL : R/W; bitpos: [6]; default: 0; + * set this bit to invert input signal. 1:invert. 0:not invert. + */ + +#define GPIO_FUNC177_IN_INV_SEL (BIT(6)) +#define GPIO_FUNC177_IN_INV_SEL_M (GPIO_FUNC177_IN_INV_SEL_V << GPIO_FUNC177_IN_INV_SEL_S) +#define GPIO_FUNC177_IN_INV_SEL_V 0x00000001 +#define GPIO_FUNC177_IN_INV_SEL_S 6 + +/* GPIO_FUNC177_IN_SEL : R/W; bitpos: [5:0]; default: 0; + * set this value: s=0-53: connect GPIO[s] to this port. s=0x38: set this + * port always high level. s=0x3C: set this port always low level. + */ + +#define GPIO_FUNC177_IN_SEL 0x0000003f +#define GPIO_FUNC177_IN_SEL_M (GPIO_FUNC177_IN_SEL_V << GPIO_FUNC177_IN_SEL_S) +#define GPIO_FUNC177_IN_SEL_V 0x0000003f +#define GPIO_FUNC177_IN_SEL_S 0 + +/* GPIO_FUNC178_IN_SEL_CFG_REG register + * GPIO input function configuration register + */ + +#define GPIO_FUNC178_IN_SEL_CFG_REG (DR_REG_GPIO_BASE + 0x41c) + +/* GPIO_SIG178_IN_SEL : R/W; bitpos: [7]; default: 0; + * set this bit to bypass GPIO. 1:do not bypass GPIO. 0:bypass GPIO. + */ + +#define GPIO_SIG178_IN_SEL (BIT(7)) +#define GPIO_SIG178_IN_SEL_M (GPIO_SIG178_IN_SEL_V << GPIO_SIG178_IN_SEL_S) +#define GPIO_SIG178_IN_SEL_V 0x00000001 +#define GPIO_SIG178_IN_SEL_S 7 + +/* GPIO_FUNC178_IN_INV_SEL : R/W; bitpos: [6]; default: 0; + * set this bit to invert input signal. 1:invert. 0:not invert. + */ + +#define GPIO_FUNC178_IN_INV_SEL (BIT(6)) +#define GPIO_FUNC178_IN_INV_SEL_M (GPIO_FUNC178_IN_INV_SEL_V << GPIO_FUNC178_IN_INV_SEL_S) +#define GPIO_FUNC178_IN_INV_SEL_V 0x00000001 +#define GPIO_FUNC178_IN_INV_SEL_S 6 + +/* GPIO_FUNC178_IN_SEL : R/W; bitpos: [5:0]; default: 0; + * set this value: s=0-53: connect GPIO[s] to this port. s=0x38: set this + * port always high level. s=0x3C: set this port always low level. + */ + +#define GPIO_FUNC178_IN_SEL 0x0000003f +#define GPIO_FUNC178_IN_SEL_M (GPIO_FUNC178_IN_SEL_V << GPIO_FUNC178_IN_SEL_S) +#define GPIO_FUNC178_IN_SEL_V 0x0000003f +#define GPIO_FUNC178_IN_SEL_S 0 + +/* GPIO_FUNC179_IN_SEL_CFG_REG register + * GPIO input function configuration register + */ + +#define GPIO_FUNC179_IN_SEL_CFG_REG (DR_REG_GPIO_BASE + 0x420) + +/* GPIO_SIG179_IN_SEL : R/W; bitpos: [7]; default: 0; + * set this bit to bypass GPIO. 1:do not bypass GPIO. 0:bypass GPIO. + */ + +#define GPIO_SIG179_IN_SEL (BIT(7)) +#define GPIO_SIG179_IN_SEL_M (GPIO_SIG179_IN_SEL_V << GPIO_SIG179_IN_SEL_S) +#define GPIO_SIG179_IN_SEL_V 0x00000001 +#define GPIO_SIG179_IN_SEL_S 7 + +/* GPIO_FUNC179_IN_INV_SEL : R/W; bitpos: [6]; default: 0; + * set this bit to invert input signal. 1:invert. 0:not invert. + */ + +#define GPIO_FUNC179_IN_INV_SEL (BIT(6)) +#define GPIO_FUNC179_IN_INV_SEL_M (GPIO_FUNC179_IN_INV_SEL_V << GPIO_FUNC179_IN_INV_SEL_S) +#define GPIO_FUNC179_IN_INV_SEL_V 0x00000001 +#define GPIO_FUNC179_IN_INV_SEL_S 6 + +/* GPIO_FUNC179_IN_SEL : R/W; bitpos: [5:0]; default: 0; + * set this value: s=0-53: connect GPIO[s] to this port. s=0x38: set this + * port always high level. s=0x3C: set this port always low level. + */ + +#define GPIO_FUNC179_IN_SEL 0x0000003f +#define GPIO_FUNC179_IN_SEL_M (GPIO_FUNC179_IN_SEL_V << GPIO_FUNC179_IN_SEL_S) +#define GPIO_FUNC179_IN_SEL_V 0x0000003f +#define GPIO_FUNC179_IN_SEL_S 0 + +/* GPIO_FUNC180_IN_SEL_CFG_REG register + * GPIO input function configuration register + */ + +#define GPIO_FUNC180_IN_SEL_CFG_REG (DR_REG_GPIO_BASE + 0x424) + +/* GPIO_SIG180_IN_SEL : R/W; bitpos: [7]; default: 0; + * set this bit to bypass GPIO. 1:do not bypass GPIO. 0:bypass GPIO. + */ + +#define GPIO_SIG180_IN_SEL (BIT(7)) +#define GPIO_SIG180_IN_SEL_M (GPIO_SIG180_IN_SEL_V << GPIO_SIG180_IN_SEL_S) +#define GPIO_SIG180_IN_SEL_V 0x00000001 +#define GPIO_SIG180_IN_SEL_S 7 + +/* GPIO_FUNC180_IN_INV_SEL : R/W; bitpos: [6]; default: 0; + * set this bit to invert input signal. 1:invert. 0:not invert. + */ + +#define GPIO_FUNC180_IN_INV_SEL (BIT(6)) +#define GPIO_FUNC180_IN_INV_SEL_M (GPIO_FUNC180_IN_INV_SEL_V << GPIO_FUNC180_IN_INV_SEL_S) +#define GPIO_FUNC180_IN_INV_SEL_V 0x00000001 +#define GPIO_FUNC180_IN_INV_SEL_S 6 + +/* GPIO_FUNC180_IN_SEL : R/W; bitpos: [5:0]; default: 0; + * set this value: s=0-53: connect GPIO[s] to this port. s=0x38: set this + * port always high level. s=0x3C: set this port always low level. + */ + +#define GPIO_FUNC180_IN_SEL 0x0000003f +#define GPIO_FUNC180_IN_SEL_M (GPIO_FUNC180_IN_SEL_V << GPIO_FUNC180_IN_SEL_S) +#define GPIO_FUNC180_IN_SEL_V 0x0000003f +#define GPIO_FUNC180_IN_SEL_S 0 + +/* GPIO_FUNC181_IN_SEL_CFG_REG register + * GPIO input function configuration register + */ + +#define GPIO_FUNC181_IN_SEL_CFG_REG (DR_REG_GPIO_BASE + 0x428) + +/* GPIO_SIG181_IN_SEL : R/W; bitpos: [7]; default: 0; + * set this bit to bypass GPIO. 1:do not bypass GPIO. 0:bypass GPIO. + */ + +#define GPIO_SIG181_IN_SEL (BIT(7)) +#define GPIO_SIG181_IN_SEL_M (GPIO_SIG181_IN_SEL_V << GPIO_SIG181_IN_SEL_S) +#define GPIO_SIG181_IN_SEL_V 0x00000001 +#define GPIO_SIG181_IN_SEL_S 7 + +/* GPIO_FUNC181_IN_INV_SEL : R/W; bitpos: [6]; default: 0; + * set this bit to invert input signal. 1:invert. 0:not invert. + */ + +#define GPIO_FUNC181_IN_INV_SEL (BIT(6)) +#define GPIO_FUNC181_IN_INV_SEL_M (GPIO_FUNC181_IN_INV_SEL_V << GPIO_FUNC181_IN_INV_SEL_S) +#define GPIO_FUNC181_IN_INV_SEL_V 0x00000001 +#define GPIO_FUNC181_IN_INV_SEL_S 6 + +/* GPIO_FUNC181_IN_SEL : R/W; bitpos: [5:0]; default: 0; + * set this value: s=0-53: connect GPIO[s] to this port. s=0x38: set this + * port always high level. s=0x3C: set this port always low level. + */ + +#define GPIO_FUNC181_IN_SEL 0x0000003f +#define GPIO_FUNC181_IN_SEL_M (GPIO_FUNC181_IN_SEL_V << GPIO_FUNC181_IN_SEL_S) +#define GPIO_FUNC181_IN_SEL_V 0x0000003f +#define GPIO_FUNC181_IN_SEL_S 0 + +/* GPIO_FUNC182_IN_SEL_CFG_REG register + * GPIO input function configuration register + */ + +#define GPIO_FUNC182_IN_SEL_CFG_REG (DR_REG_GPIO_BASE + 0x42c) + +/* GPIO_SIG182_IN_SEL : R/W; bitpos: [7]; default: 0; + * set this bit to bypass GPIO. 1:do not bypass GPIO. 0:bypass GPIO. + */ + +#define GPIO_SIG182_IN_SEL (BIT(7)) +#define GPIO_SIG182_IN_SEL_M (GPIO_SIG182_IN_SEL_V << GPIO_SIG182_IN_SEL_S) +#define GPIO_SIG182_IN_SEL_V 0x00000001 +#define GPIO_SIG182_IN_SEL_S 7 + +/* GPIO_FUNC182_IN_INV_SEL : R/W; bitpos: [6]; default: 0; + * set this bit to invert input signal. 1:invert. 0:not invert. + */ + +#define GPIO_FUNC182_IN_INV_SEL (BIT(6)) +#define GPIO_FUNC182_IN_INV_SEL_M (GPIO_FUNC182_IN_INV_SEL_V << GPIO_FUNC182_IN_INV_SEL_S) +#define GPIO_FUNC182_IN_INV_SEL_V 0x00000001 +#define GPIO_FUNC182_IN_INV_SEL_S 6 + +/* GPIO_FUNC182_IN_SEL : R/W; bitpos: [5:0]; default: 0; + * set this value: s=0-53: connect GPIO[s] to this port. s=0x38: set this + * port always high level. s=0x3C: set this port always low level. + */ + +#define GPIO_FUNC182_IN_SEL 0x0000003f +#define GPIO_FUNC182_IN_SEL_M (GPIO_FUNC182_IN_SEL_V << GPIO_FUNC182_IN_SEL_S) +#define GPIO_FUNC182_IN_SEL_V 0x0000003f +#define GPIO_FUNC182_IN_SEL_S 0 + +/* GPIO_FUNC183_IN_SEL_CFG_REG register + * GPIO input function configuration register + */ + +#define GPIO_FUNC183_IN_SEL_CFG_REG (DR_REG_GPIO_BASE + 0x430) + +/* GPIO_SIG183_IN_SEL : R/W; bitpos: [7]; default: 0; + * set this bit to bypass GPIO. 1:do not bypass GPIO. 0:bypass GPIO. + */ + +#define GPIO_SIG183_IN_SEL (BIT(7)) +#define GPIO_SIG183_IN_SEL_M (GPIO_SIG183_IN_SEL_V << GPIO_SIG183_IN_SEL_S) +#define GPIO_SIG183_IN_SEL_V 0x00000001 +#define GPIO_SIG183_IN_SEL_S 7 + +/* GPIO_FUNC183_IN_INV_SEL : R/W; bitpos: [6]; default: 0; + * set this bit to invert input signal. 1:invert. 0:not invert. + */ + +#define GPIO_FUNC183_IN_INV_SEL (BIT(6)) +#define GPIO_FUNC183_IN_INV_SEL_M (GPIO_FUNC183_IN_INV_SEL_V << GPIO_FUNC183_IN_INV_SEL_S) +#define GPIO_FUNC183_IN_INV_SEL_V 0x00000001 +#define GPIO_FUNC183_IN_INV_SEL_S 6 + +/* GPIO_FUNC183_IN_SEL : R/W; bitpos: [5:0]; default: 0; + * set this value: s=0-53: connect GPIO[s] to this port. s=0x38: set this + * port always high level. s=0x3C: set this port always low level. + */ + +#define GPIO_FUNC183_IN_SEL 0x0000003f +#define GPIO_FUNC183_IN_SEL_M (GPIO_FUNC183_IN_SEL_V << GPIO_FUNC183_IN_SEL_S) +#define GPIO_FUNC183_IN_SEL_V 0x0000003f +#define GPIO_FUNC183_IN_SEL_S 0 + +/* GPIO_FUNC184_IN_SEL_CFG_REG register + * GPIO input function configuration register + */ + +#define GPIO_FUNC184_IN_SEL_CFG_REG (DR_REG_GPIO_BASE + 0x434) + +/* GPIO_SIG184_IN_SEL : R/W; bitpos: [7]; default: 0; + * set this bit to bypass GPIO. 1:do not bypass GPIO. 0:bypass GPIO. + */ + +#define GPIO_SIG184_IN_SEL (BIT(7)) +#define GPIO_SIG184_IN_SEL_M (GPIO_SIG184_IN_SEL_V << GPIO_SIG184_IN_SEL_S) +#define GPIO_SIG184_IN_SEL_V 0x00000001 +#define GPIO_SIG184_IN_SEL_S 7 + +/* GPIO_FUNC184_IN_INV_SEL : R/W; bitpos: [6]; default: 0; + * set this bit to invert input signal. 1:invert. 0:not invert. + */ + +#define GPIO_FUNC184_IN_INV_SEL (BIT(6)) +#define GPIO_FUNC184_IN_INV_SEL_M (GPIO_FUNC184_IN_INV_SEL_V << GPIO_FUNC184_IN_INV_SEL_S) +#define GPIO_FUNC184_IN_INV_SEL_V 0x00000001 +#define GPIO_FUNC184_IN_INV_SEL_S 6 + +/* GPIO_FUNC184_IN_SEL : R/W; bitpos: [5:0]; default: 0; + * set this value: s=0-53: connect GPIO[s] to this port. s=0x38: set this + * port always high level. s=0x3C: set this port always low level. + */ + +#define GPIO_FUNC184_IN_SEL 0x0000003f +#define GPIO_FUNC184_IN_SEL_M (GPIO_FUNC184_IN_SEL_V << GPIO_FUNC184_IN_SEL_S) +#define GPIO_FUNC184_IN_SEL_V 0x0000003f +#define GPIO_FUNC184_IN_SEL_S 0 + +/* GPIO_FUNC185_IN_SEL_CFG_REG register + * GPIO input function configuration register + */ + +#define GPIO_FUNC185_IN_SEL_CFG_REG (DR_REG_GPIO_BASE + 0x438) + +/* GPIO_SIG185_IN_SEL : R/W; bitpos: [7]; default: 0; + * set this bit to bypass GPIO. 1:do not bypass GPIO. 0:bypass GPIO. + */ + +#define GPIO_SIG185_IN_SEL (BIT(7)) +#define GPIO_SIG185_IN_SEL_M (GPIO_SIG185_IN_SEL_V << GPIO_SIG185_IN_SEL_S) +#define GPIO_SIG185_IN_SEL_V 0x00000001 +#define GPIO_SIG185_IN_SEL_S 7 + +/* GPIO_FUNC185_IN_INV_SEL : R/W; bitpos: [6]; default: 0; + * set this bit to invert input signal. 1:invert. 0:not invert. + */ + +#define GPIO_FUNC185_IN_INV_SEL (BIT(6)) +#define GPIO_FUNC185_IN_INV_SEL_M (GPIO_FUNC185_IN_INV_SEL_V << GPIO_FUNC185_IN_INV_SEL_S) +#define GPIO_FUNC185_IN_INV_SEL_V 0x00000001 +#define GPIO_FUNC185_IN_INV_SEL_S 6 + +/* GPIO_FUNC185_IN_SEL : R/W; bitpos: [5:0]; default: 0; + * set this value: s=0-53: connect GPIO[s] to this port. s=0x38: set this + * port always high level. s=0x3C: set this port always low level. + */ + +#define GPIO_FUNC185_IN_SEL 0x0000003f +#define GPIO_FUNC185_IN_SEL_M (GPIO_FUNC185_IN_SEL_V << GPIO_FUNC185_IN_SEL_S) +#define GPIO_FUNC185_IN_SEL_V 0x0000003f +#define GPIO_FUNC185_IN_SEL_S 0 + +/* GPIO_FUNC186_IN_SEL_CFG_REG register + * GPIO input function configuration register + */ + +#define GPIO_FUNC186_IN_SEL_CFG_REG (DR_REG_GPIO_BASE + 0x43c) + +/* GPIO_SIG186_IN_SEL : R/W; bitpos: [7]; default: 0; + * set this bit to bypass GPIO. 1:do not bypass GPIO. 0:bypass GPIO. + */ + +#define GPIO_SIG186_IN_SEL (BIT(7)) +#define GPIO_SIG186_IN_SEL_M (GPIO_SIG186_IN_SEL_V << GPIO_SIG186_IN_SEL_S) +#define GPIO_SIG186_IN_SEL_V 0x00000001 +#define GPIO_SIG186_IN_SEL_S 7 + +/* GPIO_FUNC186_IN_INV_SEL : R/W; bitpos: [6]; default: 0; + * set this bit to invert input signal. 1:invert. 0:not invert. + */ + +#define GPIO_FUNC186_IN_INV_SEL (BIT(6)) +#define GPIO_FUNC186_IN_INV_SEL_M (GPIO_FUNC186_IN_INV_SEL_V << GPIO_FUNC186_IN_INV_SEL_S) +#define GPIO_FUNC186_IN_INV_SEL_V 0x00000001 +#define GPIO_FUNC186_IN_INV_SEL_S 6 + +/* GPIO_FUNC186_IN_SEL : R/W; bitpos: [5:0]; default: 0; + * set this value: s=0-53: connect GPIO[s] to this port. s=0x38: set this + * port always high level. s=0x3C: set this port always low level. + */ + +#define GPIO_FUNC186_IN_SEL 0x0000003f +#define GPIO_FUNC186_IN_SEL_M (GPIO_FUNC186_IN_SEL_V << GPIO_FUNC186_IN_SEL_S) +#define GPIO_FUNC186_IN_SEL_V 0x0000003f +#define GPIO_FUNC186_IN_SEL_S 0 + +/* GPIO_FUNC187_IN_SEL_CFG_REG register + * GPIO input function configuration register + */ + +#define GPIO_FUNC187_IN_SEL_CFG_REG (DR_REG_GPIO_BASE + 0x440) + +/* GPIO_SIG187_IN_SEL : R/W; bitpos: [7]; default: 0; + * set this bit to bypass GPIO. 1:do not bypass GPIO. 0:bypass GPIO. + */ + +#define GPIO_SIG187_IN_SEL (BIT(7)) +#define GPIO_SIG187_IN_SEL_M (GPIO_SIG187_IN_SEL_V << GPIO_SIG187_IN_SEL_S) +#define GPIO_SIG187_IN_SEL_V 0x00000001 +#define GPIO_SIG187_IN_SEL_S 7 + +/* GPIO_FUNC187_IN_INV_SEL : R/W; bitpos: [6]; default: 0; + * set this bit to invert input signal. 1:invert. 0:not invert. + */ + +#define GPIO_FUNC187_IN_INV_SEL (BIT(6)) +#define GPIO_FUNC187_IN_INV_SEL_M (GPIO_FUNC187_IN_INV_SEL_V << GPIO_FUNC187_IN_INV_SEL_S) +#define GPIO_FUNC187_IN_INV_SEL_V 0x00000001 +#define GPIO_FUNC187_IN_INV_SEL_S 6 + +/* GPIO_FUNC187_IN_SEL : R/W; bitpos: [5:0]; default: 0; + * set this value: s=0-53: connect GPIO[s] to this port. s=0x38: set this + * port always high level. s=0x3C: set this port always low level. + */ + +#define GPIO_FUNC187_IN_SEL 0x0000003f +#define GPIO_FUNC187_IN_SEL_M (GPIO_FUNC187_IN_SEL_V << GPIO_FUNC187_IN_SEL_S) +#define GPIO_FUNC187_IN_SEL_V 0x0000003f +#define GPIO_FUNC187_IN_SEL_S 0 + +/* GPIO_FUNC188_IN_SEL_CFG_REG register + * GPIO input function configuration register + */ + +#define GPIO_FUNC188_IN_SEL_CFG_REG (DR_REG_GPIO_BASE + 0x444) + +/* GPIO_SIG188_IN_SEL : R/W; bitpos: [7]; default: 0; + * set this bit to bypass GPIO. 1:do not bypass GPIO. 0:bypass GPIO. + */ + +#define GPIO_SIG188_IN_SEL (BIT(7)) +#define GPIO_SIG188_IN_SEL_M (GPIO_SIG188_IN_SEL_V << GPIO_SIG188_IN_SEL_S) +#define GPIO_SIG188_IN_SEL_V 0x00000001 +#define GPIO_SIG188_IN_SEL_S 7 + +/* GPIO_FUNC188_IN_INV_SEL : R/W; bitpos: [6]; default: 0; + * set this bit to invert input signal. 1:invert. 0:not invert. + */ + +#define GPIO_FUNC188_IN_INV_SEL (BIT(6)) +#define GPIO_FUNC188_IN_INV_SEL_M (GPIO_FUNC188_IN_INV_SEL_V << GPIO_FUNC188_IN_INV_SEL_S) +#define GPIO_FUNC188_IN_INV_SEL_V 0x00000001 +#define GPIO_FUNC188_IN_INV_SEL_S 6 + +/* GPIO_FUNC188_IN_SEL : R/W; bitpos: [5:0]; default: 0; + * set this value: s=0-53: connect GPIO[s] to this port. s=0x38: set this + * port always high level. s=0x3C: set this port always low level. + */ + +#define GPIO_FUNC188_IN_SEL 0x0000003f +#define GPIO_FUNC188_IN_SEL_M (GPIO_FUNC188_IN_SEL_V << GPIO_FUNC188_IN_SEL_S) +#define GPIO_FUNC188_IN_SEL_V 0x0000003f +#define GPIO_FUNC188_IN_SEL_S 0 + +/* GPIO_FUNC189_IN_SEL_CFG_REG register + * GPIO input function configuration register + */ + +#define GPIO_FUNC189_IN_SEL_CFG_REG (DR_REG_GPIO_BASE + 0x448) + +/* GPIO_SIG189_IN_SEL : R/W; bitpos: [7]; default: 0; + * set this bit to bypass GPIO. 1:do not bypass GPIO. 0:bypass GPIO. + */ + +#define GPIO_SIG189_IN_SEL (BIT(7)) +#define GPIO_SIG189_IN_SEL_M (GPIO_SIG189_IN_SEL_V << GPIO_SIG189_IN_SEL_S) +#define GPIO_SIG189_IN_SEL_V 0x00000001 +#define GPIO_SIG189_IN_SEL_S 7 + +/* GPIO_FUNC189_IN_INV_SEL : R/W; bitpos: [6]; default: 0; + * set this bit to invert input signal. 1:invert. 0:not invert. + */ + +#define GPIO_FUNC189_IN_INV_SEL (BIT(6)) +#define GPIO_FUNC189_IN_INV_SEL_M (GPIO_FUNC189_IN_INV_SEL_V << GPIO_FUNC189_IN_INV_SEL_S) +#define GPIO_FUNC189_IN_INV_SEL_V 0x00000001 +#define GPIO_FUNC189_IN_INV_SEL_S 6 + +/* GPIO_FUNC189_IN_SEL : R/W; bitpos: [5:0]; default: 0; + * set this value: s=0-53: connect GPIO[s] to this port. s=0x38: set this + * port always high level. s=0x3C: set this port always low level. + */ + +#define GPIO_FUNC189_IN_SEL 0x0000003f +#define GPIO_FUNC189_IN_SEL_M (GPIO_FUNC189_IN_SEL_V << GPIO_FUNC189_IN_SEL_S) +#define GPIO_FUNC189_IN_SEL_V 0x0000003f +#define GPIO_FUNC189_IN_SEL_S 0 + +/* GPIO_FUNC190_IN_SEL_CFG_REG register + * GPIO input function configuration register + */ + +#define GPIO_FUNC190_IN_SEL_CFG_REG (DR_REG_GPIO_BASE + 0x44c) + +/* GPIO_SIG190_IN_SEL : R/W; bitpos: [7]; default: 0; + * set this bit to bypass GPIO. 1:do not bypass GPIO. 0:bypass GPIO. + */ + +#define GPIO_SIG190_IN_SEL (BIT(7)) +#define GPIO_SIG190_IN_SEL_M (GPIO_SIG190_IN_SEL_V << GPIO_SIG190_IN_SEL_S) +#define GPIO_SIG190_IN_SEL_V 0x00000001 +#define GPIO_SIG190_IN_SEL_S 7 + +/* GPIO_FUNC190_IN_INV_SEL : R/W; bitpos: [6]; default: 0; + * set this bit to invert input signal. 1:invert. 0:not invert. + */ + +#define GPIO_FUNC190_IN_INV_SEL (BIT(6)) +#define GPIO_FUNC190_IN_INV_SEL_M (GPIO_FUNC190_IN_INV_SEL_V << GPIO_FUNC190_IN_INV_SEL_S) +#define GPIO_FUNC190_IN_INV_SEL_V 0x00000001 +#define GPIO_FUNC190_IN_INV_SEL_S 6 + +/* GPIO_FUNC190_IN_SEL : R/W; bitpos: [5:0]; default: 0; + * set this value: s=0-53: connect GPIO[s] to this port. s=0x38: set this + * port always high level. s=0x3C: set this port always low level. + */ + +#define GPIO_FUNC190_IN_SEL 0x0000003f +#define GPIO_FUNC190_IN_SEL_M (GPIO_FUNC190_IN_SEL_V << GPIO_FUNC190_IN_SEL_S) +#define GPIO_FUNC190_IN_SEL_V 0x0000003f +#define GPIO_FUNC190_IN_SEL_S 0 + +/* GPIO_FUNC191_IN_SEL_CFG_REG register + * GPIO input function configuration register + */ + +#define GPIO_FUNC191_IN_SEL_CFG_REG (DR_REG_GPIO_BASE + 0x450) + +/* GPIO_SIG191_IN_SEL : R/W; bitpos: [7]; default: 0; + * set this bit to bypass GPIO. 1:do not bypass GPIO. 0:bypass GPIO. + */ + +#define GPIO_SIG191_IN_SEL (BIT(7)) +#define GPIO_SIG191_IN_SEL_M (GPIO_SIG191_IN_SEL_V << GPIO_SIG191_IN_SEL_S) +#define GPIO_SIG191_IN_SEL_V 0x00000001 +#define GPIO_SIG191_IN_SEL_S 7 + +/* GPIO_FUNC191_IN_INV_SEL : R/W; bitpos: [6]; default: 0; + * set this bit to invert input signal. 1:invert. 0:not invert. + */ + +#define GPIO_FUNC191_IN_INV_SEL (BIT(6)) +#define GPIO_FUNC191_IN_INV_SEL_M (GPIO_FUNC191_IN_INV_SEL_V << GPIO_FUNC191_IN_INV_SEL_S) +#define GPIO_FUNC191_IN_INV_SEL_V 0x00000001 +#define GPIO_FUNC191_IN_INV_SEL_S 6 + +/* GPIO_FUNC191_IN_SEL : R/W; bitpos: [5:0]; default: 0; + * set this value: s=0-53: connect GPIO[s] to this port. s=0x38: set this + * port always high level. s=0x3C: set this port always low level. + */ + +#define GPIO_FUNC191_IN_SEL 0x0000003f +#define GPIO_FUNC191_IN_SEL_M (GPIO_FUNC191_IN_SEL_V << GPIO_FUNC191_IN_SEL_S) +#define GPIO_FUNC191_IN_SEL_V 0x0000003f +#define GPIO_FUNC191_IN_SEL_S 0 + +/* GPIO_FUNC192_IN_SEL_CFG_REG register + * GPIO input function configuration register + */ + +#define GPIO_FUNC192_IN_SEL_CFG_REG (DR_REG_GPIO_BASE + 0x454) + +/* GPIO_SIG192_IN_SEL : R/W; bitpos: [7]; default: 0; + * set this bit to bypass GPIO. 1:do not bypass GPIO. 0:bypass GPIO. + */ + +#define GPIO_SIG192_IN_SEL (BIT(7)) +#define GPIO_SIG192_IN_SEL_M (GPIO_SIG192_IN_SEL_V << GPIO_SIG192_IN_SEL_S) +#define GPIO_SIG192_IN_SEL_V 0x00000001 +#define GPIO_SIG192_IN_SEL_S 7 + +/* GPIO_FUNC192_IN_INV_SEL : R/W; bitpos: [6]; default: 0; + * set this bit to invert input signal. 1:invert. 0:not invert. + */ + +#define GPIO_FUNC192_IN_INV_SEL (BIT(6)) +#define GPIO_FUNC192_IN_INV_SEL_M (GPIO_FUNC192_IN_INV_SEL_V << GPIO_FUNC192_IN_INV_SEL_S) +#define GPIO_FUNC192_IN_INV_SEL_V 0x00000001 +#define GPIO_FUNC192_IN_INV_SEL_S 6 + +/* GPIO_FUNC192_IN_SEL : R/W; bitpos: [5:0]; default: 0; + * set this value: s=0-53: connect GPIO[s] to this port. s=0x38: set this + * port always high level. s=0x3C: set this port always low level. + */ + +#define GPIO_FUNC192_IN_SEL 0x0000003f +#define GPIO_FUNC192_IN_SEL_M (GPIO_FUNC192_IN_SEL_V << GPIO_FUNC192_IN_SEL_S) +#define GPIO_FUNC192_IN_SEL_V 0x0000003f +#define GPIO_FUNC192_IN_SEL_S 0 + +/* GPIO_FUNC193_IN_SEL_CFG_REG register + * GPIO input function configuration register + */ + +#define GPIO_FUNC193_IN_SEL_CFG_REG (DR_REG_GPIO_BASE + 0x458) + +/* GPIO_SIG193_IN_SEL : R/W; bitpos: [7]; default: 0; + * set this bit to bypass GPIO. 1:do not bypass GPIO. 0:bypass GPIO. + */ + +#define GPIO_SIG193_IN_SEL (BIT(7)) +#define GPIO_SIG193_IN_SEL_M (GPIO_SIG193_IN_SEL_V << GPIO_SIG193_IN_SEL_S) +#define GPIO_SIG193_IN_SEL_V 0x00000001 +#define GPIO_SIG193_IN_SEL_S 7 + +/* GPIO_FUNC193_IN_INV_SEL : R/W; bitpos: [6]; default: 0; + * set this bit to invert input signal. 1:invert. 0:not invert. + */ + +#define GPIO_FUNC193_IN_INV_SEL (BIT(6)) +#define GPIO_FUNC193_IN_INV_SEL_M (GPIO_FUNC193_IN_INV_SEL_V << GPIO_FUNC193_IN_INV_SEL_S) +#define GPIO_FUNC193_IN_INV_SEL_V 0x00000001 +#define GPIO_FUNC193_IN_INV_SEL_S 6 + +/* GPIO_FUNC193_IN_SEL : R/W; bitpos: [5:0]; default: 0; + * set this value: s=0-53: connect GPIO[s] to this port. s=0x38: set this + * port always high level. s=0x3C: set this port always low level. + */ + +#define GPIO_FUNC193_IN_SEL 0x0000003f +#define GPIO_FUNC193_IN_SEL_M (GPIO_FUNC193_IN_SEL_V << GPIO_FUNC193_IN_SEL_S) +#define GPIO_FUNC193_IN_SEL_V 0x0000003f +#define GPIO_FUNC193_IN_SEL_S 0 + +/* GPIO_FUNC194_IN_SEL_CFG_REG register + * GPIO input function configuration register + */ + +#define GPIO_FUNC194_IN_SEL_CFG_REG (DR_REG_GPIO_BASE + 0x45c) + +/* GPIO_SIG194_IN_SEL : R/W; bitpos: [7]; default: 0; + * set this bit to bypass GPIO. 1:do not bypass GPIO. 0:bypass GPIO. + */ + +#define GPIO_SIG194_IN_SEL (BIT(7)) +#define GPIO_SIG194_IN_SEL_M (GPIO_SIG194_IN_SEL_V << GPIO_SIG194_IN_SEL_S) +#define GPIO_SIG194_IN_SEL_V 0x00000001 +#define GPIO_SIG194_IN_SEL_S 7 + +/* GPIO_FUNC194_IN_INV_SEL : R/W; bitpos: [6]; default: 0; + * set this bit to invert input signal. 1:invert. 0:not invert. + */ + +#define GPIO_FUNC194_IN_INV_SEL (BIT(6)) +#define GPIO_FUNC194_IN_INV_SEL_M (GPIO_FUNC194_IN_INV_SEL_V << GPIO_FUNC194_IN_INV_SEL_S) +#define GPIO_FUNC194_IN_INV_SEL_V 0x00000001 +#define GPIO_FUNC194_IN_INV_SEL_S 6 + +/* GPIO_FUNC194_IN_SEL : R/W; bitpos: [5:0]; default: 0; + * set this value: s=0-53: connect GPIO[s] to this port. s=0x38: set this + * port always high level. s=0x3C: set this port always low level. + */ + +#define GPIO_FUNC194_IN_SEL 0x0000003f +#define GPIO_FUNC194_IN_SEL_M (GPIO_FUNC194_IN_SEL_V << GPIO_FUNC194_IN_SEL_S) +#define GPIO_FUNC194_IN_SEL_V 0x0000003f +#define GPIO_FUNC194_IN_SEL_S 0 + +/* GPIO_FUNC195_IN_SEL_CFG_REG register + * GPIO input function configuration register + */ + +#define GPIO_FUNC195_IN_SEL_CFG_REG (DR_REG_GPIO_BASE + 0x460) + +/* GPIO_SIG195_IN_SEL : R/W; bitpos: [7]; default: 0; + * set this bit to bypass GPIO. 1:do not bypass GPIO. 0:bypass GPIO. + */ + +#define GPIO_SIG195_IN_SEL (BIT(7)) +#define GPIO_SIG195_IN_SEL_M (GPIO_SIG195_IN_SEL_V << GPIO_SIG195_IN_SEL_S) +#define GPIO_SIG195_IN_SEL_V 0x00000001 +#define GPIO_SIG195_IN_SEL_S 7 + +/* GPIO_FUNC195_IN_INV_SEL : R/W; bitpos: [6]; default: 0; + * set this bit to invert input signal. 1:invert. 0:not invert. + */ + +#define GPIO_FUNC195_IN_INV_SEL (BIT(6)) +#define GPIO_FUNC195_IN_INV_SEL_M (GPIO_FUNC195_IN_INV_SEL_V << GPIO_FUNC195_IN_INV_SEL_S) +#define GPIO_FUNC195_IN_INV_SEL_V 0x00000001 +#define GPIO_FUNC195_IN_INV_SEL_S 6 + +/* GPIO_FUNC195_IN_SEL : R/W; bitpos: [5:0]; default: 0; + * set this value: s=0-53: connect GPIO[s] to this port. s=0x38: set this + * port always high level. s=0x3C: set this port always low level. + */ + +#define GPIO_FUNC195_IN_SEL 0x0000003f +#define GPIO_FUNC195_IN_SEL_M (GPIO_FUNC195_IN_SEL_V << GPIO_FUNC195_IN_SEL_S) +#define GPIO_FUNC195_IN_SEL_V 0x0000003f +#define GPIO_FUNC195_IN_SEL_S 0 + +/* GPIO_FUNC196_IN_SEL_CFG_REG register + * GPIO input function configuration register + */ + +#define GPIO_FUNC196_IN_SEL_CFG_REG (DR_REG_GPIO_BASE + 0x464) + +/* GPIO_SIG196_IN_SEL : R/W; bitpos: [7]; default: 0; + * set this bit to bypass GPIO. 1:do not bypass GPIO. 0:bypass GPIO. + */ + +#define GPIO_SIG196_IN_SEL (BIT(7)) +#define GPIO_SIG196_IN_SEL_M (GPIO_SIG196_IN_SEL_V << GPIO_SIG196_IN_SEL_S) +#define GPIO_SIG196_IN_SEL_V 0x00000001 +#define GPIO_SIG196_IN_SEL_S 7 + +/* GPIO_FUNC196_IN_INV_SEL : R/W; bitpos: [6]; default: 0; + * set this bit to invert input signal. 1:invert. 0:not invert. + */ + +#define GPIO_FUNC196_IN_INV_SEL (BIT(6)) +#define GPIO_FUNC196_IN_INV_SEL_M (GPIO_FUNC196_IN_INV_SEL_V << GPIO_FUNC196_IN_INV_SEL_S) +#define GPIO_FUNC196_IN_INV_SEL_V 0x00000001 +#define GPIO_FUNC196_IN_INV_SEL_S 6 + +/* GPIO_FUNC196_IN_SEL : R/W; bitpos: [5:0]; default: 0; + * set this value: s=0-53: connect GPIO[s] to this port. s=0x38: set this + * port always high level. s=0x3C: set this port always low level. + */ + +#define GPIO_FUNC196_IN_SEL 0x0000003f +#define GPIO_FUNC196_IN_SEL_M (GPIO_FUNC196_IN_SEL_V << GPIO_FUNC196_IN_SEL_S) +#define GPIO_FUNC196_IN_SEL_V 0x0000003f +#define GPIO_FUNC196_IN_SEL_S 0 + +/* GPIO_FUNC197_IN_SEL_CFG_REG register + * GPIO input function configuration register + */ + +#define GPIO_FUNC197_IN_SEL_CFG_REG (DR_REG_GPIO_BASE + 0x468) + +/* GPIO_SIG197_IN_SEL : R/W; bitpos: [7]; default: 0; + * set this bit to bypass GPIO. 1:do not bypass GPIO. 0:bypass GPIO. + */ + +#define GPIO_SIG197_IN_SEL (BIT(7)) +#define GPIO_SIG197_IN_SEL_M (GPIO_SIG197_IN_SEL_V << GPIO_SIG197_IN_SEL_S) +#define GPIO_SIG197_IN_SEL_V 0x00000001 +#define GPIO_SIG197_IN_SEL_S 7 + +/* GPIO_FUNC197_IN_INV_SEL : R/W; bitpos: [6]; default: 0; + * set this bit to invert input signal. 1:invert. 0:not invert. + */ + +#define GPIO_FUNC197_IN_INV_SEL (BIT(6)) +#define GPIO_FUNC197_IN_INV_SEL_M (GPIO_FUNC197_IN_INV_SEL_V << GPIO_FUNC197_IN_INV_SEL_S) +#define GPIO_FUNC197_IN_INV_SEL_V 0x00000001 +#define GPIO_FUNC197_IN_INV_SEL_S 6 + +/* GPIO_FUNC197_IN_SEL : R/W; bitpos: [5:0]; default: 0; + * set this value: s=0-53: connect GPIO[s] to this port. s=0x38: set this + * port always high level. s=0x3C: set this port always low level. + */ + +#define GPIO_FUNC197_IN_SEL 0x0000003f +#define GPIO_FUNC197_IN_SEL_M (GPIO_FUNC197_IN_SEL_V << GPIO_FUNC197_IN_SEL_S) +#define GPIO_FUNC197_IN_SEL_V 0x0000003f +#define GPIO_FUNC197_IN_SEL_S 0 + +/* GPIO_FUNC198_IN_SEL_CFG_REG register + * GPIO input function configuration register + */ + +#define GPIO_FUNC198_IN_SEL_CFG_REG (DR_REG_GPIO_BASE + 0x46c) + +/* GPIO_SIG198_IN_SEL : R/W; bitpos: [7]; default: 0; + * set this bit to bypass GPIO. 1:do not bypass GPIO. 0:bypass GPIO. + */ + +#define GPIO_SIG198_IN_SEL (BIT(7)) +#define GPIO_SIG198_IN_SEL_M (GPIO_SIG198_IN_SEL_V << GPIO_SIG198_IN_SEL_S) +#define GPIO_SIG198_IN_SEL_V 0x00000001 +#define GPIO_SIG198_IN_SEL_S 7 + +/* GPIO_FUNC198_IN_INV_SEL : R/W; bitpos: [6]; default: 0; + * set this bit to invert input signal. 1:invert. 0:not invert. + */ + +#define GPIO_FUNC198_IN_INV_SEL (BIT(6)) +#define GPIO_FUNC198_IN_INV_SEL_M (GPIO_FUNC198_IN_INV_SEL_V << GPIO_FUNC198_IN_INV_SEL_S) +#define GPIO_FUNC198_IN_INV_SEL_V 0x00000001 +#define GPIO_FUNC198_IN_INV_SEL_S 6 + +/* GPIO_FUNC198_IN_SEL : R/W; bitpos: [5:0]; default: 0; + * set this value: s=0-53: connect GPIO[s] to this port. s=0x38: set this + * port always high level. s=0x3C: set this port always low level. + */ + +#define GPIO_FUNC198_IN_SEL 0x0000003f +#define GPIO_FUNC198_IN_SEL_M (GPIO_FUNC198_IN_SEL_V << GPIO_FUNC198_IN_SEL_S) +#define GPIO_FUNC198_IN_SEL_V 0x0000003f +#define GPIO_FUNC198_IN_SEL_S 0 + +/* GPIO_FUNC199_IN_SEL_CFG_REG register + * GPIO input function configuration register + */ + +#define GPIO_FUNC199_IN_SEL_CFG_REG (DR_REG_GPIO_BASE + 0x470) + +/* GPIO_SIG199_IN_SEL : R/W; bitpos: [7]; default: 0; + * set this bit to bypass GPIO. 1:do not bypass GPIO. 0:bypass GPIO. + */ + +#define GPIO_SIG199_IN_SEL (BIT(7)) +#define GPIO_SIG199_IN_SEL_M (GPIO_SIG199_IN_SEL_V << GPIO_SIG199_IN_SEL_S) +#define GPIO_SIG199_IN_SEL_V 0x00000001 +#define GPIO_SIG199_IN_SEL_S 7 + +/* GPIO_FUNC199_IN_INV_SEL : R/W; bitpos: [6]; default: 0; + * set this bit to invert input signal. 1:invert. 0:not invert. + */ + +#define GPIO_FUNC199_IN_INV_SEL (BIT(6)) +#define GPIO_FUNC199_IN_INV_SEL_M (GPIO_FUNC199_IN_INV_SEL_V << GPIO_FUNC199_IN_INV_SEL_S) +#define GPIO_FUNC199_IN_INV_SEL_V 0x00000001 +#define GPIO_FUNC199_IN_INV_SEL_S 6 + +/* GPIO_FUNC199_IN_SEL : R/W; bitpos: [5:0]; default: 0; + * set this value: s=0-53: connect GPIO[s] to this port. s=0x38: set this + * port always high level. s=0x3C: set this port always low level. + */ + +#define GPIO_FUNC199_IN_SEL 0x0000003f +#define GPIO_FUNC199_IN_SEL_M (GPIO_FUNC199_IN_SEL_V << GPIO_FUNC199_IN_SEL_S) +#define GPIO_FUNC199_IN_SEL_V 0x0000003f +#define GPIO_FUNC199_IN_SEL_S 0 + +/* GPIO_FUNC200_IN_SEL_CFG_REG register + * GPIO input function configuration register + */ + +#define GPIO_FUNC200_IN_SEL_CFG_REG (DR_REG_GPIO_BASE + 0x474) + +/* GPIO_SIG200_IN_SEL : R/W; bitpos: [7]; default: 0; + * set this bit to bypass GPIO. 1:do not bypass GPIO. 0:bypass GPIO. + */ + +#define GPIO_SIG200_IN_SEL (BIT(7)) +#define GPIO_SIG200_IN_SEL_M (GPIO_SIG200_IN_SEL_V << GPIO_SIG200_IN_SEL_S) +#define GPIO_SIG200_IN_SEL_V 0x00000001 +#define GPIO_SIG200_IN_SEL_S 7 + +/* GPIO_FUNC200_IN_INV_SEL : R/W; bitpos: [6]; default: 0; + * set this bit to invert input signal. 1:invert. 0:not invert. + */ + +#define GPIO_FUNC200_IN_INV_SEL (BIT(6)) +#define GPIO_FUNC200_IN_INV_SEL_M (GPIO_FUNC200_IN_INV_SEL_V << GPIO_FUNC200_IN_INV_SEL_S) +#define GPIO_FUNC200_IN_INV_SEL_V 0x00000001 +#define GPIO_FUNC200_IN_INV_SEL_S 6 + +/* GPIO_FUNC200_IN_SEL : R/W; bitpos: [5:0]; default: 0; + * set this value: s=0-53: connect GPIO[s] to this port. s=0x38: set this + * port always high level. s=0x3C: set this port always low level. + */ + +#define GPIO_FUNC200_IN_SEL 0x0000003f +#define GPIO_FUNC200_IN_SEL_M (GPIO_FUNC200_IN_SEL_V << GPIO_FUNC200_IN_SEL_S) +#define GPIO_FUNC200_IN_SEL_V 0x0000003f +#define GPIO_FUNC200_IN_SEL_S 0 + +/* GPIO_FUNC201_IN_SEL_CFG_REG register + * GPIO input function configuration register + */ + +#define GPIO_FUNC201_IN_SEL_CFG_REG (DR_REG_GPIO_BASE + 0x478) + +/* GPIO_SIG201_IN_SEL : R/W; bitpos: [7]; default: 0; + * set this bit to bypass GPIO. 1:do not bypass GPIO. 0:bypass GPIO. + */ + +#define GPIO_SIG201_IN_SEL (BIT(7)) +#define GPIO_SIG201_IN_SEL_M (GPIO_SIG201_IN_SEL_V << GPIO_SIG201_IN_SEL_S) +#define GPIO_SIG201_IN_SEL_V 0x00000001 +#define GPIO_SIG201_IN_SEL_S 7 + +/* GPIO_FUNC201_IN_INV_SEL : R/W; bitpos: [6]; default: 0; + * set this bit to invert input signal. 1:invert. 0:not invert. + */ + +#define GPIO_FUNC201_IN_INV_SEL (BIT(6)) +#define GPIO_FUNC201_IN_INV_SEL_M (GPIO_FUNC201_IN_INV_SEL_V << GPIO_FUNC201_IN_INV_SEL_S) +#define GPIO_FUNC201_IN_INV_SEL_V 0x00000001 +#define GPIO_FUNC201_IN_INV_SEL_S 6 + +/* GPIO_FUNC201_IN_SEL : R/W; bitpos: [5:0]; default: 0; + * set this value: s=0-53: connect GPIO[s] to this port. s=0x38: set this + * port always high level. s=0x3C: set this port always low level. + */ + +#define GPIO_FUNC201_IN_SEL 0x0000003f +#define GPIO_FUNC201_IN_SEL_M (GPIO_FUNC201_IN_SEL_V << GPIO_FUNC201_IN_SEL_S) +#define GPIO_FUNC201_IN_SEL_V 0x0000003f +#define GPIO_FUNC201_IN_SEL_S 0 + +/* GPIO_FUNC202_IN_SEL_CFG_REG register + * GPIO input function configuration register + */ + +#define GPIO_FUNC202_IN_SEL_CFG_REG (DR_REG_GPIO_BASE + 0x47c) + +/* GPIO_SIG202_IN_SEL : R/W; bitpos: [7]; default: 0; + * set this bit to bypass GPIO. 1:do not bypass GPIO. 0:bypass GPIO. + */ + +#define GPIO_SIG202_IN_SEL (BIT(7)) +#define GPIO_SIG202_IN_SEL_M (GPIO_SIG202_IN_SEL_V << GPIO_SIG202_IN_SEL_S) +#define GPIO_SIG202_IN_SEL_V 0x00000001 +#define GPIO_SIG202_IN_SEL_S 7 + +/* GPIO_FUNC202_IN_INV_SEL : R/W; bitpos: [6]; default: 0; + * set this bit to invert input signal. 1:invert. 0:not invert. + */ + +#define GPIO_FUNC202_IN_INV_SEL (BIT(6)) +#define GPIO_FUNC202_IN_INV_SEL_M (GPIO_FUNC202_IN_INV_SEL_V << GPIO_FUNC202_IN_INV_SEL_S) +#define GPIO_FUNC202_IN_INV_SEL_V 0x00000001 +#define GPIO_FUNC202_IN_INV_SEL_S 6 + +/* GPIO_FUNC202_IN_SEL : R/W; bitpos: [5:0]; default: 0; + * set this value: s=0-53: connect GPIO[s] to this port. s=0x38: set this + * port always high level. s=0x3C: set this port always low level. + */ + +#define GPIO_FUNC202_IN_SEL 0x0000003f +#define GPIO_FUNC202_IN_SEL_M (GPIO_FUNC202_IN_SEL_V << GPIO_FUNC202_IN_SEL_S) +#define GPIO_FUNC202_IN_SEL_V 0x0000003f +#define GPIO_FUNC202_IN_SEL_S 0 + +/* GPIO_FUNC203_IN_SEL_CFG_REG register + * GPIO input function configuration register + */ + +#define GPIO_FUNC203_IN_SEL_CFG_REG (DR_REG_GPIO_BASE + 0x480) + +/* GPIO_SIG203_IN_SEL : R/W; bitpos: [7]; default: 0; + * set this bit to bypass GPIO. 1:do not bypass GPIO. 0:bypass GPIO. + */ + +#define GPIO_SIG203_IN_SEL (BIT(7)) +#define GPIO_SIG203_IN_SEL_M (GPIO_SIG203_IN_SEL_V << GPIO_SIG203_IN_SEL_S) +#define GPIO_SIG203_IN_SEL_V 0x00000001 +#define GPIO_SIG203_IN_SEL_S 7 + +/* GPIO_FUNC203_IN_INV_SEL : R/W; bitpos: [6]; default: 0; + * set this bit to invert input signal. 1:invert. 0:not invert. + */ + +#define GPIO_FUNC203_IN_INV_SEL (BIT(6)) +#define GPIO_FUNC203_IN_INV_SEL_M (GPIO_FUNC203_IN_INV_SEL_V << GPIO_FUNC203_IN_INV_SEL_S) +#define GPIO_FUNC203_IN_INV_SEL_V 0x00000001 +#define GPIO_FUNC203_IN_INV_SEL_S 6 + +/* GPIO_FUNC203_IN_SEL : R/W; bitpos: [5:0]; default: 0; + * set this value: s=0-53: connect GPIO[s] to this port. s=0x38: set this + * port always high level. s=0x3C: set this port always low level. + */ + +#define GPIO_FUNC203_IN_SEL 0x0000003f +#define GPIO_FUNC203_IN_SEL_M (GPIO_FUNC203_IN_SEL_V << GPIO_FUNC203_IN_SEL_S) +#define GPIO_FUNC203_IN_SEL_V 0x0000003f +#define GPIO_FUNC203_IN_SEL_S 0 + +/* GPIO_FUNC204_IN_SEL_CFG_REG register + * GPIO input function configuration register + */ + +#define GPIO_FUNC204_IN_SEL_CFG_REG (DR_REG_GPIO_BASE + 0x484) + +/* GPIO_SIG204_IN_SEL : R/W; bitpos: [7]; default: 0; + * set this bit to bypass GPIO. 1:do not bypass GPIO. 0:bypass GPIO. + */ + +#define GPIO_SIG204_IN_SEL (BIT(7)) +#define GPIO_SIG204_IN_SEL_M (GPIO_SIG204_IN_SEL_V << GPIO_SIG204_IN_SEL_S) +#define GPIO_SIG204_IN_SEL_V 0x00000001 +#define GPIO_SIG204_IN_SEL_S 7 + +/* GPIO_FUNC204_IN_INV_SEL : R/W; bitpos: [6]; default: 0; + * set this bit to invert input signal. 1:invert. 0:not invert. + */ + +#define GPIO_FUNC204_IN_INV_SEL (BIT(6)) +#define GPIO_FUNC204_IN_INV_SEL_M (GPIO_FUNC204_IN_INV_SEL_V << GPIO_FUNC204_IN_INV_SEL_S) +#define GPIO_FUNC204_IN_INV_SEL_V 0x00000001 +#define GPIO_FUNC204_IN_INV_SEL_S 6 + +/* GPIO_FUNC204_IN_SEL : R/W; bitpos: [5:0]; default: 0; + * set this value: s=0-53: connect GPIO[s] to this port. s=0x38: set this + * port always high level. s=0x3C: set this port always low level. + */ + +#define GPIO_FUNC204_IN_SEL 0x0000003f +#define GPIO_FUNC204_IN_SEL_M (GPIO_FUNC204_IN_SEL_V << GPIO_FUNC204_IN_SEL_S) +#define GPIO_FUNC204_IN_SEL_V 0x0000003f +#define GPIO_FUNC204_IN_SEL_S 0 + +/* GPIO_FUNC205_IN_SEL_CFG_REG register + * GPIO input function configuration register + */ + +#define GPIO_FUNC205_IN_SEL_CFG_REG (DR_REG_GPIO_BASE + 0x488) + +/* GPIO_SIG205_IN_SEL : R/W; bitpos: [7]; default: 0; + * set this bit to bypass GPIO. 1:do not bypass GPIO. 0:bypass GPIO. + */ + +#define GPIO_SIG205_IN_SEL (BIT(7)) +#define GPIO_SIG205_IN_SEL_M (GPIO_SIG205_IN_SEL_V << GPIO_SIG205_IN_SEL_S) +#define GPIO_SIG205_IN_SEL_V 0x00000001 +#define GPIO_SIG205_IN_SEL_S 7 + +/* GPIO_FUNC205_IN_INV_SEL : R/W; bitpos: [6]; default: 0; + * set this bit to invert input signal. 1:invert. 0:not invert. + */ + +#define GPIO_FUNC205_IN_INV_SEL (BIT(6)) +#define GPIO_FUNC205_IN_INV_SEL_M (GPIO_FUNC205_IN_INV_SEL_V << GPIO_FUNC205_IN_INV_SEL_S) +#define GPIO_FUNC205_IN_INV_SEL_V 0x00000001 +#define GPIO_FUNC205_IN_INV_SEL_S 6 + +/* GPIO_FUNC205_IN_SEL : R/W; bitpos: [5:0]; default: 0; + * set this value: s=0-53: connect GPIO[s] to this port. s=0x38: set this + * port always high level. s=0x3C: set this port always low level. + */ + +#define GPIO_FUNC205_IN_SEL 0x0000003f +#define GPIO_FUNC205_IN_SEL_M (GPIO_FUNC205_IN_SEL_V << GPIO_FUNC205_IN_SEL_S) +#define GPIO_FUNC205_IN_SEL_V 0x0000003f +#define GPIO_FUNC205_IN_SEL_S 0 + +/* GPIO_FUNC206_IN_SEL_CFG_REG register + * GPIO input function configuration register + */ + +#define GPIO_FUNC206_IN_SEL_CFG_REG (DR_REG_GPIO_BASE + 0x48c) + +/* GPIO_SIG206_IN_SEL : R/W; bitpos: [7]; default: 0; + * set this bit to bypass GPIO. 1:do not bypass GPIO. 0:bypass GPIO. + */ + +#define GPIO_SIG206_IN_SEL (BIT(7)) +#define GPIO_SIG206_IN_SEL_M (GPIO_SIG206_IN_SEL_V << GPIO_SIG206_IN_SEL_S) +#define GPIO_SIG206_IN_SEL_V 0x00000001 +#define GPIO_SIG206_IN_SEL_S 7 + +/* GPIO_FUNC206_IN_INV_SEL : R/W; bitpos: [6]; default: 0; + * set this bit to invert input signal. 1:invert. 0:not invert. + */ + +#define GPIO_FUNC206_IN_INV_SEL (BIT(6)) +#define GPIO_FUNC206_IN_INV_SEL_M (GPIO_FUNC206_IN_INV_SEL_V << GPIO_FUNC206_IN_INV_SEL_S) +#define GPIO_FUNC206_IN_INV_SEL_V 0x00000001 +#define GPIO_FUNC206_IN_INV_SEL_S 6 + +/* GPIO_FUNC206_IN_SEL : R/W; bitpos: [5:0]; default: 0; + * set this value: s=0-53: connect GPIO[s] to this port. s=0x38: set this + * port always high level. s=0x3C: set this port always low level. + */ + +#define GPIO_FUNC206_IN_SEL 0x0000003f +#define GPIO_FUNC206_IN_SEL_M (GPIO_FUNC206_IN_SEL_V << GPIO_FUNC206_IN_SEL_S) +#define GPIO_FUNC206_IN_SEL_V 0x0000003f +#define GPIO_FUNC206_IN_SEL_S 0 + +/* GPIO_FUNC207_IN_SEL_CFG_REG register + * GPIO input function configuration register + */ + +#define GPIO_FUNC207_IN_SEL_CFG_REG (DR_REG_GPIO_BASE + 0x490) + +/* GPIO_SIG207_IN_SEL : R/W; bitpos: [7]; default: 0; + * set this bit to bypass GPIO. 1:do not bypass GPIO. 0:bypass GPIO. + */ + +#define GPIO_SIG207_IN_SEL (BIT(7)) +#define GPIO_SIG207_IN_SEL_M (GPIO_SIG207_IN_SEL_V << GPIO_SIG207_IN_SEL_S) +#define GPIO_SIG207_IN_SEL_V 0x00000001 +#define GPIO_SIG207_IN_SEL_S 7 + +/* GPIO_FUNC207_IN_INV_SEL : R/W; bitpos: [6]; default: 0; + * set this bit to invert input signal. 1:invert. 0:not invert. + */ + +#define GPIO_FUNC207_IN_INV_SEL (BIT(6)) +#define GPIO_FUNC207_IN_INV_SEL_M (GPIO_FUNC207_IN_INV_SEL_V << GPIO_FUNC207_IN_INV_SEL_S) +#define GPIO_FUNC207_IN_INV_SEL_V 0x00000001 +#define GPIO_FUNC207_IN_INV_SEL_S 6 + +/* GPIO_FUNC207_IN_SEL : R/W; bitpos: [5:0]; default: 0; + * set this value: s=0-53: connect GPIO[s] to this port. s=0x38: set this + * port always high level. s=0x3C: set this port always low level. + */ + +#define GPIO_FUNC207_IN_SEL 0x0000003f +#define GPIO_FUNC207_IN_SEL_M (GPIO_FUNC207_IN_SEL_V << GPIO_FUNC207_IN_SEL_S) +#define GPIO_FUNC207_IN_SEL_V 0x0000003f +#define GPIO_FUNC207_IN_SEL_S 0 + +/* GPIO_FUNC208_IN_SEL_CFG_REG register + * GPIO input function configuration register + */ + +#define GPIO_FUNC208_IN_SEL_CFG_REG (DR_REG_GPIO_BASE + 0x494) + +/* GPIO_SIG208_IN_SEL : R/W; bitpos: [7]; default: 0; + * set this bit to bypass GPIO. 1:do not bypass GPIO. 0:bypass GPIO. + */ + +#define GPIO_SIG208_IN_SEL (BIT(7)) +#define GPIO_SIG208_IN_SEL_M (GPIO_SIG208_IN_SEL_V << GPIO_SIG208_IN_SEL_S) +#define GPIO_SIG208_IN_SEL_V 0x00000001 +#define GPIO_SIG208_IN_SEL_S 7 + +/* GPIO_FUNC208_IN_INV_SEL : R/W; bitpos: [6]; default: 0; + * set this bit to invert input signal. 1:invert. 0:not invert. + */ + +#define GPIO_FUNC208_IN_INV_SEL (BIT(6)) +#define GPIO_FUNC208_IN_INV_SEL_M (GPIO_FUNC208_IN_INV_SEL_V << GPIO_FUNC208_IN_INV_SEL_S) +#define GPIO_FUNC208_IN_INV_SEL_V 0x00000001 +#define GPIO_FUNC208_IN_INV_SEL_S 6 + +/* GPIO_FUNC208_IN_SEL : R/W; bitpos: [5:0]; default: 0; + * set this value: s=0-53: connect GPIO[s] to this port. s=0x38: set this + * port always high level. s=0x3C: set this port always low level. + */ + +#define GPIO_FUNC208_IN_SEL 0x0000003f +#define GPIO_FUNC208_IN_SEL_M (GPIO_FUNC208_IN_SEL_V << GPIO_FUNC208_IN_SEL_S) +#define GPIO_FUNC208_IN_SEL_V 0x0000003f +#define GPIO_FUNC208_IN_SEL_S 0 + +/* GPIO_FUNC209_IN_SEL_CFG_REG register + * GPIO input function configuration register + */ + +#define GPIO_FUNC209_IN_SEL_CFG_REG (DR_REG_GPIO_BASE + 0x498) + +/* GPIO_SIG209_IN_SEL : R/W; bitpos: [7]; default: 0; + * set this bit to bypass GPIO. 1:do not bypass GPIO. 0:bypass GPIO. + */ + +#define GPIO_SIG209_IN_SEL (BIT(7)) +#define GPIO_SIG209_IN_SEL_M (GPIO_SIG209_IN_SEL_V << GPIO_SIG209_IN_SEL_S) +#define GPIO_SIG209_IN_SEL_V 0x00000001 +#define GPIO_SIG209_IN_SEL_S 7 + +/* GPIO_FUNC209_IN_INV_SEL : R/W; bitpos: [6]; default: 0; + * set this bit to invert input signal. 1:invert. 0:not invert. + */ + +#define GPIO_FUNC209_IN_INV_SEL (BIT(6)) +#define GPIO_FUNC209_IN_INV_SEL_M (GPIO_FUNC209_IN_INV_SEL_V << GPIO_FUNC209_IN_INV_SEL_S) +#define GPIO_FUNC209_IN_INV_SEL_V 0x00000001 +#define GPIO_FUNC209_IN_INV_SEL_S 6 + +/* GPIO_FUNC209_IN_SEL : R/W; bitpos: [5:0]; default: 0; + * set this value: s=0-53: connect GPIO[s] to this port. s=0x38: set this + * port always high level. s=0x3C: set this port always low level. + */ + +#define GPIO_FUNC209_IN_SEL 0x0000003f +#define GPIO_FUNC209_IN_SEL_M (GPIO_FUNC209_IN_SEL_V << GPIO_FUNC209_IN_SEL_S) +#define GPIO_FUNC209_IN_SEL_V 0x0000003f +#define GPIO_FUNC209_IN_SEL_S 0 + +/* GPIO_FUNC210_IN_SEL_CFG_REG register + * GPIO input function configuration register + */ + +#define GPIO_FUNC210_IN_SEL_CFG_REG (DR_REG_GPIO_BASE + 0x49c) + +/* GPIO_SIG210_IN_SEL : R/W; bitpos: [7]; default: 0; + * set this bit to bypass GPIO. 1:do not bypass GPIO. 0:bypass GPIO. + */ + +#define GPIO_SIG210_IN_SEL (BIT(7)) +#define GPIO_SIG210_IN_SEL_M (GPIO_SIG210_IN_SEL_V << GPIO_SIG210_IN_SEL_S) +#define GPIO_SIG210_IN_SEL_V 0x00000001 +#define GPIO_SIG210_IN_SEL_S 7 + +/* GPIO_FUNC210_IN_INV_SEL : R/W; bitpos: [6]; default: 0; + * set this bit to invert input signal. 1:invert. 0:not invert. + */ + +#define GPIO_FUNC210_IN_INV_SEL (BIT(6)) +#define GPIO_FUNC210_IN_INV_SEL_M (GPIO_FUNC210_IN_INV_SEL_V << GPIO_FUNC210_IN_INV_SEL_S) +#define GPIO_FUNC210_IN_INV_SEL_V 0x00000001 +#define GPIO_FUNC210_IN_INV_SEL_S 6 + +/* GPIO_FUNC210_IN_SEL : R/W; bitpos: [5:0]; default: 0; + * set this value: s=0-53: connect GPIO[s] to this port. s=0x38: set this + * port always high level. s=0x3C: set this port always low level. + */ + +#define GPIO_FUNC210_IN_SEL 0x0000003f +#define GPIO_FUNC210_IN_SEL_M (GPIO_FUNC210_IN_SEL_V << GPIO_FUNC210_IN_SEL_S) +#define GPIO_FUNC210_IN_SEL_V 0x0000003f +#define GPIO_FUNC210_IN_SEL_S 0 + +/* GPIO_FUNC211_IN_SEL_CFG_REG register + * GPIO input function configuration register + */ + +#define GPIO_FUNC211_IN_SEL_CFG_REG (DR_REG_GPIO_BASE + 0x4a0) + +/* GPIO_SIG211_IN_SEL : R/W; bitpos: [7]; default: 0; + * set this bit to bypass GPIO. 1:do not bypass GPIO. 0:bypass GPIO. + */ + +#define GPIO_SIG211_IN_SEL (BIT(7)) +#define GPIO_SIG211_IN_SEL_M (GPIO_SIG211_IN_SEL_V << GPIO_SIG211_IN_SEL_S) +#define GPIO_SIG211_IN_SEL_V 0x00000001 +#define GPIO_SIG211_IN_SEL_S 7 + +/* GPIO_FUNC211_IN_INV_SEL : R/W; bitpos: [6]; default: 0; + * set this bit to invert input signal. 1:invert. 0:not invert. + */ + +#define GPIO_FUNC211_IN_INV_SEL (BIT(6)) +#define GPIO_FUNC211_IN_INV_SEL_M (GPIO_FUNC211_IN_INV_SEL_V << GPIO_FUNC211_IN_INV_SEL_S) +#define GPIO_FUNC211_IN_INV_SEL_V 0x00000001 +#define GPIO_FUNC211_IN_INV_SEL_S 6 + +/* GPIO_FUNC211_IN_SEL : R/W; bitpos: [5:0]; default: 0; + * set this value: s=0-53: connect GPIO[s] to this port. s=0x38: set this + * port always high level. s=0x3C: set this port always low level. + */ + +#define GPIO_FUNC211_IN_SEL 0x0000003f +#define GPIO_FUNC211_IN_SEL_M (GPIO_FUNC211_IN_SEL_V << GPIO_FUNC211_IN_SEL_S) +#define GPIO_FUNC211_IN_SEL_V 0x0000003f +#define GPIO_FUNC211_IN_SEL_S 0 + +/* GPIO_FUNC212_IN_SEL_CFG_REG register + * GPIO input function configuration register + */ + +#define GPIO_FUNC212_IN_SEL_CFG_REG (DR_REG_GPIO_BASE + 0x4a4) + +/* GPIO_SIG212_IN_SEL : R/W; bitpos: [7]; default: 0; + * set this bit to bypass GPIO. 1:do not bypass GPIO. 0:bypass GPIO. + */ + +#define GPIO_SIG212_IN_SEL (BIT(7)) +#define GPIO_SIG212_IN_SEL_M (GPIO_SIG212_IN_SEL_V << GPIO_SIG212_IN_SEL_S) +#define GPIO_SIG212_IN_SEL_V 0x00000001 +#define GPIO_SIG212_IN_SEL_S 7 + +/* GPIO_FUNC212_IN_INV_SEL : R/W; bitpos: [6]; default: 0; + * set this bit to invert input signal. 1:invert. 0:not invert. + */ + +#define GPIO_FUNC212_IN_INV_SEL (BIT(6)) +#define GPIO_FUNC212_IN_INV_SEL_M (GPIO_FUNC212_IN_INV_SEL_V << GPIO_FUNC212_IN_INV_SEL_S) +#define GPIO_FUNC212_IN_INV_SEL_V 0x00000001 +#define GPIO_FUNC212_IN_INV_SEL_S 6 + +/* GPIO_FUNC212_IN_SEL : R/W; bitpos: [5:0]; default: 0; + * set this value: s=0-53: connect GPIO[s] to this port. s=0x38: set this + * port always high level. s=0x3C: set this port always low level. + */ + +#define GPIO_FUNC212_IN_SEL 0x0000003f +#define GPIO_FUNC212_IN_SEL_M (GPIO_FUNC212_IN_SEL_V << GPIO_FUNC212_IN_SEL_S) +#define GPIO_FUNC212_IN_SEL_V 0x0000003f +#define GPIO_FUNC212_IN_SEL_S 0 + +/* GPIO_FUNC213_IN_SEL_CFG_REG register + * GPIO input function configuration register + */ + +#define GPIO_FUNC213_IN_SEL_CFG_REG (DR_REG_GPIO_BASE + 0x4a8) + +/* GPIO_SIG213_IN_SEL : R/W; bitpos: [7]; default: 0; + * set this bit to bypass GPIO. 1:do not bypass GPIO. 0:bypass GPIO. + */ + +#define GPIO_SIG213_IN_SEL (BIT(7)) +#define GPIO_SIG213_IN_SEL_M (GPIO_SIG213_IN_SEL_V << GPIO_SIG213_IN_SEL_S) +#define GPIO_SIG213_IN_SEL_V 0x00000001 +#define GPIO_SIG213_IN_SEL_S 7 + +/* GPIO_FUNC213_IN_INV_SEL : R/W; bitpos: [6]; default: 0; + * set this bit to invert input signal. 1:invert. 0:not invert. + */ + +#define GPIO_FUNC213_IN_INV_SEL (BIT(6)) +#define GPIO_FUNC213_IN_INV_SEL_M (GPIO_FUNC213_IN_INV_SEL_V << GPIO_FUNC213_IN_INV_SEL_S) +#define GPIO_FUNC213_IN_INV_SEL_V 0x00000001 +#define GPIO_FUNC213_IN_INV_SEL_S 6 + +/* GPIO_FUNC213_IN_SEL : R/W; bitpos: [5:0]; default: 0; + * set this value: s=0-53: connect GPIO[s] to this port. s=0x38: set this + * port always high level. s=0x3C: set this port always low level. + */ + +#define GPIO_FUNC213_IN_SEL 0x0000003f +#define GPIO_FUNC213_IN_SEL_M (GPIO_FUNC213_IN_SEL_V << GPIO_FUNC213_IN_SEL_S) +#define GPIO_FUNC213_IN_SEL_V 0x0000003f +#define GPIO_FUNC213_IN_SEL_S 0 + +/* GPIO_FUNC214_IN_SEL_CFG_REG register + * GPIO input function configuration register + */ + +#define GPIO_FUNC214_IN_SEL_CFG_REG (DR_REG_GPIO_BASE + 0x4ac) + +/* GPIO_SIG214_IN_SEL : R/W; bitpos: [7]; default: 0; + * set this bit to bypass GPIO. 1:do not bypass GPIO. 0:bypass GPIO. + */ + +#define GPIO_SIG214_IN_SEL (BIT(7)) +#define GPIO_SIG214_IN_SEL_M (GPIO_SIG214_IN_SEL_V << GPIO_SIG214_IN_SEL_S) +#define GPIO_SIG214_IN_SEL_V 0x00000001 +#define GPIO_SIG214_IN_SEL_S 7 + +/* GPIO_FUNC214_IN_INV_SEL : R/W; bitpos: [6]; default: 0; + * set this bit to invert input signal. 1:invert. 0:not invert. + */ + +#define GPIO_FUNC214_IN_INV_SEL (BIT(6)) +#define GPIO_FUNC214_IN_INV_SEL_M (GPIO_FUNC214_IN_INV_SEL_V << GPIO_FUNC214_IN_INV_SEL_S) +#define GPIO_FUNC214_IN_INV_SEL_V 0x00000001 +#define GPIO_FUNC214_IN_INV_SEL_S 6 + +/* GPIO_FUNC214_IN_SEL : R/W; bitpos: [5:0]; default: 0; + * set this value: s=0-53: connect GPIO[s] to this port. s=0x38: set this + * port always high level. s=0x3C: set this port always low level. + */ + +#define GPIO_FUNC214_IN_SEL 0x0000003f +#define GPIO_FUNC214_IN_SEL_M (GPIO_FUNC214_IN_SEL_V << GPIO_FUNC214_IN_SEL_S) +#define GPIO_FUNC214_IN_SEL_V 0x0000003f +#define GPIO_FUNC214_IN_SEL_S 0 + +/* GPIO_FUNC215_IN_SEL_CFG_REG register + * GPIO input function configuration register + */ + +#define GPIO_FUNC215_IN_SEL_CFG_REG (DR_REG_GPIO_BASE + 0x4b0) + +/* GPIO_SIG215_IN_SEL : R/W; bitpos: [7]; default: 0; + * set this bit to bypass GPIO. 1:do not bypass GPIO. 0:bypass GPIO. + */ + +#define GPIO_SIG215_IN_SEL (BIT(7)) +#define GPIO_SIG215_IN_SEL_M (GPIO_SIG215_IN_SEL_V << GPIO_SIG215_IN_SEL_S) +#define GPIO_SIG215_IN_SEL_V 0x00000001 +#define GPIO_SIG215_IN_SEL_S 7 + +/* GPIO_FUNC215_IN_INV_SEL : R/W; bitpos: [6]; default: 0; + * set this bit to invert input signal. 1:invert. 0:not invert. + */ + +#define GPIO_FUNC215_IN_INV_SEL (BIT(6)) +#define GPIO_FUNC215_IN_INV_SEL_M (GPIO_FUNC215_IN_INV_SEL_V << GPIO_FUNC215_IN_INV_SEL_S) +#define GPIO_FUNC215_IN_INV_SEL_V 0x00000001 +#define GPIO_FUNC215_IN_INV_SEL_S 6 + +/* GPIO_FUNC215_IN_SEL : R/W; bitpos: [5:0]; default: 0; + * set this value: s=0-53: connect GPIO[s] to this port. s=0x38: set this + * port always high level. s=0x3C: set this port always low level. + */ + +#define GPIO_FUNC215_IN_SEL 0x0000003f +#define GPIO_FUNC215_IN_SEL_M (GPIO_FUNC215_IN_SEL_V << GPIO_FUNC215_IN_SEL_S) +#define GPIO_FUNC215_IN_SEL_V 0x0000003f +#define GPIO_FUNC215_IN_SEL_S 0 + +/* GPIO_FUNC216_IN_SEL_CFG_REG register + * GPIO input function configuration register + */ + +#define GPIO_FUNC216_IN_SEL_CFG_REG (DR_REG_GPIO_BASE + 0x4b4) + +/* GPIO_SIG216_IN_SEL : R/W; bitpos: [7]; default: 0; + * set this bit to bypass GPIO. 1:do not bypass GPIO. 0:bypass GPIO. + */ + +#define GPIO_SIG216_IN_SEL (BIT(7)) +#define GPIO_SIG216_IN_SEL_M (GPIO_SIG216_IN_SEL_V << GPIO_SIG216_IN_SEL_S) +#define GPIO_SIG216_IN_SEL_V 0x00000001 +#define GPIO_SIG216_IN_SEL_S 7 + +/* GPIO_FUNC216_IN_INV_SEL : R/W; bitpos: [6]; default: 0; + * set this bit to invert input signal. 1:invert. 0:not invert. + */ + +#define GPIO_FUNC216_IN_INV_SEL (BIT(6)) +#define GPIO_FUNC216_IN_INV_SEL_M (GPIO_FUNC216_IN_INV_SEL_V << GPIO_FUNC216_IN_INV_SEL_S) +#define GPIO_FUNC216_IN_INV_SEL_V 0x00000001 +#define GPIO_FUNC216_IN_INV_SEL_S 6 + +/* GPIO_FUNC216_IN_SEL : R/W; bitpos: [5:0]; default: 0; + * set this value: s=0-53: connect GPIO[s] to this port. s=0x38: set this + * port always high level. s=0x3C: set this port always low level. + */ + +#define GPIO_FUNC216_IN_SEL 0x0000003f +#define GPIO_FUNC216_IN_SEL_M (GPIO_FUNC216_IN_SEL_V << GPIO_FUNC216_IN_SEL_S) +#define GPIO_FUNC216_IN_SEL_V 0x0000003f +#define GPIO_FUNC216_IN_SEL_S 0 + +/* GPIO_FUNC217_IN_SEL_CFG_REG register + * GPIO input function configuration register + */ + +#define GPIO_FUNC217_IN_SEL_CFG_REG (DR_REG_GPIO_BASE + 0x4b8) + +/* GPIO_SIG217_IN_SEL : R/W; bitpos: [7]; default: 0; + * set this bit to bypass GPIO. 1:do not bypass GPIO. 0:bypass GPIO. + */ + +#define GPIO_SIG217_IN_SEL (BIT(7)) +#define GPIO_SIG217_IN_SEL_M (GPIO_SIG217_IN_SEL_V << GPIO_SIG217_IN_SEL_S) +#define GPIO_SIG217_IN_SEL_V 0x00000001 +#define GPIO_SIG217_IN_SEL_S 7 + +/* GPIO_FUNC217_IN_INV_SEL : R/W; bitpos: [6]; default: 0; + * set this bit to invert input signal. 1:invert. 0:not invert. + */ + +#define GPIO_FUNC217_IN_INV_SEL (BIT(6)) +#define GPIO_FUNC217_IN_INV_SEL_M (GPIO_FUNC217_IN_INV_SEL_V << GPIO_FUNC217_IN_INV_SEL_S) +#define GPIO_FUNC217_IN_INV_SEL_V 0x00000001 +#define GPIO_FUNC217_IN_INV_SEL_S 6 + +/* GPIO_FUNC217_IN_SEL : R/W; bitpos: [5:0]; default: 0; + * set this value: s=0-53: connect GPIO[s] to this port. s=0x38: set this + * port always high level. s=0x3C: set this port always low level. + */ + +#define GPIO_FUNC217_IN_SEL 0x0000003f +#define GPIO_FUNC217_IN_SEL_M (GPIO_FUNC217_IN_SEL_V << GPIO_FUNC217_IN_SEL_S) +#define GPIO_FUNC217_IN_SEL_V 0x0000003f +#define GPIO_FUNC217_IN_SEL_S 0 + +/* GPIO_FUNC218_IN_SEL_CFG_REG register + * GPIO input function configuration register + */ + +#define GPIO_FUNC218_IN_SEL_CFG_REG (DR_REG_GPIO_BASE + 0x4bc) + +/* GPIO_SIG218_IN_SEL : R/W; bitpos: [7]; default: 0; + * set this bit to bypass GPIO. 1:do not bypass GPIO. 0:bypass GPIO. + */ + +#define GPIO_SIG218_IN_SEL (BIT(7)) +#define GPIO_SIG218_IN_SEL_M (GPIO_SIG218_IN_SEL_V << GPIO_SIG218_IN_SEL_S) +#define GPIO_SIG218_IN_SEL_V 0x00000001 +#define GPIO_SIG218_IN_SEL_S 7 + +/* GPIO_FUNC218_IN_INV_SEL : R/W; bitpos: [6]; default: 0; + * set this bit to invert input signal. 1:invert. 0:not invert. + */ + +#define GPIO_FUNC218_IN_INV_SEL (BIT(6)) +#define GPIO_FUNC218_IN_INV_SEL_M (GPIO_FUNC218_IN_INV_SEL_V << GPIO_FUNC218_IN_INV_SEL_S) +#define GPIO_FUNC218_IN_INV_SEL_V 0x00000001 +#define GPIO_FUNC218_IN_INV_SEL_S 6 + +/* GPIO_FUNC218_IN_SEL : R/W; bitpos: [5:0]; default: 0; + * set this value: s=0-53: connect GPIO[s] to this port. s=0x38: set this + * port always high level. s=0x3C: set this port always low level. + */ + +#define GPIO_FUNC218_IN_SEL 0x0000003f +#define GPIO_FUNC218_IN_SEL_M (GPIO_FUNC218_IN_SEL_V << GPIO_FUNC218_IN_SEL_S) +#define GPIO_FUNC218_IN_SEL_V 0x0000003f +#define GPIO_FUNC218_IN_SEL_S 0 + +/* GPIO_FUNC219_IN_SEL_CFG_REG register + * GPIO input function configuration register + */ + +#define GPIO_FUNC219_IN_SEL_CFG_REG (DR_REG_GPIO_BASE + 0x4c0) + +/* GPIO_SIG219_IN_SEL : R/W; bitpos: [7]; default: 0; + * set this bit to bypass GPIO. 1:do not bypass GPIO. 0:bypass GPIO. + */ + +#define GPIO_SIG219_IN_SEL (BIT(7)) +#define GPIO_SIG219_IN_SEL_M (GPIO_SIG219_IN_SEL_V << GPIO_SIG219_IN_SEL_S) +#define GPIO_SIG219_IN_SEL_V 0x00000001 +#define GPIO_SIG219_IN_SEL_S 7 + +/* GPIO_FUNC219_IN_INV_SEL : R/W; bitpos: [6]; default: 0; + * set this bit to invert input signal. 1:invert. 0:not invert. + */ + +#define GPIO_FUNC219_IN_INV_SEL (BIT(6)) +#define GPIO_FUNC219_IN_INV_SEL_M (GPIO_FUNC219_IN_INV_SEL_V << GPIO_FUNC219_IN_INV_SEL_S) +#define GPIO_FUNC219_IN_INV_SEL_V 0x00000001 +#define GPIO_FUNC219_IN_INV_SEL_S 6 + +/* GPIO_FUNC219_IN_SEL : R/W; bitpos: [5:0]; default: 0; + * set this value: s=0-53: connect GPIO[s] to this port. s=0x38: set this + * port always high level. s=0x3C: set this port always low level. + */ + +#define GPIO_FUNC219_IN_SEL 0x0000003f +#define GPIO_FUNC219_IN_SEL_M (GPIO_FUNC219_IN_SEL_V << GPIO_FUNC219_IN_SEL_S) +#define GPIO_FUNC219_IN_SEL_V 0x0000003f +#define GPIO_FUNC219_IN_SEL_S 0 + +/* GPIO_FUNC220_IN_SEL_CFG_REG register + * GPIO input function configuration register + */ + +#define GPIO_FUNC220_IN_SEL_CFG_REG (DR_REG_GPIO_BASE + 0x4c4) + +/* GPIO_SIG220_IN_SEL : R/W; bitpos: [7]; default: 0; + * set this bit to bypass GPIO. 1:do not bypass GPIO. 0:bypass GPIO. + */ + +#define GPIO_SIG220_IN_SEL (BIT(7)) +#define GPIO_SIG220_IN_SEL_M (GPIO_SIG220_IN_SEL_V << GPIO_SIG220_IN_SEL_S) +#define GPIO_SIG220_IN_SEL_V 0x00000001 +#define GPIO_SIG220_IN_SEL_S 7 + +/* GPIO_FUNC220_IN_INV_SEL : R/W; bitpos: [6]; default: 0; + * set this bit to invert input signal. 1:invert. 0:not invert. + */ + +#define GPIO_FUNC220_IN_INV_SEL (BIT(6)) +#define GPIO_FUNC220_IN_INV_SEL_M (GPIO_FUNC220_IN_INV_SEL_V << GPIO_FUNC220_IN_INV_SEL_S) +#define GPIO_FUNC220_IN_INV_SEL_V 0x00000001 +#define GPIO_FUNC220_IN_INV_SEL_S 6 + +/* GPIO_FUNC220_IN_SEL : R/W; bitpos: [5:0]; default: 0; + * set this value: s=0-53: connect GPIO[s] to this port. s=0x38: set this + * port always high level. s=0x3C: set this port always low level. + */ + +#define GPIO_FUNC220_IN_SEL 0x0000003f +#define GPIO_FUNC220_IN_SEL_M (GPIO_FUNC220_IN_SEL_V << GPIO_FUNC220_IN_SEL_S) +#define GPIO_FUNC220_IN_SEL_V 0x0000003f +#define GPIO_FUNC220_IN_SEL_S 0 + +/* GPIO_FUNC221_IN_SEL_CFG_REG register + * GPIO input function configuration register + */ + +#define GPIO_FUNC221_IN_SEL_CFG_REG (DR_REG_GPIO_BASE + 0x4c8) + +/* GPIO_SIG221_IN_SEL : R/W; bitpos: [7]; default: 0; + * set this bit to bypass GPIO. 1:do not bypass GPIO. 0:bypass GPIO. + */ + +#define GPIO_SIG221_IN_SEL (BIT(7)) +#define GPIO_SIG221_IN_SEL_M (GPIO_SIG221_IN_SEL_V << GPIO_SIG221_IN_SEL_S) +#define GPIO_SIG221_IN_SEL_V 0x00000001 +#define GPIO_SIG221_IN_SEL_S 7 + +/* GPIO_FUNC221_IN_INV_SEL : R/W; bitpos: [6]; default: 0; + * set this bit to invert input signal. 1:invert. 0:not invert. + */ + +#define GPIO_FUNC221_IN_INV_SEL (BIT(6)) +#define GPIO_FUNC221_IN_INV_SEL_M (GPIO_FUNC221_IN_INV_SEL_V << GPIO_FUNC221_IN_INV_SEL_S) +#define GPIO_FUNC221_IN_INV_SEL_V 0x00000001 +#define GPIO_FUNC221_IN_INV_SEL_S 6 + +/* GPIO_FUNC221_IN_SEL : R/W; bitpos: [5:0]; default: 0; + * set this value: s=0-53: connect GPIO[s] to this port. s=0x38: set this + * port always high level. s=0x3C: set this port always low level. + */ + +#define GPIO_FUNC221_IN_SEL 0x0000003f +#define GPIO_FUNC221_IN_SEL_M (GPIO_FUNC221_IN_SEL_V << GPIO_FUNC221_IN_SEL_S) +#define GPIO_FUNC221_IN_SEL_V 0x0000003f +#define GPIO_FUNC221_IN_SEL_S 0 + +/* GPIO_FUNC222_IN_SEL_CFG_REG register + * GPIO input function configuration register + */ + +#define GPIO_FUNC222_IN_SEL_CFG_REG (DR_REG_GPIO_BASE + 0x4cc) + +/* GPIO_SIG222_IN_SEL : R/W; bitpos: [7]; default: 0; + * set this bit to bypass GPIO. 1:do not bypass GPIO. 0:bypass GPIO. + */ + +#define GPIO_SIG222_IN_SEL (BIT(7)) +#define GPIO_SIG222_IN_SEL_M (GPIO_SIG222_IN_SEL_V << GPIO_SIG222_IN_SEL_S) +#define GPIO_SIG222_IN_SEL_V 0x00000001 +#define GPIO_SIG222_IN_SEL_S 7 + +/* GPIO_FUNC222_IN_INV_SEL : R/W; bitpos: [6]; default: 0; + * set this bit to invert input signal. 1:invert. 0:not invert. + */ + +#define GPIO_FUNC222_IN_INV_SEL (BIT(6)) +#define GPIO_FUNC222_IN_INV_SEL_M (GPIO_FUNC222_IN_INV_SEL_V << GPIO_FUNC222_IN_INV_SEL_S) +#define GPIO_FUNC222_IN_INV_SEL_V 0x00000001 +#define GPIO_FUNC222_IN_INV_SEL_S 6 + +/* GPIO_FUNC222_IN_SEL : R/W; bitpos: [5:0]; default: 0; + * set this value: s=0-53: connect GPIO[s] to this port. s=0x38: set this + * port always high level. s=0x3C: set this port always low level. + */ + +#define GPIO_FUNC222_IN_SEL 0x0000003f +#define GPIO_FUNC222_IN_SEL_M (GPIO_FUNC222_IN_SEL_V << GPIO_FUNC222_IN_SEL_S) +#define GPIO_FUNC222_IN_SEL_V 0x0000003f +#define GPIO_FUNC222_IN_SEL_S 0 + +/* GPIO_FUNC223_IN_SEL_CFG_REG register + * GPIO input function configuration register + */ + +#define GPIO_FUNC223_IN_SEL_CFG_REG (DR_REG_GPIO_BASE + 0x4d0) + +/* GPIO_SIG223_IN_SEL : R/W; bitpos: [7]; default: 0; + * set this bit to bypass GPIO. 1:do not bypass GPIO. 0:bypass GPIO. + */ + +#define GPIO_SIG223_IN_SEL (BIT(7)) +#define GPIO_SIG223_IN_SEL_M (GPIO_SIG223_IN_SEL_V << GPIO_SIG223_IN_SEL_S) +#define GPIO_SIG223_IN_SEL_V 0x00000001 +#define GPIO_SIG223_IN_SEL_S 7 + +/* GPIO_FUNC223_IN_INV_SEL : R/W; bitpos: [6]; default: 0; + * set this bit to invert input signal. 1:invert. 0:not invert. + */ + +#define GPIO_FUNC223_IN_INV_SEL (BIT(6)) +#define GPIO_FUNC223_IN_INV_SEL_M (GPIO_FUNC223_IN_INV_SEL_V << GPIO_FUNC223_IN_INV_SEL_S) +#define GPIO_FUNC223_IN_INV_SEL_V 0x00000001 +#define GPIO_FUNC223_IN_INV_SEL_S 6 + +/* GPIO_FUNC223_IN_SEL : R/W; bitpos: [5:0]; default: 0; + * set this value: s=0-53: connect GPIO[s] to this port. s=0x38: set this + * port always high level. s=0x3C: set this port always low level. + */ + +#define GPIO_FUNC223_IN_SEL 0x0000003f +#define GPIO_FUNC223_IN_SEL_M (GPIO_FUNC223_IN_SEL_V << GPIO_FUNC223_IN_SEL_S) +#define GPIO_FUNC223_IN_SEL_V 0x0000003f +#define GPIO_FUNC223_IN_SEL_S 0 + +/* GPIO_FUNC224_IN_SEL_CFG_REG register + * GPIO input function configuration register + */ + +#define GPIO_FUNC224_IN_SEL_CFG_REG (DR_REG_GPIO_BASE + 0x4d4) + +/* GPIO_SIG224_IN_SEL : R/W; bitpos: [7]; default: 0; + * set this bit to bypass GPIO. 1:do not bypass GPIO. 0:bypass GPIO. + */ + +#define GPIO_SIG224_IN_SEL (BIT(7)) +#define GPIO_SIG224_IN_SEL_M (GPIO_SIG224_IN_SEL_V << GPIO_SIG224_IN_SEL_S) +#define GPIO_SIG224_IN_SEL_V 0x00000001 +#define GPIO_SIG224_IN_SEL_S 7 + +/* GPIO_FUNC224_IN_INV_SEL : R/W; bitpos: [6]; default: 0; + * set this bit to invert input signal. 1:invert. 0:not invert. + */ + +#define GPIO_FUNC224_IN_INV_SEL (BIT(6)) +#define GPIO_FUNC224_IN_INV_SEL_M (GPIO_FUNC224_IN_INV_SEL_V << GPIO_FUNC224_IN_INV_SEL_S) +#define GPIO_FUNC224_IN_INV_SEL_V 0x00000001 +#define GPIO_FUNC224_IN_INV_SEL_S 6 + +/* GPIO_FUNC224_IN_SEL : R/W; bitpos: [5:0]; default: 0; + * set this value: s=0-53: connect GPIO[s] to this port. s=0x38: set this + * port always high level. s=0x3C: set this port always low level. + */ + +#define GPIO_FUNC224_IN_SEL 0x0000003f +#define GPIO_FUNC224_IN_SEL_M (GPIO_FUNC224_IN_SEL_V << GPIO_FUNC224_IN_SEL_S) +#define GPIO_FUNC224_IN_SEL_V 0x0000003f +#define GPIO_FUNC224_IN_SEL_S 0 + +/* GPIO_FUNC225_IN_SEL_CFG_REG register + * GPIO input function configuration register + */ + +#define GPIO_FUNC225_IN_SEL_CFG_REG (DR_REG_GPIO_BASE + 0x4d8) + +/* GPIO_SIG225_IN_SEL : R/W; bitpos: [7]; default: 0; + * set this bit to bypass GPIO. 1:do not bypass GPIO. 0:bypass GPIO. + */ + +#define GPIO_SIG225_IN_SEL (BIT(7)) +#define GPIO_SIG225_IN_SEL_M (GPIO_SIG225_IN_SEL_V << GPIO_SIG225_IN_SEL_S) +#define GPIO_SIG225_IN_SEL_V 0x00000001 +#define GPIO_SIG225_IN_SEL_S 7 + +/* GPIO_FUNC225_IN_INV_SEL : R/W; bitpos: [6]; default: 0; + * set this bit to invert input signal. 1:invert. 0:not invert. + */ + +#define GPIO_FUNC225_IN_INV_SEL (BIT(6)) +#define GPIO_FUNC225_IN_INV_SEL_M (GPIO_FUNC225_IN_INV_SEL_V << GPIO_FUNC225_IN_INV_SEL_S) +#define GPIO_FUNC225_IN_INV_SEL_V 0x00000001 +#define GPIO_FUNC225_IN_INV_SEL_S 6 + +/* GPIO_FUNC225_IN_SEL : R/W; bitpos: [5:0]; default: 0; + * set this value: s=0-53: connect GPIO[s] to this port. s=0x38: set this + * port always high level. s=0x3C: set this port always low level. + */ + +#define GPIO_FUNC225_IN_SEL 0x0000003f +#define GPIO_FUNC225_IN_SEL_M (GPIO_FUNC225_IN_SEL_V << GPIO_FUNC225_IN_SEL_S) +#define GPIO_FUNC225_IN_SEL_V 0x0000003f +#define GPIO_FUNC225_IN_SEL_S 0 + +/* GPIO_FUNC226_IN_SEL_CFG_REG register + * GPIO input function configuration register + */ + +#define GPIO_FUNC226_IN_SEL_CFG_REG (DR_REG_GPIO_BASE + 0x4dc) + +/* GPIO_SIG226_IN_SEL : R/W; bitpos: [7]; default: 0; + * set this bit to bypass GPIO. 1:do not bypass GPIO. 0:bypass GPIO. + */ + +#define GPIO_SIG226_IN_SEL (BIT(7)) +#define GPIO_SIG226_IN_SEL_M (GPIO_SIG226_IN_SEL_V << GPIO_SIG226_IN_SEL_S) +#define GPIO_SIG226_IN_SEL_V 0x00000001 +#define GPIO_SIG226_IN_SEL_S 7 + +/* GPIO_FUNC226_IN_INV_SEL : R/W; bitpos: [6]; default: 0; + * set this bit to invert input signal. 1:invert. 0:not invert. + */ + +#define GPIO_FUNC226_IN_INV_SEL (BIT(6)) +#define GPIO_FUNC226_IN_INV_SEL_M (GPIO_FUNC226_IN_INV_SEL_V << GPIO_FUNC226_IN_INV_SEL_S) +#define GPIO_FUNC226_IN_INV_SEL_V 0x00000001 +#define GPIO_FUNC226_IN_INV_SEL_S 6 + +/* GPIO_FUNC226_IN_SEL : R/W; bitpos: [5:0]; default: 0; + * set this value: s=0-53: connect GPIO[s] to this port. s=0x38: set this + * port always high level. s=0x3C: set this port always low level. + */ + +#define GPIO_FUNC226_IN_SEL 0x0000003f +#define GPIO_FUNC226_IN_SEL_M (GPIO_FUNC226_IN_SEL_V << GPIO_FUNC226_IN_SEL_S) +#define GPIO_FUNC226_IN_SEL_V 0x0000003f +#define GPIO_FUNC226_IN_SEL_S 0 + +/* GPIO_FUNC227_IN_SEL_CFG_REG register + * GPIO input function configuration register + */ + +#define GPIO_FUNC227_IN_SEL_CFG_REG (DR_REG_GPIO_BASE + 0x4e0) + +/* GPIO_SIG227_IN_SEL : R/W; bitpos: [7]; default: 0; + * set this bit to bypass GPIO. 1:do not bypass GPIO. 0:bypass GPIO. + */ + +#define GPIO_SIG227_IN_SEL (BIT(7)) +#define GPIO_SIG227_IN_SEL_M (GPIO_SIG227_IN_SEL_V << GPIO_SIG227_IN_SEL_S) +#define GPIO_SIG227_IN_SEL_V 0x00000001 +#define GPIO_SIG227_IN_SEL_S 7 + +/* GPIO_FUNC227_IN_INV_SEL : R/W; bitpos: [6]; default: 0; + * set this bit to invert input signal. 1:invert. 0:not invert. + */ + +#define GPIO_FUNC227_IN_INV_SEL (BIT(6)) +#define GPIO_FUNC227_IN_INV_SEL_M (GPIO_FUNC227_IN_INV_SEL_V << GPIO_FUNC227_IN_INV_SEL_S) +#define GPIO_FUNC227_IN_INV_SEL_V 0x00000001 +#define GPIO_FUNC227_IN_INV_SEL_S 6 + +/* GPIO_FUNC227_IN_SEL : R/W; bitpos: [5:0]; default: 0; + * set this value: s=0-53: connect GPIO[s] to this port. s=0x38: set this + * port always high level. s=0x3C: set this port always low level. + */ + +#define GPIO_FUNC227_IN_SEL 0x0000003f +#define GPIO_FUNC227_IN_SEL_M (GPIO_FUNC227_IN_SEL_V << GPIO_FUNC227_IN_SEL_S) +#define GPIO_FUNC227_IN_SEL_V 0x0000003f +#define GPIO_FUNC227_IN_SEL_S 0 + +/* GPIO_FUNC228_IN_SEL_CFG_REG register + * GPIO input function configuration register + */ + +#define GPIO_FUNC228_IN_SEL_CFG_REG (DR_REG_GPIO_BASE + 0x4e4) + +/* GPIO_SIG228_IN_SEL : R/W; bitpos: [7]; default: 0; + * set this bit to bypass GPIO. 1:do not bypass GPIO. 0:bypass GPIO. + */ + +#define GPIO_SIG228_IN_SEL (BIT(7)) +#define GPIO_SIG228_IN_SEL_M (GPIO_SIG228_IN_SEL_V << GPIO_SIG228_IN_SEL_S) +#define GPIO_SIG228_IN_SEL_V 0x00000001 +#define GPIO_SIG228_IN_SEL_S 7 + +/* GPIO_FUNC228_IN_INV_SEL : R/W; bitpos: [6]; default: 0; + * set this bit to invert input signal. 1:invert. 0:not invert. + */ + +#define GPIO_FUNC228_IN_INV_SEL (BIT(6)) +#define GPIO_FUNC228_IN_INV_SEL_M (GPIO_FUNC228_IN_INV_SEL_V << GPIO_FUNC228_IN_INV_SEL_S) +#define GPIO_FUNC228_IN_INV_SEL_V 0x00000001 +#define GPIO_FUNC228_IN_INV_SEL_S 6 + +/* GPIO_FUNC228_IN_SEL : R/W; bitpos: [5:0]; default: 0; + * set this value: s=0-53: connect GPIO[s] to this port. s=0x38: set this + * port always high level. s=0x3C: set this port always low level. + */ + +#define GPIO_FUNC228_IN_SEL 0x0000003f +#define GPIO_FUNC228_IN_SEL_M (GPIO_FUNC228_IN_SEL_V << GPIO_FUNC228_IN_SEL_S) +#define GPIO_FUNC228_IN_SEL_V 0x0000003f +#define GPIO_FUNC228_IN_SEL_S 0 + +/* GPIO_FUNC229_IN_SEL_CFG_REG register + * GPIO input function configuration register + */ + +#define GPIO_FUNC229_IN_SEL_CFG_REG (DR_REG_GPIO_BASE + 0x4e8) + +/* GPIO_SIG229_IN_SEL : R/W; bitpos: [7]; default: 0; + * set this bit to bypass GPIO. 1:do not bypass GPIO. 0:bypass GPIO. + */ + +#define GPIO_SIG229_IN_SEL (BIT(7)) +#define GPIO_SIG229_IN_SEL_M (GPIO_SIG229_IN_SEL_V << GPIO_SIG229_IN_SEL_S) +#define GPIO_SIG229_IN_SEL_V 0x00000001 +#define GPIO_SIG229_IN_SEL_S 7 + +/* GPIO_FUNC229_IN_INV_SEL : R/W; bitpos: [6]; default: 0; + * set this bit to invert input signal. 1:invert. 0:not invert. + */ + +#define GPIO_FUNC229_IN_INV_SEL (BIT(6)) +#define GPIO_FUNC229_IN_INV_SEL_M (GPIO_FUNC229_IN_INV_SEL_V << GPIO_FUNC229_IN_INV_SEL_S) +#define GPIO_FUNC229_IN_INV_SEL_V 0x00000001 +#define GPIO_FUNC229_IN_INV_SEL_S 6 + +/* GPIO_FUNC229_IN_SEL : R/W; bitpos: [5:0]; default: 0; + * set this value: s=0-53: connect GPIO[s] to this port. s=0x38: set this + * port always high level. s=0x3C: set this port always low level. + */ + +#define GPIO_FUNC229_IN_SEL 0x0000003f +#define GPIO_FUNC229_IN_SEL_M (GPIO_FUNC229_IN_SEL_V << GPIO_FUNC229_IN_SEL_S) +#define GPIO_FUNC229_IN_SEL_V 0x0000003f +#define GPIO_FUNC229_IN_SEL_S 0 + +/* GPIO_FUNC230_IN_SEL_CFG_REG register + * GPIO input function configuration register + */ + +#define GPIO_FUNC230_IN_SEL_CFG_REG (DR_REG_GPIO_BASE + 0x4ec) + +/* GPIO_SIG230_IN_SEL : R/W; bitpos: [7]; default: 0; + * set this bit to bypass GPIO. 1:do not bypass GPIO. 0:bypass GPIO. + */ + +#define GPIO_SIG230_IN_SEL (BIT(7)) +#define GPIO_SIG230_IN_SEL_M (GPIO_SIG230_IN_SEL_V << GPIO_SIG230_IN_SEL_S) +#define GPIO_SIG230_IN_SEL_V 0x00000001 +#define GPIO_SIG230_IN_SEL_S 7 + +/* GPIO_FUNC230_IN_INV_SEL : R/W; bitpos: [6]; default: 0; + * set this bit to invert input signal. 1:invert. 0:not invert. + */ + +#define GPIO_FUNC230_IN_INV_SEL (BIT(6)) +#define GPIO_FUNC230_IN_INV_SEL_M (GPIO_FUNC230_IN_INV_SEL_V << GPIO_FUNC230_IN_INV_SEL_S) +#define GPIO_FUNC230_IN_INV_SEL_V 0x00000001 +#define GPIO_FUNC230_IN_INV_SEL_S 6 + +/* GPIO_FUNC230_IN_SEL : R/W; bitpos: [5:0]; default: 0; + * set this value: s=0-53: connect GPIO[s] to this port. s=0x38: set this + * port always high level. s=0x3C: set this port always low level. + */ + +#define GPIO_FUNC230_IN_SEL 0x0000003f +#define GPIO_FUNC230_IN_SEL_M (GPIO_FUNC230_IN_SEL_V << GPIO_FUNC230_IN_SEL_S) +#define GPIO_FUNC230_IN_SEL_V 0x0000003f +#define GPIO_FUNC230_IN_SEL_S 0 + +/* GPIO_FUNC231_IN_SEL_CFG_REG register + * GPIO input function configuration register + */ + +#define GPIO_FUNC231_IN_SEL_CFG_REG (DR_REG_GPIO_BASE + 0x4f0) + +/* GPIO_SIG231_IN_SEL : R/W; bitpos: [7]; default: 0; + * set this bit to bypass GPIO. 1:do not bypass GPIO. 0:bypass GPIO. + */ + +#define GPIO_SIG231_IN_SEL (BIT(7)) +#define GPIO_SIG231_IN_SEL_M (GPIO_SIG231_IN_SEL_V << GPIO_SIG231_IN_SEL_S) +#define GPIO_SIG231_IN_SEL_V 0x00000001 +#define GPIO_SIG231_IN_SEL_S 7 + +/* GPIO_FUNC231_IN_INV_SEL : R/W; bitpos: [6]; default: 0; + * set this bit to invert input signal. 1:invert. 0:not invert. + */ + +#define GPIO_FUNC231_IN_INV_SEL (BIT(6)) +#define GPIO_FUNC231_IN_INV_SEL_M (GPIO_FUNC231_IN_INV_SEL_V << GPIO_FUNC231_IN_INV_SEL_S) +#define GPIO_FUNC231_IN_INV_SEL_V 0x00000001 +#define GPIO_FUNC231_IN_INV_SEL_S 6 + +/* GPIO_FUNC231_IN_SEL : R/W; bitpos: [5:0]; default: 0; + * set this value: s=0-53: connect GPIO[s] to this port. s=0x38: set this + * port always high level. s=0x3C: set this port always low level. + */ + +#define GPIO_FUNC231_IN_SEL 0x0000003f +#define GPIO_FUNC231_IN_SEL_M (GPIO_FUNC231_IN_SEL_V << GPIO_FUNC231_IN_SEL_S) +#define GPIO_FUNC231_IN_SEL_V 0x0000003f +#define GPIO_FUNC231_IN_SEL_S 0 + +/* GPIO_FUNC232_IN_SEL_CFG_REG register + * GPIO input function configuration register + */ + +#define GPIO_FUNC232_IN_SEL_CFG_REG (DR_REG_GPIO_BASE + 0x4f4) + +/* GPIO_SIG232_IN_SEL : R/W; bitpos: [7]; default: 0; + * set this bit to bypass GPIO. 1:do not bypass GPIO. 0:bypass GPIO. + */ + +#define GPIO_SIG232_IN_SEL (BIT(7)) +#define GPIO_SIG232_IN_SEL_M (GPIO_SIG232_IN_SEL_V << GPIO_SIG232_IN_SEL_S) +#define GPIO_SIG232_IN_SEL_V 0x00000001 +#define GPIO_SIG232_IN_SEL_S 7 + +/* GPIO_FUNC232_IN_INV_SEL : R/W; bitpos: [6]; default: 0; + * set this bit to invert input signal. 1:invert. 0:not invert. + */ + +#define GPIO_FUNC232_IN_INV_SEL (BIT(6)) +#define GPIO_FUNC232_IN_INV_SEL_M (GPIO_FUNC232_IN_INV_SEL_V << GPIO_FUNC232_IN_INV_SEL_S) +#define GPIO_FUNC232_IN_INV_SEL_V 0x00000001 +#define GPIO_FUNC232_IN_INV_SEL_S 6 + +/* GPIO_FUNC232_IN_SEL : R/W; bitpos: [5:0]; default: 0; + * set this value: s=0-53: connect GPIO[s] to this port. s=0x38: set this + * port always high level. s=0x3C: set this port always low level. + */ + +#define GPIO_FUNC232_IN_SEL 0x0000003f +#define GPIO_FUNC232_IN_SEL_M (GPIO_FUNC232_IN_SEL_V << GPIO_FUNC232_IN_SEL_S) +#define GPIO_FUNC232_IN_SEL_V 0x0000003f +#define GPIO_FUNC232_IN_SEL_S 0 + +/* GPIO_FUNC233_IN_SEL_CFG_REG register + * GPIO input function configuration register + */ + +#define GPIO_FUNC233_IN_SEL_CFG_REG (DR_REG_GPIO_BASE + 0x4f8) + +/* GPIO_SIG233_IN_SEL : R/W; bitpos: [7]; default: 0; + * set this bit to bypass GPIO. 1:do not bypass GPIO. 0:bypass GPIO. + */ + +#define GPIO_SIG233_IN_SEL (BIT(7)) +#define GPIO_SIG233_IN_SEL_M (GPIO_SIG233_IN_SEL_V << GPIO_SIG233_IN_SEL_S) +#define GPIO_SIG233_IN_SEL_V 0x00000001 +#define GPIO_SIG233_IN_SEL_S 7 + +/* GPIO_FUNC233_IN_INV_SEL : R/W; bitpos: [6]; default: 0; + * set this bit to invert input signal. 1:invert. 0:not invert. + */ + +#define GPIO_FUNC233_IN_INV_SEL (BIT(6)) +#define GPIO_FUNC233_IN_INV_SEL_M (GPIO_FUNC233_IN_INV_SEL_V << GPIO_FUNC233_IN_INV_SEL_S) +#define GPIO_FUNC233_IN_INV_SEL_V 0x00000001 +#define GPIO_FUNC233_IN_INV_SEL_S 6 + +/* GPIO_FUNC233_IN_SEL : R/W; bitpos: [5:0]; default: 0; + * set this value: s=0-53: connect GPIO[s] to this port. s=0x38: set this + * port always high level. s=0x3C: set this port always low level. + */ + +#define GPIO_FUNC233_IN_SEL 0x0000003f +#define GPIO_FUNC233_IN_SEL_M (GPIO_FUNC233_IN_SEL_V << GPIO_FUNC233_IN_SEL_S) +#define GPIO_FUNC233_IN_SEL_V 0x0000003f +#define GPIO_FUNC233_IN_SEL_S 0 + +/* GPIO_FUNC234_IN_SEL_CFG_REG register + * GPIO input function configuration register + */ + +#define GPIO_FUNC234_IN_SEL_CFG_REG (DR_REG_GPIO_BASE + 0x4fc) + +/* GPIO_SIG234_IN_SEL : R/W; bitpos: [7]; default: 0; + * set this bit to bypass GPIO. 1:do not bypass GPIO. 0:bypass GPIO. + */ + +#define GPIO_SIG234_IN_SEL (BIT(7)) +#define GPIO_SIG234_IN_SEL_M (GPIO_SIG234_IN_SEL_V << GPIO_SIG234_IN_SEL_S) +#define GPIO_SIG234_IN_SEL_V 0x00000001 +#define GPIO_SIG234_IN_SEL_S 7 + +/* GPIO_FUNC234_IN_INV_SEL : R/W; bitpos: [6]; default: 0; + * set this bit to invert input signal. 1:invert. 0:not invert. + */ + +#define GPIO_FUNC234_IN_INV_SEL (BIT(6)) +#define GPIO_FUNC234_IN_INV_SEL_M (GPIO_FUNC234_IN_INV_SEL_V << GPIO_FUNC234_IN_INV_SEL_S) +#define GPIO_FUNC234_IN_INV_SEL_V 0x00000001 +#define GPIO_FUNC234_IN_INV_SEL_S 6 + +/* GPIO_FUNC234_IN_SEL : R/W; bitpos: [5:0]; default: 0; + * set this value: s=0-53: connect GPIO[s] to this port. s=0x38: set this + * port always high level. s=0x3C: set this port always low level. + */ + +#define GPIO_FUNC234_IN_SEL 0x0000003f +#define GPIO_FUNC234_IN_SEL_M (GPIO_FUNC234_IN_SEL_V << GPIO_FUNC234_IN_SEL_S) +#define GPIO_FUNC234_IN_SEL_V 0x0000003f +#define GPIO_FUNC234_IN_SEL_S 0 + +/* GPIO_FUNC235_IN_SEL_CFG_REG register + * GPIO input function configuration register + */ + +#define GPIO_FUNC235_IN_SEL_CFG_REG (DR_REG_GPIO_BASE + 0x500) + +/* GPIO_SIG235_IN_SEL : R/W; bitpos: [7]; default: 0; + * set this bit to bypass GPIO. 1:do not bypass GPIO. 0:bypass GPIO. + */ + +#define GPIO_SIG235_IN_SEL (BIT(7)) +#define GPIO_SIG235_IN_SEL_M (GPIO_SIG235_IN_SEL_V << GPIO_SIG235_IN_SEL_S) +#define GPIO_SIG235_IN_SEL_V 0x00000001 +#define GPIO_SIG235_IN_SEL_S 7 + +/* GPIO_FUNC235_IN_INV_SEL : R/W; bitpos: [6]; default: 0; + * set this bit to invert input signal. 1:invert. 0:not invert. + */ + +#define GPIO_FUNC235_IN_INV_SEL (BIT(6)) +#define GPIO_FUNC235_IN_INV_SEL_M (GPIO_FUNC235_IN_INV_SEL_V << GPIO_FUNC235_IN_INV_SEL_S) +#define GPIO_FUNC235_IN_INV_SEL_V 0x00000001 +#define GPIO_FUNC235_IN_INV_SEL_S 6 + +/* GPIO_FUNC235_IN_SEL : R/W; bitpos: [5:0]; default: 0; + * set this value: s=0-53: connect GPIO[s] to this port. s=0x38: set this + * port always high level. s=0x3C: set this port always low level. + */ + +#define GPIO_FUNC235_IN_SEL 0x0000003f +#define GPIO_FUNC235_IN_SEL_M (GPIO_FUNC235_IN_SEL_V << GPIO_FUNC235_IN_SEL_S) +#define GPIO_FUNC235_IN_SEL_V 0x0000003f +#define GPIO_FUNC235_IN_SEL_S 0 + +/* GPIO_FUNC236_IN_SEL_CFG_REG register + * GPIO input function configuration register + */ + +#define GPIO_FUNC236_IN_SEL_CFG_REG (DR_REG_GPIO_BASE + 0x504) + +/* GPIO_SIG236_IN_SEL : R/W; bitpos: [7]; default: 0; + * set this bit to bypass GPIO. 1:do not bypass GPIO. 0:bypass GPIO. + */ + +#define GPIO_SIG236_IN_SEL (BIT(7)) +#define GPIO_SIG236_IN_SEL_M (GPIO_SIG236_IN_SEL_V << GPIO_SIG236_IN_SEL_S) +#define GPIO_SIG236_IN_SEL_V 0x00000001 +#define GPIO_SIG236_IN_SEL_S 7 + +/* GPIO_FUNC236_IN_INV_SEL : R/W; bitpos: [6]; default: 0; + * set this bit to invert input signal. 1:invert. 0:not invert. + */ + +#define GPIO_FUNC236_IN_INV_SEL (BIT(6)) +#define GPIO_FUNC236_IN_INV_SEL_M (GPIO_FUNC236_IN_INV_SEL_V << GPIO_FUNC236_IN_INV_SEL_S) +#define GPIO_FUNC236_IN_INV_SEL_V 0x00000001 +#define GPIO_FUNC236_IN_INV_SEL_S 6 + +/* GPIO_FUNC236_IN_SEL : R/W; bitpos: [5:0]; default: 0; + * set this value: s=0-53: connect GPIO[s] to this port. s=0x38: set this + * port always high level. s=0x3C: set this port always low level. + */ + +#define GPIO_FUNC236_IN_SEL 0x0000003f +#define GPIO_FUNC236_IN_SEL_M (GPIO_FUNC236_IN_SEL_V << GPIO_FUNC236_IN_SEL_S) +#define GPIO_FUNC236_IN_SEL_V 0x0000003f +#define GPIO_FUNC236_IN_SEL_S 0 + +/* GPIO_FUNC237_IN_SEL_CFG_REG register + * GPIO input function configuration register + */ + +#define GPIO_FUNC237_IN_SEL_CFG_REG (DR_REG_GPIO_BASE + 0x508) + +/* GPIO_SIG237_IN_SEL : R/W; bitpos: [7]; default: 0; + * set this bit to bypass GPIO. 1:do not bypass GPIO. 0:bypass GPIO. + */ + +#define GPIO_SIG237_IN_SEL (BIT(7)) +#define GPIO_SIG237_IN_SEL_M (GPIO_SIG237_IN_SEL_V << GPIO_SIG237_IN_SEL_S) +#define GPIO_SIG237_IN_SEL_V 0x00000001 +#define GPIO_SIG237_IN_SEL_S 7 + +/* GPIO_FUNC237_IN_INV_SEL : R/W; bitpos: [6]; default: 0; + * set this bit to invert input signal. 1:invert. 0:not invert. + */ + +#define GPIO_FUNC237_IN_INV_SEL (BIT(6)) +#define GPIO_FUNC237_IN_INV_SEL_M (GPIO_FUNC237_IN_INV_SEL_V << GPIO_FUNC237_IN_INV_SEL_S) +#define GPIO_FUNC237_IN_INV_SEL_V 0x00000001 +#define GPIO_FUNC237_IN_INV_SEL_S 6 + +/* GPIO_FUNC237_IN_SEL : R/W; bitpos: [5:0]; default: 0; + * set this value: s=0-53: connect GPIO[s] to this port. s=0x38: set this + * port always high level. s=0x3C: set this port always low level. + */ + +#define GPIO_FUNC237_IN_SEL 0x0000003f +#define GPIO_FUNC237_IN_SEL_M (GPIO_FUNC237_IN_SEL_V << GPIO_FUNC237_IN_SEL_S) +#define GPIO_FUNC237_IN_SEL_V 0x0000003f +#define GPIO_FUNC237_IN_SEL_S 0 + +/* GPIO_FUNC238_IN_SEL_CFG_REG register + * GPIO input function configuration register + */ + +#define GPIO_FUNC238_IN_SEL_CFG_REG (DR_REG_GPIO_BASE + 0x50c) + +/* GPIO_SIG238_IN_SEL : R/W; bitpos: [7]; default: 0; + * set this bit to bypass GPIO. 1:do not bypass GPIO. 0:bypass GPIO. + */ + +#define GPIO_SIG238_IN_SEL (BIT(7)) +#define GPIO_SIG238_IN_SEL_M (GPIO_SIG238_IN_SEL_V << GPIO_SIG238_IN_SEL_S) +#define GPIO_SIG238_IN_SEL_V 0x00000001 +#define GPIO_SIG238_IN_SEL_S 7 + +/* GPIO_FUNC238_IN_INV_SEL : R/W; bitpos: [6]; default: 0; + * set this bit to invert input signal. 1:invert. 0:not invert. + */ + +#define GPIO_FUNC238_IN_INV_SEL (BIT(6)) +#define GPIO_FUNC238_IN_INV_SEL_M (GPIO_FUNC238_IN_INV_SEL_V << GPIO_FUNC238_IN_INV_SEL_S) +#define GPIO_FUNC238_IN_INV_SEL_V 0x00000001 +#define GPIO_FUNC238_IN_INV_SEL_S 6 + +/* GPIO_FUNC238_IN_SEL : R/W; bitpos: [5:0]; default: 0; + * set this value: s=0-53: connect GPIO[s] to this port. s=0x38: set this + * port always high level. s=0x3C: set this port always low level. + */ + +#define GPIO_FUNC238_IN_SEL 0x0000003f +#define GPIO_FUNC238_IN_SEL_M (GPIO_FUNC238_IN_SEL_V << GPIO_FUNC238_IN_SEL_S) +#define GPIO_FUNC238_IN_SEL_V 0x0000003f +#define GPIO_FUNC238_IN_SEL_S 0 + +/* GPIO_FUNC239_IN_SEL_CFG_REG register + * GPIO input function configuration register + */ + +#define GPIO_FUNC239_IN_SEL_CFG_REG (DR_REG_GPIO_BASE + 0x510) + +/* GPIO_SIG239_IN_SEL : R/W; bitpos: [7]; default: 0; + * set this bit to bypass GPIO. 1:do not bypass GPIO. 0:bypass GPIO. + */ + +#define GPIO_SIG239_IN_SEL (BIT(7)) +#define GPIO_SIG239_IN_SEL_M (GPIO_SIG239_IN_SEL_V << GPIO_SIG239_IN_SEL_S) +#define GPIO_SIG239_IN_SEL_V 0x00000001 +#define GPIO_SIG239_IN_SEL_S 7 + +/* GPIO_FUNC239_IN_INV_SEL : R/W; bitpos: [6]; default: 0; + * set this bit to invert input signal. 1:invert. 0:not invert. + */ + +#define GPIO_FUNC239_IN_INV_SEL (BIT(6)) +#define GPIO_FUNC239_IN_INV_SEL_M (GPIO_FUNC239_IN_INV_SEL_V << GPIO_FUNC239_IN_INV_SEL_S) +#define GPIO_FUNC239_IN_INV_SEL_V 0x00000001 +#define GPIO_FUNC239_IN_INV_SEL_S 6 + +/* GPIO_FUNC239_IN_SEL : R/W; bitpos: [5:0]; default: 0; + * set this value: s=0-53: connect GPIO[s] to this port. s=0x38: set this + * port always high level. s=0x3C: set this port always low level. + */ + +#define GPIO_FUNC239_IN_SEL 0x0000003f +#define GPIO_FUNC239_IN_SEL_M (GPIO_FUNC239_IN_SEL_V << GPIO_FUNC239_IN_SEL_S) +#define GPIO_FUNC239_IN_SEL_V 0x0000003f +#define GPIO_FUNC239_IN_SEL_S 0 + +/* GPIO_FUNC240_IN_SEL_CFG_REG register + * GPIO input function configuration register + */ + +#define GPIO_FUNC240_IN_SEL_CFG_REG (DR_REG_GPIO_BASE + 0x514) + +/* GPIO_SIG240_IN_SEL : R/W; bitpos: [7]; default: 0; + * set this bit to bypass GPIO. 1:do not bypass GPIO. 0:bypass GPIO. + */ + +#define GPIO_SIG240_IN_SEL (BIT(7)) +#define GPIO_SIG240_IN_SEL_M (GPIO_SIG240_IN_SEL_V << GPIO_SIG240_IN_SEL_S) +#define GPIO_SIG240_IN_SEL_V 0x00000001 +#define GPIO_SIG240_IN_SEL_S 7 + +/* GPIO_FUNC240_IN_INV_SEL : R/W; bitpos: [6]; default: 0; + * set this bit to invert input signal. 1:invert. 0:not invert. + */ + +#define GPIO_FUNC240_IN_INV_SEL (BIT(6)) +#define GPIO_FUNC240_IN_INV_SEL_M (GPIO_FUNC240_IN_INV_SEL_V << GPIO_FUNC240_IN_INV_SEL_S) +#define GPIO_FUNC240_IN_INV_SEL_V 0x00000001 +#define GPIO_FUNC240_IN_INV_SEL_S 6 + +/* GPIO_FUNC240_IN_SEL : R/W; bitpos: [5:0]; default: 0; + * set this value: s=0-53: connect GPIO[s] to this port. s=0x38: set this + * port always high level. s=0x3C: set this port always low level. + */ + +#define GPIO_FUNC240_IN_SEL 0x0000003f +#define GPIO_FUNC240_IN_SEL_M (GPIO_FUNC240_IN_SEL_V << GPIO_FUNC240_IN_SEL_S) +#define GPIO_FUNC240_IN_SEL_V 0x0000003f +#define GPIO_FUNC240_IN_SEL_S 0 + +/* GPIO_FUNC241_IN_SEL_CFG_REG register + * GPIO input function configuration register + */ + +#define GPIO_FUNC241_IN_SEL_CFG_REG (DR_REG_GPIO_BASE + 0x518) + +/* GPIO_SIG241_IN_SEL : R/W; bitpos: [7]; default: 0; + * set this bit to bypass GPIO. 1:do not bypass GPIO. 0:bypass GPIO. + */ + +#define GPIO_SIG241_IN_SEL (BIT(7)) +#define GPIO_SIG241_IN_SEL_M (GPIO_SIG241_IN_SEL_V << GPIO_SIG241_IN_SEL_S) +#define GPIO_SIG241_IN_SEL_V 0x00000001 +#define GPIO_SIG241_IN_SEL_S 7 + +/* GPIO_FUNC241_IN_INV_SEL : R/W; bitpos: [6]; default: 0; + * set this bit to invert input signal. 1:invert. 0:not invert. + */ + +#define GPIO_FUNC241_IN_INV_SEL (BIT(6)) +#define GPIO_FUNC241_IN_INV_SEL_M (GPIO_FUNC241_IN_INV_SEL_V << GPIO_FUNC241_IN_INV_SEL_S) +#define GPIO_FUNC241_IN_INV_SEL_V 0x00000001 +#define GPIO_FUNC241_IN_INV_SEL_S 6 + +/* GPIO_FUNC241_IN_SEL : R/W; bitpos: [5:0]; default: 0; + * set this value: s=0-53: connect GPIO[s] to this port. s=0x38: set this + * port always high level. s=0x3C: set this port always low level. + */ + +#define GPIO_FUNC241_IN_SEL 0x0000003f +#define GPIO_FUNC241_IN_SEL_M (GPIO_FUNC241_IN_SEL_V << GPIO_FUNC241_IN_SEL_S) +#define GPIO_FUNC241_IN_SEL_V 0x0000003f +#define GPIO_FUNC241_IN_SEL_S 0 + +/* GPIO_FUNC242_IN_SEL_CFG_REG register + * GPIO input function configuration register + */ + +#define GPIO_FUNC242_IN_SEL_CFG_REG (DR_REG_GPIO_BASE + 0x51c) + +/* GPIO_SIG242_IN_SEL : R/W; bitpos: [7]; default: 0; + * set this bit to bypass GPIO. 1:do not bypass GPIO. 0:bypass GPIO. + */ + +#define GPIO_SIG242_IN_SEL (BIT(7)) +#define GPIO_SIG242_IN_SEL_M (GPIO_SIG242_IN_SEL_V << GPIO_SIG242_IN_SEL_S) +#define GPIO_SIG242_IN_SEL_V 0x00000001 +#define GPIO_SIG242_IN_SEL_S 7 + +/* GPIO_FUNC242_IN_INV_SEL : R/W; bitpos: [6]; default: 0; + * set this bit to invert input signal. 1:invert. 0:not invert. + */ + +#define GPIO_FUNC242_IN_INV_SEL (BIT(6)) +#define GPIO_FUNC242_IN_INV_SEL_M (GPIO_FUNC242_IN_INV_SEL_V << GPIO_FUNC242_IN_INV_SEL_S) +#define GPIO_FUNC242_IN_INV_SEL_V 0x00000001 +#define GPIO_FUNC242_IN_INV_SEL_S 6 + +/* GPIO_FUNC242_IN_SEL : R/W; bitpos: [5:0]; default: 0; + * set this value: s=0-53: connect GPIO[s] to this port. s=0x38: set this + * port always high level. s=0x3C: set this port always low level. + */ + +#define GPIO_FUNC242_IN_SEL 0x0000003f +#define GPIO_FUNC242_IN_SEL_M (GPIO_FUNC242_IN_SEL_V << GPIO_FUNC242_IN_SEL_S) +#define GPIO_FUNC242_IN_SEL_V 0x0000003f +#define GPIO_FUNC242_IN_SEL_S 0 + +/* GPIO_FUNC243_IN_SEL_CFG_REG register + * GPIO input function configuration register + */ + +#define GPIO_FUNC243_IN_SEL_CFG_REG (DR_REG_GPIO_BASE + 0x520) + +/* GPIO_SIG243_IN_SEL : R/W; bitpos: [7]; default: 0; + * set this bit to bypass GPIO. 1:do not bypass GPIO. 0:bypass GPIO. + */ + +#define GPIO_SIG243_IN_SEL (BIT(7)) +#define GPIO_SIG243_IN_SEL_M (GPIO_SIG243_IN_SEL_V << GPIO_SIG243_IN_SEL_S) +#define GPIO_SIG243_IN_SEL_V 0x00000001 +#define GPIO_SIG243_IN_SEL_S 7 + +/* GPIO_FUNC243_IN_INV_SEL : R/W; bitpos: [6]; default: 0; + * set this bit to invert input signal. 1:invert. 0:not invert. + */ + +#define GPIO_FUNC243_IN_INV_SEL (BIT(6)) +#define GPIO_FUNC243_IN_INV_SEL_M (GPIO_FUNC243_IN_INV_SEL_V << GPIO_FUNC243_IN_INV_SEL_S) +#define GPIO_FUNC243_IN_INV_SEL_V 0x00000001 +#define GPIO_FUNC243_IN_INV_SEL_S 6 + +/* GPIO_FUNC243_IN_SEL : R/W; bitpos: [5:0]; default: 0; + * set this value: s=0-53: connect GPIO[s] to this port. s=0x38: set this + * port always high level. s=0x3C: set this port always low level. + */ + +#define GPIO_FUNC243_IN_SEL 0x0000003f +#define GPIO_FUNC243_IN_SEL_M (GPIO_FUNC243_IN_SEL_V << GPIO_FUNC243_IN_SEL_S) +#define GPIO_FUNC243_IN_SEL_V 0x0000003f +#define GPIO_FUNC243_IN_SEL_S 0 + +/* GPIO_FUNC244_IN_SEL_CFG_REG register + * GPIO input function configuration register + */ + +#define GPIO_FUNC244_IN_SEL_CFG_REG (DR_REG_GPIO_BASE + 0x524) + +/* GPIO_SIG244_IN_SEL : R/W; bitpos: [7]; default: 0; + * set this bit to bypass GPIO. 1:do not bypass GPIO. 0:bypass GPIO. + */ + +#define GPIO_SIG244_IN_SEL (BIT(7)) +#define GPIO_SIG244_IN_SEL_M (GPIO_SIG244_IN_SEL_V << GPIO_SIG244_IN_SEL_S) +#define GPIO_SIG244_IN_SEL_V 0x00000001 +#define GPIO_SIG244_IN_SEL_S 7 + +/* GPIO_FUNC244_IN_INV_SEL : R/W; bitpos: [6]; default: 0; + * set this bit to invert input signal. 1:invert. 0:not invert. + */ + +#define GPIO_FUNC244_IN_INV_SEL (BIT(6)) +#define GPIO_FUNC244_IN_INV_SEL_M (GPIO_FUNC244_IN_INV_SEL_V << GPIO_FUNC244_IN_INV_SEL_S) +#define GPIO_FUNC244_IN_INV_SEL_V 0x00000001 +#define GPIO_FUNC244_IN_INV_SEL_S 6 + +/* GPIO_FUNC244_IN_SEL : R/W; bitpos: [5:0]; default: 0; + * set this value: s=0-53: connect GPIO[s] to this port. s=0x38: set this + * port always high level. s=0x3C: set this port always low level. + */ + +#define GPIO_FUNC244_IN_SEL 0x0000003f +#define GPIO_FUNC244_IN_SEL_M (GPIO_FUNC244_IN_SEL_V << GPIO_FUNC244_IN_SEL_S) +#define GPIO_FUNC244_IN_SEL_V 0x0000003f +#define GPIO_FUNC244_IN_SEL_S 0 + +/* GPIO_FUNC245_IN_SEL_CFG_REG register + * GPIO input function configuration register + */ + +#define GPIO_FUNC245_IN_SEL_CFG_REG (DR_REG_GPIO_BASE + 0x528) + +/* GPIO_SIG245_IN_SEL : R/W; bitpos: [7]; default: 0; + * set this bit to bypass GPIO. 1:do not bypass GPIO. 0:bypass GPIO. + */ + +#define GPIO_SIG245_IN_SEL (BIT(7)) +#define GPIO_SIG245_IN_SEL_M (GPIO_SIG245_IN_SEL_V << GPIO_SIG245_IN_SEL_S) +#define GPIO_SIG245_IN_SEL_V 0x00000001 +#define GPIO_SIG245_IN_SEL_S 7 + +/* GPIO_FUNC245_IN_INV_SEL : R/W; bitpos: [6]; default: 0; + * set this bit to invert input signal. 1:invert. 0:not invert. + */ + +#define GPIO_FUNC245_IN_INV_SEL (BIT(6)) +#define GPIO_FUNC245_IN_INV_SEL_M (GPIO_FUNC245_IN_INV_SEL_V << GPIO_FUNC245_IN_INV_SEL_S) +#define GPIO_FUNC245_IN_INV_SEL_V 0x00000001 +#define GPIO_FUNC245_IN_INV_SEL_S 6 + +/* GPIO_FUNC245_IN_SEL : R/W; bitpos: [5:0]; default: 0; + * set this value: s=0-53: connect GPIO[s] to this port. s=0x38: set this + * port always high level. s=0x3C: set this port always low level. + */ + +#define GPIO_FUNC245_IN_SEL 0x0000003f +#define GPIO_FUNC245_IN_SEL_M (GPIO_FUNC245_IN_SEL_V << GPIO_FUNC245_IN_SEL_S) +#define GPIO_FUNC245_IN_SEL_V 0x0000003f +#define GPIO_FUNC245_IN_SEL_S 0 + +/* GPIO_FUNC246_IN_SEL_CFG_REG register + * GPIO input function configuration register + */ + +#define GPIO_FUNC246_IN_SEL_CFG_REG (DR_REG_GPIO_BASE + 0x52c) + +/* GPIO_SIG246_IN_SEL : R/W; bitpos: [7]; default: 0; + * set this bit to bypass GPIO. 1:do not bypass GPIO. 0:bypass GPIO. + */ + +#define GPIO_SIG246_IN_SEL (BIT(7)) +#define GPIO_SIG246_IN_SEL_M (GPIO_SIG246_IN_SEL_V << GPIO_SIG246_IN_SEL_S) +#define GPIO_SIG246_IN_SEL_V 0x00000001 +#define GPIO_SIG246_IN_SEL_S 7 + +/* GPIO_FUNC246_IN_INV_SEL : R/W; bitpos: [6]; default: 0; + * set this bit to invert input signal. 1:invert. 0:not invert. + */ + +#define GPIO_FUNC246_IN_INV_SEL (BIT(6)) +#define GPIO_FUNC246_IN_INV_SEL_M (GPIO_FUNC246_IN_INV_SEL_V << GPIO_FUNC246_IN_INV_SEL_S) +#define GPIO_FUNC246_IN_INV_SEL_V 0x00000001 +#define GPIO_FUNC246_IN_INV_SEL_S 6 + +/* GPIO_FUNC246_IN_SEL : R/W; bitpos: [5:0]; default: 0; + * set this value: s=0-53: connect GPIO[s] to this port. s=0x38: set this + * port always high level. s=0x3C: set this port always low level. + */ + +#define GPIO_FUNC246_IN_SEL 0x0000003f +#define GPIO_FUNC246_IN_SEL_M (GPIO_FUNC246_IN_SEL_V << GPIO_FUNC246_IN_SEL_S) +#define GPIO_FUNC246_IN_SEL_V 0x0000003f +#define GPIO_FUNC246_IN_SEL_S 0 + +/* GPIO_FUNC247_IN_SEL_CFG_REG register + * GPIO input function configuration register + */ + +#define GPIO_FUNC247_IN_SEL_CFG_REG (DR_REG_GPIO_BASE + 0x530) + +/* GPIO_SIG247_IN_SEL : R/W; bitpos: [7]; default: 0; + * set this bit to bypass GPIO. 1:do not bypass GPIO. 0:bypass GPIO. + */ + +#define GPIO_SIG247_IN_SEL (BIT(7)) +#define GPIO_SIG247_IN_SEL_M (GPIO_SIG247_IN_SEL_V << GPIO_SIG247_IN_SEL_S) +#define GPIO_SIG247_IN_SEL_V 0x00000001 +#define GPIO_SIG247_IN_SEL_S 7 + +/* GPIO_FUNC247_IN_INV_SEL : R/W; bitpos: [6]; default: 0; + * set this bit to invert input signal. 1:invert. 0:not invert. + */ + +#define GPIO_FUNC247_IN_INV_SEL (BIT(6)) +#define GPIO_FUNC247_IN_INV_SEL_M (GPIO_FUNC247_IN_INV_SEL_V << GPIO_FUNC247_IN_INV_SEL_S) +#define GPIO_FUNC247_IN_INV_SEL_V 0x00000001 +#define GPIO_FUNC247_IN_INV_SEL_S 6 + +/* GPIO_FUNC247_IN_SEL : R/W; bitpos: [5:0]; default: 0; + * set this value: s=0-53: connect GPIO[s] to this port. s=0x38: set this + * port always high level. s=0x3C: set this port always low level. + */ + +#define GPIO_FUNC247_IN_SEL 0x0000003f +#define GPIO_FUNC247_IN_SEL_M (GPIO_FUNC247_IN_SEL_V << GPIO_FUNC247_IN_SEL_S) +#define GPIO_FUNC247_IN_SEL_V 0x0000003f +#define GPIO_FUNC247_IN_SEL_S 0 + +/* GPIO_FUNC248_IN_SEL_CFG_REG register + * GPIO input function configuration register + */ + +#define GPIO_FUNC248_IN_SEL_CFG_REG (DR_REG_GPIO_BASE + 0x534) + +/* GPIO_SIG248_IN_SEL : R/W; bitpos: [7]; default: 0; + * set this bit to bypass GPIO. 1:do not bypass GPIO. 0:bypass GPIO. + */ + +#define GPIO_SIG248_IN_SEL (BIT(7)) +#define GPIO_SIG248_IN_SEL_M (GPIO_SIG248_IN_SEL_V << GPIO_SIG248_IN_SEL_S) +#define GPIO_SIG248_IN_SEL_V 0x00000001 +#define GPIO_SIG248_IN_SEL_S 7 + +/* GPIO_FUNC248_IN_INV_SEL : R/W; bitpos: [6]; default: 0; + * set this bit to invert input signal. 1:invert. 0:not invert. + */ + +#define GPIO_FUNC248_IN_INV_SEL (BIT(6)) +#define GPIO_FUNC248_IN_INV_SEL_M (GPIO_FUNC248_IN_INV_SEL_V << GPIO_FUNC248_IN_INV_SEL_S) +#define GPIO_FUNC248_IN_INV_SEL_V 0x00000001 +#define GPIO_FUNC248_IN_INV_SEL_S 6 + +/* GPIO_FUNC248_IN_SEL : R/W; bitpos: [5:0]; default: 0; + * set this value: s=0-53: connect GPIO[s] to this port. s=0x38: set this + * port always high level. s=0x3C: set this port always low level. + */ + +#define GPIO_FUNC248_IN_SEL 0x0000003f +#define GPIO_FUNC248_IN_SEL_M (GPIO_FUNC248_IN_SEL_V << GPIO_FUNC248_IN_SEL_S) +#define GPIO_FUNC248_IN_SEL_V 0x0000003f +#define GPIO_FUNC248_IN_SEL_S 0 + +/* GPIO_FUNC249_IN_SEL_CFG_REG register + * GPIO input function configuration register + */ + +#define GPIO_FUNC249_IN_SEL_CFG_REG (DR_REG_GPIO_BASE + 0x538) + +/* GPIO_SIG249_IN_SEL : R/W; bitpos: [7]; default: 0; + * set this bit to bypass GPIO. 1:do not bypass GPIO. 0:bypass GPIO. + */ + +#define GPIO_SIG249_IN_SEL (BIT(7)) +#define GPIO_SIG249_IN_SEL_M (GPIO_SIG249_IN_SEL_V << GPIO_SIG249_IN_SEL_S) +#define GPIO_SIG249_IN_SEL_V 0x00000001 +#define GPIO_SIG249_IN_SEL_S 7 + +/* GPIO_FUNC249_IN_INV_SEL : R/W; bitpos: [6]; default: 0; + * set this bit to invert input signal. 1:invert. 0:not invert. + */ + +#define GPIO_FUNC249_IN_INV_SEL (BIT(6)) +#define GPIO_FUNC249_IN_INV_SEL_M (GPIO_FUNC249_IN_INV_SEL_V << GPIO_FUNC249_IN_INV_SEL_S) +#define GPIO_FUNC249_IN_INV_SEL_V 0x00000001 +#define GPIO_FUNC249_IN_INV_SEL_S 6 + +/* GPIO_FUNC249_IN_SEL : R/W; bitpos: [5:0]; default: 0; + * set this value: s=0-53: connect GPIO[s] to this port. s=0x38: set this + * port always high level. s=0x3C: set this port always low level. + */ + +#define GPIO_FUNC249_IN_SEL 0x0000003f +#define GPIO_FUNC249_IN_SEL_M (GPIO_FUNC249_IN_SEL_V << GPIO_FUNC249_IN_SEL_S) +#define GPIO_FUNC249_IN_SEL_V 0x0000003f +#define GPIO_FUNC249_IN_SEL_S 0 + +/* GPIO_FUNC250_IN_SEL_CFG_REG register + * GPIO input function configuration register + */ + +#define GPIO_FUNC250_IN_SEL_CFG_REG (DR_REG_GPIO_BASE + 0x53c) + +/* GPIO_SIG250_IN_SEL : R/W; bitpos: [7]; default: 0; + * set this bit to bypass GPIO. 1:do not bypass GPIO. 0:bypass GPIO. + */ + +#define GPIO_SIG250_IN_SEL (BIT(7)) +#define GPIO_SIG250_IN_SEL_M (GPIO_SIG250_IN_SEL_V << GPIO_SIG250_IN_SEL_S) +#define GPIO_SIG250_IN_SEL_V 0x00000001 +#define GPIO_SIG250_IN_SEL_S 7 + +/* GPIO_FUNC250_IN_INV_SEL : R/W; bitpos: [6]; default: 0; + * set this bit to invert input signal. 1:invert. 0:not invert. + */ + +#define GPIO_FUNC250_IN_INV_SEL (BIT(6)) +#define GPIO_FUNC250_IN_INV_SEL_M (GPIO_FUNC250_IN_INV_SEL_V << GPIO_FUNC250_IN_INV_SEL_S) +#define GPIO_FUNC250_IN_INV_SEL_V 0x00000001 +#define GPIO_FUNC250_IN_INV_SEL_S 6 + +/* GPIO_FUNC250_IN_SEL : R/W; bitpos: [5:0]; default: 0; + * set this value: s=0-53: connect GPIO[s] to this port. s=0x38: set this + * port always high level. s=0x3C: set this port always low level. + */ + +#define GPIO_FUNC250_IN_SEL 0x0000003f +#define GPIO_FUNC250_IN_SEL_M (GPIO_FUNC250_IN_SEL_V << GPIO_FUNC250_IN_SEL_S) +#define GPIO_FUNC250_IN_SEL_V 0x0000003f +#define GPIO_FUNC250_IN_SEL_S 0 + +/* GPIO_FUNC251_IN_SEL_CFG_REG register + * GPIO input function configuration register + */ + +#define GPIO_FUNC251_IN_SEL_CFG_REG (DR_REG_GPIO_BASE + 0x540) + +/* GPIO_SIG251_IN_SEL : R/W; bitpos: [7]; default: 0; + * set this bit to bypass GPIO. 1:do not bypass GPIO. 0:bypass GPIO. + */ + +#define GPIO_SIG251_IN_SEL (BIT(7)) +#define GPIO_SIG251_IN_SEL_M (GPIO_SIG251_IN_SEL_V << GPIO_SIG251_IN_SEL_S) +#define GPIO_SIG251_IN_SEL_V 0x00000001 +#define GPIO_SIG251_IN_SEL_S 7 + +/* GPIO_FUNC251_IN_INV_SEL : R/W; bitpos: [6]; default: 0; + * set this bit to invert input signal. 1:invert. 0:not invert. + */ + +#define GPIO_FUNC251_IN_INV_SEL (BIT(6)) +#define GPIO_FUNC251_IN_INV_SEL_M (GPIO_FUNC251_IN_INV_SEL_V << GPIO_FUNC251_IN_INV_SEL_S) +#define GPIO_FUNC251_IN_INV_SEL_V 0x00000001 +#define GPIO_FUNC251_IN_INV_SEL_S 6 + +/* GPIO_FUNC251_IN_SEL : R/W; bitpos: [5:0]; default: 0; + * set this value: s=0-53: connect GPIO[s] to this port. s=0x38: set this + * port always high level. s=0x3C: set this port always low level. + */ + +#define GPIO_FUNC251_IN_SEL 0x0000003f +#define GPIO_FUNC251_IN_SEL_M (GPIO_FUNC251_IN_SEL_V << GPIO_FUNC251_IN_SEL_S) +#define GPIO_FUNC251_IN_SEL_V 0x0000003f +#define GPIO_FUNC251_IN_SEL_S 0 + +/* GPIO_FUNC252_IN_SEL_CFG_REG register + * GPIO input function configuration register + */ + +#define GPIO_FUNC252_IN_SEL_CFG_REG (DR_REG_GPIO_BASE + 0x544) + +/* GPIO_SIG252_IN_SEL : R/W; bitpos: [7]; default: 0; + * set this bit to bypass GPIO. 1:do not bypass GPIO. 0:bypass GPIO. + */ + +#define GPIO_SIG252_IN_SEL (BIT(7)) +#define GPIO_SIG252_IN_SEL_M (GPIO_SIG252_IN_SEL_V << GPIO_SIG252_IN_SEL_S) +#define GPIO_SIG252_IN_SEL_V 0x00000001 +#define GPIO_SIG252_IN_SEL_S 7 + +/* GPIO_FUNC252_IN_INV_SEL : R/W; bitpos: [6]; default: 0; + * set this bit to invert input signal. 1:invert. 0:not invert. + */ + +#define GPIO_FUNC252_IN_INV_SEL (BIT(6)) +#define GPIO_FUNC252_IN_INV_SEL_M (GPIO_FUNC252_IN_INV_SEL_V << GPIO_FUNC252_IN_INV_SEL_S) +#define GPIO_FUNC252_IN_INV_SEL_V 0x00000001 +#define GPIO_FUNC252_IN_INV_SEL_S 6 + +/* GPIO_FUNC252_IN_SEL : R/W; bitpos: [5:0]; default: 0; + * set this value: s=0-53: connect GPIO[s] to this port. s=0x38: set this + * port always high level. s=0x3C: set this port always low level. + */ + +#define GPIO_FUNC252_IN_SEL 0x0000003f +#define GPIO_FUNC252_IN_SEL_M (GPIO_FUNC252_IN_SEL_V << GPIO_FUNC252_IN_SEL_S) +#define GPIO_FUNC252_IN_SEL_V 0x0000003f +#define GPIO_FUNC252_IN_SEL_S 0 + +/* GPIO_FUNC253_IN_SEL_CFG_REG register + * GPIO input function configuration register + */ + +#define GPIO_FUNC253_IN_SEL_CFG_REG (DR_REG_GPIO_BASE + 0x548) + +/* GPIO_SIG253_IN_SEL : R/W; bitpos: [7]; default: 0; + * set this bit to bypass GPIO. 1:do not bypass GPIO. 0:bypass GPIO. + */ + +#define GPIO_SIG253_IN_SEL (BIT(7)) +#define GPIO_SIG253_IN_SEL_M (GPIO_SIG253_IN_SEL_V << GPIO_SIG253_IN_SEL_S) +#define GPIO_SIG253_IN_SEL_V 0x00000001 +#define GPIO_SIG253_IN_SEL_S 7 + +/* GPIO_FUNC253_IN_INV_SEL : R/W; bitpos: [6]; default: 0; + * set this bit to invert input signal. 1:invert. 0:not invert. + */ + +#define GPIO_FUNC253_IN_INV_SEL (BIT(6)) +#define GPIO_FUNC253_IN_INV_SEL_M (GPIO_FUNC253_IN_INV_SEL_V << GPIO_FUNC253_IN_INV_SEL_S) +#define GPIO_FUNC253_IN_INV_SEL_V 0x00000001 +#define GPIO_FUNC253_IN_INV_SEL_S 6 + +/* GPIO_FUNC253_IN_SEL : R/W; bitpos: [5:0]; default: 0; + * set this value: s=0-53: connect GPIO[s] to this port. s=0x38: set this + * port always high level. s=0x3C: set this port always low level. + */ + +#define GPIO_FUNC253_IN_SEL 0x0000003f +#define GPIO_FUNC253_IN_SEL_M (GPIO_FUNC253_IN_SEL_V << GPIO_FUNC253_IN_SEL_S) +#define GPIO_FUNC253_IN_SEL_V 0x0000003f +#define GPIO_FUNC253_IN_SEL_S 0 + +/* GPIO_FUNC254_IN_SEL_CFG_REG register + * GPIO input function configuration register + */ + +#define GPIO_FUNC254_IN_SEL_CFG_REG (DR_REG_GPIO_BASE + 0x54c) + +/* GPIO_SIG254_IN_SEL : R/W; bitpos: [7]; default: 0; + * set this bit to bypass GPIO. 1:do not bypass GPIO. 0:bypass GPIO. + */ + +#define GPIO_SIG254_IN_SEL (BIT(7)) +#define GPIO_SIG254_IN_SEL_M (GPIO_SIG254_IN_SEL_V << GPIO_SIG254_IN_SEL_S) +#define GPIO_SIG254_IN_SEL_V 0x00000001 +#define GPIO_SIG254_IN_SEL_S 7 + +/* GPIO_FUNC254_IN_INV_SEL : R/W; bitpos: [6]; default: 0; + * set this bit to invert input signal. 1:invert. 0:not invert. + */ + +#define GPIO_FUNC254_IN_INV_SEL (BIT(6)) +#define GPIO_FUNC254_IN_INV_SEL_M (GPIO_FUNC254_IN_INV_SEL_V << GPIO_FUNC254_IN_INV_SEL_S) +#define GPIO_FUNC254_IN_INV_SEL_V 0x00000001 +#define GPIO_FUNC254_IN_INV_SEL_S 6 + +/* GPIO_FUNC254_IN_SEL : R/W; bitpos: [5:0]; default: 0; + * set this value: s=0-53: connect GPIO[s] to this port. s=0x38: set this + * port always high level. s=0x3C: set this port always low level. + */ + +#define GPIO_FUNC254_IN_SEL 0x0000003f +#define GPIO_FUNC254_IN_SEL_M (GPIO_FUNC254_IN_SEL_V << GPIO_FUNC254_IN_SEL_S) +#define GPIO_FUNC254_IN_SEL_V 0x0000003f +#define GPIO_FUNC254_IN_SEL_S 0 + +/* GPIO_FUNC255_IN_SEL_CFG_REG register + * GPIO input function configuration register + */ + +#define GPIO_FUNC255_IN_SEL_CFG_REG (DR_REG_GPIO_BASE + 0x550) + +/* GPIO_SIG255_IN_SEL : R/W; bitpos: [7]; default: 0; + * set this bit to bypass GPIO. 1:do not bypass GPIO. 0:bypass GPIO. + */ + +#define GPIO_SIG255_IN_SEL (BIT(7)) +#define GPIO_SIG255_IN_SEL_M (GPIO_SIG255_IN_SEL_V << GPIO_SIG255_IN_SEL_S) +#define GPIO_SIG255_IN_SEL_V 0x00000001 +#define GPIO_SIG255_IN_SEL_S 7 + +/* GPIO_FUNC255_IN_INV_SEL : R/W; bitpos: [6]; default: 0; + * set this bit to invert input signal. 1:invert. 0:not invert. + */ + +#define GPIO_FUNC255_IN_INV_SEL (BIT(6)) +#define GPIO_FUNC255_IN_INV_SEL_M (GPIO_FUNC255_IN_INV_SEL_V << GPIO_FUNC255_IN_INV_SEL_S) +#define GPIO_FUNC255_IN_INV_SEL_V 0x00000001 +#define GPIO_FUNC255_IN_INV_SEL_S 6 + +/* GPIO_FUNC255_IN_SEL : R/W; bitpos: [5:0]; default: 0; + * set this value: s=0-53: connect GPIO[s] to this port. s=0x38: set this + * port always high level. s=0x3C: set this port always low level. + */ + +#define GPIO_FUNC255_IN_SEL 0x0000003f +#define GPIO_FUNC255_IN_SEL_M (GPIO_FUNC255_IN_SEL_V << GPIO_FUNC255_IN_SEL_S) +#define GPIO_FUNC255_IN_SEL_V 0x0000003f +#define GPIO_FUNC255_IN_SEL_S 0 + +/* GPIO_FUNC0_OUT_SEL_CFG_REG register + * GPIO output function select register + */ + +#define GPIO_FUNC0_OUT_SEL_CFG_REG (DR_REG_GPIO_BASE + 0x554) + +/* GPIO_FUNC0_OEN_INV_SEL : R/W; bitpos: [11]; default: 0; + * set this bit to invert output enable signal.1:invert.0:not invert. + */ + +#define GPIO_FUNC0_OEN_INV_SEL (BIT(11)) +#define GPIO_FUNC0_OEN_INV_SEL_M (GPIO_FUNC0_OEN_INV_SEL_V << GPIO_FUNC0_OEN_INV_SEL_S) +#define GPIO_FUNC0_OEN_INV_SEL_V 0x00000001 +#define GPIO_FUNC0_OEN_INV_SEL_S 11 + +/* GPIO_FUNC0_OEN_SEL : R/W; bitpos: [10]; default: 0; + * set this bit to select output enable signal.1:use GPIO_ENABLE_REG[n] as + * output enable signal.0:use peripheral output enable signal. + */ + +#define GPIO_FUNC0_OEN_SEL (BIT(10)) +#define GPIO_FUNC0_OEN_SEL_M (GPIO_FUNC0_OEN_SEL_V << GPIO_FUNC0_OEN_SEL_S) +#define GPIO_FUNC0_OEN_SEL_V 0x00000001 +#define GPIO_FUNC0_OEN_SEL_S 10 + +/* GPIO_FUNC0_OUT_INV_SEL : R/W; bitpos: [9]; default: 0; + * set this bit to invert output signal.1:invert.0:not invert. + */ + +#define GPIO_FUNC0_OUT_INV_SEL (BIT(9)) +#define GPIO_FUNC0_OUT_INV_SEL_M (GPIO_FUNC0_OUT_INV_SEL_V << GPIO_FUNC0_OUT_INV_SEL_S) +#define GPIO_FUNC0_OUT_INV_SEL_V 0x00000001 +#define GPIO_FUNC0_OUT_INV_SEL_S 9 + +/* GPIO_FUNC0_OUT_SEL : R/W; bitpos: [8:0]; default: 256; + * The value of the bits: 0<=s<=256. Set the value to select output signal. + * s=0-255: output of GPIO[n] equals input of peripheral[s]. s=256: output + * of GPIO[n] equals GPIO_OUT_REG[n]. + */ + +#define GPIO_FUNC0_OUT_SEL 0x000001ff +#define GPIO_FUNC0_OUT_SEL_M (GPIO_FUNC0_OUT_SEL_V << GPIO_FUNC0_OUT_SEL_S) +#define GPIO_FUNC0_OUT_SEL_V 0x000001ff +#define GPIO_FUNC0_OUT_SEL_S 0 + +/* GPIO_FUNC1_OUT_SEL_CFG_REG register + * GPIO output function select register + */ + +#define GPIO_FUNC1_OUT_SEL_CFG_REG (DR_REG_GPIO_BASE + 0x558) + +/* GPIO_FUNC1_OEN_INV_SEL : R/W; bitpos: [11]; default: 0; + * set this bit to invert output enable signal.1:invert.0:not invert. + */ + +#define GPIO_FUNC1_OEN_INV_SEL (BIT(11)) +#define GPIO_FUNC1_OEN_INV_SEL_M (GPIO_FUNC1_OEN_INV_SEL_V << GPIO_FUNC1_OEN_INV_SEL_S) +#define GPIO_FUNC1_OEN_INV_SEL_V 0x00000001 +#define GPIO_FUNC1_OEN_INV_SEL_S 11 + +/* GPIO_FUNC1_OEN_SEL : R/W; bitpos: [10]; default: 0; + * set this bit to select output enable signal.1:use GPIO_ENABLE_REG[n] as + * output enable signal.0:use peripheral output enable signal. + */ + +#define GPIO_FUNC1_OEN_SEL (BIT(10)) +#define GPIO_FUNC1_OEN_SEL_M (GPIO_FUNC1_OEN_SEL_V << GPIO_FUNC1_OEN_SEL_S) +#define GPIO_FUNC1_OEN_SEL_V 0x00000001 +#define GPIO_FUNC1_OEN_SEL_S 10 + +/* GPIO_FUNC1_OUT_INV_SEL : R/W; bitpos: [9]; default: 0; + * set this bit to invert output signal.1:invert.0:not invert. + */ + +#define GPIO_FUNC1_OUT_INV_SEL (BIT(9)) +#define GPIO_FUNC1_OUT_INV_SEL_M (GPIO_FUNC1_OUT_INV_SEL_V << GPIO_FUNC1_OUT_INV_SEL_S) +#define GPIO_FUNC1_OUT_INV_SEL_V 0x00000001 +#define GPIO_FUNC1_OUT_INV_SEL_S 9 + +/* GPIO_FUNC1_OUT_SEL : R/W; bitpos: [8:0]; default: 256; + * The value of the bits: 0<=s<=256. Set the value to select output signal. + * s=0-255: output of GPIO[n] equals input of peripheral[s]. s=256: output + * of GPIO[n] equals GPIO_OUT_REG[n]. + */ + +#define GPIO_FUNC1_OUT_SEL 0x000001ff +#define GPIO_FUNC1_OUT_SEL_M (GPIO_FUNC1_OUT_SEL_V << GPIO_FUNC1_OUT_SEL_S) +#define GPIO_FUNC1_OUT_SEL_V 0x000001ff +#define GPIO_FUNC1_OUT_SEL_S 0 + +/* GPIO_FUNC2_OUT_SEL_CFG_REG register + * GPIO output function select register + */ + +#define GPIO_FUNC2_OUT_SEL_CFG_REG (DR_REG_GPIO_BASE + 0x55c) + +/* GPIO_FUNC2_OEN_INV_SEL : R/W; bitpos: [11]; default: 0; + * set this bit to invert output enable signal.1:invert.0:not invert. + */ + +#define GPIO_FUNC2_OEN_INV_SEL (BIT(11)) +#define GPIO_FUNC2_OEN_INV_SEL_M (GPIO_FUNC2_OEN_INV_SEL_V << GPIO_FUNC2_OEN_INV_SEL_S) +#define GPIO_FUNC2_OEN_INV_SEL_V 0x00000001 +#define GPIO_FUNC2_OEN_INV_SEL_S 11 + +/* GPIO_FUNC2_OEN_SEL : R/W; bitpos: [10]; default: 0; + * set this bit to select output enable signal.1:use GPIO_ENABLE_REG[n] as + * output enable signal.0:use peripheral output enable signal. + */ + +#define GPIO_FUNC2_OEN_SEL (BIT(10)) +#define GPIO_FUNC2_OEN_SEL_M (GPIO_FUNC2_OEN_SEL_V << GPIO_FUNC2_OEN_SEL_S) +#define GPIO_FUNC2_OEN_SEL_V 0x00000001 +#define GPIO_FUNC2_OEN_SEL_S 10 + +/* GPIO_FUNC2_OUT_INV_SEL : R/W; bitpos: [9]; default: 0; + * set this bit to invert output signal.1:invert.0:not invert. + */ + +#define GPIO_FUNC2_OUT_INV_SEL (BIT(9)) +#define GPIO_FUNC2_OUT_INV_SEL_M (GPIO_FUNC2_OUT_INV_SEL_V << GPIO_FUNC2_OUT_INV_SEL_S) +#define GPIO_FUNC2_OUT_INV_SEL_V 0x00000001 +#define GPIO_FUNC2_OUT_INV_SEL_S 9 + +/* GPIO_FUNC2_OUT_SEL : R/W; bitpos: [8:0]; default: 256; + * The value of the bits: 0<=s<=256. Set the value to select output signal. + * s=0-255: output of GPIO[n] equals input of peripheral[s]. s=256: output + * of GPIO[n] equals GPIO_OUT_REG[n]. + */ + +#define GPIO_FUNC2_OUT_SEL 0x000001ff +#define GPIO_FUNC2_OUT_SEL_M (GPIO_FUNC2_OUT_SEL_V << GPIO_FUNC2_OUT_SEL_S) +#define GPIO_FUNC2_OUT_SEL_V 0x000001ff +#define GPIO_FUNC2_OUT_SEL_S 0 + +/* GPIO_FUNC3_OUT_SEL_CFG_REG register + * GPIO output function select register + */ + +#define GPIO_FUNC3_OUT_SEL_CFG_REG (DR_REG_GPIO_BASE + 0x560) + +/* GPIO_FUNC3_OEN_INV_SEL : R/W; bitpos: [11]; default: 0; + * set this bit to invert output enable signal.1:invert.0:not invert. + */ + +#define GPIO_FUNC3_OEN_INV_SEL (BIT(11)) +#define GPIO_FUNC3_OEN_INV_SEL_M (GPIO_FUNC3_OEN_INV_SEL_V << GPIO_FUNC3_OEN_INV_SEL_S) +#define GPIO_FUNC3_OEN_INV_SEL_V 0x00000001 +#define GPIO_FUNC3_OEN_INV_SEL_S 11 + +/* GPIO_FUNC3_OEN_SEL : R/W; bitpos: [10]; default: 0; + * set this bit to select output enable signal.1:use GPIO_ENABLE_REG[n] as + * output enable signal.0:use peripheral output enable signal. + */ + +#define GPIO_FUNC3_OEN_SEL (BIT(10)) +#define GPIO_FUNC3_OEN_SEL_M (GPIO_FUNC3_OEN_SEL_V << GPIO_FUNC3_OEN_SEL_S) +#define GPIO_FUNC3_OEN_SEL_V 0x00000001 +#define GPIO_FUNC3_OEN_SEL_S 10 + +/* GPIO_FUNC3_OUT_INV_SEL : R/W; bitpos: [9]; default: 0; + * set this bit to invert output signal.1:invert.0:not invert. + */ + +#define GPIO_FUNC3_OUT_INV_SEL (BIT(9)) +#define GPIO_FUNC3_OUT_INV_SEL_M (GPIO_FUNC3_OUT_INV_SEL_V << GPIO_FUNC3_OUT_INV_SEL_S) +#define GPIO_FUNC3_OUT_INV_SEL_V 0x00000001 +#define GPIO_FUNC3_OUT_INV_SEL_S 9 + +/* GPIO_FUNC3_OUT_SEL : R/W; bitpos: [8:0]; default: 256; + * The value of the bits: 0<=s<=256. Set the value to select output signal. + * s=0-255: output of GPIO[n] equals input of peripheral[s]. s=256: output + * of GPIO[n] equals GPIO_OUT_REG[n]. + */ + +#define GPIO_FUNC3_OUT_SEL 0x000001ff +#define GPIO_FUNC3_OUT_SEL_M (GPIO_FUNC3_OUT_SEL_V << GPIO_FUNC3_OUT_SEL_S) +#define GPIO_FUNC3_OUT_SEL_V 0x000001ff +#define GPIO_FUNC3_OUT_SEL_S 0 + +/* GPIO_FUNC4_OUT_SEL_CFG_REG register + * GPIO output function select register + */ + +#define GPIO_FUNC4_OUT_SEL_CFG_REG (DR_REG_GPIO_BASE + 0x564) + +/* GPIO_FUNC4_OEN_INV_SEL : R/W; bitpos: [11]; default: 0; + * set this bit to invert output enable signal.1:invert.0:not invert. + */ + +#define GPIO_FUNC4_OEN_INV_SEL (BIT(11)) +#define GPIO_FUNC4_OEN_INV_SEL_M (GPIO_FUNC4_OEN_INV_SEL_V << GPIO_FUNC4_OEN_INV_SEL_S) +#define GPIO_FUNC4_OEN_INV_SEL_V 0x00000001 +#define GPIO_FUNC4_OEN_INV_SEL_S 11 + +/* GPIO_FUNC4_OEN_SEL : R/W; bitpos: [10]; default: 0; + * set this bit to select output enable signal.1:use GPIO_ENABLE_REG[n] as + * output enable signal.0:use peripheral output enable signal. + */ + +#define GPIO_FUNC4_OEN_SEL (BIT(10)) +#define GPIO_FUNC4_OEN_SEL_M (GPIO_FUNC4_OEN_SEL_V << GPIO_FUNC4_OEN_SEL_S) +#define GPIO_FUNC4_OEN_SEL_V 0x00000001 +#define GPIO_FUNC4_OEN_SEL_S 10 + +/* GPIO_FUNC4_OUT_INV_SEL : R/W; bitpos: [9]; default: 0; + * set this bit to invert output signal.1:invert.0:not invert. + */ + +#define GPIO_FUNC4_OUT_INV_SEL (BIT(9)) +#define GPIO_FUNC4_OUT_INV_SEL_M (GPIO_FUNC4_OUT_INV_SEL_V << GPIO_FUNC4_OUT_INV_SEL_S) +#define GPIO_FUNC4_OUT_INV_SEL_V 0x00000001 +#define GPIO_FUNC4_OUT_INV_SEL_S 9 + +/* GPIO_FUNC4_OUT_SEL : R/W; bitpos: [8:0]; default: 256; + * The value of the bits: 0<=s<=256. Set the value to select output signal. + * s=0-255: output of GPIO[n] equals input of peripheral[s]. s=256: output + * of GPIO[n] equals GPIO_OUT_REG[n]. + */ + +#define GPIO_FUNC4_OUT_SEL 0x000001ff +#define GPIO_FUNC4_OUT_SEL_M (GPIO_FUNC4_OUT_SEL_V << GPIO_FUNC4_OUT_SEL_S) +#define GPIO_FUNC4_OUT_SEL_V 0x000001ff +#define GPIO_FUNC4_OUT_SEL_S 0 + +/* GPIO_FUNC5_OUT_SEL_CFG_REG register + * GPIO output function select register + */ + +#define GPIO_FUNC5_OUT_SEL_CFG_REG (DR_REG_GPIO_BASE + 0x568) + +/* GPIO_FUNC5_OEN_INV_SEL : R/W; bitpos: [11]; default: 0; + * set this bit to invert output enable signal.1:invert.0:not invert. + */ + +#define GPIO_FUNC5_OEN_INV_SEL (BIT(11)) +#define GPIO_FUNC5_OEN_INV_SEL_M (GPIO_FUNC5_OEN_INV_SEL_V << GPIO_FUNC5_OEN_INV_SEL_S) +#define GPIO_FUNC5_OEN_INV_SEL_V 0x00000001 +#define GPIO_FUNC5_OEN_INV_SEL_S 11 + +/* GPIO_FUNC5_OEN_SEL : R/W; bitpos: [10]; default: 0; + * set this bit to select output enable signal.1:use GPIO_ENABLE_REG[n] as + * output enable signal.0:use peripheral output enable signal. + */ + +#define GPIO_FUNC5_OEN_SEL (BIT(10)) +#define GPIO_FUNC5_OEN_SEL_M (GPIO_FUNC5_OEN_SEL_V << GPIO_FUNC5_OEN_SEL_S) +#define GPIO_FUNC5_OEN_SEL_V 0x00000001 +#define GPIO_FUNC5_OEN_SEL_S 10 + +/* GPIO_FUNC5_OUT_INV_SEL : R/W; bitpos: [9]; default: 0; + * set this bit to invert output signal.1:invert.0:not invert. + */ + +#define GPIO_FUNC5_OUT_INV_SEL (BIT(9)) +#define GPIO_FUNC5_OUT_INV_SEL_M (GPIO_FUNC5_OUT_INV_SEL_V << GPIO_FUNC5_OUT_INV_SEL_S) +#define GPIO_FUNC5_OUT_INV_SEL_V 0x00000001 +#define GPIO_FUNC5_OUT_INV_SEL_S 9 + +/* GPIO_FUNC5_OUT_SEL : R/W; bitpos: [8:0]; default: 256; + * The value of the bits: 0<=s<=256. Set the value to select output signal. + * s=0-255: output of GPIO[n] equals input of peripheral[s]. s=256: output + * of GPIO[n] equals GPIO_OUT_REG[n]. + */ + +#define GPIO_FUNC5_OUT_SEL 0x000001ff +#define GPIO_FUNC5_OUT_SEL_M (GPIO_FUNC5_OUT_SEL_V << GPIO_FUNC5_OUT_SEL_S) +#define GPIO_FUNC5_OUT_SEL_V 0x000001ff +#define GPIO_FUNC5_OUT_SEL_S 0 + +/* GPIO_FUNC6_OUT_SEL_CFG_REG register + * GPIO output function select register + */ + +#define GPIO_FUNC6_OUT_SEL_CFG_REG (DR_REG_GPIO_BASE + 0x56c) + +/* GPIO_FUNC6_OEN_INV_SEL : R/W; bitpos: [11]; default: 0; + * set this bit to invert output enable signal.1:invert.0:not invert. + */ + +#define GPIO_FUNC6_OEN_INV_SEL (BIT(11)) +#define GPIO_FUNC6_OEN_INV_SEL_M (GPIO_FUNC6_OEN_INV_SEL_V << GPIO_FUNC6_OEN_INV_SEL_S) +#define GPIO_FUNC6_OEN_INV_SEL_V 0x00000001 +#define GPIO_FUNC6_OEN_INV_SEL_S 11 + +/* GPIO_FUNC6_OEN_SEL : R/W; bitpos: [10]; default: 0; + * set this bit to select output enable signal.1:use GPIO_ENABLE_REG[n] as + * output enable signal.0:use peripheral output enable signal. + */ + +#define GPIO_FUNC6_OEN_SEL (BIT(10)) +#define GPIO_FUNC6_OEN_SEL_M (GPIO_FUNC6_OEN_SEL_V << GPIO_FUNC6_OEN_SEL_S) +#define GPIO_FUNC6_OEN_SEL_V 0x00000001 +#define GPIO_FUNC6_OEN_SEL_S 10 + +/* GPIO_FUNC6_OUT_INV_SEL : R/W; bitpos: [9]; default: 0; + * set this bit to invert output signal.1:invert.0:not invert. + */ + +#define GPIO_FUNC6_OUT_INV_SEL (BIT(9)) +#define GPIO_FUNC6_OUT_INV_SEL_M (GPIO_FUNC6_OUT_INV_SEL_V << GPIO_FUNC6_OUT_INV_SEL_S) +#define GPIO_FUNC6_OUT_INV_SEL_V 0x00000001 +#define GPIO_FUNC6_OUT_INV_SEL_S 9 + +/* GPIO_FUNC6_OUT_SEL : R/W; bitpos: [8:0]; default: 256; + * The value of the bits: 0<=s<=256. Set the value to select output signal. + * s=0-255: output of GPIO[n] equals input of peripheral[s]. s=256: output + * of GPIO[n] equals GPIO_OUT_REG[n]. + */ + +#define GPIO_FUNC6_OUT_SEL 0x000001ff +#define GPIO_FUNC6_OUT_SEL_M (GPIO_FUNC6_OUT_SEL_V << GPIO_FUNC6_OUT_SEL_S) +#define GPIO_FUNC6_OUT_SEL_V 0x000001ff +#define GPIO_FUNC6_OUT_SEL_S 0 + +/* GPIO_FUNC7_OUT_SEL_CFG_REG register + * GPIO output function select register + */ + +#define GPIO_FUNC7_OUT_SEL_CFG_REG (DR_REG_GPIO_BASE + 0x570) + +/* GPIO_FUNC7_OEN_INV_SEL : R/W; bitpos: [11]; default: 0; + * set this bit to invert output enable signal.1:invert.0:not invert. + */ + +#define GPIO_FUNC7_OEN_INV_SEL (BIT(11)) +#define GPIO_FUNC7_OEN_INV_SEL_M (GPIO_FUNC7_OEN_INV_SEL_V << GPIO_FUNC7_OEN_INV_SEL_S) +#define GPIO_FUNC7_OEN_INV_SEL_V 0x00000001 +#define GPIO_FUNC7_OEN_INV_SEL_S 11 + +/* GPIO_FUNC7_OEN_SEL : R/W; bitpos: [10]; default: 0; + * set this bit to select output enable signal.1:use GPIO_ENABLE_REG[n] as + * output enable signal.0:use peripheral output enable signal. + */ + +#define GPIO_FUNC7_OEN_SEL (BIT(10)) +#define GPIO_FUNC7_OEN_SEL_M (GPIO_FUNC7_OEN_SEL_V << GPIO_FUNC7_OEN_SEL_S) +#define GPIO_FUNC7_OEN_SEL_V 0x00000001 +#define GPIO_FUNC7_OEN_SEL_S 10 + +/* GPIO_FUNC7_OUT_INV_SEL : R/W; bitpos: [9]; default: 0; + * set this bit to invert output signal.1:invert.0:not invert. + */ + +#define GPIO_FUNC7_OUT_INV_SEL (BIT(9)) +#define GPIO_FUNC7_OUT_INV_SEL_M (GPIO_FUNC7_OUT_INV_SEL_V << GPIO_FUNC7_OUT_INV_SEL_S) +#define GPIO_FUNC7_OUT_INV_SEL_V 0x00000001 +#define GPIO_FUNC7_OUT_INV_SEL_S 9 + +/* GPIO_FUNC7_OUT_SEL : R/W; bitpos: [8:0]; default: 256; + * The value of the bits: 0<=s<=256. Set the value to select output signal. + * s=0-255: output of GPIO[n] equals input of peripheral[s]. s=256: output + * of GPIO[n] equals GPIO_OUT_REG[n]. + */ + +#define GPIO_FUNC7_OUT_SEL 0x000001ff +#define GPIO_FUNC7_OUT_SEL_M (GPIO_FUNC7_OUT_SEL_V << GPIO_FUNC7_OUT_SEL_S) +#define GPIO_FUNC7_OUT_SEL_V 0x000001ff +#define GPIO_FUNC7_OUT_SEL_S 0 + +/* GPIO_FUNC8_OUT_SEL_CFG_REG register + * GPIO output function select register + */ + +#define GPIO_FUNC8_OUT_SEL_CFG_REG (DR_REG_GPIO_BASE + 0x574) + +/* GPIO_FUNC8_OEN_INV_SEL : R/W; bitpos: [11]; default: 0; + * set this bit to invert output enable signal.1:invert.0:not invert. + */ + +#define GPIO_FUNC8_OEN_INV_SEL (BIT(11)) +#define GPIO_FUNC8_OEN_INV_SEL_M (GPIO_FUNC8_OEN_INV_SEL_V << GPIO_FUNC8_OEN_INV_SEL_S) +#define GPIO_FUNC8_OEN_INV_SEL_V 0x00000001 +#define GPIO_FUNC8_OEN_INV_SEL_S 11 + +/* GPIO_FUNC8_OEN_SEL : R/W; bitpos: [10]; default: 0; + * set this bit to select output enable signal.1:use GPIO_ENABLE_REG[n] as + * output enable signal.0:use peripheral output enable signal. + */ + +#define GPIO_FUNC8_OEN_SEL (BIT(10)) +#define GPIO_FUNC8_OEN_SEL_M (GPIO_FUNC8_OEN_SEL_V << GPIO_FUNC8_OEN_SEL_S) +#define GPIO_FUNC8_OEN_SEL_V 0x00000001 +#define GPIO_FUNC8_OEN_SEL_S 10 + +/* GPIO_FUNC8_OUT_INV_SEL : R/W; bitpos: [9]; default: 0; + * set this bit to invert output signal.1:invert.0:not invert. + */ + +#define GPIO_FUNC8_OUT_INV_SEL (BIT(9)) +#define GPIO_FUNC8_OUT_INV_SEL_M (GPIO_FUNC8_OUT_INV_SEL_V << GPIO_FUNC8_OUT_INV_SEL_S) +#define GPIO_FUNC8_OUT_INV_SEL_V 0x00000001 +#define GPIO_FUNC8_OUT_INV_SEL_S 9 + +/* GPIO_FUNC8_OUT_SEL : R/W; bitpos: [8:0]; default: 256; + * The value of the bits: 0<=s<=256. Set the value to select output signal. + * s=0-255: output of GPIO[n] equals input of peripheral[s]. s=256: output + * of GPIO[n] equals GPIO_OUT_REG[n]. + */ + +#define GPIO_FUNC8_OUT_SEL 0x000001ff +#define GPIO_FUNC8_OUT_SEL_M (GPIO_FUNC8_OUT_SEL_V << GPIO_FUNC8_OUT_SEL_S) +#define GPIO_FUNC8_OUT_SEL_V 0x000001ff +#define GPIO_FUNC8_OUT_SEL_S 0 + +/* GPIO_FUNC9_OUT_SEL_CFG_REG register + * GPIO output function select register + */ + +#define GPIO_FUNC9_OUT_SEL_CFG_REG (DR_REG_GPIO_BASE + 0x578) + +/* GPIO_FUNC9_OEN_INV_SEL : R/W; bitpos: [11]; default: 0; + * set this bit to invert output enable signal.1:invert.0:not invert. + */ + +#define GPIO_FUNC9_OEN_INV_SEL (BIT(11)) +#define GPIO_FUNC9_OEN_INV_SEL_M (GPIO_FUNC9_OEN_INV_SEL_V << GPIO_FUNC9_OEN_INV_SEL_S) +#define GPIO_FUNC9_OEN_INV_SEL_V 0x00000001 +#define GPIO_FUNC9_OEN_INV_SEL_S 11 + +/* GPIO_FUNC9_OEN_SEL : R/W; bitpos: [10]; default: 0; + * set this bit to select output enable signal.1:use GPIO_ENABLE_REG[n] as + * output enable signal.0:use peripheral output enable signal. + */ + +#define GPIO_FUNC9_OEN_SEL (BIT(10)) +#define GPIO_FUNC9_OEN_SEL_M (GPIO_FUNC9_OEN_SEL_V << GPIO_FUNC9_OEN_SEL_S) +#define GPIO_FUNC9_OEN_SEL_V 0x00000001 +#define GPIO_FUNC9_OEN_SEL_S 10 + +/* GPIO_FUNC9_OUT_INV_SEL : R/W; bitpos: [9]; default: 0; + * set this bit to invert output signal.1:invert.0:not invert. + */ + +#define GPIO_FUNC9_OUT_INV_SEL (BIT(9)) +#define GPIO_FUNC9_OUT_INV_SEL_M (GPIO_FUNC9_OUT_INV_SEL_V << GPIO_FUNC9_OUT_INV_SEL_S) +#define GPIO_FUNC9_OUT_INV_SEL_V 0x00000001 +#define GPIO_FUNC9_OUT_INV_SEL_S 9 + +/* GPIO_FUNC9_OUT_SEL : R/W; bitpos: [8:0]; default: 256; + * The value of the bits: 0<=s<=256. Set the value to select output signal. + * s=0-255: output of GPIO[n] equals input of peripheral[s]. s=256: output + * of GPIO[n] equals GPIO_OUT_REG[n]. + */ + +#define GPIO_FUNC9_OUT_SEL 0x000001ff +#define GPIO_FUNC9_OUT_SEL_M (GPIO_FUNC9_OUT_SEL_V << GPIO_FUNC9_OUT_SEL_S) +#define GPIO_FUNC9_OUT_SEL_V 0x000001ff +#define GPIO_FUNC9_OUT_SEL_S 0 + +/* GPIO_FUNC10_OUT_SEL_CFG_REG register + * GPIO output function select register + */ + +#define GPIO_FUNC10_OUT_SEL_CFG_REG (DR_REG_GPIO_BASE + 0x57c) + +/* GPIO_FUNC10_OEN_INV_SEL : R/W; bitpos: [11]; default: 0; + * set this bit to invert output enable signal.1:invert.0:not invert. + */ + +#define GPIO_FUNC10_OEN_INV_SEL (BIT(11)) +#define GPIO_FUNC10_OEN_INV_SEL_M (GPIO_FUNC10_OEN_INV_SEL_V << GPIO_FUNC10_OEN_INV_SEL_S) +#define GPIO_FUNC10_OEN_INV_SEL_V 0x00000001 +#define GPIO_FUNC10_OEN_INV_SEL_S 11 + +/* GPIO_FUNC10_OEN_SEL : R/W; bitpos: [10]; default: 0; + * set this bit to select output enable signal.1:use GPIO_ENABLE_REG[n] as + * output enable signal.0:use peripheral output enable signal. + */ + +#define GPIO_FUNC10_OEN_SEL (BIT(10)) +#define GPIO_FUNC10_OEN_SEL_M (GPIO_FUNC10_OEN_SEL_V << GPIO_FUNC10_OEN_SEL_S) +#define GPIO_FUNC10_OEN_SEL_V 0x00000001 +#define GPIO_FUNC10_OEN_SEL_S 10 + +/* GPIO_FUNC10_OUT_INV_SEL : R/W; bitpos: [9]; default: 0; + * set this bit to invert output signal.1:invert.0:not invert. + */ + +#define GPIO_FUNC10_OUT_INV_SEL (BIT(9)) +#define GPIO_FUNC10_OUT_INV_SEL_M (GPIO_FUNC10_OUT_INV_SEL_V << GPIO_FUNC10_OUT_INV_SEL_S) +#define GPIO_FUNC10_OUT_INV_SEL_V 0x00000001 +#define GPIO_FUNC10_OUT_INV_SEL_S 9 + +/* GPIO_FUNC10_OUT_SEL : R/W; bitpos: [8:0]; default: 256; + * The value of the bits: 0<=s<=256. Set the value to select output signal. + * s=0-255: output of GPIO[n] equals input of peripheral[s]. s=256: output + * of GPIO[n] equals GPIO_OUT_REG[n]. + */ + +#define GPIO_FUNC10_OUT_SEL 0x000001ff +#define GPIO_FUNC10_OUT_SEL_M (GPIO_FUNC10_OUT_SEL_V << GPIO_FUNC10_OUT_SEL_S) +#define GPIO_FUNC10_OUT_SEL_V 0x000001ff +#define GPIO_FUNC10_OUT_SEL_S 0 + +/* GPIO_FUNC11_OUT_SEL_CFG_REG register + * GPIO output function select register + */ + +#define GPIO_FUNC11_OUT_SEL_CFG_REG (DR_REG_GPIO_BASE + 0x580) + +/* GPIO_FUNC11_OEN_INV_SEL : R/W; bitpos: [11]; default: 0; + * set this bit to invert output enable signal.1:invert.0:not invert. + */ + +#define GPIO_FUNC11_OEN_INV_SEL (BIT(11)) +#define GPIO_FUNC11_OEN_INV_SEL_M (GPIO_FUNC11_OEN_INV_SEL_V << GPIO_FUNC11_OEN_INV_SEL_S) +#define GPIO_FUNC11_OEN_INV_SEL_V 0x00000001 +#define GPIO_FUNC11_OEN_INV_SEL_S 11 + +/* GPIO_FUNC11_OEN_SEL : R/W; bitpos: [10]; default: 0; + * set this bit to select output enable signal.1:use GPIO_ENABLE_REG[n] as + * output enable signal.0:use peripheral output enable signal. + */ + +#define GPIO_FUNC11_OEN_SEL (BIT(10)) +#define GPIO_FUNC11_OEN_SEL_M (GPIO_FUNC11_OEN_SEL_V << GPIO_FUNC11_OEN_SEL_S) +#define GPIO_FUNC11_OEN_SEL_V 0x00000001 +#define GPIO_FUNC11_OEN_SEL_S 10 + +/* GPIO_FUNC11_OUT_INV_SEL : R/W; bitpos: [9]; default: 0; + * set this bit to invert output signal.1:invert.0:not invert. + */ + +#define GPIO_FUNC11_OUT_INV_SEL (BIT(9)) +#define GPIO_FUNC11_OUT_INV_SEL_M (GPIO_FUNC11_OUT_INV_SEL_V << GPIO_FUNC11_OUT_INV_SEL_S) +#define GPIO_FUNC11_OUT_INV_SEL_V 0x00000001 +#define GPIO_FUNC11_OUT_INV_SEL_S 9 + +/* GPIO_FUNC11_OUT_SEL : R/W; bitpos: [8:0]; default: 256; + * The value of the bits: 0<=s<=256. Set the value to select output signal. + * s=0-255: output of GPIO[n] equals input of peripheral[s]. s=256: output + * of GPIO[n] equals GPIO_OUT_REG[n]. + */ + +#define GPIO_FUNC11_OUT_SEL 0x000001ff +#define GPIO_FUNC11_OUT_SEL_M (GPIO_FUNC11_OUT_SEL_V << GPIO_FUNC11_OUT_SEL_S) +#define GPIO_FUNC11_OUT_SEL_V 0x000001ff +#define GPIO_FUNC11_OUT_SEL_S 0 + +/* GPIO_FUNC12_OUT_SEL_CFG_REG register + * GPIO output function select register + */ + +#define GPIO_FUNC12_OUT_SEL_CFG_REG (DR_REG_GPIO_BASE + 0x584) + +/* GPIO_FUNC12_OEN_INV_SEL : R/W; bitpos: [11]; default: 0; + * set this bit to invert output enable signal.1:invert.0:not invert. + */ + +#define GPIO_FUNC12_OEN_INV_SEL (BIT(11)) +#define GPIO_FUNC12_OEN_INV_SEL_M (GPIO_FUNC12_OEN_INV_SEL_V << GPIO_FUNC12_OEN_INV_SEL_S) +#define GPIO_FUNC12_OEN_INV_SEL_V 0x00000001 +#define GPIO_FUNC12_OEN_INV_SEL_S 11 + +/* GPIO_FUNC12_OEN_SEL : R/W; bitpos: [10]; default: 0; + * set this bit to select output enable signal.1:use GPIO_ENABLE_REG[n] as + * output enable signal.0:use peripheral output enable signal. + */ + +#define GPIO_FUNC12_OEN_SEL (BIT(10)) +#define GPIO_FUNC12_OEN_SEL_M (GPIO_FUNC12_OEN_SEL_V << GPIO_FUNC12_OEN_SEL_S) +#define GPIO_FUNC12_OEN_SEL_V 0x00000001 +#define GPIO_FUNC12_OEN_SEL_S 10 + +/* GPIO_FUNC12_OUT_INV_SEL : R/W; bitpos: [9]; default: 0; + * set this bit to invert output signal.1:invert.0:not invert. + */ + +#define GPIO_FUNC12_OUT_INV_SEL (BIT(9)) +#define GPIO_FUNC12_OUT_INV_SEL_M (GPIO_FUNC12_OUT_INV_SEL_V << GPIO_FUNC12_OUT_INV_SEL_S) +#define GPIO_FUNC12_OUT_INV_SEL_V 0x00000001 +#define GPIO_FUNC12_OUT_INV_SEL_S 9 + +/* GPIO_FUNC12_OUT_SEL : R/W; bitpos: [8:0]; default: 256; + * The value of the bits: 0<=s<=256. Set the value to select output signal. + * s=0-255: output of GPIO[n] equals input of peripheral[s]. s=256: output + * of GPIO[n] equals GPIO_OUT_REG[n]. + */ + +#define GPIO_FUNC12_OUT_SEL 0x000001ff +#define GPIO_FUNC12_OUT_SEL_M (GPIO_FUNC12_OUT_SEL_V << GPIO_FUNC12_OUT_SEL_S) +#define GPIO_FUNC12_OUT_SEL_V 0x000001ff +#define GPIO_FUNC12_OUT_SEL_S 0 + +/* GPIO_FUNC13_OUT_SEL_CFG_REG register + * GPIO output function select register + */ + +#define GPIO_FUNC13_OUT_SEL_CFG_REG (DR_REG_GPIO_BASE + 0x588) + +/* GPIO_FUNC13_OEN_INV_SEL : R/W; bitpos: [11]; default: 0; + * set this bit to invert output enable signal.1:invert.0:not invert. + */ + +#define GPIO_FUNC13_OEN_INV_SEL (BIT(11)) +#define GPIO_FUNC13_OEN_INV_SEL_M (GPIO_FUNC13_OEN_INV_SEL_V << GPIO_FUNC13_OEN_INV_SEL_S) +#define GPIO_FUNC13_OEN_INV_SEL_V 0x00000001 +#define GPIO_FUNC13_OEN_INV_SEL_S 11 + +/* GPIO_FUNC13_OEN_SEL : R/W; bitpos: [10]; default: 0; + * set this bit to select output enable signal.1:use GPIO_ENABLE_REG[n] as + * output enable signal.0:use peripheral output enable signal. + */ + +#define GPIO_FUNC13_OEN_SEL (BIT(10)) +#define GPIO_FUNC13_OEN_SEL_M (GPIO_FUNC13_OEN_SEL_V << GPIO_FUNC13_OEN_SEL_S) +#define GPIO_FUNC13_OEN_SEL_V 0x00000001 +#define GPIO_FUNC13_OEN_SEL_S 10 + +/* GPIO_FUNC13_OUT_INV_SEL : R/W; bitpos: [9]; default: 0; + * set this bit to invert output signal.1:invert.0:not invert. + */ + +#define GPIO_FUNC13_OUT_INV_SEL (BIT(9)) +#define GPIO_FUNC13_OUT_INV_SEL_M (GPIO_FUNC13_OUT_INV_SEL_V << GPIO_FUNC13_OUT_INV_SEL_S) +#define GPIO_FUNC13_OUT_INV_SEL_V 0x00000001 +#define GPIO_FUNC13_OUT_INV_SEL_S 9 + +/* GPIO_FUNC13_OUT_SEL : R/W; bitpos: [8:0]; default: 256; + * The value of the bits: 0<=s<=256. Set the value to select output signal. + * s=0-255: output of GPIO[n] equals input of peripheral[s]. s=256: output + * of GPIO[n] equals GPIO_OUT_REG[n]. + */ + +#define GPIO_FUNC13_OUT_SEL 0x000001ff +#define GPIO_FUNC13_OUT_SEL_M (GPIO_FUNC13_OUT_SEL_V << GPIO_FUNC13_OUT_SEL_S) +#define GPIO_FUNC13_OUT_SEL_V 0x000001ff +#define GPIO_FUNC13_OUT_SEL_S 0 + +/* GPIO_FUNC14_OUT_SEL_CFG_REG register + * GPIO output function select register + */ + +#define GPIO_FUNC14_OUT_SEL_CFG_REG (DR_REG_GPIO_BASE + 0x58c) + +/* GPIO_FUNC14_OEN_INV_SEL : R/W; bitpos: [11]; default: 0; + * set this bit to invert output enable signal.1:invert.0:not invert. + */ + +#define GPIO_FUNC14_OEN_INV_SEL (BIT(11)) +#define GPIO_FUNC14_OEN_INV_SEL_M (GPIO_FUNC14_OEN_INV_SEL_V << GPIO_FUNC14_OEN_INV_SEL_S) +#define GPIO_FUNC14_OEN_INV_SEL_V 0x00000001 +#define GPIO_FUNC14_OEN_INV_SEL_S 11 + +/* GPIO_FUNC14_OEN_SEL : R/W; bitpos: [10]; default: 0; + * set this bit to select output enable signal.1:use GPIO_ENABLE_REG[n] as + * output enable signal.0:use peripheral output enable signal. + */ + +#define GPIO_FUNC14_OEN_SEL (BIT(10)) +#define GPIO_FUNC14_OEN_SEL_M (GPIO_FUNC14_OEN_SEL_V << GPIO_FUNC14_OEN_SEL_S) +#define GPIO_FUNC14_OEN_SEL_V 0x00000001 +#define GPIO_FUNC14_OEN_SEL_S 10 + +/* GPIO_FUNC14_OUT_INV_SEL : R/W; bitpos: [9]; default: 0; + * set this bit to invert output signal.1:invert.0:not invert. + */ + +#define GPIO_FUNC14_OUT_INV_SEL (BIT(9)) +#define GPIO_FUNC14_OUT_INV_SEL_M (GPIO_FUNC14_OUT_INV_SEL_V << GPIO_FUNC14_OUT_INV_SEL_S) +#define GPIO_FUNC14_OUT_INV_SEL_V 0x00000001 +#define GPIO_FUNC14_OUT_INV_SEL_S 9 + +/* GPIO_FUNC14_OUT_SEL : R/W; bitpos: [8:0]; default: 256; + * The value of the bits: 0<=s<=256. Set the value to select output signal. + * s=0-255: output of GPIO[n] equals input of peripheral[s]. s=256: output + * of GPIO[n] equals GPIO_OUT_REG[n]. + */ + +#define GPIO_FUNC14_OUT_SEL 0x000001ff +#define GPIO_FUNC14_OUT_SEL_M (GPIO_FUNC14_OUT_SEL_V << GPIO_FUNC14_OUT_SEL_S) +#define GPIO_FUNC14_OUT_SEL_V 0x000001ff +#define GPIO_FUNC14_OUT_SEL_S 0 + +/* GPIO_FUNC15_OUT_SEL_CFG_REG register + * GPIO output function select register + */ + +#define GPIO_FUNC15_OUT_SEL_CFG_REG (DR_REG_GPIO_BASE + 0x590) + +/* GPIO_FUNC15_OEN_INV_SEL : R/W; bitpos: [11]; default: 0; + * set this bit to invert output enable signal.1:invert.0:not invert. + */ + +#define GPIO_FUNC15_OEN_INV_SEL (BIT(11)) +#define GPIO_FUNC15_OEN_INV_SEL_M (GPIO_FUNC15_OEN_INV_SEL_V << GPIO_FUNC15_OEN_INV_SEL_S) +#define GPIO_FUNC15_OEN_INV_SEL_V 0x00000001 +#define GPIO_FUNC15_OEN_INV_SEL_S 11 + +/* GPIO_FUNC15_OEN_SEL : R/W; bitpos: [10]; default: 0; + * set this bit to select output enable signal.1:use GPIO_ENABLE_REG[n] as + * output enable signal.0:use peripheral output enable signal. + */ + +#define GPIO_FUNC15_OEN_SEL (BIT(10)) +#define GPIO_FUNC15_OEN_SEL_M (GPIO_FUNC15_OEN_SEL_V << GPIO_FUNC15_OEN_SEL_S) +#define GPIO_FUNC15_OEN_SEL_V 0x00000001 +#define GPIO_FUNC15_OEN_SEL_S 10 + +/* GPIO_FUNC15_OUT_INV_SEL : R/W; bitpos: [9]; default: 0; + * set this bit to invert output signal.1:invert.0:not invert. + */ + +#define GPIO_FUNC15_OUT_INV_SEL (BIT(9)) +#define GPIO_FUNC15_OUT_INV_SEL_M (GPIO_FUNC15_OUT_INV_SEL_V << GPIO_FUNC15_OUT_INV_SEL_S) +#define GPIO_FUNC15_OUT_INV_SEL_V 0x00000001 +#define GPIO_FUNC15_OUT_INV_SEL_S 9 + +/* GPIO_FUNC15_OUT_SEL : R/W; bitpos: [8:0]; default: 256; + * The value of the bits: 0<=s<=256. Set the value to select output signal. + * s=0-255: output of GPIO[n] equals input of peripheral[s]. s=256: output + * of GPIO[n] equals GPIO_OUT_REG[n]. + */ + +#define GPIO_FUNC15_OUT_SEL 0x000001ff +#define GPIO_FUNC15_OUT_SEL_M (GPIO_FUNC15_OUT_SEL_V << GPIO_FUNC15_OUT_SEL_S) +#define GPIO_FUNC15_OUT_SEL_V 0x000001ff +#define GPIO_FUNC15_OUT_SEL_S 0 + +/* GPIO_FUNC16_OUT_SEL_CFG_REG register + * GPIO output function select register + */ + +#define GPIO_FUNC16_OUT_SEL_CFG_REG (DR_REG_GPIO_BASE + 0x594) + +/* GPIO_FUNC16_OEN_INV_SEL : R/W; bitpos: [11]; default: 0; + * set this bit to invert output enable signal.1:invert.0:not invert. + */ + +#define GPIO_FUNC16_OEN_INV_SEL (BIT(11)) +#define GPIO_FUNC16_OEN_INV_SEL_M (GPIO_FUNC16_OEN_INV_SEL_V << GPIO_FUNC16_OEN_INV_SEL_S) +#define GPIO_FUNC16_OEN_INV_SEL_V 0x00000001 +#define GPIO_FUNC16_OEN_INV_SEL_S 11 + +/* GPIO_FUNC16_OEN_SEL : R/W; bitpos: [10]; default: 0; + * set this bit to select output enable signal.1:use GPIO_ENABLE_REG[n] as + * output enable signal.0:use peripheral output enable signal. + */ + +#define GPIO_FUNC16_OEN_SEL (BIT(10)) +#define GPIO_FUNC16_OEN_SEL_M (GPIO_FUNC16_OEN_SEL_V << GPIO_FUNC16_OEN_SEL_S) +#define GPIO_FUNC16_OEN_SEL_V 0x00000001 +#define GPIO_FUNC16_OEN_SEL_S 10 + +/* GPIO_FUNC16_OUT_INV_SEL : R/W; bitpos: [9]; default: 0; + * set this bit to invert output signal.1:invert.0:not invert. + */ + +#define GPIO_FUNC16_OUT_INV_SEL (BIT(9)) +#define GPIO_FUNC16_OUT_INV_SEL_M (GPIO_FUNC16_OUT_INV_SEL_V << GPIO_FUNC16_OUT_INV_SEL_S) +#define GPIO_FUNC16_OUT_INV_SEL_V 0x00000001 +#define GPIO_FUNC16_OUT_INV_SEL_S 9 + +/* GPIO_FUNC16_OUT_SEL : R/W; bitpos: [8:0]; default: 256; + * The value of the bits: 0<=s<=256. Set the value to select output signal. + * s=0-255: output of GPIO[n] equals input of peripheral[s]. s=256: output + * of GPIO[n] equals GPIO_OUT_REG[n]. + */ + +#define GPIO_FUNC16_OUT_SEL 0x000001ff +#define GPIO_FUNC16_OUT_SEL_M (GPIO_FUNC16_OUT_SEL_V << GPIO_FUNC16_OUT_SEL_S) +#define GPIO_FUNC16_OUT_SEL_V 0x000001ff +#define GPIO_FUNC16_OUT_SEL_S 0 + +/* GPIO_FUNC17_OUT_SEL_CFG_REG register + * GPIO output function select register + */ + +#define GPIO_FUNC17_OUT_SEL_CFG_REG (DR_REG_GPIO_BASE + 0x598) + +/* GPIO_FUNC17_OEN_INV_SEL : R/W; bitpos: [11]; default: 0; + * set this bit to invert output enable signal.1:invert.0:not invert. + */ + +#define GPIO_FUNC17_OEN_INV_SEL (BIT(11)) +#define GPIO_FUNC17_OEN_INV_SEL_M (GPIO_FUNC17_OEN_INV_SEL_V << GPIO_FUNC17_OEN_INV_SEL_S) +#define GPIO_FUNC17_OEN_INV_SEL_V 0x00000001 +#define GPIO_FUNC17_OEN_INV_SEL_S 11 + +/* GPIO_FUNC17_OEN_SEL : R/W; bitpos: [10]; default: 0; + * set this bit to select output enable signal.1:use GPIO_ENABLE_REG[n] as + * output enable signal.0:use peripheral output enable signal. + */ + +#define GPIO_FUNC17_OEN_SEL (BIT(10)) +#define GPIO_FUNC17_OEN_SEL_M (GPIO_FUNC17_OEN_SEL_V << GPIO_FUNC17_OEN_SEL_S) +#define GPIO_FUNC17_OEN_SEL_V 0x00000001 +#define GPIO_FUNC17_OEN_SEL_S 10 + +/* GPIO_FUNC17_OUT_INV_SEL : R/W; bitpos: [9]; default: 0; + * set this bit to invert output signal.1:invert.0:not invert. + */ + +#define GPIO_FUNC17_OUT_INV_SEL (BIT(9)) +#define GPIO_FUNC17_OUT_INV_SEL_M (GPIO_FUNC17_OUT_INV_SEL_V << GPIO_FUNC17_OUT_INV_SEL_S) +#define GPIO_FUNC17_OUT_INV_SEL_V 0x00000001 +#define GPIO_FUNC17_OUT_INV_SEL_S 9 + +/* GPIO_FUNC17_OUT_SEL : R/W; bitpos: [8:0]; default: 256; + * The value of the bits: 0<=s<=256. Set the value to select output signal. + * s=0-255: output of GPIO[n] equals input of peripheral[s]. s=256: output + * of GPIO[n] equals GPIO_OUT_REG[n]. + */ + +#define GPIO_FUNC17_OUT_SEL 0x000001ff +#define GPIO_FUNC17_OUT_SEL_M (GPIO_FUNC17_OUT_SEL_V << GPIO_FUNC17_OUT_SEL_S) +#define GPIO_FUNC17_OUT_SEL_V 0x000001ff +#define GPIO_FUNC17_OUT_SEL_S 0 + +/* GPIO_FUNC18_OUT_SEL_CFG_REG register + * GPIO output function select register + */ + +#define GPIO_FUNC18_OUT_SEL_CFG_REG (DR_REG_GPIO_BASE + 0x59c) + +/* GPIO_FUNC18_OEN_INV_SEL : R/W; bitpos: [11]; default: 0; + * set this bit to invert output enable signal.1:invert.0:not invert. + */ + +#define GPIO_FUNC18_OEN_INV_SEL (BIT(11)) +#define GPIO_FUNC18_OEN_INV_SEL_M (GPIO_FUNC18_OEN_INV_SEL_V << GPIO_FUNC18_OEN_INV_SEL_S) +#define GPIO_FUNC18_OEN_INV_SEL_V 0x00000001 +#define GPIO_FUNC18_OEN_INV_SEL_S 11 + +/* GPIO_FUNC18_OEN_SEL : R/W; bitpos: [10]; default: 0; + * set this bit to select output enable signal.1:use GPIO_ENABLE_REG[n] as + * output enable signal.0:use peripheral output enable signal. + */ + +#define GPIO_FUNC18_OEN_SEL (BIT(10)) +#define GPIO_FUNC18_OEN_SEL_M (GPIO_FUNC18_OEN_SEL_V << GPIO_FUNC18_OEN_SEL_S) +#define GPIO_FUNC18_OEN_SEL_V 0x00000001 +#define GPIO_FUNC18_OEN_SEL_S 10 + +/* GPIO_FUNC18_OUT_INV_SEL : R/W; bitpos: [9]; default: 0; + * set this bit to invert output signal.1:invert.0:not invert. + */ + +#define GPIO_FUNC18_OUT_INV_SEL (BIT(9)) +#define GPIO_FUNC18_OUT_INV_SEL_M (GPIO_FUNC18_OUT_INV_SEL_V << GPIO_FUNC18_OUT_INV_SEL_S) +#define GPIO_FUNC18_OUT_INV_SEL_V 0x00000001 +#define GPIO_FUNC18_OUT_INV_SEL_S 9 + +/* GPIO_FUNC18_OUT_SEL : R/W; bitpos: [8:0]; default: 256; + * The value of the bits: 0<=s<=256. Set the value to select output signal. + * s=0-255: output of GPIO[n] equals input of peripheral[s]. s=256: output + * of GPIO[n] equals GPIO_OUT_REG[n]. + */ + +#define GPIO_FUNC18_OUT_SEL 0x000001ff +#define GPIO_FUNC18_OUT_SEL_M (GPIO_FUNC18_OUT_SEL_V << GPIO_FUNC18_OUT_SEL_S) +#define GPIO_FUNC18_OUT_SEL_V 0x000001ff +#define GPIO_FUNC18_OUT_SEL_S 0 + +/* GPIO_FUNC19_OUT_SEL_CFG_REG register + * GPIO output function select register + */ + +#define GPIO_FUNC19_OUT_SEL_CFG_REG (DR_REG_GPIO_BASE + 0x5a0) + +/* GPIO_FUNC19_OEN_INV_SEL : R/W; bitpos: [11]; default: 0; + * set this bit to invert output enable signal.1:invert.0:not invert. + */ + +#define GPIO_FUNC19_OEN_INV_SEL (BIT(11)) +#define GPIO_FUNC19_OEN_INV_SEL_M (GPIO_FUNC19_OEN_INV_SEL_V << GPIO_FUNC19_OEN_INV_SEL_S) +#define GPIO_FUNC19_OEN_INV_SEL_V 0x00000001 +#define GPIO_FUNC19_OEN_INV_SEL_S 11 + +/* GPIO_FUNC19_OEN_SEL : R/W; bitpos: [10]; default: 0; + * set this bit to select output enable signal.1:use GPIO_ENABLE_REG[n] as + * output enable signal.0:use peripheral output enable signal. + */ + +#define GPIO_FUNC19_OEN_SEL (BIT(10)) +#define GPIO_FUNC19_OEN_SEL_M (GPIO_FUNC19_OEN_SEL_V << GPIO_FUNC19_OEN_SEL_S) +#define GPIO_FUNC19_OEN_SEL_V 0x00000001 +#define GPIO_FUNC19_OEN_SEL_S 10 + +/* GPIO_FUNC19_OUT_INV_SEL : R/W; bitpos: [9]; default: 0; + * set this bit to invert output signal.1:invert.0:not invert. + */ + +#define GPIO_FUNC19_OUT_INV_SEL (BIT(9)) +#define GPIO_FUNC19_OUT_INV_SEL_M (GPIO_FUNC19_OUT_INV_SEL_V << GPIO_FUNC19_OUT_INV_SEL_S) +#define GPIO_FUNC19_OUT_INV_SEL_V 0x00000001 +#define GPIO_FUNC19_OUT_INV_SEL_S 9 + +/* GPIO_FUNC19_OUT_SEL : R/W; bitpos: [8:0]; default: 256; + * The value of the bits: 0<=s<=256. Set the value to select output signal. + * s=0-255: output of GPIO[n] equals input of peripheral[s]. s=256: output + * of GPIO[n] equals GPIO_OUT_REG[n]. + */ + +#define GPIO_FUNC19_OUT_SEL 0x000001ff +#define GPIO_FUNC19_OUT_SEL_M (GPIO_FUNC19_OUT_SEL_V << GPIO_FUNC19_OUT_SEL_S) +#define GPIO_FUNC19_OUT_SEL_V 0x000001ff +#define GPIO_FUNC19_OUT_SEL_S 0 + +/* GPIO_FUNC20_OUT_SEL_CFG_REG register + * GPIO output function select register + */ + +#define GPIO_FUNC20_OUT_SEL_CFG_REG (DR_REG_GPIO_BASE + 0x5a4) + +/* GPIO_FUNC20_OEN_INV_SEL : R/W; bitpos: [11]; default: 0; + * set this bit to invert output enable signal.1:invert.0:not invert. + */ + +#define GPIO_FUNC20_OEN_INV_SEL (BIT(11)) +#define GPIO_FUNC20_OEN_INV_SEL_M (GPIO_FUNC20_OEN_INV_SEL_V << GPIO_FUNC20_OEN_INV_SEL_S) +#define GPIO_FUNC20_OEN_INV_SEL_V 0x00000001 +#define GPIO_FUNC20_OEN_INV_SEL_S 11 + +/* GPIO_FUNC20_OEN_SEL : R/W; bitpos: [10]; default: 0; + * set this bit to select output enable signal.1:use GPIO_ENABLE_REG[n] as + * output enable signal.0:use peripheral output enable signal. + */ + +#define GPIO_FUNC20_OEN_SEL (BIT(10)) +#define GPIO_FUNC20_OEN_SEL_M (GPIO_FUNC20_OEN_SEL_V << GPIO_FUNC20_OEN_SEL_S) +#define GPIO_FUNC20_OEN_SEL_V 0x00000001 +#define GPIO_FUNC20_OEN_SEL_S 10 + +/* GPIO_FUNC20_OUT_INV_SEL : R/W; bitpos: [9]; default: 0; + * set this bit to invert output signal.1:invert.0:not invert. + */ + +#define GPIO_FUNC20_OUT_INV_SEL (BIT(9)) +#define GPIO_FUNC20_OUT_INV_SEL_M (GPIO_FUNC20_OUT_INV_SEL_V << GPIO_FUNC20_OUT_INV_SEL_S) +#define GPIO_FUNC20_OUT_INV_SEL_V 0x00000001 +#define GPIO_FUNC20_OUT_INV_SEL_S 9 + +/* GPIO_FUNC20_OUT_SEL : R/W; bitpos: [8:0]; default: 256; + * The value of the bits: 0<=s<=256. Set the value to select output signal. + * s=0-255: output of GPIO[n] equals input of peripheral[s]. s=256: output + * of GPIO[n] equals GPIO_OUT_REG[n]. + */ + +#define GPIO_FUNC20_OUT_SEL 0x000001ff +#define GPIO_FUNC20_OUT_SEL_M (GPIO_FUNC20_OUT_SEL_V << GPIO_FUNC20_OUT_SEL_S) +#define GPIO_FUNC20_OUT_SEL_V 0x000001ff +#define GPIO_FUNC20_OUT_SEL_S 0 + +/* GPIO_FUNC21_OUT_SEL_CFG_REG register + * GPIO output function select register + */ + +#define GPIO_FUNC21_OUT_SEL_CFG_REG (DR_REG_GPIO_BASE + 0x5a8) + +/* GPIO_FUNC21_OEN_INV_SEL : R/W; bitpos: [11]; default: 0; + * set this bit to invert output enable signal.1:invert.0:not invert. + */ + +#define GPIO_FUNC21_OEN_INV_SEL (BIT(11)) +#define GPIO_FUNC21_OEN_INV_SEL_M (GPIO_FUNC21_OEN_INV_SEL_V << GPIO_FUNC21_OEN_INV_SEL_S) +#define GPIO_FUNC21_OEN_INV_SEL_V 0x00000001 +#define GPIO_FUNC21_OEN_INV_SEL_S 11 + +/* GPIO_FUNC21_OEN_SEL : R/W; bitpos: [10]; default: 0; + * set this bit to select output enable signal.1:use GPIO_ENABLE_REG[n] as + * output enable signal.0:use peripheral output enable signal. + */ + +#define GPIO_FUNC21_OEN_SEL (BIT(10)) +#define GPIO_FUNC21_OEN_SEL_M (GPIO_FUNC21_OEN_SEL_V << GPIO_FUNC21_OEN_SEL_S) +#define GPIO_FUNC21_OEN_SEL_V 0x00000001 +#define GPIO_FUNC21_OEN_SEL_S 10 + +/* GPIO_FUNC21_OUT_INV_SEL : R/W; bitpos: [9]; default: 0; + * set this bit to invert output signal.1:invert.0:not invert. + */ + +#define GPIO_FUNC21_OUT_INV_SEL (BIT(9)) +#define GPIO_FUNC21_OUT_INV_SEL_M (GPIO_FUNC21_OUT_INV_SEL_V << GPIO_FUNC21_OUT_INV_SEL_S) +#define GPIO_FUNC21_OUT_INV_SEL_V 0x00000001 +#define GPIO_FUNC21_OUT_INV_SEL_S 9 + +/* GPIO_FUNC21_OUT_SEL : R/W; bitpos: [8:0]; default: 256; + * The value of the bits: 0<=s<=256. Set the value to select output signal. + * s=0-255: output of GPIO[n] equals input of peripheral[s]. s=256: output + * of GPIO[n] equals GPIO_OUT_REG[n]. + */ + +#define GPIO_FUNC21_OUT_SEL 0x000001ff +#define GPIO_FUNC21_OUT_SEL_M (GPIO_FUNC21_OUT_SEL_V << GPIO_FUNC21_OUT_SEL_S) +#define GPIO_FUNC21_OUT_SEL_V 0x000001ff +#define GPIO_FUNC21_OUT_SEL_S 0 + +/* GPIO_FUNC22_OUT_SEL_CFG_REG register + * GPIO output function select register + */ + +#define GPIO_FUNC22_OUT_SEL_CFG_REG (DR_REG_GPIO_BASE + 0x5ac) + +/* GPIO_FUNC22_OEN_INV_SEL : R/W; bitpos: [11]; default: 0; + * set this bit to invert output enable signal.1:invert.0:not invert. + */ + +#define GPIO_FUNC22_OEN_INV_SEL (BIT(11)) +#define GPIO_FUNC22_OEN_INV_SEL_M (GPIO_FUNC22_OEN_INV_SEL_V << GPIO_FUNC22_OEN_INV_SEL_S) +#define GPIO_FUNC22_OEN_INV_SEL_V 0x00000001 +#define GPIO_FUNC22_OEN_INV_SEL_S 11 + +/* GPIO_FUNC22_OEN_SEL : R/W; bitpos: [10]; default: 0; + * set this bit to select output enable signal.1:use GPIO_ENABLE_REG[n] as + * output enable signal.0:use peripheral output enable signal. + */ + +#define GPIO_FUNC22_OEN_SEL (BIT(10)) +#define GPIO_FUNC22_OEN_SEL_M (GPIO_FUNC22_OEN_SEL_V << GPIO_FUNC22_OEN_SEL_S) +#define GPIO_FUNC22_OEN_SEL_V 0x00000001 +#define GPIO_FUNC22_OEN_SEL_S 10 + +/* GPIO_FUNC22_OUT_INV_SEL : R/W; bitpos: [9]; default: 0; + * set this bit to invert output signal.1:invert.0:not invert. + */ + +#define GPIO_FUNC22_OUT_INV_SEL (BIT(9)) +#define GPIO_FUNC22_OUT_INV_SEL_M (GPIO_FUNC22_OUT_INV_SEL_V << GPIO_FUNC22_OUT_INV_SEL_S) +#define GPIO_FUNC22_OUT_INV_SEL_V 0x00000001 +#define GPIO_FUNC22_OUT_INV_SEL_S 9 + +/* GPIO_FUNC22_OUT_SEL : R/W; bitpos: [8:0]; default: 256; + * The value of the bits: 0<=s<=256. Set the value to select output signal. + * s=0-255: output of GPIO[n] equals input of peripheral[s]. s=256: output + * of GPIO[n] equals GPIO_OUT_REG[n]. + */ + +#define GPIO_FUNC22_OUT_SEL 0x000001ff +#define GPIO_FUNC22_OUT_SEL_M (GPIO_FUNC22_OUT_SEL_V << GPIO_FUNC22_OUT_SEL_S) +#define GPIO_FUNC22_OUT_SEL_V 0x000001ff +#define GPIO_FUNC22_OUT_SEL_S 0 + +/* GPIO_FUNC23_OUT_SEL_CFG_REG register + * GPIO output function select register + */ + +#define GPIO_FUNC23_OUT_SEL_CFG_REG (DR_REG_GPIO_BASE + 0x5b0) + +/* GPIO_FUNC23_OEN_INV_SEL : R/W; bitpos: [11]; default: 0; + * set this bit to invert output enable signal.1:invert.0:not invert. + */ + +#define GPIO_FUNC23_OEN_INV_SEL (BIT(11)) +#define GPIO_FUNC23_OEN_INV_SEL_M (GPIO_FUNC23_OEN_INV_SEL_V << GPIO_FUNC23_OEN_INV_SEL_S) +#define GPIO_FUNC23_OEN_INV_SEL_V 0x00000001 +#define GPIO_FUNC23_OEN_INV_SEL_S 11 + +/* GPIO_FUNC23_OEN_SEL : R/W; bitpos: [10]; default: 0; + * set this bit to select output enable signal.1:use GPIO_ENABLE_REG[n] as + * output enable signal.0:use peripheral output enable signal. + */ + +#define GPIO_FUNC23_OEN_SEL (BIT(10)) +#define GPIO_FUNC23_OEN_SEL_M (GPIO_FUNC23_OEN_SEL_V << GPIO_FUNC23_OEN_SEL_S) +#define GPIO_FUNC23_OEN_SEL_V 0x00000001 +#define GPIO_FUNC23_OEN_SEL_S 10 + +/* GPIO_FUNC23_OUT_INV_SEL : R/W; bitpos: [9]; default: 0; + * set this bit to invert output signal.1:invert.0:not invert. + */ + +#define GPIO_FUNC23_OUT_INV_SEL (BIT(9)) +#define GPIO_FUNC23_OUT_INV_SEL_M (GPIO_FUNC23_OUT_INV_SEL_V << GPIO_FUNC23_OUT_INV_SEL_S) +#define GPIO_FUNC23_OUT_INV_SEL_V 0x00000001 +#define GPIO_FUNC23_OUT_INV_SEL_S 9 + +/* GPIO_FUNC23_OUT_SEL : R/W; bitpos: [8:0]; default: 256; + * The value of the bits: 0<=s<=256. Set the value to select output signal. + * s=0-255: output of GPIO[n] equals input of peripheral[s]. s=256: output + * of GPIO[n] equals GPIO_OUT_REG[n]. + */ + +#define GPIO_FUNC23_OUT_SEL 0x000001ff +#define GPIO_FUNC23_OUT_SEL_M (GPIO_FUNC23_OUT_SEL_V << GPIO_FUNC23_OUT_SEL_S) +#define GPIO_FUNC23_OUT_SEL_V 0x000001ff +#define GPIO_FUNC23_OUT_SEL_S 0 + +/* GPIO_FUNC24_OUT_SEL_CFG_REG register + * GPIO output function select register + */ + +#define GPIO_FUNC24_OUT_SEL_CFG_REG (DR_REG_GPIO_BASE + 0x5b4) + +/* GPIO_FUNC24_OEN_INV_SEL : R/W; bitpos: [11]; default: 0; + * set this bit to invert output enable signal.1:invert.0:not invert. + */ + +#define GPIO_FUNC24_OEN_INV_SEL (BIT(11)) +#define GPIO_FUNC24_OEN_INV_SEL_M (GPIO_FUNC24_OEN_INV_SEL_V << GPIO_FUNC24_OEN_INV_SEL_S) +#define GPIO_FUNC24_OEN_INV_SEL_V 0x00000001 +#define GPIO_FUNC24_OEN_INV_SEL_S 11 + +/* GPIO_FUNC24_OEN_SEL : R/W; bitpos: [10]; default: 0; + * set this bit to select output enable signal.1:use GPIO_ENABLE_REG[n] as + * output enable signal.0:use peripheral output enable signal. + */ + +#define GPIO_FUNC24_OEN_SEL (BIT(10)) +#define GPIO_FUNC24_OEN_SEL_M (GPIO_FUNC24_OEN_SEL_V << GPIO_FUNC24_OEN_SEL_S) +#define GPIO_FUNC24_OEN_SEL_V 0x00000001 +#define GPIO_FUNC24_OEN_SEL_S 10 + +/* GPIO_FUNC24_OUT_INV_SEL : R/W; bitpos: [9]; default: 0; + * set this bit to invert output signal.1:invert.0:not invert. + */ + +#define GPIO_FUNC24_OUT_INV_SEL (BIT(9)) +#define GPIO_FUNC24_OUT_INV_SEL_M (GPIO_FUNC24_OUT_INV_SEL_V << GPIO_FUNC24_OUT_INV_SEL_S) +#define GPIO_FUNC24_OUT_INV_SEL_V 0x00000001 +#define GPIO_FUNC24_OUT_INV_SEL_S 9 + +/* GPIO_FUNC24_OUT_SEL : R/W; bitpos: [8:0]; default: 256; + * The value of the bits: 0<=s<=256. Set the value to select output signal. + * s=0-255: output of GPIO[n] equals input of peripheral[s]. s=256: output + * of GPIO[n] equals GPIO_OUT_REG[n]. + */ + +#define GPIO_FUNC24_OUT_SEL 0x000001ff +#define GPIO_FUNC24_OUT_SEL_M (GPIO_FUNC24_OUT_SEL_V << GPIO_FUNC24_OUT_SEL_S) +#define GPIO_FUNC24_OUT_SEL_V 0x000001ff +#define GPIO_FUNC24_OUT_SEL_S 0 + +/* GPIO_FUNC25_OUT_SEL_CFG_REG register + * GPIO output function select register + */ + +#define GPIO_FUNC25_OUT_SEL_CFG_REG (DR_REG_GPIO_BASE + 0x5b8) + +/* GPIO_FUNC25_OEN_INV_SEL : R/W; bitpos: [11]; default: 0; + * set this bit to invert output enable signal.1:invert.0:not invert. + */ + +#define GPIO_FUNC25_OEN_INV_SEL (BIT(11)) +#define GPIO_FUNC25_OEN_INV_SEL_M (GPIO_FUNC25_OEN_INV_SEL_V << GPIO_FUNC25_OEN_INV_SEL_S) +#define GPIO_FUNC25_OEN_INV_SEL_V 0x00000001 +#define GPIO_FUNC25_OEN_INV_SEL_S 11 + +/* GPIO_FUNC25_OEN_SEL : R/W; bitpos: [10]; default: 0; + * set this bit to select output enable signal.1:use GPIO_ENABLE_REG[n] as + * output enable signal.0:use peripheral output enable signal. + */ + +#define GPIO_FUNC25_OEN_SEL (BIT(10)) +#define GPIO_FUNC25_OEN_SEL_M (GPIO_FUNC25_OEN_SEL_V << GPIO_FUNC25_OEN_SEL_S) +#define GPIO_FUNC25_OEN_SEL_V 0x00000001 +#define GPIO_FUNC25_OEN_SEL_S 10 + +/* GPIO_FUNC25_OUT_INV_SEL : R/W; bitpos: [9]; default: 0; + * set this bit to invert output signal.1:invert.0:not invert. + */ + +#define GPIO_FUNC25_OUT_INV_SEL (BIT(9)) +#define GPIO_FUNC25_OUT_INV_SEL_M (GPIO_FUNC25_OUT_INV_SEL_V << GPIO_FUNC25_OUT_INV_SEL_S) +#define GPIO_FUNC25_OUT_INV_SEL_V 0x00000001 +#define GPIO_FUNC25_OUT_INV_SEL_S 9 + +/* GPIO_FUNC25_OUT_SEL : R/W; bitpos: [8:0]; default: 256; + * The value of the bits: 0<=s<=256. Set the value to select output signal. + * s=0-255: output of GPIO[n] equals input of peripheral[s]. s=256: output + * of GPIO[n] equals GPIO_OUT_REG[n]. + */ + +#define GPIO_FUNC25_OUT_SEL 0x000001ff +#define GPIO_FUNC25_OUT_SEL_M (GPIO_FUNC25_OUT_SEL_V << GPIO_FUNC25_OUT_SEL_S) +#define GPIO_FUNC25_OUT_SEL_V 0x000001ff +#define GPIO_FUNC25_OUT_SEL_S 0 + +/* GPIO_FUNC26_OUT_SEL_CFG_REG register + * GPIO output function select register + */ + +#define GPIO_FUNC26_OUT_SEL_CFG_REG (DR_REG_GPIO_BASE + 0x5bc) + +/* GPIO_FUNC26_OEN_INV_SEL : R/W; bitpos: [11]; default: 0; + * set this bit to invert output enable signal.1:invert.0:not invert. + */ + +#define GPIO_FUNC26_OEN_INV_SEL (BIT(11)) +#define GPIO_FUNC26_OEN_INV_SEL_M (GPIO_FUNC26_OEN_INV_SEL_V << GPIO_FUNC26_OEN_INV_SEL_S) +#define GPIO_FUNC26_OEN_INV_SEL_V 0x00000001 +#define GPIO_FUNC26_OEN_INV_SEL_S 11 + +/* GPIO_FUNC26_OEN_SEL : R/W; bitpos: [10]; default: 0; + * set this bit to select output enable signal.1:use GPIO_ENABLE_REG[n] as + * output enable signal.0:use peripheral output enable signal. + */ + +#define GPIO_FUNC26_OEN_SEL (BIT(10)) +#define GPIO_FUNC26_OEN_SEL_M (GPIO_FUNC26_OEN_SEL_V << GPIO_FUNC26_OEN_SEL_S) +#define GPIO_FUNC26_OEN_SEL_V 0x00000001 +#define GPIO_FUNC26_OEN_SEL_S 10 + +/* GPIO_FUNC26_OUT_INV_SEL : R/W; bitpos: [9]; default: 0; + * set this bit to invert output signal.1:invert.0:not invert. + */ + +#define GPIO_FUNC26_OUT_INV_SEL (BIT(9)) +#define GPIO_FUNC26_OUT_INV_SEL_M (GPIO_FUNC26_OUT_INV_SEL_V << GPIO_FUNC26_OUT_INV_SEL_S) +#define GPIO_FUNC26_OUT_INV_SEL_V 0x00000001 +#define GPIO_FUNC26_OUT_INV_SEL_S 9 + +/* GPIO_FUNC26_OUT_SEL : R/W; bitpos: [8:0]; default: 256; + * The value of the bits: 0<=s<=256. Set the value to select output signal. + * s=0-255: output of GPIO[n] equals input of peripheral[s]. s=256: output + * of GPIO[n] equals GPIO_OUT_REG[n]. + */ + +#define GPIO_FUNC26_OUT_SEL 0x000001ff +#define GPIO_FUNC26_OUT_SEL_M (GPIO_FUNC26_OUT_SEL_V << GPIO_FUNC26_OUT_SEL_S) +#define GPIO_FUNC26_OUT_SEL_V 0x000001ff +#define GPIO_FUNC26_OUT_SEL_S 0 + +/* GPIO_FUNC27_OUT_SEL_CFG_REG register + * GPIO output function select register + */ + +#define GPIO_FUNC27_OUT_SEL_CFG_REG (DR_REG_GPIO_BASE + 0x5c0) + +/* GPIO_FUNC27_OEN_INV_SEL : R/W; bitpos: [11]; default: 0; + * set this bit to invert output enable signal.1:invert.0:not invert. + */ + +#define GPIO_FUNC27_OEN_INV_SEL (BIT(11)) +#define GPIO_FUNC27_OEN_INV_SEL_M (GPIO_FUNC27_OEN_INV_SEL_V << GPIO_FUNC27_OEN_INV_SEL_S) +#define GPIO_FUNC27_OEN_INV_SEL_V 0x00000001 +#define GPIO_FUNC27_OEN_INV_SEL_S 11 + +/* GPIO_FUNC27_OEN_SEL : R/W; bitpos: [10]; default: 0; + * set this bit to select output enable signal.1:use GPIO_ENABLE_REG[n] as + * output enable signal.0:use peripheral output enable signal. + */ + +#define GPIO_FUNC27_OEN_SEL (BIT(10)) +#define GPIO_FUNC27_OEN_SEL_M (GPIO_FUNC27_OEN_SEL_V << GPIO_FUNC27_OEN_SEL_S) +#define GPIO_FUNC27_OEN_SEL_V 0x00000001 +#define GPIO_FUNC27_OEN_SEL_S 10 + +/* GPIO_FUNC27_OUT_INV_SEL : R/W; bitpos: [9]; default: 0; + * set this bit to invert output signal.1:invert.0:not invert. + */ + +#define GPIO_FUNC27_OUT_INV_SEL (BIT(9)) +#define GPIO_FUNC27_OUT_INV_SEL_M (GPIO_FUNC27_OUT_INV_SEL_V << GPIO_FUNC27_OUT_INV_SEL_S) +#define GPIO_FUNC27_OUT_INV_SEL_V 0x00000001 +#define GPIO_FUNC27_OUT_INV_SEL_S 9 + +/* GPIO_FUNC27_OUT_SEL : R/W; bitpos: [8:0]; default: 256; + * The value of the bits: 0<=s<=256. Set the value to select output signal. + * s=0-255: output of GPIO[n] equals input of peripheral[s]. s=256: output + * of GPIO[n] equals GPIO_OUT_REG[n]. + */ + +#define GPIO_FUNC27_OUT_SEL 0x000001ff +#define GPIO_FUNC27_OUT_SEL_M (GPIO_FUNC27_OUT_SEL_V << GPIO_FUNC27_OUT_SEL_S) +#define GPIO_FUNC27_OUT_SEL_V 0x000001ff +#define GPIO_FUNC27_OUT_SEL_S 0 + +/* GPIO_FUNC28_OUT_SEL_CFG_REG register + * GPIO output function select register + */ + +#define GPIO_FUNC28_OUT_SEL_CFG_REG (DR_REG_GPIO_BASE + 0x5c4) + +/* GPIO_FUNC28_OEN_INV_SEL : R/W; bitpos: [11]; default: 0; + * set this bit to invert output enable signal.1:invert.0:not invert. + */ + +#define GPIO_FUNC28_OEN_INV_SEL (BIT(11)) +#define GPIO_FUNC28_OEN_INV_SEL_M (GPIO_FUNC28_OEN_INV_SEL_V << GPIO_FUNC28_OEN_INV_SEL_S) +#define GPIO_FUNC28_OEN_INV_SEL_V 0x00000001 +#define GPIO_FUNC28_OEN_INV_SEL_S 11 + +/* GPIO_FUNC28_OEN_SEL : R/W; bitpos: [10]; default: 0; + * set this bit to select output enable signal.1:use GPIO_ENABLE_REG[n] as + * output enable signal.0:use peripheral output enable signal. + */ + +#define GPIO_FUNC28_OEN_SEL (BIT(10)) +#define GPIO_FUNC28_OEN_SEL_M (GPIO_FUNC28_OEN_SEL_V << GPIO_FUNC28_OEN_SEL_S) +#define GPIO_FUNC28_OEN_SEL_V 0x00000001 +#define GPIO_FUNC28_OEN_SEL_S 10 + +/* GPIO_FUNC28_OUT_INV_SEL : R/W; bitpos: [9]; default: 0; + * set this bit to invert output signal.1:invert.0:not invert. + */ + +#define GPIO_FUNC28_OUT_INV_SEL (BIT(9)) +#define GPIO_FUNC28_OUT_INV_SEL_M (GPIO_FUNC28_OUT_INV_SEL_V << GPIO_FUNC28_OUT_INV_SEL_S) +#define GPIO_FUNC28_OUT_INV_SEL_V 0x00000001 +#define GPIO_FUNC28_OUT_INV_SEL_S 9 + +/* GPIO_FUNC28_OUT_SEL : R/W; bitpos: [8:0]; default: 256; + * The value of the bits: 0<=s<=256. Set the value to select output signal. + * s=0-255: output of GPIO[n] equals input of peripheral[s]. s=256: output + * of GPIO[n] equals GPIO_OUT_REG[n]. + */ + +#define GPIO_FUNC28_OUT_SEL 0x000001ff +#define GPIO_FUNC28_OUT_SEL_M (GPIO_FUNC28_OUT_SEL_V << GPIO_FUNC28_OUT_SEL_S) +#define GPIO_FUNC28_OUT_SEL_V 0x000001ff +#define GPIO_FUNC28_OUT_SEL_S 0 + +/* GPIO_FUNC29_OUT_SEL_CFG_REG register + * GPIO output function select register + */ + +#define GPIO_FUNC29_OUT_SEL_CFG_REG (DR_REG_GPIO_BASE + 0x5c8) + +/* GPIO_FUNC29_OEN_INV_SEL : R/W; bitpos: [11]; default: 0; + * set this bit to invert output enable signal.1:invert.0:not invert. + */ + +#define GPIO_FUNC29_OEN_INV_SEL (BIT(11)) +#define GPIO_FUNC29_OEN_INV_SEL_M (GPIO_FUNC29_OEN_INV_SEL_V << GPIO_FUNC29_OEN_INV_SEL_S) +#define GPIO_FUNC29_OEN_INV_SEL_V 0x00000001 +#define GPIO_FUNC29_OEN_INV_SEL_S 11 + +/* GPIO_FUNC29_OEN_SEL : R/W; bitpos: [10]; default: 0; + * set this bit to select output enable signal.1:use GPIO_ENABLE_REG[n] as + * output enable signal.0:use peripheral output enable signal. + */ + +#define GPIO_FUNC29_OEN_SEL (BIT(10)) +#define GPIO_FUNC29_OEN_SEL_M (GPIO_FUNC29_OEN_SEL_V << GPIO_FUNC29_OEN_SEL_S) +#define GPIO_FUNC29_OEN_SEL_V 0x00000001 +#define GPIO_FUNC29_OEN_SEL_S 10 + +/* GPIO_FUNC29_OUT_INV_SEL : R/W; bitpos: [9]; default: 0; + * set this bit to invert output signal.1:invert.0:not invert. + */ + +#define GPIO_FUNC29_OUT_INV_SEL (BIT(9)) +#define GPIO_FUNC29_OUT_INV_SEL_M (GPIO_FUNC29_OUT_INV_SEL_V << GPIO_FUNC29_OUT_INV_SEL_S) +#define GPIO_FUNC29_OUT_INV_SEL_V 0x00000001 +#define GPIO_FUNC29_OUT_INV_SEL_S 9 + +/* GPIO_FUNC29_OUT_SEL : R/W; bitpos: [8:0]; default: 256; + * The value of the bits: 0<=s<=256. Set the value to select output signal. + * s=0-255: output of GPIO[n] equals input of peripheral[s]. s=256: output + * of GPIO[n] equals GPIO_OUT_REG[n]. + */ + +#define GPIO_FUNC29_OUT_SEL 0x000001ff +#define GPIO_FUNC29_OUT_SEL_M (GPIO_FUNC29_OUT_SEL_V << GPIO_FUNC29_OUT_SEL_S) +#define GPIO_FUNC29_OUT_SEL_V 0x000001ff +#define GPIO_FUNC29_OUT_SEL_S 0 + +/* GPIO_FUNC30_OUT_SEL_CFG_REG register + * GPIO output function select register + */ + +#define GPIO_FUNC30_OUT_SEL_CFG_REG (DR_REG_GPIO_BASE + 0x5cc) + +/* GPIO_FUNC30_OEN_INV_SEL : R/W; bitpos: [11]; default: 0; + * set this bit to invert output enable signal.1:invert.0:not invert. + */ + +#define GPIO_FUNC30_OEN_INV_SEL (BIT(11)) +#define GPIO_FUNC30_OEN_INV_SEL_M (GPIO_FUNC30_OEN_INV_SEL_V << GPIO_FUNC30_OEN_INV_SEL_S) +#define GPIO_FUNC30_OEN_INV_SEL_V 0x00000001 +#define GPIO_FUNC30_OEN_INV_SEL_S 11 + +/* GPIO_FUNC30_OEN_SEL : R/W; bitpos: [10]; default: 0; + * set this bit to select output enable signal.1:use GPIO_ENABLE_REG[n] as + * output enable signal.0:use peripheral output enable signal. + */ + +#define GPIO_FUNC30_OEN_SEL (BIT(10)) +#define GPIO_FUNC30_OEN_SEL_M (GPIO_FUNC30_OEN_SEL_V << GPIO_FUNC30_OEN_SEL_S) +#define GPIO_FUNC30_OEN_SEL_V 0x00000001 +#define GPIO_FUNC30_OEN_SEL_S 10 + +/* GPIO_FUNC30_OUT_INV_SEL : R/W; bitpos: [9]; default: 0; + * set this bit to invert output signal.1:invert.0:not invert. + */ + +#define GPIO_FUNC30_OUT_INV_SEL (BIT(9)) +#define GPIO_FUNC30_OUT_INV_SEL_M (GPIO_FUNC30_OUT_INV_SEL_V << GPIO_FUNC30_OUT_INV_SEL_S) +#define GPIO_FUNC30_OUT_INV_SEL_V 0x00000001 +#define GPIO_FUNC30_OUT_INV_SEL_S 9 + +/* GPIO_FUNC30_OUT_SEL : R/W; bitpos: [8:0]; default: 256; + * The value of the bits: 0<=s<=256. Set the value to select output signal. + * s=0-255: output of GPIO[n] equals input of peripheral[s]. s=256: output + * of GPIO[n] equals GPIO_OUT_REG[n]. + */ + +#define GPIO_FUNC30_OUT_SEL 0x000001ff +#define GPIO_FUNC30_OUT_SEL_M (GPIO_FUNC30_OUT_SEL_V << GPIO_FUNC30_OUT_SEL_S) +#define GPIO_FUNC30_OUT_SEL_V 0x000001ff +#define GPIO_FUNC30_OUT_SEL_S 0 + +/* GPIO_FUNC31_OUT_SEL_CFG_REG register + * GPIO output function select register + */ + +#define GPIO_FUNC31_OUT_SEL_CFG_REG (DR_REG_GPIO_BASE + 0x5d0) + +/* GPIO_FUNC31_OEN_INV_SEL : R/W; bitpos: [11]; default: 0; + * set this bit to invert output enable signal.1:invert.0:not invert. + */ + +#define GPIO_FUNC31_OEN_INV_SEL (BIT(11)) +#define GPIO_FUNC31_OEN_INV_SEL_M (GPIO_FUNC31_OEN_INV_SEL_V << GPIO_FUNC31_OEN_INV_SEL_S) +#define GPIO_FUNC31_OEN_INV_SEL_V 0x00000001 +#define GPIO_FUNC31_OEN_INV_SEL_S 11 + +/* GPIO_FUNC31_OEN_SEL : R/W; bitpos: [10]; default: 0; + * set this bit to select output enable signal.1:use GPIO_ENABLE_REG[n] as + * output enable signal.0:use peripheral output enable signal. + */ + +#define GPIO_FUNC31_OEN_SEL (BIT(10)) +#define GPIO_FUNC31_OEN_SEL_M (GPIO_FUNC31_OEN_SEL_V << GPIO_FUNC31_OEN_SEL_S) +#define GPIO_FUNC31_OEN_SEL_V 0x00000001 +#define GPIO_FUNC31_OEN_SEL_S 10 + +/* GPIO_FUNC31_OUT_INV_SEL : R/W; bitpos: [9]; default: 0; + * set this bit to invert output signal.1:invert.0:not invert. + */ + +#define GPIO_FUNC31_OUT_INV_SEL (BIT(9)) +#define GPIO_FUNC31_OUT_INV_SEL_M (GPIO_FUNC31_OUT_INV_SEL_V << GPIO_FUNC31_OUT_INV_SEL_S) +#define GPIO_FUNC31_OUT_INV_SEL_V 0x00000001 +#define GPIO_FUNC31_OUT_INV_SEL_S 9 + +/* GPIO_FUNC31_OUT_SEL : R/W; bitpos: [8:0]; default: 256; + * The value of the bits: 0<=s<=256. Set the value to select output signal. + * s=0-255: output of GPIO[n] equals input of peripheral[s]. s=256: output + * of GPIO[n] equals GPIO_OUT_REG[n]. + */ + +#define GPIO_FUNC31_OUT_SEL 0x000001ff +#define GPIO_FUNC31_OUT_SEL_M (GPIO_FUNC31_OUT_SEL_V << GPIO_FUNC31_OUT_SEL_S) +#define GPIO_FUNC31_OUT_SEL_V 0x000001ff +#define GPIO_FUNC31_OUT_SEL_S 0 + +/* GPIO_FUNC32_OUT_SEL_CFG_REG register + * GPIO output function select register + */ + +#define GPIO_FUNC32_OUT_SEL_CFG_REG (DR_REG_GPIO_BASE + 0x5d4) + +/* GPIO_FUNC32_OEN_INV_SEL : R/W; bitpos: [11]; default: 0; + * set this bit to invert output enable signal.1:invert.0:not invert. + */ + +#define GPIO_FUNC32_OEN_INV_SEL (BIT(11)) +#define GPIO_FUNC32_OEN_INV_SEL_M (GPIO_FUNC32_OEN_INV_SEL_V << GPIO_FUNC32_OEN_INV_SEL_S) +#define GPIO_FUNC32_OEN_INV_SEL_V 0x00000001 +#define GPIO_FUNC32_OEN_INV_SEL_S 11 + +/* GPIO_FUNC32_OEN_SEL : R/W; bitpos: [10]; default: 0; + * set this bit to select output enable signal.1:use GPIO_ENABLE_REG[n] as + * output enable signal.0:use peripheral output enable signal. + */ + +#define GPIO_FUNC32_OEN_SEL (BIT(10)) +#define GPIO_FUNC32_OEN_SEL_M (GPIO_FUNC32_OEN_SEL_V << GPIO_FUNC32_OEN_SEL_S) +#define GPIO_FUNC32_OEN_SEL_V 0x00000001 +#define GPIO_FUNC32_OEN_SEL_S 10 + +/* GPIO_FUNC32_OUT_INV_SEL : R/W; bitpos: [9]; default: 0; + * set this bit to invert output signal.1:invert.0:not invert. + */ + +#define GPIO_FUNC32_OUT_INV_SEL (BIT(9)) +#define GPIO_FUNC32_OUT_INV_SEL_M (GPIO_FUNC32_OUT_INV_SEL_V << GPIO_FUNC32_OUT_INV_SEL_S) +#define GPIO_FUNC32_OUT_INV_SEL_V 0x00000001 +#define GPIO_FUNC32_OUT_INV_SEL_S 9 + +/* GPIO_FUNC32_OUT_SEL : R/W; bitpos: [8:0]; default: 256; + * The value of the bits: 0<=s<=256. Set the value to select output signal. + * s=0-255: output of GPIO[n] equals input of peripheral[s]. s=256: output + * of GPIO[n] equals GPIO_OUT_REG[n]. + */ + +#define GPIO_FUNC32_OUT_SEL 0x000001ff +#define GPIO_FUNC32_OUT_SEL_M (GPIO_FUNC32_OUT_SEL_V << GPIO_FUNC32_OUT_SEL_S) +#define GPIO_FUNC32_OUT_SEL_V 0x000001ff +#define GPIO_FUNC32_OUT_SEL_S 0 + +/* GPIO_FUNC33_OUT_SEL_CFG_REG register + * GPIO output function select register + */ + +#define GPIO_FUNC33_OUT_SEL_CFG_REG (DR_REG_GPIO_BASE + 0x5d8) + +/* GPIO_FUNC33_OEN_INV_SEL : R/W; bitpos: [11]; default: 0; + * set this bit to invert output enable signal.1:invert.0:not invert. + */ + +#define GPIO_FUNC33_OEN_INV_SEL (BIT(11)) +#define GPIO_FUNC33_OEN_INV_SEL_M (GPIO_FUNC33_OEN_INV_SEL_V << GPIO_FUNC33_OEN_INV_SEL_S) +#define GPIO_FUNC33_OEN_INV_SEL_V 0x00000001 +#define GPIO_FUNC33_OEN_INV_SEL_S 11 + +/* GPIO_FUNC33_OEN_SEL : R/W; bitpos: [10]; default: 0; + * set this bit to select output enable signal.1:use GPIO_ENABLE_REG[n] as + * output enable signal.0:use peripheral output enable signal. + */ + +#define GPIO_FUNC33_OEN_SEL (BIT(10)) +#define GPIO_FUNC33_OEN_SEL_M (GPIO_FUNC33_OEN_SEL_V << GPIO_FUNC33_OEN_SEL_S) +#define GPIO_FUNC33_OEN_SEL_V 0x00000001 +#define GPIO_FUNC33_OEN_SEL_S 10 + +/* GPIO_FUNC33_OUT_INV_SEL : R/W; bitpos: [9]; default: 0; + * set this bit to invert output signal.1:invert.0:not invert. + */ + +#define GPIO_FUNC33_OUT_INV_SEL (BIT(9)) +#define GPIO_FUNC33_OUT_INV_SEL_M (GPIO_FUNC33_OUT_INV_SEL_V << GPIO_FUNC33_OUT_INV_SEL_S) +#define GPIO_FUNC33_OUT_INV_SEL_V 0x00000001 +#define GPIO_FUNC33_OUT_INV_SEL_S 9 + +/* GPIO_FUNC33_OUT_SEL : R/W; bitpos: [8:0]; default: 256; + * The value of the bits: 0<=s<=256. Set the value to select output signal. + * s=0-255: output of GPIO[n] equals input of peripheral[s]. s=256: output + * of GPIO[n] equals GPIO_OUT_REG[n]. + */ + +#define GPIO_FUNC33_OUT_SEL 0x000001ff +#define GPIO_FUNC33_OUT_SEL_M (GPIO_FUNC33_OUT_SEL_V << GPIO_FUNC33_OUT_SEL_S) +#define GPIO_FUNC33_OUT_SEL_V 0x000001ff +#define GPIO_FUNC33_OUT_SEL_S 0 + +/* GPIO_FUNC34_OUT_SEL_CFG_REG register + * GPIO output function select register + */ + +#define GPIO_FUNC34_OUT_SEL_CFG_REG (DR_REG_GPIO_BASE + 0x5dc) + +/* GPIO_FUNC34_OEN_INV_SEL : R/W; bitpos: [11]; default: 0; + * set this bit to invert output enable signal.1:invert.0:not invert. + */ + +#define GPIO_FUNC34_OEN_INV_SEL (BIT(11)) +#define GPIO_FUNC34_OEN_INV_SEL_M (GPIO_FUNC34_OEN_INV_SEL_V << GPIO_FUNC34_OEN_INV_SEL_S) +#define GPIO_FUNC34_OEN_INV_SEL_V 0x00000001 +#define GPIO_FUNC34_OEN_INV_SEL_S 11 + +/* GPIO_FUNC34_OEN_SEL : R/W; bitpos: [10]; default: 0; + * set this bit to select output enable signal.1:use GPIO_ENABLE_REG[n] as + * output enable signal.0:use peripheral output enable signal. + */ + +#define GPIO_FUNC34_OEN_SEL (BIT(10)) +#define GPIO_FUNC34_OEN_SEL_M (GPIO_FUNC34_OEN_SEL_V << GPIO_FUNC34_OEN_SEL_S) +#define GPIO_FUNC34_OEN_SEL_V 0x00000001 +#define GPIO_FUNC34_OEN_SEL_S 10 + +/* GPIO_FUNC34_OUT_INV_SEL : R/W; bitpos: [9]; default: 0; + * set this bit to invert output signal.1:invert.0:not invert. + */ + +#define GPIO_FUNC34_OUT_INV_SEL (BIT(9)) +#define GPIO_FUNC34_OUT_INV_SEL_M (GPIO_FUNC34_OUT_INV_SEL_V << GPIO_FUNC34_OUT_INV_SEL_S) +#define GPIO_FUNC34_OUT_INV_SEL_V 0x00000001 +#define GPIO_FUNC34_OUT_INV_SEL_S 9 + +/* GPIO_FUNC34_OUT_SEL : R/W; bitpos: [8:0]; default: 256; + * The value of the bits: 0<=s<=256. Set the value to select output signal. + * s=0-255: output of GPIO[n] equals input of peripheral[s]. s=256: output + * of GPIO[n] equals GPIO_OUT_REG[n]. + */ + +#define GPIO_FUNC34_OUT_SEL 0x000001ff +#define GPIO_FUNC34_OUT_SEL_M (GPIO_FUNC34_OUT_SEL_V << GPIO_FUNC34_OUT_SEL_S) +#define GPIO_FUNC34_OUT_SEL_V 0x000001ff +#define GPIO_FUNC34_OUT_SEL_S 0 + +/* GPIO_FUNC35_OUT_SEL_CFG_REG register + * GPIO output function select register + */ + +#define GPIO_FUNC35_OUT_SEL_CFG_REG (DR_REG_GPIO_BASE + 0x5e0) + +/* GPIO_FUNC35_OEN_INV_SEL : R/W; bitpos: [11]; default: 0; + * set this bit to invert output enable signal.1:invert.0:not invert. + */ + +#define GPIO_FUNC35_OEN_INV_SEL (BIT(11)) +#define GPIO_FUNC35_OEN_INV_SEL_M (GPIO_FUNC35_OEN_INV_SEL_V << GPIO_FUNC35_OEN_INV_SEL_S) +#define GPIO_FUNC35_OEN_INV_SEL_V 0x00000001 +#define GPIO_FUNC35_OEN_INV_SEL_S 11 + +/* GPIO_FUNC35_OEN_SEL : R/W; bitpos: [10]; default: 0; + * set this bit to select output enable signal.1:use GPIO_ENABLE_REG[n] as + * output enable signal.0:use peripheral output enable signal. + */ + +#define GPIO_FUNC35_OEN_SEL (BIT(10)) +#define GPIO_FUNC35_OEN_SEL_M (GPIO_FUNC35_OEN_SEL_V << GPIO_FUNC35_OEN_SEL_S) +#define GPIO_FUNC35_OEN_SEL_V 0x00000001 +#define GPIO_FUNC35_OEN_SEL_S 10 + +/* GPIO_FUNC35_OUT_INV_SEL : R/W; bitpos: [9]; default: 0; + * set this bit to invert output signal.1:invert.0:not invert. + */ + +#define GPIO_FUNC35_OUT_INV_SEL (BIT(9)) +#define GPIO_FUNC35_OUT_INV_SEL_M (GPIO_FUNC35_OUT_INV_SEL_V << GPIO_FUNC35_OUT_INV_SEL_S) +#define GPIO_FUNC35_OUT_INV_SEL_V 0x00000001 +#define GPIO_FUNC35_OUT_INV_SEL_S 9 + +/* GPIO_FUNC35_OUT_SEL : R/W; bitpos: [8:0]; default: 256; + * The value of the bits: 0<=s<=256. Set the value to select output signal. + * s=0-255: output of GPIO[n] equals input of peripheral[s]. s=256: output + * of GPIO[n] equals GPIO_OUT_REG[n]. + */ + +#define GPIO_FUNC35_OUT_SEL 0x000001ff +#define GPIO_FUNC35_OUT_SEL_M (GPIO_FUNC35_OUT_SEL_V << GPIO_FUNC35_OUT_SEL_S) +#define GPIO_FUNC35_OUT_SEL_V 0x000001ff +#define GPIO_FUNC35_OUT_SEL_S 0 + +/* GPIO_FUNC36_OUT_SEL_CFG_REG register + * GPIO output function select register + */ + +#define GPIO_FUNC36_OUT_SEL_CFG_REG (DR_REG_GPIO_BASE + 0x5e4) + +/* GPIO_FUNC36_OEN_INV_SEL : R/W; bitpos: [11]; default: 0; + * set this bit to invert output enable signal.1:invert.0:not invert. + */ + +#define GPIO_FUNC36_OEN_INV_SEL (BIT(11)) +#define GPIO_FUNC36_OEN_INV_SEL_M (GPIO_FUNC36_OEN_INV_SEL_V << GPIO_FUNC36_OEN_INV_SEL_S) +#define GPIO_FUNC36_OEN_INV_SEL_V 0x00000001 +#define GPIO_FUNC36_OEN_INV_SEL_S 11 + +/* GPIO_FUNC36_OEN_SEL : R/W; bitpos: [10]; default: 0; + * set this bit to select output enable signal.1:use GPIO_ENABLE_REG[n] as + * output enable signal.0:use peripheral output enable signal. + */ + +#define GPIO_FUNC36_OEN_SEL (BIT(10)) +#define GPIO_FUNC36_OEN_SEL_M (GPIO_FUNC36_OEN_SEL_V << GPIO_FUNC36_OEN_SEL_S) +#define GPIO_FUNC36_OEN_SEL_V 0x00000001 +#define GPIO_FUNC36_OEN_SEL_S 10 + +/* GPIO_FUNC36_OUT_INV_SEL : R/W; bitpos: [9]; default: 0; + * set this bit to invert output signal.1:invert.0:not invert. + */ + +#define GPIO_FUNC36_OUT_INV_SEL (BIT(9)) +#define GPIO_FUNC36_OUT_INV_SEL_M (GPIO_FUNC36_OUT_INV_SEL_V << GPIO_FUNC36_OUT_INV_SEL_S) +#define GPIO_FUNC36_OUT_INV_SEL_V 0x00000001 +#define GPIO_FUNC36_OUT_INV_SEL_S 9 + +/* GPIO_FUNC36_OUT_SEL : R/W; bitpos: [8:0]; default: 256; + * The value of the bits: 0<=s<=256. Set the value to select output signal. + * s=0-255: output of GPIO[n] equals input of peripheral[s]. s=256: output + * of GPIO[n] equals GPIO_OUT_REG[n]. + */ + +#define GPIO_FUNC36_OUT_SEL 0x000001ff +#define GPIO_FUNC36_OUT_SEL_M (GPIO_FUNC36_OUT_SEL_V << GPIO_FUNC36_OUT_SEL_S) +#define GPIO_FUNC36_OUT_SEL_V 0x000001ff +#define GPIO_FUNC36_OUT_SEL_S 0 + +/* GPIO_FUNC37_OUT_SEL_CFG_REG register + * GPIO output function select register + */ + +#define GPIO_FUNC37_OUT_SEL_CFG_REG (DR_REG_GPIO_BASE + 0x5e8) + +/* GPIO_FUNC37_OEN_INV_SEL : R/W; bitpos: [11]; default: 0; + * set this bit to invert output enable signal.1:invert.0:not invert. + */ + +#define GPIO_FUNC37_OEN_INV_SEL (BIT(11)) +#define GPIO_FUNC37_OEN_INV_SEL_M (GPIO_FUNC37_OEN_INV_SEL_V << GPIO_FUNC37_OEN_INV_SEL_S) +#define GPIO_FUNC37_OEN_INV_SEL_V 0x00000001 +#define GPIO_FUNC37_OEN_INV_SEL_S 11 + +/* GPIO_FUNC37_OEN_SEL : R/W; bitpos: [10]; default: 0; + * set this bit to select output enable signal.1:use GPIO_ENABLE_REG[n] as + * output enable signal.0:use peripheral output enable signal. + */ + +#define GPIO_FUNC37_OEN_SEL (BIT(10)) +#define GPIO_FUNC37_OEN_SEL_M (GPIO_FUNC37_OEN_SEL_V << GPIO_FUNC37_OEN_SEL_S) +#define GPIO_FUNC37_OEN_SEL_V 0x00000001 +#define GPIO_FUNC37_OEN_SEL_S 10 + +/* GPIO_FUNC37_OUT_INV_SEL : R/W; bitpos: [9]; default: 0; + * set this bit to invert output signal.1:invert.0:not invert. + */ + +#define GPIO_FUNC37_OUT_INV_SEL (BIT(9)) +#define GPIO_FUNC37_OUT_INV_SEL_M (GPIO_FUNC37_OUT_INV_SEL_V << GPIO_FUNC37_OUT_INV_SEL_S) +#define GPIO_FUNC37_OUT_INV_SEL_V 0x00000001 +#define GPIO_FUNC37_OUT_INV_SEL_S 9 + +/* GPIO_FUNC37_OUT_SEL : R/W; bitpos: [8:0]; default: 256; + * The value of the bits: 0<=s<=256. Set the value to select output signal. + * s=0-255: output of GPIO[n] equals input of peripheral[s]. s=256: output + * of GPIO[n] equals GPIO_OUT_REG[n]. + */ + +#define GPIO_FUNC37_OUT_SEL 0x000001ff +#define GPIO_FUNC37_OUT_SEL_M (GPIO_FUNC37_OUT_SEL_V << GPIO_FUNC37_OUT_SEL_S) +#define GPIO_FUNC37_OUT_SEL_V 0x000001ff +#define GPIO_FUNC37_OUT_SEL_S 0 + +/* GPIO_FUNC38_OUT_SEL_CFG_REG register + * GPIO output function select register + */ + +#define GPIO_FUNC38_OUT_SEL_CFG_REG (DR_REG_GPIO_BASE + 0x5ec) + +/* GPIO_FUNC38_OEN_INV_SEL : R/W; bitpos: [11]; default: 0; + * set this bit to invert output enable signal.1:invert.0:not invert. + */ + +#define GPIO_FUNC38_OEN_INV_SEL (BIT(11)) +#define GPIO_FUNC38_OEN_INV_SEL_M (GPIO_FUNC38_OEN_INV_SEL_V << GPIO_FUNC38_OEN_INV_SEL_S) +#define GPIO_FUNC38_OEN_INV_SEL_V 0x00000001 +#define GPIO_FUNC38_OEN_INV_SEL_S 11 + +/* GPIO_FUNC38_OEN_SEL : R/W; bitpos: [10]; default: 0; + * set this bit to select output enable signal.1:use GPIO_ENABLE_REG[n] as + * output enable signal.0:use peripheral output enable signal. + */ + +#define GPIO_FUNC38_OEN_SEL (BIT(10)) +#define GPIO_FUNC38_OEN_SEL_M (GPIO_FUNC38_OEN_SEL_V << GPIO_FUNC38_OEN_SEL_S) +#define GPIO_FUNC38_OEN_SEL_V 0x00000001 +#define GPIO_FUNC38_OEN_SEL_S 10 + +/* GPIO_FUNC38_OUT_INV_SEL : R/W; bitpos: [9]; default: 0; + * set this bit to invert output signal.1:invert.0:not invert. + */ + +#define GPIO_FUNC38_OUT_INV_SEL (BIT(9)) +#define GPIO_FUNC38_OUT_INV_SEL_M (GPIO_FUNC38_OUT_INV_SEL_V << GPIO_FUNC38_OUT_INV_SEL_S) +#define GPIO_FUNC38_OUT_INV_SEL_V 0x00000001 +#define GPIO_FUNC38_OUT_INV_SEL_S 9 + +/* GPIO_FUNC38_OUT_SEL : R/W; bitpos: [8:0]; default: 256; + * The value of the bits: 0<=s<=256. Set the value to select output signal. + * s=0-255: output of GPIO[n] equals input of peripheral[s]. s=256: output + * of GPIO[n] equals GPIO_OUT_REG[n]. + */ + +#define GPIO_FUNC38_OUT_SEL 0x000001ff +#define GPIO_FUNC38_OUT_SEL_M (GPIO_FUNC38_OUT_SEL_V << GPIO_FUNC38_OUT_SEL_S) +#define GPIO_FUNC38_OUT_SEL_V 0x000001ff +#define GPIO_FUNC38_OUT_SEL_S 0 + +/* GPIO_FUNC39_OUT_SEL_CFG_REG register + * GPIO output function select register + */ + +#define GPIO_FUNC39_OUT_SEL_CFG_REG (DR_REG_GPIO_BASE + 0x5f0) + +/* GPIO_FUNC39_OEN_INV_SEL : R/W; bitpos: [11]; default: 0; + * set this bit to invert output enable signal.1:invert.0:not invert. + */ + +#define GPIO_FUNC39_OEN_INV_SEL (BIT(11)) +#define GPIO_FUNC39_OEN_INV_SEL_M (GPIO_FUNC39_OEN_INV_SEL_V << GPIO_FUNC39_OEN_INV_SEL_S) +#define GPIO_FUNC39_OEN_INV_SEL_V 0x00000001 +#define GPIO_FUNC39_OEN_INV_SEL_S 11 + +/* GPIO_FUNC39_OEN_SEL : R/W; bitpos: [10]; default: 0; + * set this bit to select output enable signal.1:use GPIO_ENABLE_REG[n] as + * output enable signal.0:use peripheral output enable signal. + */ + +#define GPIO_FUNC39_OEN_SEL (BIT(10)) +#define GPIO_FUNC39_OEN_SEL_M (GPIO_FUNC39_OEN_SEL_V << GPIO_FUNC39_OEN_SEL_S) +#define GPIO_FUNC39_OEN_SEL_V 0x00000001 +#define GPIO_FUNC39_OEN_SEL_S 10 + +/* GPIO_FUNC39_OUT_INV_SEL : R/W; bitpos: [9]; default: 0; + * set this bit to invert output signal.1:invert.0:not invert. + */ + +#define GPIO_FUNC39_OUT_INV_SEL (BIT(9)) +#define GPIO_FUNC39_OUT_INV_SEL_M (GPIO_FUNC39_OUT_INV_SEL_V << GPIO_FUNC39_OUT_INV_SEL_S) +#define GPIO_FUNC39_OUT_INV_SEL_V 0x00000001 +#define GPIO_FUNC39_OUT_INV_SEL_S 9 + +/* GPIO_FUNC39_OUT_SEL : R/W; bitpos: [8:0]; default: 256; + * The value of the bits: 0<=s<=256. Set the value to select output signal. + * s=0-255: output of GPIO[n] equals input of peripheral[s]. s=256: output + * of GPIO[n] equals GPIO_OUT_REG[n]. + */ + +#define GPIO_FUNC39_OUT_SEL 0x000001ff +#define GPIO_FUNC39_OUT_SEL_M (GPIO_FUNC39_OUT_SEL_V << GPIO_FUNC39_OUT_SEL_S) +#define GPIO_FUNC39_OUT_SEL_V 0x000001ff +#define GPIO_FUNC39_OUT_SEL_S 0 + +/* GPIO_FUNC40_OUT_SEL_CFG_REG register + * GPIO output function select register + */ + +#define GPIO_FUNC40_OUT_SEL_CFG_REG (DR_REG_GPIO_BASE + 0x5f4) + +/* GPIO_FUNC40_OEN_INV_SEL : R/W; bitpos: [11]; default: 0; + * set this bit to invert output enable signal.1:invert.0:not invert. + */ + +#define GPIO_FUNC40_OEN_INV_SEL (BIT(11)) +#define GPIO_FUNC40_OEN_INV_SEL_M (GPIO_FUNC40_OEN_INV_SEL_V << GPIO_FUNC40_OEN_INV_SEL_S) +#define GPIO_FUNC40_OEN_INV_SEL_V 0x00000001 +#define GPIO_FUNC40_OEN_INV_SEL_S 11 + +/* GPIO_FUNC40_OEN_SEL : R/W; bitpos: [10]; default: 0; + * set this bit to select output enable signal.1:use GPIO_ENABLE_REG[n] as + * output enable signal.0:use peripheral output enable signal. + */ + +#define GPIO_FUNC40_OEN_SEL (BIT(10)) +#define GPIO_FUNC40_OEN_SEL_M (GPIO_FUNC40_OEN_SEL_V << GPIO_FUNC40_OEN_SEL_S) +#define GPIO_FUNC40_OEN_SEL_V 0x00000001 +#define GPIO_FUNC40_OEN_SEL_S 10 + +/* GPIO_FUNC40_OUT_INV_SEL : R/W; bitpos: [9]; default: 0; + * set this bit to invert output signal.1:invert.0:not invert. + */ + +#define GPIO_FUNC40_OUT_INV_SEL (BIT(9)) +#define GPIO_FUNC40_OUT_INV_SEL_M (GPIO_FUNC40_OUT_INV_SEL_V << GPIO_FUNC40_OUT_INV_SEL_S) +#define GPIO_FUNC40_OUT_INV_SEL_V 0x00000001 +#define GPIO_FUNC40_OUT_INV_SEL_S 9 + +/* GPIO_FUNC40_OUT_SEL : R/W; bitpos: [8:0]; default: 256; + * The value of the bits: 0<=s<=256. Set the value to select output signal. + * s=0-255: output of GPIO[n] equals input of peripheral[s]. s=256: output + * of GPIO[n] equals GPIO_OUT_REG[n]. + */ + +#define GPIO_FUNC40_OUT_SEL 0x000001ff +#define GPIO_FUNC40_OUT_SEL_M (GPIO_FUNC40_OUT_SEL_V << GPIO_FUNC40_OUT_SEL_S) +#define GPIO_FUNC40_OUT_SEL_V 0x000001ff +#define GPIO_FUNC40_OUT_SEL_S 0 + +/* GPIO_FUNC41_OUT_SEL_CFG_REG register + * GPIO output function select register + */ + +#define GPIO_FUNC41_OUT_SEL_CFG_REG (DR_REG_GPIO_BASE + 0x5f8) + +/* GPIO_FUNC41_OEN_INV_SEL : R/W; bitpos: [11]; default: 0; + * set this bit to invert output enable signal.1:invert.0:not invert. + */ + +#define GPIO_FUNC41_OEN_INV_SEL (BIT(11)) +#define GPIO_FUNC41_OEN_INV_SEL_M (GPIO_FUNC41_OEN_INV_SEL_V << GPIO_FUNC41_OEN_INV_SEL_S) +#define GPIO_FUNC41_OEN_INV_SEL_V 0x00000001 +#define GPIO_FUNC41_OEN_INV_SEL_S 11 + +/* GPIO_FUNC41_OEN_SEL : R/W; bitpos: [10]; default: 0; + * set this bit to select output enable signal.1:use GPIO_ENABLE_REG[n] as + * output enable signal.0:use peripheral output enable signal. + */ + +#define GPIO_FUNC41_OEN_SEL (BIT(10)) +#define GPIO_FUNC41_OEN_SEL_M (GPIO_FUNC41_OEN_SEL_V << GPIO_FUNC41_OEN_SEL_S) +#define GPIO_FUNC41_OEN_SEL_V 0x00000001 +#define GPIO_FUNC41_OEN_SEL_S 10 + +/* GPIO_FUNC41_OUT_INV_SEL : R/W; bitpos: [9]; default: 0; + * set this bit to invert output signal.1:invert.0:not invert. + */ + +#define GPIO_FUNC41_OUT_INV_SEL (BIT(9)) +#define GPIO_FUNC41_OUT_INV_SEL_M (GPIO_FUNC41_OUT_INV_SEL_V << GPIO_FUNC41_OUT_INV_SEL_S) +#define GPIO_FUNC41_OUT_INV_SEL_V 0x00000001 +#define GPIO_FUNC41_OUT_INV_SEL_S 9 + +/* GPIO_FUNC41_OUT_SEL : R/W; bitpos: [8:0]; default: 256; + * The value of the bits: 0<=s<=256. Set the value to select output signal. + * s=0-255: output of GPIO[n] equals input of peripheral[s]. s=256: output + * of GPIO[n] equals GPIO_OUT_REG[n]. + */ + +#define GPIO_FUNC41_OUT_SEL 0x000001ff +#define GPIO_FUNC41_OUT_SEL_M (GPIO_FUNC41_OUT_SEL_V << GPIO_FUNC41_OUT_SEL_S) +#define GPIO_FUNC41_OUT_SEL_V 0x000001ff +#define GPIO_FUNC41_OUT_SEL_S 0 + +/* GPIO_FUNC42_OUT_SEL_CFG_REG register + * GPIO output function select register + */ + +#define GPIO_FUNC42_OUT_SEL_CFG_REG (DR_REG_GPIO_BASE + 0x5fc) + +/* GPIO_FUNC42_OEN_INV_SEL : R/W; bitpos: [11]; default: 0; + * set this bit to invert output enable signal.1:invert.0:not invert. + */ + +#define GPIO_FUNC42_OEN_INV_SEL (BIT(11)) +#define GPIO_FUNC42_OEN_INV_SEL_M (GPIO_FUNC42_OEN_INV_SEL_V << GPIO_FUNC42_OEN_INV_SEL_S) +#define GPIO_FUNC42_OEN_INV_SEL_V 0x00000001 +#define GPIO_FUNC42_OEN_INV_SEL_S 11 + +/* GPIO_FUNC42_OEN_SEL : R/W; bitpos: [10]; default: 0; + * set this bit to select output enable signal.1:use GPIO_ENABLE_REG[n] as + * output enable signal.0:use peripheral output enable signal. + */ + +#define GPIO_FUNC42_OEN_SEL (BIT(10)) +#define GPIO_FUNC42_OEN_SEL_M (GPIO_FUNC42_OEN_SEL_V << GPIO_FUNC42_OEN_SEL_S) +#define GPIO_FUNC42_OEN_SEL_V 0x00000001 +#define GPIO_FUNC42_OEN_SEL_S 10 + +/* GPIO_FUNC42_OUT_INV_SEL : R/W; bitpos: [9]; default: 0; + * set this bit to invert output signal.1:invert.0:not invert. + */ + +#define GPIO_FUNC42_OUT_INV_SEL (BIT(9)) +#define GPIO_FUNC42_OUT_INV_SEL_M (GPIO_FUNC42_OUT_INV_SEL_V << GPIO_FUNC42_OUT_INV_SEL_S) +#define GPIO_FUNC42_OUT_INV_SEL_V 0x00000001 +#define GPIO_FUNC42_OUT_INV_SEL_S 9 + +/* GPIO_FUNC42_OUT_SEL : R/W; bitpos: [8:0]; default: 256; + * The value of the bits: 0<=s<=256. Set the value to select output signal. + * s=0-255: output of GPIO[n] equals input of peripheral[s]. s=256: output + * of GPIO[n] equals GPIO_OUT_REG[n]. + */ + +#define GPIO_FUNC42_OUT_SEL 0x000001ff +#define GPIO_FUNC42_OUT_SEL_M (GPIO_FUNC42_OUT_SEL_V << GPIO_FUNC42_OUT_SEL_S) +#define GPIO_FUNC42_OUT_SEL_V 0x000001ff +#define GPIO_FUNC42_OUT_SEL_S 0 + +/* GPIO_FUNC43_OUT_SEL_CFG_REG register + * GPIO output function select register + */ + +#define GPIO_FUNC43_OUT_SEL_CFG_REG (DR_REG_GPIO_BASE + 0x600) + +/* GPIO_FUNC43_OEN_INV_SEL : R/W; bitpos: [11]; default: 0; + * set this bit to invert output enable signal.1:invert.0:not invert. + */ + +#define GPIO_FUNC43_OEN_INV_SEL (BIT(11)) +#define GPIO_FUNC43_OEN_INV_SEL_M (GPIO_FUNC43_OEN_INV_SEL_V << GPIO_FUNC43_OEN_INV_SEL_S) +#define GPIO_FUNC43_OEN_INV_SEL_V 0x00000001 +#define GPIO_FUNC43_OEN_INV_SEL_S 11 + +/* GPIO_FUNC43_OEN_SEL : R/W; bitpos: [10]; default: 0; + * set this bit to select output enable signal.1:use GPIO_ENABLE_REG[n] as + * output enable signal.0:use peripheral output enable signal. + */ + +#define GPIO_FUNC43_OEN_SEL (BIT(10)) +#define GPIO_FUNC43_OEN_SEL_M (GPIO_FUNC43_OEN_SEL_V << GPIO_FUNC43_OEN_SEL_S) +#define GPIO_FUNC43_OEN_SEL_V 0x00000001 +#define GPIO_FUNC43_OEN_SEL_S 10 + +/* GPIO_FUNC43_OUT_INV_SEL : R/W; bitpos: [9]; default: 0; + * set this bit to invert output signal.1:invert.0:not invert. + */ + +#define GPIO_FUNC43_OUT_INV_SEL (BIT(9)) +#define GPIO_FUNC43_OUT_INV_SEL_M (GPIO_FUNC43_OUT_INV_SEL_V << GPIO_FUNC43_OUT_INV_SEL_S) +#define GPIO_FUNC43_OUT_INV_SEL_V 0x00000001 +#define GPIO_FUNC43_OUT_INV_SEL_S 9 + +/* GPIO_FUNC43_OUT_SEL : R/W; bitpos: [8:0]; default: 256; + * The value of the bits: 0<=s<=256. Set the value to select output signal. + * s=0-255: output of GPIO[n] equals input of peripheral[s]. s=256: output + * of GPIO[n] equals GPIO_OUT_REG[n]. + */ + +#define GPIO_FUNC43_OUT_SEL 0x000001ff +#define GPIO_FUNC43_OUT_SEL_M (GPIO_FUNC43_OUT_SEL_V << GPIO_FUNC43_OUT_SEL_S) +#define GPIO_FUNC43_OUT_SEL_V 0x000001ff +#define GPIO_FUNC43_OUT_SEL_S 0 + +/* GPIO_FUNC44_OUT_SEL_CFG_REG register + * GPIO output function select register + */ + +#define GPIO_FUNC44_OUT_SEL_CFG_REG (DR_REG_GPIO_BASE + 0x604) + +/* GPIO_FUNC44_OEN_INV_SEL : R/W; bitpos: [11]; default: 0; + * set this bit to invert output enable signal.1:invert.0:not invert. + */ + +#define GPIO_FUNC44_OEN_INV_SEL (BIT(11)) +#define GPIO_FUNC44_OEN_INV_SEL_M (GPIO_FUNC44_OEN_INV_SEL_V << GPIO_FUNC44_OEN_INV_SEL_S) +#define GPIO_FUNC44_OEN_INV_SEL_V 0x00000001 +#define GPIO_FUNC44_OEN_INV_SEL_S 11 + +/* GPIO_FUNC44_OEN_SEL : R/W; bitpos: [10]; default: 0; + * set this bit to select output enable signal.1:use GPIO_ENABLE_REG[n] as + * output enable signal.0:use peripheral output enable signal. + */ + +#define GPIO_FUNC44_OEN_SEL (BIT(10)) +#define GPIO_FUNC44_OEN_SEL_M (GPIO_FUNC44_OEN_SEL_V << GPIO_FUNC44_OEN_SEL_S) +#define GPIO_FUNC44_OEN_SEL_V 0x00000001 +#define GPIO_FUNC44_OEN_SEL_S 10 + +/* GPIO_FUNC44_OUT_INV_SEL : R/W; bitpos: [9]; default: 0; + * set this bit to invert output signal.1:invert.0:not invert. + */ + +#define GPIO_FUNC44_OUT_INV_SEL (BIT(9)) +#define GPIO_FUNC44_OUT_INV_SEL_M (GPIO_FUNC44_OUT_INV_SEL_V << GPIO_FUNC44_OUT_INV_SEL_S) +#define GPIO_FUNC44_OUT_INV_SEL_V 0x00000001 +#define GPIO_FUNC44_OUT_INV_SEL_S 9 + +/* GPIO_FUNC44_OUT_SEL : R/W; bitpos: [8:0]; default: 256; + * The value of the bits: 0<=s<=256. Set the value to select output signal. + * s=0-255: output of GPIO[n] equals input of peripheral[s]. s=256: output + * of GPIO[n] equals GPIO_OUT_REG[n]. + */ + +#define GPIO_FUNC44_OUT_SEL 0x000001ff +#define GPIO_FUNC44_OUT_SEL_M (GPIO_FUNC44_OUT_SEL_V << GPIO_FUNC44_OUT_SEL_S) +#define GPIO_FUNC44_OUT_SEL_V 0x000001ff +#define GPIO_FUNC44_OUT_SEL_S 0 + +/* GPIO_FUNC45_OUT_SEL_CFG_REG register + * GPIO output function select register + */ + +#define GPIO_FUNC45_OUT_SEL_CFG_REG (DR_REG_GPIO_BASE + 0x608) + +/* GPIO_FUNC45_OEN_INV_SEL : R/W; bitpos: [11]; default: 0; + * set this bit to invert output enable signal.1:invert.0:not invert. + */ + +#define GPIO_FUNC45_OEN_INV_SEL (BIT(11)) +#define GPIO_FUNC45_OEN_INV_SEL_M (GPIO_FUNC45_OEN_INV_SEL_V << GPIO_FUNC45_OEN_INV_SEL_S) +#define GPIO_FUNC45_OEN_INV_SEL_V 0x00000001 +#define GPIO_FUNC45_OEN_INV_SEL_S 11 + +/* GPIO_FUNC45_OEN_SEL : R/W; bitpos: [10]; default: 0; + * set this bit to select output enable signal.1:use GPIO_ENABLE_REG[n] as + * output enable signal.0:use peripheral output enable signal. + */ + +#define GPIO_FUNC45_OEN_SEL (BIT(10)) +#define GPIO_FUNC45_OEN_SEL_M (GPIO_FUNC45_OEN_SEL_V << GPIO_FUNC45_OEN_SEL_S) +#define GPIO_FUNC45_OEN_SEL_V 0x00000001 +#define GPIO_FUNC45_OEN_SEL_S 10 + +/* GPIO_FUNC45_OUT_INV_SEL : R/W; bitpos: [9]; default: 0; + * set this bit to invert output signal.1:invert.0:not invert. + */ + +#define GPIO_FUNC45_OUT_INV_SEL (BIT(9)) +#define GPIO_FUNC45_OUT_INV_SEL_M (GPIO_FUNC45_OUT_INV_SEL_V << GPIO_FUNC45_OUT_INV_SEL_S) +#define GPIO_FUNC45_OUT_INV_SEL_V 0x00000001 +#define GPIO_FUNC45_OUT_INV_SEL_S 9 + +/* GPIO_FUNC45_OUT_SEL : R/W; bitpos: [8:0]; default: 256; + * The value of the bits: 0<=s<=256. Set the value to select output signal. + * s=0-255: output of GPIO[n] equals input of peripheral[s]. s=256: output + * of GPIO[n] equals GPIO_OUT_REG[n]. + */ + +#define GPIO_FUNC45_OUT_SEL 0x000001ff +#define GPIO_FUNC45_OUT_SEL_M (GPIO_FUNC45_OUT_SEL_V << GPIO_FUNC45_OUT_SEL_S) +#define GPIO_FUNC45_OUT_SEL_V 0x000001ff +#define GPIO_FUNC45_OUT_SEL_S 0 + +/* GPIO_FUNC46_OUT_SEL_CFG_REG register + * GPIO output function select register + */ + +#define GPIO_FUNC46_OUT_SEL_CFG_REG (DR_REG_GPIO_BASE + 0x60c) + +/* GPIO_FUNC46_OEN_INV_SEL : R/W; bitpos: [11]; default: 0; + * set this bit to invert output enable signal.1:invert.0:not invert. + */ + +#define GPIO_FUNC46_OEN_INV_SEL (BIT(11)) +#define GPIO_FUNC46_OEN_INV_SEL_M (GPIO_FUNC46_OEN_INV_SEL_V << GPIO_FUNC46_OEN_INV_SEL_S) +#define GPIO_FUNC46_OEN_INV_SEL_V 0x00000001 +#define GPIO_FUNC46_OEN_INV_SEL_S 11 + +/* GPIO_FUNC46_OEN_SEL : R/W; bitpos: [10]; default: 0; + * set this bit to select output enable signal.1:use GPIO_ENABLE_REG[n] as + * output enable signal.0:use peripheral output enable signal. + */ + +#define GPIO_FUNC46_OEN_SEL (BIT(10)) +#define GPIO_FUNC46_OEN_SEL_M (GPIO_FUNC46_OEN_SEL_V << GPIO_FUNC46_OEN_SEL_S) +#define GPIO_FUNC46_OEN_SEL_V 0x00000001 +#define GPIO_FUNC46_OEN_SEL_S 10 + +/* GPIO_FUNC46_OUT_INV_SEL : R/W; bitpos: [9]; default: 0; + * set this bit to invert output signal.1:invert.0:not invert. + */ + +#define GPIO_FUNC46_OUT_INV_SEL (BIT(9)) +#define GPIO_FUNC46_OUT_INV_SEL_M (GPIO_FUNC46_OUT_INV_SEL_V << GPIO_FUNC46_OUT_INV_SEL_S) +#define GPIO_FUNC46_OUT_INV_SEL_V 0x00000001 +#define GPIO_FUNC46_OUT_INV_SEL_S 9 + +/* GPIO_FUNC46_OUT_SEL : R/W; bitpos: [8:0]; default: 256; + * The value of the bits: 0<=s<=256. Set the value to select output signal. + * s=0-255: output of GPIO[n] equals input of peripheral[s]. s=256: output + * of GPIO[n] equals GPIO_OUT_REG[n]. + */ + +#define GPIO_FUNC46_OUT_SEL 0x000001ff +#define GPIO_FUNC46_OUT_SEL_M (GPIO_FUNC46_OUT_SEL_V << GPIO_FUNC46_OUT_SEL_S) +#define GPIO_FUNC46_OUT_SEL_V 0x000001ff +#define GPIO_FUNC46_OUT_SEL_S 0 + +/* GPIO_FUNC47_OUT_SEL_CFG_REG register + * GPIO output function select register + */ + +#define GPIO_FUNC47_OUT_SEL_CFG_REG (DR_REG_GPIO_BASE + 0x610) + +/* GPIO_FUNC47_OEN_INV_SEL : R/W; bitpos: [11]; default: 0; + * set this bit to invert output enable signal.1:invert.0:not invert. + */ + +#define GPIO_FUNC47_OEN_INV_SEL (BIT(11)) +#define GPIO_FUNC47_OEN_INV_SEL_M (GPIO_FUNC47_OEN_INV_SEL_V << GPIO_FUNC47_OEN_INV_SEL_S) +#define GPIO_FUNC47_OEN_INV_SEL_V 0x00000001 +#define GPIO_FUNC47_OEN_INV_SEL_S 11 + +/* GPIO_FUNC47_OEN_SEL : R/W; bitpos: [10]; default: 0; + * set this bit to select output enable signal.1:use GPIO_ENABLE_REG[n] as + * output enable signal.0:use peripheral output enable signal. + */ + +#define GPIO_FUNC47_OEN_SEL (BIT(10)) +#define GPIO_FUNC47_OEN_SEL_M (GPIO_FUNC47_OEN_SEL_V << GPIO_FUNC47_OEN_SEL_S) +#define GPIO_FUNC47_OEN_SEL_V 0x00000001 +#define GPIO_FUNC47_OEN_SEL_S 10 + +/* GPIO_FUNC47_OUT_INV_SEL : R/W; bitpos: [9]; default: 0; + * set this bit to invert output signal.1:invert.0:not invert. + */ + +#define GPIO_FUNC47_OUT_INV_SEL (BIT(9)) +#define GPIO_FUNC47_OUT_INV_SEL_M (GPIO_FUNC47_OUT_INV_SEL_V << GPIO_FUNC47_OUT_INV_SEL_S) +#define GPIO_FUNC47_OUT_INV_SEL_V 0x00000001 +#define GPIO_FUNC47_OUT_INV_SEL_S 9 + +/* GPIO_FUNC47_OUT_SEL : R/W; bitpos: [8:0]; default: 256; + * The value of the bits: 0<=s<=256. Set the value to select output signal. + * s=0-255: output of GPIO[n] equals input of peripheral[s]. s=256: output + * of GPIO[n] equals GPIO_OUT_REG[n]. + */ + +#define GPIO_FUNC47_OUT_SEL 0x000001ff +#define GPIO_FUNC47_OUT_SEL_M (GPIO_FUNC47_OUT_SEL_V << GPIO_FUNC47_OUT_SEL_S) +#define GPIO_FUNC47_OUT_SEL_V 0x000001ff +#define GPIO_FUNC47_OUT_SEL_S 0 + +/* GPIO_FUNC48_OUT_SEL_CFG_REG register + * GPIO output function select register + */ + +#define GPIO_FUNC48_OUT_SEL_CFG_REG (DR_REG_GPIO_BASE + 0x614) + +/* GPIO_FUNC48_OEN_INV_SEL : R/W; bitpos: [11]; default: 0; + * set this bit to invert output enable signal.1:invert.0:not invert. + */ + +#define GPIO_FUNC48_OEN_INV_SEL (BIT(11)) +#define GPIO_FUNC48_OEN_INV_SEL_M (GPIO_FUNC48_OEN_INV_SEL_V << GPIO_FUNC48_OEN_INV_SEL_S) +#define GPIO_FUNC48_OEN_INV_SEL_V 0x00000001 +#define GPIO_FUNC48_OEN_INV_SEL_S 11 + +/* GPIO_FUNC48_OEN_SEL : R/W; bitpos: [10]; default: 0; + * set this bit to select output enable signal.1:use GPIO_ENABLE_REG[n] as + * output enable signal.0:use peripheral output enable signal. + */ + +#define GPIO_FUNC48_OEN_SEL (BIT(10)) +#define GPIO_FUNC48_OEN_SEL_M (GPIO_FUNC48_OEN_SEL_V << GPIO_FUNC48_OEN_SEL_S) +#define GPIO_FUNC48_OEN_SEL_V 0x00000001 +#define GPIO_FUNC48_OEN_SEL_S 10 + +/* GPIO_FUNC48_OUT_INV_SEL : R/W; bitpos: [9]; default: 0; + * set this bit to invert output signal.1:invert.0:not invert. + */ + +#define GPIO_FUNC48_OUT_INV_SEL (BIT(9)) +#define GPIO_FUNC48_OUT_INV_SEL_M (GPIO_FUNC48_OUT_INV_SEL_V << GPIO_FUNC48_OUT_INV_SEL_S) +#define GPIO_FUNC48_OUT_INV_SEL_V 0x00000001 +#define GPIO_FUNC48_OUT_INV_SEL_S 9 + +/* GPIO_FUNC48_OUT_SEL : R/W; bitpos: [8:0]; default: 256; + * The value of the bits: 0<=s<=256. Set the value to select output signal. + * s=0-255: output of GPIO[n] equals input of peripheral[s]. s=256: output + * of GPIO[n] equals GPIO_OUT_REG[n]. + */ + +#define GPIO_FUNC48_OUT_SEL 0x000001ff +#define GPIO_FUNC48_OUT_SEL_M (GPIO_FUNC48_OUT_SEL_V << GPIO_FUNC48_OUT_SEL_S) +#define GPIO_FUNC48_OUT_SEL_V 0x000001ff +#define GPIO_FUNC48_OUT_SEL_S 0 + +/* GPIO_FUNC49_OUT_SEL_CFG_REG register + * GPIO output function select register + */ + +#define GPIO_FUNC49_OUT_SEL_CFG_REG (DR_REG_GPIO_BASE + 0x618) + +/* GPIO_FUNC49_OEN_INV_SEL : R/W; bitpos: [11]; default: 0; + * set this bit to invert output enable signal.1:invert.0:not invert. + */ + +#define GPIO_FUNC49_OEN_INV_SEL (BIT(11)) +#define GPIO_FUNC49_OEN_INV_SEL_M (GPIO_FUNC49_OEN_INV_SEL_V << GPIO_FUNC49_OEN_INV_SEL_S) +#define GPIO_FUNC49_OEN_INV_SEL_V 0x00000001 +#define GPIO_FUNC49_OEN_INV_SEL_S 11 + +/* GPIO_FUNC49_OEN_SEL : R/W; bitpos: [10]; default: 0; + * set this bit to select output enable signal.1:use GPIO_ENABLE_REG[n] as + * output enable signal.0:use peripheral output enable signal. + */ + +#define GPIO_FUNC49_OEN_SEL (BIT(10)) +#define GPIO_FUNC49_OEN_SEL_M (GPIO_FUNC49_OEN_SEL_V << GPIO_FUNC49_OEN_SEL_S) +#define GPIO_FUNC49_OEN_SEL_V 0x00000001 +#define GPIO_FUNC49_OEN_SEL_S 10 + +/* GPIO_FUNC49_OUT_INV_SEL : R/W; bitpos: [9]; default: 0; + * set this bit to invert output signal.1:invert.0:not invert. + */ + +#define GPIO_FUNC49_OUT_INV_SEL (BIT(9)) +#define GPIO_FUNC49_OUT_INV_SEL_M (GPIO_FUNC49_OUT_INV_SEL_V << GPIO_FUNC49_OUT_INV_SEL_S) +#define GPIO_FUNC49_OUT_INV_SEL_V 0x00000001 +#define GPIO_FUNC49_OUT_INV_SEL_S 9 + +/* GPIO_FUNC49_OUT_SEL : R/W; bitpos: [8:0]; default: 256; + * The value of the bits: 0<=s<=256. Set the value to select output signal. + * s=0-255: output of GPIO[n] equals input of peripheral[s]. s=256: output + * of GPIO[n] equals GPIO_OUT_REG[n]. + */ + +#define GPIO_FUNC49_OUT_SEL 0x000001ff +#define GPIO_FUNC49_OUT_SEL_M (GPIO_FUNC49_OUT_SEL_V << GPIO_FUNC49_OUT_SEL_S) +#define GPIO_FUNC49_OUT_SEL_V 0x000001ff +#define GPIO_FUNC49_OUT_SEL_S 0 + +/* GPIO_FUNC50_OUT_SEL_CFG_REG register + * GPIO output function select register + */ + +#define GPIO_FUNC50_OUT_SEL_CFG_REG (DR_REG_GPIO_BASE + 0x61c) + +/* GPIO_FUNC50_OEN_INV_SEL : R/W; bitpos: [11]; default: 0; + * set this bit to invert output enable signal.1:invert.0:not invert. + */ + +#define GPIO_FUNC50_OEN_INV_SEL (BIT(11)) +#define GPIO_FUNC50_OEN_INV_SEL_M (GPIO_FUNC50_OEN_INV_SEL_V << GPIO_FUNC50_OEN_INV_SEL_S) +#define GPIO_FUNC50_OEN_INV_SEL_V 0x00000001 +#define GPIO_FUNC50_OEN_INV_SEL_S 11 + +/* GPIO_FUNC50_OEN_SEL : R/W; bitpos: [10]; default: 0; + * set this bit to select output enable signal.1:use GPIO_ENABLE_REG[n] as + * output enable signal.0:use peripheral output enable signal. + */ + +#define GPIO_FUNC50_OEN_SEL (BIT(10)) +#define GPIO_FUNC50_OEN_SEL_M (GPIO_FUNC50_OEN_SEL_V << GPIO_FUNC50_OEN_SEL_S) +#define GPIO_FUNC50_OEN_SEL_V 0x00000001 +#define GPIO_FUNC50_OEN_SEL_S 10 + +/* GPIO_FUNC50_OUT_INV_SEL : R/W; bitpos: [9]; default: 0; + * set this bit to invert output signal.1:invert.0:not invert. + */ + +#define GPIO_FUNC50_OUT_INV_SEL (BIT(9)) +#define GPIO_FUNC50_OUT_INV_SEL_M (GPIO_FUNC50_OUT_INV_SEL_V << GPIO_FUNC50_OUT_INV_SEL_S) +#define GPIO_FUNC50_OUT_INV_SEL_V 0x00000001 +#define GPIO_FUNC50_OUT_INV_SEL_S 9 + +/* GPIO_FUNC50_OUT_SEL : R/W; bitpos: [8:0]; default: 256; + * The value of the bits: 0<=s<=256. Set the value to select output signal. + * s=0-255: output of GPIO[n] equals input of peripheral[s]. s=256: output + * of GPIO[n] equals GPIO_OUT_REG[n]. + */ + +#define GPIO_FUNC50_OUT_SEL 0x000001ff +#define GPIO_FUNC50_OUT_SEL_M (GPIO_FUNC50_OUT_SEL_V << GPIO_FUNC50_OUT_SEL_S) +#define GPIO_FUNC50_OUT_SEL_V 0x000001ff +#define GPIO_FUNC50_OUT_SEL_S 0 + +/* GPIO_FUNC51_OUT_SEL_CFG_REG register + * GPIO output function select register + */ + +#define GPIO_FUNC51_OUT_SEL_CFG_REG (DR_REG_GPIO_BASE + 0x620) + +/* GPIO_FUNC51_OEN_INV_SEL : R/W; bitpos: [11]; default: 0; + * set this bit to invert output enable signal.1:invert.0:not invert. + */ + +#define GPIO_FUNC51_OEN_INV_SEL (BIT(11)) +#define GPIO_FUNC51_OEN_INV_SEL_M (GPIO_FUNC51_OEN_INV_SEL_V << GPIO_FUNC51_OEN_INV_SEL_S) +#define GPIO_FUNC51_OEN_INV_SEL_V 0x00000001 +#define GPIO_FUNC51_OEN_INV_SEL_S 11 + +/* GPIO_FUNC51_OEN_SEL : R/W; bitpos: [10]; default: 0; + * set this bit to select output enable signal.1:use GPIO_ENABLE_REG[n] as + * output enable signal.0:use peripheral output enable signal. + */ + +#define GPIO_FUNC51_OEN_SEL (BIT(10)) +#define GPIO_FUNC51_OEN_SEL_M (GPIO_FUNC51_OEN_SEL_V << GPIO_FUNC51_OEN_SEL_S) +#define GPIO_FUNC51_OEN_SEL_V 0x00000001 +#define GPIO_FUNC51_OEN_SEL_S 10 + +/* GPIO_FUNC51_OUT_INV_SEL : R/W; bitpos: [9]; default: 0; + * set this bit to invert output signal.1:invert.0:not invert. + */ + +#define GPIO_FUNC51_OUT_INV_SEL (BIT(9)) +#define GPIO_FUNC51_OUT_INV_SEL_M (GPIO_FUNC51_OUT_INV_SEL_V << GPIO_FUNC51_OUT_INV_SEL_S) +#define GPIO_FUNC51_OUT_INV_SEL_V 0x00000001 +#define GPIO_FUNC51_OUT_INV_SEL_S 9 + +/* GPIO_FUNC51_OUT_SEL : R/W; bitpos: [8:0]; default: 256; + * The value of the bits: 0<=s<=256. Set the value to select output signal. + * s=0-255: output of GPIO[n] equals input of peripheral[s]. s=256: output + * of GPIO[n] equals GPIO_OUT_REG[n]. + */ + +#define GPIO_FUNC51_OUT_SEL 0x000001ff +#define GPIO_FUNC51_OUT_SEL_M (GPIO_FUNC51_OUT_SEL_V << GPIO_FUNC51_OUT_SEL_S) +#define GPIO_FUNC51_OUT_SEL_V 0x000001ff +#define GPIO_FUNC51_OUT_SEL_S 0 + +/* GPIO_FUNC52_OUT_SEL_CFG_REG register + * GPIO output function select register + */ + +#define GPIO_FUNC52_OUT_SEL_CFG_REG (DR_REG_GPIO_BASE + 0x624) + +/* GPIO_FUNC52_OEN_INV_SEL : R/W; bitpos: [11]; default: 0; + * set this bit to invert output enable signal.1:invert.0:not invert. + */ + +#define GPIO_FUNC52_OEN_INV_SEL (BIT(11)) +#define GPIO_FUNC52_OEN_INV_SEL_M (GPIO_FUNC52_OEN_INV_SEL_V << GPIO_FUNC52_OEN_INV_SEL_S) +#define GPIO_FUNC52_OEN_INV_SEL_V 0x00000001 +#define GPIO_FUNC52_OEN_INV_SEL_S 11 + +/* GPIO_FUNC52_OEN_SEL : R/W; bitpos: [10]; default: 0; + * set this bit to select output enable signal.1:use GPIO_ENABLE_REG[n] as + * output enable signal.0:use peripheral output enable signal. + */ + +#define GPIO_FUNC52_OEN_SEL (BIT(10)) +#define GPIO_FUNC52_OEN_SEL_M (GPIO_FUNC52_OEN_SEL_V << GPIO_FUNC52_OEN_SEL_S) +#define GPIO_FUNC52_OEN_SEL_V 0x00000001 +#define GPIO_FUNC52_OEN_SEL_S 10 + +/* GPIO_FUNC52_OUT_INV_SEL : R/W; bitpos: [9]; default: 0; + * set this bit to invert output signal.1:invert.0:not invert. + */ + +#define GPIO_FUNC52_OUT_INV_SEL (BIT(9)) +#define GPIO_FUNC52_OUT_INV_SEL_M (GPIO_FUNC52_OUT_INV_SEL_V << GPIO_FUNC52_OUT_INV_SEL_S) +#define GPIO_FUNC52_OUT_INV_SEL_V 0x00000001 +#define GPIO_FUNC52_OUT_INV_SEL_S 9 + +/* GPIO_FUNC52_OUT_SEL : R/W; bitpos: [8:0]; default: 256; + * The value of the bits: 0<=s<=256. Set the value to select output signal. + * s=0-255: output of GPIO[n] equals input of peripheral[s]. s=256: output + * of GPIO[n] equals GPIO_OUT_REG[n]. + */ + +#define GPIO_FUNC52_OUT_SEL 0x000001ff +#define GPIO_FUNC52_OUT_SEL_M (GPIO_FUNC52_OUT_SEL_V << GPIO_FUNC52_OUT_SEL_S) +#define GPIO_FUNC52_OUT_SEL_V 0x000001ff +#define GPIO_FUNC52_OUT_SEL_S 0 + +/* GPIO_FUNC53_OUT_SEL_CFG_REG register + * GPIO output function select register + */ + +#define GPIO_FUNC53_OUT_SEL_CFG_REG (DR_REG_GPIO_BASE + 0x628) + +/* GPIO_FUNC53_OEN_INV_SEL : R/W; bitpos: [11]; default: 0; + * set this bit to invert output enable signal.1:invert.0:not invert. + */ + +#define GPIO_FUNC53_OEN_INV_SEL (BIT(11)) +#define GPIO_FUNC53_OEN_INV_SEL_M (GPIO_FUNC53_OEN_INV_SEL_V << GPIO_FUNC53_OEN_INV_SEL_S) +#define GPIO_FUNC53_OEN_INV_SEL_V 0x00000001 +#define GPIO_FUNC53_OEN_INV_SEL_S 11 + +/* GPIO_FUNC53_OEN_SEL : R/W; bitpos: [10]; default: 0; + * set this bit to select output enable signal.1:use GPIO_ENABLE_REG[n] as + * output enable signal.0:use peripheral output enable signal. + */ + +#define GPIO_FUNC53_OEN_SEL (BIT(10)) +#define GPIO_FUNC53_OEN_SEL_M (GPIO_FUNC53_OEN_SEL_V << GPIO_FUNC53_OEN_SEL_S) +#define GPIO_FUNC53_OEN_SEL_V 0x00000001 +#define GPIO_FUNC53_OEN_SEL_S 10 + +/* GPIO_FUNC53_OUT_INV_SEL : R/W; bitpos: [9]; default: 0; + * set this bit to invert output signal.1:invert.0:not invert. + */ + +#define GPIO_FUNC53_OUT_INV_SEL (BIT(9)) +#define GPIO_FUNC53_OUT_INV_SEL_M (GPIO_FUNC53_OUT_INV_SEL_V << GPIO_FUNC53_OUT_INV_SEL_S) +#define GPIO_FUNC53_OUT_INV_SEL_V 0x00000001 +#define GPIO_FUNC53_OUT_INV_SEL_S 9 + +/* GPIO_FUNC53_OUT_SEL : R/W; bitpos: [8:0]; default: 256; + * The value of the bits: 0<=s<=256. Set the value to select output signal. + * s=0-255: output of GPIO[n] equals input of peripheral[s]. s=256: output + * of GPIO[n] equals GPIO_OUT_REG[n]. + */ + +#define GPIO_FUNC53_OUT_SEL 0x000001ff +#define GPIO_FUNC53_OUT_SEL_M (GPIO_FUNC53_OUT_SEL_V << GPIO_FUNC53_OUT_SEL_S) +#define GPIO_FUNC53_OUT_SEL_V 0x000001ff +#define GPIO_FUNC53_OUT_SEL_S 0 + +/* GPIO_CLOCK_GATE_REG register + * GPIO clock gate register + */ + +#define GPIO_CLOCK_GATE_REG (DR_REG_GPIO_BASE + 0x62c) + +/* GPIO_CLK_EN : R/W; bitpos: [0]; default: 1; + * set this bit to enable GPIO clock gate + */ + +#define GPIO_CLK_EN (BIT(0)) +#define GPIO_CLK_EN_M (GPIO_CLK_EN_V << GPIO_CLK_EN_S) +#define GPIO_CLK_EN_V 0x00000001 +#define GPIO_CLK_EN_S 0 + +/* GPIO_REG_DATE_REG register + * GPIO version register + */ + +#define GPIO_REG_DATE_REG (DR_REG_GPIO_BASE + 0x6fc) + +/* GPIO_REG_DATE : R/W; bitpos: [27:0]; default: 26243136; + * version register + */ + +#define GPIO_REG_DATE 0x0fffffff +#define GPIO_REG_DATE_M (GPIO_REG_DATE_V << GPIO_REG_DATE_S) +#define GPIO_REG_DATE_V 0x0fffffff +#define GPIO_REG_DATE_S 0 + +#define GPIO_PIN_PAD_DRIVER_S 2 + +#endif /* __ARCH_XTENSA_SRC_ESP32S3_HARDWARE_ESP32S3_GPIO_H */ diff --git a/arch/xtensa/src/esp32s3/hardware/esp32s3_gpio_sigmap.h b/arch/xtensa/src/esp32s3/hardware/esp32s3_gpio_sigmap.h new file mode 100644 index 0000000000..5c59d55d54 --- /dev/null +++ b/arch/xtensa/src/esp32s3/hardware/esp32s3_gpio_sigmap.h @@ -0,0 +1,447 @@ +/**************************************************************************** + * arch/xtensa/src/esp32s3/hardware/esp32s3_gpio_sigmap.h + * + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. The + * ASF licenses this file to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance with the + * License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT + * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the + * License for the specific language governing permissions and limitations + * under the License. + * + ****************************************************************************/ + +#ifndef __ARCH_XTENSA_SRC_ESP32S3_HARDWARE_ESP32S3_GPIO_SIGMAP_H +#define __ARCH_XTENSA_SRC_ESP32S3_HARDWARE_ESP32S3_GPIO_SIGMAP_H + +/**************************************************************************** + * Included Files + ****************************************************************************/ +#define SPIQ_IN_IDX 0 +#define SPIQ_OUT_IDX 0 +#define SPID_IN_IDX 1 +#define SPID_OUT_IDX 1 +#define SPIHD_IN_IDX 2 +#define SPIHD_OUT_IDX 2 +#define SPIWP_IN_IDX 3 +#define SPIWP_OUT_IDX 3 +#define SPICLK_OUT_IDX 4 +#define SPICS0_OUT_IDX 5 +#define SPICS1_OUT_IDX 6 +#define SPID4_IN_IDX 7 +#define SPID4_OUT_IDX 7 +#define SPID5_IN_IDX 8 +#define SPID5_OUT_IDX 8 +#define SPID6_IN_IDX 9 +#define SPID6_OUT_IDX 9 +#define SPID7_IN_IDX 10 +#define SPID7_OUT_IDX 10 +#define SPIDQS_IN_IDX 11 +#define SPIDQS_OUT_IDX 11 +#define U0RXD_IN_IDX 12 +#define U0TXD_OUT_IDX 12 +#define U0CTS_IN_IDX 13 +#define U0RTS_OUT_IDX 13 +#define U0DSR_IN_IDX 14 +#define U0DTR_OUT_IDX 14 +#define U1RXD_IN_IDX 15 +#define U1TXD_OUT_IDX 15 +#define U1CTS_IN_IDX 16 +#define U1RTS_OUT_IDX 16 +#define U1DSR_IN_IDX 17 +#define U1DTR_OUT_IDX 17 +#define U2RXD_IN_IDX 18 +#define U2TXD_OUT_IDX 18 +#define U2CTS_IN_IDX 19 +#define U2RTS_OUT_IDX 19 +#define U2DSR_IN_IDX 20 +#define U2DTR_OUT_IDX 20 +#define I2S1_MCLK_IN_IDX 21 +#define I2S1_MCLK_OUT_IDX 21 +#define I2S0O_BCK_IN_IDX 22 +#define I2S0O_BCK_OUT_IDX 22 +#define I2S0_MCLK_IN_IDX 23 +#define I2S0_MCLK_OUT_IDX 23 +#define I2S0O_WS_IN_IDX 24 +#define I2S0O_WS_OUT_IDX 24 +#define I2S0I_SD_IN_IDX 25 +#define I2S0O_SD_OUT_IDX 25 +#define I2S0I_BCK_IN_IDX 26 +#define I2S0I_BCK_OUT_IDX 26 +#define I2S0I_WS_IN_IDX 27 +#define I2S0I_WS_OUT_IDX 27 +#define I2S1O_BCK_IN_IDX 28 +#define I2S1O_BCK_OUT_IDX 28 +#define I2S1O_WS_IN_IDX 29 +#define I2S1O_WS_OUT_IDX 29 +#define I2S1I_SD_IN_IDX 30 +#define I2S1O_SD_OUT_IDX 30 +#define I2S1I_BCK_IN_IDX 31 +#define I2S1I_BCK_OUT_IDX 31 +#define I2S1I_WS_IN_IDX 32 +#define I2S1I_WS_OUT_IDX 32 +#define PCNT_SIG_CH0_IN0_IDX 33 +#define GPIO_WLAN_PRIO_IDX 33 +#define PCNT_SIG_CH1_IN0_IDX 34 +#define GPIO_WLAN_ACTIVE_IDX 34 +#define PCNT_CTRL_CH0_IN0_IDX 35 +#define BB_DIAG0_IDX 35 +#define PCNT_CTRL_CH1_IN0_IDX 36 +#define BB_DIAG1_IDX 36 +#define PCNT_SIG_CH0_IN1_IDX 37 +#define BB_DIAG2_IDX 37 +#define PCNT_SIG_CH1_IN1_IDX 38 +#define BB_DIAG3_IDX 38 +#define PCNT_CTRL_CH0_IN1_IDX 39 +#define BB_DIAG4_IDX 39 +#define PCNT_CTRL_CH1_IN1_IDX 40 +#define BB_DIAG5_IDX 40 +#define PCNT_SIG_CH0_IN2_IDX 41 +#define BB_DIAG6_IDX 41 +#define PCNT_SIG_CH1_IN2_IDX 42 +#define BB_DIAG7_IDX 42 +#define PCNT_CTRL_CH0_IN2_IDX 43 +#define BB_DIAG8_IDX 43 +#define PCNT_CTRL_CH1_IN2_IDX 44 +#define BB_DIAG9_IDX 44 +#define PCNT_SIG_CH0_IN3_IDX 45 +#define BB_DIAG10_IDX 45 +#define PCNT_SIG_CH1_IN3_IDX 46 +#define BB_DIAG11_IDX 46 +#define PCNT_CTRL_CH0_IN3_IDX 47 +#define BB_DIAG12_IDX 47 +#define PCNT_CTRL_CH1_IN3_IDX 48 +#define BB_DIAG13_IDX 48 +#define GPIO_BT_ACTIVE_IDX 49 +#define BB_DIAG14_IDX 49 +#define GPIO_BT_PRIORITY_IDX 50 +#define BB_DIAG15_IDX 50 +#define I2S0I_SD1_IN_IDX 51 +#define BB_DIAG16_IDX 51 +#define I2S0I_SD2_IN_IDX 52 +#define BB_DIAG17_IDX 52 +#define I2S0I_SD3_IN_IDX 53 +#define BB_DIAG18_IDX 53 +#define BB_DIAG19_IDX 54 +#define USB_EXTPHY_VP_IDX 55 +#define USB_EXTPHY_OEN_IDX 55 +#define USB_EXTPHY_VM_IDX 56 +#define USB_EXTPHY_SPEED_IDX 56 +#define USB_EXTPHY_RCV_IDX 57 +#define USB_EXTPHY_VPO_IDX 57 +#define USB_OTG_IDDIG_IN_IDX 58 +#define USB_EXTPHY_VMO_IDX 58 +#define USB_OTG_AVALID_IN_IDX 59 +#define USB_EXTPHY_SUSPND_IDX 59 +#define USB_SRP_BVALID_IN_IDX 60 +#define USB_OTG_IDPULLUP_IDX 60 +#define USB_OTG_VBUSVALID_IN_IDX 61 +#define USB_OTG_DPPULLDOWN_IDX 61 +#define USB_SRP_SESSEND_IN_IDX 62 +#define USB_OTG_DMPULLDOWN_IDX 62 +#define USB_OTG_DRVVBUS_IDX 63 +#define USB_SRP_CHRGVBUS_IDX 64 +#define USB_SRP_DISCHRGVBUS_IDX 65 +#define SPI3_CLK_IN_IDX 66 +#define SPI3_CLK_OUT_IDX 66 +#define SPI3_Q_IN_IDX 67 +#define SPI3_Q_OUT_IDX 67 +#define SPI3_D_IN_IDX 68 +#define SPI3_D_OUT_IDX 68 +#define SPI3_HD_IN_IDX 69 +#define SPI3_HD_OUT_IDX 69 +#define SPI3_WP_IN_IDX 70 +#define SPI3_WP_OUT_IDX 70 +#define SPI3_CS0_IN_IDX 71 +#define SPI3_CS0_OUT_IDX 71 +#define SPI3_CS1_OUT_IDX 72 +#define EXT_ADC_START_IDX 73 +#define LEDC_LS_SIG_OUT0_IDX 73 +#define LEDC_LS_SIG_OUT1_IDX 74 +#define LEDC_LS_SIG_OUT2_IDX 75 +#define LEDC_LS_SIG_OUT3_IDX 76 +#define LEDC_LS_SIG_OUT4_IDX 77 +#define LEDC_LS_SIG_OUT5_IDX 78 +#define LEDC_LS_SIG_OUT6_IDX 79 +#define LEDC_LS_SIG_OUT7_IDX 80 +#define RMT_SIG_IN0_IDX 81 +#define RMT_SIG_OUT0_IDX 81 +#define RMT_SIG_IN1_IDX 82 +#define RMT_SIG_OUT1_IDX 82 +#define RMT_SIG_IN2_IDX 83 +#define RMT_SIG_OUT2_IDX 83 +#define RMT_SIG_IN3_IDX 84 +#define RMT_SIG_OUT3_IDX 84 +#define I2CEXT0_SCL_IN_IDX 89 +#define I2CEXT0_SCL_OUT_IDX 89 +#define I2CEXT0_SDA_IN_IDX 90 +#define I2CEXT0_SDA_OUT_IDX 90 +#define I2CEXT1_SCL_IN_IDX 91 +#define I2CEXT1_SCL_OUT_IDX 91 +#define I2CEXT1_SDA_IN_IDX 92 +#define I2CEXT1_SDA_OUT_IDX 92 +#define GPIO_SD0_OUT_IDX 93 +#define GPIO_SD1_OUT_IDX 94 +#define GPIO_SD2_OUT_IDX 95 +#define GPIO_SD3_OUT_IDX 96 +#define GPIO_SD4_OUT_IDX 97 +#define GPIO_SD5_OUT_IDX 98 +#define GPIO_SD6_OUT_IDX 99 +#define GPIO_SD7_OUT_IDX 100 +#define FSPICLK_IN_IDX 101 +#define FSPICLK_OUT_IDX 101 +#define FSPIQ_IN_IDX 102 +#define FSPIQ_OUT_IDX 102 +#define FSPID_IN_IDX 103 +#define FSPID_OUT_IDX 103 +#define FSPIHD_IN_IDX 104 +#define FSPIHD_OUT_IDX 104 +#define FSPIWP_IN_IDX 105 +#define FSPIWP_OUT_IDX 105 +#define FSPIIO4_IN_IDX 106 +#define FSPIIO4_OUT_IDX 106 +#define FSPIIO5_IN_IDX 107 +#define FSPIIO5_OUT_IDX 107 +#define FSPIIO6_IN_IDX 108 +#define FSPIIO6_OUT_IDX 108 +#define FSPIIO7_IN_IDX 109 +#define FSPIIO7_OUT_IDX 109 +#define FSPICS0_IN_IDX 110 +#define FSPICS0_OUT_IDX 110 +#define FSPICS1_OUT_IDX 111 +#define FSPICS2_OUT_IDX 112 +#define FSPICS3_OUT_IDX 113 +#define FSPICS4_OUT_IDX 114 +#define FSPICS5_OUT_IDX 115 +#define TWAI_RX_IDX 116 +#define TWAI_TX_IDX 116 +#define TWAI_BUS_OFF_ON_IDX 117 +#define TWAI_CLKOUT_IDX 118 +#define SUBSPICLK_OUT_IDX 119 +#define SUBSPIQ_IN_IDX 120 +#define SUBSPIQ_OUT_IDX 120 +#define SUBSPID_IN_IDX 121 +#define SUBSPID_OUT_IDX 121 +#define SUBSPIHD_IN_IDX 122 +#define SUBSPIHD_OUT_IDX 122 +#define SUBSPIWP_IN_IDX 123 +#define SUBSPIWP_OUT_IDX 123 +#define SUBSPICS0_OUT_IDX 124 +#define SUBSPICS1_OUT_IDX 125 +#define FSPIDQS_OUT_IDX 126 +#define SPI3_CS2_OUT_IDX 127 +#define LCD_CS_IDX 132 +#define CAM_DATA_IN0_IDX 133 +#define LCD_DATA_OUT0_IDX 133 +#define CAM_DATA_IN1_IDX 134 +#define LCD_DATA_OUT1_IDX 134 +#define CAM_DATA_IN2_IDX 135 +#define LCD_DATA_OUT2_IDX 135 +#define CAM_DATA_IN3_IDX 136 +#define LCD_DATA_OUT3_IDX 136 +#define CAM_DATA_IN4_IDX 137 +#define LCD_DATA_OUT4_IDX 137 +#define CAM_DATA_IN5_IDX 138 +#define LCD_DATA_OUT5_IDX 138 +#define CAM_DATA_IN6_IDX 139 +#define LCD_DATA_OUT6_IDX 139 +#define CAM_DATA_IN7_IDX 140 +#define LCD_DATA_OUT7_IDX 140 +#define CAM_DATA_IN8_IDX 141 +#define LCD_DATA_OUT8_IDX 141 +#define CAM_DATA_IN9_IDX 142 +#define LCD_DATA_OUT9_IDX 142 +#define CAM_DATA_IN10_IDX 143 +#define LCD_DATA_OUT10_IDX 143 +#define CAM_DATA_IN11_IDX 144 +#define LCD_DATA_OUT11_IDX 144 +#define CAM_DATA_IN12_IDX 145 +#define LCD_DATA_OUT12_IDX 145 +#define CAM_DATA_IN13_IDX 146 +#define LCD_DATA_OUT13_IDX 146 +#define CAM_DATA_IN14_IDX 147 +#define LCD_DATA_OUT14_IDX 147 +#define CAM_DATA_IN15_IDX 148 +#define LCD_DATA_OUT15_IDX 148 +#define CAM_PCLK_IDX 149 +#define CAM_CLK_IDX 149 +#define CAM_H_ENABLE_IDX 150 +#define LCD_H_ENABLE_IDX 150 +#define CAM_H_SYNC_IDX 151 +#define LCD_H_SYNC_IDX 151 +#define CAM_V_SYNC_IDX 152 +#define LCD_V_SYNC_IDX 152 +#define LCD_DC_IDX 153 +#define LCD_PCLK_IDX 154 +#define SUBSPID4_IN_IDX 155 +#define SUBSPID4_OUT_IDX 155 +#define SUBSPID5_IN_IDX 156 +#define SUBSPID5_OUT_IDX 156 +#define SUBSPID6_IN_IDX 157 +#define SUBSPID6_OUT_IDX 157 +#define SUBSPID7_IN_IDX 158 +#define SUBSPID7_OUT_IDX 158 +#define SUBSPIDQS_IN_IDX 159 +#define SUBSPIDQS_OUT_IDX 159 +#define PWM0_SYNC0_IN_IDX 160 +#define PWM0_OUT0A_IDX 160 +#define PWM0_SYNC1_IN_IDX 161 +#define PWM0_OUT0B_IDX 161 +#define PWM0_SYNC2_IN_IDX 162 +#define PWM0_OUT1A_IDX 162 +#define PWM0_F0_IN_IDX 163 +#define PWM0_OUT1B_IDX 163 +#define PWM0_F1_IN_IDX 164 +#define PWM0_OUT2A_IDX 164 +#define PWM0_F2_IN_IDX 165 +#define PWM0_OUT2B_IDX 165 +#define PWM0_CAP0_IN_IDX 166 +#define PWM1_OUT0A_IDX 166 +#define PWM0_CAP1_IN_IDX 167 +#define PWM1_OUT0B_IDX 167 +#define PWM0_CAP2_IN_IDX 168 +#define PWM1_OUT1A_IDX 168 +#define PWM1_SYNC0_IN_IDX 169 +#define PWM1_OUT1B_IDX 169 +#define PWM1_SYNC1_IN_IDX 170 +#define PWM1_OUT2A_IDX 170 +#define PWM1_SYNC2_IN_IDX 171 +#define PWM1_OUT2B_IDX 171 +#define PWM1_F0_IN_IDX 172 +#define SDHOST_CCLK_OUT_1_IDX 172 +#define PWM1_F1_IN_IDX 173 +#define SDHOST_CCLK_OUT_2_IDX 173 +#define PWM1_F2_IN_IDX 174 +#define SDHOST_RST_N_1_IDX 174 +#define PWM1_CAP0_IN_IDX 175 +#define SDHOST_RST_N_2_IDX 175 +#define PWM1_CAP1_IN_IDX 176 +#define SDHOST_CCMD_OD_PULLUP_EN_N_IDX176 +#define PWM1_CAP2_IN_IDX 177 +#define SDIO_TOHOST_INT_OUT_IDX 177 +#define SDHOST_CCMD_IN_1_IDX 178 +#define SDHOST_CCMD_OUT_1_IDX 178 +#define SDHOST_CCMD_IN_2_IDX 179 +#define SDHOST_CCMD_OUT_2_IDX 179 +#define SDHOST_CDATA_IN_10_IDX 180 +#define SDHOST_CDATA_OUT_10_IDX 180 +#define SDHOST_CDATA_IN_11_IDX 181 +#define SDHOST_CDATA_OUT_11_IDX 181 +#define SDHOST_CDATA_IN_12_IDX 182 +#define SDHOST_CDATA_OUT_12_IDX 182 +#define SDHOST_CDATA_IN_13_IDX 183 +#define SDHOST_CDATA_OUT_13_IDX 183 +#define SDHOST_CDATA_IN_14_IDX 184 +#define SDHOST_CDATA_OUT_14_IDX 184 +#define SDHOST_CDATA_IN_15_IDX 185 +#define SDHOST_CDATA_OUT_15_IDX 185 +#define SDHOST_CDATA_IN_16_IDX 186 +#define SDHOST_CDATA_OUT_16_IDX 186 +#define SDHOST_CDATA_IN_17_IDX 187 +#define SDHOST_CDATA_OUT_17_IDX 187 +#define PCMFSYNC_IN_IDX 188 +#define BT_AUDIO0_IRQ_IDX 188 +#define PCMCLK_IN_IDX 189 +#define BT_AUDIO1_IRQ_IDX 189 +#define PCMDIN_IDX 190 +#define BT_AUDIO2_IRQ_IDX 190 +#define RW_WAKEUP_REQ_IDX 191 +#define BLE_AUDIO0_IRQ_IDX 191 +#define SDHOST_DATA_STROBE_1_IDX 192 +#define BLE_AUDIO1_IRQ_IDX 192 +#define SDHOST_DATA_STROBE_2_IDX 193 +#define BLE_AUDIO2_IRQ_IDX 193 +#define SDHOST_CARD_DETECT_N_1_IDX 194 +#define PCMFSYNC_OUT_IDX 194 +#define SDHOST_CARD_DETECT_N_2_IDX 195 +#define PCMCLK_OUT_IDX 195 +#define SDHOST_CARD_WRITE_PRT_1_IDX 196 +#define PCMDOUT_IDX 196 +#define SDHOST_CARD_WRITE_PRT_2_IDX 197 +#define BLE_AUDIO_SYNC0_P_IDX 197 +#define SDHOST_CARD_INT_N_1_IDX 198 +#define BLE_AUDIO_SYNC1_P_IDX 198 +#define SDHOST_CARD_INT_N_2_IDX 199 +#define BLE_AUDIO_SYNC2_P_IDX 199 +#define ANT_SEL0_IDX 200 +#define ANT_SEL1_IDX 201 +#define ANT_SEL2_IDX 202 +#define ANT_SEL3_IDX 203 +#define ANT_SEL4_IDX 204 +#define ANT_SEL5_IDX 205 +#define ANT_SEL6_IDX 206 +#define ANT_SEL7_IDX 207 +#define SIG_IN_FUNC_223_IDX 208 +#define SIG_IN_FUNC223_IDX 208 +#define SIG_IN_FUNC_224_IDX 209 +#define SIG_IN_FUNC224_IDX 209 +#define SIG_IN_FUNC_225_IDX 210 +#define SIG_IN_FUNC225_IDX 210 +#define SIG_IN_FUNC_226_IDX 211 +#define SIG_IN_FUNC226_IDX 211 +#define SIG_IN_FUNC_227_IDX 212 +#define SIG_IN_FUNC227_IDX 212 +#define SDHOST_CDATA_IN_20_IDX 213 +#define SDHOST_CDATA_OUT_20_IDX 213 +#define SDHOST_CDATA_IN_21_IDX 214 +#define SDHOST_CDATA_OUT_21_IDX 214 +#define SDHOST_CDATA_IN_22_IDX 215 +#define SDHOST_CDATA_OUT_22_IDX 215 +#define SDHOST_CDATA_IN_23_IDX 216 +#define SDHOST_CDATA_OUT_23_IDX 216 +#define SDHOST_CDATA_IN_24_IDX 217 +#define SDHOST_CDATA_OUT_24_IDX 217 +#define SDHOST_CDATA_IN_25_IDX 218 +#define SDHOST_CDATA_OUT_25_IDX 218 +#define SDHOST_CDATA_IN_26_IDX 219 +#define SDHOST_CDATA_OUT_26_IDX 219 +#define SDHOST_CDATA_IN_27_IDX 220 +#define SDHOST_CDATA_OUT_27_IDX 220 +#define PRO_ALONEGPIO_IN0_IDX 221 +#define PRO_ALONEGPIO_OUT0_IDX 221 +#define PRO_ALONEGPIO_IN1_IDX 222 +#define PRO_ALONEGPIO_OUT1_IDX 222 +#define PRO_ALONEGPIO_IN2_IDX 223 +#define PRO_ALONEGPIO_OUT2_IDX 223 +#define PRO_ALONEGPIO_IN3_IDX 224 +#define PRO_ALONEGPIO_OUT3_IDX 224 +#define PRO_ALONEGPIO_IN4_IDX 225 +#define PRO_ALONEGPIO_OUT4_IDX 225 +#define PRO_ALONEGPIO_IN5_IDX 226 +#define PRO_ALONEGPIO_OUT5_IDX 226 +#define PRO_ALONEGPIO_IN6_IDX 227 +#define PRO_ALONEGPIO_OUT6_IDX 227 +#define PRO_ALONEGPIO_IN7_IDX 228 +#define PRO_ALONEGPIO_OUT7_IDX 228 +#define SYNCERR_IDX 229 +#define SYNCFOUND_FLAG_IDX 230 +#define EVT_CNTL_IMMEDIATE_ABORT_IDX 231 +#define LINKLBL_IDX 232 +#define DATA_EN_IDX 233 +#define DATA_IDX 234 +#define PKT_TX_ON_IDX 235 +#define PKT_RX_ON_IDX 236 +#define RW_TX_ON_IDX 237 +#define RW_RX_ON_IDX 238 +#define EVT_REQ_P_IDX 239 +#define EVT_STOP_P_IDX 240 +#define BT_MODE_ON_IDX 241 +#define GPIO_LC_DIAG0_IDX 242 +#define GPIO_LC_DIAG1_IDX 243 +#define GPIO_LC_DIAG2_IDX 244 +#define CH_IDX_IDX 245 +#define RX_WINDOW_IDX 246 +#define UPDATE_RX_IDX 247 +#define RX_STATUS_IDX 248 +#define CLK_GPIO_IDX 249 +#define NBT_BLE_IDX 250 +#define SIG_GPIO_OUT_IDX 256 + +#endif /* __ARCH_XTENSA_SRC_ESP32S3_HARDWARE_ESP32S3_GPIO_SIGMAP_H */ diff --git a/arch/xtensa/src/esp32s3/hardware/esp32s3_interrupt_core0.h b/arch/xtensa/src/esp32s3/hardware/esp32s3_interrupt_core0.h new file mode 100644 index 0000000000..909074a7e6 --- /dev/null +++ b/arch/xtensa/src/esp32s3/hardware/esp32s3_interrupt_core0.h @@ -0,0 +1,1727 @@ +/**************************************************************************** + * arch/xtensa/src/esp32s3/hardware/esp32s3_interrupt_core0.h + * + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. The + * ASF licenses this file to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance with the + * License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT + * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the + * License for the specific language governing permissions and limitations + * under the License. + * + ****************************************************************************/ + +#ifndef __ARCH_XTENSA_SRC_ESP32S3_HARDWARE_ESP32S3_INTERRUPT_CORE0_H +#define __ARCH_XTENSA_SRC_ESP32S3_HARDWARE_ESP32S3_INTERRUPT_CORE0_H + +/**************************************************************************** + * Included Files + ****************************************************************************/ + +#include "esp32s3_soc.h" + +/**************************************************************************** + * Pre-processor Definitions + ****************************************************************************/ + +#define DR_REG_INTERRUPT_CORE0_BASE DR_REG_INTERRUPT_BASE + +/* INTERRUPT_CORE0_MAC_INTR_MAP_REG register + * mac interrupt configuration register + */ + +#define INTERRUPT_CORE0_MAC_INTR_MAP_REG (DR_REG_INTERRUPT_CORE0_BASE + 0x0) + +/* INTERRUPT_CORE0_MAC_INTR_MAP : R/W; bitpos: [4:0]; default: 16; + * this register used to map mac interrupt to one of core0's external + * interrupt + */ + +#define INTERRUPT_CORE0_MAC_INTR_MAP 0x0000001f +#define INTERRUPT_CORE0_MAC_INTR_MAP_M (INTERRUPT_CORE0_MAC_INTR_MAP_V << INTERRUPT_CORE0_MAC_INTR_MAP_S) +#define INTERRUPT_CORE0_MAC_INTR_MAP_V 0x0000001f +#define INTERRUPT_CORE0_MAC_INTR_MAP_S 0 + +/* INTERRUPT_CORE0_MAC_NMI_MAP_REG register + * mac_nmi interrupt configuration register + */ + +#define INTERRUPT_CORE0_MAC_NMI_MAP_REG (DR_REG_INTERRUPT_CORE0_BASE + 0x4) + +/* INTERRUPT_CORE0_MAC_NMI_MAP : R/W; bitpos: [4:0]; default: 16; + * this register used to map_nmi interrupt to one of core0's external + * interrupt + */ + +#define INTERRUPT_CORE0_MAC_NMI_MAP 0x0000001f +#define INTERRUPT_CORE0_MAC_NMI_MAP_M (INTERRUPT_CORE0_MAC_NMI_MAP_V << INTERRUPT_CORE0_MAC_NMI_MAP_S) +#define INTERRUPT_CORE0_MAC_NMI_MAP_V 0x0000001f +#define INTERRUPT_CORE0_MAC_NMI_MAP_S 0 + +/* INTERRUPT_CORE0_PWR_INTR_MAP_REG register + * pwr interrupt configuration register + */ + +#define INTERRUPT_CORE0_PWR_INTR_MAP_REG (DR_REG_INTERRUPT_CORE0_BASE + 0x8) + +/* INTERRUPT_CORE0_PWR_INTR_MAP : R/W; bitpos: [4:0]; default: 16; + * this register used to map pwr interrupt to one of core0's external + * interrupt + */ + +#define INTERRUPT_CORE0_PWR_INTR_MAP 0x0000001f +#define INTERRUPT_CORE0_PWR_INTR_MAP_M (INTERRUPT_CORE0_PWR_INTR_MAP_V << INTERRUPT_CORE0_PWR_INTR_MAP_S) +#define INTERRUPT_CORE0_PWR_INTR_MAP_V 0x0000001f +#define INTERRUPT_CORE0_PWR_INTR_MAP_S 0 + +/* INTERRUPT_CORE0_BB_INT_MAP_REG register + * bb interrupt configuration register + */ + +#define INTERRUPT_CORE0_BB_INT_MAP_REG (DR_REG_INTERRUPT_CORE0_BASE + 0xc) + +/* INTERRUPT_CORE0_BB_INT_MAP : R/W; bitpos: [4:0]; default: 16; + * this register used to map bb interrupt to one of core0's external + * interrupt + */ + +#define INTERRUPT_CORE0_BB_INT_MAP 0x0000001f +#define INTERRUPT_CORE0_BB_INT_MAP_M (INTERRUPT_CORE0_BB_INT_MAP_V << INTERRUPT_CORE0_BB_INT_MAP_S) +#define INTERRUPT_CORE0_BB_INT_MAP_V 0x0000001f +#define INTERRUPT_CORE0_BB_INT_MAP_S 0 + +/* INTERRUPT_CORE0_BT_MAC_INT_MAP_REG register + * bb_mac interrupt configuration register + */ + +#define INTERRUPT_CORE0_BT_MAC_INT_MAP_REG (DR_REG_INTERRUPT_CORE0_BASE + 0x10) + +/* INTERRUPT_CORE0_BT_MAC_INT_MAP : R/W; bitpos: [4:0]; default: 16; + * this register used to map bb_mac interrupt to one of core0's external + * interrupt + */ + +#define INTERRUPT_CORE0_BT_MAC_INT_MAP 0x0000001f +#define INTERRUPT_CORE0_BT_MAC_INT_MAP_M (INTERRUPT_CORE0_BT_MAC_INT_MAP_V << INTERRUPT_CORE0_BT_MAC_INT_MAP_S) +#define INTERRUPT_CORE0_BT_MAC_INT_MAP_V 0x0000001f +#define INTERRUPT_CORE0_BT_MAC_INT_MAP_S 0 + +/* INTERRUPT_CORE0_BT_BB_INT_MAP_REG register + * bt_bb interrupt configuration register + */ + +#define INTERRUPT_CORE0_BT_BB_INT_MAP_REG (DR_REG_INTERRUPT_CORE0_BASE + 0x14) + +/* INTERRUPT_CORE0_BT_BB_INT_MAP : R/W; bitpos: [4:0]; default: 16; + * this register used to map bt_bb interrupt to one of core0's external + * interrupt + */ + +#define INTERRUPT_CORE0_BT_BB_INT_MAP 0x0000001f +#define INTERRUPT_CORE0_BT_BB_INT_MAP_M (INTERRUPT_CORE0_BT_BB_INT_MAP_V << INTERRUPT_CORE0_BT_BB_INT_MAP_S) +#define INTERRUPT_CORE0_BT_BB_INT_MAP_V 0x0000001f +#define INTERRUPT_CORE0_BT_BB_INT_MAP_S 0 + +/* INTERRUPT_CORE0_BT_BB_NMI_MAP_REG register + * bt_bb_nmi interrupt configuration register + */ + +#define INTERRUPT_CORE0_BT_BB_NMI_MAP_REG (DR_REG_INTERRUPT_CORE0_BASE + 0x18) + +/* INTERRUPT_CORE0_BT_BB_NMI_MAP : R/W; bitpos: [4:0]; default: 16; + * this register used to map bb_bt_nmi interrupt to one of core0's external + * interrupt + */ + +#define INTERRUPT_CORE0_BT_BB_NMI_MAP 0x0000001f +#define INTERRUPT_CORE0_BT_BB_NMI_MAP_M (INTERRUPT_CORE0_BT_BB_NMI_MAP_V << INTERRUPT_CORE0_BT_BB_NMI_MAP_S) +#define INTERRUPT_CORE0_BT_BB_NMI_MAP_V 0x0000001f +#define INTERRUPT_CORE0_BT_BB_NMI_MAP_S 0 + +/* INTERRUPT_CORE0_RWBT_IRQ_MAP_REG register + * rwbt_irq interrupt configuration register + */ + +#define INTERRUPT_CORE0_RWBT_IRQ_MAP_REG (DR_REG_INTERRUPT_CORE0_BASE + 0x1c) + +/* INTERRUPT_CORE0_RWBT_IRQ_MAP : R/W; bitpos: [4:0]; default: 16; + * this register used to map rwbt_irq interrupt to one of core0's external + * interrupt + */ + +#define INTERRUPT_CORE0_RWBT_IRQ_MAP 0x0000001f +#define INTERRUPT_CORE0_RWBT_IRQ_MAP_M (INTERRUPT_CORE0_RWBT_IRQ_MAP_V << INTERRUPT_CORE0_RWBT_IRQ_MAP_S) +#define INTERRUPT_CORE0_RWBT_IRQ_MAP_V 0x0000001f +#define INTERRUPT_CORE0_RWBT_IRQ_MAP_S 0 + +/* INTERRUPT_CORE0_RWBLE_IRQ_MAP_REG register + * rwble_irq interrupt configuration register + */ + +#define INTERRUPT_CORE0_RWBLE_IRQ_MAP_REG (DR_REG_INTERRUPT_CORE0_BASE + 0x20) + +/* INTERRUPT_CORE0_RWBLE_IRQ_MAP : R/W; bitpos: [4:0]; default: 16; + * this register used to map rwble_irq interrupt to one of core0's external + * interrupt + */ + +#define INTERRUPT_CORE0_RWBLE_IRQ_MAP 0x0000001f +#define INTERRUPT_CORE0_RWBLE_IRQ_MAP_M (INTERRUPT_CORE0_RWBLE_IRQ_MAP_V << INTERRUPT_CORE0_RWBLE_IRQ_MAP_S) +#define INTERRUPT_CORE0_RWBLE_IRQ_MAP_V 0x0000001f +#define INTERRUPT_CORE0_RWBLE_IRQ_MAP_S 0 + +/* INTERRUPT_CORE0_RWBT_NMI_MAP_REG register + * rwbt_nmi interrupt configuration register + */ + +#define INTERRUPT_CORE0_RWBT_NMI_MAP_REG (DR_REG_INTERRUPT_CORE0_BASE + 0x24) + +/* INTERRUPT_CORE0_RWBT_NMI_MAP : R/W; bitpos: [4:0]; default: 16; + * this register used to map mac rwbt_nmi to one of core0's external + * interrupt + */ + +#define INTERRUPT_CORE0_RWBT_NMI_MAP 0x0000001f +#define INTERRUPT_CORE0_RWBT_NMI_MAP_M (INTERRUPT_CORE0_RWBT_NMI_MAP_V << INTERRUPT_CORE0_RWBT_NMI_MAP_S) +#define INTERRUPT_CORE0_RWBT_NMI_MAP_V 0x0000001f +#define INTERRUPT_CORE0_RWBT_NMI_MAP_S 0 + +/* INTERRUPT_CORE0_RWBLE_NMI_MAP_REG register + * rwble_nmi interrupt configuration register + */ + +#define INTERRUPT_CORE0_RWBLE_NMI_MAP_REG (DR_REG_INTERRUPT_CORE0_BASE + 0x28) + +/* INTERRUPT_CORE0_RWBLE_NMI_MAP : R/W; bitpos: [4:0]; default: 16; + * this register used to map rwble_nmi interrupt to one of core0's external + * interrupt + */ + +#define INTERRUPT_CORE0_RWBLE_NMI_MAP 0x0000001f +#define INTERRUPT_CORE0_RWBLE_NMI_MAP_M (INTERRUPT_CORE0_RWBLE_NMI_MAP_V << INTERRUPT_CORE0_RWBLE_NMI_MAP_S) +#define INTERRUPT_CORE0_RWBLE_NMI_MAP_V 0x0000001f +#define INTERRUPT_CORE0_RWBLE_NMI_MAP_S 0 + +/* INTERRUPT_CORE0_I2C_MST_INT_MAP_REG register + * i2c_mst interrupt configuration register + */ + +#define INTERRUPT_CORE0_I2C_MST_INT_MAP_REG (DR_REG_INTERRUPT_CORE0_BASE + 0x2c) + +/* INTERRUPT_CORE0_I2C_MST_INT_MAP : R/W; bitpos: [4:0]; default: 16; + * this register used to map i2c_mst interrupt to one of core0's external + * interrupt + */ + +#define INTERRUPT_CORE0_I2C_MST_INT_MAP 0x0000001f +#define INTERRUPT_CORE0_I2C_MST_INT_MAP_M (INTERRUPT_CORE0_I2C_MST_INT_MAP_V << INTERRUPT_CORE0_I2C_MST_INT_MAP_S) +#define INTERRUPT_CORE0_I2C_MST_INT_MAP_V 0x0000001f +#define INTERRUPT_CORE0_I2C_MST_INT_MAP_S 0 + +/* INTERRUPT_CORE0_SLC0_INTR_MAP_REG register + * slc0 interrupt configuration register + */ + +#define INTERRUPT_CORE0_SLC0_INTR_MAP_REG (DR_REG_INTERRUPT_CORE0_BASE + 0x30) + +/* INTERRUPT_CORE0_SLC0_INTR_MAP : R/W; bitpos: [4:0]; default: 16; + * this register used to map slc0 interrupt to one of core0's external + * interrupt + */ + +#define INTERRUPT_CORE0_SLC0_INTR_MAP 0x0000001f +#define INTERRUPT_CORE0_SLC0_INTR_MAP_M (INTERRUPT_CORE0_SLC0_INTR_MAP_V << INTERRUPT_CORE0_SLC0_INTR_MAP_S) +#define INTERRUPT_CORE0_SLC0_INTR_MAP_V 0x0000001f +#define INTERRUPT_CORE0_SLC0_INTR_MAP_S 0 + +/* INTERRUPT_CORE0_SLC1_INTR_MAP_REG register + * slc1 interrupt configuration register + */ + +#define INTERRUPT_CORE0_SLC1_INTR_MAP_REG (DR_REG_INTERRUPT_CORE0_BASE + 0x34) + +/* INTERRUPT_CORE0_SLC1_INTR_MAP : R/W; bitpos: [4:0]; default: 16; + * this register used to map slc1 interrupt to one of core0's external + * interrupt + */ + +#define INTERRUPT_CORE0_SLC1_INTR_MAP 0x0000001f +#define INTERRUPT_CORE0_SLC1_INTR_MAP_M (INTERRUPT_CORE0_SLC1_INTR_MAP_V << INTERRUPT_CORE0_SLC1_INTR_MAP_S) +#define INTERRUPT_CORE0_SLC1_INTR_MAP_V 0x0000001f +#define INTERRUPT_CORE0_SLC1_INTR_MAP_S 0 + +/* INTERRUPT_CORE0_UHCI0_INTR_MAP_REG register + * uhci0 interrupt configuration register + */ + +#define INTERRUPT_CORE0_UHCI0_INTR_MAP_REG (DR_REG_INTERRUPT_CORE0_BASE + 0x38) + +/* INTERRUPT_CORE0_UHCI0_INTR_MAP : R/W; bitpos: [4:0]; default: 16; + * this register used to map uhci0 interrupt to one of core0's external + * interrupt + */ + +#define INTERRUPT_CORE0_UHCI0_INTR_MAP 0x0000001f +#define INTERRUPT_CORE0_UHCI0_INTR_MAP_M (INTERRUPT_CORE0_UHCI0_INTR_MAP_V << INTERRUPT_CORE0_UHCI0_INTR_MAP_S) +#define INTERRUPT_CORE0_UHCI0_INTR_MAP_V 0x0000001f +#define INTERRUPT_CORE0_UHCI0_INTR_MAP_S 0 + +/* INTERRUPT_CORE0_UHCI1_INTR_MAP_REG register + * uhci1 interrupt configuration register + */ + +#define INTERRUPT_CORE0_UHCI1_INTR_MAP_REG (DR_REG_INTERRUPT_CORE0_BASE + 0x3c) + +/* INTERRUPT_CORE0_UHCI1_INTR_MAP : R/W; bitpos: [4:0]; default: 16; + * this register used to map uhci1 interrupt to one of core0's external + * interrupt + */ + +#define INTERRUPT_CORE0_UHCI1_INTR_MAP 0x0000001f +#define INTERRUPT_CORE0_UHCI1_INTR_MAP_M (INTERRUPT_CORE0_UHCI1_INTR_MAP_V << INTERRUPT_CORE0_UHCI1_INTR_MAP_S) +#define INTERRUPT_CORE0_UHCI1_INTR_MAP_V 0x0000001f +#define INTERRUPT_CORE0_UHCI1_INTR_MAP_S 0 + +/* INTERRUPT_CORE0_GPIO_INTERRUPT_PRO_MAP_REG register + * gpio_interrupt_pro interrupt configuration register + */ + +#define INTERRUPT_CORE0_GPIO_INTERRUPT_PRO_MAP_REG (DR_REG_INTERRUPT_CORE0_BASE + 0x40) + +/* INTERRUPT_CORE0_GPIO_INTERRUPT_PRO_MAP : R/W; bitpos: [4:0]; default: 16; + * this register used to map gpio_interrupt_pro interrupt to one of core0's + * external interrupt + */ + +#define INTERRUPT_CORE0_GPIO_INTERRUPT_PRO_MAP 0x0000001f +#define INTERRUPT_CORE0_GPIO_INTERRUPT_PRO_MAP_M (INTERRUPT_CORE0_GPIO_INTERRUPT_PRO_MAP_V << INTERRUPT_CORE0_GPIO_INTERRUPT_PRO_MAP_S) +#define INTERRUPT_CORE0_GPIO_INTERRUPT_PRO_MAP_V 0x0000001f +#define INTERRUPT_CORE0_GPIO_INTERRUPT_PRO_MAP_S 0 + +/* INTERRUPT_CORE0_GPIO_INTERRUPT_PRO_NMI_MAP_REG register + * gpio_interrupt_pro_nmi interrupt configuration register + */ + +#define INTERRUPT_CORE0_GPIO_INTERRUPT_PRO_NMI_MAP_REG (DR_REG_INTERRUPT_CORE0_BASE + 0x44) + +/* INTERRUPT_CORE0_GPIO_INTERRUPT_PRO_NMI_MAP : R/W; bitpos: [4:0]; default: + * 16; + * this register used to map gpio_interrupt_pro_nmi interrupt to one of + * core0's external interrupt + */ + +#define INTERRUPT_CORE0_GPIO_INTERRUPT_PRO_NMI_MAP 0x0000001f +#define INTERRUPT_CORE0_GPIO_INTERRUPT_PRO_NMI_MAP_M (INTERRUPT_CORE0_GPIO_INTERRUPT_PRO_NMI_MAP_V << INTERRUPT_CORE0_GPIO_INTERRUPT_PRO_NMI_MAP_S) +#define INTERRUPT_CORE0_GPIO_INTERRUPT_PRO_NMI_MAP_V 0x0000001f +#define INTERRUPT_CORE0_GPIO_INTERRUPT_PRO_NMI_MAP_S 0 + +/* INTERRUPT_CORE0_GPIO_INTERRUPT_APP_MAP_REG register + * gpio_interrupt_app interrupt configuration register + */ + +#define INTERRUPT_CORE0_GPIO_INTERRUPT_APP_MAP_REG (DR_REG_INTERRUPT_CORE0_BASE + 0x48) + +/* INTERRUPT_CORE0_GPIO_INTERRUPT_APP_MAP : R/W; bitpos: [4:0]; default: 16; + * this register used to map gpio_interrupt_app interrupt to one of core0's + * external interrupt + */ + +#define INTERRUPT_CORE0_GPIO_INTERRUPT_APP_MAP 0x0000001f +#define INTERRUPT_CORE0_GPIO_INTERRUPT_APP_MAP_M (INTERRUPT_CORE0_GPIO_INTERRUPT_APP_MAP_V << INTERRUPT_CORE0_GPIO_INTERRUPT_APP_MAP_S) +#define INTERRUPT_CORE0_GPIO_INTERRUPT_APP_MAP_V 0x0000001f +#define INTERRUPT_CORE0_GPIO_INTERRUPT_APP_MAP_S 0 + +/* INTERRUPT_CORE0_GPIO_INTERRUPT_APP_NMI_MAP_REG register + * gpio_interrupt_app_nmi interrupt configuration register + */ + +#define INTERRUPT_CORE0_GPIO_INTERRUPT_APP_NMI_MAP_REG (DR_REG_INTERRUPT_CORE0_BASE + 0x4c) + +/* INTERRUPT_CORE0_GPIO_INTERRUPT_APP_NMI_MAP : R/W; bitpos: [4:0]; default: + * 16; + * this register used to map gpio_interrupt_app_nmi interrupt to one of + * core0's external interrupt + */ + +#define INTERRUPT_CORE0_GPIO_INTERRUPT_APP_NMI_MAP 0x0000001f +#define INTERRUPT_CORE0_GPIO_INTERRUPT_APP_NMI_MAP_M (INTERRUPT_CORE0_GPIO_INTERRUPT_APP_NMI_MAP_V << INTERRUPT_CORE0_GPIO_INTERRUPT_APP_NMI_MAP_S) +#define INTERRUPT_CORE0_GPIO_INTERRUPT_APP_NMI_MAP_V 0x0000001f +#define INTERRUPT_CORE0_GPIO_INTERRUPT_APP_NMI_MAP_S 0 + +/* INTERRUPT_CORE0_SPI_INTR_1_MAP_REG register + * spi_intr_1 interrupt configuration register + */ + +#define INTERRUPT_CORE0_SPI_INTR_1_MAP_REG (DR_REG_INTERRUPT_CORE0_BASE + 0x50) + +/* INTERRUPT_CORE0_SPI_INTR_1_MAP : R/W; bitpos: [4:0]; default: 16; + * this register used to map spi_intr_1 interrupt to one of core0's external + * interrupt + */ + +#define INTERRUPT_CORE0_SPI_INTR_1_MAP 0x0000001f +#define INTERRUPT_CORE0_SPI_INTR_1_MAP_M (INTERRUPT_CORE0_SPI_INTR_1_MAP_V << INTERRUPT_CORE0_SPI_INTR_1_MAP_S) +#define INTERRUPT_CORE0_SPI_INTR_1_MAP_V 0x0000001f +#define INTERRUPT_CORE0_SPI_INTR_1_MAP_S 0 + +/* INTERRUPT_CORE0_SPI_INTR_2_MAP_REG register + * spi_intr_2 interrupt configuration register + */ + +#define INTERRUPT_CORE0_SPI_INTR_2_MAP_REG (DR_REG_INTERRUPT_CORE0_BASE + 0x54) + +/* INTERRUPT_CORE0_SPI_INTR_2_MAP : R/W; bitpos: [4:0]; default: 16; + * this register used to map spi_intr_2 interrupt to one of core0's external + * interrupt + */ + +#define INTERRUPT_CORE0_SPI_INTR_2_MAP 0x0000001f +#define INTERRUPT_CORE0_SPI_INTR_2_MAP_M (INTERRUPT_CORE0_SPI_INTR_2_MAP_V << INTERRUPT_CORE0_SPI_INTR_2_MAP_S) +#define INTERRUPT_CORE0_SPI_INTR_2_MAP_V 0x0000001f +#define INTERRUPT_CORE0_SPI_INTR_2_MAP_S 0 + +/* INTERRUPT_CORE0_SPI_INTR_3_MAP_REG register + * spi_intr_3 interrupt configuration register + */ + +#define INTERRUPT_CORE0_SPI_INTR_3_MAP_REG (DR_REG_INTERRUPT_CORE0_BASE + 0x58) + +/* INTERRUPT_CORE0_SPI_INTR_3_MAP : R/W; bitpos: [4:0]; default: 16; + * this register used to map spi_intr_3 interrupt to one of core0's external + * interrupt + */ + +#define INTERRUPT_CORE0_SPI_INTR_3_MAP 0x0000001f +#define INTERRUPT_CORE0_SPI_INTR_3_MAP_M (INTERRUPT_CORE0_SPI_INTR_3_MAP_V << INTERRUPT_CORE0_SPI_INTR_3_MAP_S) +#define INTERRUPT_CORE0_SPI_INTR_3_MAP_V 0x0000001f +#define INTERRUPT_CORE0_SPI_INTR_3_MAP_S 0 + +/* INTERRUPT_CORE0_SPI_INTR_4_MAP_REG register + * spi_intr_4 interrupt configuration register + */ + +#define INTERRUPT_CORE0_SPI_INTR_4_MAP_REG (DR_REG_INTERRUPT_CORE0_BASE + 0x5c) + +/* INTERRUPT_CORE0_SPI_INTR_4_MAP : R/W; bitpos: [4:0]; default: 16; + * this register used to map spi_intr_4 interrupt to one of core0's external + * interrupt + */ + +#define INTERRUPT_CORE0_SPI_INTR_4_MAP 0x0000001f +#define INTERRUPT_CORE0_SPI_INTR_4_MAP_M (INTERRUPT_CORE0_SPI_INTR_4_MAP_V << INTERRUPT_CORE0_SPI_INTR_4_MAP_S) +#define INTERRUPT_CORE0_SPI_INTR_4_MAP_V 0x0000001f +#define INTERRUPT_CORE0_SPI_INTR_4_MAP_S 0 + +/* INTERRUPT_CORE0_LCD_CAM_INT_MAP_REG register + * lcd_cam interrupt configuration register + */ + +#define INTERRUPT_CORE0_LCD_CAM_INT_MAP_REG (DR_REG_INTERRUPT_CORE0_BASE + 0x60) + +/* INTERRUPT_CORE0_LCD_CAM_INT_MAP : R/W; bitpos: [4:0]; default: 16; + * this register used to map lcd_cam interrupt to one of core0's external + * interrupt + */ + +#define INTERRUPT_CORE0_LCD_CAM_INT_MAP 0x0000001f +#define INTERRUPT_CORE0_LCD_CAM_INT_MAP_M (INTERRUPT_CORE0_LCD_CAM_INT_MAP_V << INTERRUPT_CORE0_LCD_CAM_INT_MAP_S) +#define INTERRUPT_CORE0_LCD_CAM_INT_MAP_V 0x0000001f +#define INTERRUPT_CORE0_LCD_CAM_INT_MAP_S 0 + +/* INTERRUPT_CORE0_I2S0_INT_MAP_REG register + * i2s0 interrupt configuration register + */ + +#define INTERRUPT_CORE0_I2S0_INT_MAP_REG (DR_REG_INTERRUPT_CORE0_BASE + 0x64) + +/* INTERRUPT_CORE0_I2S0_INT_MAP : R/W; bitpos: [4:0]; default: 16; + * this register used to map i2s0 interrupt to one of core0's external + * interrupt + */ + +#define INTERRUPT_CORE0_I2S0_INT_MAP 0x0000001f +#define INTERRUPT_CORE0_I2S0_INT_MAP_M (INTERRUPT_CORE0_I2S0_INT_MAP_V << INTERRUPT_CORE0_I2S0_INT_MAP_S) +#define INTERRUPT_CORE0_I2S0_INT_MAP_V 0x0000001f +#define INTERRUPT_CORE0_I2S0_INT_MAP_S 0 + +/* INTERRUPT_CORE0_I2S1_INT_MAP_REG register + * i2s1 interrupt configuration register + */ + +#define INTERRUPT_CORE0_I2S1_INT_MAP_REG (DR_REG_INTERRUPT_CORE0_BASE + 0x68) + +/* INTERRUPT_CORE0_I2S1_INT_MAP : R/W; bitpos: [4:0]; default: 16; + * this register used to map i2s1 interrupt to one of core0's external + * interrupt + */ + +#define INTERRUPT_CORE0_I2S1_INT_MAP 0x0000001f +#define INTERRUPT_CORE0_I2S1_INT_MAP_M (INTERRUPT_CORE0_I2S1_INT_MAP_V << INTERRUPT_CORE0_I2S1_INT_MAP_S) +#define INTERRUPT_CORE0_I2S1_INT_MAP_V 0x0000001f +#define INTERRUPT_CORE0_I2S1_INT_MAP_S 0 + +/* INTERRUPT_CORE0_UART_INTR_MAP_REG register + * uart interrupt configuration register + */ + +#define INTERRUPT_CORE0_UART_INTR_MAP_REG (DR_REG_INTERRUPT_CORE0_BASE + 0x6c) + +/* INTERRUPT_CORE0_UART_INTR_MAP : R/W; bitpos: [4:0]; default: 16; + * this register used to map uart interrupt to one of core0's external + * interrupt + */ + +#define INTERRUPT_CORE0_UART_INTR_MAP 0x0000001f +#define INTERRUPT_CORE0_UART_INTR_MAP_M (INTERRUPT_CORE0_UART_INTR_MAP_V << INTERRUPT_CORE0_UART_INTR_MAP_S) +#define INTERRUPT_CORE0_UART_INTR_MAP_V 0x0000001f +#define INTERRUPT_CORE0_UART_INTR_MAP_S 0 + +/* INTERRUPT_CORE0_UART1_INTR_MAP_REG register + * uart1 interrupt configuration register + */ + +#define INTERRUPT_CORE0_UART1_INTR_MAP_REG (DR_REG_INTERRUPT_CORE0_BASE + 0x70) + +/* INTERRUPT_CORE0_UART1_INTR_MAP : R/W; bitpos: [4:0]; default: 16; + * this register used to map uart1 interrupt to one of core0's external + * interrupt + */ + +#define INTERRUPT_CORE0_UART1_INTR_MAP 0x0000001f +#define INTERRUPT_CORE0_UART1_INTR_MAP_M (INTERRUPT_CORE0_UART1_INTR_MAP_V << INTERRUPT_CORE0_UART1_INTR_MAP_S) +#define INTERRUPT_CORE0_UART1_INTR_MAP_V 0x0000001f +#define INTERRUPT_CORE0_UART1_INTR_MAP_S 0 + +/* INTERRUPT_CORE0_UART2_INTR_MAP_REG register + * uart2 interrupt configuration register + */ + +#define INTERRUPT_CORE0_UART2_INTR_MAP_REG (DR_REG_INTERRUPT_CORE0_BASE + 0x74) + +/* INTERRUPT_CORE0_UART2_INTR_MAP : R/W; bitpos: [4:0]; default: 16; + * this register used to map uart2 interrupt to one of core0's external + * interrupt + */ + +#define INTERRUPT_CORE0_UART2_INTR_MAP 0x0000001f +#define INTERRUPT_CORE0_UART2_INTR_MAP_M (INTERRUPT_CORE0_UART2_INTR_MAP_V << INTERRUPT_CORE0_UART2_INTR_MAP_S) +#define INTERRUPT_CORE0_UART2_INTR_MAP_V 0x0000001f +#define INTERRUPT_CORE0_UART2_INTR_MAP_S 0 + +/* INTERRUPT_CORE0_SDIO_HOST_INTERRUPT_MAP_REG register + * sdio_host interrupt configuration register + */ + +#define INTERRUPT_CORE0_SDIO_HOST_INTERRUPT_MAP_REG (DR_REG_INTERRUPT_CORE0_BASE + 0x78) + +/* INTERRUPT_CORE0_SDIO_HOST_INTERRUPT_MAP : R/W; bitpos: [4:0]; default: 16; + * this register used to map sdio_host interrupt to one of core0's external + * interrupt + */ + +#define INTERRUPT_CORE0_SDIO_HOST_INTERRUPT_MAP 0x0000001f +#define INTERRUPT_CORE0_SDIO_HOST_INTERRUPT_MAP_M (INTERRUPT_CORE0_SDIO_HOST_INTERRUPT_MAP_V << INTERRUPT_CORE0_SDIO_HOST_INTERRUPT_MAP_S) +#define INTERRUPT_CORE0_SDIO_HOST_INTERRUPT_MAP_V 0x0000001f +#define INTERRUPT_CORE0_SDIO_HOST_INTERRUPT_MAP_S 0 + +/* INTERRUPT_CORE0_PWM0_INTR_MAP_REG register + * pwm0 interrupt configuration register + */ + +#define INTERRUPT_CORE0_PWM0_INTR_MAP_REG (DR_REG_INTERRUPT_CORE0_BASE + 0x7c) + +/* INTERRUPT_CORE0_PWM0_INTR_MAP : R/W; bitpos: [4:0]; default: 16; + * this register used to map pwm0 interrupt to one of core0's external + * interrupt + */ + +#define INTERRUPT_CORE0_PWM0_INTR_MAP 0x0000001f +#define INTERRUPT_CORE0_PWM0_INTR_MAP_M (INTERRUPT_CORE0_PWM0_INTR_MAP_V << INTERRUPT_CORE0_PWM0_INTR_MAP_S) +#define INTERRUPT_CORE0_PWM0_INTR_MAP_V 0x0000001f +#define INTERRUPT_CORE0_PWM0_INTR_MAP_S 0 + +/* INTERRUPT_CORE0_PWM1_INTR_MAP_REG register + * pwm1 interrupt configuration register + */ + +#define INTERRUPT_CORE0_PWM1_INTR_MAP_REG (DR_REG_INTERRUPT_CORE0_BASE + 0x80) + +/* INTERRUPT_CORE0_PWM1_INTR_MAP : R/W; bitpos: [4:0]; default: 16; + * this register used to map pwm1 interrupt to one of core0's external + * interrupt + */ + +#define INTERRUPT_CORE0_PWM1_INTR_MAP 0x0000001f +#define INTERRUPT_CORE0_PWM1_INTR_MAP_M (INTERRUPT_CORE0_PWM1_INTR_MAP_V << INTERRUPT_CORE0_PWM1_INTR_MAP_S) +#define INTERRUPT_CORE0_PWM1_INTR_MAP_V 0x0000001f +#define INTERRUPT_CORE0_PWM1_INTR_MAP_S 0 + +/* INTERRUPT_CORE0_PWM2_INTR_MAP_REG register + * pwm2 interrupt configuration register + */ + +#define INTERRUPT_CORE0_PWM2_INTR_MAP_REG (DR_REG_INTERRUPT_CORE0_BASE + 0x84) + +/* INTERRUPT_CORE0_PWM2_INTR_MAP : R/W; bitpos: [4:0]; default: 16; + * this register used to map pwm2 interrupt to one of core0's external + * interrupt + */ + +#define INTERRUPT_CORE0_PWM2_INTR_MAP 0x0000001f +#define INTERRUPT_CORE0_PWM2_INTR_MAP_M (INTERRUPT_CORE0_PWM2_INTR_MAP_V << INTERRUPT_CORE0_PWM2_INTR_MAP_S) +#define INTERRUPT_CORE0_PWM2_INTR_MAP_V 0x0000001f +#define INTERRUPT_CORE0_PWM2_INTR_MAP_S 0 + +/* INTERRUPT_CORE0_PWM3_INTR_MAP_REG register + * pwm3 interrupt configuration register + */ + +#define INTERRUPT_CORE0_PWM3_INTR_MAP_REG (DR_REG_INTERRUPT_CORE0_BASE + 0x88) + +/* INTERRUPT_CORE0_PWM3_INTR_MAP : R/W; bitpos: [4:0]; default: 16; + * this register used to map pwm3 interrupt to one of core0's external + * interrupt + */ + +#define INTERRUPT_CORE0_PWM3_INTR_MAP 0x0000001f +#define INTERRUPT_CORE0_PWM3_INTR_MAP_M (INTERRUPT_CORE0_PWM3_INTR_MAP_V << INTERRUPT_CORE0_PWM3_INTR_MAP_S) +#define INTERRUPT_CORE0_PWM3_INTR_MAP_V 0x0000001f +#define INTERRUPT_CORE0_PWM3_INTR_MAP_S 0 + +/* INTERRUPT_CORE0_LEDC_INT_MAP_REG register + * ledc interrupt configuration register + */ + +#define INTERRUPT_CORE0_LEDC_INT_MAP_REG (DR_REG_INTERRUPT_CORE0_BASE + 0x8c) + +/* INTERRUPT_CORE0_LEDC_INT_MAP : R/W; bitpos: [4:0]; default: 16; + * this register used to map ledc interrupt to one of core0's external + * interrupt + */ + +#define INTERRUPT_CORE0_LEDC_INT_MAP 0x0000001f +#define INTERRUPT_CORE0_LEDC_INT_MAP_M (INTERRUPT_CORE0_LEDC_INT_MAP_V << INTERRUPT_CORE0_LEDC_INT_MAP_S) +#define INTERRUPT_CORE0_LEDC_INT_MAP_V 0x0000001f +#define INTERRUPT_CORE0_LEDC_INT_MAP_S 0 + +/* INTERRUPT_CORE0_EFUSE_INT_MAP_REG register + * efuse interrupt configuration register + */ + +#define INTERRUPT_CORE0_EFUSE_INT_MAP_REG (DR_REG_INTERRUPT_CORE0_BASE + 0x90) + +/* INTERRUPT_CORE0_EFUSE_INT_MAP : R/W; bitpos: [4:0]; default: 16; + * this register used to map efuse interrupt to one of core0's external + * interrupt + */ + +#define INTERRUPT_CORE0_EFUSE_INT_MAP 0x0000001f +#define INTERRUPT_CORE0_EFUSE_INT_MAP_M (INTERRUPT_CORE0_EFUSE_INT_MAP_V << INTERRUPT_CORE0_EFUSE_INT_MAP_S) +#define INTERRUPT_CORE0_EFUSE_INT_MAP_V 0x0000001f +#define INTERRUPT_CORE0_EFUSE_INT_MAP_S 0 + +/* INTERRUPT_CORE0_CAN_INT_MAP_REG register + * can interrupt configuration register + */ + +#define INTERRUPT_CORE0_CAN_INT_MAP_REG (DR_REG_INTERRUPT_CORE0_BASE + 0x94) + +/* INTERRUPT_CORE0_CAN_INT_MAP : R/W; bitpos: [4:0]; default: 16; + * this register used to map can interrupt to one of core0's external + * interrupt + */ + +#define INTERRUPT_CORE0_CAN_INT_MAP 0x0000001f +#define INTERRUPT_CORE0_CAN_INT_MAP_M (INTERRUPT_CORE0_CAN_INT_MAP_V << INTERRUPT_CORE0_CAN_INT_MAP_S) +#define INTERRUPT_CORE0_CAN_INT_MAP_V 0x0000001f +#define INTERRUPT_CORE0_CAN_INT_MAP_S 0 + +/* INTERRUPT_CORE0_USB_INTR_MAP_REG register + * usb interrupt configuration register + */ + +#define INTERRUPT_CORE0_USB_INTR_MAP_REG (DR_REG_INTERRUPT_CORE0_BASE + 0x98) + +/* INTERRUPT_CORE0_USB_INTR_MAP : R/W; bitpos: [4:0]; default: 16; + * this register used to map usb interrupt to one of core0's external + * interrupt + */ + +#define INTERRUPT_CORE0_USB_INTR_MAP 0x0000001f +#define INTERRUPT_CORE0_USB_INTR_MAP_M (INTERRUPT_CORE0_USB_INTR_MAP_V << INTERRUPT_CORE0_USB_INTR_MAP_S) +#define INTERRUPT_CORE0_USB_INTR_MAP_V 0x0000001f +#define INTERRUPT_CORE0_USB_INTR_MAP_S 0 + +/* INTERRUPT_CORE0_RTC_CORE_INTR_MAP_REG register + * rtc_core interrupt configuration register + */ + +#define INTERRUPT_CORE0_RTC_CORE_INTR_MAP_REG (DR_REG_INTERRUPT_CORE0_BASE + 0x9c) + +/* INTERRUPT_CORE0_RTC_CORE_INTR_MAP : R/W; bitpos: [4:0]; default: 16; + * this register used to map rtc_core interrupt to one of core0's external + * interrupt + */ + +#define INTERRUPT_CORE0_RTC_CORE_INTR_MAP 0x0000001f +#define INTERRUPT_CORE0_RTC_CORE_INTR_MAP_M (INTERRUPT_CORE0_RTC_CORE_INTR_MAP_V << INTERRUPT_CORE0_RTC_CORE_INTR_MAP_S) +#define INTERRUPT_CORE0_RTC_CORE_INTR_MAP_V 0x0000001f +#define INTERRUPT_CORE0_RTC_CORE_INTR_MAP_S 0 + +/* INTERRUPT_CORE0_RMT_INTR_MAP_REG register + * rmt interrupt configuration register + */ + +#define INTERRUPT_CORE0_RMT_INTR_MAP_REG (DR_REG_INTERRUPT_CORE0_BASE + 0xa0) + +/* INTERRUPT_CORE0_RMT_INTR_MAP : R/W; bitpos: [4:0]; default: 16; + * this register used to map rmt interrupt to one of core0's external + * interrupt + */ + +#define INTERRUPT_CORE0_RMT_INTR_MAP 0x0000001f +#define INTERRUPT_CORE0_RMT_INTR_MAP_M (INTERRUPT_CORE0_RMT_INTR_MAP_V << INTERRUPT_CORE0_RMT_INTR_MAP_S) +#define INTERRUPT_CORE0_RMT_INTR_MAP_V 0x0000001f +#define INTERRUPT_CORE0_RMT_INTR_MAP_S 0 + +/* INTERRUPT_CORE0_PCNT_INTR_MAP_REG register + * pcnt interrupt configuration register + */ + +#define INTERRUPT_CORE0_PCNT_INTR_MAP_REG (DR_REG_INTERRUPT_CORE0_BASE + 0xa4) + +/* INTERRUPT_CORE0_PCNT_INTR_MAP : R/W; bitpos: [4:0]; default: 16; + * this register used to map pcnt interrupt to one of core0's external + * interrupt + */ + +#define INTERRUPT_CORE0_PCNT_INTR_MAP 0x0000001f +#define INTERRUPT_CORE0_PCNT_INTR_MAP_M (INTERRUPT_CORE0_PCNT_INTR_MAP_V << INTERRUPT_CORE0_PCNT_INTR_MAP_S) +#define INTERRUPT_CORE0_PCNT_INTR_MAP_V 0x0000001f +#define INTERRUPT_CORE0_PCNT_INTR_MAP_S 0 + +/* INTERRUPT_CORE0_I2C_EXT0_INTR_MAP_REG register + * i2c_ext0 interrupt configuration register + */ + +#define INTERRUPT_CORE0_I2C_EXT0_INTR_MAP_REG (DR_REG_INTERRUPT_CORE0_BASE + 0xa8) + +/* INTERRUPT_CORE0_I2C_EXT0_INTR_MAP : R/W; bitpos: [4:0]; default: 16; + * this register used to map i2c_ext0 interrupt to one of core0's external + * interrupt + */ + +#define INTERRUPT_CORE0_I2C_EXT0_INTR_MAP 0x0000001f +#define INTERRUPT_CORE0_I2C_EXT0_INTR_MAP_M (INTERRUPT_CORE0_I2C_EXT0_INTR_MAP_V << INTERRUPT_CORE0_I2C_EXT0_INTR_MAP_S) +#define INTERRUPT_CORE0_I2C_EXT0_INTR_MAP_V 0x0000001f +#define INTERRUPT_CORE0_I2C_EXT0_INTR_MAP_S 0 + +/* INTERRUPT_CORE0_I2C_EXT1_INTR_MAP_REG register + * i2c_ext1 interrupt configuration register + */ + +#define INTERRUPT_CORE0_I2C_EXT1_INTR_MAP_REG (DR_REG_INTERRUPT_CORE0_BASE + 0xac) + +/* INTERRUPT_CORE0_I2C_EXT1_INTR_MAP : R/W; bitpos: [4:0]; default: 16; + * this register used to map i2c_ext1 interrupt to one of core0's external + * interrupt + */ + +#define INTERRUPT_CORE0_I2C_EXT1_INTR_MAP 0x0000001f +#define INTERRUPT_CORE0_I2C_EXT1_INTR_MAP_M (INTERRUPT_CORE0_I2C_EXT1_INTR_MAP_V << INTERRUPT_CORE0_I2C_EXT1_INTR_MAP_S) +#define INTERRUPT_CORE0_I2C_EXT1_INTR_MAP_V 0x0000001f +#define INTERRUPT_CORE0_I2C_EXT1_INTR_MAP_S 0 + +/* INTERRUPT_CORE0_SPI2_DMA_INT_MAP_REG register + * spi2_dma interrupt configuration register + */ + +#define INTERRUPT_CORE0_SPI2_DMA_INT_MAP_REG (DR_REG_INTERRUPT_CORE0_BASE + 0xb0) + +/* INTERRUPT_CORE0_SPI2_DMA_INT_MAP : R/W; bitpos: [4:0]; default: 16; + * this register used to map spi2_dma interrupt to one of core0's external + * interrupt + */ + +#define INTERRUPT_CORE0_SPI2_DMA_INT_MAP 0x0000001f +#define INTERRUPT_CORE0_SPI2_DMA_INT_MAP_M (INTERRUPT_CORE0_SPI2_DMA_INT_MAP_V << INTERRUPT_CORE0_SPI2_DMA_INT_MAP_S) +#define INTERRUPT_CORE0_SPI2_DMA_INT_MAP_V 0x0000001f +#define INTERRUPT_CORE0_SPI2_DMA_INT_MAP_S 0 + +/* INTERRUPT_CORE0_SPI3_DMA_INT_MAP_REG register + * spi3_dma interrupt configuration register + */ + +#define INTERRUPT_CORE0_SPI3_DMA_INT_MAP_REG (DR_REG_INTERRUPT_CORE0_BASE + 0xb4) + +/* INTERRUPT_CORE0_SPI3_DMA_INT_MAP : R/W; bitpos: [4:0]; default: 16; + * this register used to map spi3_dma interrupt to one of core0's external + * interrupt + */ + +#define INTERRUPT_CORE0_SPI3_DMA_INT_MAP 0x0000001f +#define INTERRUPT_CORE0_SPI3_DMA_INT_MAP_M (INTERRUPT_CORE0_SPI3_DMA_INT_MAP_V << INTERRUPT_CORE0_SPI3_DMA_INT_MAP_S) +#define INTERRUPT_CORE0_SPI3_DMA_INT_MAP_V 0x0000001f +#define INTERRUPT_CORE0_SPI3_DMA_INT_MAP_S 0 + +/* INTERRUPT_CORE0_SPI4_DMA_INT_MAP_REG register + * spi4_dma interrupt configuration register + */ + +#define INTERRUPT_CORE0_SPI4_DMA_INT_MAP_REG (DR_REG_INTERRUPT_CORE0_BASE + 0xb8) + +/* INTERRUPT_CORE0_SPI4_DMA_INT_MAP : R/W; bitpos: [4:0]; default: 16; + * this register used to map spi4_dma interrupt to one of core0's external + * interrupt + */ + +#define INTERRUPT_CORE0_SPI4_DMA_INT_MAP 0x0000001f +#define INTERRUPT_CORE0_SPI4_DMA_INT_MAP_M (INTERRUPT_CORE0_SPI4_DMA_INT_MAP_V << INTERRUPT_CORE0_SPI4_DMA_INT_MAP_S) +#define INTERRUPT_CORE0_SPI4_DMA_INT_MAP_V 0x0000001f +#define INTERRUPT_CORE0_SPI4_DMA_INT_MAP_S 0 + +/* INTERRUPT_CORE0_WDG_INT_MAP_REG register + * wdg interrupt configuration register + */ + +#define INTERRUPT_CORE0_WDG_INT_MAP_REG (DR_REG_INTERRUPT_CORE0_BASE + 0xbc) + +/* INTERRUPT_CORE0_WDG_INT_MAP : R/W; bitpos: [4:0]; default: 16; + * this register used to map wdg interrupt to one of core0's external + * interrupt + */ + +#define INTERRUPT_CORE0_WDG_INT_MAP 0x0000001f +#define INTERRUPT_CORE0_WDG_INT_MAP_M (INTERRUPT_CORE0_WDG_INT_MAP_V << INTERRUPT_CORE0_WDG_INT_MAP_S) +#define INTERRUPT_CORE0_WDG_INT_MAP_V 0x0000001f +#define INTERRUPT_CORE0_WDG_INT_MAP_S 0 + +/* INTERRUPT_CORE0_TIMER_INT1_MAP_REG register + * timer_int1 interrupt configuration register + */ + +#define INTERRUPT_CORE0_TIMER_INT1_MAP_REG (DR_REG_INTERRUPT_CORE0_BASE + 0xc0) + +/* INTERRUPT_CORE0_TIMER_INT1_MAP : R/W; bitpos: [4:0]; default: 16; + * this register used to map timer_int1 interrupt to one of core0's external + * interrupt + */ + +#define INTERRUPT_CORE0_TIMER_INT1_MAP 0x0000001f +#define INTERRUPT_CORE0_TIMER_INT1_MAP_M (INTERRUPT_CORE0_TIMER_INT1_MAP_V << INTERRUPT_CORE0_TIMER_INT1_MAP_S) +#define INTERRUPT_CORE0_TIMER_INT1_MAP_V 0x0000001f +#define INTERRUPT_CORE0_TIMER_INT1_MAP_S 0 + +/* INTERRUPT_CORE0_TIMER_INT2_MAP_REG register + * timer_int2 interrupt configuration register + */ + +#define INTERRUPT_CORE0_TIMER_INT2_MAP_REG (DR_REG_INTERRUPT_CORE0_BASE + 0xc4) + +/* INTERRUPT_CORE0_TIMER_INT2_MAP : R/W; bitpos: [4:0]; default: 16; + * this register used to map timer_int2 interrupt to one of core0's external + * interrupt + */ + +#define INTERRUPT_CORE0_TIMER_INT2_MAP 0x0000001f +#define INTERRUPT_CORE0_TIMER_INT2_MAP_M (INTERRUPT_CORE0_TIMER_INT2_MAP_V << INTERRUPT_CORE0_TIMER_INT2_MAP_S) +#define INTERRUPT_CORE0_TIMER_INT2_MAP_V 0x0000001f +#define INTERRUPT_CORE0_TIMER_INT2_MAP_S 0 + +/* INTERRUPT_CORE0_TG_T0_INT_MAP_REG register + * tg_t0 interrupt configuration register + */ + +#define INTERRUPT_CORE0_TG_T0_INT_MAP_REG (DR_REG_INTERRUPT_CORE0_BASE + 0xc8) + +/* INTERRUPT_CORE0_TG_T0_INT_MAP : R/W; bitpos: [4:0]; default: 16; + * this register used to map tg_t0 interrupt to one of core0's external + * interrupt + */ + +#define INTERRUPT_CORE0_TG_T0_INT_MAP 0x0000001f +#define INTERRUPT_CORE0_TG_T0_INT_MAP_M (INTERRUPT_CORE0_TG_T0_INT_MAP_V << INTERRUPT_CORE0_TG_T0_INT_MAP_S) +#define INTERRUPT_CORE0_TG_T0_INT_MAP_V 0x0000001f +#define INTERRUPT_CORE0_TG_T0_INT_MAP_S 0 + +/* INTERRUPT_CORE0_TG_T1_INT_MAP_REG register + * tg_t1 interrupt configuration register + */ + +#define INTERRUPT_CORE0_TG_T1_INT_MAP_REG (DR_REG_INTERRUPT_CORE0_BASE + 0xcc) + +/* INTERRUPT_CORE0_TG_T1_INT_MAP : R/W; bitpos: [4:0]; default: 16; + * this register used to map tg_t1 interrupt to one of core0's external + * interrupt + */ + +#define INTERRUPT_CORE0_TG_T1_INT_MAP 0x0000001f +#define INTERRUPT_CORE0_TG_T1_INT_MAP_M (INTERRUPT_CORE0_TG_T1_INT_MAP_V << INTERRUPT_CORE0_TG_T1_INT_MAP_S) +#define INTERRUPT_CORE0_TG_T1_INT_MAP_V 0x0000001f +#define INTERRUPT_CORE0_TG_T1_INT_MAP_S 0 + +/* INTERRUPT_CORE0_TG_WDT_INT_MAP_REG register + * tg_wdt interrupt configuration register + */ + +#define INTERRUPT_CORE0_TG_WDT_INT_MAP_REG (DR_REG_INTERRUPT_CORE0_BASE + 0xd0) + +/* INTERRUPT_CORE0_TG_WDT_INT_MAP : R/W; bitpos: [4:0]; default: 16; + * this register used to map rg_wdt interrupt to one of core0's external + * interrupt + */ + +#define INTERRUPT_CORE0_TG_WDT_INT_MAP 0x0000001f +#define INTERRUPT_CORE0_TG_WDT_INT_MAP_M (INTERRUPT_CORE0_TG_WDT_INT_MAP_V << INTERRUPT_CORE0_TG_WDT_INT_MAP_S) +#define INTERRUPT_CORE0_TG_WDT_INT_MAP_V 0x0000001f +#define INTERRUPT_CORE0_TG_WDT_INT_MAP_S 0 + +/* INTERRUPT_CORE0_TG1_T0_INT_MAP_REG register + * tg1_t0 interrupt configuration register + */ + +#define INTERRUPT_CORE0_TG1_T0_INT_MAP_REG (DR_REG_INTERRUPT_CORE0_BASE + 0xd4) + +/* INTERRUPT_CORE0_TG1_T0_INT_MAP : R/W; bitpos: [4:0]; default: 16; + * this register used to map tg1_t0 interrupt to one of core0's external + * interrupt + */ + +#define INTERRUPT_CORE0_TG1_T0_INT_MAP 0x0000001f +#define INTERRUPT_CORE0_TG1_T0_INT_MAP_M (INTERRUPT_CORE0_TG1_T0_INT_MAP_V << INTERRUPT_CORE0_TG1_T0_INT_MAP_S) +#define INTERRUPT_CORE0_TG1_T0_INT_MAP_V 0x0000001f +#define INTERRUPT_CORE0_TG1_T0_INT_MAP_S 0 + +/* INTERRUPT_CORE0_TG1_T1_INT_MAP_REG register + * tg1_t1 interrupt configuration register + */ + +#define INTERRUPT_CORE0_TG1_T1_INT_MAP_REG (DR_REG_INTERRUPT_CORE0_BASE + 0xd8) + +/* INTERRUPT_CORE0_TG1_T1_INT_MAP : R/W; bitpos: [4:0]; default: 16; + * this register used to map tg1_t1 interrupt to one of core0's external + * interrupt + */ + +#define INTERRUPT_CORE0_TG1_T1_INT_MAP 0x0000001f +#define INTERRUPT_CORE0_TG1_T1_INT_MAP_M (INTERRUPT_CORE0_TG1_T1_INT_MAP_V << INTERRUPT_CORE0_TG1_T1_INT_MAP_S) +#define INTERRUPT_CORE0_TG1_T1_INT_MAP_V 0x0000001f +#define INTERRUPT_CORE0_TG1_T1_INT_MAP_S 0 + +/* INTERRUPT_CORE0_TG1_WDT_INT_MAP_REG register + * tg1_wdt interrupt configuration register + */ + +#define INTERRUPT_CORE0_TG1_WDT_INT_MAP_REG (DR_REG_INTERRUPT_CORE0_BASE + 0xdc) + +/* INTERRUPT_CORE0_TG1_WDT_INT_MAP : R/W; bitpos: [4:0]; default: 16; + * this register used to map tg1_wdt interrupt to one of core0's external + * interrupt + */ + +#define INTERRUPT_CORE0_TG1_WDT_INT_MAP 0x0000001f +#define INTERRUPT_CORE0_TG1_WDT_INT_MAP_M (INTERRUPT_CORE0_TG1_WDT_INT_MAP_V << INTERRUPT_CORE0_TG1_WDT_INT_MAP_S) +#define INTERRUPT_CORE0_TG1_WDT_INT_MAP_V 0x0000001f +#define INTERRUPT_CORE0_TG1_WDT_INT_MAP_S 0 + +/* INTERRUPT_CORE0_CACHE_IA_INT_MAP_REG register + * cache_ia interrupt configuration register + */ + +#define INTERRUPT_CORE0_CACHE_IA_INT_MAP_REG (DR_REG_INTERRUPT_CORE0_BASE + 0xe0) + +/* INTERRUPT_CORE0_CACHE_IA_INT_MAP : R/W; bitpos: [4:0]; default: 16; + * this register used to map cache_ia interrupt to one of core0's external + * interrupt + */ + +#define INTERRUPT_CORE0_CACHE_IA_INT_MAP 0x0000001f +#define INTERRUPT_CORE0_CACHE_IA_INT_MAP_M (INTERRUPT_CORE0_CACHE_IA_INT_MAP_V << INTERRUPT_CORE0_CACHE_IA_INT_MAP_S) +#define INTERRUPT_CORE0_CACHE_IA_INT_MAP_V 0x0000001f +#define INTERRUPT_CORE0_CACHE_IA_INT_MAP_S 0 + +/* INTERRUPT_CORE0_SYSTIMER_TARGET0_INT_MAP_REG register + * systimer_target0 interrupt configuration register + */ + +#define INTERRUPT_CORE0_SYSTIMER_TARGET0_INT_MAP_REG (DR_REG_INTERRUPT_CORE0_BASE + 0xe4) + +/* INTERRUPT_CORE0_SYSTIMER_TARGET0_INT_MAP : R/W; bitpos: [4:0]; default: + * 16; + * this register used to map systimer_target0 interrupt to one of core0's + * external interrupt + */ + +#define INTERRUPT_CORE0_SYSTIMER_TARGET0_INT_MAP 0x0000001f +#define INTERRUPT_CORE0_SYSTIMER_TARGET0_INT_MAP_M (INTERRUPT_CORE0_SYSTIMER_TARGET0_INT_MAP_V << INTERRUPT_CORE0_SYSTIMER_TARGET0_INT_MAP_S) +#define INTERRUPT_CORE0_SYSTIMER_TARGET0_INT_MAP_V 0x0000001f +#define INTERRUPT_CORE0_SYSTIMER_TARGET0_INT_MAP_S 0 + +/* INTERRUPT_CORE0_SYSTIMER_TARGET1_INT_MAP_REG register + * systimer_target1 interrupt configuration register + */ + +#define INTERRUPT_CORE0_SYSTIMER_TARGET1_INT_MAP_REG (DR_REG_INTERRUPT_CORE0_BASE + 0xe8) + +/* INTERRUPT_CORE0_SYSTIMER_TARGET1_INT_MAP : R/W; bitpos: [4:0]; default: + * 16; + * this register used to map systimer_target1 interrupt to one of core0's + * external interrupt + */ + +#define INTERRUPT_CORE0_SYSTIMER_TARGET1_INT_MAP 0x0000001f +#define INTERRUPT_CORE0_SYSTIMER_TARGET1_INT_MAP_M (INTERRUPT_CORE0_SYSTIMER_TARGET1_INT_MAP_V << INTERRUPT_CORE0_SYSTIMER_TARGET1_INT_MAP_S) +#define INTERRUPT_CORE0_SYSTIMER_TARGET1_INT_MAP_V 0x0000001f +#define INTERRUPT_CORE0_SYSTIMER_TARGET1_INT_MAP_S 0 + +/* INTERRUPT_CORE0_SYSTIMER_TARGET2_INT_MAP_REG register + * systimer_target2 interrupt configuration register + */ + +#define INTERRUPT_CORE0_SYSTIMER_TARGET2_INT_MAP_REG (DR_REG_INTERRUPT_CORE0_BASE + 0xec) + +/* INTERRUPT_CORE0_SYSTIMER_TARGET2_INT_MAP : R/W; bitpos: [4:0]; default: + * 16; + * this register used to map systimer_target2 interrupt to one of core0's + * external interrupt + */ + +#define INTERRUPT_CORE0_SYSTIMER_TARGET2_INT_MAP 0x0000001f +#define INTERRUPT_CORE0_SYSTIMER_TARGET2_INT_MAP_M (INTERRUPT_CORE0_SYSTIMER_TARGET2_INT_MAP_V << INTERRUPT_CORE0_SYSTIMER_TARGET2_INT_MAP_S) +#define INTERRUPT_CORE0_SYSTIMER_TARGET2_INT_MAP_V 0x0000001f +#define INTERRUPT_CORE0_SYSTIMER_TARGET2_INT_MAP_S 0 + +/* INTERRUPT_CORE0_SPI_MEM_REJECT_INTR_MAP_REG register + * spi_mem_reject interrupt configuration register + */ + +#define INTERRUPT_CORE0_SPI_MEM_REJECT_INTR_MAP_REG (DR_REG_INTERRUPT_CORE0_BASE + 0xf0) + +/* INTERRUPT_CORE0_SPI_MEM_REJECT_INTR_MAP : R/W; bitpos: [4:0]; default: 16; + * this register used to map spi_mem_reject interrupt to one of core0's + * external interrupt + */ + +#define INTERRUPT_CORE0_SPI_MEM_REJECT_INTR_MAP 0x0000001f +#define INTERRUPT_CORE0_SPI_MEM_REJECT_INTR_MAP_M (INTERRUPT_CORE0_SPI_MEM_REJECT_INTR_MAP_V << INTERRUPT_CORE0_SPI_MEM_REJECT_INTR_MAP_S) +#define INTERRUPT_CORE0_SPI_MEM_REJECT_INTR_MAP_V 0x0000001f +#define INTERRUPT_CORE0_SPI_MEM_REJECT_INTR_MAP_S 0 + +/* INTERRUPT_CORE0_DCACHE_PRELOAD_INT_MAP_REG register + * dcache_prelaod interrupt configuration register + */ + +#define INTERRUPT_CORE0_DCACHE_PRELOAD_INT_MAP_REG (DR_REG_INTERRUPT_CORE0_BASE + 0xf4) + +/* INTERRUPT_CORE0_DCACHE_PRELOAD_INT_MAP : R/W; bitpos: [4:0]; default: 16; + * this register used to map dcache_prelaod interrupt to one of core0's + * external interrupt + */ + +#define INTERRUPT_CORE0_DCACHE_PRELOAD_INT_MAP 0x0000001f +#define INTERRUPT_CORE0_DCACHE_PRELOAD_INT_MAP_M (INTERRUPT_CORE0_DCACHE_PRELOAD_INT_MAP_V << INTERRUPT_CORE0_DCACHE_PRELOAD_INT_MAP_S) +#define INTERRUPT_CORE0_DCACHE_PRELOAD_INT_MAP_V 0x0000001f +#define INTERRUPT_CORE0_DCACHE_PRELOAD_INT_MAP_S 0 + +/* INTERRUPT_CORE0_ICACHE_PRELOAD_INT_MAP_REG register + * icache_preload interrupt configuration register + */ + +#define INTERRUPT_CORE0_ICACHE_PRELOAD_INT_MAP_REG (DR_REG_INTERRUPT_CORE0_BASE + 0xf8) + +/* INTERRUPT_CORE0_ICACHE_PRELOAD_INT_MAP : R/W; bitpos: [4:0]; default: 16; + * this register used to map icache_preload interrupt to one of core0's + * external interrupt + */ + +#define INTERRUPT_CORE0_ICACHE_PRELOAD_INT_MAP 0x0000001f +#define INTERRUPT_CORE0_ICACHE_PRELOAD_INT_MAP_M (INTERRUPT_CORE0_ICACHE_PRELOAD_INT_MAP_V << INTERRUPT_CORE0_ICACHE_PRELOAD_INT_MAP_S) +#define INTERRUPT_CORE0_ICACHE_PRELOAD_INT_MAP_V 0x0000001f +#define INTERRUPT_CORE0_ICACHE_PRELOAD_INT_MAP_S 0 + +/* INTERRUPT_CORE0_DCACHE_SYNC_INT_MAP_REG register + * dcache_sync interrupt configuration register + */ + +#define INTERRUPT_CORE0_DCACHE_SYNC_INT_MAP_REG (DR_REG_INTERRUPT_CORE0_BASE + 0xfc) + +/* INTERRUPT_CORE0_DCACHE_SYNC_INT_MAP : R/W; bitpos: [4:0]; default: 16; + * this register used to map dcache_sync interrupt to one of core0's + * external interrupt + */ + +#define INTERRUPT_CORE0_DCACHE_SYNC_INT_MAP 0x0000001f +#define INTERRUPT_CORE0_DCACHE_SYNC_INT_MAP_M (INTERRUPT_CORE0_DCACHE_SYNC_INT_MAP_V << INTERRUPT_CORE0_DCACHE_SYNC_INT_MAP_S) +#define INTERRUPT_CORE0_DCACHE_SYNC_INT_MAP_V 0x0000001f +#define INTERRUPT_CORE0_DCACHE_SYNC_INT_MAP_S 0 + +/* INTERRUPT_CORE0_ICACHE_SYNC_INT_MAP_REG register + * icache_sync interrupt configuration register + */ + +#define INTERRUPT_CORE0_ICACHE_SYNC_INT_MAP_REG (DR_REG_INTERRUPT_CORE0_BASE + 0x100) + +/* INTERRUPT_CORE0_ICACHE_SYNC_INT_MAP : R/W; bitpos: [4:0]; default: 16; + * this register used to map icache_sync interrupt to one of core0's + * external interrupt + */ + +#define INTERRUPT_CORE0_ICACHE_SYNC_INT_MAP 0x0000001f +#define INTERRUPT_CORE0_ICACHE_SYNC_INT_MAP_M (INTERRUPT_CORE0_ICACHE_SYNC_INT_MAP_V << INTERRUPT_CORE0_ICACHE_SYNC_INT_MAP_S) +#define INTERRUPT_CORE0_ICACHE_SYNC_INT_MAP_V 0x0000001f +#define INTERRUPT_CORE0_ICACHE_SYNC_INT_MAP_S 0 + +/* INTERRUPT_CORE0_APB_ADC_INT_MAP_REG register + * apb_adc interrupt configuration register + */ + +#define INTERRUPT_CORE0_APB_ADC_INT_MAP_REG (DR_REG_INTERRUPT_CORE0_BASE + 0x104) + +/* INTERRUPT_CORE0_APB_ADC_INT_MAP : R/W; bitpos: [4:0]; default: 16; + * this register used to map apb_adc interrupt to one of core0's external + * interrupt + */ + +#define INTERRUPT_CORE0_APB_ADC_INT_MAP 0x0000001f +#define INTERRUPT_CORE0_APB_ADC_INT_MAP_M (INTERRUPT_CORE0_APB_ADC_INT_MAP_V << INTERRUPT_CORE0_APB_ADC_INT_MAP_S) +#define INTERRUPT_CORE0_APB_ADC_INT_MAP_V 0x0000001f +#define INTERRUPT_CORE0_APB_ADC_INT_MAP_S 0 + +/* INTERRUPT_CORE0_DMA_IN_CH0_INT_MAP_REG register + * dma_in_ch0 interrupt configuration register + */ + +#define INTERRUPT_CORE0_DMA_IN_CH0_INT_MAP_REG (DR_REG_INTERRUPT_CORE0_BASE + 0x108) + +/* INTERRUPT_CORE0_DMA_IN_CH0_INT_MAP : R/W; bitpos: [4:0]; default: 16; + * this register used to map dma_in_ch0 interrupt to one of core0's external + * interrupt + */ + +#define INTERRUPT_CORE0_DMA_IN_CH0_INT_MAP 0x0000001f +#define INTERRUPT_CORE0_DMA_IN_CH0_INT_MAP_M (INTERRUPT_CORE0_DMA_IN_CH0_INT_MAP_V << INTERRUPT_CORE0_DMA_IN_CH0_INT_MAP_S) +#define INTERRUPT_CORE0_DMA_IN_CH0_INT_MAP_V 0x0000001f +#define INTERRUPT_CORE0_DMA_IN_CH0_INT_MAP_S 0 + +/* INTERRUPT_CORE0_DMA_IN_CH1_INT_MAP_REG register + * dma_in_ch1 interrupt configuration register + */ + +#define INTERRUPT_CORE0_DMA_IN_CH1_INT_MAP_REG (DR_REG_INTERRUPT_CORE0_BASE + 0x10c) + +/* INTERRUPT_CORE0_DMA_IN_CH1_INT_MAP : R/W; bitpos: [4:0]; default: 16; + * this register used to map dma_in_ch1 interrupt to one of core0's external + * interrupt + */ + +#define INTERRUPT_CORE0_DMA_IN_CH1_INT_MAP 0x0000001f +#define INTERRUPT_CORE0_DMA_IN_CH1_INT_MAP_M (INTERRUPT_CORE0_DMA_IN_CH1_INT_MAP_V << INTERRUPT_CORE0_DMA_IN_CH1_INT_MAP_S) +#define INTERRUPT_CORE0_DMA_IN_CH1_INT_MAP_V 0x0000001f +#define INTERRUPT_CORE0_DMA_IN_CH1_INT_MAP_S 0 + +/* INTERRUPT_CORE0_DMA_IN_CH2_INT_MAP_REG register + * dma_in_ch2 interrupt configuration register + */ + +#define INTERRUPT_CORE0_DMA_IN_CH2_INT_MAP_REG (DR_REG_INTERRUPT_CORE0_BASE + 0x110) + +/* INTERRUPT_CORE0_DMA_IN_CH2_INT_MAP : R/W; bitpos: [4:0]; default: 16; + * this register used to map dma_in_ch2 interrupt to one of core0's external + * interrupt + */ + +#define INTERRUPT_CORE0_DMA_IN_CH2_INT_MAP 0x0000001f +#define INTERRUPT_CORE0_DMA_IN_CH2_INT_MAP_M (INTERRUPT_CORE0_DMA_IN_CH2_INT_MAP_V << INTERRUPT_CORE0_DMA_IN_CH2_INT_MAP_S) +#define INTERRUPT_CORE0_DMA_IN_CH2_INT_MAP_V 0x0000001f +#define INTERRUPT_CORE0_DMA_IN_CH2_INT_MAP_S 0 + +/* INTERRUPT_CORE0_DMA_IN_CH3_INT_MAP_REG register + * dma_in_ch3 interrupt configuration register + */ + +#define INTERRUPT_CORE0_DMA_IN_CH3_INT_MAP_REG (DR_REG_INTERRUPT_CORE0_BASE + 0x114) + +/* INTERRUPT_CORE0_DMA_IN_CH3_INT_MAP : R/W; bitpos: [4:0]; default: 16; + * this register used to map dma_in_ch3 interrupt to one of core0's external + * interrupt + */ + +#define INTERRUPT_CORE0_DMA_IN_CH3_INT_MAP 0x0000001f +#define INTERRUPT_CORE0_DMA_IN_CH3_INT_MAP_M (INTERRUPT_CORE0_DMA_IN_CH3_INT_MAP_V << INTERRUPT_CORE0_DMA_IN_CH3_INT_MAP_S) +#define INTERRUPT_CORE0_DMA_IN_CH3_INT_MAP_V 0x0000001f +#define INTERRUPT_CORE0_DMA_IN_CH3_INT_MAP_S 0 + +/* INTERRUPT_CORE0_DMA_IN_CH4_INT_MAP_REG register + * dma_in_ch4 interrupt configuration register + */ + +#define INTERRUPT_CORE0_DMA_IN_CH4_INT_MAP_REG (DR_REG_INTERRUPT_CORE0_BASE + 0x118) + +/* INTERRUPT_CORE0_DMA_IN_CH4_INT_MAP : R/W; bitpos: [4:0]; default: 16; + * this register used to map dma_in_ch4 interrupt to one of core0's external + * interrupt + */ + +#define INTERRUPT_CORE0_DMA_IN_CH4_INT_MAP 0x0000001f +#define INTERRUPT_CORE0_DMA_IN_CH4_INT_MAP_M (INTERRUPT_CORE0_DMA_IN_CH4_INT_MAP_V << INTERRUPT_CORE0_DMA_IN_CH4_INT_MAP_S) +#define INTERRUPT_CORE0_DMA_IN_CH4_INT_MAP_V 0x0000001f +#define INTERRUPT_CORE0_DMA_IN_CH4_INT_MAP_S 0 + +/* INTERRUPT_CORE0_DMA_OUT_CH0_INT_MAP_REG register + * dma_out_ch0 interrupt configuration register + */ + +#define INTERRUPT_CORE0_DMA_OUT_CH0_INT_MAP_REG (DR_REG_INTERRUPT_CORE0_BASE + 0x11c) + +/* INTERRUPT_CORE0_DMA_OUT_CH0_INT_MAP : R/W; bitpos: [4:0]; default: 16; + * this register used to map dma_out_ch0 interrupt to one of core0's + * external interrupt + */ + +#define INTERRUPT_CORE0_DMA_OUT_CH0_INT_MAP 0x0000001f +#define INTERRUPT_CORE0_DMA_OUT_CH0_INT_MAP_M (INTERRUPT_CORE0_DMA_OUT_CH0_INT_MAP_V << INTERRUPT_CORE0_DMA_OUT_CH0_INT_MAP_S) +#define INTERRUPT_CORE0_DMA_OUT_CH0_INT_MAP_V 0x0000001f +#define INTERRUPT_CORE0_DMA_OUT_CH0_INT_MAP_S 0 + +/* INTERRUPT_CORE0_DMA_OUT_CH1_INT_MAP_REG register + * dma_out_ch1 interrupt configuration register + */ + +#define INTERRUPT_CORE0_DMA_OUT_CH1_INT_MAP_REG (DR_REG_INTERRUPT_CORE0_BASE + 0x120) + +/* INTERRUPT_CORE0_DMA_OUT_CH1_INT_MAP : R/W; bitpos: [4:0]; default: 16; + * this register used to map dma_out_ch1 interrupt to one of core0's + * external interrupt + */ + +#define INTERRUPT_CORE0_DMA_OUT_CH1_INT_MAP 0x0000001f +#define INTERRUPT_CORE0_DMA_OUT_CH1_INT_MAP_M (INTERRUPT_CORE0_DMA_OUT_CH1_INT_MAP_V << INTERRUPT_CORE0_DMA_OUT_CH1_INT_MAP_S) +#define INTERRUPT_CORE0_DMA_OUT_CH1_INT_MAP_V 0x0000001f +#define INTERRUPT_CORE0_DMA_OUT_CH1_INT_MAP_S 0 + +/* INTERRUPT_CORE0_DMA_OUT_CH2_INT_MAP_REG register + * dma_out_ch2 interrupt configuration register + */ + +#define INTERRUPT_CORE0_DMA_OUT_CH2_INT_MAP_REG (DR_REG_INTERRUPT_CORE0_BASE + 0x124) + +/* INTERRUPT_CORE0_DMA_OUT_CH2_INT_MAP : R/W; bitpos: [4:0]; default: 16; + * this register used to map dma_out_ch2 interrupt to one of core0's + * external interrupt + */ + +#define INTERRUPT_CORE0_DMA_OUT_CH2_INT_MAP 0x0000001f +#define INTERRUPT_CORE0_DMA_OUT_CH2_INT_MAP_M (INTERRUPT_CORE0_DMA_OUT_CH2_INT_MAP_V << INTERRUPT_CORE0_DMA_OUT_CH2_INT_MAP_S) +#define INTERRUPT_CORE0_DMA_OUT_CH2_INT_MAP_V 0x0000001f +#define INTERRUPT_CORE0_DMA_OUT_CH2_INT_MAP_S 0 + +/* INTERRUPT_CORE0_DMA_OUT_CH3_INT_MAP_REG register + * dma_out_ch3 interrupt configuration register + */ + +#define INTERRUPT_CORE0_DMA_OUT_CH3_INT_MAP_REG (DR_REG_INTERRUPT_CORE0_BASE + 0x128) + +/* INTERRUPT_CORE0_DMA_OUT_CH3_INT_MAP : R/W; bitpos: [4:0]; default: 16; + * this register used to map dma_out_ch3 interrupt to one of core0's + * external interrupt + */ + +#define INTERRUPT_CORE0_DMA_OUT_CH3_INT_MAP 0x0000001f +#define INTERRUPT_CORE0_DMA_OUT_CH3_INT_MAP_M (INTERRUPT_CORE0_DMA_OUT_CH3_INT_MAP_V << INTERRUPT_CORE0_DMA_OUT_CH3_INT_MAP_S) +#define INTERRUPT_CORE0_DMA_OUT_CH3_INT_MAP_V 0x0000001f +#define INTERRUPT_CORE0_DMA_OUT_CH3_INT_MAP_S 0 + +/* INTERRUPT_CORE0_DMA_OUT_CH4_INT_MAP_REG register + * dma_out_ch4 interrupt configuration register + */ + +#define INTERRUPT_CORE0_DMA_OUT_CH4_INT_MAP_REG (DR_REG_INTERRUPT_CORE0_BASE + 0x12c) + +/* INTERRUPT_CORE0_DMA_OUT_CH4_INT_MAP : R/W; bitpos: [4:0]; default: 16; + * this register used to map dma_out_ch4 interrupt to one of core0's + * external interrupt + */ + +#define INTERRUPT_CORE0_DMA_OUT_CH4_INT_MAP 0x0000001f +#define INTERRUPT_CORE0_DMA_OUT_CH4_INT_MAP_M (INTERRUPT_CORE0_DMA_OUT_CH4_INT_MAP_V << INTERRUPT_CORE0_DMA_OUT_CH4_INT_MAP_S) +#define INTERRUPT_CORE0_DMA_OUT_CH4_INT_MAP_V 0x0000001f +#define INTERRUPT_CORE0_DMA_OUT_CH4_INT_MAP_S 0 + +/* INTERRUPT_CORE0_RSA_INT_MAP_REG register + * rsa interrupt configuration register + */ + +#define INTERRUPT_CORE0_RSA_INT_MAP_REG (DR_REG_INTERRUPT_CORE0_BASE + 0x130) + +/* INTERRUPT_CORE0_RSA_INT_MAP : R/W; bitpos: [4:0]; default: 16; + * this register used to map rsa interrupt to one of core0's external + * interrupt + */ + +#define INTERRUPT_CORE0_RSA_INT_MAP 0x0000001f +#define INTERRUPT_CORE0_RSA_INT_MAP_M (INTERRUPT_CORE0_RSA_INT_MAP_V << INTERRUPT_CORE0_RSA_INT_MAP_S) +#define INTERRUPT_CORE0_RSA_INT_MAP_V 0x0000001f +#define INTERRUPT_CORE0_RSA_INT_MAP_S 0 + +/* INTERRUPT_CORE0_AES_INT_MAP_REG register + * aes interrupt configuration register + */ + +#define INTERRUPT_CORE0_AES_INT_MAP_REG (DR_REG_INTERRUPT_CORE0_BASE + 0x134) + +/* INTERRUPT_CORE0_AES_INT_MAP : R/W; bitpos: [4:0]; default: 16; + * this register used to map aes interrupt to one of core0's external + * interrupt + */ + +#define INTERRUPT_CORE0_AES_INT_MAP 0x0000001f +#define INTERRUPT_CORE0_AES_INT_MAP_M (INTERRUPT_CORE0_AES_INT_MAP_V << INTERRUPT_CORE0_AES_INT_MAP_S) +#define INTERRUPT_CORE0_AES_INT_MAP_V 0x0000001f +#define INTERRUPT_CORE0_AES_INT_MAP_S 0 + +/* INTERRUPT_CORE0_SHA_INT_MAP_REG register + * sha interrupt configuration register + */ + +#define INTERRUPT_CORE0_SHA_INT_MAP_REG (DR_REG_INTERRUPT_CORE0_BASE + 0x138) + +/* INTERRUPT_CORE0_SHA_INT_MAP : R/W; bitpos: [4:0]; default: 16; + * this register used to map sha interrupt to one of core0's external + * interrupt + */ + +#define INTERRUPT_CORE0_SHA_INT_MAP 0x0000001f +#define INTERRUPT_CORE0_SHA_INT_MAP_M (INTERRUPT_CORE0_SHA_INT_MAP_V << INTERRUPT_CORE0_SHA_INT_MAP_S) +#define INTERRUPT_CORE0_SHA_INT_MAP_V 0x0000001f +#define INTERRUPT_CORE0_SHA_INT_MAP_S 0 + +/* INTERRUPT_CORE0_CPU_INTR_FROM_CPU_0_MAP_REG register + * cpu_intr_from_cpu_0 interrupt configuration register + */ + +#define INTERRUPT_CORE0_CPU_INTR_FROM_CPU_0_MAP_REG (DR_REG_INTERRUPT_CORE0_BASE + 0x13c) + +/* INTERRUPT_CORE0_CPU_INTR_FROM_CPU_0_MAP : R/W; bitpos: [4:0]; default: 16; + * this register used to map cpu_intr_from_cpu_0 interrupt to one of core0's + * external interrupt + */ + +#define INTERRUPT_CORE0_CPU_INTR_FROM_CPU_0_MAP 0x0000001f +#define INTERRUPT_CORE0_CPU_INTR_FROM_CPU_0_MAP_M (INTERRUPT_CORE0_CPU_INTR_FROM_CPU_0_MAP_V << INTERRUPT_CORE0_CPU_INTR_FROM_CPU_0_MAP_S) +#define INTERRUPT_CORE0_CPU_INTR_FROM_CPU_0_MAP_V 0x0000001f +#define INTERRUPT_CORE0_CPU_INTR_FROM_CPU_0_MAP_S 0 + +/* INTERRUPT_CORE0_CPU_INTR_FROM_CPU_1_MAP_REG register + * cpu_intr_from_cpu_1 interrupt configuration register + */ + +#define INTERRUPT_CORE0_CPU_INTR_FROM_CPU_1_MAP_REG (DR_REG_INTERRUPT_CORE0_BASE + 0x140) + +/* INTERRUPT_CORE0_CPU_INTR_FROM_CPU_1_MAP : R/W; bitpos: [4:0]; default: 16; + * this register used to map cpu_intr_from_cpu_1 interrupt to one of core0's + * external interrupt + */ + +#define INTERRUPT_CORE0_CPU_INTR_FROM_CPU_1_MAP 0x0000001f +#define INTERRUPT_CORE0_CPU_INTR_FROM_CPU_1_MAP_M (INTERRUPT_CORE0_CPU_INTR_FROM_CPU_1_MAP_V << INTERRUPT_CORE0_CPU_INTR_FROM_CPU_1_MAP_S) +#define INTERRUPT_CORE0_CPU_INTR_FROM_CPU_1_MAP_V 0x0000001f +#define INTERRUPT_CORE0_CPU_INTR_FROM_CPU_1_MAP_S 0 + +/* INTERRUPT_CORE0_CPU_INTR_FROM_CPU_2_MAP_REG register + * cpu_intr_from_cpu_2 interrupt configuration register + */ + +#define INTERRUPT_CORE0_CPU_INTR_FROM_CPU_2_MAP_REG (DR_REG_INTERRUPT_CORE0_BASE + 0x144) + +/* INTERRUPT_CORE0_CPU_INTR_FROM_CPU_2_MAP : R/W; bitpos: [4:0]; default: 16; + * this register used to map cpu_intr_from_cpu_2 interrupt to one of core0's + * external interrupt + */ + +#define INTERRUPT_CORE0_CPU_INTR_FROM_CPU_2_MAP 0x0000001f +#define INTERRUPT_CORE0_CPU_INTR_FROM_CPU_2_MAP_M (INTERRUPT_CORE0_CPU_INTR_FROM_CPU_2_MAP_V << INTERRUPT_CORE0_CPU_INTR_FROM_CPU_2_MAP_S) +#define INTERRUPT_CORE0_CPU_INTR_FROM_CPU_2_MAP_V 0x0000001f +#define INTERRUPT_CORE0_CPU_INTR_FROM_CPU_2_MAP_S 0 + +/* INTERRUPT_CORE0_CPU_INTR_FROM_CPU_3_MAP_REG register + * cpu_intr_from_cpu_3 interrupt configuration register + */ + +#define INTERRUPT_CORE0_CPU_INTR_FROM_CPU_3_MAP_REG (DR_REG_INTERRUPT_CORE0_BASE + 0x148) + +/* INTERRUPT_CORE0_CPU_INTR_FROM_CPU_3_MAP : R/W; bitpos: [4:0]; default: 16; + * this register used to map cpu_intr_from_cpu_3 interrupt to one of core0's + * external interrupt + */ + +#define INTERRUPT_CORE0_CPU_INTR_FROM_CPU_3_MAP 0x0000001f +#define INTERRUPT_CORE0_CPU_INTR_FROM_CPU_3_MAP_M (INTERRUPT_CORE0_CPU_INTR_FROM_CPU_3_MAP_V << INTERRUPT_CORE0_CPU_INTR_FROM_CPU_3_MAP_S) +#define INTERRUPT_CORE0_CPU_INTR_FROM_CPU_3_MAP_V 0x0000001f +#define INTERRUPT_CORE0_CPU_INTR_FROM_CPU_3_MAP_S 0 + +/* INTERRUPT_CORE0_ASSIST_DEBUG_INTR_MAP_REG register + * assist_debug interrupt configuration register + */ + +#define INTERRUPT_CORE0_ASSIST_DEBUG_INTR_MAP_REG (DR_REG_INTERRUPT_CORE0_BASE + 0x14c) + +/* INTERRUPT_CORE0_ASSIST_DEBUG_INTR_MAP : R/W; bitpos: [4:0]; default: 16; + * this register used to map assist_debug interrupt to one of core0's + * external interrupt + */ + +#define INTERRUPT_CORE0_ASSIST_DEBUG_INTR_MAP 0x0000001f +#define INTERRUPT_CORE0_ASSIST_DEBUG_INTR_MAP_M (INTERRUPT_CORE0_ASSIST_DEBUG_INTR_MAP_V << INTERRUPT_CORE0_ASSIST_DEBUG_INTR_MAP_S) +#define INTERRUPT_CORE0_ASSIST_DEBUG_INTR_MAP_V 0x0000001f +#define INTERRUPT_CORE0_ASSIST_DEBUG_INTR_MAP_S 0 + +/* INTERRUPT_CORE0_DMA_APBPERI_PMS_MONITOR_VIOLATE_INTR_MAP_REG register + * dma_pms_monitor_violatile interrupt configuration register + */ + +#define INTERRUPT_CORE0_DMA_APBPERI_PMS_MONITOR_VIOLATE_INTR_MAP_REG (DR_REG_INTERRUPT_CORE0_BASE + 0x150) + +/* INTERRUPT_CORE0_DMA_APBPERI_PMS_MONITOR_VIOLATE_INTR_MAP : R/W; bitpos: + * [4:0]; default: 16; + * this register used to map dma_pms_monitor_violatile interrupt to one of + * core0's external interrupt + */ + +#define INTERRUPT_CORE0_DMA_APBPERI_PMS_MONITOR_VIOLATE_INTR_MAP 0x0000001f +#define INTERRUPT_CORE0_DMA_APBPERI_PMS_MONITOR_VIOLATE_INTR_MAP_M (INTERRUPT_CORE0_DMA_APBPERI_PMS_MONITOR_VIOLATE_INTR_MAP_V << INTERRUPT_CORE0_DMA_APBPERI_PMS_MONITOR_VIOLATE_INTR_MAP_S) +#define INTERRUPT_CORE0_DMA_APBPERI_PMS_MONITOR_VIOLATE_INTR_MAP_V 0x0000001f +#define INTERRUPT_CORE0_DMA_APBPERI_PMS_MONITOR_VIOLATE_INTR_MAP_S 0 + +/* INTERRUPT_CORE0_CORE_0_IRAM0_PMS_MONITOR_VIOLATE_INTR_MAP_REG register + * core0_IRam0_pms_monitor_violatile interrupt configuration register + */ + +#define INTERRUPT_CORE0_CORE_0_IRAM0_PMS_MONITOR_VIOLATE_INTR_MAP_REG (DR_REG_INTERRUPT_CORE0_BASE + 0x154) + +/* INTERRUPT_CORE0_CORE_0_IRAM0_PMS_MONITOR_VIOLATE_INTR_MAP : R/W; bitpos: + * [4:0]; default: 16; + * this register used to map core0_IRam0_pms_monitor_violatile interrupt to + * one of core0's external interrupt + */ + +#define INTERRUPT_CORE0_CORE_0_IRAM0_PMS_MONITOR_VIOLATE_INTR_MAP 0x0000001f +#define INTERRUPT_CORE0_CORE_0_IRAM0_PMS_MONITOR_VIOLATE_INTR_MAP_M (INTERRUPT_CORE0_CORE_0_IRAM0_PMS_MONITOR_VIOLATE_INTR_MAP_V << INTERRUPT_CORE0_CORE_0_IRAM0_PMS_MONITOR_VIOLATE_INTR_MAP_S) +#define INTERRUPT_CORE0_CORE_0_IRAM0_PMS_MONITOR_VIOLATE_INTR_MAP_V 0x0000001f +#define INTERRUPT_CORE0_CORE_0_IRAM0_PMS_MONITOR_VIOLATE_INTR_MAP_S 0 + +/* INTERRUPT_CORE0_CORE_0_DRAM0_PMS_MONITOR_VIOLATE_INTR_MAP_REG register + * core0_DRam0_pms_monitor_violatile interrupt configuration register + */ + +#define INTERRUPT_CORE0_CORE_0_DRAM0_PMS_MONITOR_VIOLATE_INTR_MAP_REG (DR_REG_INTERRUPT_CORE0_BASE + 0x158) + +/* INTERRUPT_CORE0_CORE_0_DRAM0_PMS_MONITOR_VIOLATE_INTR_MAP : R/W; bitpos: + * [4:0]; default: 16; + * this register used to map core0_DRam0_pms_monitor_violatile interrupt to + * one of core0's external interrupt + */ + +#define INTERRUPT_CORE0_CORE_0_DRAM0_PMS_MONITOR_VIOLATE_INTR_MAP 0x0000001f +#define INTERRUPT_CORE0_CORE_0_DRAM0_PMS_MONITOR_VIOLATE_INTR_MAP_M (INTERRUPT_CORE0_CORE_0_DRAM0_PMS_MONITOR_VIOLATE_INTR_MAP_V << INTERRUPT_CORE0_CORE_0_DRAM0_PMS_MONITOR_VIOLATE_INTR_MAP_S) +#define INTERRUPT_CORE0_CORE_0_DRAM0_PMS_MONITOR_VIOLATE_INTR_MAP_V 0x0000001f +#define INTERRUPT_CORE0_CORE_0_DRAM0_PMS_MONITOR_VIOLATE_INTR_MAP_S 0 + +/* INTERRUPT_CORE0_CORE_0_PIF_PMS_MONITOR_VIOLATE_INTR_MAP_REG register + * core0_PIF_pms_monitor_violatile interrupt configuration register + */ + +#define INTERRUPT_CORE0_CORE_0_PIF_PMS_MONITOR_VIOLATE_INTR_MAP_REG (DR_REG_INTERRUPT_CORE0_BASE + 0x15c) + +/* INTERRUPT_CORE0_CORE_0_PIF_PMS_MONITOR_VIOLATE_INTR_MAP : R/W; bitpos: + * [4:0]; default: 16; + * this register used to map core0_PIF_pms_monitor_violatile interrupt to + * one of core0's external interrupt + */ + +#define INTERRUPT_CORE0_CORE_0_PIF_PMS_MONITOR_VIOLATE_INTR_MAP 0x0000001f +#define INTERRUPT_CORE0_CORE_0_PIF_PMS_MONITOR_VIOLATE_INTR_MAP_M (INTERRUPT_CORE0_CORE_0_PIF_PMS_MONITOR_VIOLATE_INTR_MAP_V << INTERRUPT_CORE0_CORE_0_PIF_PMS_MONITOR_VIOLATE_INTR_MAP_S) +#define INTERRUPT_CORE0_CORE_0_PIF_PMS_MONITOR_VIOLATE_INTR_MAP_V 0x0000001f +#define INTERRUPT_CORE0_CORE_0_PIF_PMS_MONITOR_VIOLATE_INTR_MAP_S 0 + +/* INTERRUPT_CORE0_CORE_0_PIF_PMS_MONITOR_VIOLATE_SIZE_INTR_MAP_REG register + * core0_PIF_pms_monitor_violatile_size interrupt configuration register + */ + +#define INTERRUPT_CORE0_CORE_0_PIF_PMS_MONITOR_VIOLATE_SIZE_INTR_MAP_REG (DR_REG_INTERRUPT_CORE0_BASE + 0x160) + +/* INTERRUPT_CORE0_CORE_0_PIF_PMS_MONITOR_VIOLATE_SIZE_INTR_MAP : R/W; + * bitpos: [4:0]; default: 16; + * this register used to map core0_PIF_pms_monitor_violatile_size interrupt + * to one of core0's external interrupt + */ + +#define INTERRUPT_CORE0_CORE_0_PIF_PMS_MONITOR_VIOLATE_SIZE_INTR_MAP 0x0000001f +#define INTERRUPT_CORE0_CORE_0_PIF_PMS_MONITOR_VIOLATE_SIZE_INTR_MAP_M (INTERRUPT_CORE0_CORE_0_PIF_PMS_MONITOR_VIOLATE_SIZE_INTR_MAP_V << INTERRUPT_CORE0_CORE_0_PIF_PMS_MONITOR_VIOLATE_SIZE_INTR_MAP_S) +#define INTERRUPT_CORE0_CORE_0_PIF_PMS_MONITOR_VIOLATE_SIZE_INTR_MAP_V 0x0000001f +#define INTERRUPT_CORE0_CORE_0_PIF_PMS_MONITOR_VIOLATE_SIZE_INTR_MAP_S 0 + +/* INTERRUPT_CORE0_CORE_1_IRAM0_PMS_MONITOR_VIOLATE_INTR_MAP_REG register + * core1_IRam0_pms_monitor_violatile interrupt configuration register + */ + +#define INTERRUPT_CORE0_CORE_1_IRAM0_PMS_MONITOR_VIOLATE_INTR_MAP_REG (DR_REG_INTERRUPT_CORE0_BASE + 0x164) + +/* INTERRUPT_CORE0_CORE_1_IRAM0_PMS_MONITOR_VIOLATE_INTR_MAP : R/W; bitpos: + * [4:0]; default: 16; + * this register used to map core1_IRam0_pms_monitor_violatile interrupt to + * one of core0's external interrupt + */ + +#define INTERRUPT_CORE0_CORE_1_IRAM0_PMS_MONITOR_VIOLATE_INTR_MAP 0x0000001f +#define INTERRUPT_CORE0_CORE_1_IRAM0_PMS_MONITOR_VIOLATE_INTR_MAP_M (INTERRUPT_CORE0_CORE_1_IRAM0_PMS_MONITOR_VIOLATE_INTR_MAP_V << INTERRUPT_CORE0_CORE_1_IRAM0_PMS_MONITOR_VIOLATE_INTR_MAP_S) +#define INTERRUPT_CORE0_CORE_1_IRAM0_PMS_MONITOR_VIOLATE_INTR_MAP_V 0x0000001f +#define INTERRUPT_CORE0_CORE_1_IRAM0_PMS_MONITOR_VIOLATE_INTR_MAP_S 0 + +/* INTERRUPT_CORE0_CORE_1_DRAM0_PMS_MONITOR_VIOLATE_INTR_MAP_REG register + * core1_DRam0_pms_monitor_violatile interrupt configuration register + */ + +#define INTERRUPT_CORE0_CORE_1_DRAM0_PMS_MONITOR_VIOLATE_INTR_MAP_REG (DR_REG_INTERRUPT_CORE0_BASE + 0x168) + +/* INTERRUPT_CORE0_CORE_1_DRAM0_PMS_MONITOR_VIOLATE_INTR_MAP : R/W; bitpos: + * [4:0]; default: 16; + * this register used to map core1_DRam0_pms_monitor_violatile interrupt to + * one of core0's external interrupt + */ + +#define INTERRUPT_CORE0_CORE_1_DRAM0_PMS_MONITOR_VIOLATE_INTR_MAP 0x0000001f +#define INTERRUPT_CORE0_CORE_1_DRAM0_PMS_MONITOR_VIOLATE_INTR_MAP_M (INTERRUPT_CORE0_CORE_1_DRAM0_PMS_MONITOR_VIOLATE_INTR_MAP_V << INTERRUPT_CORE0_CORE_1_DRAM0_PMS_MONITOR_VIOLATE_INTR_MAP_S) +#define INTERRUPT_CORE0_CORE_1_DRAM0_PMS_MONITOR_VIOLATE_INTR_MAP_V 0x0000001f +#define INTERRUPT_CORE0_CORE_1_DRAM0_PMS_MONITOR_VIOLATE_INTR_MAP_S 0 + +/* INTERRUPT_CORE0_CORE_1_PIF_PMS_MONITOR_VIOLATE_INTR_MAP_REG register + * core1_PIF_pms_monitor_violatile interrupt configuration register + */ + +#define INTERRUPT_CORE0_CORE_1_PIF_PMS_MONITOR_VIOLATE_INTR_MAP_REG (DR_REG_INTERRUPT_CORE0_BASE + 0x16c) + +/* INTERRUPT_CORE0_CORE_1_PIF_PMS_MONITOR_VIOLATE_INTR_MAP : R/W; bitpos: + * [4:0]; default: 16; + * this register used to map core1_PIF_pms_monitor_violatile interrupt to + * one of core0's external interrupt + */ + +#define INTERRUPT_CORE0_CORE_1_PIF_PMS_MONITOR_VIOLATE_INTR_MAP 0x0000001f +#define INTERRUPT_CORE0_CORE_1_PIF_PMS_MONITOR_VIOLATE_INTR_MAP_M (INTERRUPT_CORE0_CORE_1_PIF_PMS_MONITOR_VIOLATE_INTR_MAP_V << INTERRUPT_CORE0_CORE_1_PIF_PMS_MONITOR_VIOLATE_INTR_MAP_S) +#define INTERRUPT_CORE0_CORE_1_PIF_PMS_MONITOR_VIOLATE_INTR_MAP_V 0x0000001f +#define INTERRUPT_CORE0_CORE_1_PIF_PMS_MONITOR_VIOLATE_INTR_MAP_S 0 + +/* INTERRUPT_CORE0_CORE_1_PIF_PMS_MONITOR_VIOLATE_SIZE_INTR_MAP_REG register + * core1_PIF_pms_monitor_violatile_size interrupt configuration register + */ + +#define INTERRUPT_CORE0_CORE_1_PIF_PMS_MONITOR_VIOLATE_SIZE_INTR_MAP_REG (DR_REG_INTERRUPT_CORE0_BASE + 0x170) + +/* INTERRUPT_CORE0_CORE_1_PIF_PMS_MONITOR_VIOLATE_SIZE_INTR_MAP : R/W; + * bitpos: [4:0]; default: 16; + * this register used to map core1_PIF_pms_monitor_violatile_size interrupt + * to one of core0's external interrupt + */ + +#define INTERRUPT_CORE0_CORE_1_PIF_PMS_MONITOR_VIOLATE_SIZE_INTR_MAP 0x0000001f +#define INTERRUPT_CORE0_CORE_1_PIF_PMS_MONITOR_VIOLATE_SIZE_INTR_MAP_M (INTERRUPT_CORE0_CORE_1_PIF_PMS_MONITOR_VIOLATE_SIZE_INTR_MAP_V << INTERRUPT_CORE0_CORE_1_PIF_PMS_MONITOR_VIOLATE_SIZE_INTR_MAP_S) +#define INTERRUPT_CORE0_CORE_1_PIF_PMS_MONITOR_VIOLATE_SIZE_INTR_MAP_V 0x0000001f +#define INTERRUPT_CORE0_CORE_1_PIF_PMS_MONITOR_VIOLATE_SIZE_INTR_MAP_S 0 + +/* INTERRUPT_CORE0_BACKUP_PMS_VIOLATE_INTR_MAP_REG register + * backup_pms_monitor_violatile interrupt configuration register + */ + +#define INTERRUPT_CORE0_BACKUP_PMS_VIOLATE_INTR_MAP_REG (DR_REG_INTERRUPT_CORE0_BASE + 0x174) + +/* INTERRUPT_CORE0_BACKUP_PMS_VIOLATE_INTR_MAP : R/W; bitpos: [4:0]; + * default: 16; + * this register used to map backup_pms_monitor_violatile interrupt to one + * of core0's external interrupt + */ + +#define INTERRUPT_CORE0_BACKUP_PMS_VIOLATE_INTR_MAP 0x0000001f +#define INTERRUPT_CORE0_BACKUP_PMS_VIOLATE_INTR_MAP_M (INTERRUPT_CORE0_BACKUP_PMS_VIOLATE_INTR_MAP_V << INTERRUPT_CORE0_BACKUP_PMS_VIOLATE_INTR_MAP_S) +#define INTERRUPT_CORE0_BACKUP_PMS_VIOLATE_INTR_MAP_V 0x0000001f +#define INTERRUPT_CORE0_BACKUP_PMS_VIOLATE_INTR_MAP_S 0 + +/* INTERRUPT_CORE0_CACHE_CORE0_ACS_INT_MAP_REG register + * cache_core0_acs interrupt configuration register + */ + +#define INTERRUPT_CORE0_CACHE_CORE0_ACS_INT_MAP_REG (DR_REG_INTERRUPT_CORE0_BASE + 0x178) + +/* INTERRUPT_CORE0_CACHE_CORE0_ACS_INT_MAP : R/W; bitpos: [4:0]; default: 16; + * this register used to map cache_core0_acs interrupt to one of core0's + * external interrupt + */ + +#define INTERRUPT_CORE0_CACHE_CORE0_ACS_INT_MAP 0x0000001f +#define INTERRUPT_CORE0_CACHE_CORE0_ACS_INT_MAP_M (INTERRUPT_CORE0_CACHE_CORE0_ACS_INT_MAP_V << INTERRUPT_CORE0_CACHE_CORE0_ACS_INT_MAP_S) +#define INTERRUPT_CORE0_CACHE_CORE0_ACS_INT_MAP_V 0x0000001f +#define INTERRUPT_CORE0_CACHE_CORE0_ACS_INT_MAP_S 0 + +/* INTERRUPT_CORE0_CACHE_CORE1_ACS_INT_MAP_REG register + * cache_core1_acs interrupt configuration register + */ + +#define INTERRUPT_CORE0_CACHE_CORE1_ACS_INT_MAP_REG (DR_REG_INTERRUPT_CORE0_BASE + 0x17c) + +/* INTERRUPT_CORE0_CACHE_CORE1_ACS_INT_MAP : R/W; bitpos: [4:0]; default: 16; + * this register used to map cache_core1_acs interrupt to one of core0's + * external interrupt + */ + +#define INTERRUPT_CORE0_CACHE_CORE1_ACS_INT_MAP 0x0000001f +#define INTERRUPT_CORE0_CACHE_CORE1_ACS_INT_MAP_M (INTERRUPT_CORE0_CACHE_CORE1_ACS_INT_MAP_V << INTERRUPT_CORE0_CACHE_CORE1_ACS_INT_MAP_S) +#define INTERRUPT_CORE0_CACHE_CORE1_ACS_INT_MAP_V 0x0000001f +#define INTERRUPT_CORE0_CACHE_CORE1_ACS_INT_MAP_S 0 + +/* INTERRUPT_CORE0_USB_DEVICE_INT_MAP_REG register + * usb_device interrupt configuration register + */ + +#define INTERRUPT_CORE0_USB_DEVICE_INT_MAP_REG (DR_REG_INTERRUPT_CORE0_BASE + 0x180) + +/* INTERRUPT_CORE0_USB_DEVICE_INT_MAP : R/W; bitpos: [4:0]; default: 16; + * this register used to map usb_device interrupt to one of core0's external + * interrupt + */ + +#define INTERRUPT_CORE0_USB_DEVICE_INT_MAP 0x0000001f +#define INTERRUPT_CORE0_USB_DEVICE_INT_MAP_M (INTERRUPT_CORE0_USB_DEVICE_INT_MAP_V << INTERRUPT_CORE0_USB_DEVICE_INT_MAP_S) +#define INTERRUPT_CORE0_USB_DEVICE_INT_MAP_V 0x0000001f +#define INTERRUPT_CORE0_USB_DEVICE_INT_MAP_S 0 + +/* INTERRUPT_CORE0_PERI_BACKUP_INT_MAP_REG register + * peri_backup interrupt configuration register + */ + +#define INTERRUPT_CORE0_PERI_BACKUP_INT_MAP_REG (DR_REG_INTERRUPT_CORE0_BASE + 0x184) + +/* INTERRUPT_CORE0_PERI_BACKUP_INT_MAP : R/W; bitpos: [4:0]; default: 16; + * this register used to map peri_backup interrupt to one of core0's + * external interrupt + */ + +#define INTERRUPT_CORE0_PERI_BACKUP_INT_MAP 0x0000001f +#define INTERRUPT_CORE0_PERI_BACKUP_INT_MAP_M (INTERRUPT_CORE0_PERI_BACKUP_INT_MAP_V << INTERRUPT_CORE0_PERI_BACKUP_INT_MAP_S) +#define INTERRUPT_CORE0_PERI_BACKUP_INT_MAP_V 0x0000001f +#define INTERRUPT_CORE0_PERI_BACKUP_INT_MAP_S 0 + +/* INTERRUPT_CORE0_DMA_EXTMEM_REJECT_INT_MAP_REG register + * dma_extmem_reject interrupt configuration register + */ + +#define INTERRUPT_CORE0_DMA_EXTMEM_REJECT_INT_MAP_REG (DR_REG_INTERRUPT_CORE0_BASE + 0x188) + +/* INTERRUPT_CORE0_DMA_EXTMEM_REJECT_INT_MAP : R/W; bitpos: [4:0]; default: + * 16; + * this register used to map dma_extmem_reject interrupt to one of core0's + * external interrupt + */ + +#define INTERRUPT_CORE0_DMA_EXTMEM_REJECT_INT_MAP 0x0000001f +#define INTERRUPT_CORE0_DMA_EXTMEM_REJECT_INT_MAP_M (INTERRUPT_CORE0_DMA_EXTMEM_REJECT_INT_MAP_V << INTERRUPT_CORE0_DMA_EXTMEM_REJECT_INT_MAP_S) +#define INTERRUPT_CORE0_DMA_EXTMEM_REJECT_INT_MAP_V 0x0000001f +#define INTERRUPT_CORE0_DMA_EXTMEM_REJECT_INT_MAP_S 0 + +/* INTERRUPT_CORE0_INTR_STATUS_0_REG register + * interrupt status register + */ + +#define INTERRUPT_CORE0_INTR_STATUS_0_REG (DR_REG_INTERRUPT_CORE0_BASE + 0x18c) + +/* INTERRUPT_CORE0_INTR_STATUS_0 : RO; bitpos: [31:0]; default: 0; + * this register store the status of the first 32 interrupt source + */ + +#define INTERRUPT_CORE0_INTR_STATUS_0 0xffffffff +#define INTERRUPT_CORE0_INTR_STATUS_0_M (INTERRUPT_CORE0_INTR_STATUS_0_V << INTERRUPT_CORE0_INTR_STATUS_0_S) +#define INTERRUPT_CORE0_INTR_STATUS_0_V 0xffffffff +#define INTERRUPT_CORE0_INTR_STATUS_0_S 0 + +/* INTERRUPT_CORE0_INTR_STATUS_1_REG register + * interrupt status register + */ + +#define INTERRUPT_CORE0_INTR_STATUS_1_REG (DR_REG_INTERRUPT_CORE0_BASE + 0x190) + +/* INTERRUPT_CORE0_INTR_STATUS_1 : RO; bitpos: [31:0]; default: 0; + * this register store the status of the first 32 interrupt source + */ + +#define INTERRUPT_CORE0_INTR_STATUS_1 0xffffffff +#define INTERRUPT_CORE0_INTR_STATUS_1_M (INTERRUPT_CORE0_INTR_STATUS_1_V << INTERRUPT_CORE0_INTR_STATUS_1_S) +#define INTERRUPT_CORE0_INTR_STATUS_1_V 0xffffffff +#define INTERRUPT_CORE0_INTR_STATUS_1_S 0 + +/* INTERRUPT_CORE0_INTR_STATUS_2_REG register + * interrupt status register + */ + +#define INTERRUPT_CORE0_INTR_STATUS_2_REG (DR_REG_INTERRUPT_CORE0_BASE + 0x194) + +/* INTERRUPT_CORE0_INTR_STATUS_2 : RO; bitpos: [31:0]; default: 0; + * this register store the status of the first 32 interrupt source + */ + +#define INTERRUPT_CORE0_INTR_STATUS_2 0xffffffff +#define INTERRUPT_CORE0_INTR_STATUS_2_M (INTERRUPT_CORE0_INTR_STATUS_2_V << INTERRUPT_CORE0_INTR_STATUS_2_S) +#define INTERRUPT_CORE0_INTR_STATUS_2_V 0xffffffff +#define INTERRUPT_CORE0_INTR_STATUS_2_S 0 + +/* INTERRUPT_CORE0_INTR_STATUS_3_REG register + * interrupt status register + */ + +#define INTERRUPT_CORE0_INTR_STATUS_3_REG (DR_REG_INTERRUPT_CORE0_BASE + 0x198) + +/* INTERRUPT_CORE0_INTR_STATUS_3 : RO; bitpos: [31:0]; default: 0; + * this register store the status of the first 32 interrupt source + */ + +#define INTERRUPT_CORE0_INTR_STATUS_3 0xffffffff +#define INTERRUPT_CORE0_INTR_STATUS_3_M (INTERRUPT_CORE0_INTR_STATUS_3_V << INTERRUPT_CORE0_INTR_STATUS_3_S) +#define INTERRUPT_CORE0_INTR_STATUS_3_V 0xffffffff +#define INTERRUPT_CORE0_INTR_STATUS_3_S 0 + +/* INTERRUPT_CORE0_CLOCK_GATE_REG register + * clock gate register + */ + +#define INTERRUPT_CORE0_CLOCK_GATE_REG (DR_REG_INTERRUPT_CORE0_BASE + 0x19c) + +/* INTERRUPT_CORE0_REG_CLK_EN : R/W; bitpos: [0]; default: 1; + * this register uesd to control clock-gating interupt martrix + */ + +#define INTERRUPT_CORE0_REG_CLK_EN (BIT(0)) +#define INTERRUPT_CORE0_REG_CLK_EN_M (INTERRUPT_CORE0_REG_CLK_EN_V << INTERRUPT_CORE0_REG_CLK_EN_S) +#define INTERRUPT_CORE0_REG_CLK_EN_V 0x00000001 +#define INTERRUPT_CORE0_REG_CLK_EN_S 0 + +/* INTERRUPT_CORE0_DATE_REG register + * version register + */ + +#define INTERRUPT_CORE0_DATE_REG (DR_REG_INTERRUPT_CORE0_BASE + 0x7fc) + +/* INTERRUPT_CORE0_INTERRUPT_REG_DATE : R/W; bitpos: [27:0]; default: + * 33628928; + * version register + */ + +#define INTERRUPT_CORE0_INTERRUPT_REG_DATE 0x0fffffff +#define INTERRUPT_CORE0_INTERRUPT_REG_DATE_M (INTERRUPT_CORE0_INTERRUPT_REG_DATE_V << INTERRUPT_CORE0_INTERRUPT_REG_DATE_S) +#define INTERRUPT_CORE0_INTERRUPT_REG_DATE_V 0x0fffffff +#define INTERRUPT_CORE0_INTERRUPT_REG_DATE_S 0 + +#endif /* __ARCH_XTENSA_SRC_ESP32S3_HARDWARE_ESP32S3_INTERRUPT_CORE0_H */ diff --git a/arch/xtensa/src/esp32s3/hardware/esp32s3_interrupt_core1.h b/arch/xtensa/src/esp32s3/hardware/esp32s3_interrupt_core1.h new file mode 100644 index 0000000000..6cdc5e04f6 --- /dev/null +++ b/arch/xtensa/src/esp32s3/hardware/esp32s3_interrupt_core1.h @@ -0,0 +1,1726 @@ +/**************************************************************************** + * arch/xtensa/src/esp32s3/hardware/esp32s3_interrupt_core1.h + * + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. The + * ASF licenses this file to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance with the + * License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT + * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the + * License for the specific language governing permissions and limitations + * under the License. + * + ****************************************************************************/ + +#ifndef __ARCH_XTENSA_SRC_ESP32S3_HARDWARE_ESP32S3_INTERRUPT_CORE1_H +#define __ARCH_XTENSA_SRC_ESP32S3_HARDWARE_ESP32S3_INTERRUPT_CORE1_H + +/**************************************************************************** + * Included Files + ****************************************************************************/ + +#include "esp32s3_soc.h" + +/**************************************************************************** + * Pre-processor Definitions + ****************************************************************************/ + +#define DR_REG_INTERRUPT_CORE1_BASE (DR_REG_INTERRUPT_BASE + 0x800) + +/* INTERRUPT_CORE1_MAC_INTR_MAP_REG register + * mac interrupt configuration register + */ + +#define INTERRUPT_CORE1_MAC_INTR_MAP_REG (DR_REG_INTERRUPT_CORE1_BASE + 0x0) + +/* INTERRUPT_CORE1_MAC_INTR_MAP : R/W; bitpos: [4:0]; default: 16; + * this register used to map mac interrupt to one of core1's external + * interrupt + */ + +#define INTERRUPT_CORE1_MAC_INTR_MAP 0x0000001f +#define INTERRUPT_CORE1_MAC_INTR_MAP_M (INTERRUPT_CORE1_MAC_INTR_MAP_V << INTERRUPT_CORE1_MAC_INTR_MAP_S) +#define INTERRUPT_CORE1_MAC_INTR_MAP_V 0x0000001f +#define INTERRUPT_CORE1_MAC_INTR_MAP_S 0 + +/* INTERRUPT_CORE1_MAC_NMI_MAP_REG register + * mac_nmi interrupt configuration register + */ + +#define INTERRUPT_CORE1_MAC_NMI_MAP_REG (DR_REG_INTERRUPT_CORE1_BASE + 0x4) + +/* INTERRUPT_CORE1_MAC_NMI_MAP : R/W; bitpos: [4:0]; default: 16; + * this register used to map_nmi interrupt to one of core1's external + * interrupt + */ + +#define INTERRUPT_CORE1_MAC_NMI_MAP 0x0000001f +#define INTERRUPT_CORE1_MAC_NMI_MAP_M (INTERRUPT_CORE1_MAC_NMI_MAP_V << INTERRUPT_CORE1_MAC_NMI_MAP_S) +#define INTERRUPT_CORE1_MAC_NMI_MAP_V 0x0000001f +#define INTERRUPT_CORE1_MAC_NMI_MAP_S 0 + +/* INTERRUPT_CORE1_PWR_INTR_MAP_REG register + * pwr interrupt configuration register + */ + +#define INTERRUPT_CORE1_PWR_INTR_MAP_REG (DR_REG_INTERRUPT_CORE1_BASE + 0x8) + +/* INTERRUPT_CORE1_PWR_INTR_MAP : R/W; bitpos: [4:0]; default: 16; + * this register used to map pwr interrupt to one of core1's external + * interrupt + */ + +#define INTERRUPT_CORE1_PWR_INTR_MAP 0x0000001f +#define INTERRUPT_CORE1_PWR_INTR_MAP_M (INTERRUPT_CORE1_PWR_INTR_MAP_V << INTERRUPT_CORE1_PWR_INTR_MAP_S) +#define INTERRUPT_CORE1_PWR_INTR_MAP_V 0x0000001f +#define INTERRUPT_CORE1_PWR_INTR_MAP_S 0 + +/* INTERRUPT_CORE1_BB_INT_MAP_REG register + * bb interrupt configuration register + */ + +#define INTERRUPT_CORE1_BB_INT_MAP_REG (DR_REG_INTERRUPT_CORE1_BASE + 0xc) + +/* INTERRUPT_CORE1_BB_INT_MAP : R/W; bitpos: [4:0]; default: 16; + * this register used to map bb interrupt to one of core1's external + * interrupt + */ + +#define INTERRUPT_CORE1_BB_INT_MAP 0x0000001f +#define INTERRUPT_CORE1_BB_INT_MAP_M (INTERRUPT_CORE1_BB_INT_MAP_V << INTERRUPT_CORE1_BB_INT_MAP_S) +#define INTERRUPT_CORE1_BB_INT_MAP_V 0x0000001f +#define INTERRUPT_CORE1_BB_INT_MAP_S 0 + +/* INTERRUPT_CORE1_BT_MAC_INT_MAP_REG register + * bb_mac interrupt configuration register + */ + +#define INTERRUPT_CORE1_BT_MAC_INT_MAP_REG (DR_REG_INTERRUPT_CORE1_BASE + 0x10) + +/* INTERRUPT_CORE1_BT_MAC_INT_MAP : R/W; bitpos: [4:0]; default: 16; + * this register used to map bb_mac interrupt to one of core1's external + * interrupt + */ + +#define INTERRUPT_CORE1_BT_MAC_INT_MAP 0x0000001f +#define INTERRUPT_CORE1_BT_MAC_INT_MAP_M (INTERRUPT_CORE1_BT_MAC_INT_MAP_V << INTERRUPT_CORE1_BT_MAC_INT_MAP_S) +#define INTERRUPT_CORE1_BT_MAC_INT_MAP_V 0x0000001f +#define INTERRUPT_CORE1_BT_MAC_INT_MAP_S 0 + +/* INTERRUPT_CORE1_BT_BB_INT_MAP_REG register + * bt_bb interrupt configuration register + */ + +#define INTERRUPT_CORE1_BT_BB_INT_MAP_REG (DR_REG_INTERRUPT_CORE1_BASE + 0x14) + +/* INTERRUPT_CORE1_BT_BB_INT_MAP : R/W; bitpos: [4:0]; default: 16; + * this register used to map bt_bb interrupt to one of core1's external + * interrupt + */ + +#define INTERRUPT_CORE1_BT_BB_INT_MAP 0x0000001f +#define INTERRUPT_CORE1_BT_BB_INT_MAP_M (INTERRUPT_CORE1_BT_BB_INT_MAP_V << INTERRUPT_CORE1_BT_BB_INT_MAP_S) +#define INTERRUPT_CORE1_BT_BB_INT_MAP_V 0x0000001f +#define INTERRUPT_CORE1_BT_BB_INT_MAP_S 0 + +/* INTERRUPT_CORE1_BT_BB_NMI_MAP_REG register + * bt_bb_nmi interrupt configuration register + */ + +#define INTERRUPT_CORE1_BT_BB_NMI_MAP_REG (DR_REG_INTERRUPT_CORE1_BASE + 0x18) + +/* INTERRUPT_CORE1_BT_BB_NMI_MAP : R/W; bitpos: [4:0]; default: 16; + * this register used to map bb_bt_nmi interrupt to one of core1's external + * interrupt + */ + +#define INTERRUPT_CORE1_BT_BB_NMI_MAP 0x0000001f +#define INTERRUPT_CORE1_BT_BB_NMI_MAP_M (INTERRUPT_CORE1_BT_BB_NMI_MAP_V << INTERRUPT_CORE1_BT_BB_NMI_MAP_S) +#define INTERRUPT_CORE1_BT_BB_NMI_MAP_V 0x0000001f +#define INTERRUPT_CORE1_BT_BB_NMI_MAP_S 0 + +/* INTERRUPT_CORE1_RWBT_IRQ_MAP_REG register + * rwbt_irq interrupt configuration register + */ + +#define INTERRUPT_CORE1_RWBT_IRQ_MAP_REG (DR_REG_INTERRUPT_CORE1_BASE + 0x1c) + +/* INTERRUPT_CORE1_RWBT_IRQ_MAP : R/W; bitpos: [4:0]; default: 16; + * this register used to map rwbt_irq interrupt to one of core1's external + * interrupt + */ + +#define INTERRUPT_CORE1_RWBT_IRQ_MAP 0x0000001f +#define INTERRUPT_CORE1_RWBT_IRQ_MAP_M (INTERRUPT_CORE1_RWBT_IRQ_MAP_V << INTERRUPT_CORE1_RWBT_IRQ_MAP_S) +#define INTERRUPT_CORE1_RWBT_IRQ_MAP_V 0x0000001f +#define INTERRUPT_CORE1_RWBT_IRQ_MAP_S 0 + +/* INTERRUPT_CORE1_RWBLE_IRQ_MAP_REG register + * rwble_irq interrupt configuration register + */ + +#define INTERRUPT_CORE1_RWBLE_IRQ_MAP_REG (DR_REG_INTERRUPT_CORE1_BASE + 0x20) + +/* INTERRUPT_CORE1_RWBLE_IRQ_MAP : R/W; bitpos: [4:0]; default: 16; + * this register used to map rwble_irq interrupt to one of core1's external + * interrupt + */ + +#define INTERRUPT_CORE1_RWBLE_IRQ_MAP 0x0000001f +#define INTERRUPT_CORE1_RWBLE_IRQ_MAP_M (INTERRUPT_CORE1_RWBLE_IRQ_MAP_V << INTERRUPT_CORE1_RWBLE_IRQ_MAP_S) +#define INTERRUPT_CORE1_RWBLE_IRQ_MAP_V 0x0000001f +#define INTERRUPT_CORE1_RWBLE_IRQ_MAP_S 0 + +/* INTERRUPT_CORE1_RWBT_NMI_MAP_REG register + * rwbt_nmi interrupt configuration register + */ + +#define INTERRUPT_CORE1_RWBT_NMI_MAP_REG (DR_REG_INTERRUPT_CORE1_BASE + 0x24) + +/* INTERRUPT_CORE1_RWBT_NMI_MAP : R/W; bitpos: [4:0]; default: 16; + * this register used to map rwbt_nmi interupt to one of core1's external + * interrupt + */ + +#define INTERRUPT_CORE1_RWBT_NMI_MAP 0x0000001f +#define INTERRUPT_CORE1_RWBT_NMI_MAP_M (INTERRUPT_CORE1_RWBT_NMI_MAP_V << INTERRUPT_CORE1_RWBT_NMI_MAP_S) +#define INTERRUPT_CORE1_RWBT_NMI_MAP_V 0x0000001f +#define INTERRUPT_CORE1_RWBT_NMI_MAP_S 0 + +/* INTERRUPT_CORE1_RWBLE_NMI_MAP_REG register + * rwble_nmi interrupt configuration register + */ + +#define INTERRUPT_CORE1_RWBLE_NMI_MAP_REG (DR_REG_INTERRUPT_CORE1_BASE + 0x28) + +/* INTERRUPT_CORE1_RWBLE_NMI_MAP : R/W; bitpos: [4:0]; default: 16; + * this register used to map rwble_nmi interrupt to one of core1's external + * interrupt + */ + +#define INTERRUPT_CORE1_RWBLE_NMI_MAP 0x0000001f +#define INTERRUPT_CORE1_RWBLE_NMI_MAP_M (INTERRUPT_CORE1_RWBLE_NMI_MAP_V << INTERRUPT_CORE1_RWBLE_NMI_MAP_S) +#define INTERRUPT_CORE1_RWBLE_NMI_MAP_V 0x0000001f +#define INTERRUPT_CORE1_RWBLE_NMI_MAP_S 0 + +/* INTERRUPT_CORE1_I2C_MST_INT_MAP_REG register + * i2c_mst interrupt configuration register + */ + +#define INTERRUPT_CORE1_I2C_MST_INT_MAP_REG (DR_REG_INTERRUPT_CORE1_BASE + 0x2c) + +/* INTERRUPT_CORE1_I2C_MST_INT_MAP : R/W; bitpos: [4:0]; default: 16; + * this register used to map i2c_mst interrupt to one of core1's external + * interrupt + */ + +#define INTERRUPT_CORE1_I2C_MST_INT_MAP 0x0000001f +#define INTERRUPT_CORE1_I2C_MST_INT_MAP_M (INTERRUPT_CORE1_I2C_MST_INT_MAP_V << INTERRUPT_CORE1_I2C_MST_INT_MAP_S) +#define INTERRUPT_CORE1_I2C_MST_INT_MAP_V 0x0000001f +#define INTERRUPT_CORE1_I2C_MST_INT_MAP_S 0 + +/* INTERRUPT_CORE1_SLC0_INTR_MAP_REG register + * slc0 interrupt configuration register + */ + +#define INTERRUPT_CORE1_SLC0_INTR_MAP_REG (DR_REG_INTERRUPT_CORE1_BASE + 0x30) + +/* INTERRUPT_CORE1_SLC0_INTR_MAP : R/W; bitpos: [4:0]; default: 16; + * this register used to map slc0 interrupt to one of core1's external + * interrupt + */ + +#define INTERRUPT_CORE1_SLC0_INTR_MAP 0x0000001f +#define INTERRUPT_CORE1_SLC0_INTR_MAP_M (INTERRUPT_CORE1_SLC0_INTR_MAP_V << INTERRUPT_CORE1_SLC0_INTR_MAP_S) +#define INTERRUPT_CORE1_SLC0_INTR_MAP_V 0x0000001f +#define INTERRUPT_CORE1_SLC0_INTR_MAP_S 0 + +/* INTERRUPT_CORE1_SLC1_INTR_MAP_REG register + * slc1 interrupt configuration register + */ + +#define INTERRUPT_CORE1_SLC1_INTR_MAP_REG (DR_REG_INTERRUPT_CORE1_BASE + 0x34) + +/* INTERRUPT_CORE1_SLC1_INTR_MAP : R/W; bitpos: [4:0]; default: 16; + * this register used to map slc1 interrupt to one of core1's external + * interrupt + */ + +#define INTERRUPT_CORE1_SLC1_INTR_MAP 0x0000001f +#define INTERRUPT_CORE1_SLC1_INTR_MAP_M (INTERRUPT_CORE1_SLC1_INTR_MAP_V << INTERRUPT_CORE1_SLC1_INTR_MAP_S) +#define INTERRUPT_CORE1_SLC1_INTR_MAP_V 0x0000001f +#define INTERRUPT_CORE1_SLC1_INTR_MAP_S 0 + +/* INTERRUPT_CORE1_UHCI0_INTR_MAP_REG register + * uhci0 interrupt configuration register + */ + +#define INTERRUPT_CORE1_UHCI0_INTR_MAP_REG (DR_REG_INTERRUPT_CORE1_BASE + 0x38) + +/* INTERRUPT_CORE1_UHCI0_INTR_MAP : R/W; bitpos: [4:0]; default: 16; + * this register used to map uhci0 interrupt to one of core1's external + * interrupt + */ + +#define INTERRUPT_CORE1_UHCI0_INTR_MAP 0x0000001f +#define INTERRUPT_CORE1_UHCI0_INTR_MAP_M (INTERRUPT_CORE1_UHCI0_INTR_MAP_V << INTERRUPT_CORE1_UHCI0_INTR_MAP_S) +#define INTERRUPT_CORE1_UHCI0_INTR_MAP_V 0x0000001f +#define INTERRUPT_CORE1_UHCI0_INTR_MAP_S 0 + +/* INTERRUPT_CORE1_UHCI1_INTR_MAP_REG register + * uhci1 interrupt configuration register + */ + +#define INTERRUPT_CORE1_UHCI1_INTR_MAP_REG (DR_REG_INTERRUPT_CORE1_BASE + 0x3c) + +/* INTERRUPT_CORE1_UHCI1_INTR_MAP : R/W; bitpos: [4:0]; default: 16; + * this register used to map uhci1 interrupt to one of core1's external + * interrupt + */ + +#define INTERRUPT_CORE1_UHCI1_INTR_MAP 0x0000001f +#define INTERRUPT_CORE1_UHCI1_INTR_MAP_M (INTERRUPT_CORE1_UHCI1_INTR_MAP_V << INTERRUPT_CORE1_UHCI1_INTR_MAP_S) +#define INTERRUPT_CORE1_UHCI1_INTR_MAP_V 0x0000001f +#define INTERRUPT_CORE1_UHCI1_INTR_MAP_S 0 + +/* INTERRUPT_CORE1_GPIO_INTERRUPT_PRO_MAP_REG register + * gpio_interrupt_pro interrupt configuration register + */ + +#define INTERRUPT_CORE1_GPIO_INTERRUPT_PRO_MAP_REG (DR_REG_INTERRUPT_CORE1_BASE + 0x40) + +/* INTERRUPT_CORE1_GPIO_INTERRUPT_PRO_MAP : R/W; bitpos: [4:0]; default: 16; + * this register used to map gpio_interrupt_pro interrupt to one of core1's + * external interrupt + */ + +#define INTERRUPT_CORE1_GPIO_INTERRUPT_PRO_MAP 0x0000001f +#define INTERRUPT_CORE1_GPIO_INTERRUPT_PRO_MAP_M (INTERRUPT_CORE1_GPIO_INTERRUPT_PRO_MAP_V << INTERRUPT_CORE1_GPIO_INTERRUPT_PRO_MAP_S) +#define INTERRUPT_CORE1_GPIO_INTERRUPT_PRO_MAP_V 0x0000001f +#define INTERRUPT_CORE1_GPIO_INTERRUPT_PRO_MAP_S 0 + +/* INTERRUPT_CORE1_GPIO_INTERRUPT_PRO_NMI_MAP_REG register + * gpio_interrupt_pro_nmi interrupt configuration register + */ + +#define INTERRUPT_CORE1_GPIO_INTERRUPT_PRO_NMI_MAP_REG (DR_REG_INTERRUPT_CORE1_BASE + 0x44) + +/* INTERRUPT_CORE1_GPIO_INTERRUPT_PRO_NMI_MAP : R/W; bitpos: [4:0]; default: + * 16; + * this register used to map gpio_interrupt_pro_nmi interrupt to one of + * core1's external interrupt + */ + +#define INTERRUPT_CORE1_GPIO_INTERRUPT_PRO_NMI_MAP 0x0000001f +#define INTERRUPT_CORE1_GPIO_INTERRUPT_PRO_NMI_MAP_M (INTERRUPT_CORE1_GPIO_INTERRUPT_PRO_NMI_MAP_V << INTERRUPT_CORE1_GPIO_INTERRUPT_PRO_NMI_MAP_S) +#define INTERRUPT_CORE1_GPIO_INTERRUPT_PRO_NMI_MAP_V 0x0000001f +#define INTERRUPT_CORE1_GPIO_INTERRUPT_PRO_NMI_MAP_S 0 + +/* INTERRUPT_CORE1_GPIO_INTERRUPT_APP_MAP_REG register + * gpio_interrupt_app interrupt configuration register + */ + +#define INTERRUPT_CORE1_GPIO_INTERRUPT_APP_MAP_REG (DR_REG_INTERRUPT_CORE1_BASE + 0x48) + +/* INTERRUPT_CORE1_GPIO_INTERRUPT_APP_MAP : R/W; bitpos: [4:0]; default: 16; + * this register used to map gpio_interrupt_app interrupt to one of core1's + * external interrupt + */ + +#define INTERRUPT_CORE1_GPIO_INTERRUPT_APP_MAP 0x0000001f +#define INTERRUPT_CORE1_GPIO_INTERRUPT_APP_MAP_M (INTERRUPT_CORE1_GPIO_INTERRUPT_APP_MAP_V << INTERRUPT_CORE1_GPIO_INTERRUPT_APP_MAP_S) +#define INTERRUPT_CORE1_GPIO_INTERRUPT_APP_MAP_V 0x0000001f +#define INTERRUPT_CORE1_GPIO_INTERRUPT_APP_MAP_S 0 + +/* INTERRUPT_CORE1_GPIO_INTERRUPT_APP_NMI_MAP_REG register + * gpio_interrupt_app_nmi interrupt configuration register + */ + +#define INTERRUPT_CORE1_GPIO_INTERRUPT_APP_NMI_MAP_REG (DR_REG_INTERRUPT_CORE1_BASE + 0x4c) + +/* INTERRUPT_CORE1_GPIO_INTERRUPT_APP_NMI_MAP : R/W; bitpos: [4:0]; default: + * 16; + * this register used to map gpio_interrupt_app_nmi interrupt to one of + * core1's external interrupt + */ + +#define INTERRUPT_CORE1_GPIO_INTERRUPT_APP_NMI_MAP 0x0000001f +#define INTERRUPT_CORE1_GPIO_INTERRUPT_APP_NMI_MAP_M (INTERRUPT_CORE1_GPIO_INTERRUPT_APP_NMI_MAP_V << INTERRUPT_CORE1_GPIO_INTERRUPT_APP_NMI_MAP_S) +#define INTERRUPT_CORE1_GPIO_INTERRUPT_APP_NMI_MAP_V 0x0000001f +#define INTERRUPT_CORE1_GPIO_INTERRUPT_APP_NMI_MAP_S 0 + +/* INTERRUPT_CORE1_SPI_INTR_1_MAP_REG register + * spi_intr_1 interrupt configuration register + */ + +#define INTERRUPT_CORE1_SPI_INTR_1_MAP_REG (DR_REG_INTERRUPT_CORE1_BASE + 0x50) + +/* INTERRUPT_CORE1_SPI_INTR_1_MAP : R/W; bitpos: [4:0]; default: 16; + * this register used to map spi_intr_1 interrupt to one of core1's external + * interrupt + */ + +#define INTERRUPT_CORE1_SPI_INTR_1_MAP 0x0000001f +#define INTERRUPT_CORE1_SPI_INTR_1_MAP_M (INTERRUPT_CORE1_SPI_INTR_1_MAP_V << INTERRUPT_CORE1_SPI_INTR_1_MAP_S) +#define INTERRUPT_CORE1_SPI_INTR_1_MAP_V 0x0000001f +#define INTERRUPT_CORE1_SPI_INTR_1_MAP_S 0 + +/* INTERRUPT_CORE1_SPI_INTR_2_MAP_REG register + * spi_intr_2 interrupt configuration register + */ + +#define INTERRUPT_CORE1_SPI_INTR_2_MAP_REG (DR_REG_INTERRUPT_CORE1_BASE + 0x54) + +/* INTERRUPT_CORE1_SPI_INTR_2_MAP : R/W; bitpos: [4:0]; default: 16; + * this register used to map spi_intr_2 interrupt to one of core1's external + * interrupt + */ + +#define INTERRUPT_CORE1_SPI_INTR_2_MAP 0x0000001f +#define INTERRUPT_CORE1_SPI_INTR_2_MAP_M (INTERRUPT_CORE1_SPI_INTR_2_MAP_V << INTERRUPT_CORE1_SPI_INTR_2_MAP_S) +#define INTERRUPT_CORE1_SPI_INTR_2_MAP_V 0x0000001f +#define INTERRUPT_CORE1_SPI_INTR_2_MAP_S 0 + +/* INTERRUPT_CORE1_SPI_INTR_3_MAP_REG register + * spi_intr_3 interrupt configuration register + */ + +#define INTERRUPT_CORE1_SPI_INTR_3_MAP_REG (DR_REG_INTERRUPT_CORE1_BASE + 0x58) + +/* INTERRUPT_CORE1_SPI_INTR_3_MAP : R/W; bitpos: [4:0]; default: 16; + * this register used to map spi_intr_3 interrupt to one of core1's external + * interrupt + */ + +#define INTERRUPT_CORE1_SPI_INTR_3_MAP 0x0000001f +#define INTERRUPT_CORE1_SPI_INTR_3_MAP_M (INTERRUPT_CORE1_SPI_INTR_3_MAP_V << INTERRUPT_CORE1_SPI_INTR_3_MAP_S) +#define INTERRUPT_CORE1_SPI_INTR_3_MAP_V 0x0000001f +#define INTERRUPT_CORE1_SPI_INTR_3_MAP_S 0 + +/* INTERRUPT_CORE1_SPI_INTR_4_MAP_REG register + * spi_intr_4 interrupt configuration register + */ + +#define INTERRUPT_CORE1_SPI_INTR_4_MAP_REG (DR_REG_INTERRUPT_CORE1_BASE + 0x5c) + +/* INTERRUPT_CORE1_SPI_INTR_4_MAP : R/W; bitpos: [4:0]; default: 16; + * this register used to map spi_intr_4 interrupt to one of core1's external + * interrupt + */ + +#define INTERRUPT_CORE1_SPI_INTR_4_MAP 0x0000001f +#define INTERRUPT_CORE1_SPI_INTR_4_MAP_M (INTERRUPT_CORE1_SPI_INTR_4_MAP_V << INTERRUPT_CORE1_SPI_INTR_4_MAP_S) +#define INTERRUPT_CORE1_SPI_INTR_4_MAP_V 0x0000001f +#define INTERRUPT_CORE1_SPI_INTR_4_MAP_S 0 + +/* INTERRUPT_CORE1_LCD_CAM_INT_MAP_REG register + * lcd_cam interrupt configuration register + */ + +#define INTERRUPT_CORE1_LCD_CAM_INT_MAP_REG (DR_REG_INTERRUPT_CORE1_BASE + 0x60) + +/* INTERRUPT_CORE1_LCD_CAM_INT_MAP : R/W; bitpos: [4:0]; default: 16; + * this register used to map lcd_cam interrupt to one of core1's external + * interrupt + */ + +#define INTERRUPT_CORE1_LCD_CAM_INT_MAP 0x0000001f +#define INTERRUPT_CORE1_LCD_CAM_INT_MAP_M (INTERRUPT_CORE1_LCD_CAM_INT_MAP_V << INTERRUPT_CORE1_LCD_CAM_INT_MAP_S) +#define INTERRUPT_CORE1_LCD_CAM_INT_MAP_V 0x0000001f +#define INTERRUPT_CORE1_LCD_CAM_INT_MAP_S 0 + +/* INTERRUPT_CORE1_I2S0_INT_MAP_REG register + * i2s0 interrupt configuration register + */ + +#define INTERRUPT_CORE1_I2S0_INT_MAP_REG (DR_REG_INTERRUPT_CORE1_BASE + 0x64) + +/* INTERRUPT_CORE1_I2S0_INT_MAP : R/W; bitpos: [4:0]; default: 16; + * this register used to map i2s0 interrupt to one of core1's external + * interrupt + */ + +#define INTERRUPT_CORE1_I2S0_INT_MAP 0x0000001f +#define INTERRUPT_CORE1_I2S0_INT_MAP_M (INTERRUPT_CORE1_I2S0_INT_MAP_V << INTERRUPT_CORE1_I2S0_INT_MAP_S) +#define INTERRUPT_CORE1_I2S0_INT_MAP_V 0x0000001f +#define INTERRUPT_CORE1_I2S0_INT_MAP_S 0 + +/* INTERRUPT_CORE1_I2S1_INT_MAP_REG register + * i2s1 interrupt configuration register + */ + +#define INTERRUPT_CORE1_I2S1_INT_MAP_REG (DR_REG_INTERRUPT_CORE1_BASE + 0x68) + +/* INTERRUPT_CORE1_I2S1_INT_MAP : R/W; bitpos: [4:0]; default: 16; + * this register used to map i2s1 interrupt to one of core1's external + * interrupt + */ + +#define INTERRUPT_CORE1_I2S1_INT_MAP 0x0000001f +#define INTERRUPT_CORE1_I2S1_INT_MAP_M (INTERRUPT_CORE1_I2S1_INT_MAP_V << INTERRUPT_CORE1_I2S1_INT_MAP_S) +#define INTERRUPT_CORE1_I2S1_INT_MAP_V 0x0000001f +#define INTERRUPT_CORE1_I2S1_INT_MAP_S 0 + +/* INTERRUPT_CORE1_UART_INTR_MAP_REG register + * uart interrupt configuration register + */ + +#define INTERRUPT_CORE1_UART_INTR_MAP_REG (DR_REG_INTERRUPT_CORE1_BASE + 0x6c) + +/* INTERRUPT_CORE1_UART_INTR_MAP : R/W; bitpos: [4:0]; default: 16; + * this register used to map uart interrupt to one of core1's external + * interrupt + */ + +#define INTERRUPT_CORE1_UART_INTR_MAP 0x0000001f +#define INTERRUPT_CORE1_UART_INTR_MAP_M (INTERRUPT_CORE1_UART_INTR_MAP_V << INTERRUPT_CORE1_UART_INTR_MAP_S) +#define INTERRUPT_CORE1_UART_INTR_MAP_V 0x0000001f +#define INTERRUPT_CORE1_UART_INTR_MAP_S 0 + +/* INTERRUPT_CORE1_UART1_INTR_MAP_REG register + * uart1 interrupt configuration register + */ + +#define INTERRUPT_CORE1_UART1_INTR_MAP_REG (DR_REG_INTERRUPT_CORE1_BASE + 0x70) + +/* INTERRUPT_CORE1_UART1_INTR_MAP : R/W; bitpos: [4:0]; default: 16; + * this register used to map uart1 interrupt to one of core1's external + * interrupt + */ + +#define INTERRUPT_CORE1_UART1_INTR_MAP 0x0000001f +#define INTERRUPT_CORE1_UART1_INTR_MAP_M (INTERRUPT_CORE1_UART1_INTR_MAP_V << INTERRUPT_CORE1_UART1_INTR_MAP_S) +#define INTERRUPT_CORE1_UART1_INTR_MAP_V 0x0000001f +#define INTERRUPT_CORE1_UART1_INTR_MAP_S 0 + +/* INTERRUPT_CORE1_UART2_INTR_MAP_REG register + * uart2 interrupt configuration register + */ + +#define INTERRUPT_CORE1_UART2_INTR_MAP_REG (DR_REG_INTERRUPT_CORE1_BASE + 0x74) + +/* INTERRUPT_CORE1_UART2_INTR_MAP : R/W; bitpos: [4:0]; default: 16; + * this register used to map uart2 interrupt to one of core1's external + * interrupt + */ + +#define INTERRUPT_CORE1_UART2_INTR_MAP 0x0000001f +#define INTERRUPT_CORE1_UART2_INTR_MAP_M (INTERRUPT_CORE1_UART2_INTR_MAP_V << INTERRUPT_CORE1_UART2_INTR_MAP_S) +#define INTERRUPT_CORE1_UART2_INTR_MAP_V 0x0000001f +#define INTERRUPT_CORE1_UART2_INTR_MAP_S 0 + +/* INTERRUPT_CORE1_SDIO_HOST_INTERRUPT_MAP_REG register + * sdio_host interrupt configuration register + */ + +#define INTERRUPT_CORE1_SDIO_HOST_INTERRUPT_MAP_REG (DR_REG_INTERRUPT_CORE1_BASE + 0x78) + +/* INTERRUPT_CORE1_SDIO_HOST_INTERRUPT_MAP : R/W; bitpos: [4:0]; default: 16; + * this register used to map sdio_host interrupt to one of core1's external + * interrupt + */ + +#define INTERRUPT_CORE1_SDIO_HOST_INTERRUPT_MAP 0x0000001f +#define INTERRUPT_CORE1_SDIO_HOST_INTERRUPT_MAP_M (INTERRUPT_CORE1_SDIO_HOST_INTERRUPT_MAP_V << INTERRUPT_CORE1_SDIO_HOST_INTERRUPT_MAP_S) +#define INTERRUPT_CORE1_SDIO_HOST_INTERRUPT_MAP_V 0x0000001f +#define INTERRUPT_CORE1_SDIO_HOST_INTERRUPT_MAP_S 0 + +/* INTERRUPT_CORE1_PWM0_INTR_MAP_REG register + * pwm0 interrupt configuration register + */ + +#define INTERRUPT_CORE1_PWM0_INTR_MAP_REG (DR_REG_INTERRUPT_CORE1_BASE + 0x7c) + +/* INTERRUPT_CORE1_PWM0_INTR_MAP : R/W; bitpos: [4:0]; default: 16; + * this register used to map pwm0 interrupt to one of core1's external + * interrupt + */ + +#define INTERRUPT_CORE1_PWM0_INTR_MAP 0x0000001f +#define INTERRUPT_CORE1_PWM0_INTR_MAP_M (INTERRUPT_CORE1_PWM0_INTR_MAP_V << INTERRUPT_CORE1_PWM0_INTR_MAP_S) +#define INTERRUPT_CORE1_PWM0_INTR_MAP_V 0x0000001f +#define INTERRUPT_CORE1_PWM0_INTR_MAP_S 0 + +/* INTERRUPT_CORE1_PWM1_INTR_MAP_REG register + * pwm1 interrupt configuration register + */ + +#define INTERRUPT_CORE1_PWM1_INTR_MAP_REG (DR_REG_INTERRUPT_CORE1_BASE + 0x80) + +/* INTERRUPT_CORE1_PWM1_INTR_MAP : R/W; bitpos: [4:0]; default: 16; + * this register used to map pwm1 interrupt to one of core1's external + * interrupt + */ + +#define INTERRUPT_CORE1_PWM1_INTR_MAP 0x0000001f +#define INTERRUPT_CORE1_PWM1_INTR_MAP_M (INTERRUPT_CORE1_PWM1_INTR_MAP_V << INTERRUPT_CORE1_PWM1_INTR_MAP_S) +#define INTERRUPT_CORE1_PWM1_INTR_MAP_V 0x0000001f +#define INTERRUPT_CORE1_PWM1_INTR_MAP_S 0 + +/* INTERRUPT_CORE1_PWM2_INTR_MAP_REG register + * pwm2 interrupt configuration register + */ + +#define INTERRUPT_CORE1_PWM2_INTR_MAP_REG (DR_REG_INTERRUPT_CORE1_BASE + 0x84) + +/* INTERRUPT_CORE1_PWM2_INTR_MAP : R/W; bitpos: [4:0]; default: 16; + * this register used to map pwm2 interrupt to one of core1's external + * interrupt + */ + +#define INTERRUPT_CORE1_PWM2_INTR_MAP 0x0000001f +#define INTERRUPT_CORE1_PWM2_INTR_MAP_M (INTERRUPT_CORE1_PWM2_INTR_MAP_V << INTERRUPT_CORE1_PWM2_INTR_MAP_S) +#define INTERRUPT_CORE1_PWM2_INTR_MAP_V 0x0000001f +#define INTERRUPT_CORE1_PWM2_INTR_MAP_S 0 + +/* INTERRUPT_CORE1_PWM3_INTR_MAP_REG register + * pwm3 interrupt configuration register + */ + +#define INTERRUPT_CORE1_PWM3_INTR_MAP_REG (DR_REG_INTERRUPT_CORE1_BASE + 0x88) + +/* INTERRUPT_CORE1_PWM3_INTR_MAP : R/W; bitpos: [4:0]; default: 16; + * this register used to map pwm3 interrupt to one of core1's external + * interrupt + */ + +#define INTERRUPT_CORE1_PWM3_INTR_MAP 0x0000001f +#define INTERRUPT_CORE1_PWM3_INTR_MAP_M (INTERRUPT_CORE1_PWM3_INTR_MAP_V << INTERRUPT_CORE1_PWM3_INTR_MAP_S) +#define INTERRUPT_CORE1_PWM3_INTR_MAP_V 0x0000001f +#define INTERRUPT_CORE1_PWM3_INTR_MAP_S 0 + +/* INTERRUPT_CORE1_LEDC_INT_MAP_REG register + * ledc interrupt configuration register + */ + +#define INTERRUPT_CORE1_LEDC_INT_MAP_REG (DR_REG_INTERRUPT_CORE1_BASE + 0x8c) + +/* INTERRUPT_CORE1_LEDC_INT_MAP : R/W; bitpos: [4:0]; default: 16; + * this register used to map ledc interrupt to one of core1's external + * interrupt + */ + +#define INTERRUPT_CORE1_LEDC_INT_MAP 0x0000001f +#define INTERRUPT_CORE1_LEDC_INT_MAP_M (INTERRUPT_CORE1_LEDC_INT_MAP_V << INTERRUPT_CORE1_LEDC_INT_MAP_S) +#define INTERRUPT_CORE1_LEDC_INT_MAP_V 0x0000001f +#define INTERRUPT_CORE1_LEDC_INT_MAP_S 0 + +/* INTERRUPT_CORE1_EFUSE_INT_MAP_REG register + * efuse interrupt configuration register + */ + +#define INTERRUPT_CORE1_EFUSE_INT_MAP_REG (DR_REG_INTERRUPT_CORE1_BASE + 0x90) + +/* INTERRUPT_CORE1_EFUSE_INT_MAP : R/W; bitpos: [4:0]; default: 16; + * this register used to map efuse interrupt to one of core1's external + * interrupt + */ + +#define INTERRUPT_CORE1_EFUSE_INT_MAP 0x0000001f +#define INTERRUPT_CORE1_EFUSE_INT_MAP_M (INTERRUPT_CORE1_EFUSE_INT_MAP_V << INTERRUPT_CORE1_EFUSE_INT_MAP_S) +#define INTERRUPT_CORE1_EFUSE_INT_MAP_V 0x0000001f +#define INTERRUPT_CORE1_EFUSE_INT_MAP_S 0 + +/* INTERRUPT_CORE1_CAN_INT_MAP_REG register + * can interrupt configuration register + */ + +#define INTERRUPT_CORE1_CAN_INT_MAP_REG (DR_REG_INTERRUPT_CORE1_BASE + 0x94) + +/* INTERRUPT_CORE1_CAN_INT_MAP : R/W; bitpos: [4:0]; default: 16; + * this register used to map can interrupt to one of core1's external + * interrupt + */ + +#define INTERRUPT_CORE1_CAN_INT_MAP 0x0000001f +#define INTERRUPT_CORE1_CAN_INT_MAP_M (INTERRUPT_CORE1_CAN_INT_MAP_V << INTERRUPT_CORE1_CAN_INT_MAP_S) +#define INTERRUPT_CORE1_CAN_INT_MAP_V 0x0000001f +#define INTERRUPT_CORE1_CAN_INT_MAP_S 0 + +/* INTERRUPT_CORE1_USB_INTR_MAP_REG register + * usb interrupt configuration register + */ + +#define INTERRUPT_CORE1_USB_INTR_MAP_REG (DR_REG_INTERRUPT_CORE1_BASE + 0x98) + +/* INTERRUPT_CORE1_USB_INTR_MAP : R/W; bitpos: [4:0]; default: 16; + * this register used to map usb interrupt to one of core1's external + * interrupt + */ + +#define INTERRUPT_CORE1_USB_INTR_MAP 0x0000001f +#define INTERRUPT_CORE1_USB_INTR_MAP_M (INTERRUPT_CORE1_USB_INTR_MAP_V << INTERRUPT_CORE1_USB_INTR_MAP_S) +#define INTERRUPT_CORE1_USB_INTR_MAP_V 0x0000001f +#define INTERRUPT_CORE1_USB_INTR_MAP_S 0 + +/* INTERRUPT_CORE1_RTC_CORE_INTR_MAP_REG register + * rtc_core interrupt configuration register + */ + +#define INTERRUPT_CORE1_RTC_CORE_INTR_MAP_REG (DR_REG_INTERRUPT_CORE1_BASE + 0x9c) + +/* INTERRUPT_CORE1_RTC_CORE_INTR_MAP : R/W; bitpos: [4:0]; default: 16; + * this register used to map rtc_core interrupt to one of core1's external + * interrupt + */ + +#define INTERRUPT_CORE1_RTC_CORE_INTR_MAP 0x0000001f +#define INTERRUPT_CORE1_RTC_CORE_INTR_MAP_M (INTERRUPT_CORE1_RTC_CORE_INTR_MAP_V << INTERRUPT_CORE1_RTC_CORE_INTR_MAP_S) +#define INTERRUPT_CORE1_RTC_CORE_INTR_MAP_V 0x0000001f +#define INTERRUPT_CORE1_RTC_CORE_INTR_MAP_S 0 + +/* INTERRUPT_CORE1_RMT_INTR_MAP_REG register + * rmt interrupt configuration register + */ + +#define INTERRUPT_CORE1_RMT_INTR_MAP_REG (DR_REG_INTERRUPT_CORE1_BASE + 0xa0) + +/* INTERRUPT_CORE1_RMT_INTR_MAP : R/W; bitpos: [4:0]; default: 16; + * this register used to map rmt interrupt to one of core1's external + * interrupt + */ + +#define INTERRUPT_CORE1_RMT_INTR_MAP 0x0000001f +#define INTERRUPT_CORE1_RMT_INTR_MAP_M (INTERRUPT_CORE1_RMT_INTR_MAP_V << INTERRUPT_CORE1_RMT_INTR_MAP_S) +#define INTERRUPT_CORE1_RMT_INTR_MAP_V 0x0000001f +#define INTERRUPT_CORE1_RMT_INTR_MAP_S 0 + +/* INTERRUPT_CORE1_PCNT_INTR_MAP_REG register + * pcnt interrupt configuration register + */ + +#define INTERRUPT_CORE1_PCNT_INTR_MAP_REG (DR_REG_INTERRUPT_CORE1_BASE + 0xa4) + +/* INTERRUPT_CORE1_PCNT_INTR_MAP : R/W; bitpos: [4:0]; default: 16; + * this register used to map pcnt interrupt to one of core1's external + * interrupt + */ + +#define INTERRUPT_CORE1_PCNT_INTR_MAP 0x0000001f +#define INTERRUPT_CORE1_PCNT_INTR_MAP_M (INTERRUPT_CORE1_PCNT_INTR_MAP_V << INTERRUPT_CORE1_PCNT_INTR_MAP_S) +#define INTERRUPT_CORE1_PCNT_INTR_MAP_V 0x0000001f +#define INTERRUPT_CORE1_PCNT_INTR_MAP_S 0 + +/* INTERRUPT_CORE1_I2C_EXT0_INTR_MAP_REG register + * i2c_ext0 interrupt configuration register + */ + +#define INTERRUPT_CORE1_I2C_EXT0_INTR_MAP_REG (DR_REG_INTERRUPT_CORE1_BASE + 0xa8) + +/* INTERRUPT_CORE1_I2C_EXT0_INTR_MAP : R/W; bitpos: [4:0]; default: 16; + * this register used to map i2c_ext0 interrupt to one of core1's external + * interrupt + */ + +#define INTERRUPT_CORE1_I2C_EXT0_INTR_MAP 0x0000001f +#define INTERRUPT_CORE1_I2C_EXT0_INTR_MAP_M (INTERRUPT_CORE1_I2C_EXT0_INTR_MAP_V << INTERRUPT_CORE1_I2C_EXT0_INTR_MAP_S) +#define INTERRUPT_CORE1_I2C_EXT0_INTR_MAP_V 0x0000001f +#define INTERRUPT_CORE1_I2C_EXT0_INTR_MAP_S 0 + +/* INTERRUPT_CORE1_I2C_EXT1_INTR_MAP_REG register + * i2c_ext1 interrupt configuration register + */ + +#define INTERRUPT_CORE1_I2C_EXT1_INTR_MAP_REG (DR_REG_INTERRUPT_CORE1_BASE + 0xac) + +/* INTERRUPT_CORE1_I2C_EXT1_INTR_MAP : R/W; bitpos: [4:0]; default: 16; + * this register used to map i2c_ext1 interrupt to one of core1's external + * interrupt + */ + +#define INTERRUPT_CORE1_I2C_EXT1_INTR_MAP 0x0000001f +#define INTERRUPT_CORE1_I2C_EXT1_INTR_MAP_M (INTERRUPT_CORE1_I2C_EXT1_INTR_MAP_V << INTERRUPT_CORE1_I2C_EXT1_INTR_MAP_S) +#define INTERRUPT_CORE1_I2C_EXT1_INTR_MAP_V 0x0000001f +#define INTERRUPT_CORE1_I2C_EXT1_INTR_MAP_S 0 + +/* INTERRUPT_CORE1_SPI2_DMA_INT_MAP_REG register + * spi2_dma interrupt configuration register + */ + +#define INTERRUPT_CORE1_SPI2_DMA_INT_MAP_REG (DR_REG_INTERRUPT_CORE1_BASE + 0xb0) + +/* INTERRUPT_CORE1_SPI2_DMA_INT_MAP : R/W; bitpos: [4:0]; default: 16; + * this register used to map spi2_dma interrupt to one of core1's external + * interrupt + */ + +#define INTERRUPT_CORE1_SPI2_DMA_INT_MAP 0x0000001f +#define INTERRUPT_CORE1_SPI2_DMA_INT_MAP_M (INTERRUPT_CORE1_SPI2_DMA_INT_MAP_V << INTERRUPT_CORE1_SPI2_DMA_INT_MAP_S) +#define INTERRUPT_CORE1_SPI2_DMA_INT_MAP_V 0x0000001f +#define INTERRUPT_CORE1_SPI2_DMA_INT_MAP_S 0 + +/* INTERRUPT_CORE1_SPI3_DMA_INT_MAP_REG register + * spi3_dma interrupt configuration register + */ + +#define INTERRUPT_CORE1_SPI3_DMA_INT_MAP_REG (DR_REG_INTERRUPT_CORE1_BASE + 0xb4) + +/* INTERRUPT_CORE1_SPI3_DMA_INT_MAP : R/W; bitpos: [4:0]; default: 16; + * this register used to map spi3_dma interrupt to one of core1's external + * interrupt + */ + +#define INTERRUPT_CORE1_SPI3_DMA_INT_MAP 0x0000001f +#define INTERRUPT_CORE1_SPI3_DMA_INT_MAP_M (INTERRUPT_CORE1_SPI3_DMA_INT_MAP_V << INTERRUPT_CORE1_SPI3_DMA_INT_MAP_S) +#define INTERRUPT_CORE1_SPI3_DMA_INT_MAP_V 0x0000001f +#define INTERRUPT_CORE1_SPI3_DMA_INT_MAP_S 0 + +/* INTERRUPT_CORE1_SPI4_DMA_INT_MAP_REG register + * spi4_dma interrupt configuration register + */ + +#define INTERRUPT_CORE1_SPI4_DMA_INT_MAP_REG (DR_REG_INTERRUPT_CORE1_BASE + 0xb8) + +/* INTERRUPT_CORE1_SPI4_DMA_INT_MAP : R/W; bitpos: [4:0]; default: 16; + * this register used to map spi4_dma interrupt to one of core1's external + * interrupt + */ + +#define INTERRUPT_CORE1_SPI4_DMA_INT_MAP 0x0000001f +#define INTERRUPT_CORE1_SPI4_DMA_INT_MAP_M (INTERRUPT_CORE1_SPI4_DMA_INT_MAP_V << INTERRUPT_CORE1_SPI4_DMA_INT_MAP_S) +#define INTERRUPT_CORE1_SPI4_DMA_INT_MAP_V 0x0000001f +#define INTERRUPT_CORE1_SPI4_DMA_INT_MAP_S 0 + +/* INTERRUPT_CORE1_WDG_INT_MAP_REG register + * wdg interrupt configuration register + */ + +#define INTERRUPT_CORE1_WDG_INT_MAP_REG (DR_REG_INTERRUPT_CORE1_BASE + 0xbc) + +/* INTERRUPT_CORE1_WDG_INT_MAP : R/W; bitpos: [4:0]; default: 16; + * this register used to map wdg interrupt to one of core1's external + * interrupt + */ + +#define INTERRUPT_CORE1_WDG_INT_MAP 0x0000001f +#define INTERRUPT_CORE1_WDG_INT_MAP_M (INTERRUPT_CORE1_WDG_INT_MAP_V << INTERRUPT_CORE1_WDG_INT_MAP_S) +#define INTERRUPT_CORE1_WDG_INT_MAP_V 0x0000001f +#define INTERRUPT_CORE1_WDG_INT_MAP_S 0 + +/* INTERRUPT_CORE1_TIMER_INT1_MAP_REG register + * timer_int1 interrupt configuration register + */ + +#define INTERRUPT_CORE1_TIMER_INT1_MAP_REG (DR_REG_INTERRUPT_CORE1_BASE + 0xc0) + +/* INTERRUPT_CORE1_TIMER_INT1_MAP : R/W; bitpos: [4:0]; default: 16; + * this register used to map timer_int1 interrupt to one of core1's external + * interrupt + */ + +#define INTERRUPT_CORE1_TIMER_INT1_MAP 0x0000001f +#define INTERRUPT_CORE1_TIMER_INT1_MAP_M (INTERRUPT_CORE1_TIMER_INT1_MAP_V << INTERRUPT_CORE1_TIMER_INT1_MAP_S) +#define INTERRUPT_CORE1_TIMER_INT1_MAP_V 0x0000001f +#define INTERRUPT_CORE1_TIMER_INT1_MAP_S 0 + +/* INTERRUPT_CORE1_TIMER_INT2_MAP_REG register + * timer_int2 interrupt configuration register + */ + +#define INTERRUPT_CORE1_TIMER_INT2_MAP_REG (DR_REG_INTERRUPT_CORE1_BASE + 0xc4) + +/* INTERRUPT_CORE1_TIMER_INT2_MAP : R/W; bitpos: [4:0]; default: 16; + * this register used to map timer_int2 interrupt to one of core1's external + * interrupt + */ + +#define INTERRUPT_CORE1_TIMER_INT2_MAP 0x0000001f +#define INTERRUPT_CORE1_TIMER_INT2_MAP_M (INTERRUPT_CORE1_TIMER_INT2_MAP_V << INTERRUPT_CORE1_TIMER_INT2_MAP_S) +#define INTERRUPT_CORE1_TIMER_INT2_MAP_V 0x0000001f +#define INTERRUPT_CORE1_TIMER_INT2_MAP_S 0 + +/* INTERRUPT_CORE1_TG_T0_INT_MAP_REG register + * tg_t0 interrupt configuration register + */ + +#define INTERRUPT_CORE1_TG_T0_INT_MAP_REG (DR_REG_INTERRUPT_CORE1_BASE + 0xc8) + +/* INTERRUPT_CORE1_TG_T0_INT_MAP : R/W; bitpos: [4:0]; default: 16; + * this register used to map tg_t0 interrupt to one of core1's external + * interrupt + */ + +#define INTERRUPT_CORE1_TG_T0_INT_MAP 0x0000001f +#define INTERRUPT_CORE1_TG_T0_INT_MAP_M (INTERRUPT_CORE1_TG_T0_INT_MAP_V << INTERRUPT_CORE1_TG_T0_INT_MAP_S) +#define INTERRUPT_CORE1_TG_T0_INT_MAP_V 0x0000001f +#define INTERRUPT_CORE1_TG_T0_INT_MAP_S 0 + +/* INTERRUPT_CORE1_TG_T1_INT_MAP_REG register + * tg_t1 interrupt configuration register + */ + +#define INTERRUPT_CORE1_TG_T1_INT_MAP_REG (DR_REG_INTERRUPT_CORE1_BASE + 0xcc) + +/* INTERRUPT_CORE1_TG_T1_INT_MAP : R/W; bitpos: [4:0]; default: 16; + * this register used to map tg_t1 interrupt to one of core1's external + * interrupt + */ + +#define INTERRUPT_CORE1_TG_T1_INT_MAP 0x0000001f +#define INTERRUPT_CORE1_TG_T1_INT_MAP_M (INTERRUPT_CORE1_TG_T1_INT_MAP_V << INTERRUPT_CORE1_TG_T1_INT_MAP_S) +#define INTERRUPT_CORE1_TG_T1_INT_MAP_V 0x0000001f +#define INTERRUPT_CORE1_TG_T1_INT_MAP_S 0 + +/* INTERRUPT_CORE1_TG_WDT_INT_MAP_REG register + * tg_wdt interrupt configuration register + */ + +#define INTERRUPT_CORE1_TG_WDT_INT_MAP_REG (DR_REG_INTERRUPT_CORE1_BASE + 0xd0) + +/* INTERRUPT_CORE1_TG_WDT_INT_MAP : R/W; bitpos: [4:0]; default: 16; + * this register used to map rg_wdt interrupt to one of core1's external + * interrupt + */ + +#define INTERRUPT_CORE1_TG_WDT_INT_MAP 0x0000001f +#define INTERRUPT_CORE1_TG_WDT_INT_MAP_M (INTERRUPT_CORE1_TG_WDT_INT_MAP_V << INTERRUPT_CORE1_TG_WDT_INT_MAP_S) +#define INTERRUPT_CORE1_TG_WDT_INT_MAP_V 0x0000001f +#define INTERRUPT_CORE1_TG_WDT_INT_MAP_S 0 + +/* INTERRUPT_CORE1_TG1_T0_INT_MAP_REG register + * tg1_t0 interrupt configuration register + */ + +#define INTERRUPT_CORE1_TG1_T0_INT_MAP_REG (DR_REG_INTERRUPT_CORE1_BASE + 0xd4) + +/* INTERRUPT_CORE1_TG1_T0_INT_MAP : R/W; bitpos: [4:0]; default: 16; + * this register used to map tg1_t0 interrupt to one of core1's external + * interrupt + */ + +#define INTERRUPT_CORE1_TG1_T0_INT_MAP 0x0000001f +#define INTERRUPT_CORE1_TG1_T0_INT_MAP_M (INTERRUPT_CORE1_TG1_T0_INT_MAP_V << INTERRUPT_CORE1_TG1_T0_INT_MAP_S) +#define INTERRUPT_CORE1_TG1_T0_INT_MAP_V 0x0000001f +#define INTERRUPT_CORE1_TG1_T0_INT_MAP_S 0 + +/* INTERRUPT_CORE1_TG1_T1_INT_MAP_REG register + * tg1_t1 interrupt configuration register + */ + +#define INTERRUPT_CORE1_TG1_T1_INT_MAP_REG (DR_REG_INTERRUPT_CORE1_BASE + 0xd8) + +/* INTERRUPT_CORE1_TG1_T1_INT_MAP : R/W; bitpos: [4:0]; default: 16; + * this register used to map tg1_t1 interrupt to one of core1's external + * interrupt + */ + +#define INTERRUPT_CORE1_TG1_T1_INT_MAP 0x0000001f +#define INTERRUPT_CORE1_TG1_T1_INT_MAP_M (INTERRUPT_CORE1_TG1_T1_INT_MAP_V << INTERRUPT_CORE1_TG1_T1_INT_MAP_S) +#define INTERRUPT_CORE1_TG1_T1_INT_MAP_V 0x0000001f +#define INTERRUPT_CORE1_TG1_T1_INT_MAP_S 0 + +/* INTERRUPT_CORE1_TG1_WDT_INT_MAP_REG register + * tg1_wdt interrupt configuration register + */ + +#define INTERRUPT_CORE1_TG1_WDT_INT_MAP_REG (DR_REG_INTERRUPT_CORE1_BASE + 0xdc) + +/* INTERRUPT_CORE1_TG1_WDT_INT_MAP : R/W; bitpos: [4:0]; default: 16; + * this register used to map tg1_wdt interrupt to one of core1's external + * interrupt + */ + +#define INTERRUPT_CORE1_TG1_WDT_INT_MAP 0x0000001f +#define INTERRUPT_CORE1_TG1_WDT_INT_MAP_M (INTERRUPT_CORE1_TG1_WDT_INT_MAP_V << INTERRUPT_CORE1_TG1_WDT_INT_MAP_S) +#define INTERRUPT_CORE1_TG1_WDT_INT_MAP_V 0x0000001f +#define INTERRUPT_CORE1_TG1_WDT_INT_MAP_S 0 + +/* INTERRUPT_CORE1_CACHE_IA_INT_MAP_REG register + * cache_ia interrupt configuration register + */ + +#define INTERRUPT_CORE1_CACHE_IA_INT_MAP_REG (DR_REG_INTERRUPT_CORE1_BASE + 0xe0) + +/* INTERRUPT_CORE1_CACHE_IA_INT_MAP : R/W; bitpos: [4:0]; default: 16; + * this register used to map cache_ia interrupt to one of core1's external + * interrupt + */ + +#define INTERRUPT_CORE1_CACHE_IA_INT_MAP 0x0000001f +#define INTERRUPT_CORE1_CACHE_IA_INT_MAP_M (INTERRUPT_CORE1_CACHE_IA_INT_MAP_V << INTERRUPT_CORE1_CACHE_IA_INT_MAP_S) +#define INTERRUPT_CORE1_CACHE_IA_INT_MAP_V 0x0000001f +#define INTERRUPT_CORE1_CACHE_IA_INT_MAP_S 0 + +/* INTERRUPT_CORE1_SYSTIMER_TARGET0_INT_MAP_REG register + * systimer_target0 interrupt configuration register + */ + +#define INTERRUPT_CORE1_SYSTIMER_TARGET0_INT_MAP_REG (DR_REG_INTERRUPT_CORE1_BASE + 0xe4) + +/* INTERRUPT_CORE1_SYSTIMER_TARGET0_INT_MAP : R/W; bitpos: [4:0]; default: + * 16; + * this register used to map systimer_target0 interrupt to one of core1's + * external interrupt + */ + +#define INTERRUPT_CORE1_SYSTIMER_TARGET0_INT_MAP 0x0000001f +#define INTERRUPT_CORE1_SYSTIMER_TARGET0_INT_MAP_M (INTERRUPT_CORE1_SYSTIMER_TARGET0_INT_MAP_V << INTERRUPT_CORE1_SYSTIMER_TARGET0_INT_MAP_S) +#define INTERRUPT_CORE1_SYSTIMER_TARGET0_INT_MAP_V 0x0000001f +#define INTERRUPT_CORE1_SYSTIMER_TARGET0_INT_MAP_S 0 + +/* INTERRUPT_CORE1_SYSTIMER_TARGET1_INT_MAP_REG register + * systimer_target1 interrupt configuration register + */ + +#define INTERRUPT_CORE1_SYSTIMER_TARGET1_INT_MAP_REG (DR_REG_INTERRUPT_CORE1_BASE + 0xe8) + +/* INTERRUPT_CORE1_SYSTIMER_TARGET1_INT_MAP : R/W; bitpos: [4:0]; default: + * 16; + * this register used to map systimer_target1 interrupt to one of core1's + * external interrupt + */ + +#define INTERRUPT_CORE1_SYSTIMER_TARGET1_INT_MAP 0x0000001f +#define INTERRUPT_CORE1_SYSTIMER_TARGET1_INT_MAP_M (INTERRUPT_CORE1_SYSTIMER_TARGET1_INT_MAP_V << INTERRUPT_CORE1_SYSTIMER_TARGET1_INT_MAP_S) +#define INTERRUPT_CORE1_SYSTIMER_TARGET1_INT_MAP_V 0x0000001f +#define INTERRUPT_CORE1_SYSTIMER_TARGET1_INT_MAP_S 0 + +/* INTERRUPT_CORE1_SYSTIMER_TARGET2_INT_MAP_REG register + * systimer_target2 interrupt configuration register + */ + +#define INTERRUPT_CORE1_SYSTIMER_TARGET2_INT_MAP_REG (DR_REG_INTERRUPT_CORE1_BASE + 0xec) + +/* INTERRUPT_CORE1_SYSTIMER_TARGET2_INT_MAP : R/W; bitpos: [4:0]; default: + * 16; + * this register used to map systimer_target2 interrupt to one of core1's + * external interrupt + */ + +#define INTERRUPT_CORE1_SYSTIMER_TARGET2_INT_MAP 0x0000001f +#define INTERRUPT_CORE1_SYSTIMER_TARGET2_INT_MAP_M (INTERRUPT_CORE1_SYSTIMER_TARGET2_INT_MAP_V << INTERRUPT_CORE1_SYSTIMER_TARGET2_INT_MAP_S) +#define INTERRUPT_CORE1_SYSTIMER_TARGET2_INT_MAP_V 0x0000001f +#define INTERRUPT_CORE1_SYSTIMER_TARGET2_INT_MAP_S 0 + +/* INTERRUPT_CORE1_SPI_MEM_REJECT_INTR_MAP_REG register + * spi_mem_reject interrupt configuration register + */ + +#define INTERRUPT_CORE1_SPI_MEM_REJECT_INTR_MAP_REG (DR_REG_INTERRUPT_CORE1_BASE + 0xf0) + +/* INTERRUPT_CORE1_SPI_MEM_REJECT_INTR_MAP : R/W; bitpos: [4:0]; default: 16; + * this register used to map spi_mem_reject interrupt to one of core1's + * external interrupt + */ + +#define INTERRUPT_CORE1_SPI_MEM_REJECT_INTR_MAP 0x0000001f +#define INTERRUPT_CORE1_SPI_MEM_REJECT_INTR_MAP_M (INTERRUPT_CORE1_SPI_MEM_REJECT_INTR_MAP_V << INTERRUPT_CORE1_SPI_MEM_REJECT_INTR_MAP_S) +#define INTERRUPT_CORE1_SPI_MEM_REJECT_INTR_MAP_V 0x0000001f +#define INTERRUPT_CORE1_SPI_MEM_REJECT_INTR_MAP_S 0 + +/* INTERRUPT_CORE1_DCACHE_PRELOAD_INT_MAP_REG register + * dcache_prelaod interrupt configuration register + */ + +#define INTERRUPT_CORE1_DCACHE_PRELOAD_INT_MAP_REG (DR_REG_INTERRUPT_CORE1_BASE + 0xf4) + +/* INTERRUPT_CORE1_DCACHE_PRELOAD_INT_MAP : R/W; bitpos: [4:0]; default: 16; + * this register used to map dcache_prelaod interrupt to one of core1's + * external interrupt + */ + +#define INTERRUPT_CORE1_DCACHE_PRELOAD_INT_MAP 0x0000001f +#define INTERRUPT_CORE1_DCACHE_PRELOAD_INT_MAP_M (INTERRUPT_CORE1_DCACHE_PRELOAD_INT_MAP_V << INTERRUPT_CORE1_DCACHE_PRELOAD_INT_MAP_S) +#define INTERRUPT_CORE1_DCACHE_PRELOAD_INT_MAP_V 0x0000001f +#define INTERRUPT_CORE1_DCACHE_PRELOAD_INT_MAP_S 0 + +/* INTERRUPT_CORE1_ICACHE_PRELOAD_INT_MAP_REG register + * icache_preload interrupt configuration register + */ + +#define INTERRUPT_CORE1_ICACHE_PRELOAD_INT_MAP_REG (DR_REG_INTERRUPT_CORE1_BASE + 0xf8) + +/* INTERRUPT_CORE1_ICACHE_PRELOAD_INT_MAP : R/W; bitpos: [4:0]; default: 16; + * this register used to map icache_preload interrupt to one of core1's + * external interrupt + */ + +#define INTERRUPT_CORE1_ICACHE_PRELOAD_INT_MAP 0x0000001f +#define INTERRUPT_CORE1_ICACHE_PRELOAD_INT_MAP_M (INTERRUPT_CORE1_ICACHE_PRELOAD_INT_MAP_V << INTERRUPT_CORE1_ICACHE_PRELOAD_INT_MAP_S) +#define INTERRUPT_CORE1_ICACHE_PRELOAD_INT_MAP_V 0x0000001f +#define INTERRUPT_CORE1_ICACHE_PRELOAD_INT_MAP_S 0 + +/* INTERRUPT_CORE1_DCACHE_SYNC_INT_MAP_REG register + * dcache_sync interrupt configuration register + */ + +#define INTERRUPT_CORE1_DCACHE_SYNC_INT_MAP_REG (DR_REG_INTERRUPT_CORE1_BASE + 0xfc) + +/* INTERRUPT_CORE1_DCACHE_SYNC_INT_MAP : R/W; bitpos: [4:0]; default: 16; + * this register used to map dcache_sync interrupt to one of core1's + * external interrupt + */ + +#define INTERRUPT_CORE1_DCACHE_SYNC_INT_MAP 0x0000001f +#define INTERRUPT_CORE1_DCACHE_SYNC_INT_MAP_M (INTERRUPT_CORE1_DCACHE_SYNC_INT_MAP_V << INTERRUPT_CORE1_DCACHE_SYNC_INT_MAP_S) +#define INTERRUPT_CORE1_DCACHE_SYNC_INT_MAP_V 0x0000001f +#define INTERRUPT_CORE1_DCACHE_SYNC_INT_MAP_S 0 + +/* INTERRUPT_CORE1_ICACHE_SYNC_INT_MAP_REG register + * icache_sync interrupt configuration register + */ + +#define INTERRUPT_CORE1_ICACHE_SYNC_INT_MAP_REG (DR_REG_INTERRUPT_CORE1_BASE + 0x100) + +/* INTERRUPT_CORE1_ICACHE_SYNC_INT_MAP : R/W; bitpos: [4:0]; default: 16; + * this register used to map icache_sync interrupt to one of core1's + * external interrupt + */ + +#define INTERRUPT_CORE1_ICACHE_SYNC_INT_MAP 0x0000001f +#define INTERRUPT_CORE1_ICACHE_SYNC_INT_MAP_M (INTERRUPT_CORE1_ICACHE_SYNC_INT_MAP_V << INTERRUPT_CORE1_ICACHE_SYNC_INT_MAP_S) +#define INTERRUPT_CORE1_ICACHE_SYNC_INT_MAP_V 0x0000001f +#define INTERRUPT_CORE1_ICACHE_SYNC_INT_MAP_S 0 + +/* INTERRUPT_CORE1_APB_ADC_INT_MAP_REG register + * apb_adc interrupt configuration register + */ + +#define INTERRUPT_CORE1_APB_ADC_INT_MAP_REG (DR_REG_INTERRUPT_CORE1_BASE + 0x104) + +/* INTERRUPT_CORE1_APB_ADC_INT_MAP : R/W; bitpos: [4:0]; default: 16; + * this register used to map apb_adc interrupt to one of core1's external + * interrupt + */ + +#define INTERRUPT_CORE1_APB_ADC_INT_MAP 0x0000001f +#define INTERRUPT_CORE1_APB_ADC_INT_MAP_M (INTERRUPT_CORE1_APB_ADC_INT_MAP_V << INTERRUPT_CORE1_APB_ADC_INT_MAP_S) +#define INTERRUPT_CORE1_APB_ADC_INT_MAP_V 0x0000001f +#define INTERRUPT_CORE1_APB_ADC_INT_MAP_S 0 + +/* INTERRUPT_CORE1_DMA_IN_CH0_INT_MAP_REG register + * dma_in_ch0 interrupt configuration register + */ + +#define INTERRUPT_CORE1_DMA_IN_CH0_INT_MAP_REG (DR_REG_INTERRUPT_CORE1_BASE + 0x108) + +/* INTERRUPT_CORE1_DMA_IN_CH0_INT_MAP : R/W; bitpos: [4:0]; default: 16; + * this register used to map dma_in_ch0 interrupt to one of core1's external + * interrupt + */ + +#define INTERRUPT_CORE1_DMA_IN_CH0_INT_MAP 0x0000001f +#define INTERRUPT_CORE1_DMA_IN_CH0_INT_MAP_M (INTERRUPT_CORE1_DMA_IN_CH0_INT_MAP_V << INTERRUPT_CORE1_DMA_IN_CH0_INT_MAP_S) +#define INTERRUPT_CORE1_DMA_IN_CH0_INT_MAP_V 0x0000001f +#define INTERRUPT_CORE1_DMA_IN_CH0_INT_MAP_S 0 + +/* INTERRUPT_CORE1_DMA_IN_CH1_INT_MAP_REG register + * dma_in_ch1 interrupt configuration register + */ + +#define INTERRUPT_CORE1_DMA_IN_CH1_INT_MAP_REG (DR_REG_INTERRUPT_CORE1_BASE + 0x10c) + +/* INTERRUPT_CORE1_DMA_IN_CH1_INT_MAP : R/W; bitpos: [4:0]; default: 16; + * this register used to map dma_in_ch1 interrupt to one of core1's external + * interrupt + */ + +#define INTERRUPT_CORE1_DMA_IN_CH1_INT_MAP 0x0000001f +#define INTERRUPT_CORE1_DMA_IN_CH1_INT_MAP_M (INTERRUPT_CORE1_DMA_IN_CH1_INT_MAP_V << INTERRUPT_CORE1_DMA_IN_CH1_INT_MAP_S) +#define INTERRUPT_CORE1_DMA_IN_CH1_INT_MAP_V 0x0000001f +#define INTERRUPT_CORE1_DMA_IN_CH1_INT_MAP_S 0 + +/* INTERRUPT_CORE1_DMA_IN_CH2_INT_MAP_REG register + * dma_in_ch2 interrupt configuration register + */ + +#define INTERRUPT_CORE1_DMA_IN_CH2_INT_MAP_REG (DR_REG_INTERRUPT_CORE1_BASE + 0x110) + +/* INTERRUPT_CORE1_DMA_IN_CH2_INT_MAP : R/W; bitpos: [4:0]; default: 16; + * this register used to map dma_in_ch2 interrupt to one of core1's external + * interrupt + */ + +#define INTERRUPT_CORE1_DMA_IN_CH2_INT_MAP 0x0000001f +#define INTERRUPT_CORE1_DMA_IN_CH2_INT_MAP_M (INTERRUPT_CORE1_DMA_IN_CH2_INT_MAP_V << INTERRUPT_CORE1_DMA_IN_CH2_INT_MAP_S) +#define INTERRUPT_CORE1_DMA_IN_CH2_INT_MAP_V 0x0000001f +#define INTERRUPT_CORE1_DMA_IN_CH2_INT_MAP_S 0 + +/* INTERRUPT_CORE1_DMA_IN_CH3_INT_MAP_REG register + * dma_in_ch3 interrupt configuration register + */ + +#define INTERRUPT_CORE1_DMA_IN_CH3_INT_MAP_REG (DR_REG_INTERRUPT_CORE1_BASE + 0x114) + +/* INTERRUPT_CORE1_DMA_IN_CH3_INT_MAP : R/W; bitpos: [4:0]; default: 16; + * this register used to map dma_in_ch3 interrupt to one of core1's external + * interrupt + */ + +#define INTERRUPT_CORE1_DMA_IN_CH3_INT_MAP 0x0000001f +#define INTERRUPT_CORE1_DMA_IN_CH3_INT_MAP_M (INTERRUPT_CORE1_DMA_IN_CH3_INT_MAP_V << INTERRUPT_CORE1_DMA_IN_CH3_INT_MAP_S) +#define INTERRUPT_CORE1_DMA_IN_CH3_INT_MAP_V 0x0000001f +#define INTERRUPT_CORE1_DMA_IN_CH3_INT_MAP_S 0 + +/* INTERRUPT_CORE1_DMA_IN_CH4_INT_MAP_REG register + * dma_in_ch4 interrupt configuration register + */ + +#define INTERRUPT_CORE1_DMA_IN_CH4_INT_MAP_REG (DR_REG_INTERRUPT_CORE1_BASE + 0x118) + +/* INTERRUPT_CORE1_DMA_IN_CH4_INT_MAP : R/W; bitpos: [4:0]; default: 16; + * this register used to map dma_in_ch4 interrupt to one of core1's external + * interrupt + */ + +#define INTERRUPT_CORE1_DMA_IN_CH4_INT_MAP 0x0000001f +#define INTERRUPT_CORE1_DMA_IN_CH4_INT_MAP_M (INTERRUPT_CORE1_DMA_IN_CH4_INT_MAP_V << INTERRUPT_CORE1_DMA_IN_CH4_INT_MAP_S) +#define INTERRUPT_CORE1_DMA_IN_CH4_INT_MAP_V 0x0000001f +#define INTERRUPT_CORE1_DMA_IN_CH4_INT_MAP_S 0 + +/* INTERRUPT_CORE1_DMA_OUT_CH0_INT_MAP_REG register + * dma_out_ch0 interrupt configuration register + */ + +#define INTERRUPT_CORE1_DMA_OUT_CH0_INT_MAP_REG (DR_REG_INTERRUPT_CORE1_BASE + 0x11c) + +/* INTERRUPT_CORE1_DMA_OUT_CH0_INT_MAP : R/W; bitpos: [4:0]; default: 16; + * this register used to map dma_out_ch0 interrupt to one of core1's + * external interrupt + */ + +#define INTERRUPT_CORE1_DMA_OUT_CH0_INT_MAP 0x0000001f +#define INTERRUPT_CORE1_DMA_OUT_CH0_INT_MAP_M (INTERRUPT_CORE1_DMA_OUT_CH0_INT_MAP_V << INTERRUPT_CORE1_DMA_OUT_CH0_INT_MAP_S) +#define INTERRUPT_CORE1_DMA_OUT_CH0_INT_MAP_V 0x0000001f +#define INTERRUPT_CORE1_DMA_OUT_CH0_INT_MAP_S 0 + +/* INTERRUPT_CORE1_DMA_OUT_CH1_INT_MAP_REG register + * dma_out_ch1 interrupt configuration register + */ + +#define INTERRUPT_CORE1_DMA_OUT_CH1_INT_MAP_REG (DR_REG_INTERRUPT_CORE1_BASE + 0x120) + +/* INTERRUPT_CORE1_DMA_OUT_CH1_INT_MAP : R/W; bitpos: [4:0]; default: 16; + * this register used to map dma_out_ch1 interrupt to one of core1's + * external interrupt + */ + +#define INTERRUPT_CORE1_DMA_OUT_CH1_INT_MAP 0x0000001f +#define INTERRUPT_CORE1_DMA_OUT_CH1_INT_MAP_M (INTERRUPT_CORE1_DMA_OUT_CH1_INT_MAP_V << INTERRUPT_CORE1_DMA_OUT_CH1_INT_MAP_S) +#define INTERRUPT_CORE1_DMA_OUT_CH1_INT_MAP_V 0x0000001f +#define INTERRUPT_CORE1_DMA_OUT_CH1_INT_MAP_S 0 + +/* INTERRUPT_CORE1_DMA_OUT_CH2_INT_MAP_REG register + * dma_out_ch2 interrupt configuration register + */ + +#define INTERRUPT_CORE1_DMA_OUT_CH2_INT_MAP_REG (DR_REG_INTERRUPT_CORE1_BASE + 0x124) + +/* INTERRUPT_CORE1_DMA_OUT_CH2_INT_MAP : R/W; bitpos: [4:0]; default: 16; + * this register used to map dma_out_ch2 interrupt to one of core1's + * external interrupt + */ + +#define INTERRUPT_CORE1_DMA_OUT_CH2_INT_MAP 0x0000001f +#define INTERRUPT_CORE1_DMA_OUT_CH2_INT_MAP_M (INTERRUPT_CORE1_DMA_OUT_CH2_INT_MAP_V << INTERRUPT_CORE1_DMA_OUT_CH2_INT_MAP_S) +#define INTERRUPT_CORE1_DMA_OUT_CH2_INT_MAP_V 0x0000001f +#define INTERRUPT_CORE1_DMA_OUT_CH2_INT_MAP_S 0 + +/* INTERRUPT_CORE1_DMA_OUT_CH3_INT_MAP_REG register + * dma_out_ch3 interrupt configuration register + */ + +#define INTERRUPT_CORE1_DMA_OUT_CH3_INT_MAP_REG (DR_REG_INTERRUPT_CORE1_BASE + 0x128) + +/* INTERRUPT_CORE1_DMA_OUT_CH3_INT_MAP : R/W; bitpos: [4:0]; default: 16; + * this register used to map dma_out_ch3 interrupt to one of core1's + * external interrupt + */ + +#define INTERRUPT_CORE1_DMA_OUT_CH3_INT_MAP 0x0000001f +#define INTERRUPT_CORE1_DMA_OUT_CH3_INT_MAP_M (INTERRUPT_CORE1_DMA_OUT_CH3_INT_MAP_V << INTERRUPT_CORE1_DMA_OUT_CH3_INT_MAP_S) +#define INTERRUPT_CORE1_DMA_OUT_CH3_INT_MAP_V 0x0000001f +#define INTERRUPT_CORE1_DMA_OUT_CH3_INT_MAP_S 0 + +/* INTERRUPT_CORE1_DMA_OUT_CH4_INT_MAP_REG register + * dma_out_ch4 interrupt configuration register + */ + +#define INTERRUPT_CORE1_DMA_OUT_CH4_INT_MAP_REG (DR_REG_INTERRUPT_CORE1_BASE + 0x12c) + +/* INTERRUPT_CORE1_DMA_OUT_CH4_INT_MAP : R/W; bitpos: [4:0]; default: 16; + * this register used to map dma_out_ch4 interrupt to one of core1's + * external interrupt + */ + +#define INTERRUPT_CORE1_DMA_OUT_CH4_INT_MAP 0x0000001f +#define INTERRUPT_CORE1_DMA_OUT_CH4_INT_MAP_M (INTERRUPT_CORE1_DMA_OUT_CH4_INT_MAP_V << INTERRUPT_CORE1_DMA_OUT_CH4_INT_MAP_S) +#define INTERRUPT_CORE1_DMA_OUT_CH4_INT_MAP_V 0x0000001f +#define INTERRUPT_CORE1_DMA_OUT_CH4_INT_MAP_S 0 + +/* INTERRUPT_CORE1_RSA_INT_MAP_REG register + * rsa interrupt configuration register + */ + +#define INTERRUPT_CORE1_RSA_INT_MAP_REG (DR_REG_INTERRUPT_CORE1_BASE + 0x130) + +/* INTERRUPT_CORE1_RSA_INT_MAP : R/W; bitpos: [4:0]; default: 16; + * this register used to map rsa interrupt to one of core1's external + * interrupt + */ + +#define INTERRUPT_CORE1_RSA_INT_MAP 0x0000001f +#define INTERRUPT_CORE1_RSA_INT_MAP_M (INTERRUPT_CORE1_RSA_INT_MAP_V << INTERRUPT_CORE1_RSA_INT_MAP_S) +#define INTERRUPT_CORE1_RSA_INT_MAP_V 0x0000001f +#define INTERRUPT_CORE1_RSA_INT_MAP_S 0 + +/* INTERRUPT_CORE1_AES_INT_MAP_REG register + * aes interrupt configuration register + */ + +#define INTERRUPT_CORE1_AES_INT_MAP_REG (DR_REG_INTERRUPT_CORE1_BASE + 0x134) + +/* INTERRUPT_CORE1_AES_INT_MAP : R/W; bitpos: [4:0]; default: 16; + * this register used to map aes interrupt to one of core1's external + * interrupt + */ + +#define INTERRUPT_CORE1_AES_INT_MAP 0x0000001f +#define INTERRUPT_CORE1_AES_INT_MAP_M (INTERRUPT_CORE1_AES_INT_MAP_V << INTERRUPT_CORE1_AES_INT_MAP_S) +#define INTERRUPT_CORE1_AES_INT_MAP_V 0x0000001f +#define INTERRUPT_CORE1_AES_INT_MAP_S 0 + +/* INTERRUPT_CORE1_SHA_INT_MAP_REG register + * sha interrupt configuration register + */ + +#define INTERRUPT_CORE1_SHA_INT_MAP_REG (DR_REG_INTERRUPT_CORE1_BASE + 0x138) + +/* INTERRUPT_CORE1_SHA_INT_MAP : R/W; bitpos: [4:0]; default: 16; + * this register used to map sha interrupt to one of core1's external + * interrupt + */ + +#define INTERRUPT_CORE1_SHA_INT_MAP 0x0000001f +#define INTERRUPT_CORE1_SHA_INT_MAP_M (INTERRUPT_CORE1_SHA_INT_MAP_V << INTERRUPT_CORE1_SHA_INT_MAP_S) +#define INTERRUPT_CORE1_SHA_INT_MAP_V 0x0000001f +#define INTERRUPT_CORE1_SHA_INT_MAP_S 0 + +/* INTERRUPT_CORE1_CPU_INTR_FROM_CPU_0_MAP_REG register + * cpu_intr_from_cpu_0 interrupt configuration register + */ + +#define INTERRUPT_CORE1_CPU_INTR_FROM_CPU_0_MAP_REG (DR_REG_INTERRUPT_CORE1_BASE + 0x13c) + +/* INTERRUPT_CORE1_CPU_INTR_FROM_CPU_0_MAP : R/W; bitpos: [4:0]; default: 16; + * this register used to map cpu_intr_from_cpu_0 interrupt to one of core1's + * external interrupt + */ + +#define INTERRUPT_CORE1_CPU_INTR_FROM_CPU_0_MAP 0x0000001f +#define INTERRUPT_CORE1_CPU_INTR_FROM_CPU_0_MAP_M (INTERRUPT_CORE1_CPU_INTR_FROM_CPU_0_MAP_V << INTERRUPT_CORE1_CPU_INTR_FROM_CPU_0_MAP_S) +#define INTERRUPT_CORE1_CPU_INTR_FROM_CPU_0_MAP_V 0x0000001f +#define INTERRUPT_CORE1_CPU_INTR_FROM_CPU_0_MAP_S 0 + +/* INTERRUPT_CORE1_CPU_INTR_FROM_CPU_1_MAP_REG register + * cpu_intr_from_cpu_1 interrupt configuration register + */ + +#define INTERRUPT_CORE1_CPU_INTR_FROM_CPU_1_MAP_REG (DR_REG_INTERRUPT_CORE1_BASE + 0x140) + +/* INTERRUPT_CORE1_CPU_INTR_FROM_CPU_1_MAP : R/W; bitpos: [4:0]; default: 16; + * this register used to map cpu_intr_from_cpu_1 interrupt to one of core1's + * external interrupt + */ + +#define INTERRUPT_CORE1_CPU_INTR_FROM_CPU_1_MAP 0x0000001f +#define INTERRUPT_CORE1_CPU_INTR_FROM_CPU_1_MAP_M (INTERRUPT_CORE1_CPU_INTR_FROM_CPU_1_MAP_V << INTERRUPT_CORE1_CPU_INTR_FROM_CPU_1_MAP_S) +#define INTERRUPT_CORE1_CPU_INTR_FROM_CPU_1_MAP_V 0x0000001f +#define INTERRUPT_CORE1_CPU_INTR_FROM_CPU_1_MAP_S 0 + +/* INTERRUPT_CORE1_CPU_INTR_FROM_CPU_2_MAP_REG register + * cpu_intr_from_cpu_2 interrupt configuration register + */ + +#define INTERRUPT_CORE1_CPU_INTR_FROM_CPU_2_MAP_REG (DR_REG_INTERRUPT_CORE1_BASE + 0x144) + +/* INTERRUPT_CORE1_CPU_INTR_FROM_CPU_2_MAP : R/W; bitpos: [4:0]; default: 16; + * this register used to map cpu_intr_from_cpu_2 interrupt to one of core1's + * external interrupt + */ + +#define INTERRUPT_CORE1_CPU_INTR_FROM_CPU_2_MAP 0x0000001f +#define INTERRUPT_CORE1_CPU_INTR_FROM_CPU_2_MAP_M (INTERRUPT_CORE1_CPU_INTR_FROM_CPU_2_MAP_V << INTERRUPT_CORE1_CPU_INTR_FROM_CPU_2_MAP_S) +#define INTERRUPT_CORE1_CPU_INTR_FROM_CPU_2_MAP_V 0x0000001f +#define INTERRUPT_CORE1_CPU_INTR_FROM_CPU_2_MAP_S 0 + +/* INTERRUPT_CORE1_CPU_INTR_FROM_CPU_3_MAP_REG register + * cpu_intr_from_cpu_3 interrupt configuration register + */ + +#define INTERRUPT_CORE1_CPU_INTR_FROM_CPU_3_MAP_REG (DR_REG_INTERRUPT_CORE1_BASE + 0x148) + +/* INTERRUPT_CORE1_CPU_INTR_FROM_CPU_3_MAP : R/W; bitpos: [4:0]; default: 16; + * this register used to map cpu_intr_from_cpu_3 interrupt to one of core1's + * external interrupt + */ + +#define INTERRUPT_CORE1_CPU_INTR_FROM_CPU_3_MAP 0x0000001f +#define INTERRUPT_CORE1_CPU_INTR_FROM_CPU_3_MAP_M (INTERRUPT_CORE1_CPU_INTR_FROM_CPU_3_MAP_V << INTERRUPT_CORE1_CPU_INTR_FROM_CPU_3_MAP_S) +#define INTERRUPT_CORE1_CPU_INTR_FROM_CPU_3_MAP_V 0x0000001f +#define INTERRUPT_CORE1_CPU_INTR_FROM_CPU_3_MAP_S 0 + +/* INTERRUPT_CORE1_ASSIST_DEBUG_INTR_MAP_REG register + * assist_debug interrupt configuration register + */ + +#define INTERRUPT_CORE1_ASSIST_DEBUG_INTR_MAP_REG (DR_REG_INTERRUPT_CORE1_BASE + 0x14c) + +/* INTERRUPT_CORE1_ASSIST_DEBUG_INTR_MAP : R/W; bitpos: [4:0]; default: 16; + * this register used to map assist_debug interrupt to one of core1's + * external interrupt + */ + +#define INTERRUPT_CORE1_ASSIST_DEBUG_INTR_MAP 0x0000001f +#define INTERRUPT_CORE1_ASSIST_DEBUG_INTR_MAP_M (INTERRUPT_CORE1_ASSIST_DEBUG_INTR_MAP_V << INTERRUPT_CORE1_ASSIST_DEBUG_INTR_MAP_S) +#define INTERRUPT_CORE1_ASSIST_DEBUG_INTR_MAP_V 0x0000001f +#define INTERRUPT_CORE1_ASSIST_DEBUG_INTR_MAP_S 0 + +/* INTERRUPT_CORE1_DMA_APBPERI_PMS_MONITOR_VIOLATE_INTR_MAP_REG register + * dma_pms_monitor_violatile interrupt configuration register + */ + +#define INTERRUPT_CORE1_DMA_APBPERI_PMS_MONITOR_VIOLATE_INTR_MAP_REG (DR_REG_INTERRUPT_CORE1_BASE + 0x150) + +/* INTERRUPT_CORE1_DMA_APBPERI_PMS_MONITOR_VIOLATE_INTR_MAP : R/W; bitpos: + * [4:0]; default: 16; + * this register used to map dma_pms_monitor_violatile interrupt to one of + * core1's external interrupt + */ + +#define INTERRUPT_CORE1_DMA_APBPERI_PMS_MONITOR_VIOLATE_INTR_MAP 0x0000001f +#define INTERRUPT_CORE1_DMA_APBPERI_PMS_MONITOR_VIOLATE_INTR_MAP_M (INTERRUPT_CORE1_DMA_APBPERI_PMS_MONITOR_VIOLATE_INTR_MAP_V << INTERRUPT_CORE1_DMA_APBPERI_PMS_MONITOR_VIOLATE_INTR_MAP_S) +#define INTERRUPT_CORE1_DMA_APBPERI_PMS_MONITOR_VIOLATE_INTR_MAP_V 0x0000001f +#define INTERRUPT_CORE1_DMA_APBPERI_PMS_MONITOR_VIOLATE_INTR_MAP_S 0 + +/* INTERRUPT_CORE1_CORE_0_IRAM0_PMS_MONITOR_VIOLATE_INTR_MAP_REG register + * core0_IRam0_pms_monitor_violatile interrupt configuration register + */ + +#define INTERRUPT_CORE1_CORE_0_IRAM0_PMS_MONITOR_VIOLATE_INTR_MAP_REG (DR_REG_INTERRUPT_CORE1_BASE + 0x154) + +/* INTERRUPT_CORE1_CORE_0_IRAM0_PMS_MONITOR_VIOLATE_INTR_MAP : R/W; bitpos: + * [4:0]; default: 16; + * this register used to map core0_IRam0_pms_monitor_violatile interrupt to + * one of core1's external interrupt + */ + +#define INTERRUPT_CORE1_CORE_0_IRAM0_PMS_MONITOR_VIOLATE_INTR_MAP 0x0000001f +#define INTERRUPT_CORE1_CORE_0_IRAM0_PMS_MONITOR_VIOLATE_INTR_MAP_M (INTERRUPT_CORE1_CORE_0_IRAM0_PMS_MONITOR_VIOLATE_INTR_MAP_V << INTERRUPT_CORE1_CORE_0_IRAM0_PMS_MONITOR_VIOLATE_INTR_MAP_S) +#define INTERRUPT_CORE1_CORE_0_IRAM0_PMS_MONITOR_VIOLATE_INTR_MAP_V 0x0000001f +#define INTERRUPT_CORE1_CORE_0_IRAM0_PMS_MONITOR_VIOLATE_INTR_MAP_S 0 + +/* INTERRUPT_CORE1_CORE_0_DRAM0_PMS_MONITOR_VIOLATE_INTR_MAP_REG register + * core0_DRam0_pms_monitor_violatile interrupt configuration register + */ + +#define INTERRUPT_CORE1_CORE_0_DRAM0_PMS_MONITOR_VIOLATE_INTR_MAP_REG (DR_REG_INTERRUPT_CORE1_BASE + 0x158) + +/* INTERRUPT_CORE1_CORE_0_DRAM0_PMS_MONITOR_VIOLATE_INTR_MAP : R/W; bitpos: + * [4:0]; default: 16; + * this register used to map core0_DRam0_pms_monitor_violatile interrupt to + * one of core1's external interrupt + */ + +#define INTERRUPT_CORE1_CORE_0_DRAM0_PMS_MONITOR_VIOLATE_INTR_MAP 0x0000001f +#define INTERRUPT_CORE1_CORE_0_DRAM0_PMS_MONITOR_VIOLATE_INTR_MAP_M (INTERRUPT_CORE1_CORE_0_DRAM0_PMS_MONITOR_VIOLATE_INTR_MAP_V << INTERRUPT_CORE1_CORE_0_DRAM0_PMS_MONITOR_VIOLATE_INTR_MAP_S) +#define INTERRUPT_CORE1_CORE_0_DRAM0_PMS_MONITOR_VIOLATE_INTR_MAP_V 0x0000001f +#define INTERRUPT_CORE1_CORE_0_DRAM0_PMS_MONITOR_VIOLATE_INTR_MAP_S 0 + +/* INTERRUPT_CORE1_CORE_0_PIF_PMS_MONITOR_VIOLATE_INTR_MAP_REG register + * core0_PIF_pms_monitor_violatile interrupt configuration register + */ + +#define INTERRUPT_CORE1_CORE_0_PIF_PMS_MONITOR_VIOLATE_INTR_MAP_REG (DR_REG_INTERRUPT_CORE1_BASE + 0x15c) + +/* INTERRUPT_CORE1_CORE_0_PIF_PMS_MONITOR_VIOLATE_INTR_MAP : R/W; bitpos: + * [4:0]; default: 16; + * this register used to map core0_PIF_pms_monitor_violatile interrupt to + * one of core1's external interrupt + */ + +#define INTERRUPT_CORE1_CORE_0_PIF_PMS_MONITOR_VIOLATE_INTR_MAP 0x0000001f +#define INTERRUPT_CORE1_CORE_0_PIF_PMS_MONITOR_VIOLATE_INTR_MAP_M (INTERRUPT_CORE1_CORE_0_PIF_PMS_MONITOR_VIOLATE_INTR_MAP_V << INTERRUPT_CORE1_CORE_0_PIF_PMS_MONITOR_VIOLATE_INTR_MAP_S) +#define INTERRUPT_CORE1_CORE_0_PIF_PMS_MONITOR_VIOLATE_INTR_MAP_V 0x0000001f +#define INTERRUPT_CORE1_CORE_0_PIF_PMS_MONITOR_VIOLATE_INTR_MAP_S 0 + +/* INTERRUPT_CORE1_CORE_0_PIF_PMS_MONITOR_VIOLATE_SIZE_INTR_MAP_REG register + * core0_PIF_pms_monitor_violatile_size interrupt configuration register + */ + +#define INTERRUPT_CORE1_CORE_0_PIF_PMS_MONITOR_VIOLATE_SIZE_INTR_MAP_REG (DR_REG_INTERRUPT_CORE1_BASE + 0x160) + +/* INTERRUPT_CORE1_CORE_0_PIF_PMS_MONITOR_VIOLATE_SIZE_INTR_MAP : R/W; + * bitpos: [4:0]; default: 16; + * this register used to map core0_PIF_pms_monitor_violatile_size interrupt + * to one of core1's external interrupt + */ + +#define INTERRUPT_CORE1_CORE_0_PIF_PMS_MONITOR_VIOLATE_SIZE_INTR_MAP 0x0000001f +#define INTERRUPT_CORE1_CORE_0_PIF_PMS_MONITOR_VIOLATE_SIZE_INTR_MAP_M (INTERRUPT_CORE1_CORE_0_PIF_PMS_MONITOR_VIOLATE_SIZE_INTR_MAP_V << INTERRUPT_CORE1_CORE_0_PIF_PMS_MONITOR_VIOLATE_SIZE_INTR_MAP_S) +#define INTERRUPT_CORE1_CORE_0_PIF_PMS_MONITOR_VIOLATE_SIZE_INTR_MAP_V 0x0000001f +#define INTERRUPT_CORE1_CORE_0_PIF_PMS_MONITOR_VIOLATE_SIZE_INTR_MAP_S 0 + +/* INTERRUPT_CORE1_CORE_1_IRAM0_PMS_MONITOR_VIOLATE_INTR_MAP_REG register + * core1_IRam0_pms_monitor_violatile interrupt configuration register + */ + +#define INTERRUPT_CORE1_CORE_1_IRAM0_PMS_MONITOR_VIOLATE_INTR_MAP_REG (DR_REG_INTERRUPT_CORE1_BASE + 0x164) + +/* INTERRUPT_CORE1_CORE_1_IRAM0_PMS_MONITOR_VIOLATE_INTR_MAP : R/W; bitpos: + * [4:0]; default: 16; + * this register used to map core1_IRam0_pms_monitor_violatile interrupt to + * one of core1's external interrupt + */ + +#define INTERRUPT_CORE1_CORE_1_IRAM0_PMS_MONITOR_VIOLATE_INTR_MAP 0x0000001f +#define INTERRUPT_CORE1_CORE_1_IRAM0_PMS_MONITOR_VIOLATE_INTR_MAP_M (INTERRUPT_CORE1_CORE_1_IRAM0_PMS_MONITOR_VIOLATE_INTR_MAP_V << INTERRUPT_CORE1_CORE_1_IRAM0_PMS_MONITOR_VIOLATE_INTR_MAP_S) +#define INTERRUPT_CORE1_CORE_1_IRAM0_PMS_MONITOR_VIOLATE_INTR_MAP_V 0x0000001f +#define INTERRUPT_CORE1_CORE_1_IRAM0_PMS_MONITOR_VIOLATE_INTR_MAP_S 0 + +/* INTERRUPT_CORE1_CORE_1_DRAM0_PMS_MONITOR_VIOLATE_INTR_MAP_REG register + * core1_DRam0_pms_monitor_violatile interrupt configuration register + */ + +#define INTERRUPT_CORE1_CORE_1_DRAM0_PMS_MONITOR_VIOLATE_INTR_MAP_REG (DR_REG_INTERRUPT_CORE1_BASE + 0x168) + +/* INTERRUPT_CORE1_CORE_1_DRAM0_PMS_MONITOR_VIOLATE_INTR_MAP : R/W; bitpos: + * [4:0]; default: 16; + * this register used to map core1_DRam0_pms_monitor_violatile interrupt to + * one of core1's external interrupt + */ + +#define INTERRUPT_CORE1_CORE_1_DRAM0_PMS_MONITOR_VIOLATE_INTR_MAP 0x0000001f +#define INTERRUPT_CORE1_CORE_1_DRAM0_PMS_MONITOR_VIOLATE_INTR_MAP_M (INTERRUPT_CORE1_CORE_1_DRAM0_PMS_MONITOR_VIOLATE_INTR_MAP_V << INTERRUPT_CORE1_CORE_1_DRAM0_PMS_MONITOR_VIOLATE_INTR_MAP_S) +#define INTERRUPT_CORE1_CORE_1_DRAM0_PMS_MONITOR_VIOLATE_INTR_MAP_V 0x0000001f +#define INTERRUPT_CORE1_CORE_1_DRAM0_PMS_MONITOR_VIOLATE_INTR_MAP_S 0 + +/* INTERRUPT_CORE1_CORE_1_PIF_PMS_MONITOR_VIOLATE_INTR_MAP_REG register + * core1_PIF_pms_monitor_violatile interrupt configuration register + */ + +#define INTERRUPT_CORE1_CORE_1_PIF_PMS_MONITOR_VIOLATE_INTR_MAP_REG (DR_REG_INTERRUPT_CORE1_BASE + 0x16c) + +/* INTERRUPT_CORE1_CORE_1_PIF_PMS_MONITOR_VIOLATE_INTR_MAP : R/W; bitpos: + * [4:0]; default: 16; + * this register used to map core1_PIF_pms_monitor_violatile interrupt to + * one of core1's external interrupt + */ + +#define INTERRUPT_CORE1_CORE_1_PIF_PMS_MONITOR_VIOLATE_INTR_MAP 0x0000001f +#define INTERRUPT_CORE1_CORE_1_PIF_PMS_MONITOR_VIOLATE_INTR_MAP_M (INTERRUPT_CORE1_CORE_1_PIF_PMS_MONITOR_VIOLATE_INTR_MAP_V << INTERRUPT_CORE1_CORE_1_PIF_PMS_MONITOR_VIOLATE_INTR_MAP_S) +#define INTERRUPT_CORE1_CORE_1_PIF_PMS_MONITOR_VIOLATE_INTR_MAP_V 0x0000001f +#define INTERRUPT_CORE1_CORE_1_PIF_PMS_MONITOR_VIOLATE_INTR_MAP_S 0 + +/* INTERRUPT_CORE1_CORE_1_PIF_PMS_MONITOR_VIOLATE_SIZE_INTR_MAP_REG register + * core1_PIF_pms_monitor_violatile_size interrupt configuration register + */ + +#define INTERRUPT_CORE1_CORE_1_PIF_PMS_MONITOR_VIOLATE_SIZE_INTR_MAP_REG (DR_REG_INTERRUPT_CORE1_BASE + 0x170) + +/* INTERRUPT_CORE1_CORE_1_PIF_PMS_MONITOR_VIOLATE_SIZE_INTR_MAP : R/W; + * bitpos: [4:0]; default: 16; + * this register used to map core1_PIF_pms_monitor_violatile_size interrupt + * to one of core1's external interrupt + */ + +#define INTERRUPT_CORE1_CORE_1_PIF_PMS_MONITOR_VIOLATE_SIZE_INTR_MAP 0x0000001f +#define INTERRUPT_CORE1_CORE_1_PIF_PMS_MONITOR_VIOLATE_SIZE_INTR_MAP_M (INTERRUPT_CORE1_CORE_1_PIF_PMS_MONITOR_VIOLATE_SIZE_INTR_MAP_V << INTERRUPT_CORE1_CORE_1_PIF_PMS_MONITOR_VIOLATE_SIZE_INTR_MAP_S) +#define INTERRUPT_CORE1_CORE_1_PIF_PMS_MONITOR_VIOLATE_SIZE_INTR_MAP_V 0x0000001f +#define INTERRUPT_CORE1_CORE_1_PIF_PMS_MONITOR_VIOLATE_SIZE_INTR_MAP_S 0 + +/* INTERRUPT_CORE1_BACKUP_PMS_VIOLATE_INTR_MAP_REG register + * backup_pms_monitor_violatile interrupt configuration register + */ + +#define INTERRUPT_CORE1_BACKUP_PMS_VIOLATE_INTR_MAP_REG (DR_REG_INTERRUPT_CORE1_BASE + 0x174) + +/* INTERRUPT_CORE1_BACKUP_PMS_VIOLATE_INTR_MAP : R/W; bitpos: [4:0]; + * default: 16; + * this register used to map backup_pms_monitor_violatile interrupt to one + * of core1's external interrupt + */ + +#define INTERRUPT_CORE1_BACKUP_PMS_VIOLATE_INTR_MAP 0x0000001f +#define INTERRUPT_CORE1_BACKUP_PMS_VIOLATE_INTR_MAP_M (INTERRUPT_CORE1_BACKUP_PMS_VIOLATE_INTR_MAP_V << INTERRUPT_CORE1_BACKUP_PMS_VIOLATE_INTR_MAP_S) +#define INTERRUPT_CORE1_BACKUP_PMS_VIOLATE_INTR_MAP_V 0x0000001f +#define INTERRUPT_CORE1_BACKUP_PMS_VIOLATE_INTR_MAP_S 0 + +/* INTERRUPT_CORE1_CACHE_CORE0_ACS_INT_MAP_REG register + * cache_core0_acs interrupt configuration register + */ + +#define INTERRUPT_CORE1_CACHE_CORE0_ACS_INT_MAP_REG (DR_REG_INTERRUPT_CORE1_BASE + 0x178) + +/* INTERRUPT_CORE1_CACHE_CORE0_ACS_INT_MAP : R/W; bitpos: [4:0]; default: 16; + * this register used to map cache_core0_acs interrupt to one of core1's + * external interrupt + */ + +#define INTERRUPT_CORE1_CACHE_CORE0_ACS_INT_MAP 0x0000001f +#define INTERRUPT_CORE1_CACHE_CORE0_ACS_INT_MAP_M (INTERRUPT_CORE1_CACHE_CORE0_ACS_INT_MAP_V << INTERRUPT_CORE1_CACHE_CORE0_ACS_INT_MAP_S) +#define INTERRUPT_CORE1_CACHE_CORE0_ACS_INT_MAP_V 0x0000001f +#define INTERRUPT_CORE1_CACHE_CORE0_ACS_INT_MAP_S 0 + +/* INTERRUPT_CORE1_CACHE_CORE1_ACS_INT_MAP_REG register + * cache_core1_acs interrupt configuration register + */ + +#define INTERRUPT_CORE1_CACHE_CORE1_ACS_INT_MAP_REG (DR_REG_INTERRUPT_CORE1_BASE + 0x17c) + +/* INTERRUPT_CORE1_CACHE_CORE1_ACS_INT_MAP : R/W; bitpos: [4:0]; default: 16; + * this register used to map cache_core1_acs interrupt to one of core1's + * external interrupt + */ + +#define INTERRUPT_CORE1_CACHE_CORE1_ACS_INT_MAP 0x0000001f +#define INTERRUPT_CORE1_CACHE_CORE1_ACS_INT_MAP_M (INTERRUPT_CORE1_CACHE_CORE1_ACS_INT_MAP_V << INTERRUPT_CORE1_CACHE_CORE1_ACS_INT_MAP_S) +#define INTERRUPT_CORE1_CACHE_CORE1_ACS_INT_MAP_V 0x0000001f +#define INTERRUPT_CORE1_CACHE_CORE1_ACS_INT_MAP_S 0 + +/* INTERRUPT_CORE1_USB_DEVICE_INT_MAP_REG register + * usb_device interrupt configuration register + */ + +#define INTERRUPT_CORE1_USB_DEVICE_INT_MAP_REG (DR_REG_INTERRUPT_CORE1_BASE + 0x180) + +/* INTERRUPT_CORE1_USB_DEVICE_INT_MAP : R/W; bitpos: [4:0]; default: 16; + * this register used to map usb_device interrupt to one of core1's external + * interrupt + */ + +#define INTERRUPT_CORE1_USB_DEVICE_INT_MAP 0x0000001f +#define INTERRUPT_CORE1_USB_DEVICE_INT_MAP_M (INTERRUPT_CORE1_USB_DEVICE_INT_MAP_V << INTERRUPT_CORE1_USB_DEVICE_INT_MAP_S) +#define INTERRUPT_CORE1_USB_DEVICE_INT_MAP_V 0x0000001f +#define INTERRUPT_CORE1_USB_DEVICE_INT_MAP_S 0 + +/* INTERRUPT_CORE1_PERI_BACKUP_INT_MAP_REG register + * peri_backup interrupt configuration register + */ + +#define INTERRUPT_CORE1_PERI_BACKUP_INT_MAP_REG (DR_REG_INTERRUPT_CORE1_BASE + 0x184) + +/* INTERRUPT_CORE1_PERI_BACKUP_INT_MAP : R/W; bitpos: [4:0]; default: 16; + * this register used to map peri_backup interrupt to one of core1's + * external interrupt + */ + +#define INTERRUPT_CORE1_PERI_BACKUP_INT_MAP 0x0000001f +#define INTERRUPT_CORE1_PERI_BACKUP_INT_MAP_M (INTERRUPT_CORE1_PERI_BACKUP_INT_MAP_V << INTERRUPT_CORE1_PERI_BACKUP_INT_MAP_S) +#define INTERRUPT_CORE1_PERI_BACKUP_INT_MAP_V 0x0000001f +#define INTERRUPT_CORE1_PERI_BACKUP_INT_MAP_S 0 + +/* INTERRUPT_CORE1_DMA_EXTMEM_REJECT_INT_MAP_REG register + * dma_extmem_reject interrupt configuration register + */ + +#define INTERRUPT_CORE1_DMA_EXTMEM_REJECT_INT_MAP_REG (DR_REG_INTERRUPT_CORE1_BASE + 0x188) + +/* INTERRUPT_CORE1_DMA_EXTMEM_REJECT_INT_MAP : R/W; bitpos: [4:0]; default: + * 16; + * this register used to map dma_extmem_reject interrupt to one of core1's + * external interrupt + */ + +#define INTERRUPT_CORE1_DMA_EXTMEM_REJECT_INT_MAP 0x0000001f +#define INTERRUPT_CORE1_DMA_EXTMEM_REJECT_INT_MAP_M (INTERRUPT_CORE1_DMA_EXTMEM_REJECT_INT_MAP_V << INTERRUPT_CORE1_DMA_EXTMEM_REJECT_INT_MAP_S) +#define INTERRUPT_CORE1_DMA_EXTMEM_REJECT_INT_MAP_V 0x0000001f +#define INTERRUPT_CORE1_DMA_EXTMEM_REJECT_INT_MAP_S 0 + +/* INTERRUPT_CORE1_INTR_STATUS_0_REG register + * interrupt status register + */ + +#define INTERRUPT_CORE1_INTR_STATUS_0_REG (DR_REG_INTERRUPT_CORE1_BASE + 0x18c) + +/* INTERRUPT_CORE1_INTR_STATUS_0 : RO; bitpos: [31:0]; default: 0; + * this register store the status of the first 32 interrupt source + */ + +#define INTERRUPT_CORE1_INTR_STATUS_0 0xffffffff +#define INTERRUPT_CORE1_INTR_STATUS_0_M (INTERRUPT_CORE1_INTR_STATUS_0_V << INTERRUPT_CORE1_INTR_STATUS_0_S) +#define INTERRUPT_CORE1_INTR_STATUS_0_V 0xffffffff +#define INTERRUPT_CORE1_INTR_STATUS_0_S 0 + +/* INTERRUPT_CORE1_INTR_STATUS_1_REG register + * interrupt status register + */ + +#define INTERRUPT_CORE1_INTR_STATUS_1_REG (DR_REG_INTERRUPT_CORE1_BASE + 0x190) + +/* INTERRUPT_CORE1_INTR_STATUS_1 : RO; bitpos: [31:0]; default: 0; + * this register store the status of the first 32 interrupt source + */ + +#define INTERRUPT_CORE1_INTR_STATUS_1 0xffffffff +#define INTERRUPT_CORE1_INTR_STATUS_1_M (INTERRUPT_CORE1_INTR_STATUS_1_V << INTERRUPT_CORE1_INTR_STATUS_1_S) +#define INTERRUPT_CORE1_INTR_STATUS_1_V 0xffffffff +#define INTERRUPT_CORE1_INTR_STATUS_1_S 0 + +/* INTERRUPT_CORE1_INTR_STATUS_2_REG register + * interrupt status register + */ + +#define INTERRUPT_CORE1_INTR_STATUS_2_REG (DR_REG_INTERRUPT_CORE1_BASE + 0x194) + +/* INTERRUPT_CORE1_INTR_STATUS_2 : RO; bitpos: [31:0]; default: 0; + * this register store the status of the first 32 interrupt source + */ + +#define INTERRUPT_CORE1_INTR_STATUS_2 0xffffffff +#define INTERRUPT_CORE1_INTR_STATUS_2_M (INTERRUPT_CORE1_INTR_STATUS_2_V << INTERRUPT_CORE1_INTR_STATUS_2_S) +#define INTERRUPT_CORE1_INTR_STATUS_2_V 0xffffffff +#define INTERRUPT_CORE1_INTR_STATUS_2_S 0 + +/* INTERRUPT_CORE1_INTR_STATUS_3_REG register + * interrupt status register + */ + +#define INTERRUPT_CORE1_INTR_STATUS_3_REG (DR_REG_INTERRUPT_CORE1_BASE + 0x198) + +/* INTERRUPT_CORE1_INTR_STATUS_3 : RO; bitpos: [31:0]; default: 0; + * this register store the status of the first 32 interrupt source + */ + +#define INTERRUPT_CORE1_INTR_STATUS_3 0xffffffff +#define INTERRUPT_CORE1_INTR_STATUS_3_M (INTERRUPT_CORE1_INTR_STATUS_3_V << INTERRUPT_CORE1_INTR_STATUS_3_S) +#define INTERRUPT_CORE1_INTR_STATUS_3_V 0xffffffff +#define INTERRUPT_CORE1_INTR_STATUS_3_S 0 + +/* INTERRUPT_CORE1_CLOCK_GATE_REG register + * clock gate register + */ + +#define INTERRUPT_CORE1_CLOCK_GATE_REG (DR_REG_INTERRUPT_CORE1_BASE + 0x19c) + +/* INTERRUPT_CORE1_REG_CLK_EN : R/W; bitpos: [0]; default: 1; + * this register uesd to control clock-gating interupt martrix + */ + +#define INTERRUPT_CORE1_REG_CLK_EN (BIT(0)) +#define INTERRUPT_CORE1_REG_CLK_EN_M (INTERRUPT_CORE1_REG_CLK_EN_V << INTERRUPT_CORE1_REG_CLK_EN_S) +#define INTERRUPT_CORE1_REG_CLK_EN_V 0x00000001 +#define INTERRUPT_CORE1_REG_CLK_EN_S 0 + +/* INTERRUPT_CORE1_DATE_REG register + * version register + */ + +#define INTERRUPT_CORE1_DATE_REG (DR_REG_INTERRUPT_CORE1_BASE + 0x7fc) + +/* INTERRUPT_CORE1_INTERRUPT_DATE : R/W; bitpos: [27:0]; default: 33628928; + * version register + */ + +#define INTERRUPT_CORE1_INTERRUPT_DATE 0x0fffffff +#define INTERRUPT_CORE1_INTERRUPT_DATE_M (INTERRUPT_CORE1_INTERRUPT_DATE_V << INTERRUPT_CORE1_INTERRUPT_DATE_S) +#define INTERRUPT_CORE1_INTERRUPT_DATE_V 0x0fffffff +#define INTERRUPT_CORE1_INTERRUPT_DATE_S 0 + +#endif /* __ARCH_XTENSA_SRC_ESP32S3_HARDWARE_ESP32S3_INTERRUPT_CORE1_H */ diff --git a/arch/xtensa/src/esp32s3/hardware/esp32s3_iomux.h b/arch/xtensa/src/esp32s3/hardware/esp32s3_iomux.h new file mode 100644 index 0000000000..1ab574438e --- /dev/null +++ b/arch/xtensa/src/esp32s3/hardware/esp32s3_iomux.h @@ -0,0 +1,467 @@ +/**************************************************************************** + * arch/xtensa/src/esp32s3/hardware/esp32s3_iomux.h + * + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. The + * ASF licenses this file to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance with the + * License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT + * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the + * License for the specific language governing permissions and limitations + * under the License. + * + ****************************************************************************/ + +#ifndef __ARCH_XTENSA_SRC_ESP32S3_HARDWARE_ESP32S3_IOMUX_H +#define __ARCH_XTENSA_SRC_ESP32S3_HARDWARE_ESP32S3_IOMUX_H + +/**************************************************************************** + * Included Files + ****************************************************************************/ + +#include "esp32s3_soc.h" + +/**************************************************************************** + * Pre-preprocessor Definitions + ****************************************************************************/ + +/* The following are the bit fields for PERIPHS_IO_MUX_x_U registers */ + +/* Output enable in sleep mode */ + +#define SLP_OE (BIT(0)) +#define SLP_OE_M (BIT(0)) +#define SLP_OE_V 1 +#define SLP_OE_S 0 + +/* Pin used for wakeup from sleep */ + +#define SLP_SEL (BIT(1)) +#define SLP_SEL_M (BIT(1)) +#define SLP_SEL_V 1 +#define SLP_SEL_S 1 + +/* Pulldown enable in sleep mode */ + +#define SLP_PD (BIT(2)) +#define SLP_PD_M (BIT(2)) +#define SLP_PD_V 1 +#define SLP_PD_S 2 + +/* Pullup enable in sleep mode */ + +#define SLP_PU (BIT(3)) +#define SLP_PU_M (BIT(3)) +#define SLP_PU_V 1 +#define SLP_PU_S 3 + +/* Input enable in sleep mode */ + +#define SLP_IE (BIT(4)) +#define SLP_IE_M (BIT(4)) +#define SLP_IE_V 1 +#define SLP_IE_S 4 + +/* Drive strength in sleep mode */ + +#define SLP_DRV 0x3 +#define SLP_DRV_M (SLP_DRV_V << SLP_DRV_S) +#define SLP_DRV_V 0x3 +#define SLP_DRV_S 5 + +/* Pulldown enable */ + +#define FUN_PD (BIT(7)) +#define FUN_PD_M (BIT(7)) +#define FUN_PD_V 1 +#define FUN_PD_S 7 + +/* Pullup enable */ + +#define FUN_PU (BIT(8)) +#define FUN_PU_M (BIT(8)) +#define FUN_PU_V 1 +#define FUN_PU_S 8 + +/* Input enable */ + +#define FUN_IE (BIT(9)) +#define FUN_IE_M (FUN_IE_V << FUN_IE_S) +#define FUN_IE_V 1 +#define FUN_IE_S 9 + +/* Drive strength */ + +#define FUN_DRV 0x3 +#define FUN_DRV_M (FUN_DRV_V << FUN_DRV_S) +#define FUN_DRV_V 0x3 +#define FUN_DRV_S 10 + +/* Function select (possible values are defined for each pin as + * FUNC_pinname_function below) + */ + +#define MCU_SEL 0x7 +#define MCU_SEL_M (MCU_SEL_V << MCU_SEL_S) +#define MCU_SEL_V 0x7 +#define MCU_SEL_S 12 + +#define PIN_INPUT_ENABLE(PIN_NAME) SET_PERI_REG_MASK(PIN_NAME,FUN_IE) +#define PIN_INPUT_DISABLE(PIN_NAME) CLEAR_PERI_REG_MASK(PIN_NAME,FUN_IE) +#define PIN_SET_DRV(PIN_NAME, drv) REG_SET_FIELD(PIN_NAME, FUN_DRV, (drv)); +#define PIN_PULLUP_DIS(PIN_NAME) REG_CLR_BIT(PIN_NAME, FUN_PU) +#define PIN_PULLUP_EN(PIN_NAME) REG_SET_BIT(PIN_NAME, FUN_PU) +#define PIN_PULLDWN_DIS(PIN_NAME) REG_CLR_BIT(PIN_NAME, FUN_PD) +#define PIN_PULLDWN_EN(PIN_NAME) REG_SET_BIT(PIN_NAME, FUN_PD) +#define PIN_FUNC_SELECT(PIN_NAME, FUNC) REG_SET_FIELD(PIN_NAME, MCU_SEL, FUNC) + +#define IO_MUX_GPIO0_REG PERIPHS_IO_MUX_GPIO0_U +#define IO_MUX_GPIO1_REG PERIPHS_IO_MUX_GPIO1_U +#define IO_MUX_GPIO2_REG PERIPHS_IO_MUX_GPIO2_U +#define IO_MUX_GPIO3_REG PERIPHS_IO_MUX_GPIO3_U +#define IO_MUX_GPIO4_REG PERIPHS_IO_MUX_GPIO4_U +#define IO_MUX_GPIO5_REG PERIPHS_IO_MUX_GPIO5_U +#define IO_MUX_GPIO6_REG PERIPHS_IO_MUX_GPIO6_U +#define IO_MUX_GPIO7_REG PERIPHS_IO_MUX_GPIO7_U +#define IO_MUX_GPIO8_REG PERIPHS_IO_MUX_GPIO8_U +#define IO_MUX_GPIO9_REG PERIPHS_IO_MUX_GPIO9_U +#define IO_MUX_GPIO10_REG PERIPHS_IO_MUX_GPIO10_U +#define IO_MUX_GPIO11_REG PERIPHS_IO_MUX_GPIO11_U +#define IO_MUX_GPIO12_REG PERIPHS_IO_MUX_GPIO12_U +#define IO_MUX_GPIO13_REG PERIPHS_IO_MUX_GPIO13_U +#define IO_MUX_GPIO14_REG PERIPHS_IO_MUX_GPIO14_U +#define IO_MUX_GPIO15_REG PERIPHS_IO_MUX_XTAL_32K_P_U +#define IO_MUX_GPIO16_REG PERIPHS_IO_MUX_XTAL_32K_N_U +#define IO_MUX_GPIO17_REG PERIPHS_IO_MUX_DAC_1_U +#define IO_MUX_GPIO18_REG PERIPHS_IO_MUX_DAC_2_U +#define IO_MUX_GPIO19_REG PERIPHS_IO_MUX_GPIO19_U +#define IO_MUX_GPIO20_REG PERIPHS_IO_MUX_GPIO20_U +#define IO_MUX_GPIO21_REG PERIPHS_IO_MUX_GPIO21_U +#define IO_MUX_GPIO26_REG PERIPHS_IO_MUX_SPICS1_U +#define IO_MUX_GPIO27_REG PERIPHS_IO_MUX_SPIHD_U +#define IO_MUX_GPIO28_REG PERIPHS_IO_MUX_SPIWP_U +#define IO_MUX_GPIO29_REG PERIPHS_IO_MUX_SPICS0_U +#define IO_MUX_GPIO30_REG PERIPHS_IO_MUX_SPICLK_U +#define IO_MUX_GPIO31_REG PERIPHS_IO_MUX_SPIQ_U +#define IO_MUX_GPIO32_REG PERIPHS_IO_MUX_SPID_U +#define IO_MUX_GPIO33_REG PERIPHS_IO_MUX_GPIO33_U +#define IO_MUX_GPIO34_REG PERIPHS_IO_MUX_GPIO34_U +#define IO_MUX_GPIO35_REG PERIPHS_IO_MUX_GPIO35_U +#define IO_MUX_GPIO36_REG PERIPHS_IO_MUX_GPIO36_U +#define IO_MUX_GPIO37_REG PERIPHS_IO_MUX_GPIO37_U +#define IO_MUX_GPIO38_REG PERIPHS_IO_MUX_GPIO38_U +#define IO_MUX_GPIO39_REG PERIPHS_IO_MUX_MTCK_U +#define IO_MUX_GPIO40_REG PERIPHS_IO_MUX_MTDO_U +#define IO_MUX_GPIO41_REG PERIPHS_IO_MUX_MTDI_U +#define IO_MUX_GPIO42_REG PERIPHS_IO_MUX_MTMS_U +#define IO_MUX_GPIO43_REG PERIPHS_IO_MUX_U0TXD_U +#define IO_MUX_GPIO44_REG PERIPHS_IO_MUX_U0RXD_U +#define IO_MUX_GPIO45_REG PERIPHS_IO_MUX_GPIO45_U +#define IO_MUX_GPIO46_REG PERIPHS_IO_MUX_GPIO46_U +#define IO_MUX_GPIO47_REG PERIPHS_IO_MUX_SPICLK_P_U +#define IO_MUX_GPIO48_REG PERIPHS_IO_MUX_SPICLK_N_U + +#define FUNC_GPIO_GPIO 1 +#define PIN_FUNC_GPIO 1 + +#define GPIO_PAD_PULLUP(num) do{PIN_PULLDWN_DIS(IOMUX_REG_GPIO##num);PIN_PULLUP_EN(IOMUX_REG_GPIO##num);}while(0) +#define GPIO_PAD_PULLDOWN(num) do{PIN_PULLUP_DIS(IOMUX_REG_GPIO##num);PIN_PULLDWN_EN(IOMUX_REG_GPIO##num);}while(0) +#define GPIO_PAD_SET_DRV(num, drv) PIN_SET_DRV(IOMUX_REG_GPIO##num, drv) + +#define U1RXD_GPIO_NUM 18 +#define U1TXD_GPIO_NUM 17 +#define U0RXD_GPIO_NUM 44 +#define U0TXD_GPIO_NUM 43 + +#define SPI_CS1_GPIO_NUM 26 +#define SPI_HD_GPIO_NUM 27 +#define SPI_WP_GPIO_NUM 28 +#define SPI_CS0_GPIO_NUM 29 +#define SPI_CLK_GPIO_NUM 30 +#define SPI_Q_GPIO_NUM 31 +#define SPI_D_GPIO_NUM 32 +#define SPI_D4_GPIO_NUM 33 +#define SPI_D5_GPIO_NUM 34 +#define SPI_D6_GPIO_NUM 35 +#define SPI_D7_GPIO_NUM 36 +#define SPI_DQS_GPIO_NUM 37 +#define SD_CLK_GPIO_NUM 12 +#define SD_CMD_GPIO_NUM 11 +#define SD_DATA0_GPIO_NUM 13 +#define SD_DATA1_GPIO_NUM 14 +#define SD_DATA2_GPIO_NUM 9 +#define SD_DATA3_GPIO_NUM 10 + +#define MAX_RTC_GPIO_NUM 21 +#define MAX_PAD_GPIO_NUM 48 +#define MAX_GPIO_NUM 53 + +#define REG_IO_MUX_BASE DR_REG_IO_MUX_BASE +#define PIN_CTRL (REG_IO_MUX_BASE + 0x00) +#define PAD_POWER_SEL BIT(15) +#define PAD_POWER_SEL_V 0x1 +#define PAD_POWER_SEL_M BIT(15) +#define PAD_POWER_SEL_S 15 + +#define PAD_POWER_SWITCH_DELAY 0x7 +#define PAD_POWER_SWITCH_DELAY_V 0x7 +#define PAD_POWER_SWITCH_DELAY_M (PAD_POWER_SWITCH_DELAY_V << PAD_POWER_SWITCH_DELAY_S) +#define PAD_POWER_SWITCH_DELAY_S 12 + +#define CLK_OUT3 0xf +#define CLK_OUT3_V CLK_OUT3 +#define CLK_OUT3_S 8 +#define CLK_OUT3_M (CLK_OUT3_V << CLK_OUT3_S) +#define CLK_OUT2 0xf +#define CLK_OUT2_V CLK_OUT2 +#define CLK_OUT2_S 4 +#define CLK_OUT2_M (CLK_OUT2_V << CLK_OUT2_S) +#define CLK_OUT1 0xf +#define CLK_OUT1_V CLK_OUT1 +#define CLK_OUT1_S 0 +#define CLK_OUT1_M (CLK_OUT1_V << CLK_OUT1_S) + +#define PERIPHS_IO_MUX_GPIO0_U (REG_IO_MUX_BASE + 0x04) +#define FUNC_GPIO0_GPIO0 1 +#define FUNC_GPIO0_GPIO0_0 0 + +#define PERIPHS_IO_MUX_GPIO1_U (REG_IO_MUX_BASE + 0x08) +#define FUNC_GPIO1_GPIO1 1 +#define FUNC_GPIO1_GPIO1_0 0 + +#define PERIPHS_IO_MUX_GPIO2_U (REG_IO_MUX_BASE + 0x0c) +#define FUNC_GPIO2_GPIO2 1 +#define FUNC_GPIO2_GPIO2_0 0 + +#define PERIPHS_IO_MUX_GPIO3_U (REG_IO_MUX_BASE + 0x10) +#define FUNC_GPIO3_GPIO3 1 +#define FUNC_GPIO3_GPIO3_0 0 + +#define PERIPHS_IO_MUX_GPIO4_U (REG_IO_MUX_BASE + 0x14) +#define FUNC_GPIO4_GPIO4 1 +#define FUNC_GPIO4_GPIO4_0 0 + +#define PERIPHS_IO_MUX_GPIO5_U (REG_IO_MUX_BASE + 0x18) +#define FUNC_GPIO5_GPIO5 1 +#define FUNC_GPIO5_GPIO5_0 0 + +#define PERIPHS_IO_MUX_GPIO6_U (REG_IO_MUX_BASE + 0x1c) +#define FUNC_GPIO6_GPIO6 1 +#define FUNC_GPIO6_GPIO6_0 0 + +#define PERIPHS_IO_MUX_GPIO7_U (REG_IO_MUX_BASE + 0x20) +#define FUNC_GPIO7_GPIO7 1 +#define FUNC_GPIO7_GPIO7_0 0 + +#define PERIPHS_IO_MUX_GPIO8_U (REG_IO_MUX_BASE + 0x24) +#define FUNC_GPIO8_SUBSPICS1 3 +#define FUNC_GPIO8_GPIO8 1 +#define FUNC_GPIO8_GPIO8_0 0 + +#define PERIPHS_IO_MUX_GPIO9_U (REG_IO_MUX_BASE + 0x28) +#define FUNC_GPIO9_FSPIHD 4 +#define FUNC_GPIO9_SUBSPIHD 3 +#define FUNC_GPIO9_GPIO9 1 +#define FUNC_GPIO9_GPIO9_0 0 + +#define PERIPHS_IO_MUX_GPIO10_U (REG_IO_MUX_BASE + 0x2c) +#define FUNC_GPIO10_FSPICS0 4 +#define FUNC_GPIO10_SUBSPICS0 3 +#define FUNC_GPIO10_FSPIIO4 2 +#define FUNC_GPIO10_GPIO10 1 +#define FUNC_GPIO10_GPIO10_0 0 + +#define PERIPHS_IO_MUX_GPIO11_U (REG_IO_MUX_BASE + 0x30) +#define FUNC_GPIO11_FSPID 4 +#define FUNC_GPIO11_SUBSPID 3 +#define FUNC_GPIO11_FSPIIO5 2 +#define FUNC_GPIO11_GPIO11 1 +#define FUNC_GPIO11_GPIO11_0 0 + +#define PERIPHS_IO_MUX_GPIO12_U (REG_IO_MUX_BASE + 0x34) +#define FUNC_GPIO12_FSPICLK 4 +#define FUNC_GPIO12_SUBSPICLK 3 +#define FUNC_GPIO12_FSPIIO6 2 +#define FUNC_GPIO12_GPIO12 1 +#define FUNC_GPIO12_GPIO12_0 0 + +#define PERIPHS_IO_MUX_GPIO13_U (REG_IO_MUX_BASE + 0x38) +#define FUNC_GPIO13_FSPIQ 4 +#define FUNC_GPIO13_SUBSPIQ 3 +#define FUNC_GPIO13_FSPIIO7 2 +#define FUNC_GPIO13_GPIO13 1 +#define FUNC_GPIO13_GPIO13_0 0 + +#define PERIPHS_IO_MUX_GPIO14_U (REG_IO_MUX_BASE + 0x3c) +#define FUNC_GPIO14_FSPIWP 4 +#define FUNC_GPIO14_SUBSPIWP 3 +#define FUNC_GPIO14_FSPIDQS 2 +#define FUNC_GPIO14_GPIO14 1 +#define FUNC_GPIO14_GPIO14_0 0 + +#define PERIPHS_IO_MUX_XTAL_32K_P_U (REG_IO_MUX_BASE + 0x40) +#define FUNC_XTAL_32K_P_U0RTS 2 +#define FUNC_XTAL_32K_P_GPIO15 1 +#define FUNC_XTAL_32K_P_GPIO15_0 0 + +#define PERIPHS_IO_MUX_XTAL_32K_N_U (REG_IO_MUX_BASE + 0x44) +#define FUNC_XTAL_32K_N_U0CTS 2 +#define FUNC_XTAL_32K_N_GPIO16 1 +#define FUNC_XTAL_32K_N_GPIO16_0 0 + +#define PERIPHS_IO_MUX_DAC_1_U (REG_IO_MUX_BASE + 0x48) +#define FUNC_DAC_1_U1TXD 2 +#define FUNC_DAC_1_GPIO17 1 +#define FUNC_DAC_1_GPIO17_0 0 + +#define PERIPHS_IO_MUX_DAC_2_U (REG_IO_MUX_BASE + 0x4c) +#define FUNC_DAC_2_CLK_OUT3 3 +#define FUNC_DAC_2_U1RXD 2 +#define FUNC_DAC_2_GPIO18 1 +#define FUNC_DAC_2_GPIO18_0 0 + +#define PERIPHS_IO_MUX_GPIO19_U (REG_IO_MUX_BASE + 0x50) +#define FUNC_GPIO19_CLK_OUT2 3 +#define FUNC_GPIO19_U1RTS 2 +#define FUNC_GPIO19_GPIO19 1 +#define FUNC_GPIO19_GPIO19_0 0 + +#define PERIPHS_IO_MUX_GPIO20_U (REG_IO_MUX_BASE + 0x54) +#define FUNC_GPIO20_CLK_OUT1 3 +#define FUNC_GPIO20_U1CTS 2 +#define FUNC_GPIO20_GPIO20 1 +#define FUNC_GPIO20_GPIO20_0 0 + +#define PERIPHS_IO_MUX_GPIO21_U (REG_IO_MUX_BASE + 0x58) +#define FUNC_GPIO21_GPIO21 1 +#define FUNC_GPIO21_GPIO21_0 0 + +#define PERIPHS_IO_MUX_SPICS1_U (REG_IO_MUX_BASE + 0x6c) +#define FUNC_SPICS1_GPIO26 1 +#define FUNC_SPICS1_SPICS1 0 + +#define PERIPHS_IO_MUX_SPIHD_U (REG_IO_MUX_BASE + 0x70) +#define FUNC_SPIHD_GPIO27 1 +#define FUNC_SPIHD_SPIHD 0 + +#define PERIPHS_IO_MUX_SPIWP_U (REG_IO_MUX_BASE + 0x74) +#define FUNC_SPIWP_GPIO28 1 +#define FUNC_SPIWP_SPIWP 0 + +#define PERIPHS_IO_MUX_SPICS0_U (REG_IO_MUX_BASE + 0x78) +#define FUNC_SPICS0_GPIO29 1 +#define FUNC_SPICS0_SPICS0 0 + +#define PERIPHS_IO_MUX_SPICLK_U (REG_IO_MUX_BASE + 0x7c) +#define FUNC_SPICLK_GPIO30 1 +#define FUNC_SPICLK_SPICLK 0 + +#define PERIPHS_IO_MUX_SPIQ_U (REG_IO_MUX_BASE + 0x80) +#define FUNC_SPIQ_GPIO31 1 +#define FUNC_SPIQ_SPIQ 0 + +#define PERIPHS_IO_MUX_SPID_U (REG_IO_MUX_BASE + 0x84) +#define FUNC_SPID_GPIO32 1 +#define FUNC_SPID_SPID 0 + +#define PERIPHS_IO_MUX_GPIO33_U (REG_IO_MUX_BASE + 0x88) +#define FUNC_GPIO33_SPIIO4 4 +#define FUNC_GPIO33_SUBSPIHD 3 +#define FUNC_GPIO33_FSPIHD 2 +#define FUNC_GPIO33_GPIO33 1 +#define FUNC_GPIO33_GPIO33_0 0 + +#define PERIPHS_IO_MUX_GPIO34_U (REG_IO_MUX_BASE + 0x8c) +#define FUNC_GPIO34_SPIIO5 4 +#define FUNC_GPIO34_SUBSPICS0 3 +#define FUNC_GPIO34_FSPICS0 2 +#define FUNC_GPIO34_GPIO34 1 +#define FUNC_GPIO34_GPIO34_0 0 + +#define PERIPHS_IO_MUX_GPIO35_U (REG_IO_MUX_BASE + 0x90) +#define FUNC_GPIO35_SPIIO6 4 +#define FUNC_GPIO35_SUBSPID 3 +#define FUNC_GPIO35_FSPID 2 +#define FUNC_GPIO35_GPIO35 1 +#define FUNC_GPIO35_GPIO35_0 0 + +#define PERIPHS_IO_MUX_GPIO36_U (REG_IO_MUX_BASE + 0x94) +#define FUNC_GPIO36_SPIIO7 4 +#define FUNC_GPIO36_SUBSPICLK 3 +#define FUNC_GPIO36_FSPICLK 2 +#define FUNC_GPIO36_GPIO36 1 +#define FUNC_GPIO36_GPIO36_0 0 + +#define PERIPHS_IO_MUX_GPIO37_U (REG_IO_MUX_BASE + 0x98) +#define FUNC_GPIO37_SPIDQS 4 +#define FUNC_GPIO37_SUBSPIQ 3 +#define FUNC_GPIO37_FSPIQ 2 +#define FUNC_GPIO37_GPIO37 1 +#define FUNC_GPIO37_GPIO37_0 0 + +#define PERIPHS_IO_MUX_GPIO38_U (REG_IO_MUX_BASE + 0x9c) +#define FUNC_GPIO38_SUBSPIWP 3 +#define FUNC_GPIO38_FSPIWP 2 +#define FUNC_GPIO38_GPIO38 1 +#define FUNC_GPIO38_GPIO38_0 0 + +#define PERIPHS_IO_MUX_MTCK_U (REG_IO_MUX_BASE + 0xa0) +#define FUNC_MTCK_SUBSPICS1 3 +#define FUNC_MTCK_CLK_OUT3 2 +#define FUNC_MTCK_GPIO39 1 +#define FUNC_MTCK_MTCK 0 + +#define PERIPHS_IO_MUX_MTDO_U (REG_IO_MUX_BASE + 0xa4) +#define FUNC_MTDO_CLK_OUT2 2 +#define FUNC_MTDO_GPIO40 1 +#define FUNC_MTDO_MTDO 0 + +#define PERIPHS_IO_MUX_MTDI_U (REG_IO_MUX_BASE + 0xa8) +#define FUNC_MTDI_CLK_OUT1 2 +#define FUNC_MTDI_GPIO41 1 +#define FUNC_MTDI_MTDI 0 + +#define PERIPHS_IO_MUX_MTMS_U (REG_IO_MUX_BASE + 0xac) +#define FUNC_MTMS_GPIO42 1 +#define FUNC_MTMS_MTMS 0 + +#define PERIPHS_IO_MUX_U0TXD_U (REG_IO_MUX_BASE + 0xb0) +#define FUNC_U0TXD_CLK_OUT1 2 +#define FUNC_U0TXD_GPIO43 1 +#define FUNC_U0TXD_U0TXD 0 + +#define PERIPHS_IO_MUX_U0RXD_U (REG_IO_MUX_BASE + 0xb4) +#define FUNC_U0RXD_CLK_OUT2 2 +#define FUNC_U0RXD_GPIO44 1 +#define FUNC_U0RXD_U0RXD 0 + +#define PERIPHS_IO_MUX_GPIO45_U (REG_IO_MUX_BASE + 0xb8) +#define FUNC_GPIO45_GPIO45 1 +#define FUNC_GPIO45_GPIO45_0 0 + +#define PERIPHS_IO_MUX_GPIO46_U (REG_IO_MUX_BASE + 0xbc) +#define FUNC_GPIO46_GPIO46 1 +#define FUNC_GPIO46_GPIO46_0 0 + +#define PERIPHS_IO_MUX_SPICLK_P_U (REG_IO_MUX_BASE + 0xc0) +#define FUNC_SPICLK_P_SUBSPICLK_DIFF 2 +#define FUNC_SPICLK_P_GPIO47 1 +#define FUNC_SPICLK_P_SPICLK_DIFF 0 + +#define PERIPHS_IO_MUX_SPICLK_N_U (REG_IO_MUX_BASE + 0xc4) +#define FUNC_SPICLK_N_SUBSPICLK_DIFF 2 +#define FUNC_SPICLK_N_GPIO48 1 +#define FUNC_SPICLK_N_SPICLK_DIFF 0 + +#define IO_MUX_DATE_REG (REG_IO_MUX_BASE + 0xfc) +#define IO_MUX_DATE 0xFFFFFFFF +#define IO_MUX_DATE_S 0 +#define IO_MUX_DATE_VERSION 0x1907160 + +#endif /* __ARCH_XTENSA_SRC_ESP32S3_HARDWARE_ESP32S3_IOMUX_H */ diff --git a/arch/xtensa/src/esp32s3/hardware/esp32s3_rom_layout.h b/arch/xtensa/src/esp32s3/hardware/esp32s3_rom_layout.h new file mode 100644 index 0000000000..bead51f549 --- /dev/null +++ b/arch/xtensa/src/esp32s3/hardware/esp32s3_rom_layout.h @@ -0,0 +1,95 @@ +/**************************************************************************** + * arch/xtensa/src/esp32s3/hardware/esp32s3_rom_layout.h + * + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. The + * ASF licenses this file to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance with the + * License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT + * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the + * License for the specific language governing permissions and limitations + * under the License. + * + ****************************************************************************/ + +#ifndef __ARCH_XTENSA_SRC_ESP32S3_HARDWARE_ESP32S3_ROM_LAYOUT_H +#define __ARCH_XTENSA_SRC_ESP32S3_HARDWARE_ESP32S3_ROM_LAYOUT_H + +/**************************************************************************** + * Included Files + ****************************************************************************/ + +#include + +/**************************************************************************** + * Pre-processor Definitions + ****************************************************************************/ + +/* Structure and functions for returning ROM global layout + * + * This is for address symbols defined in the linker script, + * which may change during ECOs. + */ + +struct esp32s3_rom_layout_s +{ + uintptr_t dram0_stack_shared_mem_start; + uintptr_t dram0_rtos_reserved_start; + uintptr_t stack_sentry; + uintptr_t stack; + uintptr_t stack_sentry_app; + uintptr_t stack_app; + + /* BTDM data */ + + uintptr_t data_start_btdm; + uintptr_t data_end_btdm; + uintptr_t bss_start_btdm; + uintptr_t bss_end_btdm; + uintptr_t data_start_btdm_rom; + uintptr_t data_end_btdm_rom; + uintptr_t data_start_interface_btdm; + uintptr_t data_end_interface_btdm; + uintptr_t bss_start_interface_btdm; + uintptr_t bss_end_interface_btdm; + + /* PHY data */ + + uintptr_t dram_start_phyrom; + uintptr_t dram_end_phyrom; + + /* Wi-Fi data */ + + uintptr_t dram_start_coexist; + uintptr_t dram_end_coexist; + uintptr_t dram_start_net80211; + uintptr_t dram_end_net80211; + uintptr_t dram_start_pp; + uintptr_t dram_end_pp; + uintptr_t data_start_interface_coexist; + uintptr_t data_end_interface_coexist; + uintptr_t bss_start_interface_coexist; + uintptr_t bss_end_interface_coexist; + uintptr_t data_start_interface_net80211; + uintptr_t data_end_interface_net80211; + uintptr_t bss_start_interface_net80211; + uintptr_t bss_end_interface_net80211; + uintptr_t data_start_interface_pp; + uintptr_t data_end_interface_pp; + uintptr_t bss_start_interface_pp; + uintptr_t bss_end_interface_pp; + uintptr_t dram_start_usbdev_rom; + uintptr_t dram_end_usbdev_rom; + uintptr_t dram_start_uart_rom; + uintptr_t dram_end_uart_rom; +}; + +extern const struct esp32s3_rom_layout_s *ets_rom_layout_p; + +#endif /* __ARCH_XTENSA_SRC_ESP32S3_HARDWARE_ESP32S3_ROM_LAYOUT_H */ diff --git a/arch/xtensa/src/esp32s3/hardware/esp32s3_rtccntl.h b/arch/xtensa/src/esp32s3/hardware/esp32s3_rtccntl.h new file mode 100644 index 0000000000..de022c8df9 --- /dev/null +++ b/arch/xtensa/src/esp32s3/hardware/esp32s3_rtccntl.h @@ -0,0 +1,5795 @@ +/**************************************************************************** + * arch/xtensa/src/esp32s3/hardware/esp32s3_rtccntl.h + * + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. The + * ASF licenses this file to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance with the + * License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT + * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the + * License for the specific language governing permissions and limitations + * under the License. + * + ****************************************************************************/ + +#ifndef __ARCH_XTENSA_SRC_ESP32S3_HARDWARE_ESP32S3_RTCCNTL_H +#define __ARCH_XTENSA_SRC_ESP32S3_HARDWARE_ESP32S3_RTCCNTL_H + +/**************************************************************************** + * Included Files + ****************************************************************************/ + +#include "esp32s3_soc.h" + +/**************************************************************************** + * Pre-processor Definitions + ****************************************************************************/ + +/* The value that needs to be written to RTC_CNTL_WDT_WKEY to + * write-enable the wdt registers + */ + +#define RTC_CNTL_WDT_WKEY_VALUE 0x50d83aa1 + +/* RTC_CNTL_RTC_OPTIONS0_REG register + * RTC common configure register + */ + +#define RTC_CNTL_RTC_OPTIONS0_REG (DR_REG_RTCCNTL_BASE + 0x0) + +/* RTC_CNTL_SW_SYS_RST : WO; bitpos: [31]; default: 0; + * SW system reset + */ + +#define RTC_CNTL_SW_SYS_RST (BIT(31)) +#define RTC_CNTL_SW_SYS_RST_M (RTC_CNTL_SW_SYS_RST_V << RTC_CNTL_SW_SYS_RST_S) +#define RTC_CNTL_SW_SYS_RST_V 0x00000001 +#define RTC_CNTL_SW_SYS_RST_S 31 + +/* RTC_CNTL_DG_WRAP_FORCE_NORST : R/W; bitpos: [30]; default: 0; + * digital core force no reset in deep sleep + */ + +#define RTC_CNTL_DG_WRAP_FORCE_NORST (BIT(30)) +#define RTC_CNTL_DG_WRAP_FORCE_NORST_M (RTC_CNTL_DG_WRAP_FORCE_NORST_V << RTC_CNTL_DG_WRAP_FORCE_NORST_S) +#define RTC_CNTL_DG_WRAP_FORCE_NORST_V 0x00000001 +#define RTC_CNTL_DG_WRAP_FORCE_NORST_S 30 + +/* RTC_CNTL_DG_WRAP_FORCE_RST : R/W; bitpos: [29]; default: 0; + * digital wrap force reset in deep sleep + */ + +#define RTC_CNTL_DG_WRAP_FORCE_RST (BIT(29)) +#define RTC_CNTL_DG_WRAP_FORCE_RST_M (RTC_CNTL_DG_WRAP_FORCE_RST_V << RTC_CNTL_DG_WRAP_FORCE_RST_S) +#define RTC_CNTL_DG_WRAP_FORCE_RST_V 0x00000001 +#define RTC_CNTL_DG_WRAP_FORCE_RST_S 29 + +/* RTC_CNTL_ANALOG_FORCE_NOISO : R/W; bitpos: [28]; default: 1; + * No public + */ + +#define RTC_CNTL_ANALOG_FORCE_NOISO (BIT(28)) +#define RTC_CNTL_ANALOG_FORCE_NOISO_M (RTC_CNTL_ANALOG_FORCE_NOISO_V << RTC_CNTL_ANALOG_FORCE_NOISO_S) +#define RTC_CNTL_ANALOG_FORCE_NOISO_V 0x00000001 +#define RTC_CNTL_ANALOG_FORCE_NOISO_S 28 + +/* RTC_CNTL_PLL_FORCE_NOISO : R/W; bitpos: [27]; default: 1; + * No public + */ + +#define RTC_CNTL_PLL_FORCE_NOISO (BIT(27)) +#define RTC_CNTL_PLL_FORCE_NOISO_M (RTC_CNTL_PLL_FORCE_NOISO_V << RTC_CNTL_PLL_FORCE_NOISO_S) +#define RTC_CNTL_PLL_FORCE_NOISO_V 0x00000001 +#define RTC_CNTL_PLL_FORCE_NOISO_S 27 + +/* RTC_CNTL_XTL_FORCE_NOISO : R/W; bitpos: [26]; default: 1; + * No public + */ + +#define RTC_CNTL_XTL_FORCE_NOISO (BIT(26)) +#define RTC_CNTL_XTL_FORCE_NOISO_M (RTC_CNTL_XTL_FORCE_NOISO_V << RTC_CNTL_XTL_FORCE_NOISO_S) +#define RTC_CNTL_XTL_FORCE_NOISO_V 0x00000001 +#define RTC_CNTL_XTL_FORCE_NOISO_S 26 + +/* RTC_CNTL_ANALOG_FORCE_ISO : R/W; bitpos: [25]; default: 0; + * No public + */ + +#define RTC_CNTL_ANALOG_FORCE_ISO (BIT(25)) +#define RTC_CNTL_ANALOG_FORCE_ISO_M (RTC_CNTL_ANALOG_FORCE_ISO_V << RTC_CNTL_ANALOG_FORCE_ISO_S) +#define RTC_CNTL_ANALOG_FORCE_ISO_V 0x00000001 +#define RTC_CNTL_ANALOG_FORCE_ISO_S 25 + +/* RTC_CNTL_PLL_FORCE_ISO : R/W; bitpos: [24]; default: 0; + * No public + */ + +#define RTC_CNTL_PLL_FORCE_ISO (BIT(24)) +#define RTC_CNTL_PLL_FORCE_ISO_M (RTC_CNTL_PLL_FORCE_ISO_V << RTC_CNTL_PLL_FORCE_ISO_S) +#define RTC_CNTL_PLL_FORCE_ISO_V 0x00000001 +#define RTC_CNTL_PLL_FORCE_ISO_S 24 + +/* RTC_CNTL_XTL_FORCE_ISO : R/W; bitpos: [23]; default: 0; + * No public + */ + +#define RTC_CNTL_XTL_FORCE_ISO (BIT(23)) +#define RTC_CNTL_XTL_FORCE_ISO_M (RTC_CNTL_XTL_FORCE_ISO_V << RTC_CNTL_XTL_FORCE_ISO_S) +#define RTC_CNTL_XTL_FORCE_ISO_V 0x00000001 +#define RTC_CNTL_XTL_FORCE_ISO_S 23 + +/* RTC_CNTL_XTL_EN_WAIT : R/W; bitpos: [17:14]; default: 2; + * wait bias_sleep and current source wakeup + */ + +#define RTC_CNTL_XTL_EN_WAIT 0x0000000f +#define RTC_CNTL_XTL_EN_WAIT_M (RTC_CNTL_XTL_EN_WAIT_V << RTC_CNTL_XTL_EN_WAIT_S) +#define RTC_CNTL_XTL_EN_WAIT_V 0x0000000f +#define RTC_CNTL_XTL_EN_WAIT_S 14 + +/* RTC_CNTL_XTL_FORCE_PU : R/W; bitpos: [13]; default: 1; + * crystall force power up + */ + +#define RTC_CNTL_XTL_FORCE_PU (BIT(13)) +#define RTC_CNTL_XTL_FORCE_PU_M (RTC_CNTL_XTL_FORCE_PU_V << RTC_CNTL_XTL_FORCE_PU_S) +#define RTC_CNTL_XTL_FORCE_PU_V 0x00000001 +#define RTC_CNTL_XTL_FORCE_PU_S 13 + +/* RTC_CNTL_XTL_FORCE_PD : R/W; bitpos: [12]; default: 0; + * crystall force power down + */ + +#define RTC_CNTL_XTL_FORCE_PD (BIT(12)) +#define RTC_CNTL_XTL_FORCE_PD_M (RTC_CNTL_XTL_FORCE_PD_V << RTC_CNTL_XTL_FORCE_PD_S) +#define RTC_CNTL_XTL_FORCE_PD_V 0x00000001 +#define RTC_CNTL_XTL_FORCE_PD_S 12 + +/* RTC_CNTL_BBPLL_FORCE_PU : R/W; bitpos: [11]; default: 0; + * BB_PLL force power up + */ + +#define RTC_CNTL_BBPLL_FORCE_PU (BIT(11)) +#define RTC_CNTL_BBPLL_FORCE_PU_M (RTC_CNTL_BBPLL_FORCE_PU_V << RTC_CNTL_BBPLL_FORCE_PU_S) +#define RTC_CNTL_BBPLL_FORCE_PU_V 0x00000001 +#define RTC_CNTL_BBPLL_FORCE_PU_S 11 + +/* RTC_CNTL_BBPLL_FORCE_PD : R/W; bitpos: [10]; default: 0; + * BB_PLL force power down + */ + +#define RTC_CNTL_BBPLL_FORCE_PD (BIT(10)) +#define RTC_CNTL_BBPLL_FORCE_PD_M (RTC_CNTL_BBPLL_FORCE_PD_V << RTC_CNTL_BBPLL_FORCE_PD_S) +#define RTC_CNTL_BBPLL_FORCE_PD_V 0x00000001 +#define RTC_CNTL_BBPLL_FORCE_PD_S 10 + +/* RTC_CNTL_BBPLL_I2C_FORCE_PU : R/W; bitpos: [9]; default: 0; + * BB_PLL_I2C force power up + */ + +#define RTC_CNTL_BBPLL_I2C_FORCE_PU (BIT(9)) +#define RTC_CNTL_BBPLL_I2C_FORCE_PU_M (RTC_CNTL_BBPLL_I2C_FORCE_PU_V << RTC_CNTL_BBPLL_I2C_FORCE_PU_S) +#define RTC_CNTL_BBPLL_I2C_FORCE_PU_V 0x00000001 +#define RTC_CNTL_BBPLL_I2C_FORCE_PU_S 9 + +/* RTC_CNTL_BBPLL_I2C_FORCE_PD : R/W; bitpos: [8]; default: 0; + * BB_PLL _I2C force power down + */ + +#define RTC_CNTL_BBPLL_I2C_FORCE_PD (BIT(8)) +#define RTC_CNTL_BBPLL_I2C_FORCE_PD_M (RTC_CNTL_BBPLL_I2C_FORCE_PD_V << RTC_CNTL_BBPLL_I2C_FORCE_PD_S) +#define RTC_CNTL_BBPLL_I2C_FORCE_PD_V 0x00000001 +#define RTC_CNTL_BBPLL_I2C_FORCE_PD_S 8 + +/* RTC_CNTL_BB_I2C_FORCE_PU : R/W; bitpos: [7]; default: 0; + * BB_I2C force power up + */ + +#define RTC_CNTL_BB_I2C_FORCE_PU (BIT(7)) +#define RTC_CNTL_BB_I2C_FORCE_PU_M (RTC_CNTL_BB_I2C_FORCE_PU_V << RTC_CNTL_BB_I2C_FORCE_PU_S) +#define RTC_CNTL_BB_I2C_FORCE_PU_V 0x00000001 +#define RTC_CNTL_BB_I2C_FORCE_PU_S 7 + +/* RTC_CNTL_BB_I2C_FORCE_PD : R/W; bitpos: [6]; default: 0; + * BB_I2C force power down + */ + +#define RTC_CNTL_BB_I2C_FORCE_PD (BIT(6)) +#define RTC_CNTL_BB_I2C_FORCE_PD_M (RTC_CNTL_BB_I2C_FORCE_PD_V << RTC_CNTL_BB_I2C_FORCE_PD_S) +#define RTC_CNTL_BB_I2C_FORCE_PD_V 0x00000001 +#define RTC_CNTL_BB_I2C_FORCE_PD_S 6 + +/* RTC_CNTL_SW_PROCPU_RST : WO; bitpos: [5]; default: 0; + * PRO CPU SW reset + */ + +#define RTC_CNTL_SW_PROCPU_RST (BIT(5)) +#define RTC_CNTL_SW_PROCPU_RST_M (RTC_CNTL_SW_PROCPU_RST_V << RTC_CNTL_SW_PROCPU_RST_S) +#define RTC_CNTL_SW_PROCPU_RST_V 0x00000001 +#define RTC_CNTL_SW_PROCPU_RST_S 5 + +/* RTC_CNTL_SW_APPCPU_RST : WO; bitpos: [4]; default: 0; + * APP CPU SW reset + */ + +#define RTC_CNTL_SW_APPCPU_RST (BIT(4)) +#define RTC_CNTL_SW_APPCPU_RST_M (RTC_CNTL_SW_APPCPU_RST_V << RTC_CNTL_SW_APPCPU_RST_S) +#define RTC_CNTL_SW_APPCPU_RST_V 0x00000001 +#define RTC_CNTL_SW_APPCPU_RST_S 4 + +/* RTC_CNTL_SW_STALL_PROCPU_C0 : R/W; bitpos: [3:2]; default: 0; + * {reg_sw_stall_procpu_c1[5:0], reg_sw_stall_procpu_c0[1:0]} == 0x86 will + * stall PRO CPU + */ + +#define RTC_CNTL_SW_STALL_PROCPU_C0 0x00000003 +#define RTC_CNTL_SW_STALL_PROCPU_C0_M (RTC_CNTL_SW_STALL_PROCPU_C0_V << RTC_CNTL_SW_STALL_PROCPU_C0_S) +#define RTC_CNTL_SW_STALL_PROCPU_C0_V 0x00000003 +#define RTC_CNTL_SW_STALL_PROCPU_C0_S 2 + +/* RTC_CNTL_SW_STALL_APPCPU_C0 : R/W; bitpos: [1:0]; default: 0; + * {reg_sw_stall_appcpu_c1[5:0], reg_sw_stall_appcpu_c0[1:0]} == 0x86 will + * stall APP CPU + */ + +#define RTC_CNTL_SW_STALL_APPCPU_C0 0x00000003 +#define RTC_CNTL_SW_STALL_APPCPU_C0_M (RTC_CNTL_SW_STALL_APPCPU_C0_V << RTC_CNTL_SW_STALL_APPCPU_C0_S) +#define RTC_CNTL_SW_STALL_APPCPU_C0_V 0x00000003 +#define RTC_CNTL_SW_STALL_APPCPU_C0_S 0 + +/* RTC_CNTL_RTC_SLP_TIMER0_REG register + * configure min sleep time + */ + +#define RTC_CNTL_RTC_SLP_TIMER0_REG (DR_REG_RTCCNTL_BASE + 0x4) + +/* RTC_CNTL_SLP_VAL_LO : R/W; bitpos: [31:0]; default: 0; + * RTC sleep timer low 32 bits + */ + +#define RTC_CNTL_SLP_VAL_LO 0xffffffff +#define RTC_CNTL_SLP_VAL_LO_M (RTC_CNTL_SLP_VAL_LO_V << RTC_CNTL_SLP_VAL_LO_S) +#define RTC_CNTL_SLP_VAL_LO_V 0xffffffff +#define RTC_CNTL_SLP_VAL_LO_S 0 + +/* RTC_CNTL_RTC_SLP_TIMER1_REG register + * configure sleep time hi + */ + +#define RTC_CNTL_RTC_SLP_TIMER1_REG (DR_REG_RTCCNTL_BASE + 0x8) + +/* RTC_CNTL_RTC_MAIN_TIMER_ALARM_EN : WO; bitpos: [16]; default: 0; + * timer alarm enable bit + */ + +#define RTC_CNTL_RTC_MAIN_TIMER_ALARM_EN (BIT(16)) +#define RTC_CNTL_RTC_MAIN_TIMER_ALARM_EN_M (RTC_CNTL_RTC_MAIN_TIMER_ALARM_EN_V << RTC_CNTL_RTC_MAIN_TIMER_ALARM_EN_S) +#define RTC_CNTL_RTC_MAIN_TIMER_ALARM_EN_V 0x00000001 +#define RTC_CNTL_RTC_MAIN_TIMER_ALARM_EN_S 16 + +/* RTC_CNTL_SLP_VAL_HI : R/W; bitpos: [15:0]; default: 0; + * RTC sleep timer high 16 bits + */ + +#define RTC_CNTL_SLP_VAL_HI 0x0000ffff +#define RTC_CNTL_SLP_VAL_HI_M (RTC_CNTL_SLP_VAL_HI_V << RTC_CNTL_SLP_VAL_HI_S) +#define RTC_CNTL_SLP_VAL_HI_V 0x0000ffff +#define RTC_CNTL_SLP_VAL_HI_S 0 + +/* RTC_CNTL_RTC_TIME_UPDATE_REG register + * update rtc main timer + */ + +#define RTC_CNTL_RTC_TIME_UPDATE_REG (DR_REG_RTCCNTL_BASE + 0xc) + +/* RTC_CNTL_RTC_TIME_UPDATE : WO; bitpos: [31]; default: 0; + * Set 1: to update register with RTC timer + */ + +#define RTC_CNTL_RTC_TIME_UPDATE (BIT(31)) +#define RTC_CNTL_RTC_TIME_UPDATE_M (RTC_CNTL_RTC_TIME_UPDATE_V << RTC_CNTL_RTC_TIME_UPDATE_S) +#define RTC_CNTL_RTC_TIME_UPDATE_V 0x00000001 +#define RTC_CNTL_RTC_TIME_UPDATE_S 31 + +/* RTC_CNTL_TIMER_SYS_RST : R/W; bitpos: [29]; default: 0; + * enable to record system reset time + */ + +#define RTC_CNTL_TIMER_SYS_RST (BIT(29)) +#define RTC_CNTL_TIMER_SYS_RST_M (RTC_CNTL_TIMER_SYS_RST_V << RTC_CNTL_TIMER_SYS_RST_S) +#define RTC_CNTL_TIMER_SYS_RST_V 0x00000001 +#define RTC_CNTL_TIMER_SYS_RST_S 29 + +/* RTC_CNTL_TIMER_XTL_OFF : R/W; bitpos: [28]; default: 0; + * Enable to record 40M XTAL OFF time + */ + +#define RTC_CNTL_TIMER_XTL_OFF (BIT(28)) +#define RTC_CNTL_TIMER_XTL_OFF_M (RTC_CNTL_TIMER_XTL_OFF_V << RTC_CNTL_TIMER_XTL_OFF_S) +#define RTC_CNTL_TIMER_XTL_OFF_V 0x00000001 +#define RTC_CNTL_TIMER_XTL_OFF_S 28 + +/* RTC_CNTL_TIMER_SYS_STALL : R/W; bitpos: [27]; default: 0; + * Enable to record system stall time + */ + +#define RTC_CNTL_TIMER_SYS_STALL (BIT(27)) +#define RTC_CNTL_TIMER_SYS_STALL_M (RTC_CNTL_TIMER_SYS_STALL_V << RTC_CNTL_TIMER_SYS_STALL_S) +#define RTC_CNTL_TIMER_SYS_STALL_V 0x00000001 +#define RTC_CNTL_TIMER_SYS_STALL_S 27 + +/* RTC_CNTL_RTC_TIME_LOW0_REG register + * read rtc_main timer low bits + */ + +#define RTC_CNTL_RTC_TIME_LOW0_REG (DR_REG_RTCCNTL_BASE + 0x10) + +/* RTC_CNTL_RTC_TIMER_VALUE0_LOW : RO; bitpos: [31:0]; default: 0; + * RTC timer low 32 bits + */ + +#define RTC_CNTL_RTC_TIMER_VALUE0_LOW 0xffffffff +#define RTC_CNTL_RTC_TIMER_VALUE0_LOW_M (RTC_CNTL_RTC_TIMER_VALUE0_LOW_V << RTC_CNTL_RTC_TIMER_VALUE0_LOW_S) +#define RTC_CNTL_RTC_TIMER_VALUE0_LOW_V 0xffffffff +#define RTC_CNTL_RTC_TIMER_VALUE0_LOW_S 0 + +/* RTC_CNTL_RTC_TIME_HIGH0_REG register + * read rtc_main timer high bits + */ + +#define RTC_CNTL_RTC_TIME_HIGH0_REG (DR_REG_RTCCNTL_BASE + 0x14) + +/* RTC_CNTL_RTC_TIMER_VALUE0_HIGH : RO; bitpos: [15:0]; default: 0; + * RTC timer high 16 bits + */ + +#define RTC_CNTL_RTC_TIMER_VALUE0_HIGH 0x0000ffff +#define RTC_CNTL_RTC_TIMER_VALUE0_HIGH_M (RTC_CNTL_RTC_TIMER_VALUE0_HIGH_V << RTC_CNTL_RTC_TIMER_VALUE0_HIGH_S) +#define RTC_CNTL_RTC_TIMER_VALUE0_HIGH_V 0x0000ffff +#define RTC_CNTL_RTC_TIMER_VALUE0_HIGH_S 0 + +/* RTC_CNTL_RTC_STATE0_REG register + * configure chip sleep + */ + +#define RTC_CNTL_RTC_STATE0_REG (DR_REG_RTCCNTL_BASE + 0x18) + +/* RTC_CNTL_SLEEP_EN : R/W; bitpos: [31]; default: 0; + * sleep enable bit + */ + +#define RTC_CNTL_SLEEP_EN (BIT(31)) +#define RTC_CNTL_SLEEP_EN_M (RTC_CNTL_SLEEP_EN_V << RTC_CNTL_SLEEP_EN_S) +#define RTC_CNTL_SLEEP_EN_V 0x00000001 +#define RTC_CNTL_SLEEP_EN_S 31 + +/* RTC_CNTL_SLP_REJECT : R/W; bitpos: [30]; default: 0; + * leep reject bit + */ + +#define RTC_CNTL_SLP_REJECT (BIT(30)) +#define RTC_CNTL_SLP_REJECT_M (RTC_CNTL_SLP_REJECT_V << RTC_CNTL_SLP_REJECT_S) +#define RTC_CNTL_SLP_REJECT_V 0x00000001 +#define RTC_CNTL_SLP_REJECT_S 30 + +/* RTC_CNTL_SLP_WAKEUP : R/W; bitpos: [29]; default: 0; + * leep wakeup bit + */ + +#define RTC_CNTL_SLP_WAKEUP (BIT(29)) +#define RTC_CNTL_SLP_WAKEUP_M (RTC_CNTL_SLP_WAKEUP_V << RTC_CNTL_SLP_WAKEUP_S) +#define RTC_CNTL_SLP_WAKEUP_V 0x00000001 +#define RTC_CNTL_SLP_WAKEUP_S 29 + +/* RTC_CNTL_SDIO_ACTIVE_IND : RO; bitpos: [28]; default: 0; + * SDIO active indication + */ + +#define RTC_CNTL_SDIO_ACTIVE_IND (BIT(28)) +#define RTC_CNTL_SDIO_ACTIVE_IND_M (RTC_CNTL_SDIO_ACTIVE_IND_V << RTC_CNTL_SDIO_ACTIVE_IND_S) +#define RTC_CNTL_SDIO_ACTIVE_IND_V 0x00000001 +#define RTC_CNTL_SDIO_ACTIVE_IND_S 28 + +/* RTC_CNTL_APB2RTC_BRIDGE_SEL : R/W; bitpos: [22]; default: 0; + * 1: APB to RTC using bridge, 0: APB to RTC using sync + */ + +#define RTC_CNTL_APB2RTC_BRIDGE_SEL (BIT(22)) +#define RTC_CNTL_APB2RTC_BRIDGE_SEL_M (RTC_CNTL_APB2RTC_BRIDGE_SEL_V << RTC_CNTL_APB2RTC_BRIDGE_SEL_S) +#define RTC_CNTL_APB2RTC_BRIDGE_SEL_V 0x00000001 +#define RTC_CNTL_APB2RTC_BRIDGE_SEL_S 22 + +/* RTC_CNTL_RTC_SLP_REJECT_CAUSE_CLR : WO; bitpos: [1]; default: 0; + * clear rtc sleep reject cause + */ + +#define RTC_CNTL_RTC_SLP_REJECT_CAUSE_CLR (BIT(1)) +#define RTC_CNTL_RTC_SLP_REJECT_CAUSE_CLR_M (RTC_CNTL_RTC_SLP_REJECT_CAUSE_CLR_V << RTC_CNTL_RTC_SLP_REJECT_CAUSE_CLR_S) +#define RTC_CNTL_RTC_SLP_REJECT_CAUSE_CLR_V 0x00000001 +#define RTC_CNTL_RTC_SLP_REJECT_CAUSE_CLR_S 1 + +/* RTC_CNTL_RTC_SW_CPU_INT : WO; bitpos: [0]; default: 0; + * rtc software interrupt to main cpu + */ + +#define RTC_CNTL_RTC_SW_CPU_INT (BIT(0)) +#define RTC_CNTL_RTC_SW_CPU_INT_M (RTC_CNTL_RTC_SW_CPU_INT_V << RTC_CNTL_RTC_SW_CPU_INT_S) +#define RTC_CNTL_RTC_SW_CPU_INT_V 0x00000001 +#define RTC_CNTL_RTC_SW_CPU_INT_S 0 + +/* RTC_CNTL_RTC_TIMER1_REG register + * rtc state wait time + */ + +#define RTC_CNTL_RTC_TIMER1_REG (DR_REG_RTCCNTL_BASE + 0x1c) + +/* RTC_CNTL_PLL_BUF_WAIT : R/W; bitpos: [31:24]; default: 40; + * PLL wait cycles in slow_clk_rtc + */ + +#define RTC_CNTL_PLL_BUF_WAIT 0x000000ff +#define RTC_CNTL_PLL_BUF_WAIT_M (RTC_CNTL_PLL_BUF_WAIT_V << RTC_CNTL_PLL_BUF_WAIT_S) +#define RTC_CNTL_PLL_BUF_WAIT_V 0x000000ff +#define RTC_CNTL_PLL_BUF_WAIT_S 24 + +/* RTC_CNTL_XTL_BUF_WAIT : R/W; bitpos: [23:14]; default: 80; + * XTAL wait cycles in slow_clk_rtc + */ + +#define RTC_CNTL_XTL_BUF_WAIT 0x000003ff +#define RTC_CNTL_XTL_BUF_WAIT_M (RTC_CNTL_XTL_BUF_WAIT_V << RTC_CNTL_XTL_BUF_WAIT_S) +#define RTC_CNTL_XTL_BUF_WAIT_V 0x000003ff +#define RTC_CNTL_XTL_BUF_WAIT_S 14 + +/* RTC_CNTL_CK8M_WAIT : R/W; bitpos: [13:6]; default: 16; + * CK8M wait cycles in slow_clk_rtc + */ + +#define RTC_CNTL_CK8M_WAIT 0x000000ff +#define RTC_CNTL_CK8M_WAIT_M (RTC_CNTL_CK8M_WAIT_V << RTC_CNTL_CK8M_WAIT_S) +#define RTC_CNTL_CK8M_WAIT_V 0x000000ff +#define RTC_CNTL_CK8M_WAIT_S 6 + +/* RTC_CNTL_CPU_STALL_WAIT : R/W; bitpos: [5:1]; default: 1; + * CPU stall wait cycles in fast_clk_rtc + */ + +#define RTC_CNTL_CPU_STALL_WAIT 0x0000001f +#define RTC_CNTL_CPU_STALL_WAIT_M (RTC_CNTL_CPU_STALL_WAIT_V << RTC_CNTL_CPU_STALL_WAIT_S) +#define RTC_CNTL_CPU_STALL_WAIT_V 0x0000001f +#define RTC_CNTL_CPU_STALL_WAIT_S 1 + +/* RTC_CNTL_CPU_STALL_EN : R/W; bitpos: [0]; default: 1; + * CPU stall enable bit + */ + +#define RTC_CNTL_CPU_STALL_EN (BIT(0)) +#define RTC_CNTL_CPU_STALL_EN_M (RTC_CNTL_CPU_STALL_EN_V << RTC_CNTL_CPU_STALL_EN_S) +#define RTC_CNTL_CPU_STALL_EN_V 0x00000001 +#define RTC_CNTL_CPU_STALL_EN_S 0 + +/* RTC_CNTL_RTC_TIMER2_REG register + * rtc monitor state delay time + */ + +#define RTC_CNTL_RTC_TIMER2_REG (DR_REG_RTCCNTL_BASE + 0x20) + +/* RTC_CNTL_MIN_TIME_CK8M_OFF : R/W; bitpos: [31:24]; default: 1; + * minimal cycles in slow_clk_rtc for CK8M in power down state + */ + +#define RTC_CNTL_MIN_TIME_CK8M_OFF 0x000000ff +#define RTC_CNTL_MIN_TIME_CK8M_OFF_M (RTC_CNTL_MIN_TIME_CK8M_OFF_V << RTC_CNTL_MIN_TIME_CK8M_OFF_S) +#define RTC_CNTL_MIN_TIME_CK8M_OFF_V 0x000000ff +#define RTC_CNTL_MIN_TIME_CK8M_OFF_S 24 + +/* RTC_CNTL_ULPCP_TOUCH_START_WAIT : R/W; bitpos: [23:15]; default: 16; + * wait cycles in slow_clk_rtc before ULP-coprocessor / touch controller + * start to work + */ + +#define RTC_CNTL_ULPCP_TOUCH_START_WAIT 0x000001ff +#define RTC_CNTL_ULPCP_TOUCH_START_WAIT_M (RTC_CNTL_ULPCP_TOUCH_START_WAIT_V << RTC_CNTL_ULPCP_TOUCH_START_WAIT_S) +#define RTC_CNTL_ULPCP_TOUCH_START_WAIT_V 0x000001ff +#define RTC_CNTL_ULPCP_TOUCH_START_WAIT_S 15 + +/* RTC_CNTL_RTC_TIMER3_REG register + * No public + */ + +#define RTC_CNTL_RTC_TIMER3_REG (DR_REG_RTCCNTL_BASE + 0x24) + +/* RTC_CNTL_BT_POWERUP_TIMER : R/W; bitpos: [31:25]; default: 10; + * No public + */ + +#define RTC_CNTL_BT_POWERUP_TIMER 0x0000007f +#define RTC_CNTL_BT_POWERUP_TIMER_M (RTC_CNTL_BT_POWERUP_TIMER_V << RTC_CNTL_BT_POWERUP_TIMER_S) +#define RTC_CNTL_BT_POWERUP_TIMER_V 0x0000007f +#define RTC_CNTL_BT_POWERUP_TIMER_S 25 + +/* RTC_CNTL_BT_WAIT_TIMER : R/W; bitpos: [24:16]; default: 22; + * No public + */ + +#define RTC_CNTL_BT_WAIT_TIMER 0x000001ff +#define RTC_CNTL_BT_WAIT_TIMER_M (RTC_CNTL_BT_WAIT_TIMER_V << RTC_CNTL_BT_WAIT_TIMER_S) +#define RTC_CNTL_BT_WAIT_TIMER_V 0x000001ff +#define RTC_CNTL_BT_WAIT_TIMER_S 16 + +/* RTC_CNTL_WIFI_POWERUP_TIMER : R/W; bitpos: [15:9]; default: 5; + * No public + */ + +#define RTC_CNTL_WIFI_POWERUP_TIMER 0x0000007f +#define RTC_CNTL_WIFI_POWERUP_TIMER_M (RTC_CNTL_WIFI_POWERUP_TIMER_V << RTC_CNTL_WIFI_POWERUP_TIMER_S) +#define RTC_CNTL_WIFI_POWERUP_TIMER_V 0x0000007f +#define RTC_CNTL_WIFI_POWERUP_TIMER_S 9 + +/* RTC_CNTL_WIFI_WAIT_TIMER : R/W; bitpos: [8:0]; default: 8; + * No public + */ + +#define RTC_CNTL_WIFI_WAIT_TIMER 0x000001ff +#define RTC_CNTL_WIFI_WAIT_TIMER_M (RTC_CNTL_WIFI_WAIT_TIMER_V << RTC_CNTL_WIFI_WAIT_TIMER_S) +#define RTC_CNTL_WIFI_WAIT_TIMER_V 0x000001ff +#define RTC_CNTL_WIFI_WAIT_TIMER_S 0 + +/* RTC_CNTL_RTC_TIMER4_REG register + * No public + */ + +#define RTC_CNTL_RTC_TIMER4_REG (DR_REG_RTCCNTL_BASE + 0x28) + +/* RTC_CNTL_DG_WRAP_POWERUP_TIMER : R/W; bitpos: [31:25]; default: 8; + * No public + */ + +#define RTC_CNTL_DG_WRAP_POWERUP_TIMER 0x0000007f +#define RTC_CNTL_DG_WRAP_POWERUP_TIMER_M (RTC_CNTL_DG_WRAP_POWERUP_TIMER_V << RTC_CNTL_DG_WRAP_POWERUP_TIMER_S) +#define RTC_CNTL_DG_WRAP_POWERUP_TIMER_V 0x0000007f +#define RTC_CNTL_DG_WRAP_POWERUP_TIMER_S 25 + +/* RTC_CNTL_DG_WRAP_WAIT_TIMER : R/W; bitpos: [24:16]; default: 32; + * No public + */ + +#define RTC_CNTL_DG_WRAP_WAIT_TIMER 0x000001ff +#define RTC_CNTL_DG_WRAP_WAIT_TIMER_M (RTC_CNTL_DG_WRAP_WAIT_TIMER_V << RTC_CNTL_DG_WRAP_WAIT_TIMER_S) +#define RTC_CNTL_DG_WRAP_WAIT_TIMER_V 0x000001ff +#define RTC_CNTL_DG_WRAP_WAIT_TIMER_S 16 + +/* RTC_CNTL_RTC_POWERUP_TIMER : R/W; bitpos: [15:9]; default: 5; + * No public + */ + +#define RTC_CNTL_RTC_POWERUP_TIMER 0x0000007f +#define RTC_CNTL_RTC_POWERUP_TIMER_M (RTC_CNTL_RTC_POWERUP_TIMER_V << RTC_CNTL_RTC_POWERUP_TIMER_S) +#define RTC_CNTL_RTC_POWERUP_TIMER_V 0x0000007f +#define RTC_CNTL_RTC_POWERUP_TIMER_S 9 + +/* RTC_CNTL_RTC_WAIT_TIMER : R/W; bitpos: [8:0]; default: 8; + * No public + */ + +#define RTC_CNTL_RTC_WAIT_TIMER 0x000001ff +#define RTC_CNTL_RTC_WAIT_TIMER_M (RTC_CNTL_RTC_WAIT_TIMER_V << RTC_CNTL_RTC_WAIT_TIMER_S) +#define RTC_CNTL_RTC_WAIT_TIMER_V 0x000001ff +#define RTC_CNTL_RTC_WAIT_TIMER_S 0 + +/* RTC_CNTL_RTC_TIMER5_REG register + * configure min sleep time + */ + +#define RTC_CNTL_RTC_TIMER5_REG (DR_REG_RTCCNTL_BASE + 0x2c) + +/* RTC_CNTL_MIN_SLP_VAL : R/W; bitpos: [15:8]; default: 128; + * minimal sleep cycles in slow_clk_rtc + */ + +#define RTC_CNTL_MIN_SLP_VAL 0x000000ff +#define RTC_CNTL_MIN_SLP_VAL_M (RTC_CNTL_MIN_SLP_VAL_V << RTC_CNTL_MIN_SLP_VAL_S) +#define RTC_CNTL_MIN_SLP_VAL_V 0x000000ff +#define RTC_CNTL_MIN_SLP_VAL_S 8 + +/* RTC_CNTL_RTC_TIMER6_REG register + * No public + */ + +#define RTC_CNTL_RTC_TIMER6_REG (DR_REG_RTCCNTL_BASE + 0x30) + +/* RTC_CNTL_DG_PERI_POWERUP_TIMER : R/W; bitpos: [31:25]; default: 8; + * No public + */ + +#define RTC_CNTL_DG_PERI_POWERUP_TIMER 0x0000007f +#define RTC_CNTL_DG_PERI_POWERUP_TIMER_M (RTC_CNTL_DG_PERI_POWERUP_TIMER_V << RTC_CNTL_DG_PERI_POWERUP_TIMER_S) +#define RTC_CNTL_DG_PERI_POWERUP_TIMER_V 0x0000007f +#define RTC_CNTL_DG_PERI_POWERUP_TIMER_S 25 + +/* RTC_CNTL_DG_PERI_WAIT_TIMER : R/W; bitpos: [24:16]; default: 32; + * No public + */ + +#define RTC_CNTL_DG_PERI_WAIT_TIMER 0x000001ff +#define RTC_CNTL_DG_PERI_WAIT_TIMER_M (RTC_CNTL_DG_PERI_WAIT_TIMER_V << RTC_CNTL_DG_PERI_WAIT_TIMER_S) +#define RTC_CNTL_DG_PERI_WAIT_TIMER_V 0x000001ff +#define RTC_CNTL_DG_PERI_WAIT_TIMER_S 16 + +/* RTC_CNTL_CPU_TOP_POWERUP_TIMER : R/W; bitpos: [15:9]; default: 5; + * No public + */ + +#define RTC_CNTL_CPU_TOP_POWERUP_TIMER 0x0000007f +#define RTC_CNTL_CPU_TOP_POWERUP_TIMER_M (RTC_CNTL_CPU_TOP_POWERUP_TIMER_V << RTC_CNTL_CPU_TOP_POWERUP_TIMER_S) +#define RTC_CNTL_CPU_TOP_POWERUP_TIMER_V 0x0000007f +#define RTC_CNTL_CPU_TOP_POWERUP_TIMER_S 9 + +/* RTC_CNTL_CPU_TOP_WAIT_TIMER : R/W; bitpos: [8:0]; default: 8; + * No public + */ + +#define RTC_CNTL_CPU_TOP_WAIT_TIMER 0x000001ff +#define RTC_CNTL_CPU_TOP_WAIT_TIMER_M (RTC_CNTL_CPU_TOP_WAIT_TIMER_V << RTC_CNTL_CPU_TOP_WAIT_TIMER_S) +#define RTC_CNTL_CPU_TOP_WAIT_TIMER_V 0x000001ff +#define RTC_CNTL_CPU_TOP_WAIT_TIMER_S 0 + +/* RTC_CNTL_RTC_ANA_CONF_REG register + * analog configure register + */ + +#define RTC_CNTL_RTC_ANA_CONF_REG (DR_REG_RTCCNTL_BASE + 0x34) + +/* RTC_CNTL_PLL_I2C_PU : R/W; bitpos: [31]; default: 0; + * power on pll i2c + */ + +#define RTC_CNTL_PLL_I2C_PU (BIT(31)) +#define RTC_CNTL_PLL_I2C_PU_M (RTC_CNTL_PLL_I2C_PU_V << RTC_CNTL_PLL_I2C_PU_S) +#define RTC_CNTL_PLL_I2C_PU_V 0x00000001 +#define RTC_CNTL_PLL_I2C_PU_S 31 + +/* RTC_CNTL_CKGEN_I2C_PU : R/W; bitpos: [30]; default: 0; + * 1: CKGEN_I2C power up, otherwise power down + */ + +#define RTC_CNTL_CKGEN_I2C_PU (BIT(30)) +#define RTC_CNTL_CKGEN_I2C_PU_M (RTC_CNTL_CKGEN_I2C_PU_V << RTC_CNTL_CKGEN_I2C_PU_S) +#define RTC_CNTL_CKGEN_I2C_PU_V 0x00000001 +#define RTC_CNTL_CKGEN_I2C_PU_S 30 + +/* RTC_CNTL_RFRX_PBUS_PU : R/W; bitpos: [28]; default: 0; + * 1: RFRX_PBUS power up, otherwise power down + */ + +#define RTC_CNTL_RFRX_PBUS_PU (BIT(28)) +#define RTC_CNTL_RFRX_PBUS_PU_M (RTC_CNTL_RFRX_PBUS_PU_V << RTC_CNTL_RFRX_PBUS_PU_S) +#define RTC_CNTL_RFRX_PBUS_PU_V 0x00000001 +#define RTC_CNTL_RFRX_PBUS_PU_S 28 + +/* RTC_CNTL_TXRF_I2C_PU : R/W; bitpos: [27]; default: 0; + * 1: TXRF_I2C power up, otherwise power down + */ + +#define RTC_CNTL_TXRF_I2C_PU (BIT(27)) +#define RTC_CNTL_TXRF_I2C_PU_M (RTC_CNTL_TXRF_I2C_PU_V << RTC_CNTL_TXRF_I2C_PU_S) +#define RTC_CNTL_TXRF_I2C_PU_V 0x00000001 +#define RTC_CNTL_TXRF_I2C_PU_S 27 + +/* RTC_CNTL_PVTMON_PU : R/W; bitpos: [26]; default: 0; + * 1: PVTMON power up, otherwise power down + */ + +#define RTC_CNTL_PVTMON_PU (BIT(26)) +#define RTC_CNTL_PVTMON_PU_M (RTC_CNTL_PVTMON_PU_V << RTC_CNTL_PVTMON_PU_S) +#define RTC_CNTL_PVTMON_PU_V 0x00000001 +#define RTC_CNTL_PVTMON_PU_S 26 + +/* RTC_CNTL_BBPLL_CAL_SLP_START : R/W; bitpos: [25]; default: 0; + * start BBPLL calibration during sleep + */ + +#define RTC_CNTL_BBPLL_CAL_SLP_START (BIT(25)) +#define RTC_CNTL_BBPLL_CAL_SLP_START_M (RTC_CNTL_BBPLL_CAL_SLP_START_V << RTC_CNTL_BBPLL_CAL_SLP_START_S) +#define RTC_CNTL_BBPLL_CAL_SLP_START_V 0x00000001 +#define RTC_CNTL_BBPLL_CAL_SLP_START_S 25 + +/* RTC_CNTL_ANALOG_TOP_ISO_MONITOR : R/W; bitpos: [24]; default: 0; + * PLLA force power up + */ + +#define RTC_CNTL_ANALOG_TOP_ISO_MONITOR (BIT(24)) +#define RTC_CNTL_ANALOG_TOP_ISO_MONITOR_M (RTC_CNTL_ANALOG_TOP_ISO_MONITOR_V << RTC_CNTL_ANALOG_TOP_ISO_MONITOR_S) +#define RTC_CNTL_ANALOG_TOP_ISO_MONITOR_V 0x00000001 +#define RTC_CNTL_ANALOG_TOP_ISO_MONITOR_S 24 + +/* RTC_CNTL_ANALOG_TOP_ISO_SLEEP : R/W; bitpos: [23]; default: 0; + * PLLA force power down + */ + +#define RTC_CNTL_ANALOG_TOP_ISO_SLEEP (BIT(23)) +#define RTC_CNTL_ANALOG_TOP_ISO_SLEEP_M (RTC_CNTL_ANALOG_TOP_ISO_SLEEP_V << RTC_CNTL_ANALOG_TOP_ISO_SLEEP_S) +#define RTC_CNTL_ANALOG_TOP_ISO_SLEEP_V 0x00000001 +#define RTC_CNTL_ANALOG_TOP_ISO_SLEEP_S 23 + +/* RTC_CNTL_SAR_I2C_PU : R/W; bitpos: [22]; default: 1; + * PLLA force power up + */ + +#define RTC_CNTL_SAR_I2C_PU (BIT(22)) +#define RTC_CNTL_SAR_I2C_PU_M (RTC_CNTL_SAR_I2C_PU_V << RTC_CNTL_SAR_I2C_PU_S) +#define RTC_CNTL_SAR_I2C_PU_V 0x00000001 +#define RTC_CNTL_SAR_I2C_PU_S 22 + +/* RTC_CNTL_GLITCH_RST_EN : R/W; bitpos: [20]; default: 0; + * enable clk glitch + */ + +#define RTC_CNTL_GLITCH_RST_EN (BIT(20)) +#define RTC_CNTL_GLITCH_RST_EN_M (RTC_CNTL_GLITCH_RST_EN_V << RTC_CNTL_GLITCH_RST_EN_S) +#define RTC_CNTL_GLITCH_RST_EN_V 0x00000001 +#define RTC_CNTL_GLITCH_RST_EN_S 20 + +/* RTC_CNTL_I2C_RESET_POR_FORCE_PU : R/W; bitpos: [19]; default: 0; + * force on I2C_RESET_POR + */ + +#define RTC_CNTL_I2C_RESET_POR_FORCE_PU (BIT(19)) +#define RTC_CNTL_I2C_RESET_POR_FORCE_PU_M (RTC_CNTL_I2C_RESET_POR_FORCE_PU_V << RTC_CNTL_I2C_RESET_POR_FORCE_PU_S) +#define RTC_CNTL_I2C_RESET_POR_FORCE_PU_V 0x00000001 +#define RTC_CNTL_I2C_RESET_POR_FORCE_PU_S 19 + +/* RTC_CNTL_I2C_RESET_POR_FORCE_PD : R/W; bitpos: [18]; default: 1; + * force down I2C_RESET_POR + */ + +#define RTC_CNTL_I2C_RESET_POR_FORCE_PD (BIT(18)) +#define RTC_CNTL_I2C_RESET_POR_FORCE_PD_M (RTC_CNTL_I2C_RESET_POR_FORCE_PD_V << RTC_CNTL_I2C_RESET_POR_FORCE_PD_S) +#define RTC_CNTL_I2C_RESET_POR_FORCE_PD_V 0x00000001 +#define RTC_CNTL_I2C_RESET_POR_FORCE_PD_S 18 + +/* RTC_CNTL_RTC_RESET_STATE_REG register + * get reset state + */ + +#define RTC_CNTL_RTC_RESET_STATE_REG (DR_REG_RTCCNTL_BASE + 0x38) + +/* RTC_CNTL_RTC_PRO_DRESET_MASK : R/W; bitpos: [25]; default: 0; + * bypass cpu0 dreset + */ + +#define RTC_CNTL_RTC_PRO_DRESET_MASK (BIT(25)) +#define RTC_CNTL_RTC_PRO_DRESET_MASK_M (RTC_CNTL_RTC_PRO_DRESET_MASK_V << RTC_CNTL_RTC_PRO_DRESET_MASK_S) +#define RTC_CNTL_RTC_PRO_DRESET_MASK_V 0x00000001 +#define RTC_CNTL_RTC_PRO_DRESET_MASK_S 25 + +/* RTC_CNTL_RTC_APP_DRESET_MASK : R/W; bitpos: [24]; default: 0; + * bypass cpu1 dreset + */ + +#define RTC_CNTL_RTC_APP_DRESET_MASK (BIT(24)) +#define RTC_CNTL_RTC_APP_DRESET_MASK_M (RTC_CNTL_RTC_APP_DRESET_MASK_V << RTC_CNTL_RTC_APP_DRESET_MASK_S) +#define RTC_CNTL_RTC_APP_DRESET_MASK_V 0x00000001 +#define RTC_CNTL_RTC_APP_DRESET_MASK_S 24 + +/* RTC_CNTL_RESET_FLAG_JTAG_APPCPU_CLR : WO; bitpos: [23]; default: 0; + * clear jtag reset flag + */ + +#define RTC_CNTL_RESET_FLAG_JTAG_APPCPU_CLR (BIT(23)) +#define RTC_CNTL_RESET_FLAG_JTAG_APPCPU_CLR_M (RTC_CNTL_RESET_FLAG_JTAG_APPCPU_CLR_V << RTC_CNTL_RESET_FLAG_JTAG_APPCPU_CLR_S) +#define RTC_CNTL_RESET_FLAG_JTAG_APPCPU_CLR_V 0x00000001 +#define RTC_CNTL_RESET_FLAG_JTAG_APPCPU_CLR_S 23 + +/* RTC_CNTL_RESET_FLAG_JTAG_PROCPU_CLR : WO; bitpos: [22]; default: 0; + * clear jtag reset flag + */ + +#define RTC_CNTL_RESET_FLAG_JTAG_PROCPU_CLR (BIT(22)) +#define RTC_CNTL_RESET_FLAG_JTAG_PROCPU_CLR_M (RTC_CNTL_RESET_FLAG_JTAG_PROCPU_CLR_V << RTC_CNTL_RESET_FLAG_JTAG_PROCPU_CLR_S) +#define RTC_CNTL_RESET_FLAG_JTAG_PROCPU_CLR_V 0x00000001 +#define RTC_CNTL_RESET_FLAG_JTAG_PROCPU_CLR_S 22 + +/* RTC_CNTL_RESET_FLAG_JTAG_APPCPU : RO; bitpos: [21]; default: 0; + * jtag reset flag + */ + +#define RTC_CNTL_RESET_FLAG_JTAG_APPCPU (BIT(21)) +#define RTC_CNTL_RESET_FLAG_JTAG_APPCPU_M (RTC_CNTL_RESET_FLAG_JTAG_APPCPU_V << RTC_CNTL_RESET_FLAG_JTAG_APPCPU_S) +#define RTC_CNTL_RESET_FLAG_JTAG_APPCPU_V 0x00000001 +#define RTC_CNTL_RESET_FLAG_JTAG_APPCPU_S 21 + +/* RTC_CNTL_RESET_FLAG_JTAG_PROCPU : RO; bitpos: [20]; default: 0; + * jtag reset flag + */ + +#define RTC_CNTL_RESET_FLAG_JTAG_PROCPU (BIT(20)) +#define RTC_CNTL_RESET_FLAG_JTAG_PROCPU_M (RTC_CNTL_RESET_FLAG_JTAG_PROCPU_V << RTC_CNTL_RESET_FLAG_JTAG_PROCPU_S) +#define RTC_CNTL_RESET_FLAG_JTAG_PROCPU_V 0x00000001 +#define RTC_CNTL_RESET_FLAG_JTAG_PROCPU_S 20 + +/* RTC_CNTL_PROCPU_OCD_HALT_ON_RESET : R/W; bitpos: [19]; default: 0; + * PROCPU OcdHaltOnReset + */ + +#define RTC_CNTL_PROCPU_OCD_HALT_ON_RESET (BIT(19)) +#define RTC_CNTL_PROCPU_OCD_HALT_ON_RESET_M (RTC_CNTL_PROCPU_OCD_HALT_ON_RESET_V << RTC_CNTL_PROCPU_OCD_HALT_ON_RESET_S) +#define RTC_CNTL_PROCPU_OCD_HALT_ON_RESET_V 0x00000001 +#define RTC_CNTL_PROCPU_OCD_HALT_ON_RESET_S 19 + +/* RTC_CNTL_APPCPU_OCD_HALT_ON_RESET : R/W; bitpos: [18]; default: 0; + * APPCPU OcdHaltOnReset + */ + +#define RTC_CNTL_APPCPU_OCD_HALT_ON_RESET (BIT(18)) +#define RTC_CNTL_APPCPU_OCD_HALT_ON_RESET_M (RTC_CNTL_APPCPU_OCD_HALT_ON_RESET_V << RTC_CNTL_APPCPU_OCD_HALT_ON_RESET_S) +#define RTC_CNTL_APPCPU_OCD_HALT_ON_RESET_V 0x00000001 +#define RTC_CNTL_APPCPU_OCD_HALT_ON_RESET_S 18 + +/* RTC_CNTL_RESET_FLAG_APPCPU_CLR : WO; bitpos: [17]; default: 0; + * clear APP CPU reset flag + */ + +#define RTC_CNTL_RESET_FLAG_APPCPU_CLR (BIT(17)) +#define RTC_CNTL_RESET_FLAG_APPCPU_CLR_M (RTC_CNTL_RESET_FLAG_APPCPU_CLR_V << RTC_CNTL_RESET_FLAG_APPCPU_CLR_S) +#define RTC_CNTL_RESET_FLAG_APPCPU_CLR_V 0x00000001 +#define RTC_CNTL_RESET_FLAG_APPCPU_CLR_S 17 + +/* RTC_CNTL_RESET_FLAG_PROCPU_CLR : WO; bitpos: [16]; default: 0; + * clear PRO CPU reset_flag + */ + +#define RTC_CNTL_RESET_FLAG_PROCPU_CLR (BIT(16)) +#define RTC_CNTL_RESET_FLAG_PROCPU_CLR_M (RTC_CNTL_RESET_FLAG_PROCPU_CLR_V << RTC_CNTL_RESET_FLAG_PROCPU_CLR_S) +#define RTC_CNTL_RESET_FLAG_PROCPU_CLR_V 0x00000001 +#define RTC_CNTL_RESET_FLAG_PROCPU_CLR_S 16 + +/* RTC_CNTL_RESET_FLAG_APPCPU : RO; bitpos: [15]; default: 0; + * APP CPU reset flag + */ + +#define RTC_CNTL_RESET_FLAG_APPCPU (BIT(15)) +#define RTC_CNTL_RESET_FLAG_APPCPU_M (RTC_CNTL_RESET_FLAG_APPCPU_V << RTC_CNTL_RESET_FLAG_APPCPU_S) +#define RTC_CNTL_RESET_FLAG_APPCPU_V 0x00000001 +#define RTC_CNTL_RESET_FLAG_APPCPU_S 15 + +/* RTC_CNTL_RESET_FLAG_PROCPU : RO; bitpos: [14]; default: 0; + * PRO CPU reset_flag + */ + +#define RTC_CNTL_RESET_FLAG_PROCPU (BIT(14)) +#define RTC_CNTL_RESET_FLAG_PROCPU_M (RTC_CNTL_RESET_FLAG_PROCPU_V << RTC_CNTL_RESET_FLAG_PROCPU_S) +#define RTC_CNTL_RESET_FLAG_PROCPU_V 0x00000001 +#define RTC_CNTL_RESET_FLAG_PROCPU_S 14 + +/* RTC_CNTL_PROCPU_STAT_VECTOR_SEL : R/W; bitpos: [13]; default: 1; + * PRO CPU state vector sel + */ + +#define RTC_CNTL_PROCPU_STAT_VECTOR_SEL (BIT(13)) +#define RTC_CNTL_PROCPU_STAT_VECTOR_SEL_M (RTC_CNTL_PROCPU_STAT_VECTOR_SEL_V << RTC_CNTL_PROCPU_STAT_VECTOR_SEL_S) +#define RTC_CNTL_PROCPU_STAT_VECTOR_SEL_V 0x00000001 +#define RTC_CNTL_PROCPU_STAT_VECTOR_SEL_S 13 + +/* RTC_CNTL_APPCPU_STAT_VECTOR_SEL : R/W; bitpos: [12]; default: 1; + * APP CPU state vector sel + */ + +#define RTC_CNTL_APPCPU_STAT_VECTOR_SEL (BIT(12)) +#define RTC_CNTL_APPCPU_STAT_VECTOR_SEL_M (RTC_CNTL_APPCPU_STAT_VECTOR_SEL_V << RTC_CNTL_APPCPU_STAT_VECTOR_SEL_S) +#define RTC_CNTL_APPCPU_STAT_VECTOR_SEL_V 0x00000001 +#define RTC_CNTL_APPCPU_STAT_VECTOR_SEL_S 12 + +/* RTC_CNTL_RESET_CAUSE_APPCPU : RO; bitpos: [11:6]; default: 0; + * reset cause of APP CPU + */ + +#define RTC_CNTL_RESET_CAUSE_APPCPU 0x0000003f +#define RTC_CNTL_RESET_CAUSE_APPCPU_M (RTC_CNTL_RESET_CAUSE_APPCPU_V << RTC_CNTL_RESET_CAUSE_APPCPU_S) +#define RTC_CNTL_RESET_CAUSE_APPCPU_V 0x0000003f +#define RTC_CNTL_RESET_CAUSE_APPCPU_S 6 + +/* RTC_CNTL_RESET_CAUSE_PROCPU : RO; bitpos: [5:0]; default: 0; + * reset cause of PRO CPU + */ + +#define RTC_CNTL_RESET_CAUSE_PROCPU 0x0000003f +#define RTC_CNTL_RESET_CAUSE_PROCPU_M (RTC_CNTL_RESET_CAUSE_PROCPU_V << RTC_CNTL_RESET_CAUSE_PROCPU_S) +#define RTC_CNTL_RESET_CAUSE_PROCPU_V 0x0000003f +#define RTC_CNTL_RESET_CAUSE_PROCPU_S 0 + +/* RTC_CNTL_RTC_WAKEUP_STATE_REG register + * configure wakeup state + */ + +#define RTC_CNTL_RTC_WAKEUP_STATE_REG (DR_REG_RTCCNTL_BASE + 0x3c) + +/* RTC_CNTL_RTC_WAKEUP_ENA : R/W; bitpos: [31:15]; default: 12; + * wakeup enable bitmap + */ + +#define RTC_CNTL_RTC_WAKEUP_ENA 0x0001ffff +#define RTC_CNTL_RTC_WAKEUP_ENA_M (RTC_CNTL_RTC_WAKEUP_ENA_V << RTC_CNTL_RTC_WAKEUP_ENA_S) +#define RTC_CNTL_RTC_WAKEUP_ENA_V 0x0001ffff +#define RTC_CNTL_RTC_WAKEUP_ENA_S 15 + +/* RTC_CNTL_INT_ENA_RTC_REG register + * configure rtc interrupt register + */ + +#define RTC_CNTL_INT_ENA_RTC_REG (DR_REG_RTCCNTL_BASE + 0x40) + +/* RTC_CNTL_RTC_TOUCH_APPROACH_LOOP_DONE_INT_ENA : R/W; bitpos: [20]; + * default: 0; + * touch approach mode loop interrupt + */ + +#define RTC_CNTL_RTC_TOUCH_APPROACH_LOOP_DONE_INT_ENA (BIT(20)) +#define RTC_CNTL_RTC_TOUCH_APPROACH_LOOP_DONE_INT_ENA_M (RTC_CNTL_RTC_TOUCH_APPROACH_LOOP_DONE_INT_ENA_V << RTC_CNTL_RTC_TOUCH_APPROACH_LOOP_DONE_INT_ENA_S) +#define RTC_CNTL_RTC_TOUCH_APPROACH_LOOP_DONE_INT_ENA_V 0x00000001 +#define RTC_CNTL_RTC_TOUCH_APPROACH_LOOP_DONE_INT_ENA_S 20 + +/* RTC_CNTL_RTC_GLITCH_DET_INT_ENA : R/W; bitpos: [19]; default: 0; + * enbale gitch det interrupt + */ + +#define RTC_CNTL_RTC_GLITCH_DET_INT_ENA (BIT(19)) +#define RTC_CNTL_RTC_GLITCH_DET_INT_ENA_M (RTC_CNTL_RTC_GLITCH_DET_INT_ENA_V << RTC_CNTL_RTC_GLITCH_DET_INT_ENA_S) +#define RTC_CNTL_RTC_GLITCH_DET_INT_ENA_V 0x00000001 +#define RTC_CNTL_RTC_GLITCH_DET_INT_ENA_S 19 + +/* RTC_CNTL_RTC_TOUCH_TIMEOUT_INT_ENA : R/W; bitpos: [18]; default: 0; + * enable touch timeout interrupt + */ + +#define RTC_CNTL_RTC_TOUCH_TIMEOUT_INT_ENA (BIT(18)) +#define RTC_CNTL_RTC_TOUCH_TIMEOUT_INT_ENA_M (RTC_CNTL_RTC_TOUCH_TIMEOUT_INT_ENA_V << RTC_CNTL_RTC_TOUCH_TIMEOUT_INT_ENA_S) +#define RTC_CNTL_RTC_TOUCH_TIMEOUT_INT_ENA_V 0x00000001 +#define RTC_CNTL_RTC_TOUCH_TIMEOUT_INT_ENA_S 18 + +/* RTC_CNTL_RTC_COCPU_TRAP_INT_ENA : R/W; bitpos: [17]; default: 0; + * enable cocpu trap interrupt + */ + +#define RTC_CNTL_RTC_COCPU_TRAP_INT_ENA (BIT(17)) +#define RTC_CNTL_RTC_COCPU_TRAP_INT_ENA_M (RTC_CNTL_RTC_COCPU_TRAP_INT_ENA_V << RTC_CNTL_RTC_COCPU_TRAP_INT_ENA_S) +#define RTC_CNTL_RTC_COCPU_TRAP_INT_ENA_V 0x00000001 +#define RTC_CNTL_RTC_COCPU_TRAP_INT_ENA_S 17 + +/* RTC_CNTL_RTC_XTAL32K_DEAD_INT_ENA : R/W; bitpos: [16]; default: 0; + * enable xtal32k_dead interrupt + */ + +#define RTC_CNTL_RTC_XTAL32K_DEAD_INT_ENA (BIT(16)) +#define RTC_CNTL_RTC_XTAL32K_DEAD_INT_ENA_M (RTC_CNTL_RTC_XTAL32K_DEAD_INT_ENA_V << RTC_CNTL_RTC_XTAL32K_DEAD_INT_ENA_S) +#define RTC_CNTL_RTC_XTAL32K_DEAD_INT_ENA_V 0x00000001 +#define RTC_CNTL_RTC_XTAL32K_DEAD_INT_ENA_S 16 + +/* RTC_CNTL_RTC_SWD_INT_ENA : R/W; bitpos: [15]; default: 0; + * enable super watch dog interrupt + */ + +#define RTC_CNTL_RTC_SWD_INT_ENA (BIT(15)) +#define RTC_CNTL_RTC_SWD_INT_ENA_M (RTC_CNTL_RTC_SWD_INT_ENA_V << RTC_CNTL_RTC_SWD_INT_ENA_S) +#define RTC_CNTL_RTC_SWD_INT_ENA_V 0x00000001 +#define RTC_CNTL_RTC_SWD_INT_ENA_S 15 + +/* RTC_CNTL_RTC_SARADC2_INT_ENA : R/W; bitpos: [14]; default: 0; + * enable saradc2 interrupt + */ + +#define RTC_CNTL_RTC_SARADC2_INT_ENA (BIT(14)) +#define RTC_CNTL_RTC_SARADC2_INT_ENA_M (RTC_CNTL_RTC_SARADC2_INT_ENA_V << RTC_CNTL_RTC_SARADC2_INT_ENA_S) +#define RTC_CNTL_RTC_SARADC2_INT_ENA_V 0x00000001 +#define RTC_CNTL_RTC_SARADC2_INT_ENA_S 14 + +/* RTC_CNTL_RTC_COCPU_INT_ENA : R/W; bitpos: [13]; default: 0; + * enable riscV cocpu interrupt + */ + +#define RTC_CNTL_RTC_COCPU_INT_ENA (BIT(13)) +#define RTC_CNTL_RTC_COCPU_INT_ENA_M (RTC_CNTL_RTC_COCPU_INT_ENA_V << RTC_CNTL_RTC_COCPU_INT_ENA_S) +#define RTC_CNTL_RTC_COCPU_INT_ENA_V 0x00000001 +#define RTC_CNTL_RTC_COCPU_INT_ENA_S 13 + +/* RTC_CNTL_RTC_TSENS_INT_ENA : R/W; bitpos: [12]; default: 0; + * enable tsens interrupt + */ + +#define RTC_CNTL_RTC_TSENS_INT_ENA (BIT(12)) +#define RTC_CNTL_RTC_TSENS_INT_ENA_M (RTC_CNTL_RTC_TSENS_INT_ENA_V << RTC_CNTL_RTC_TSENS_INT_ENA_S) +#define RTC_CNTL_RTC_TSENS_INT_ENA_V 0x00000001 +#define RTC_CNTL_RTC_TSENS_INT_ENA_S 12 + +/* RTC_CNTL_RTC_SARADC1_INT_ENA : R/W; bitpos: [11]; default: 0; + * enable saradc1 interrupt + */ + +#define RTC_CNTL_RTC_SARADC1_INT_ENA (BIT(11)) +#define RTC_CNTL_RTC_SARADC1_INT_ENA_M (RTC_CNTL_RTC_SARADC1_INT_ENA_V << RTC_CNTL_RTC_SARADC1_INT_ENA_S) +#define RTC_CNTL_RTC_SARADC1_INT_ENA_V 0x00000001 +#define RTC_CNTL_RTC_SARADC1_INT_ENA_S 11 + +/* RTC_CNTL_RTC_MAIN_TIMER_INT_ENA : R/W; bitpos: [10]; default: 0; + * enable RTC main timer interrupt + */ + +#define RTC_CNTL_RTC_MAIN_TIMER_INT_ENA (BIT(10)) +#define RTC_CNTL_RTC_MAIN_TIMER_INT_ENA_M (RTC_CNTL_RTC_MAIN_TIMER_INT_ENA_V << RTC_CNTL_RTC_MAIN_TIMER_INT_ENA_S) +#define RTC_CNTL_RTC_MAIN_TIMER_INT_ENA_V 0x00000001 +#define RTC_CNTL_RTC_MAIN_TIMER_INT_ENA_S 10 + +/* RTC_CNTL_RTC_BROWN_OUT_INT_ENA : R/W; bitpos: [9]; default: 0; + * enable brown out interrupt + */ + +#define RTC_CNTL_RTC_BROWN_OUT_INT_ENA (BIT(9)) +#define RTC_CNTL_RTC_BROWN_OUT_INT_ENA_M (RTC_CNTL_RTC_BROWN_OUT_INT_ENA_V << RTC_CNTL_RTC_BROWN_OUT_INT_ENA_S) +#define RTC_CNTL_RTC_BROWN_OUT_INT_ENA_V 0x00000001 +#define RTC_CNTL_RTC_BROWN_OUT_INT_ENA_S 9 + +/* RTC_CNTL_RTC_TOUCH_INACTIVE_INT_ENA : R/W; bitpos: [8]; default: 0; + * enable touch inactive interrupt + */ + +#define RTC_CNTL_RTC_TOUCH_INACTIVE_INT_ENA (BIT(8)) +#define RTC_CNTL_RTC_TOUCH_INACTIVE_INT_ENA_M (RTC_CNTL_RTC_TOUCH_INACTIVE_INT_ENA_V << RTC_CNTL_RTC_TOUCH_INACTIVE_INT_ENA_S) +#define RTC_CNTL_RTC_TOUCH_INACTIVE_INT_ENA_V 0x00000001 +#define RTC_CNTL_RTC_TOUCH_INACTIVE_INT_ENA_S 8 + +/* RTC_CNTL_RTC_TOUCH_ACTIVE_INT_ENA : R/W; bitpos: [7]; default: 0; + * enable touch active interrupt + */ + +#define RTC_CNTL_RTC_TOUCH_ACTIVE_INT_ENA (BIT(7)) +#define RTC_CNTL_RTC_TOUCH_ACTIVE_INT_ENA_M (RTC_CNTL_RTC_TOUCH_ACTIVE_INT_ENA_V << RTC_CNTL_RTC_TOUCH_ACTIVE_INT_ENA_S) +#define RTC_CNTL_RTC_TOUCH_ACTIVE_INT_ENA_V 0x00000001 +#define RTC_CNTL_RTC_TOUCH_ACTIVE_INT_ENA_S 7 + +/* RTC_CNTL_RTC_TOUCH_DONE_INT_ENA : R/W; bitpos: [6]; default: 0; + * enable touch done interrupt + */ + +#define RTC_CNTL_RTC_TOUCH_DONE_INT_ENA (BIT(6)) +#define RTC_CNTL_RTC_TOUCH_DONE_INT_ENA_M (RTC_CNTL_RTC_TOUCH_DONE_INT_ENA_V << RTC_CNTL_RTC_TOUCH_DONE_INT_ENA_S) +#define RTC_CNTL_RTC_TOUCH_DONE_INT_ENA_V 0x00000001 +#define RTC_CNTL_RTC_TOUCH_DONE_INT_ENA_S 6 + +/* RTC_CNTL_RTC_ULP_CP_INT_ENA : R/W; bitpos: [5]; default: 0; + * enable ULP-coprocessor interrupt + */ + +#define RTC_CNTL_RTC_ULP_CP_INT_ENA (BIT(5)) +#define RTC_CNTL_RTC_ULP_CP_INT_ENA_M (RTC_CNTL_RTC_ULP_CP_INT_ENA_V << RTC_CNTL_RTC_ULP_CP_INT_ENA_S) +#define RTC_CNTL_RTC_ULP_CP_INT_ENA_V 0x00000001 +#define RTC_CNTL_RTC_ULP_CP_INT_ENA_S 5 + +/* RTC_CNTL_RTC_TOUCH_SCAN_DONE_INT_ENA : R/W; bitpos: [4]; default: 0; + * enable touch scan done interrupt + */ + +#define RTC_CNTL_RTC_TOUCH_SCAN_DONE_INT_ENA (BIT(4)) +#define RTC_CNTL_RTC_TOUCH_SCAN_DONE_INT_ENA_M (RTC_CNTL_RTC_TOUCH_SCAN_DONE_INT_ENA_V << RTC_CNTL_RTC_TOUCH_SCAN_DONE_INT_ENA_S) +#define RTC_CNTL_RTC_TOUCH_SCAN_DONE_INT_ENA_V 0x00000001 +#define RTC_CNTL_RTC_TOUCH_SCAN_DONE_INT_ENA_S 4 + +/* RTC_CNTL_RTC_WDT_INT_ENA : R/W; bitpos: [3]; default: 0; + * enable RTC WDT interrupt + */ + +#define RTC_CNTL_RTC_WDT_INT_ENA (BIT(3)) +#define RTC_CNTL_RTC_WDT_INT_ENA_M (RTC_CNTL_RTC_WDT_INT_ENA_V << RTC_CNTL_RTC_WDT_INT_ENA_S) +#define RTC_CNTL_RTC_WDT_INT_ENA_V 0x00000001 +#define RTC_CNTL_RTC_WDT_INT_ENA_S 3 + +/* RTC_CNTL_SDIO_IDLE_INT_ENA : R/W; bitpos: [2]; default: 0; + * enable SDIO idle interrupt + */ + +#define RTC_CNTL_SDIO_IDLE_INT_ENA (BIT(2)) +#define RTC_CNTL_SDIO_IDLE_INT_ENA_M (RTC_CNTL_SDIO_IDLE_INT_ENA_V << RTC_CNTL_SDIO_IDLE_INT_ENA_S) +#define RTC_CNTL_SDIO_IDLE_INT_ENA_V 0x00000001 +#define RTC_CNTL_SDIO_IDLE_INT_ENA_S 2 + +/* RTC_CNTL_SLP_REJECT_INT_ENA : R/W; bitpos: [1]; default: 0; + * enable sleep reject interrupt + */ + +#define RTC_CNTL_SLP_REJECT_INT_ENA (BIT(1)) +#define RTC_CNTL_SLP_REJECT_INT_ENA_M (RTC_CNTL_SLP_REJECT_INT_ENA_V << RTC_CNTL_SLP_REJECT_INT_ENA_S) +#define RTC_CNTL_SLP_REJECT_INT_ENA_V 0x00000001 +#define RTC_CNTL_SLP_REJECT_INT_ENA_S 1 + +/* RTC_CNTL_SLP_WAKEUP_INT_ENA : R/W; bitpos: [0]; default: 0; + * enable sleep wakeup interrupt + */ + +#define RTC_CNTL_SLP_WAKEUP_INT_ENA (BIT(0)) +#define RTC_CNTL_SLP_WAKEUP_INT_ENA_M (RTC_CNTL_SLP_WAKEUP_INT_ENA_V << RTC_CNTL_SLP_WAKEUP_INT_ENA_S) +#define RTC_CNTL_SLP_WAKEUP_INT_ENA_V 0x00000001 +#define RTC_CNTL_SLP_WAKEUP_INT_ENA_S 0 + +/* RTC_CNTL_INT_RAW_RTC_REG register + * rtc interrupt register + */ + +#define RTC_CNTL_INT_RAW_RTC_REG (DR_REG_RTCCNTL_BASE + 0x44) + +/* RTC_CNTL_RTC_TOUCH_APPROACH_LOOP_DONE_INT_RAW : R/W; bitpos: [20]; + * default: 0; + * touch approach mode loop interrupt raw + */ + +#define RTC_CNTL_RTC_TOUCH_APPROACH_LOOP_DONE_INT_RAW (BIT(20)) +#define RTC_CNTL_RTC_TOUCH_APPROACH_LOOP_DONE_INT_RAW_M (RTC_CNTL_RTC_TOUCH_APPROACH_LOOP_DONE_INT_RAW_V << RTC_CNTL_RTC_TOUCH_APPROACH_LOOP_DONE_INT_RAW_S) +#define RTC_CNTL_RTC_TOUCH_APPROACH_LOOP_DONE_INT_RAW_V 0x00000001 +#define RTC_CNTL_RTC_TOUCH_APPROACH_LOOP_DONE_INT_RAW_S 20 + +/* RTC_CNTL_RTC_GLITCH_DET_INT_RAW : RO; bitpos: [19]; default: 0; + * glitch_det_interrupt_raw + */ + +#define RTC_CNTL_RTC_GLITCH_DET_INT_RAW (BIT(19)) +#define RTC_CNTL_RTC_GLITCH_DET_INT_RAW_M (RTC_CNTL_RTC_GLITCH_DET_INT_RAW_V << RTC_CNTL_RTC_GLITCH_DET_INT_RAW_S) +#define RTC_CNTL_RTC_GLITCH_DET_INT_RAW_V 0x00000001 +#define RTC_CNTL_RTC_GLITCH_DET_INT_RAW_S 19 + +/* RTC_CNTL_RTC_TOUCH_TIMEOUT_INT_RAW : RO; bitpos: [18]; default: 0; + * touch timeout interrupt raw + */ + +#define RTC_CNTL_RTC_TOUCH_TIMEOUT_INT_RAW (BIT(18)) +#define RTC_CNTL_RTC_TOUCH_TIMEOUT_INT_RAW_M (RTC_CNTL_RTC_TOUCH_TIMEOUT_INT_RAW_V << RTC_CNTL_RTC_TOUCH_TIMEOUT_INT_RAW_S) +#define RTC_CNTL_RTC_TOUCH_TIMEOUT_INT_RAW_V 0x00000001 +#define RTC_CNTL_RTC_TOUCH_TIMEOUT_INT_RAW_S 18 + +/* RTC_CNTL_RTC_COCPU_TRAP_INT_RAW : RO; bitpos: [17]; default: 0; + * cocpu trap interrupt raw + */ + +#define RTC_CNTL_RTC_COCPU_TRAP_INT_RAW (BIT(17)) +#define RTC_CNTL_RTC_COCPU_TRAP_INT_RAW_M (RTC_CNTL_RTC_COCPU_TRAP_INT_RAW_V << RTC_CNTL_RTC_COCPU_TRAP_INT_RAW_S) +#define RTC_CNTL_RTC_COCPU_TRAP_INT_RAW_V 0x00000001 +#define RTC_CNTL_RTC_COCPU_TRAP_INT_RAW_S 17 + +/* RTC_CNTL_RTC_XTAL32K_DEAD_INT_RAW : RO; bitpos: [16]; default: 0; + * xtal32k dead detection interrupt raw + */ + +#define RTC_CNTL_RTC_XTAL32K_DEAD_INT_RAW (BIT(16)) +#define RTC_CNTL_RTC_XTAL32K_DEAD_INT_RAW_M (RTC_CNTL_RTC_XTAL32K_DEAD_INT_RAW_V << RTC_CNTL_RTC_XTAL32K_DEAD_INT_RAW_S) +#define RTC_CNTL_RTC_XTAL32K_DEAD_INT_RAW_V 0x00000001 +#define RTC_CNTL_RTC_XTAL32K_DEAD_INT_RAW_S 16 + +/* RTC_CNTL_RTC_SWD_INT_RAW : RO; bitpos: [15]; default: 0; + * super watch dog interrupt raw + */ + +#define RTC_CNTL_RTC_SWD_INT_RAW (BIT(15)) +#define RTC_CNTL_RTC_SWD_INT_RAW_M (RTC_CNTL_RTC_SWD_INT_RAW_V << RTC_CNTL_RTC_SWD_INT_RAW_S) +#define RTC_CNTL_RTC_SWD_INT_RAW_V 0x00000001 +#define RTC_CNTL_RTC_SWD_INT_RAW_S 15 + +/* RTC_CNTL_RTC_SARADC2_INT_RAW : RO; bitpos: [14]; default: 0; + * saradc2 interrupt raw + */ + +#define RTC_CNTL_RTC_SARADC2_INT_RAW (BIT(14)) +#define RTC_CNTL_RTC_SARADC2_INT_RAW_M (RTC_CNTL_RTC_SARADC2_INT_RAW_V << RTC_CNTL_RTC_SARADC2_INT_RAW_S) +#define RTC_CNTL_RTC_SARADC2_INT_RAW_V 0x00000001 +#define RTC_CNTL_RTC_SARADC2_INT_RAW_S 14 + +/* RTC_CNTL_RTC_COCPU_INT_RAW : RO; bitpos: [13]; default: 0; + * riscV cocpu interrupt raw + */ + +#define RTC_CNTL_RTC_COCPU_INT_RAW (BIT(13)) +#define RTC_CNTL_RTC_COCPU_INT_RAW_M (RTC_CNTL_RTC_COCPU_INT_RAW_V << RTC_CNTL_RTC_COCPU_INT_RAW_S) +#define RTC_CNTL_RTC_COCPU_INT_RAW_V 0x00000001 +#define RTC_CNTL_RTC_COCPU_INT_RAW_S 13 + +/* RTC_CNTL_RTC_TSENS_INT_RAW : RO; bitpos: [12]; default: 0; + * tsens interrupt raw + */ + +#define RTC_CNTL_RTC_TSENS_INT_RAW (BIT(12)) +#define RTC_CNTL_RTC_TSENS_INT_RAW_M (RTC_CNTL_RTC_TSENS_INT_RAW_V << RTC_CNTL_RTC_TSENS_INT_RAW_S) +#define RTC_CNTL_RTC_TSENS_INT_RAW_V 0x00000001 +#define RTC_CNTL_RTC_TSENS_INT_RAW_S 12 + +/* RTC_CNTL_RTC_SARADC1_INT_RAW : RO; bitpos: [11]; default: 0; + * saradc1 interrupt raw + */ + +#define RTC_CNTL_RTC_SARADC1_INT_RAW (BIT(11)) +#define RTC_CNTL_RTC_SARADC1_INT_RAW_M (RTC_CNTL_RTC_SARADC1_INT_RAW_V << RTC_CNTL_RTC_SARADC1_INT_RAW_S) +#define RTC_CNTL_RTC_SARADC1_INT_RAW_V 0x00000001 +#define RTC_CNTL_RTC_SARADC1_INT_RAW_S 11 + +/* RTC_CNTL_RTC_MAIN_TIMER_INT_RAW : RO; bitpos: [10]; default: 0; + * RTC main timer interrupt raw + */ + +#define RTC_CNTL_RTC_MAIN_TIMER_INT_RAW (BIT(10)) +#define RTC_CNTL_RTC_MAIN_TIMER_INT_RAW_M (RTC_CNTL_RTC_MAIN_TIMER_INT_RAW_V << RTC_CNTL_RTC_MAIN_TIMER_INT_RAW_S) +#define RTC_CNTL_RTC_MAIN_TIMER_INT_RAW_V 0x00000001 +#define RTC_CNTL_RTC_MAIN_TIMER_INT_RAW_S 10 + +/* RTC_CNTL_RTC_BROWN_OUT_INT_RAW : RO; bitpos: [9]; default: 0; + * brown out interrupt raw + */ + +#define RTC_CNTL_RTC_BROWN_OUT_INT_RAW (BIT(9)) +#define RTC_CNTL_RTC_BROWN_OUT_INT_RAW_M (RTC_CNTL_RTC_BROWN_OUT_INT_RAW_V << RTC_CNTL_RTC_BROWN_OUT_INT_RAW_S) +#define RTC_CNTL_RTC_BROWN_OUT_INT_RAW_V 0x00000001 +#define RTC_CNTL_RTC_BROWN_OUT_INT_RAW_S 9 + +/* RTC_CNTL_RTC_TOUCH_INACTIVE_INT_RAW : RO; bitpos: [8]; default: 0; + * touch inactive interrupt raw + */ + +#define RTC_CNTL_RTC_TOUCH_INACTIVE_INT_RAW (BIT(8)) +#define RTC_CNTL_RTC_TOUCH_INACTIVE_INT_RAW_M (RTC_CNTL_RTC_TOUCH_INACTIVE_INT_RAW_V << RTC_CNTL_RTC_TOUCH_INACTIVE_INT_RAW_S) +#define RTC_CNTL_RTC_TOUCH_INACTIVE_INT_RAW_V 0x00000001 +#define RTC_CNTL_RTC_TOUCH_INACTIVE_INT_RAW_S 8 + +/* RTC_CNTL_RTC_TOUCH_ACTIVE_INT_RAW : RO; bitpos: [7]; default: 0; + * touch active interrupt raw + */ + +#define RTC_CNTL_RTC_TOUCH_ACTIVE_INT_RAW (BIT(7)) +#define RTC_CNTL_RTC_TOUCH_ACTIVE_INT_RAW_M (RTC_CNTL_RTC_TOUCH_ACTIVE_INT_RAW_V << RTC_CNTL_RTC_TOUCH_ACTIVE_INT_RAW_S) +#define RTC_CNTL_RTC_TOUCH_ACTIVE_INT_RAW_V 0x00000001 +#define RTC_CNTL_RTC_TOUCH_ACTIVE_INT_RAW_S 7 + +/* RTC_CNTL_RTC_TOUCH_DONE_INT_RAW : RO; bitpos: [6]; default: 0; + * touch interrupt raw + */ + +#define RTC_CNTL_RTC_TOUCH_DONE_INT_RAW (BIT(6)) +#define RTC_CNTL_RTC_TOUCH_DONE_INT_RAW_M (RTC_CNTL_RTC_TOUCH_DONE_INT_RAW_V << RTC_CNTL_RTC_TOUCH_DONE_INT_RAW_S) +#define RTC_CNTL_RTC_TOUCH_DONE_INT_RAW_V 0x00000001 +#define RTC_CNTL_RTC_TOUCH_DONE_INT_RAW_S 6 + +/* RTC_CNTL_RTC_ULP_CP_INT_RAW : RO; bitpos: [5]; default: 0; + * ULP-coprocessor interrupt raw + */ + +#define RTC_CNTL_RTC_ULP_CP_INT_RAW (BIT(5)) +#define RTC_CNTL_RTC_ULP_CP_INT_RAW_M (RTC_CNTL_RTC_ULP_CP_INT_RAW_V << RTC_CNTL_RTC_ULP_CP_INT_RAW_S) +#define RTC_CNTL_RTC_ULP_CP_INT_RAW_V 0x00000001 +#define RTC_CNTL_RTC_ULP_CP_INT_RAW_S 5 + +/* RTC_CNTL_RTC_TOUCH_SCAN_DONE_INT_RAW : RO; bitpos: [4]; default: 0; + * enable touch scan done interrupt raw + */ + +#define RTC_CNTL_RTC_TOUCH_SCAN_DONE_INT_RAW (BIT(4)) +#define RTC_CNTL_RTC_TOUCH_SCAN_DONE_INT_RAW_M (RTC_CNTL_RTC_TOUCH_SCAN_DONE_INT_RAW_V << RTC_CNTL_RTC_TOUCH_SCAN_DONE_INT_RAW_S) +#define RTC_CNTL_RTC_TOUCH_SCAN_DONE_INT_RAW_V 0x00000001 +#define RTC_CNTL_RTC_TOUCH_SCAN_DONE_INT_RAW_S 4 + +/* RTC_CNTL_RTC_WDT_INT_RAW : RO; bitpos: [3]; default: 0; + * RTC WDT interrupt raw + */ + +#define RTC_CNTL_RTC_WDT_INT_RAW (BIT(3)) +#define RTC_CNTL_RTC_WDT_INT_RAW_M (RTC_CNTL_RTC_WDT_INT_RAW_V << RTC_CNTL_RTC_WDT_INT_RAW_S) +#define RTC_CNTL_RTC_WDT_INT_RAW_V 0x00000001 +#define RTC_CNTL_RTC_WDT_INT_RAW_S 3 + +/* RTC_CNTL_SDIO_IDLE_INT_RAW : RO; bitpos: [2]; default: 0; + * SDIO idle interrupt raw + */ + +#define RTC_CNTL_SDIO_IDLE_INT_RAW (BIT(2)) +#define RTC_CNTL_SDIO_IDLE_INT_RAW_M (RTC_CNTL_SDIO_IDLE_INT_RAW_V << RTC_CNTL_SDIO_IDLE_INT_RAW_S) +#define RTC_CNTL_SDIO_IDLE_INT_RAW_V 0x00000001 +#define RTC_CNTL_SDIO_IDLE_INT_RAW_S 2 + +/* RTC_CNTL_SLP_REJECT_INT_RAW : RO; bitpos: [1]; default: 0; + * sleep reject interrupt raw + */ + +#define RTC_CNTL_SLP_REJECT_INT_RAW (BIT(1)) +#define RTC_CNTL_SLP_REJECT_INT_RAW_M (RTC_CNTL_SLP_REJECT_INT_RAW_V << RTC_CNTL_SLP_REJECT_INT_RAW_S) +#define RTC_CNTL_SLP_REJECT_INT_RAW_V 0x00000001 +#define RTC_CNTL_SLP_REJECT_INT_RAW_S 1 + +/* RTC_CNTL_SLP_WAKEUP_INT_RAW : RO; bitpos: [0]; default: 0; + * sleep wakeup interrupt raw + */ + +#define RTC_CNTL_SLP_WAKEUP_INT_RAW (BIT(0)) +#define RTC_CNTL_SLP_WAKEUP_INT_RAW_M (RTC_CNTL_SLP_WAKEUP_INT_RAW_V << RTC_CNTL_SLP_WAKEUP_INT_RAW_S) +#define RTC_CNTL_SLP_WAKEUP_INT_RAW_V 0x00000001 +#define RTC_CNTL_SLP_WAKEUP_INT_RAW_S 0 + +/* RTC_CNTL_INT_ST_RTC_REG register + * rtc interrupt register + */ + +#define RTC_CNTL_INT_ST_RTC_REG (DR_REG_RTCCNTL_BASE + 0x48) + +/* RTC_CNTL_RTC_TOUCH_APPROACH_LOOP_DONE_INT_ST : RO; bitpos: [20]; default: + * 0; + * touch approach mode loop interrupt state + */ + +#define RTC_CNTL_RTC_TOUCH_APPROACH_LOOP_DONE_INT_ST (BIT(20)) +#define RTC_CNTL_RTC_TOUCH_APPROACH_LOOP_DONE_INT_ST_M (RTC_CNTL_RTC_TOUCH_APPROACH_LOOP_DONE_INT_ST_V << RTC_CNTL_RTC_TOUCH_APPROACH_LOOP_DONE_INT_ST_S) +#define RTC_CNTL_RTC_TOUCH_APPROACH_LOOP_DONE_INT_ST_V 0x00000001 +#define RTC_CNTL_RTC_TOUCH_APPROACH_LOOP_DONE_INT_ST_S 20 + +/* RTC_CNTL_RTC_GLITCH_DET_INT_ST : RO; bitpos: [19]; default: 0; + * glitch_det_interrupt state + */ + +#define RTC_CNTL_RTC_GLITCH_DET_INT_ST (BIT(19)) +#define RTC_CNTL_RTC_GLITCH_DET_INT_ST_M (RTC_CNTL_RTC_GLITCH_DET_INT_ST_V << RTC_CNTL_RTC_GLITCH_DET_INT_ST_S) +#define RTC_CNTL_RTC_GLITCH_DET_INT_ST_V 0x00000001 +#define RTC_CNTL_RTC_GLITCH_DET_INT_ST_S 19 + +/* RTC_CNTL_RTC_TOUCH_TIMEOUT_INT_ST : RO; bitpos: [18]; default: 0; + * Touch timeout interrupt state + */ + +#define RTC_CNTL_RTC_TOUCH_TIMEOUT_INT_ST (BIT(18)) +#define RTC_CNTL_RTC_TOUCH_TIMEOUT_INT_ST_M (RTC_CNTL_RTC_TOUCH_TIMEOUT_INT_ST_V << RTC_CNTL_RTC_TOUCH_TIMEOUT_INT_ST_S) +#define RTC_CNTL_RTC_TOUCH_TIMEOUT_INT_ST_V 0x00000001 +#define RTC_CNTL_RTC_TOUCH_TIMEOUT_INT_ST_S 18 + +/* RTC_CNTL_RTC_COCPU_TRAP_INT_ST : RO; bitpos: [17]; default: 0; + * cocpu trap interrupt state + */ + +#define RTC_CNTL_RTC_COCPU_TRAP_INT_ST (BIT(17)) +#define RTC_CNTL_RTC_COCPU_TRAP_INT_ST_M (RTC_CNTL_RTC_COCPU_TRAP_INT_ST_V << RTC_CNTL_RTC_COCPU_TRAP_INT_ST_S) +#define RTC_CNTL_RTC_COCPU_TRAP_INT_ST_V 0x00000001 +#define RTC_CNTL_RTC_COCPU_TRAP_INT_ST_S 17 + +/* RTC_CNTL_RTC_XTAL32K_DEAD_INT_ST : RO; bitpos: [16]; default: 0; + * xtal32k dead detection interrupt state + */ + +#define RTC_CNTL_RTC_XTAL32K_DEAD_INT_ST (BIT(16)) +#define RTC_CNTL_RTC_XTAL32K_DEAD_INT_ST_M (RTC_CNTL_RTC_XTAL32K_DEAD_INT_ST_V << RTC_CNTL_RTC_XTAL32K_DEAD_INT_ST_S) +#define RTC_CNTL_RTC_XTAL32K_DEAD_INT_ST_V 0x00000001 +#define RTC_CNTL_RTC_XTAL32K_DEAD_INT_ST_S 16 + +/* RTC_CNTL_RTC_SWD_INT_ST : RO; bitpos: [15]; default: 0; + * super watch dog interrupt state + */ + +#define RTC_CNTL_RTC_SWD_INT_ST (BIT(15)) +#define RTC_CNTL_RTC_SWD_INT_ST_M (RTC_CNTL_RTC_SWD_INT_ST_V << RTC_CNTL_RTC_SWD_INT_ST_S) +#define RTC_CNTL_RTC_SWD_INT_ST_V 0x00000001 +#define RTC_CNTL_RTC_SWD_INT_ST_S 15 + +/* RTC_CNTL_RTC_SARADC2_INT_ST : RO; bitpos: [14]; default: 0; + * saradc2 interrupt state + */ + +#define RTC_CNTL_RTC_SARADC2_INT_ST (BIT(14)) +#define RTC_CNTL_RTC_SARADC2_INT_ST_M (RTC_CNTL_RTC_SARADC2_INT_ST_V << RTC_CNTL_RTC_SARADC2_INT_ST_S) +#define RTC_CNTL_RTC_SARADC2_INT_ST_V 0x00000001 +#define RTC_CNTL_RTC_SARADC2_INT_ST_S 14 + +/* RTC_CNTL_RTC_COCPU_INT_ST : RO; bitpos: [13]; default: 0; + * riscV cocpu interrupt state + */ + +#define RTC_CNTL_RTC_COCPU_INT_ST (BIT(13)) +#define RTC_CNTL_RTC_COCPU_INT_ST_M (RTC_CNTL_RTC_COCPU_INT_ST_V << RTC_CNTL_RTC_COCPU_INT_ST_S) +#define RTC_CNTL_RTC_COCPU_INT_ST_V 0x00000001 +#define RTC_CNTL_RTC_COCPU_INT_ST_S 13 + +/* RTC_CNTL_RTC_TSENS_INT_ST : RO; bitpos: [12]; default: 0; + * tsens interrupt state + */ + +#define RTC_CNTL_RTC_TSENS_INT_ST (BIT(12)) +#define RTC_CNTL_RTC_TSENS_INT_ST_M (RTC_CNTL_RTC_TSENS_INT_ST_V << RTC_CNTL_RTC_TSENS_INT_ST_S) +#define RTC_CNTL_RTC_TSENS_INT_ST_V 0x00000001 +#define RTC_CNTL_RTC_TSENS_INT_ST_S 12 + +/* RTC_CNTL_RTC_SARADC1_INT_ST : RO; bitpos: [11]; default: 0; + * saradc1 interrupt state + */ + +#define RTC_CNTL_RTC_SARADC1_INT_ST (BIT(11)) +#define RTC_CNTL_RTC_SARADC1_INT_ST_M (RTC_CNTL_RTC_SARADC1_INT_ST_V << RTC_CNTL_RTC_SARADC1_INT_ST_S) +#define RTC_CNTL_RTC_SARADC1_INT_ST_V 0x00000001 +#define RTC_CNTL_RTC_SARADC1_INT_ST_S 11 + +/* RTC_CNTL_RTC_MAIN_TIMER_INT_ST : RO; bitpos: [10]; default: 0; + * RTC main timer interrupt state + */ + +#define RTC_CNTL_RTC_MAIN_TIMER_INT_ST (BIT(10)) +#define RTC_CNTL_RTC_MAIN_TIMER_INT_ST_M (RTC_CNTL_RTC_MAIN_TIMER_INT_ST_V << RTC_CNTL_RTC_MAIN_TIMER_INT_ST_S) +#define RTC_CNTL_RTC_MAIN_TIMER_INT_ST_V 0x00000001 +#define RTC_CNTL_RTC_MAIN_TIMER_INT_ST_S 10 + +/* RTC_CNTL_RTC_BROWN_OUT_INT_ST : RO; bitpos: [9]; default: 0; + * brown out interrupt state + */ + +#define RTC_CNTL_RTC_BROWN_OUT_INT_ST (BIT(9)) +#define RTC_CNTL_RTC_BROWN_OUT_INT_ST_M (RTC_CNTL_RTC_BROWN_OUT_INT_ST_V << RTC_CNTL_RTC_BROWN_OUT_INT_ST_S) +#define RTC_CNTL_RTC_BROWN_OUT_INT_ST_V 0x00000001 +#define RTC_CNTL_RTC_BROWN_OUT_INT_ST_S 9 + +/* RTC_CNTL_RTC_TOUCH_INACTIVE_INT_ST : RO; bitpos: [8]; default: 0; + * touch inactive interrupt state + */ + +#define RTC_CNTL_RTC_TOUCH_INACTIVE_INT_ST (BIT(8)) +#define RTC_CNTL_RTC_TOUCH_INACTIVE_INT_ST_M (RTC_CNTL_RTC_TOUCH_INACTIVE_INT_ST_V << RTC_CNTL_RTC_TOUCH_INACTIVE_INT_ST_S) +#define RTC_CNTL_RTC_TOUCH_INACTIVE_INT_ST_V 0x00000001 +#define RTC_CNTL_RTC_TOUCH_INACTIVE_INT_ST_S 8 + +/* RTC_CNTL_RTC_TOUCH_ACTIVE_INT_ST : RO; bitpos: [7]; default: 0; + * touch active interrupt state + */ + +#define RTC_CNTL_RTC_TOUCH_ACTIVE_INT_ST (BIT(7)) +#define RTC_CNTL_RTC_TOUCH_ACTIVE_INT_ST_M (RTC_CNTL_RTC_TOUCH_ACTIVE_INT_ST_V << RTC_CNTL_RTC_TOUCH_ACTIVE_INT_ST_S) +#define RTC_CNTL_RTC_TOUCH_ACTIVE_INT_ST_V 0x00000001 +#define RTC_CNTL_RTC_TOUCH_ACTIVE_INT_ST_S 7 + +/* RTC_CNTL_RTC_TOUCH_DONE_INT_ST : RO; bitpos: [6]; default: 0; + * touch done interrupt state + */ + +#define RTC_CNTL_RTC_TOUCH_DONE_INT_ST (BIT(6)) +#define RTC_CNTL_RTC_TOUCH_DONE_INT_ST_M (RTC_CNTL_RTC_TOUCH_DONE_INT_ST_V << RTC_CNTL_RTC_TOUCH_DONE_INT_ST_S) +#define RTC_CNTL_RTC_TOUCH_DONE_INT_ST_V 0x00000001 +#define RTC_CNTL_RTC_TOUCH_DONE_INT_ST_S 6 + +/* RTC_CNTL_RTC_ULP_CP_INT_ST : RO; bitpos: [5]; default: 0; + * ULP-coprocessor interrupt state + */ + +#define RTC_CNTL_RTC_ULP_CP_INT_ST (BIT(5)) +#define RTC_CNTL_RTC_ULP_CP_INT_ST_M (RTC_CNTL_RTC_ULP_CP_INT_ST_V << RTC_CNTL_RTC_ULP_CP_INT_ST_S) +#define RTC_CNTL_RTC_ULP_CP_INT_ST_V 0x00000001 +#define RTC_CNTL_RTC_ULP_CP_INT_ST_S 5 + +/* RTC_CNTL_RTC_TOUCH_SCAN_DONE_INT_ST : RO; bitpos: [4]; default: 0; + * enable touch scan done interrupt raw + */ + +#define RTC_CNTL_RTC_TOUCH_SCAN_DONE_INT_ST (BIT(4)) +#define RTC_CNTL_RTC_TOUCH_SCAN_DONE_INT_ST_M (RTC_CNTL_RTC_TOUCH_SCAN_DONE_INT_ST_V << RTC_CNTL_RTC_TOUCH_SCAN_DONE_INT_ST_S) +#define RTC_CNTL_RTC_TOUCH_SCAN_DONE_INT_ST_V 0x00000001 +#define RTC_CNTL_RTC_TOUCH_SCAN_DONE_INT_ST_S 4 + +/* RTC_CNTL_RTC_WDT_INT_ST : RO; bitpos: [3]; default: 0; + * RTC WDT interrupt state + */ + +#define RTC_CNTL_RTC_WDT_INT_ST (BIT(3)) +#define RTC_CNTL_RTC_WDT_INT_ST_M (RTC_CNTL_RTC_WDT_INT_ST_V << RTC_CNTL_RTC_WDT_INT_ST_S) +#define RTC_CNTL_RTC_WDT_INT_ST_V 0x00000001 +#define RTC_CNTL_RTC_WDT_INT_ST_S 3 + +/* RTC_CNTL_SDIO_IDLE_INT_ST : RO; bitpos: [2]; default: 0; + * SDIO idle interrupt state + */ + +#define RTC_CNTL_SDIO_IDLE_INT_ST (BIT(2)) +#define RTC_CNTL_SDIO_IDLE_INT_ST_M (RTC_CNTL_SDIO_IDLE_INT_ST_V << RTC_CNTL_SDIO_IDLE_INT_ST_S) +#define RTC_CNTL_SDIO_IDLE_INT_ST_V 0x00000001 +#define RTC_CNTL_SDIO_IDLE_INT_ST_S 2 + +/* RTC_CNTL_SLP_REJECT_INT_ST : RO; bitpos: [1]; default: 0; + * sleep reject interrupt state + */ + +#define RTC_CNTL_SLP_REJECT_INT_ST (BIT(1)) +#define RTC_CNTL_SLP_REJECT_INT_ST_M (RTC_CNTL_SLP_REJECT_INT_ST_V << RTC_CNTL_SLP_REJECT_INT_ST_S) +#define RTC_CNTL_SLP_REJECT_INT_ST_V 0x00000001 +#define RTC_CNTL_SLP_REJECT_INT_ST_S 1 + +/* RTC_CNTL_SLP_WAKEUP_INT_ST : RO; bitpos: [0]; default: 0; + * sleep wakeup interrupt state + */ + +#define RTC_CNTL_SLP_WAKEUP_INT_ST (BIT(0)) +#define RTC_CNTL_SLP_WAKEUP_INT_ST_M (RTC_CNTL_SLP_WAKEUP_INT_ST_V << RTC_CNTL_SLP_WAKEUP_INT_ST_S) +#define RTC_CNTL_SLP_WAKEUP_INT_ST_V 0x00000001 +#define RTC_CNTL_SLP_WAKEUP_INT_ST_S 0 + +/* RTC_CNTL_INT_CLR_RTC_REG register + * rtc interrupt register + */ + +#define RTC_CNTL_INT_CLR_RTC_REG (DR_REG_RTCCNTL_BASE + 0x4c) + +/* RTC_CNTL_RTC_TOUCH_APPROACH_LOOP_DONE_INT_CLR : WO; bitpos: [20]; + * default: 0; + * cleartouch approach mode loop interrupt state + */ + +#define RTC_CNTL_RTC_TOUCH_APPROACH_LOOP_DONE_INT_CLR (BIT(20)) +#define RTC_CNTL_RTC_TOUCH_APPROACH_LOOP_DONE_INT_CLR_M (RTC_CNTL_RTC_TOUCH_APPROACH_LOOP_DONE_INT_CLR_V << RTC_CNTL_RTC_TOUCH_APPROACH_LOOP_DONE_INT_CLR_S) +#define RTC_CNTL_RTC_TOUCH_APPROACH_LOOP_DONE_INT_CLR_V 0x00000001 +#define RTC_CNTL_RTC_TOUCH_APPROACH_LOOP_DONE_INT_CLR_S 20 + +/* RTC_CNTL_RTC_GLITCH_DET_INT_CLR : WO; bitpos: [19]; default: 0; + * Clear glitch det interrupt state + */ + +#define RTC_CNTL_RTC_GLITCH_DET_INT_CLR (BIT(19)) +#define RTC_CNTL_RTC_GLITCH_DET_INT_CLR_M (RTC_CNTL_RTC_GLITCH_DET_INT_CLR_V << RTC_CNTL_RTC_GLITCH_DET_INT_CLR_S) +#define RTC_CNTL_RTC_GLITCH_DET_INT_CLR_V 0x00000001 +#define RTC_CNTL_RTC_GLITCH_DET_INT_CLR_S 19 + +/* RTC_CNTL_RTC_TOUCH_TIMEOUT_INT_CLR : WO; bitpos: [18]; default: 0; + * Clear touch timeout interrupt state + */ + +#define RTC_CNTL_RTC_TOUCH_TIMEOUT_INT_CLR (BIT(18)) +#define RTC_CNTL_RTC_TOUCH_TIMEOUT_INT_CLR_M (RTC_CNTL_RTC_TOUCH_TIMEOUT_INT_CLR_V << RTC_CNTL_RTC_TOUCH_TIMEOUT_INT_CLR_S) +#define RTC_CNTL_RTC_TOUCH_TIMEOUT_INT_CLR_V 0x00000001 +#define RTC_CNTL_RTC_TOUCH_TIMEOUT_INT_CLR_S 18 + +/* RTC_CNTL_RTC_COCPU_TRAP_INT_CLR : WO; bitpos: [17]; default: 0; + * Clear cocpu trap interrupt state + */ + +#define RTC_CNTL_RTC_COCPU_TRAP_INT_CLR (BIT(17)) +#define RTC_CNTL_RTC_COCPU_TRAP_INT_CLR_M (RTC_CNTL_RTC_COCPU_TRAP_INT_CLR_V << RTC_CNTL_RTC_COCPU_TRAP_INT_CLR_S) +#define RTC_CNTL_RTC_COCPU_TRAP_INT_CLR_V 0x00000001 +#define RTC_CNTL_RTC_COCPU_TRAP_INT_CLR_S 17 + +/* RTC_CNTL_RTC_XTAL32K_DEAD_INT_CLR : WO; bitpos: [16]; default: 0; + * Clear RTC WDT interrupt state + */ + +#define RTC_CNTL_RTC_XTAL32K_DEAD_INT_CLR (BIT(16)) +#define RTC_CNTL_RTC_XTAL32K_DEAD_INT_CLR_M (RTC_CNTL_RTC_XTAL32K_DEAD_INT_CLR_V << RTC_CNTL_RTC_XTAL32K_DEAD_INT_CLR_S) +#define RTC_CNTL_RTC_XTAL32K_DEAD_INT_CLR_V 0x00000001 +#define RTC_CNTL_RTC_XTAL32K_DEAD_INT_CLR_S 16 + +/* RTC_CNTL_RTC_SWD_INT_CLR : WO; bitpos: [15]; default: 0; + * Clear super watch dog interrupt state + */ + +#define RTC_CNTL_RTC_SWD_INT_CLR (BIT(15)) +#define RTC_CNTL_RTC_SWD_INT_CLR_M (RTC_CNTL_RTC_SWD_INT_CLR_V << RTC_CNTL_RTC_SWD_INT_CLR_S) +#define RTC_CNTL_RTC_SWD_INT_CLR_V 0x00000001 +#define RTC_CNTL_RTC_SWD_INT_CLR_S 15 + +/* RTC_CNTL_RTC_SARADC2_INT_CLR : WO; bitpos: [14]; default: 0; + * Clear saradc2 interrupt state + */ + +#define RTC_CNTL_RTC_SARADC2_INT_CLR (BIT(14)) +#define RTC_CNTL_RTC_SARADC2_INT_CLR_M (RTC_CNTL_RTC_SARADC2_INT_CLR_V << RTC_CNTL_RTC_SARADC2_INT_CLR_S) +#define RTC_CNTL_RTC_SARADC2_INT_CLR_V 0x00000001 +#define RTC_CNTL_RTC_SARADC2_INT_CLR_S 14 + +/* RTC_CNTL_RTC_COCPU_INT_CLR : WO; bitpos: [13]; default: 0; + * Clear riscV cocpu interrupt state + */ + +#define RTC_CNTL_RTC_COCPU_INT_CLR (BIT(13)) +#define RTC_CNTL_RTC_COCPU_INT_CLR_M (RTC_CNTL_RTC_COCPU_INT_CLR_V << RTC_CNTL_RTC_COCPU_INT_CLR_S) +#define RTC_CNTL_RTC_COCPU_INT_CLR_V 0x00000001 +#define RTC_CNTL_RTC_COCPU_INT_CLR_S 13 + +/* RTC_CNTL_RTC_TSENS_INT_CLR : WO; bitpos: [12]; default: 0; + * Clear tsens interrupt state + */ + +#define RTC_CNTL_RTC_TSENS_INT_CLR (BIT(12)) +#define RTC_CNTL_RTC_TSENS_INT_CLR_M (RTC_CNTL_RTC_TSENS_INT_CLR_V << RTC_CNTL_RTC_TSENS_INT_CLR_S) +#define RTC_CNTL_RTC_TSENS_INT_CLR_V 0x00000001 +#define RTC_CNTL_RTC_TSENS_INT_CLR_S 12 + +/* RTC_CNTL_RTC_SARADC1_INT_CLR : WO; bitpos: [11]; default: 0; + * Clear saradc1 interrupt state + */ + +#define RTC_CNTL_RTC_SARADC1_INT_CLR (BIT(11)) +#define RTC_CNTL_RTC_SARADC1_INT_CLR_M (RTC_CNTL_RTC_SARADC1_INT_CLR_V << RTC_CNTL_RTC_SARADC1_INT_CLR_S) +#define RTC_CNTL_RTC_SARADC1_INT_CLR_V 0x00000001 +#define RTC_CNTL_RTC_SARADC1_INT_CLR_S 11 + +/* RTC_CNTL_RTC_MAIN_TIMER_INT_CLR : WO; bitpos: [10]; default: 0; + * Clear RTC main timer interrupt state + */ + +#define RTC_CNTL_RTC_MAIN_TIMER_INT_CLR (BIT(10)) +#define RTC_CNTL_RTC_MAIN_TIMER_INT_CLR_M (RTC_CNTL_RTC_MAIN_TIMER_INT_CLR_V << RTC_CNTL_RTC_MAIN_TIMER_INT_CLR_S) +#define RTC_CNTL_RTC_MAIN_TIMER_INT_CLR_V 0x00000001 +#define RTC_CNTL_RTC_MAIN_TIMER_INT_CLR_S 10 + +/* RTC_CNTL_RTC_BROWN_OUT_INT_CLR : WO; bitpos: [9]; default: 0; + * Clear brown out interrupt state + */ + +#define RTC_CNTL_RTC_BROWN_OUT_INT_CLR (BIT(9)) +#define RTC_CNTL_RTC_BROWN_OUT_INT_CLR_M (RTC_CNTL_RTC_BROWN_OUT_INT_CLR_V << RTC_CNTL_RTC_BROWN_OUT_INT_CLR_S) +#define RTC_CNTL_RTC_BROWN_OUT_INT_CLR_V 0x00000001 +#define RTC_CNTL_RTC_BROWN_OUT_INT_CLR_S 9 + +/* RTC_CNTL_RTC_TOUCH_INACTIVE_INT_CLR : WO; bitpos: [8]; default: 0; + * Clear touch inactive interrupt state + */ + +#define RTC_CNTL_RTC_TOUCH_INACTIVE_INT_CLR (BIT(8)) +#define RTC_CNTL_RTC_TOUCH_INACTIVE_INT_CLR_M (RTC_CNTL_RTC_TOUCH_INACTIVE_INT_CLR_V << RTC_CNTL_RTC_TOUCH_INACTIVE_INT_CLR_S) +#define RTC_CNTL_RTC_TOUCH_INACTIVE_INT_CLR_V 0x00000001 +#define RTC_CNTL_RTC_TOUCH_INACTIVE_INT_CLR_S 8 + +/* RTC_CNTL_RTC_TOUCH_ACTIVE_INT_CLR : WO; bitpos: [7]; default: 0; + * Clear touch active interrupt state + */ + +#define RTC_CNTL_RTC_TOUCH_ACTIVE_INT_CLR (BIT(7)) +#define RTC_CNTL_RTC_TOUCH_ACTIVE_INT_CLR_M (RTC_CNTL_RTC_TOUCH_ACTIVE_INT_CLR_V << RTC_CNTL_RTC_TOUCH_ACTIVE_INT_CLR_S) +#define RTC_CNTL_RTC_TOUCH_ACTIVE_INT_CLR_V 0x00000001 +#define RTC_CNTL_RTC_TOUCH_ACTIVE_INT_CLR_S 7 + +/* RTC_CNTL_RTC_TOUCH_DONE_INT_CLR : WO; bitpos: [6]; default: 0; + * Clear touch done interrupt state + */ + +#define RTC_CNTL_RTC_TOUCH_DONE_INT_CLR (BIT(6)) +#define RTC_CNTL_RTC_TOUCH_DONE_INT_CLR_M (RTC_CNTL_RTC_TOUCH_DONE_INT_CLR_V << RTC_CNTL_RTC_TOUCH_DONE_INT_CLR_S) +#define RTC_CNTL_RTC_TOUCH_DONE_INT_CLR_V 0x00000001 +#define RTC_CNTL_RTC_TOUCH_DONE_INT_CLR_S 6 + +/* RTC_CNTL_RTC_ULP_CP_INT_CLR : WO; bitpos: [5]; default: 0; + * Clear ULP-coprocessor interrupt state + */ + +#define RTC_CNTL_RTC_ULP_CP_INT_CLR (BIT(5)) +#define RTC_CNTL_RTC_ULP_CP_INT_CLR_M (RTC_CNTL_RTC_ULP_CP_INT_CLR_V << RTC_CNTL_RTC_ULP_CP_INT_CLR_S) +#define RTC_CNTL_RTC_ULP_CP_INT_CLR_V 0x00000001 +#define RTC_CNTL_RTC_ULP_CP_INT_CLR_S 5 + +/* RTC_CNTL_RTC_TOUCH_SCAN_DONE_INT_CLR : WO; bitpos: [4]; default: 0; + * clear touch scan done interrupt raw + */ + +#define RTC_CNTL_RTC_TOUCH_SCAN_DONE_INT_CLR (BIT(4)) +#define RTC_CNTL_RTC_TOUCH_SCAN_DONE_INT_CLR_M (RTC_CNTL_RTC_TOUCH_SCAN_DONE_INT_CLR_V << RTC_CNTL_RTC_TOUCH_SCAN_DONE_INT_CLR_S) +#define RTC_CNTL_RTC_TOUCH_SCAN_DONE_INT_CLR_V 0x00000001 +#define RTC_CNTL_RTC_TOUCH_SCAN_DONE_INT_CLR_S 4 + +/* RTC_CNTL_RTC_WDT_INT_CLR : WO; bitpos: [3]; default: 0; + * Clear RTC WDT interrupt state + */ + +#define RTC_CNTL_RTC_WDT_INT_CLR (BIT(3)) +#define RTC_CNTL_RTC_WDT_INT_CLR_M (RTC_CNTL_RTC_WDT_INT_CLR_V << RTC_CNTL_RTC_WDT_INT_CLR_S) +#define RTC_CNTL_RTC_WDT_INT_CLR_V 0x00000001 +#define RTC_CNTL_RTC_WDT_INT_CLR_S 3 + +/* RTC_CNTL_SDIO_IDLE_INT_CLR : WO; bitpos: [2]; default: 0; + * Clear SDIO idle interrupt state + */ + +#define RTC_CNTL_SDIO_IDLE_INT_CLR (BIT(2)) +#define RTC_CNTL_SDIO_IDLE_INT_CLR_M (RTC_CNTL_SDIO_IDLE_INT_CLR_V << RTC_CNTL_SDIO_IDLE_INT_CLR_S) +#define RTC_CNTL_SDIO_IDLE_INT_CLR_V 0x00000001 +#define RTC_CNTL_SDIO_IDLE_INT_CLR_S 2 + +/* RTC_CNTL_SLP_REJECT_INT_CLR : WO; bitpos: [1]; default: 0; + * Clear sleep reject interrupt state + */ + +#define RTC_CNTL_SLP_REJECT_INT_CLR (BIT(1)) +#define RTC_CNTL_SLP_REJECT_INT_CLR_M (RTC_CNTL_SLP_REJECT_INT_CLR_V << RTC_CNTL_SLP_REJECT_INT_CLR_S) +#define RTC_CNTL_SLP_REJECT_INT_CLR_V 0x00000001 +#define RTC_CNTL_SLP_REJECT_INT_CLR_S 1 + +/* RTC_CNTL_SLP_WAKEUP_INT_CLR : WO; bitpos: [0]; default: 0; + * Clear sleep wakeup interrupt state + */ + +#define RTC_CNTL_SLP_WAKEUP_INT_CLR (BIT(0)) +#define RTC_CNTL_SLP_WAKEUP_INT_CLR_M (RTC_CNTL_SLP_WAKEUP_INT_CLR_V << RTC_CNTL_SLP_WAKEUP_INT_CLR_S) +#define RTC_CNTL_SLP_WAKEUP_INT_CLR_V 0x00000001 +#define RTC_CNTL_SLP_WAKEUP_INT_CLR_S 0 + +/* RTC_CNTL_RTC_STORE0_REG register + * Reserved register + */ + +#define RTC_CNTL_RTC_STORE0_REG (DR_REG_RTCCNTL_BASE + 0x50) + +/* RTC_CNTL_RTC_SCRATCH0 : R/W; bitpos: [31:0]; default: 0; + * Reserved register + */ + +#define RTC_CNTL_RTC_SCRATCH0 0xffffffff +#define RTC_CNTL_RTC_SCRATCH0_M (RTC_CNTL_RTC_SCRATCH0_V << RTC_CNTL_RTC_SCRATCH0_S) +#define RTC_CNTL_RTC_SCRATCH0_V 0xffffffff +#define RTC_CNTL_RTC_SCRATCH0_S 0 + +/* RTC_CNTL_RTC_STORE1_REG register + * Reserved register + */ + +#define RTC_CNTL_RTC_STORE1_REG (DR_REG_RTCCNTL_BASE + 0x54) + +/* RTC_CNTL_RTC_SCRATCH1 : R/W; bitpos: [31:0]; default: 0; + * Reserved register + */ + +#define RTC_CNTL_RTC_SCRATCH1 0xffffffff +#define RTC_CNTL_RTC_SCRATCH1_M (RTC_CNTL_RTC_SCRATCH1_V << RTC_CNTL_RTC_SCRATCH1_S) +#define RTC_CNTL_RTC_SCRATCH1_V 0xffffffff +#define RTC_CNTL_RTC_SCRATCH1_S 0 + +/* RTC_CNTL_RTC_STORE2_REG register + * Reserved register + */ + +#define RTC_CNTL_RTC_STORE2_REG (DR_REG_RTCCNTL_BASE + 0x58) + +/* RTC_CNTL_RTC_SCRATCH2 : R/W; bitpos: [31:0]; default: 0; + * Reserved register + */ + +#define RTC_CNTL_RTC_SCRATCH2 0xffffffff +#define RTC_CNTL_RTC_SCRATCH2_M (RTC_CNTL_RTC_SCRATCH2_V << RTC_CNTL_RTC_SCRATCH2_S) +#define RTC_CNTL_RTC_SCRATCH2_V 0xffffffff +#define RTC_CNTL_RTC_SCRATCH2_S 0 + +/* RTC_CNTL_RTC_STORE3_REG register + * Reserved register + */ + +#define RTC_CNTL_RTC_STORE3_REG (DR_REG_RTCCNTL_BASE + 0x5c) + +/* RTC_CNTL_RTC_SCRATCH3 : R/W; bitpos: [31:0]; default: 0; + * Reserved register + */ + +#define RTC_CNTL_RTC_SCRATCH3 0xffffffff +#define RTC_CNTL_RTC_SCRATCH3_M (RTC_CNTL_RTC_SCRATCH3_V << RTC_CNTL_RTC_SCRATCH3_S) +#define RTC_CNTL_RTC_SCRATCH3_V 0xffffffff +#define RTC_CNTL_RTC_SCRATCH3_S 0 + +/* RTC_CNTL_RTC_EXT_XTL_CONF_REG register + * Reserved register + */ + +#define RTC_CNTL_RTC_EXT_XTL_CONF_REG (DR_REG_RTCCNTL_BASE + 0x60) + +/* RTC_CNTL_XTL_EXT_CTR_EN : R/W; bitpos: [31]; default: 0; + * Reserved register + */ + +#define RTC_CNTL_XTL_EXT_CTR_EN (BIT(31)) +#define RTC_CNTL_XTL_EXT_CTR_EN_M (RTC_CNTL_XTL_EXT_CTR_EN_V << RTC_CNTL_XTL_EXT_CTR_EN_S) +#define RTC_CNTL_XTL_EXT_CTR_EN_V 0x00000001 +#define RTC_CNTL_XTL_EXT_CTR_EN_S 31 + +/* RTC_CNTL_XTL_EXT_CTR_LV : R/W; bitpos: [30]; default: 0; + * 0: power down XTAL at high level, 1: power down XTAL at low level + */ + +#define RTC_CNTL_XTL_EXT_CTR_LV (BIT(30)) +#define RTC_CNTL_XTL_EXT_CTR_LV_M (RTC_CNTL_XTL_EXT_CTR_LV_V << RTC_CNTL_XTL_EXT_CTR_LV_S) +#define RTC_CNTL_XTL_EXT_CTR_LV_V 0x00000001 +#define RTC_CNTL_XTL_EXT_CTR_LV_S 30 + +/* RTC_CNTL_RTC_XTAL32K_GPIO_SEL : R/W; bitpos: [23]; default: 0; + * XTAL_32K sel. 0: external XTAL_32K, 1: CLK from RTC pad X32P_C + */ + +#define RTC_CNTL_RTC_XTAL32K_GPIO_SEL (BIT(23)) +#define RTC_CNTL_RTC_XTAL32K_GPIO_SEL_M (RTC_CNTL_RTC_XTAL32K_GPIO_SEL_V << RTC_CNTL_RTC_XTAL32K_GPIO_SEL_S) +#define RTC_CNTL_RTC_XTAL32K_GPIO_SEL_V 0x00000001 +#define RTC_CNTL_RTC_XTAL32K_GPIO_SEL_S 23 + +/* RTC_CNTL_RTC_WDT_STATE : RO; bitpos: [22:20]; default: 0; + * state of 32k_wdt + */ + +#define RTC_CNTL_RTC_WDT_STATE 0x00000007 +#define RTC_CNTL_RTC_WDT_STATE_M (RTC_CNTL_RTC_WDT_STATE_V << RTC_CNTL_RTC_WDT_STATE_S) +#define RTC_CNTL_RTC_WDT_STATE_V 0x00000007 +#define RTC_CNTL_RTC_WDT_STATE_S 20 + +/* RTC_CNTL_DAC_XTAL_32K : R/W; bitpos: [19:17]; default: 3; + * DAC_XTAL_32K + */ + +#define RTC_CNTL_DAC_XTAL_32K 0x00000007 +#define RTC_CNTL_DAC_XTAL_32K_M (RTC_CNTL_DAC_XTAL_32K_V << RTC_CNTL_DAC_XTAL_32K_S) +#define RTC_CNTL_DAC_XTAL_32K_V 0x00000007 +#define RTC_CNTL_DAC_XTAL_32K_S 17 + +/* RTC_CNTL_XPD_XTAL_32K : R/W; bitpos: [16]; default: 0; + * XPD_XTAL_32K + */ + +#define RTC_CNTL_XPD_XTAL_32K (BIT(16)) +#define RTC_CNTL_XPD_XTAL_32K_M (RTC_CNTL_XPD_XTAL_32K_V << RTC_CNTL_XPD_XTAL_32K_S) +#define RTC_CNTL_XPD_XTAL_32K_V 0x00000001 +#define RTC_CNTL_XPD_XTAL_32K_S 16 + +/* RTC_CNTL_DRES_XTAL_32K : R/W; bitpos: [15:13]; default: 3; + * DRES_XTAL_32K + */ + +#define RTC_CNTL_DRES_XTAL_32K 0x00000007 +#define RTC_CNTL_DRES_XTAL_32K_M (RTC_CNTL_DRES_XTAL_32K_V << RTC_CNTL_DRES_XTAL_32K_S) +#define RTC_CNTL_DRES_XTAL_32K_V 0x00000007 +#define RTC_CNTL_DRES_XTAL_32K_S 13 + +/* RTC_CNTL_DGM_XTAL_32K : R/W; bitpos: [12:10]; default: 3; + * xtal_32k gm control + */ + +#define RTC_CNTL_DGM_XTAL_32K 0x00000007 +#define RTC_CNTL_DGM_XTAL_32K_M (RTC_CNTL_DGM_XTAL_32K_V << RTC_CNTL_DGM_XTAL_32K_S) +#define RTC_CNTL_DGM_XTAL_32K_V 0x00000007 +#define RTC_CNTL_DGM_XTAL_32K_S 10 + +/* RTC_CNTL_DBUF_XTAL_32K : R/W; bitpos: [9]; default: 0; + * 0: single-end buffer 1: differential buffer + */ + +#define RTC_CNTL_DBUF_XTAL_32K (BIT(9)) +#define RTC_CNTL_DBUF_XTAL_32K_M (RTC_CNTL_DBUF_XTAL_32K_V << RTC_CNTL_DBUF_XTAL_32K_S) +#define RTC_CNTL_DBUF_XTAL_32K_V 0x00000001 +#define RTC_CNTL_DBUF_XTAL_32K_S 9 + +/* RTC_CNTL_ENCKINIT_XTAL_32K : R/W; bitpos: [8]; default: 0; + * apply an internal clock to help xtal 32k to start + */ + +#define RTC_CNTL_ENCKINIT_XTAL_32K (BIT(8)) +#define RTC_CNTL_ENCKINIT_XTAL_32K_M (RTC_CNTL_ENCKINIT_XTAL_32K_V << RTC_CNTL_ENCKINIT_XTAL_32K_S) +#define RTC_CNTL_ENCKINIT_XTAL_32K_V 0x00000001 +#define RTC_CNTL_ENCKINIT_XTAL_32K_S 8 + +/* RTC_CNTL_XTAL32K_XPD_FORCE : R/W; bitpos: [7]; default: 1; + * Xtal 32k xpd control by sw or fsm + */ + +#define RTC_CNTL_XTAL32K_XPD_FORCE (BIT(7)) +#define RTC_CNTL_XTAL32K_XPD_FORCE_M (RTC_CNTL_XTAL32K_XPD_FORCE_V << RTC_CNTL_XTAL32K_XPD_FORCE_S) +#define RTC_CNTL_XTAL32K_XPD_FORCE_V 0x00000001 +#define RTC_CNTL_XTAL32K_XPD_FORCE_S 7 + +/* RTC_CNTL_XTAL32K_AUTO_RETURN : R/W; bitpos: [6]; default: 0; + * xtal 32k switch back xtal when xtal is restarted + */ + +#define RTC_CNTL_XTAL32K_AUTO_RETURN (BIT(6)) +#define RTC_CNTL_XTAL32K_AUTO_RETURN_M (RTC_CNTL_XTAL32K_AUTO_RETURN_V << RTC_CNTL_XTAL32K_AUTO_RETURN_S) +#define RTC_CNTL_XTAL32K_AUTO_RETURN_V 0x00000001 +#define RTC_CNTL_XTAL32K_AUTO_RETURN_S 6 + +/* RTC_CNTL_XTAL32K_AUTO_RESTART : R/W; bitpos: [5]; default: 0; + * xtal 32k restart xtal when xtal is dead + */ + +#define RTC_CNTL_XTAL32K_AUTO_RESTART (BIT(5)) +#define RTC_CNTL_XTAL32K_AUTO_RESTART_M (RTC_CNTL_XTAL32K_AUTO_RESTART_V << RTC_CNTL_XTAL32K_AUTO_RESTART_S) +#define RTC_CNTL_XTAL32K_AUTO_RESTART_V 0x00000001 +#define RTC_CNTL_XTAL32K_AUTO_RESTART_S 5 + +/* RTC_CNTL_XTAL32K_AUTO_BACKUP : R/W; bitpos: [4]; default: 0; + * xtal 32k switch to back up clock when xtal is dead + */ + +#define RTC_CNTL_XTAL32K_AUTO_BACKUP (BIT(4)) +#define RTC_CNTL_XTAL32K_AUTO_BACKUP_M (RTC_CNTL_XTAL32K_AUTO_BACKUP_V << RTC_CNTL_XTAL32K_AUTO_BACKUP_S) +#define RTC_CNTL_XTAL32K_AUTO_BACKUP_V 0x00000001 +#define RTC_CNTL_XTAL32K_AUTO_BACKUP_S 4 + +/* RTC_CNTL_XTAL32K_EXT_CLK_FO : R/W; bitpos: [3]; default: 0; + * xtal 32k external xtal clock force on + */ + +#define RTC_CNTL_XTAL32K_EXT_CLK_FO (BIT(3)) +#define RTC_CNTL_XTAL32K_EXT_CLK_FO_M (RTC_CNTL_XTAL32K_EXT_CLK_FO_V << RTC_CNTL_XTAL32K_EXT_CLK_FO_S) +#define RTC_CNTL_XTAL32K_EXT_CLK_FO_V 0x00000001 +#define RTC_CNTL_XTAL32K_EXT_CLK_FO_S 3 + +/* RTC_CNTL_XTAL32K_WDT_RESET : R/W; bitpos: [2]; default: 0; + * xtal 32k watch dog sw reset + */ + +#define RTC_CNTL_XTAL32K_WDT_RESET (BIT(2)) +#define RTC_CNTL_XTAL32K_WDT_RESET_M (RTC_CNTL_XTAL32K_WDT_RESET_V << RTC_CNTL_XTAL32K_WDT_RESET_S) +#define RTC_CNTL_XTAL32K_WDT_RESET_V 0x00000001 +#define RTC_CNTL_XTAL32K_WDT_RESET_S 2 + +/* RTC_CNTL_XTAL32K_WDT_CLK_FO : R/W; bitpos: [1]; default: 0; + * xtal 32k watch dog clock force on + */ + +#define RTC_CNTL_XTAL32K_WDT_CLK_FO (BIT(1)) +#define RTC_CNTL_XTAL32K_WDT_CLK_FO_M (RTC_CNTL_XTAL32K_WDT_CLK_FO_V << RTC_CNTL_XTAL32K_WDT_CLK_FO_S) +#define RTC_CNTL_XTAL32K_WDT_CLK_FO_V 0x00000001 +#define RTC_CNTL_XTAL32K_WDT_CLK_FO_S 1 + +/* RTC_CNTL_XTAL32K_WDT_EN : R/W; bitpos: [0]; default: 0; + * xtal 32k watch dog enable + */ + +#define RTC_CNTL_XTAL32K_WDT_EN (BIT(0)) +#define RTC_CNTL_XTAL32K_WDT_EN_M (RTC_CNTL_XTAL32K_WDT_EN_V << RTC_CNTL_XTAL32K_WDT_EN_S) +#define RTC_CNTL_XTAL32K_WDT_EN_V 0x00000001 +#define RTC_CNTL_XTAL32K_WDT_EN_S 0 + +/* RTC_CNTL_RTC_EXT_WAKEUP_CONF_REG register + * ext wakeup configure + */ + +#define RTC_CNTL_RTC_EXT_WAKEUP_CONF_REG (DR_REG_RTCCNTL_BASE + 0x64) + +/* RTC_CNTL_EXT_WAKEUP1_LV : R/W; bitpos: [31]; default: 0; + * 0: external wakeup at low level, 1: external wakeup at high level + */ + +#define RTC_CNTL_EXT_WAKEUP1_LV (BIT(31)) +#define RTC_CNTL_EXT_WAKEUP1_LV_M (RTC_CNTL_EXT_WAKEUP1_LV_V << RTC_CNTL_EXT_WAKEUP1_LV_S) +#define RTC_CNTL_EXT_WAKEUP1_LV_V 0x00000001 +#define RTC_CNTL_EXT_WAKEUP1_LV_S 31 + +/* RTC_CNTL_EXT_WAKEUP0_LV : R/W; bitpos: [30]; default: 0; + * 0: external wakeup at low level, 1: external wakeup at high level + */ + +#define RTC_CNTL_EXT_WAKEUP0_LV (BIT(30)) +#define RTC_CNTL_EXT_WAKEUP0_LV_M (RTC_CNTL_EXT_WAKEUP0_LV_V << RTC_CNTL_EXT_WAKEUP0_LV_S) +#define RTC_CNTL_EXT_WAKEUP0_LV_V 0x00000001 +#define RTC_CNTL_EXT_WAKEUP0_LV_S 30 + +/* RTC_CNTL_GPIO_WAKEUP_FILTER : R/W; bitpos: [29]; default: 0; + * enable filter for gpio wakeup event + */ + +#define RTC_CNTL_GPIO_WAKEUP_FILTER (BIT(29)) +#define RTC_CNTL_GPIO_WAKEUP_FILTER_M (RTC_CNTL_GPIO_WAKEUP_FILTER_V << RTC_CNTL_GPIO_WAKEUP_FILTER_S) +#define RTC_CNTL_GPIO_WAKEUP_FILTER_V 0x00000001 +#define RTC_CNTL_GPIO_WAKEUP_FILTER_S 29 + +/* RTC_CNTL_RTC_SLP_REJECT_CONF_REG register + * reject sleep register + */ + +#define RTC_CNTL_RTC_SLP_REJECT_CONF_REG (DR_REG_RTCCNTL_BASE + 0x68) + +/* RTC_CNTL_DEEP_SLP_REJECT_EN : R/W; bitpos: [31]; default: 0; + * enable reject for deep sleep + */ + +#define RTC_CNTL_DEEP_SLP_REJECT_EN (BIT(31)) +#define RTC_CNTL_DEEP_SLP_REJECT_EN_M (RTC_CNTL_DEEP_SLP_REJECT_EN_V << RTC_CNTL_DEEP_SLP_REJECT_EN_S) +#define RTC_CNTL_DEEP_SLP_REJECT_EN_V 0x00000001 +#define RTC_CNTL_DEEP_SLP_REJECT_EN_S 31 + +/* RTC_CNTL_LIGHT_SLP_REJECT_EN : R/W; bitpos: [30]; default: 0; + * enable reject for light sleep + */ + +#define RTC_CNTL_LIGHT_SLP_REJECT_EN (BIT(30)) +#define RTC_CNTL_LIGHT_SLP_REJECT_EN_M (RTC_CNTL_LIGHT_SLP_REJECT_EN_V << RTC_CNTL_LIGHT_SLP_REJECT_EN_S) +#define RTC_CNTL_LIGHT_SLP_REJECT_EN_V 0x00000001 +#define RTC_CNTL_LIGHT_SLP_REJECT_EN_S 30 + +/* RTC_CNTL_RTC_SLEEP_REJECT_ENA : R/W; bitpos: [29:12]; default: 0; + * sleep reject enable + */ + +#define RTC_CNTL_RTC_SLEEP_REJECT_ENA 0x0003ffff +#define RTC_CNTL_RTC_SLEEP_REJECT_ENA_M (RTC_CNTL_RTC_SLEEP_REJECT_ENA_V << RTC_CNTL_RTC_SLEEP_REJECT_ENA_S) +#define RTC_CNTL_RTC_SLEEP_REJECT_ENA_V 0x0003ffff +#define RTC_CNTL_RTC_SLEEP_REJECT_ENA_S 12 + +/* RTC_CNTL_RTC_CPU_PERIOD_CONF_REG register + * conigure cpu freq + */ + +#define RTC_CNTL_RTC_CPU_PERIOD_CONF_REG (DR_REG_RTCCNTL_BASE + 0x6c) + +/* RTC_CNTL_RTC_CPUPERIOD_SEL : R/W; bitpos: [31:30]; default: 0; + * conigure cpu freq + */ + +#define RTC_CNTL_RTC_CPUPERIOD_SEL 0x00000003 +#define RTC_CNTL_RTC_CPUPERIOD_SEL_M (RTC_CNTL_RTC_CPUPERIOD_SEL_V << RTC_CNTL_RTC_CPUPERIOD_SEL_S) +#define RTC_CNTL_RTC_CPUPERIOD_SEL_V 0x00000003 +#define RTC_CNTL_RTC_CPUPERIOD_SEL_S 30 + +/* RTC_CNTL_RTC_CPUSEL_CONF : R/W; bitpos: [29]; default: 0; + * CPU sel option + */ + +#define RTC_CNTL_RTC_CPUSEL_CONF (BIT(29)) +#define RTC_CNTL_RTC_CPUSEL_CONF_M (RTC_CNTL_RTC_CPUSEL_CONF_V << RTC_CNTL_RTC_CPUSEL_CONF_S) +#define RTC_CNTL_RTC_CPUSEL_CONF_V 0x00000001 +#define RTC_CNTL_RTC_CPUSEL_CONF_S 29 + +/* RTC_CNTL_RTC_SDIO_ACT_CONF_REG register + * No public + */ + +#define RTC_CNTL_RTC_SDIO_ACT_CONF_REG (DR_REG_RTCCNTL_BASE + 0x70) + +/* RTC_CNTL_SDIO_ACT_DNUM : R/W; bitpos: [31:22]; default: 0; + * No public + */ + +#define RTC_CNTL_SDIO_ACT_DNUM 0x000003ff +#define RTC_CNTL_SDIO_ACT_DNUM_M (RTC_CNTL_SDIO_ACT_DNUM_V << RTC_CNTL_SDIO_ACT_DNUM_S) +#define RTC_CNTL_SDIO_ACT_DNUM_V 0x000003ff +#define RTC_CNTL_SDIO_ACT_DNUM_S 22 + +/* RTC_CNTL_RTC_CLK_CONF_REG register + * configure clock register + */ + +#define RTC_CNTL_RTC_CLK_CONF_REG (DR_REG_RTCCNTL_BASE + 0x74) + +/* RTC_CNTL_ANA_CLK_RTC_SEL : R/W; bitpos: [31:30]; default: 0; + * select slow clock + */ + +#define RTC_CNTL_ANA_CLK_RTC_SEL 0x00000003 +#define RTC_CNTL_ANA_CLK_RTC_SEL_M (RTC_CNTL_ANA_CLK_RTC_SEL_V << RTC_CNTL_ANA_CLK_RTC_SEL_S) +#define RTC_CNTL_ANA_CLK_RTC_SEL_V 0x00000003 +#define RTC_CNTL_ANA_CLK_RTC_SEL_S 30 + +/* RTC_CNTL_FAST_CLK_RTC_SEL : R/W; bitpos: [29]; default: 0; + * fast_clk_rtc sel. 0: XTAL div 4, 1: CK8M + */ + +#define RTC_CNTL_FAST_CLK_RTC_SEL (BIT(29)) +#define RTC_CNTL_FAST_CLK_RTC_SEL_M (RTC_CNTL_FAST_CLK_RTC_SEL_V << RTC_CNTL_FAST_CLK_RTC_SEL_S) +#define RTC_CNTL_FAST_CLK_RTC_SEL_V 0x00000001 +#define RTC_CNTL_FAST_CLK_RTC_SEL_S 29 + +/* RTC_CNTL_XTAL_GLOBAL_FORCE_NOGATING : R/W; bitpos: [28]; default: 1; + * force global xtal no gating + */ + +#define RTC_CNTL_XTAL_GLOBAL_FORCE_NOGATING (BIT(28)) +#define RTC_CNTL_XTAL_GLOBAL_FORCE_NOGATING_M (RTC_CNTL_XTAL_GLOBAL_FORCE_NOGATING_V << RTC_CNTL_XTAL_GLOBAL_FORCE_NOGATING_S) +#define RTC_CNTL_XTAL_GLOBAL_FORCE_NOGATING_V 0x00000001 +#define RTC_CNTL_XTAL_GLOBAL_FORCE_NOGATING_S 28 + +/* RTC_CNTL_XTAL_GLOBAL_FORCE_GATING : R/W; bitpos: [27]; default: 0; + * force global xtal gating + */ + +#define RTC_CNTL_XTAL_GLOBAL_FORCE_GATING (BIT(27)) +#define RTC_CNTL_XTAL_GLOBAL_FORCE_GATING_M (RTC_CNTL_XTAL_GLOBAL_FORCE_GATING_V << RTC_CNTL_XTAL_GLOBAL_FORCE_GATING_S) +#define RTC_CNTL_XTAL_GLOBAL_FORCE_GATING_V 0x00000001 +#define RTC_CNTL_XTAL_GLOBAL_FORCE_GATING_S 27 + +/* RTC_CNTL_CK8M_FORCE_PU : R/W; bitpos: [26]; default: 0; + * CK8M force power up + */ + +#define RTC_CNTL_CK8M_FORCE_PU (BIT(26)) +#define RTC_CNTL_CK8M_FORCE_PU_M (RTC_CNTL_CK8M_FORCE_PU_V << RTC_CNTL_CK8M_FORCE_PU_S) +#define RTC_CNTL_CK8M_FORCE_PU_V 0x00000001 +#define RTC_CNTL_CK8M_FORCE_PU_S 26 + +/* RTC_CNTL_CK8M_FORCE_PD : R/W; bitpos: [25]; default: 0; + * CK8M force power down + */ + +#define RTC_CNTL_CK8M_FORCE_PD (BIT(25)) +#define RTC_CNTL_CK8M_FORCE_PD_M (RTC_CNTL_CK8M_FORCE_PD_V << RTC_CNTL_CK8M_FORCE_PD_S) +#define RTC_CNTL_CK8M_FORCE_PD_V 0x00000001 +#define RTC_CNTL_CK8M_FORCE_PD_S 25 + +/* RTC_CNTL_CK8M_DFREQ : R/W; bitpos: [24:17]; default: 172; + * CK8M_DFREQ + */ + +#define RTC_CNTL_CK8M_DFREQ 0x000000ff +#define RTC_CNTL_CK8M_DFREQ_M (RTC_CNTL_CK8M_DFREQ_V << RTC_CNTL_CK8M_DFREQ_S) +#define RTC_CNTL_CK8M_DFREQ_V 0x000000ff +#define RTC_CNTL_CK8M_DFREQ_S 17 + +/* RTC_CNTL_CK8M_FORCE_NOGATING : R/W; bitpos: [16]; default: 0; + * CK8M force no gating during sleep + */ + +#define RTC_CNTL_CK8M_FORCE_NOGATING (BIT(16)) +#define RTC_CNTL_CK8M_FORCE_NOGATING_M (RTC_CNTL_CK8M_FORCE_NOGATING_V << RTC_CNTL_CK8M_FORCE_NOGATING_S) +#define RTC_CNTL_CK8M_FORCE_NOGATING_V 0x00000001 +#define RTC_CNTL_CK8M_FORCE_NOGATING_S 16 + +/* RTC_CNTL_XTAL_FORCE_NOGATING : R/W; bitpos: [15]; default: 0; + * XTAL force no gating during sleep + */ + +#define RTC_CNTL_XTAL_FORCE_NOGATING (BIT(15)) +#define RTC_CNTL_XTAL_FORCE_NOGATING_M (RTC_CNTL_XTAL_FORCE_NOGATING_V << RTC_CNTL_XTAL_FORCE_NOGATING_S) +#define RTC_CNTL_XTAL_FORCE_NOGATING_V 0x00000001 +#define RTC_CNTL_XTAL_FORCE_NOGATING_S 15 + +/* RTC_CNTL_CK8M_DIV_SEL : R/W; bitpos: [14:12]; default: 3; + * divider = reg_ck8m_div_sel + 1 + */ + +#define RTC_CNTL_CK8M_DIV_SEL 0x00000007 +#define RTC_CNTL_CK8M_DIV_SEL_M (RTC_CNTL_CK8M_DIV_SEL_V << RTC_CNTL_CK8M_DIV_SEL_S) +#define RTC_CNTL_CK8M_DIV_SEL_V 0x00000007 +#define RTC_CNTL_CK8M_DIV_SEL_S 12 + +/* RTC_CNTL_DIG_CLK8M_EN : R/W; bitpos: [10]; default: 0; + * enable CK8M for digital core (no relationship with RTC core) + */ + +#define RTC_CNTL_DIG_CLK8M_EN (BIT(10)) +#define RTC_CNTL_DIG_CLK8M_EN_M (RTC_CNTL_DIG_CLK8M_EN_V << RTC_CNTL_DIG_CLK8M_EN_S) +#define RTC_CNTL_DIG_CLK8M_EN_V 0x00000001 +#define RTC_CNTL_DIG_CLK8M_EN_S 10 + +/* RTC_CNTL_DIG_CLK8M_D256_EN : R/W; bitpos: [9]; default: 1; + * enable CK8M_D256_OUT for digital core (no relationship with RTC core) + */ + +#define RTC_CNTL_DIG_CLK8M_D256_EN (BIT(9)) +#define RTC_CNTL_DIG_CLK8M_D256_EN_M (RTC_CNTL_DIG_CLK8M_D256_EN_V << RTC_CNTL_DIG_CLK8M_D256_EN_S) +#define RTC_CNTL_DIG_CLK8M_D256_EN_V 0x00000001 +#define RTC_CNTL_DIG_CLK8M_D256_EN_S 9 + +/* RTC_CNTL_DIG_XTAL32K_EN : R/W; bitpos: [8]; default: 0; + * enable CK_XTAL_32K for digital core (no relationship with RTC core) + */ + +#define RTC_CNTL_DIG_XTAL32K_EN (BIT(8)) +#define RTC_CNTL_DIG_XTAL32K_EN_M (RTC_CNTL_DIG_XTAL32K_EN_V << RTC_CNTL_DIG_XTAL32K_EN_S) +#define RTC_CNTL_DIG_XTAL32K_EN_V 0x00000001 +#define RTC_CNTL_DIG_XTAL32K_EN_S 8 + +/* RTC_CNTL_ENB_CK8M_DIV : R/W; bitpos: [7]; default: 0; + * 1: CK8M_D256_OUT is actually CK8M, 0: CK8M_D256_OUT is CK8M divided by 256 + */ + +#define RTC_CNTL_ENB_CK8M_DIV (BIT(7)) +#define RTC_CNTL_ENB_CK8M_DIV_M (RTC_CNTL_ENB_CK8M_DIV_V << RTC_CNTL_ENB_CK8M_DIV_S) +#define RTC_CNTL_ENB_CK8M_DIV_V 0x00000001 +#define RTC_CNTL_ENB_CK8M_DIV_S 7 + +/* RTC_CNTL_ENB_CK8M : R/W; bitpos: [6]; default: 0; + * disable CK8M and CK8M_D256_OUT + */ + +#define RTC_CNTL_ENB_CK8M (BIT(6)) +#define RTC_CNTL_ENB_CK8M_M (RTC_CNTL_ENB_CK8M_V << RTC_CNTL_ENB_CK8M_S) +#define RTC_CNTL_ENB_CK8M_V 0x00000001 +#define RTC_CNTL_ENB_CK8M_S 6 + +/* RTC_CNTL_CK8M_DIV : R/W; bitpos: [5:4]; default: 1; + * CK8M_D256_OUT divider. 00: div128, 01: div256, 10: div512, 11: div1024. + */ + +#define RTC_CNTL_CK8M_DIV 0x00000003 +#define RTC_CNTL_CK8M_DIV_M (RTC_CNTL_CK8M_DIV_V << RTC_CNTL_CK8M_DIV_S) +#define RTC_CNTL_CK8M_DIV_V 0x00000003 +#define RTC_CNTL_CK8M_DIV_S 4 + +/* RTC_CNTL_CK8M_DIV_SEL_VLD : R/W; bitpos: [3]; default: 1; + * used to sync reg_ck8m_div_sel bus. Clear vld before set reg_ck8m_div_sel, + * then set vld to actually switch the clk + */ + +#define RTC_CNTL_CK8M_DIV_SEL_VLD (BIT(3)) +#define RTC_CNTL_CK8M_DIV_SEL_VLD_M (RTC_CNTL_CK8M_DIV_SEL_VLD_V << RTC_CNTL_CK8M_DIV_SEL_VLD_S) +#define RTC_CNTL_CK8M_DIV_SEL_VLD_V 0x00000001 +#define RTC_CNTL_CK8M_DIV_SEL_VLD_S 3 + +/* RTC_CNTL_EFUSE_CLK_FORCE_NOGATING : R/W; bitpos: [2]; default: 1; + * force efuse clk nogating + */ + +#define RTC_CNTL_EFUSE_CLK_FORCE_NOGATING (BIT(2)) +#define RTC_CNTL_EFUSE_CLK_FORCE_NOGATING_M (RTC_CNTL_EFUSE_CLK_FORCE_NOGATING_V << RTC_CNTL_EFUSE_CLK_FORCE_NOGATING_S) +#define RTC_CNTL_EFUSE_CLK_FORCE_NOGATING_V 0x00000001 +#define RTC_CNTL_EFUSE_CLK_FORCE_NOGATING_S 2 + +/* RTC_CNTL_EFUSE_CLK_FORCE_GATING : R/W; bitpos: [1]; default: 0; + * force efuse clk gating + */ + +#define RTC_CNTL_EFUSE_CLK_FORCE_GATING (BIT(1)) +#define RTC_CNTL_EFUSE_CLK_FORCE_GATING_M (RTC_CNTL_EFUSE_CLK_FORCE_GATING_V << RTC_CNTL_EFUSE_CLK_FORCE_GATING_S) +#define RTC_CNTL_EFUSE_CLK_FORCE_GATING_V 0x00000001 +#define RTC_CNTL_EFUSE_CLK_FORCE_GATING_S 1 + +/* RTC_CNTL_RTC_SLOW_CLK_CONF_REG register + * configure slow clk + */ + +#define RTC_CNTL_RTC_SLOW_CLK_CONF_REG (DR_REG_RTCCNTL_BASE + 0x78) + +/* RTC_CNTL_RTC_SLOW_CLK_NEXT_EDGE : R/W; bitpos: [31]; default: 0; + * No public + */ + +#define RTC_CNTL_RTC_SLOW_CLK_NEXT_EDGE (BIT(31)) +#define RTC_CNTL_RTC_SLOW_CLK_NEXT_EDGE_M (RTC_CNTL_RTC_SLOW_CLK_NEXT_EDGE_V << RTC_CNTL_RTC_SLOW_CLK_NEXT_EDGE_S) +#define RTC_CNTL_RTC_SLOW_CLK_NEXT_EDGE_V 0x00000001 +#define RTC_CNTL_RTC_SLOW_CLK_NEXT_EDGE_S 31 + +/* RTC_CNTL_RTC_ANA_CLK_DIV : R/W; bitpos: [30:23]; default: 0; + * rtc clk div + */ + +#define RTC_CNTL_RTC_ANA_CLK_DIV 0x000000ff +#define RTC_CNTL_RTC_ANA_CLK_DIV_M (RTC_CNTL_RTC_ANA_CLK_DIV_V << RTC_CNTL_RTC_ANA_CLK_DIV_S) +#define RTC_CNTL_RTC_ANA_CLK_DIV_V 0x000000ff +#define RTC_CNTL_RTC_ANA_CLK_DIV_S 23 + +/* RTC_CNTL_RTC_ANA_CLK_DIV_VLD : R/W; bitpos: [22]; default: 1; + * used to sync div bus. clear vld before set reg_rtc_ana_clk_div, then set + * vld to actually switch the clk + */ + +#define RTC_CNTL_RTC_ANA_CLK_DIV_VLD (BIT(22)) +#define RTC_CNTL_RTC_ANA_CLK_DIV_VLD_M (RTC_CNTL_RTC_ANA_CLK_DIV_VLD_V << RTC_CNTL_RTC_ANA_CLK_DIV_VLD_S) +#define RTC_CNTL_RTC_ANA_CLK_DIV_VLD_V 0x00000001 +#define RTC_CNTL_RTC_ANA_CLK_DIV_VLD_S 22 + +/* RTC_CNTL_RTC_SDIO_CONF_REG register + * configure flash power + */ + +#define RTC_CNTL_RTC_SDIO_CONF_REG (DR_REG_RTCCNTL_BASE + 0x7c) + +/* RTC_CNTL_XPD_SDIO_REG : R/W; bitpos: [31]; default: 0; + * power on flash regulator + */ + +#define RTC_CNTL_XPD_SDIO_REG (BIT(31)) +#define RTC_CNTL_XPD_SDIO_REG_M (RTC_CNTL_XPD_SDIO_REG_V << RTC_CNTL_XPD_SDIO_REG_S) +#define RTC_CNTL_XPD_SDIO_REG_V 0x00000001 +#define RTC_CNTL_XPD_SDIO_REG_S 31 + +/* RTC_CNTL_DREFH_SDIO : R/W; bitpos: [30:29]; default: 0; + * SW option for DREFH_SDIO. Only active when reg_sdio_force = 1 + */ + +#define RTC_CNTL_DREFH_SDIO 0x00000003 +#define RTC_CNTL_DREFH_SDIO_M (RTC_CNTL_DREFH_SDIO_V << RTC_CNTL_DREFH_SDIO_S) +#define RTC_CNTL_DREFH_SDIO_V 0x00000003 +#define RTC_CNTL_DREFH_SDIO_S 29 + +/* RTC_CNTL_DREFM_SDIO : R/W; bitpos: [28:27]; default: 1; + * SW option for DREFM_SDIO. Only active when reg_sdio_force = 1 + */ + +#define RTC_CNTL_DREFM_SDIO 0x00000003 +#define RTC_CNTL_DREFM_SDIO_M (RTC_CNTL_DREFM_SDIO_V << RTC_CNTL_DREFM_SDIO_S) +#define RTC_CNTL_DREFM_SDIO_V 0x00000003 +#define RTC_CNTL_DREFM_SDIO_S 27 + +/* RTC_CNTL_DREFL_SDIO : R/W; bitpos: [26:25]; default: 1; + * SW option for DREFL_SDIO. Only active when reg_sdio_force = 1 + */ + +#define RTC_CNTL_DREFL_SDIO 0x00000003 +#define RTC_CNTL_DREFL_SDIO_M (RTC_CNTL_DREFL_SDIO_V << RTC_CNTL_DREFL_SDIO_S) +#define RTC_CNTL_DREFL_SDIO_V 0x00000003 +#define RTC_CNTL_DREFL_SDIO_S 25 + +/* RTC_CNTL_REG1P8_READY : RO; bitpos: [24]; default: 0; + * read only register for REG1P8_READY + */ + +#define RTC_CNTL_REG1P8_READY (BIT(24)) +#define RTC_CNTL_REG1P8_READY_M (RTC_CNTL_REG1P8_READY_V << RTC_CNTL_REG1P8_READY_S) +#define RTC_CNTL_REG1P8_READY_V 0x00000001 +#define RTC_CNTL_REG1P8_READY_S 24 + +/* RTC_CNTL_SDIO_TIEH : R/W; bitpos: [23]; default: 1; + * SW option for SDIO_TIEH. Only active when reg_sdio_force = 1 + */ + +#define RTC_CNTL_SDIO_TIEH (BIT(23)) +#define RTC_CNTL_SDIO_TIEH_M (RTC_CNTL_SDIO_TIEH_V << RTC_CNTL_SDIO_TIEH_S) +#define RTC_CNTL_SDIO_TIEH_V 0x00000001 +#define RTC_CNTL_SDIO_TIEH_S 23 + +/* RTC_CNTL_SDIO_FORCE : R/W; bitpos: [22]; default: 0; + * 1: use SW option to control SDIO_REG, 0: use state machine + */ + +#define RTC_CNTL_SDIO_FORCE (BIT(22)) +#define RTC_CNTL_SDIO_FORCE_M (RTC_CNTL_SDIO_FORCE_V << RTC_CNTL_SDIO_FORCE_S) +#define RTC_CNTL_SDIO_FORCE_V 0x00000001 +#define RTC_CNTL_SDIO_FORCE_S 22 + +/* RTC_CNTL_SDIO_REG_PD_EN : R/W; bitpos: [21]; default: 1; + * power down SDIO_REG in sleep. Only active when reg_sdio_force = 0 + */ + +#define RTC_CNTL_SDIO_REG_PD_EN (BIT(21)) +#define RTC_CNTL_SDIO_REG_PD_EN_M (RTC_CNTL_SDIO_REG_PD_EN_V << RTC_CNTL_SDIO_REG_PD_EN_S) +#define RTC_CNTL_SDIO_REG_PD_EN_V 0x00000001 +#define RTC_CNTL_SDIO_REG_PD_EN_S 21 + +/* RTC_CNTL_SDIO_ENCURLIM : R/W; bitpos: [20]; default: 1; + * enable current limit + */ + +#define RTC_CNTL_SDIO_ENCURLIM (BIT(20)) +#define RTC_CNTL_SDIO_ENCURLIM_M (RTC_CNTL_SDIO_ENCURLIM_V << RTC_CNTL_SDIO_ENCURLIM_S) +#define RTC_CNTL_SDIO_ENCURLIM_V 0x00000001 +#define RTC_CNTL_SDIO_ENCURLIM_S 20 + +/* RTC_CNTL_SDIO_MODECURLIM : R/W; bitpos: [19]; default: 0; + * select current limit mode + */ + +#define RTC_CNTL_SDIO_MODECURLIM (BIT(19)) +#define RTC_CNTL_SDIO_MODECURLIM_M (RTC_CNTL_SDIO_MODECURLIM_V << RTC_CNTL_SDIO_MODECURLIM_S) +#define RTC_CNTL_SDIO_MODECURLIM_V 0x00000001 +#define RTC_CNTL_SDIO_MODECURLIM_S 19 + +/* RTC_CNTL_SDIO_DCURLIM : R/W; bitpos: [18:16]; default: 0; + * tune current limit threshold when tieh = 0. About 800mA/(8+d) + */ + +#define RTC_CNTL_SDIO_DCURLIM 0x00000007 +#define RTC_CNTL_SDIO_DCURLIM_M (RTC_CNTL_SDIO_DCURLIM_V << RTC_CNTL_SDIO_DCURLIM_S) +#define RTC_CNTL_SDIO_DCURLIM_V 0x00000007 +#define RTC_CNTL_SDIO_DCURLIM_S 16 + +/* RTC_CNTL_SDIO_EN_INITI : R/W; bitpos: [15]; default: 1; + * 0 to set init[1:0]=0 + */ + +#define RTC_CNTL_SDIO_EN_INITI (BIT(15)) +#define RTC_CNTL_SDIO_EN_INITI_M (RTC_CNTL_SDIO_EN_INITI_V << RTC_CNTL_SDIO_EN_INITI_S) +#define RTC_CNTL_SDIO_EN_INITI_V 0x00000001 +#define RTC_CNTL_SDIO_EN_INITI_S 15 + +/* RTC_CNTL_SDIO_INITI : R/W; bitpos: [14:13]; default: 1; + * add resistor from ldo output to ground. 0: no res, 1: 6k,2:4k,3:2k + */ + +#define RTC_CNTL_SDIO_INITI 0x00000003 +#define RTC_CNTL_SDIO_INITI_M (RTC_CNTL_SDIO_INITI_V << RTC_CNTL_SDIO_INITI_S) +#define RTC_CNTL_SDIO_INITI_V 0x00000003 +#define RTC_CNTL_SDIO_INITI_S 13 + +/* RTC_CNTL_SDIO_DCAP : R/W; bitpos: [12:11]; default: 3; + * ability to prevent LDO from overshoot + */ + +#define RTC_CNTL_SDIO_DCAP 0x00000003 +#define RTC_CNTL_SDIO_DCAP_M (RTC_CNTL_SDIO_DCAP_V << RTC_CNTL_SDIO_DCAP_S) +#define RTC_CNTL_SDIO_DCAP_V 0x00000003 +#define RTC_CNTL_SDIO_DCAP_S 11 + +/* RTC_CNTL_SDIO_DTHDRV : R/W; bitpos: [10:9]; default: 3; + * Tieh = 1 mode drive ability. Initially set to 0 to limit charge current, + * set to 3 after several us. + */ + +#define RTC_CNTL_SDIO_DTHDRV 0x00000003 +#define RTC_CNTL_SDIO_DTHDRV_M (RTC_CNTL_SDIO_DTHDRV_V << RTC_CNTL_SDIO_DTHDRV_S) +#define RTC_CNTL_SDIO_DTHDRV_V 0x00000003 +#define RTC_CNTL_SDIO_DTHDRV_S 9 + +/* RTC_CNTL_SDIO_TIMER_TARGET : R/W; bitpos: [7:0]; default: 10; + * timer count to apply reg_sdio_dcap after sdio power on + */ + +#define RTC_CNTL_SDIO_TIMER_TARGET 0x000000ff +#define RTC_CNTL_SDIO_TIMER_TARGET_M (RTC_CNTL_SDIO_TIMER_TARGET_V << RTC_CNTL_SDIO_TIMER_TARGET_S) +#define RTC_CNTL_SDIO_TIMER_TARGET_V 0x000000ff +#define RTC_CNTL_SDIO_TIMER_TARGET_S 0 + +/* RTC_CNTL_RTC_BIAS_CONF_REG register + * No public + */ + +#define RTC_CNTL_RTC_BIAS_CONF_REG (DR_REG_RTCCNTL_BASE + 0x80) + +/* RTC_CNTL_DBG_ATTEN_WAKEUP : R/W; bitpos: [29:26]; default: 0; + * No public + */ + +#define RTC_CNTL_DBG_ATTEN_WAKEUP 0x0000000f +#define RTC_CNTL_DBG_ATTEN_WAKEUP_M (RTC_CNTL_DBG_ATTEN_WAKEUP_V << RTC_CNTL_DBG_ATTEN_WAKEUP_S) +#define RTC_CNTL_DBG_ATTEN_WAKEUP_V 0x0000000f +#define RTC_CNTL_DBG_ATTEN_WAKEUP_S 26 + +/* RTC_CNTL_DBG_ATTEN_MONITOR : R/W; bitpos: [25:22]; default: 0; + * DBG_ATTEN when rtc in monitor state + */ + +#define RTC_CNTL_DBG_ATTEN_MONITOR 0x0000000f +#define RTC_CNTL_DBG_ATTEN_MONITOR_M (RTC_CNTL_DBG_ATTEN_MONITOR_V << RTC_CNTL_DBG_ATTEN_MONITOR_S) +#define RTC_CNTL_DBG_ATTEN_MONITOR_V 0x0000000f +#define RTC_CNTL_DBG_ATTEN_MONITOR_S 22 + +/* RTC_CNTL_DBG_ATTEN_DEEP_SLP : R/W; bitpos: [21:18]; default: 0; + * DBG_ATTEN when rtc in sleep state + */ + +#define RTC_CNTL_DBG_ATTEN_DEEP_SLP 0x0000000f +#define RTC_CNTL_DBG_ATTEN_DEEP_SLP_M (RTC_CNTL_DBG_ATTEN_DEEP_SLP_V << RTC_CNTL_DBG_ATTEN_DEEP_SLP_S) +#define RTC_CNTL_DBG_ATTEN_DEEP_SLP_V 0x0000000f +#define RTC_CNTL_DBG_ATTEN_DEEP_SLP_S 18 + +/* RTC_CNTL_BIAS_SLEEP_MONITOR : R/W; bitpos: [17]; default: 0; + * bias_sleep when rtc in monitor state + */ + +#define RTC_CNTL_BIAS_SLEEP_MONITOR (BIT(17)) +#define RTC_CNTL_BIAS_SLEEP_MONITOR_M (RTC_CNTL_BIAS_SLEEP_MONITOR_V << RTC_CNTL_BIAS_SLEEP_MONITOR_S) +#define RTC_CNTL_BIAS_SLEEP_MONITOR_V 0x00000001 +#define RTC_CNTL_BIAS_SLEEP_MONITOR_S 17 + +/* RTC_CNTL_BIAS_SLEEP_DEEP_SLP : R/W; bitpos: [16]; default: 1; + * bias_sleep when rtc in sleep_state + */ + +#define RTC_CNTL_BIAS_SLEEP_DEEP_SLP (BIT(16)) +#define RTC_CNTL_BIAS_SLEEP_DEEP_SLP_M (RTC_CNTL_BIAS_SLEEP_DEEP_SLP_V << RTC_CNTL_BIAS_SLEEP_DEEP_SLP_S) +#define RTC_CNTL_BIAS_SLEEP_DEEP_SLP_V 0x00000001 +#define RTC_CNTL_BIAS_SLEEP_DEEP_SLP_S 16 + +/* RTC_CNTL_PD_CUR_MONITOR : R/W; bitpos: [15]; default: 0; + * xpd cur when rtc in monitor state + */ + +#define RTC_CNTL_PD_CUR_MONITOR (BIT(15)) +#define RTC_CNTL_PD_CUR_MONITOR_M (RTC_CNTL_PD_CUR_MONITOR_V << RTC_CNTL_PD_CUR_MONITOR_S) +#define RTC_CNTL_PD_CUR_MONITOR_V 0x00000001 +#define RTC_CNTL_PD_CUR_MONITOR_S 15 + +/* RTC_CNTL_PD_CUR_DEEP_SLP : R/W; bitpos: [14]; default: 0; + * xpd cur when rtc in sleep_state + */ + +#define RTC_CNTL_PD_CUR_DEEP_SLP (BIT(14)) +#define RTC_CNTL_PD_CUR_DEEP_SLP_M (RTC_CNTL_PD_CUR_DEEP_SLP_V << RTC_CNTL_PD_CUR_DEEP_SLP_S) +#define RTC_CNTL_PD_CUR_DEEP_SLP_V 0x00000001 +#define RTC_CNTL_PD_CUR_DEEP_SLP_S 14 + +/* RTC_CNTL_BIAS_BUF_MONITOR : R/W; bitpos: [13]; default: 0; + * No public + */ + +#define RTC_CNTL_BIAS_BUF_MONITOR (BIT(13)) +#define RTC_CNTL_BIAS_BUF_MONITOR_M (RTC_CNTL_BIAS_BUF_MONITOR_V << RTC_CNTL_BIAS_BUF_MONITOR_S) +#define RTC_CNTL_BIAS_BUF_MONITOR_V 0x00000001 +#define RTC_CNTL_BIAS_BUF_MONITOR_S 13 + +/* RTC_CNTL_BIAS_BUF_DEEP_SLP : R/W; bitpos: [12]; default: 0; + * No public + */ + +#define RTC_CNTL_BIAS_BUF_DEEP_SLP (BIT(12)) +#define RTC_CNTL_BIAS_BUF_DEEP_SLP_M (RTC_CNTL_BIAS_BUF_DEEP_SLP_V << RTC_CNTL_BIAS_BUF_DEEP_SLP_S) +#define RTC_CNTL_BIAS_BUF_DEEP_SLP_V 0x00000001 +#define RTC_CNTL_BIAS_BUF_DEEP_SLP_S 12 + +/* RTC_CNTL_BIAS_BUF_WAKE : R/W; bitpos: [11]; default: 1; + * No public + */ + +#define RTC_CNTL_BIAS_BUF_WAKE (BIT(11)) +#define RTC_CNTL_BIAS_BUF_WAKE_M (RTC_CNTL_BIAS_BUF_WAKE_V << RTC_CNTL_BIAS_BUF_WAKE_S) +#define RTC_CNTL_BIAS_BUF_WAKE_V 0x00000001 +#define RTC_CNTL_BIAS_BUF_WAKE_S 11 + +/* RTC_CNTL_BIAS_BUF_IDLE : R/W; bitpos: [10]; default: 0; + * No public + */ + +#define RTC_CNTL_BIAS_BUF_IDLE (BIT(10)) +#define RTC_CNTL_BIAS_BUF_IDLE_M (RTC_CNTL_BIAS_BUF_IDLE_V << RTC_CNTL_BIAS_BUF_IDLE_S) +#define RTC_CNTL_BIAS_BUF_IDLE_V 0x00000001 +#define RTC_CNTL_BIAS_BUF_IDLE_S 10 + +/* RTC_CNTL_RTC_REG register + * configure rtc regulator + */ + +#define RTC_CNTL_RTC_REG (DR_REG_RTCCNTL_BASE + 0x84) + +/* RTC_CNTL_RTC_REGULATOR_FORCE_PU : R/W; bitpos: [31]; default: 1; + * RTC_REG force power on (for RTC_REG power down means decrease the voltage + * to 0.8v or lower ) + */ + +#define RTC_CNTL_RTC_REGULATOR_FORCE_PU (BIT(31)) +#define RTC_CNTL_RTC_REGULATOR_FORCE_PU_M (RTC_CNTL_RTC_REGULATOR_FORCE_PU_V << RTC_CNTL_RTC_REGULATOR_FORCE_PU_S) +#define RTC_CNTL_RTC_REGULATOR_FORCE_PU_V 0x00000001 +#define RTC_CNTL_RTC_REGULATOR_FORCE_PU_S 31 + +/* RTC_CNTL_RTC_REGULATOR_FORCE_PD : R/W; bitpos: [30]; default: 0; + * RTC_REG force power down (for RTC_REG power down means decrease the + * voltage to 0.8v or lower ) + */ + +#define RTC_CNTL_RTC_REGULATOR_FORCE_PD (BIT(30)) +#define RTC_CNTL_RTC_REGULATOR_FORCE_PD_M (RTC_CNTL_RTC_REGULATOR_FORCE_PD_V << RTC_CNTL_RTC_REGULATOR_FORCE_PD_S) +#define RTC_CNTL_RTC_REGULATOR_FORCE_PD_V 0x00000001 +#define RTC_CNTL_RTC_REGULATOR_FORCE_PD_S 30 + +/* RTC_CNTL_RTC_DBOOST_FORCE_PU : R/W; bitpos: [29]; default: 1; + * RTC_DBOOST force power up + */ + +#define RTC_CNTL_RTC_DBOOST_FORCE_PU (BIT(29)) +#define RTC_CNTL_RTC_DBOOST_FORCE_PU_M (RTC_CNTL_RTC_DBOOST_FORCE_PU_V << RTC_CNTL_RTC_DBOOST_FORCE_PU_S) +#define RTC_CNTL_RTC_DBOOST_FORCE_PU_V 0x00000001 +#define RTC_CNTL_RTC_DBOOST_FORCE_PU_S 29 + +/* RTC_CNTL_RTC_DBOOST_FORCE_PD : R/W; bitpos: [28]; default: 0; + * RTC_DBOOST force power down + */ + +#define RTC_CNTL_RTC_DBOOST_FORCE_PD (BIT(28)) +#define RTC_CNTL_RTC_DBOOST_FORCE_PD_M (RTC_CNTL_RTC_DBOOST_FORCE_PD_V << RTC_CNTL_RTC_DBOOST_FORCE_PD_S) +#define RTC_CNTL_RTC_DBOOST_FORCE_PD_V 0x00000001 +#define RTC_CNTL_RTC_DBOOST_FORCE_PD_S 28 + +/* RTC_CNTL_SCK_DCAP : R/W; bitpos: [21:14]; default: 0; + * SCK_DCAP + */ + +#define RTC_CNTL_SCK_DCAP 0x000000ff +#define RTC_CNTL_SCK_DCAP_M (RTC_CNTL_SCK_DCAP_V << RTC_CNTL_SCK_DCAP_S) +#define RTC_CNTL_SCK_DCAP_V 0x000000ff +#define RTC_CNTL_SCK_DCAP_S 14 + +/* RTC_CNTL_DIG_REG_CAL_EN : R/W; bitpos: [7]; default: 0; + * enable dig regulator cali + */ + +#define RTC_CNTL_DIG_REG_CAL_EN (BIT(7)) +#define RTC_CNTL_DIG_REG_CAL_EN_M (RTC_CNTL_DIG_REG_CAL_EN_V << RTC_CNTL_DIG_REG_CAL_EN_S) +#define RTC_CNTL_DIG_REG_CAL_EN_V 0x00000001 +#define RTC_CNTL_DIG_REG_CAL_EN_S 7 + +/* RTC_CNTL_RTC_PWC_REG register + * configure rtc power + */ + +#define RTC_CNTL_RTC_PWC_REG (DR_REG_RTCCNTL_BASE + 0x88) + +/* RTC_CNTL_RTC_PAD_FORCE_HOLD : R/W; bitpos: [21]; default: 0; + * rtc pad force hold + */ + +#define RTC_CNTL_RTC_PAD_FORCE_HOLD (BIT(21)) +#define RTC_CNTL_RTC_PAD_FORCE_HOLD_M (RTC_CNTL_RTC_PAD_FORCE_HOLD_V << RTC_CNTL_RTC_PAD_FORCE_HOLD_S) +#define RTC_CNTL_RTC_PAD_FORCE_HOLD_V 0x00000001 +#define RTC_CNTL_RTC_PAD_FORCE_HOLD_S 21 + +/* RTC_CNTL_RTC_PD_EN : R/W; bitpos: [20]; default: 0; + * enable power down rtc_peri in sleep + */ + +#define RTC_CNTL_RTC_PD_EN (BIT(20)) +#define RTC_CNTL_RTC_PD_EN_M (RTC_CNTL_RTC_PD_EN_V << RTC_CNTL_RTC_PD_EN_S) +#define RTC_CNTL_RTC_PD_EN_V 0x00000001 +#define RTC_CNTL_RTC_PD_EN_S 20 + +/* RTC_CNTL_RTC_FORCE_PU : R/W; bitpos: [19]; default: 0; + * rtc_peri force power up + */ + +#define RTC_CNTL_RTC_FORCE_PU (BIT(19)) +#define RTC_CNTL_RTC_FORCE_PU_M (RTC_CNTL_RTC_FORCE_PU_V << RTC_CNTL_RTC_FORCE_PU_S) +#define RTC_CNTL_RTC_FORCE_PU_V 0x00000001 +#define RTC_CNTL_RTC_FORCE_PU_S 19 + +/* RTC_CNTL_RTC_FORCE_PD : R/W; bitpos: [18]; default: 0; + * rtc_peri force power down + */ + +#define RTC_CNTL_RTC_FORCE_PD (BIT(18)) +#define RTC_CNTL_RTC_FORCE_PD_M (RTC_CNTL_RTC_FORCE_PD_V << RTC_CNTL_RTC_FORCE_PD_S) +#define RTC_CNTL_RTC_FORCE_PD_V 0x00000001 +#define RTC_CNTL_RTC_FORCE_PD_S 18 + +/* RTC_CNTL_RTC_SLOWMEM_FORCE_LPU : R/W; bitpos: [11]; default: 1; + * RTC memory force no PD + */ + +#define RTC_CNTL_RTC_SLOWMEM_FORCE_LPU (BIT(11)) +#define RTC_CNTL_RTC_SLOWMEM_FORCE_LPU_M (RTC_CNTL_RTC_SLOWMEM_FORCE_LPU_V << RTC_CNTL_RTC_SLOWMEM_FORCE_LPU_S) +#define RTC_CNTL_RTC_SLOWMEM_FORCE_LPU_V 0x00000001 +#define RTC_CNTL_RTC_SLOWMEM_FORCE_LPU_S 11 + +/* RTC_CNTL_RTC_SLOWMEM_FORCE_LPD : R/W; bitpos: [10]; default: 0; + * RTC memory force PD + */ + +#define RTC_CNTL_RTC_SLOWMEM_FORCE_LPD (BIT(10)) +#define RTC_CNTL_RTC_SLOWMEM_FORCE_LPD_M (RTC_CNTL_RTC_SLOWMEM_FORCE_LPD_V << RTC_CNTL_RTC_SLOWMEM_FORCE_LPD_S) +#define RTC_CNTL_RTC_SLOWMEM_FORCE_LPD_V 0x00000001 +#define RTC_CNTL_RTC_SLOWMEM_FORCE_LPD_S 10 + +/* RTC_CNTL_RTC_SLOWMEM_FOLW_CPU : R/W; bitpos: [9]; default: 0; + * 1: RTC memory PD following CPU, 0: RTC memory PD following RTC state + * machine + */ + +#define RTC_CNTL_RTC_SLOWMEM_FOLW_CPU (BIT(9)) +#define RTC_CNTL_RTC_SLOWMEM_FOLW_CPU_M (RTC_CNTL_RTC_SLOWMEM_FOLW_CPU_V << RTC_CNTL_RTC_SLOWMEM_FOLW_CPU_S) +#define RTC_CNTL_RTC_SLOWMEM_FOLW_CPU_V 0x00000001 +#define RTC_CNTL_RTC_SLOWMEM_FOLW_CPU_S 9 + +/* RTC_CNTL_RTC_FASTMEM_FORCE_LPU : R/W; bitpos: [8]; default: 1; + * Fast RTC memory force no PD + */ + +#define RTC_CNTL_RTC_FASTMEM_FORCE_LPU (BIT(8)) +#define RTC_CNTL_RTC_FASTMEM_FORCE_LPU_M (RTC_CNTL_RTC_FASTMEM_FORCE_LPU_V << RTC_CNTL_RTC_FASTMEM_FORCE_LPU_S) +#define RTC_CNTL_RTC_FASTMEM_FORCE_LPU_V 0x00000001 +#define RTC_CNTL_RTC_FASTMEM_FORCE_LPU_S 8 + +/* RTC_CNTL_RTC_FASTMEM_FORCE_LPD : R/W; bitpos: [7]; default: 0; + * Fast RTC memory force PD + */ + +#define RTC_CNTL_RTC_FASTMEM_FORCE_LPD (BIT(7)) +#define RTC_CNTL_RTC_FASTMEM_FORCE_LPD_M (RTC_CNTL_RTC_FASTMEM_FORCE_LPD_V << RTC_CNTL_RTC_FASTMEM_FORCE_LPD_S) +#define RTC_CNTL_RTC_FASTMEM_FORCE_LPD_V 0x00000001 +#define RTC_CNTL_RTC_FASTMEM_FORCE_LPD_S 7 + +/* RTC_CNTL_RTC_FASTMEM_FOLW_CPU : R/W; bitpos: [6]; default: 0; + * 1: Fast RTC memory PD following CPU, 0: fast RTC memory PD following RTC + * state machine + */ + +#define RTC_CNTL_RTC_FASTMEM_FOLW_CPU (BIT(6)) +#define RTC_CNTL_RTC_FASTMEM_FOLW_CPU_M (RTC_CNTL_RTC_FASTMEM_FOLW_CPU_V << RTC_CNTL_RTC_FASTMEM_FOLW_CPU_S) +#define RTC_CNTL_RTC_FASTMEM_FOLW_CPU_V 0x00000001 +#define RTC_CNTL_RTC_FASTMEM_FOLW_CPU_S 6 + +/* RTC_CNTL_RTC_FORCE_NOISO : R/W; bitpos: [5]; default: 1; + * rtc_peri force no ISO + */ + +#define RTC_CNTL_RTC_FORCE_NOISO (BIT(5)) +#define RTC_CNTL_RTC_FORCE_NOISO_M (RTC_CNTL_RTC_FORCE_NOISO_V << RTC_CNTL_RTC_FORCE_NOISO_S) +#define RTC_CNTL_RTC_FORCE_NOISO_V 0x00000001 +#define RTC_CNTL_RTC_FORCE_NOISO_S 5 + +/* RTC_CNTL_RTC_FORCE_ISO : R/W; bitpos: [4]; default: 0; + * rtc_peri force ISO + */ + +#define RTC_CNTL_RTC_FORCE_ISO (BIT(4)) +#define RTC_CNTL_RTC_FORCE_ISO_M (RTC_CNTL_RTC_FORCE_ISO_V << RTC_CNTL_RTC_FORCE_ISO_S) +#define RTC_CNTL_RTC_FORCE_ISO_V 0x00000001 +#define RTC_CNTL_RTC_FORCE_ISO_S 4 + +/* RTC_CNTL_RTC_SLOWMEM_FORCE_ISO : R/W; bitpos: [3]; default: 0; + * RTC memory force ISO + */ + +#define RTC_CNTL_RTC_SLOWMEM_FORCE_ISO (BIT(3)) +#define RTC_CNTL_RTC_SLOWMEM_FORCE_ISO_M (RTC_CNTL_RTC_SLOWMEM_FORCE_ISO_V << RTC_CNTL_RTC_SLOWMEM_FORCE_ISO_S) +#define RTC_CNTL_RTC_SLOWMEM_FORCE_ISO_V 0x00000001 +#define RTC_CNTL_RTC_SLOWMEM_FORCE_ISO_S 3 + +/* RTC_CNTL_RTC_SLOWMEM_FORCE_NOISO : R/W; bitpos: [2]; default: 1; + * RTC memory force no ISO + */ + +#define RTC_CNTL_RTC_SLOWMEM_FORCE_NOISO (BIT(2)) +#define RTC_CNTL_RTC_SLOWMEM_FORCE_NOISO_M (RTC_CNTL_RTC_SLOWMEM_FORCE_NOISO_V << RTC_CNTL_RTC_SLOWMEM_FORCE_NOISO_S) +#define RTC_CNTL_RTC_SLOWMEM_FORCE_NOISO_V 0x00000001 +#define RTC_CNTL_RTC_SLOWMEM_FORCE_NOISO_S 2 + +/* RTC_CNTL_RTC_FASTMEM_FORCE_ISO : R/W; bitpos: [1]; default: 0; + * Fast RTC memory force ISO + */ + +#define RTC_CNTL_RTC_FASTMEM_FORCE_ISO (BIT(1)) +#define RTC_CNTL_RTC_FASTMEM_FORCE_ISO_M (RTC_CNTL_RTC_FASTMEM_FORCE_ISO_V << RTC_CNTL_RTC_FASTMEM_FORCE_ISO_S) +#define RTC_CNTL_RTC_FASTMEM_FORCE_ISO_V 0x00000001 +#define RTC_CNTL_RTC_FASTMEM_FORCE_ISO_S 1 + +/* RTC_CNTL_RTC_FASTMEM_FORCE_NOISO : R/W; bitpos: [0]; default: 1; + * Fast RTC memory force no ISO + */ + +#define RTC_CNTL_RTC_FASTMEM_FORCE_NOISO (BIT(0)) +#define RTC_CNTL_RTC_FASTMEM_FORCE_NOISO_M (RTC_CNTL_RTC_FASTMEM_FORCE_NOISO_V << RTC_CNTL_RTC_FASTMEM_FORCE_NOISO_S) +#define RTC_CNTL_RTC_FASTMEM_FORCE_NOISO_V 0x00000001 +#define RTC_CNTL_RTC_FASTMEM_FORCE_NOISO_S 0 + +/* RTC_CNTL_RTC_REGULATOR_DRV_CTRL_REG register + * No public + */ + +#define RTC_CNTL_RTC_REGULATOR_DRV_CTRL_REG (DR_REG_RTCCNTL_BASE + 0x8c) + +/* RTC_CNTL_DG_VDD_DRV_B_MONITOR : R/W; bitpos: [27:20]; default: 0; + * No public + */ + +#define RTC_CNTL_DG_VDD_DRV_B_MONITOR 0x000000ff +#define RTC_CNTL_DG_VDD_DRV_B_MONITOR_M (RTC_CNTL_DG_VDD_DRV_B_MONITOR_V << RTC_CNTL_DG_VDD_DRV_B_MONITOR_S) +#define RTC_CNTL_DG_VDD_DRV_B_MONITOR_V 0x000000ff +#define RTC_CNTL_DG_VDD_DRV_B_MONITOR_S 20 + +/* RTC_CNTL_DG_VDD_DRV_B_SLP : R/W; bitpos: [19:12]; default: 0; + * No public + */ + +#define RTC_CNTL_DG_VDD_DRV_B_SLP 0x000000ff +#define RTC_CNTL_DG_VDD_DRV_B_SLP_M (RTC_CNTL_DG_VDD_DRV_B_SLP_V << RTC_CNTL_DG_VDD_DRV_B_SLP_S) +#define RTC_CNTL_DG_VDD_DRV_B_SLP_V 0x000000ff +#define RTC_CNTL_DG_VDD_DRV_B_SLP_S 12 + +/* RTC_CNTL_RTC_REGULATOR_DRV_B_SLP : R/W; bitpos: [11:6]; default: 0; + * No public + */ + +#define RTC_CNTL_RTC_REGULATOR_DRV_B_SLP 0x0000003f +#define RTC_CNTL_RTC_REGULATOR_DRV_B_SLP_M (RTC_CNTL_RTC_REGULATOR_DRV_B_SLP_V << RTC_CNTL_RTC_REGULATOR_DRV_B_SLP_S) +#define RTC_CNTL_RTC_REGULATOR_DRV_B_SLP_V 0x0000003f +#define RTC_CNTL_RTC_REGULATOR_DRV_B_SLP_S 6 + +/* RTC_CNTL_RTC_REGULATOR_DRV_B_MONITOR : R/W; bitpos: [5:0]; default: 0; + * No public + */ + +#define RTC_CNTL_RTC_REGULATOR_DRV_B_MONITOR 0x0000003f +#define RTC_CNTL_RTC_REGULATOR_DRV_B_MONITOR_M (RTC_CNTL_RTC_REGULATOR_DRV_B_MONITOR_V << RTC_CNTL_RTC_REGULATOR_DRV_B_MONITOR_S) +#define RTC_CNTL_RTC_REGULATOR_DRV_B_MONITOR_V 0x0000003f +#define RTC_CNTL_RTC_REGULATOR_DRV_B_MONITOR_S 0 + +/* RTC_CNTL_DIG_PWC_REG register + * configure digital power + */ + +#define RTC_CNTL_DIG_PWC_REG (DR_REG_RTCCNTL_BASE + 0x90) + +/* RTC_CNTL_DG_WRAP_PD_EN : R/W; bitpos: [31]; default: 0; + * enable power down all digital logic + */ + +#define RTC_CNTL_DG_WRAP_PD_EN (BIT(31)) +#define RTC_CNTL_DG_WRAP_PD_EN_M (RTC_CNTL_DG_WRAP_PD_EN_V << RTC_CNTL_DG_WRAP_PD_EN_S) +#define RTC_CNTL_DG_WRAP_PD_EN_V 0x00000001 +#define RTC_CNTL_DG_WRAP_PD_EN_S 31 + +/* RTC_CNTL_WIFI_PD_EN : R/W; bitpos: [30]; default: 0; + * enable power down wifi in sleep + */ + +#define RTC_CNTL_WIFI_PD_EN (BIT(30)) +#define RTC_CNTL_WIFI_PD_EN_M (RTC_CNTL_WIFI_PD_EN_V << RTC_CNTL_WIFI_PD_EN_S) +#define RTC_CNTL_WIFI_PD_EN_V 0x00000001 +#define RTC_CNTL_WIFI_PD_EN_S 30 + +/* RTC_CNTL_CPU_TOP_PD_EN : R/W; bitpos: [29]; default: 0; + * enable power down internal SRAM 4 in sleep + */ + +#define RTC_CNTL_CPU_TOP_PD_EN (BIT(29)) +#define RTC_CNTL_CPU_TOP_PD_EN_M (RTC_CNTL_CPU_TOP_PD_EN_V << RTC_CNTL_CPU_TOP_PD_EN_S) +#define RTC_CNTL_CPU_TOP_PD_EN_V 0x00000001 +#define RTC_CNTL_CPU_TOP_PD_EN_S 29 + +/* RTC_CNTL_DG_PERI_PD_EN : R/W; bitpos: [28]; default: 0; + * enable power down internal SRAM 3 in sleep + */ + +#define RTC_CNTL_DG_PERI_PD_EN (BIT(28)) +#define RTC_CNTL_DG_PERI_PD_EN_M (RTC_CNTL_DG_PERI_PD_EN_V << RTC_CNTL_DG_PERI_PD_EN_S) +#define RTC_CNTL_DG_PERI_PD_EN_V 0x00000001 +#define RTC_CNTL_DG_PERI_PD_EN_S 28 + +/* RTC_CNTL_BT_PD_EN : R/W; bitpos: [27]; default: 0; + * enable power down internal SRAM 2 in sleep + */ + +#define RTC_CNTL_BT_PD_EN (BIT(27)) +#define RTC_CNTL_BT_PD_EN_M (RTC_CNTL_BT_PD_EN_V << RTC_CNTL_BT_PD_EN_S) +#define RTC_CNTL_BT_PD_EN_V 0x00000001 +#define RTC_CNTL_BT_PD_EN_S 27 + +/* RTC_CNTL_CPU_TOP_FORCE_PU : R/W; bitpos: [22]; default: 1; + * digital dcdc force power up + */ + +#define RTC_CNTL_CPU_TOP_FORCE_PU (BIT(22)) +#define RTC_CNTL_CPU_TOP_FORCE_PU_M (RTC_CNTL_CPU_TOP_FORCE_PU_V << RTC_CNTL_CPU_TOP_FORCE_PU_S) +#define RTC_CNTL_CPU_TOP_FORCE_PU_V 0x00000001 +#define RTC_CNTL_CPU_TOP_FORCE_PU_S 22 + +/* RTC_CNTL_CPU_TOP_FORCE_PD : R/W; bitpos: [21]; default: 0; + * digital dcdc force power down + */ + +#define RTC_CNTL_CPU_TOP_FORCE_PD (BIT(21)) +#define RTC_CNTL_CPU_TOP_FORCE_PD_M (RTC_CNTL_CPU_TOP_FORCE_PD_V << RTC_CNTL_CPU_TOP_FORCE_PD_S) +#define RTC_CNTL_CPU_TOP_FORCE_PD_V 0x00000001 +#define RTC_CNTL_CPU_TOP_FORCE_PD_S 21 + +/* RTC_CNTL_DG_WRAP_FORCE_PU : R/W; bitpos: [20]; default: 1; + * digital core force power up + */ + +#define RTC_CNTL_DG_WRAP_FORCE_PU (BIT(20)) +#define RTC_CNTL_DG_WRAP_FORCE_PU_M (RTC_CNTL_DG_WRAP_FORCE_PU_V << RTC_CNTL_DG_WRAP_FORCE_PU_S) +#define RTC_CNTL_DG_WRAP_FORCE_PU_V 0x00000001 +#define RTC_CNTL_DG_WRAP_FORCE_PU_S 20 + +/* RTC_CNTL_DG_WRAP_FORCE_PD : R/W; bitpos: [19]; default: 0; + * digital core force power down + */ + +#define RTC_CNTL_DG_WRAP_FORCE_PD (BIT(19)) +#define RTC_CNTL_DG_WRAP_FORCE_PD_M (RTC_CNTL_DG_WRAP_FORCE_PD_V << RTC_CNTL_DG_WRAP_FORCE_PD_S) +#define RTC_CNTL_DG_WRAP_FORCE_PD_V 0x00000001 +#define RTC_CNTL_DG_WRAP_FORCE_PD_S 19 + +/* RTC_CNTL_WIFI_FORCE_PU : R/W; bitpos: [18]; default: 1; + * wifi force power up + */ + +#define RTC_CNTL_WIFI_FORCE_PU (BIT(18)) +#define RTC_CNTL_WIFI_FORCE_PU_M (RTC_CNTL_WIFI_FORCE_PU_V << RTC_CNTL_WIFI_FORCE_PU_S) +#define RTC_CNTL_WIFI_FORCE_PU_V 0x00000001 +#define RTC_CNTL_WIFI_FORCE_PU_S 18 + +/* RTC_CNTL_WIFI_FORCE_PD : R/W; bitpos: [17]; default: 0; + * wifi force power down + */ + +#define RTC_CNTL_WIFI_FORCE_PD (BIT(17)) +#define RTC_CNTL_WIFI_FORCE_PD_M (RTC_CNTL_WIFI_FORCE_PD_V << RTC_CNTL_WIFI_FORCE_PD_S) +#define RTC_CNTL_WIFI_FORCE_PD_V 0x00000001 +#define RTC_CNTL_WIFI_FORCE_PD_S 17 + +/* RTC_CNTL_DG_PERI_FORCE_PU : R/W; bitpos: [14]; default: 1; + * internal SRAM 3 force power up + */ + +#define RTC_CNTL_DG_PERI_FORCE_PU (BIT(14)) +#define RTC_CNTL_DG_PERI_FORCE_PU_M (RTC_CNTL_DG_PERI_FORCE_PU_V << RTC_CNTL_DG_PERI_FORCE_PU_S) +#define RTC_CNTL_DG_PERI_FORCE_PU_V 0x00000001 +#define RTC_CNTL_DG_PERI_FORCE_PU_S 14 + +/* RTC_CNTL_DG_PERI_FORCE_PD : R/W; bitpos: [13]; default: 0; + * internal SRAM 3 force power down + */ + +#define RTC_CNTL_DG_PERI_FORCE_PD (BIT(13)) +#define RTC_CNTL_DG_PERI_FORCE_PD_M (RTC_CNTL_DG_PERI_FORCE_PD_V << RTC_CNTL_DG_PERI_FORCE_PD_S) +#define RTC_CNTL_DG_PERI_FORCE_PD_V 0x00000001 +#define RTC_CNTL_DG_PERI_FORCE_PD_S 13 + +/* RTC_CNTL_BT_FORCE_PU : R/W; bitpos: [12]; default: 1; + * internal SRAM 2 force power up + */ + +#define RTC_CNTL_BT_FORCE_PU (BIT(12)) +#define RTC_CNTL_BT_FORCE_PU_M (RTC_CNTL_BT_FORCE_PU_V << RTC_CNTL_BT_FORCE_PU_S) +#define RTC_CNTL_BT_FORCE_PU_V 0x00000001 +#define RTC_CNTL_BT_FORCE_PU_S 12 + +/* RTC_CNTL_BT_FORCE_PD : R/W; bitpos: [11]; default: 0; + * internal SRAM 2 force power down + */ + +#define RTC_CNTL_BT_FORCE_PD (BIT(11)) +#define RTC_CNTL_BT_FORCE_PD_M (RTC_CNTL_BT_FORCE_PD_V << RTC_CNTL_BT_FORCE_PD_S) +#define RTC_CNTL_BT_FORCE_PD_V 0x00000001 +#define RTC_CNTL_BT_FORCE_PD_S 11 + +/* RTC_CNTL_LSLP_MEM_FORCE_PU : R/W; bitpos: [4]; default: 1; + * memories in digital core force no PD in sleep + */ + +#define RTC_CNTL_LSLP_MEM_FORCE_PU (BIT(4)) +#define RTC_CNTL_LSLP_MEM_FORCE_PU_M (RTC_CNTL_LSLP_MEM_FORCE_PU_V << RTC_CNTL_LSLP_MEM_FORCE_PU_S) +#define RTC_CNTL_LSLP_MEM_FORCE_PU_V 0x00000001 +#define RTC_CNTL_LSLP_MEM_FORCE_PU_S 4 + +/* RTC_CNTL_LSLP_MEM_FORCE_PD : R/W; bitpos: [3]; default: 0; + * memories in digital core force PD in sleep + */ + +#define RTC_CNTL_LSLP_MEM_FORCE_PD (BIT(3)) +#define RTC_CNTL_LSLP_MEM_FORCE_PD_M (RTC_CNTL_LSLP_MEM_FORCE_PD_V << RTC_CNTL_LSLP_MEM_FORCE_PD_S) +#define RTC_CNTL_LSLP_MEM_FORCE_PD_V 0x00000001 +#define RTC_CNTL_LSLP_MEM_FORCE_PD_S 3 + +/* RTC_CNTL_DIG_ISO_REG register + * congigure digital power isolation + */ + +#define RTC_CNTL_DIG_ISO_REG (DR_REG_RTCCNTL_BASE + 0x94) + +/* RTC_CNTL_DG_WRAP_FORCE_NOISO : R/W; bitpos: [31]; default: 1; + * digita core force no ISO + */ + +#define RTC_CNTL_DG_WRAP_FORCE_NOISO (BIT(31)) +#define RTC_CNTL_DG_WRAP_FORCE_NOISO_M (RTC_CNTL_DG_WRAP_FORCE_NOISO_V << RTC_CNTL_DG_WRAP_FORCE_NOISO_S) +#define RTC_CNTL_DG_WRAP_FORCE_NOISO_V 0x00000001 +#define RTC_CNTL_DG_WRAP_FORCE_NOISO_S 31 + +/* RTC_CNTL_DG_WRAP_FORCE_ISO : R/W; bitpos: [30]; default: 0; + * digital core force ISO + */ + +#define RTC_CNTL_DG_WRAP_FORCE_ISO (BIT(30)) +#define RTC_CNTL_DG_WRAP_FORCE_ISO_M (RTC_CNTL_DG_WRAP_FORCE_ISO_V << RTC_CNTL_DG_WRAP_FORCE_ISO_S) +#define RTC_CNTL_DG_WRAP_FORCE_ISO_V 0x00000001 +#define RTC_CNTL_DG_WRAP_FORCE_ISO_S 30 + +/* RTC_CNTL_WIFI_FORCE_NOISO : R/W; bitpos: [29]; default: 1; + * wifi force no ISO + */ + +#define RTC_CNTL_WIFI_FORCE_NOISO (BIT(29)) +#define RTC_CNTL_WIFI_FORCE_NOISO_M (RTC_CNTL_WIFI_FORCE_NOISO_V << RTC_CNTL_WIFI_FORCE_NOISO_S) +#define RTC_CNTL_WIFI_FORCE_NOISO_V 0x00000001 +#define RTC_CNTL_WIFI_FORCE_NOISO_S 29 + +/* RTC_CNTL_WIFI_FORCE_ISO : R/W; bitpos: [28]; default: 0; + * wifi force ISO + */ + +#define RTC_CNTL_WIFI_FORCE_ISO (BIT(28)) +#define RTC_CNTL_WIFI_FORCE_ISO_M (RTC_CNTL_WIFI_FORCE_ISO_V << RTC_CNTL_WIFI_FORCE_ISO_S) +#define RTC_CNTL_WIFI_FORCE_ISO_V 0x00000001 +#define RTC_CNTL_WIFI_FORCE_ISO_S 28 + +/* RTC_CNTL_CPU_TOP_FORCE_NOISO : R/W; bitpos: [27]; default: 1; + * internal SRAM 4 force no ISO + */ + +#define RTC_CNTL_CPU_TOP_FORCE_NOISO (BIT(27)) +#define RTC_CNTL_CPU_TOP_FORCE_NOISO_M (RTC_CNTL_CPU_TOP_FORCE_NOISO_V << RTC_CNTL_CPU_TOP_FORCE_NOISO_S) +#define RTC_CNTL_CPU_TOP_FORCE_NOISO_V 0x00000001 +#define RTC_CNTL_CPU_TOP_FORCE_NOISO_S 27 + +/* RTC_CNTL_CPU_TOP_FORCE_ISO : R/W; bitpos: [26]; default: 0; + * internal SRAM 4 force ISO + */ + +#define RTC_CNTL_CPU_TOP_FORCE_ISO (BIT(26)) +#define RTC_CNTL_CPU_TOP_FORCE_ISO_M (RTC_CNTL_CPU_TOP_FORCE_ISO_V << RTC_CNTL_CPU_TOP_FORCE_ISO_S) +#define RTC_CNTL_CPU_TOP_FORCE_ISO_V 0x00000001 +#define RTC_CNTL_CPU_TOP_FORCE_ISO_S 26 + +/* RTC_CNTL_DG_PERI_FORCE_NOISO : R/W; bitpos: [25]; default: 1; + * internal SRAM 3 force no ISO + */ + +#define RTC_CNTL_DG_PERI_FORCE_NOISO (BIT(25)) +#define RTC_CNTL_DG_PERI_FORCE_NOISO_M (RTC_CNTL_DG_PERI_FORCE_NOISO_V << RTC_CNTL_DG_PERI_FORCE_NOISO_S) +#define RTC_CNTL_DG_PERI_FORCE_NOISO_V 0x00000001 +#define RTC_CNTL_DG_PERI_FORCE_NOISO_S 25 + +/* RTC_CNTL_DG_PERI_FORCE_ISO : R/W; bitpos: [24]; default: 0; + * internal SRAM 3 force ISO + */ + +#define RTC_CNTL_DG_PERI_FORCE_ISO (BIT(24)) +#define RTC_CNTL_DG_PERI_FORCE_ISO_M (RTC_CNTL_DG_PERI_FORCE_ISO_V << RTC_CNTL_DG_PERI_FORCE_ISO_S) +#define RTC_CNTL_DG_PERI_FORCE_ISO_V 0x00000001 +#define RTC_CNTL_DG_PERI_FORCE_ISO_S 24 + +/* RTC_CNTL_BT_FORCE_NOISO : R/W; bitpos: [23]; default: 1; + * internal SRAM 2 force no ISO + */ + +#define RTC_CNTL_BT_FORCE_NOISO (BIT(23)) +#define RTC_CNTL_BT_FORCE_NOISO_M (RTC_CNTL_BT_FORCE_NOISO_V << RTC_CNTL_BT_FORCE_NOISO_S) +#define RTC_CNTL_BT_FORCE_NOISO_V 0x00000001 +#define RTC_CNTL_BT_FORCE_NOISO_S 23 + +/* RTC_CNTL_BT_FORCE_ISO : R/W; bitpos: [22]; default: 0; + * internal SRAM 2 force ISO + */ + +#define RTC_CNTL_BT_FORCE_ISO (BIT(22)) +#define RTC_CNTL_BT_FORCE_ISO_M (RTC_CNTL_BT_FORCE_ISO_V << RTC_CNTL_BT_FORCE_ISO_S) +#define RTC_CNTL_BT_FORCE_ISO_V 0x00000001 +#define RTC_CNTL_BT_FORCE_ISO_S 22 + +/* RTC_CNTL_DG_PAD_FORCE_HOLD : R/W; bitpos: [15]; default: 0; + * digital pad force hold + */ + +#define RTC_CNTL_DG_PAD_FORCE_HOLD (BIT(15)) +#define RTC_CNTL_DG_PAD_FORCE_HOLD_M (RTC_CNTL_DG_PAD_FORCE_HOLD_V << RTC_CNTL_DG_PAD_FORCE_HOLD_S) +#define RTC_CNTL_DG_PAD_FORCE_HOLD_V 0x00000001 +#define RTC_CNTL_DG_PAD_FORCE_HOLD_S 15 + +/* RTC_CNTL_DG_PAD_FORCE_UNHOLD : R/W; bitpos: [14]; default: 1; + * digital pad force un-hold + */ + +#define RTC_CNTL_DG_PAD_FORCE_UNHOLD (BIT(14)) +#define RTC_CNTL_DG_PAD_FORCE_UNHOLD_M (RTC_CNTL_DG_PAD_FORCE_UNHOLD_V << RTC_CNTL_DG_PAD_FORCE_UNHOLD_S) +#define RTC_CNTL_DG_PAD_FORCE_UNHOLD_V 0x00000001 +#define RTC_CNTL_DG_PAD_FORCE_UNHOLD_S 14 + +/* RTC_CNTL_DG_PAD_FORCE_ISO : R/W; bitpos: [13]; default: 0; + * digital pad force ISO + */ + +#define RTC_CNTL_DG_PAD_FORCE_ISO (BIT(13)) +#define RTC_CNTL_DG_PAD_FORCE_ISO_M (RTC_CNTL_DG_PAD_FORCE_ISO_V << RTC_CNTL_DG_PAD_FORCE_ISO_S) +#define RTC_CNTL_DG_PAD_FORCE_ISO_V 0x00000001 +#define RTC_CNTL_DG_PAD_FORCE_ISO_S 13 + +/* RTC_CNTL_DG_PAD_FORCE_NOISO : R/W; bitpos: [12]; default: 1; + * digital pad force no ISO + */ + +#define RTC_CNTL_DG_PAD_FORCE_NOISO (BIT(12)) +#define RTC_CNTL_DG_PAD_FORCE_NOISO_M (RTC_CNTL_DG_PAD_FORCE_NOISO_V << RTC_CNTL_DG_PAD_FORCE_NOISO_S) +#define RTC_CNTL_DG_PAD_FORCE_NOISO_V 0x00000001 +#define RTC_CNTL_DG_PAD_FORCE_NOISO_S 12 + +/* RTC_CNTL_DG_PAD_AUTOHOLD_EN : R/W; bitpos: [11]; default: 0; + * digital pad enable auto-hold + */ + +#define RTC_CNTL_DG_PAD_AUTOHOLD_EN (BIT(11)) +#define RTC_CNTL_DG_PAD_AUTOHOLD_EN_M (RTC_CNTL_DG_PAD_AUTOHOLD_EN_V << RTC_CNTL_DG_PAD_AUTOHOLD_EN_S) +#define RTC_CNTL_DG_PAD_AUTOHOLD_EN_V 0x00000001 +#define RTC_CNTL_DG_PAD_AUTOHOLD_EN_S 11 + +/* RTC_CNTL_CLR_DG_PAD_AUTOHOLD : WO; bitpos: [10]; default: 0; + * wtite only register to clear digital pad auto-hold + */ + +#define RTC_CNTL_CLR_DG_PAD_AUTOHOLD (BIT(10)) +#define RTC_CNTL_CLR_DG_PAD_AUTOHOLD_M (RTC_CNTL_CLR_DG_PAD_AUTOHOLD_V << RTC_CNTL_CLR_DG_PAD_AUTOHOLD_S) +#define RTC_CNTL_CLR_DG_PAD_AUTOHOLD_V 0x00000001 +#define RTC_CNTL_CLR_DG_PAD_AUTOHOLD_S 10 + +/* RTC_CNTL_DG_PAD_AUTOHOLD : RO; bitpos: [9]; default: 0; + * read only register to indicate digital pad auto-hold status + */ + +#define RTC_CNTL_DG_PAD_AUTOHOLD (BIT(9)) +#define RTC_CNTL_DG_PAD_AUTOHOLD_M (RTC_CNTL_DG_PAD_AUTOHOLD_V << RTC_CNTL_DG_PAD_AUTOHOLD_S) +#define RTC_CNTL_DG_PAD_AUTOHOLD_V 0x00000001 +#define RTC_CNTL_DG_PAD_AUTOHOLD_S 9 + +/* RTC_CNTL_DIG_ISO_FORCE_ON : R/W; bitpos: [8]; default: 0; + * No public + */ + +#define RTC_CNTL_DIG_ISO_FORCE_ON (BIT(8)) +#define RTC_CNTL_DIG_ISO_FORCE_ON_M (RTC_CNTL_DIG_ISO_FORCE_ON_V << RTC_CNTL_DIG_ISO_FORCE_ON_S) +#define RTC_CNTL_DIG_ISO_FORCE_ON_V 0x00000001 +#define RTC_CNTL_DIG_ISO_FORCE_ON_S 8 + +/* RTC_CNTL_DIG_ISO_FORCE_OFF : R/W; bitpos: [7]; default: 1; + * No public + */ + +#define RTC_CNTL_DIG_ISO_FORCE_OFF (BIT(7)) +#define RTC_CNTL_DIG_ISO_FORCE_OFF_M (RTC_CNTL_DIG_ISO_FORCE_OFF_V << RTC_CNTL_DIG_ISO_FORCE_OFF_S) +#define RTC_CNTL_DIG_ISO_FORCE_OFF_V 0x00000001 +#define RTC_CNTL_DIG_ISO_FORCE_OFF_S 7 + +/* RTC_CNTL_RTC_WDTCONFIG0_REG register + * configure rtc watch dog + */ + +#define RTC_CNTL_RTC_WDTCONFIG0_REG (DR_REG_RTCCNTL_BASE + 0x98) + +/* RTC_CNTL_WDT_EN : R/W; bitpos: [31]; default: 0; + * enable rtc watch dog + */ + +#define RTC_CNTL_WDT_EN (BIT(31)) +#define RTC_CNTL_WDT_EN_M (RTC_CNTL_WDT_EN_V << RTC_CNTL_WDT_EN_S) +#define RTC_CNTL_WDT_EN_V 0x00000001 +#define RTC_CNTL_WDT_EN_S 31 + +/* RTC_CNTL_WDT_STG0 : R/W; bitpos: [30:28]; default: 0; + * 1: interrupt stage en 2: CPU reset stage en 3: system reset stage en 4: + * RTC reset stage en + */ + +#define RTC_CNTL_WDT_STG0 0x00000007 +#define RTC_CNTL_WDT_STG0_M (RTC_CNTL_WDT_STG0_V << RTC_CNTL_WDT_STG0_S) +#define RTC_CNTL_WDT_STG0_V 0x00000007 +#define RTC_CNTL_WDT_STG0_S 28 + +/* RTC_CNTL_WDT_STG1 : R/W; bitpos: [27:25]; default: 0; + * 1: interrupt stage en 2: CPU reset stage en 3: system reset stage en 4: + * RTC reset stage en + */ + +#define RTC_CNTL_WDT_STG1 0x00000007 +#define RTC_CNTL_WDT_STG1_M (RTC_CNTL_WDT_STG1_V << RTC_CNTL_WDT_STG1_S) +#define RTC_CNTL_WDT_STG1_V 0x00000007 +#define RTC_CNTL_WDT_STG1_S 25 + +/* RTC_CNTL_WDT_STG2 : R/W; bitpos: [24:22]; default: 0; + * 1: interrupt stage en 2: CPU reset stage en 3: system reset stage en 4: + * RTC reset stage en + */ + +#define RTC_CNTL_WDT_STG2 0x00000007 +#define RTC_CNTL_WDT_STG2_M (RTC_CNTL_WDT_STG2_V << RTC_CNTL_WDT_STG2_S) +#define RTC_CNTL_WDT_STG2_V 0x00000007 +#define RTC_CNTL_WDT_STG2_S 22 + +/* RTC_CNTL_WDT_STG3 : R/W; bitpos: [21:19]; default: 0; + * 1: interrupt stage en 2: CPU reset stage en 3: system reset stage en 4: + * RTC reset stage en + */ + +#define RTC_CNTL_WDT_STG3 0x00000007 +#define RTC_CNTL_WDT_STG3_M (RTC_CNTL_WDT_STG3_V << RTC_CNTL_WDT_STG3_S) +#define RTC_CNTL_WDT_STG3_V 0x00000007 +#define RTC_CNTL_WDT_STG3_S 19 + +/* RTC_CNTL_WDT_CPU_RESET_LENGTH : R/W; bitpos: [18:16]; default: 1; + * CPU reset counter length + */ + +#define RTC_CNTL_WDT_CPU_RESET_LENGTH 0x00000007 +#define RTC_CNTL_WDT_CPU_RESET_LENGTH_M (RTC_CNTL_WDT_CPU_RESET_LENGTH_V << RTC_CNTL_WDT_CPU_RESET_LENGTH_S) +#define RTC_CNTL_WDT_CPU_RESET_LENGTH_V 0x00000007 +#define RTC_CNTL_WDT_CPU_RESET_LENGTH_S 16 + +/* RTC_CNTL_WDT_SYS_RESET_LENGTH : R/W; bitpos: [15:13]; default: 1; + * system reset counter length + */ + +#define RTC_CNTL_WDT_SYS_RESET_LENGTH 0x00000007 +#define RTC_CNTL_WDT_SYS_RESET_LENGTH_M (RTC_CNTL_WDT_SYS_RESET_LENGTH_V << RTC_CNTL_WDT_SYS_RESET_LENGTH_S) +#define RTC_CNTL_WDT_SYS_RESET_LENGTH_V 0x00000007 +#define RTC_CNTL_WDT_SYS_RESET_LENGTH_S 13 + +/* RTC_CNTL_WDT_FLASHBOOT_MOD_EN : R/W; bitpos: [12]; default: 1; + * enable WDT in flash boot + */ + +#define RTC_CNTL_WDT_FLASHBOOT_MOD_EN (BIT(12)) +#define RTC_CNTL_WDT_FLASHBOOT_MOD_EN_M (RTC_CNTL_WDT_FLASHBOOT_MOD_EN_V << RTC_CNTL_WDT_FLASHBOOT_MOD_EN_S) +#define RTC_CNTL_WDT_FLASHBOOT_MOD_EN_V 0x00000001 +#define RTC_CNTL_WDT_FLASHBOOT_MOD_EN_S 12 + +/* RTC_CNTL_WDT_PROCPU_RESET_EN : R/W; bitpos: [11]; default: 0; + * enable WDT reset PRO CPU + */ + +#define RTC_CNTL_WDT_PROCPU_RESET_EN (BIT(11)) +#define RTC_CNTL_WDT_PROCPU_RESET_EN_M (RTC_CNTL_WDT_PROCPU_RESET_EN_V << RTC_CNTL_WDT_PROCPU_RESET_EN_S) +#define RTC_CNTL_WDT_PROCPU_RESET_EN_V 0x00000001 +#define RTC_CNTL_WDT_PROCPU_RESET_EN_S 11 + +/* RTC_CNTL_WDT_APPCPU_RESET_EN : R/W; bitpos: [10]; default: 0; + * enable WDT reset APP CPU + */ + +#define RTC_CNTL_WDT_APPCPU_RESET_EN (BIT(10)) +#define RTC_CNTL_WDT_APPCPU_RESET_EN_M (RTC_CNTL_WDT_APPCPU_RESET_EN_V << RTC_CNTL_WDT_APPCPU_RESET_EN_S) +#define RTC_CNTL_WDT_APPCPU_RESET_EN_V 0x00000001 +#define RTC_CNTL_WDT_APPCPU_RESET_EN_S 10 + +/* RTC_CNTL_WDT_PAUSE_IN_SLP : R/W; bitpos: [9]; default: 1; + * pause WDT in sleep + */ + +#define RTC_CNTL_WDT_PAUSE_IN_SLP (BIT(9)) +#define RTC_CNTL_WDT_PAUSE_IN_SLP_M (RTC_CNTL_WDT_PAUSE_IN_SLP_V << RTC_CNTL_WDT_PAUSE_IN_SLP_S) +#define RTC_CNTL_WDT_PAUSE_IN_SLP_V 0x00000001 +#define RTC_CNTL_WDT_PAUSE_IN_SLP_S 9 + +/* RTC_CNTL_WDT_CHIP_RESET_EN : R/W; bitpos: [8]; default: 0; + * wdt reset whole chip enable + */ + +#define RTC_CNTL_WDT_CHIP_RESET_EN (BIT(8)) +#define RTC_CNTL_WDT_CHIP_RESET_EN_M (RTC_CNTL_WDT_CHIP_RESET_EN_V << RTC_CNTL_WDT_CHIP_RESET_EN_S) +#define RTC_CNTL_WDT_CHIP_RESET_EN_V 0x00000001 +#define RTC_CNTL_WDT_CHIP_RESET_EN_S 8 + +/* RTC_CNTL_WDT_CHIP_RESET_WIDTH : R/W; bitpos: [7:0]; default: 20; + * chip reset siginal pulse width + */ + +#define RTC_CNTL_WDT_CHIP_RESET_WIDTH 0x000000ff +#define RTC_CNTL_WDT_CHIP_RESET_WIDTH_M (RTC_CNTL_WDT_CHIP_RESET_WIDTH_V << RTC_CNTL_WDT_CHIP_RESET_WIDTH_S) +#define RTC_CNTL_WDT_CHIP_RESET_WIDTH_V 0x000000ff +#define RTC_CNTL_WDT_CHIP_RESET_WIDTH_S 0 + +/* RTC_CNTL_RTC_WDTCONFIG1_REG register + * stage0 hold time + */ + +#define RTC_CNTL_RTC_WDTCONFIG1_REG (DR_REG_RTCCNTL_BASE + 0x9c) + +/* RTC_CNTL_WDT_STG0_HOLD : R/W; bitpos: [31:0]; default: 200000; + * stage0 hold time + */ + +#define RTC_CNTL_WDT_STG0_HOLD 0xffffffff +#define RTC_CNTL_WDT_STG0_HOLD_M (RTC_CNTL_WDT_STG0_HOLD_V << RTC_CNTL_WDT_STG0_HOLD_S) +#define RTC_CNTL_WDT_STG0_HOLD_V 0xffffffff +#define RTC_CNTL_WDT_STG0_HOLD_S 0 + +/* RTC_CNTL_RTC_WDTCONFIG2_REG register + * stage1 hold time + */ + +#define RTC_CNTL_RTC_WDTCONFIG2_REG (DR_REG_RTCCNTL_BASE + 0xa0) + +/* RTC_CNTL_WDT_STG1_HOLD : R/W; bitpos: [31:0]; default: 80000; + * stage1 hold time + */ + +#define RTC_CNTL_WDT_STG1_HOLD 0xffffffff +#define RTC_CNTL_WDT_STG1_HOLD_M (RTC_CNTL_WDT_STG1_HOLD_V << RTC_CNTL_WDT_STG1_HOLD_S) +#define RTC_CNTL_WDT_STG1_HOLD_V 0xffffffff +#define RTC_CNTL_WDT_STG1_HOLD_S 0 + +/* RTC_CNTL_RTC_WDTCONFIG3_REG register + * stage2 hold time + */ + +#define RTC_CNTL_RTC_WDTCONFIG3_REG (DR_REG_RTCCNTL_BASE + 0xa4) + +/* RTC_CNTL_WDT_STG2_HOLD : R/W; bitpos: [31:0]; default: 4095; + * stage2 hold time + */ + +#define RTC_CNTL_WDT_STG2_HOLD 0xffffffff +#define RTC_CNTL_WDT_STG2_HOLD_M (RTC_CNTL_WDT_STG2_HOLD_V << RTC_CNTL_WDT_STG2_HOLD_S) +#define RTC_CNTL_WDT_STG2_HOLD_V 0xffffffff +#define RTC_CNTL_WDT_STG2_HOLD_S 0 + +/* RTC_CNTL_RTC_WDTCONFIG4_REG register + * stage3 hold time + */ + +#define RTC_CNTL_RTC_WDTCONFIG4_REG (DR_REG_RTCCNTL_BASE + 0xa8) + +/* RTC_CNTL_WDT_STG3_HOLD : R/W; bitpos: [31:0]; default: 4095; + * stage3 hold time + */ + +#define RTC_CNTL_WDT_STG3_HOLD 0xffffffff +#define RTC_CNTL_WDT_STG3_HOLD_M (RTC_CNTL_WDT_STG3_HOLD_V << RTC_CNTL_WDT_STG3_HOLD_S) +#define RTC_CNTL_WDT_STG3_HOLD_V 0xffffffff +#define RTC_CNTL_WDT_STG3_HOLD_S 0 + +/* RTC_CNTL_RTC_WDTFEED_REG register + * rtc wdt feed + */ + +#define RTC_CNTL_RTC_WDTFEED_REG (DR_REG_RTCCNTL_BASE + 0xac) + +/* RTC_CNTL_RTC_WDT_FEED : WO; bitpos: [31]; default: 0; + * rtc wdt feed + */ + +#define RTC_CNTL_RTC_WDT_FEED (BIT(31)) +#define RTC_CNTL_RTC_WDT_FEED_M (RTC_CNTL_RTC_WDT_FEED_V << RTC_CNTL_RTC_WDT_FEED_S) +#define RTC_CNTL_RTC_WDT_FEED_V 0x00000001 +#define RTC_CNTL_RTC_WDT_FEED_S 31 + +/* RTC_CNTL_RTC_WDTWPROTECT_REG register + * configure rtc watch dog + */ + +#define RTC_CNTL_RTC_WDTWPROTECT_REG (DR_REG_RTCCNTL_BASE + 0xb0) + +/* RTC_CNTL_WDT_WKEY : R/W; bitpos: [31:0]; default: 1356348065; + * rtc watch dog key + */ + +#define RTC_CNTL_WDT_WKEY 0xffffffff +#define RTC_CNTL_WDT_WKEY_M (RTC_CNTL_WDT_WKEY_V << RTC_CNTL_WDT_WKEY_S) +#define RTC_CNTL_WDT_WKEY_V 0xffffffff +#define RTC_CNTL_WDT_WKEY_S 0 + +/* RTC_CNTL_RTC_SWD_CONF_REG register + * congfigure super watch dog + */ + +#define RTC_CNTL_RTC_SWD_CONF_REG (DR_REG_RTCCNTL_BASE + 0xb4) + +/* RTC_CNTL_SWD_AUTO_FEED_EN : R/W; bitpos: [31]; default: 0; + * automatically feed swd when int comes + */ + +#define RTC_CNTL_SWD_AUTO_FEED_EN (BIT(31)) +#define RTC_CNTL_SWD_AUTO_FEED_EN_M (RTC_CNTL_SWD_AUTO_FEED_EN_V << RTC_CNTL_SWD_AUTO_FEED_EN_S) +#define RTC_CNTL_SWD_AUTO_FEED_EN_V 0x00000001 +#define RTC_CNTL_SWD_AUTO_FEED_EN_S 31 + +/* RTC_CNTL_SWD_DISABLE : R/W; bitpos: [30]; default: 0; + * disabel SWD + */ + +#define RTC_CNTL_SWD_DISABLE (BIT(30)) +#define RTC_CNTL_SWD_DISABLE_M (RTC_CNTL_SWD_DISABLE_V << RTC_CNTL_SWD_DISABLE_S) +#define RTC_CNTL_SWD_DISABLE_V 0x00000001 +#define RTC_CNTL_SWD_DISABLE_S 30 + +/* RTC_CNTL_SWD_FEED : WO; bitpos: [29]; default: 0; + * Sw feed swd + */ + +#define RTC_CNTL_SWD_FEED (BIT(29)) +#define RTC_CNTL_SWD_FEED_M (RTC_CNTL_SWD_FEED_V << RTC_CNTL_SWD_FEED_S) +#define RTC_CNTL_SWD_FEED_V 0x00000001 +#define RTC_CNTL_SWD_FEED_S 29 + +/* RTC_CNTL_SWD_RST_FLAG_CLR : WO; bitpos: [28]; default: 0; + * reset swd reset flag + */ + +#define RTC_CNTL_SWD_RST_FLAG_CLR (BIT(28)) +#define RTC_CNTL_SWD_RST_FLAG_CLR_M (RTC_CNTL_SWD_RST_FLAG_CLR_V << RTC_CNTL_SWD_RST_FLAG_CLR_S) +#define RTC_CNTL_SWD_RST_FLAG_CLR_V 0x00000001 +#define RTC_CNTL_SWD_RST_FLAG_CLR_S 28 + +/* RTC_CNTL_SWD_SIGNAL_WIDTH : R/W; bitpos: [27:18]; default: 300; + * adjust signal width send to swd + */ + +#define RTC_CNTL_SWD_SIGNAL_WIDTH 0x000003ff +#define RTC_CNTL_SWD_SIGNAL_WIDTH_M (RTC_CNTL_SWD_SIGNAL_WIDTH_V << RTC_CNTL_SWD_SIGNAL_WIDTH_S) +#define RTC_CNTL_SWD_SIGNAL_WIDTH_V 0x000003ff +#define RTC_CNTL_SWD_SIGNAL_WIDTH_S 18 + +/* RTC_CNTL_SWD_BYPASS_RST : R/W; bitpos: [17]; default: 0; + * bypass super watch dog reset + */ + +#define RTC_CNTL_SWD_BYPASS_RST (BIT(17)) +#define RTC_CNTL_SWD_BYPASS_RST_M (RTC_CNTL_SWD_BYPASS_RST_V << RTC_CNTL_SWD_BYPASS_RST_S) +#define RTC_CNTL_SWD_BYPASS_RST_V 0x00000001 +#define RTC_CNTL_SWD_BYPASS_RST_S 17 + +/* RTC_CNTL_SWD_FEED_INT : RO; bitpos: [1]; default: 0; + * swd interrupt for feeding + */ + +#define RTC_CNTL_SWD_FEED_INT (BIT(1)) +#define RTC_CNTL_SWD_FEED_INT_M (RTC_CNTL_SWD_FEED_INT_V << RTC_CNTL_SWD_FEED_INT_S) +#define RTC_CNTL_SWD_FEED_INT_V 0x00000001 +#define RTC_CNTL_SWD_FEED_INT_S 1 + +/* RTC_CNTL_SWD_RESET_FLAG : RO; bitpos: [0]; default: 0; + * swd reset flag + */ + +#define RTC_CNTL_SWD_RESET_FLAG (BIT(0)) +#define RTC_CNTL_SWD_RESET_FLAG_M (RTC_CNTL_SWD_RESET_FLAG_V << RTC_CNTL_SWD_RESET_FLAG_S) +#define RTC_CNTL_SWD_RESET_FLAG_V 0x00000001 +#define RTC_CNTL_SWD_RESET_FLAG_S 0 + +/* RTC_CNTL_RTC_SWD_WPROTECT_REG register + * super watch dog key + */ + +#define RTC_CNTL_RTC_SWD_WPROTECT_REG (DR_REG_RTCCNTL_BASE + 0xb8) + +/* RTC_CNTL_SWD_WKEY : R/W; bitpos: [31:0]; default: 2401055018; + * super watch dog key + */ + +#define RTC_CNTL_SWD_WKEY 0xffffffff +#define RTC_CNTL_SWD_WKEY_M (RTC_CNTL_SWD_WKEY_V << RTC_CNTL_SWD_WKEY_S) +#define RTC_CNTL_SWD_WKEY_V 0xffffffff +#define RTC_CNTL_SWD_WKEY_S 0 + +/* RTC_CNTL_RTC_SW_CPU_STALL_REG register + * configure cpu stall by sw + */ + +#define RTC_CNTL_RTC_SW_CPU_STALL_REG (DR_REG_RTCCNTL_BASE + 0xbc) + +/* RTC_CNTL_SW_STALL_PROCPU_C1 : R/W; bitpos: [31:26]; default: 0; + * {reg_sw_stall_appcpu_c1[5:0], reg_sw_stall_appcpu_c0[1:0]} == 0x86 will + * stall APP CPU + */ + +#define RTC_CNTL_SW_STALL_PROCPU_C1 0x0000003f +#define RTC_CNTL_SW_STALL_PROCPU_C1_M (RTC_CNTL_SW_STALL_PROCPU_C1_V << RTC_CNTL_SW_STALL_PROCPU_C1_S) +#define RTC_CNTL_SW_STALL_PROCPU_C1_V 0x0000003f +#define RTC_CNTL_SW_STALL_PROCPU_C1_S 26 + +/* RTC_CNTL_SW_STALL_APPCPU_C1 : R/W; bitpos: [25:20]; default: 0; + * {reg_sw_stall_appcpu_c1[5:0], reg_sw_stall_appcpu_c0[1:0]} == 0x86 will + * stall APP CPU + */ + +#define RTC_CNTL_SW_STALL_APPCPU_C1 0x0000003f +#define RTC_CNTL_SW_STALL_APPCPU_C1_M (RTC_CNTL_SW_STALL_APPCPU_C1_V << RTC_CNTL_SW_STALL_APPCPU_C1_S) +#define RTC_CNTL_SW_STALL_APPCPU_C1_V 0x0000003f +#define RTC_CNTL_SW_STALL_APPCPU_C1_S 20 + +/* RTC_CNTL_RTC_STORE4_REG register + * reserved register + */ + +#define RTC_CNTL_RTC_STORE4_REG (DR_REG_RTCCNTL_BASE + 0xc0) + +/* RTC_CNTL_RTC_SCRATCH4 : R/W; bitpos: [31:0]; default: 0; + * reserved register + */ + +#define RTC_CNTL_RTC_SCRATCH4 0xffffffff +#define RTC_CNTL_RTC_SCRATCH4_M (RTC_CNTL_RTC_SCRATCH4_V << RTC_CNTL_RTC_SCRATCH4_S) +#define RTC_CNTL_RTC_SCRATCH4_V 0xffffffff +#define RTC_CNTL_RTC_SCRATCH4_S 0 + +/* RTC_CNTL_RTC_STORE5_REG register + * reserved register + */ + +#define RTC_CNTL_RTC_STORE5_REG (DR_REG_RTCCNTL_BASE + 0xc4) + +/* RTC_CNTL_RTC_SCRATCH5 : R/W; bitpos: [31:0]; default: 0; + * reserved register + */ + +#define RTC_CNTL_RTC_SCRATCH5 0xffffffff +#define RTC_CNTL_RTC_SCRATCH5_M (RTC_CNTL_RTC_SCRATCH5_V << RTC_CNTL_RTC_SCRATCH5_S) +#define RTC_CNTL_RTC_SCRATCH5_V 0xffffffff +#define RTC_CNTL_RTC_SCRATCH5_S 0 + +/* RTC_CNTL_RTC_STORE6_REG register + * reserved register + */ + +#define RTC_CNTL_RTC_STORE6_REG (DR_REG_RTCCNTL_BASE + 0xc8) + +/* RTC_CNTL_RTC_SCRATCH6 : R/W; bitpos: [31:0]; default: 0; + * reserved register + */ + +#define RTC_CNTL_RTC_SCRATCH6 0xffffffff +#define RTC_CNTL_RTC_SCRATCH6_M (RTC_CNTL_RTC_SCRATCH6_V << RTC_CNTL_RTC_SCRATCH6_S) +#define RTC_CNTL_RTC_SCRATCH6_V 0xffffffff +#define RTC_CNTL_RTC_SCRATCH6_S 0 + +/* RTC_CNTL_RTC_STORE7_REG register + * reserved register + */ + +#define RTC_CNTL_RTC_STORE7_REG (DR_REG_RTCCNTL_BASE + 0xcc) + +/* RTC_CNTL_RTC_SCRATCH7 : R/W; bitpos: [31:0]; default: 0; + * reserved register + */ + +#define RTC_CNTL_RTC_SCRATCH7 0xffffffff +#define RTC_CNTL_RTC_SCRATCH7_M (RTC_CNTL_RTC_SCRATCH7_V << RTC_CNTL_RTC_SCRATCH7_S) +#define RTC_CNTL_RTC_SCRATCH7_V 0xffffffff +#define RTC_CNTL_RTC_SCRATCH7_S 0 + +/* RTC_CNTL_RTC_LOW_POWER_ST_REG register + * reserved register + */ + +#define RTC_CNTL_RTC_LOW_POWER_ST_REG (DR_REG_RTCCNTL_BASE + 0xd0) + +/* RTC_CNTL_RTC_MAIN_STATE : RO; bitpos: [31:28]; default: 0; + * rtc main state machine status + */ + +#define RTC_CNTL_RTC_MAIN_STATE 0x0000000f +#define RTC_CNTL_RTC_MAIN_STATE_M (RTC_CNTL_RTC_MAIN_STATE_V << RTC_CNTL_RTC_MAIN_STATE_S) +#define RTC_CNTL_RTC_MAIN_STATE_V 0x0000000f +#define RTC_CNTL_RTC_MAIN_STATE_S 28 + +/* RTC_CNTL_RTC_MAIN_STATE_IN_IDLE : RO; bitpos: [27]; default: 0; + * rtc main state machine is in idle state + */ + +#define RTC_CNTL_RTC_MAIN_STATE_IN_IDLE (BIT(27)) +#define RTC_CNTL_RTC_MAIN_STATE_IN_IDLE_M (RTC_CNTL_RTC_MAIN_STATE_IN_IDLE_V << RTC_CNTL_RTC_MAIN_STATE_IN_IDLE_S) +#define RTC_CNTL_RTC_MAIN_STATE_IN_IDLE_V 0x00000001 +#define RTC_CNTL_RTC_MAIN_STATE_IN_IDLE_S 27 + +/* RTC_CNTL_RTC_MAIN_STATE_IN_SLP : RO; bitpos: [26]; default: 0; + * rtc main state machine is in sleep state + */ + +#define RTC_CNTL_RTC_MAIN_STATE_IN_SLP (BIT(26)) +#define RTC_CNTL_RTC_MAIN_STATE_IN_SLP_M (RTC_CNTL_RTC_MAIN_STATE_IN_SLP_V << RTC_CNTL_RTC_MAIN_STATE_IN_SLP_S) +#define RTC_CNTL_RTC_MAIN_STATE_IN_SLP_V 0x00000001 +#define RTC_CNTL_RTC_MAIN_STATE_IN_SLP_S 26 + +/* RTC_CNTL_RTC_MAIN_STATE_IN_WAIT_XTL : RO; bitpos: [25]; default: 0; + * rtc main state machine is in wait xtal state + */ + +#define RTC_CNTL_RTC_MAIN_STATE_IN_WAIT_XTL (BIT(25)) +#define RTC_CNTL_RTC_MAIN_STATE_IN_WAIT_XTL_M (RTC_CNTL_RTC_MAIN_STATE_IN_WAIT_XTL_V << RTC_CNTL_RTC_MAIN_STATE_IN_WAIT_XTL_S) +#define RTC_CNTL_RTC_MAIN_STATE_IN_WAIT_XTL_V 0x00000001 +#define RTC_CNTL_RTC_MAIN_STATE_IN_WAIT_XTL_S 25 + +/* RTC_CNTL_RTC_MAIN_STATE_IN_WAIT_PLL : RO; bitpos: [24]; default: 0; + * rtc main state machine is in wait pll state + */ + +#define RTC_CNTL_RTC_MAIN_STATE_IN_WAIT_PLL (BIT(24)) +#define RTC_CNTL_RTC_MAIN_STATE_IN_WAIT_PLL_M (RTC_CNTL_RTC_MAIN_STATE_IN_WAIT_PLL_V << RTC_CNTL_RTC_MAIN_STATE_IN_WAIT_PLL_S) +#define RTC_CNTL_RTC_MAIN_STATE_IN_WAIT_PLL_V 0x00000001 +#define RTC_CNTL_RTC_MAIN_STATE_IN_WAIT_PLL_S 24 + +/* RTC_CNTL_RTC_MAIN_STATE_IN_WAIT_8M : RO; bitpos: [23]; default: 0; + * rtc main state machine is in wait 8m state + */ + +#define RTC_CNTL_RTC_MAIN_STATE_IN_WAIT_8M (BIT(23)) +#define RTC_CNTL_RTC_MAIN_STATE_IN_WAIT_8M_M (RTC_CNTL_RTC_MAIN_STATE_IN_WAIT_8M_V << RTC_CNTL_RTC_MAIN_STATE_IN_WAIT_8M_S) +#define RTC_CNTL_RTC_MAIN_STATE_IN_WAIT_8M_V 0x00000001 +#define RTC_CNTL_RTC_MAIN_STATE_IN_WAIT_8M_S 23 + +/* RTC_CNTL_RTC_IN_LOW_POWER_STATE : RO; bitpos: [22]; default: 0; + * rtc main state machine is in the states of low power + */ + +#define RTC_CNTL_RTC_IN_LOW_POWER_STATE (BIT(22)) +#define RTC_CNTL_RTC_IN_LOW_POWER_STATE_M (RTC_CNTL_RTC_IN_LOW_POWER_STATE_V << RTC_CNTL_RTC_IN_LOW_POWER_STATE_S) +#define RTC_CNTL_RTC_IN_LOW_POWER_STATE_V 0x00000001 +#define RTC_CNTL_RTC_IN_LOW_POWER_STATE_S 22 + +/* RTC_CNTL_RTC_IN_WAKEUP_STATE : RO; bitpos: [21]; default: 0; + * rtc main state machine is in the states of wakeup process + */ + +#define RTC_CNTL_RTC_IN_WAKEUP_STATE (BIT(21)) +#define RTC_CNTL_RTC_IN_WAKEUP_STATE_M (RTC_CNTL_RTC_IN_WAKEUP_STATE_V << RTC_CNTL_RTC_IN_WAKEUP_STATE_S) +#define RTC_CNTL_RTC_IN_WAKEUP_STATE_V 0x00000001 +#define RTC_CNTL_RTC_IN_WAKEUP_STATE_S 21 + +/* RTC_CNTL_RTC_MAIN_STATE_WAIT_END : RO; bitpos: [20]; default: 0; + * rtc main state machine has been waited for some cycles + */ + +#define RTC_CNTL_RTC_MAIN_STATE_WAIT_END (BIT(20)) +#define RTC_CNTL_RTC_MAIN_STATE_WAIT_END_M (RTC_CNTL_RTC_MAIN_STATE_WAIT_END_V << RTC_CNTL_RTC_MAIN_STATE_WAIT_END_S) +#define RTC_CNTL_RTC_MAIN_STATE_WAIT_END_V 0x00000001 +#define RTC_CNTL_RTC_MAIN_STATE_WAIT_END_S 20 + +/* RTC_CNTL_RTC_RDY_FOR_WAKEUP : RO; bitpos: [19]; default: 0; + * rtc is ready to receive wake up trigger from wake up source + */ + +#define RTC_CNTL_RTC_RDY_FOR_WAKEUP (BIT(19)) +#define RTC_CNTL_RTC_RDY_FOR_WAKEUP_M (RTC_CNTL_RTC_RDY_FOR_WAKEUP_V << RTC_CNTL_RTC_RDY_FOR_WAKEUP_S) +#define RTC_CNTL_RTC_RDY_FOR_WAKEUP_V 0x00000001 +#define RTC_CNTL_RTC_RDY_FOR_WAKEUP_S 19 + +/* RTC_CNTL_RTC_MAIN_STATE_PLL_ON : RO; bitpos: [18]; default: 0; + * rtc main state machine is in states that pll should be running + */ + +#define RTC_CNTL_RTC_MAIN_STATE_PLL_ON (BIT(18)) +#define RTC_CNTL_RTC_MAIN_STATE_PLL_ON_M (RTC_CNTL_RTC_MAIN_STATE_PLL_ON_V << RTC_CNTL_RTC_MAIN_STATE_PLL_ON_S) +#define RTC_CNTL_RTC_MAIN_STATE_PLL_ON_V 0x00000001 +#define RTC_CNTL_RTC_MAIN_STATE_PLL_ON_S 18 + +/* RTC_CNTL_RTC_MAIN_STATE_XTAL_ISO : RO; bitpos: [17]; default: 0; + * no use any more + */ + +#define RTC_CNTL_RTC_MAIN_STATE_XTAL_ISO (BIT(17)) +#define RTC_CNTL_RTC_MAIN_STATE_XTAL_ISO_M (RTC_CNTL_RTC_MAIN_STATE_XTAL_ISO_V << RTC_CNTL_RTC_MAIN_STATE_XTAL_ISO_S) +#define RTC_CNTL_RTC_MAIN_STATE_XTAL_ISO_V 0x00000001 +#define RTC_CNTL_RTC_MAIN_STATE_XTAL_ISO_S 17 + +/* RTC_CNTL_RTC_COCPU_STATE_DONE : RO; bitpos: [16]; default: 0; + * ulp/cocpu is done + */ + +#define RTC_CNTL_RTC_COCPU_STATE_DONE (BIT(16)) +#define RTC_CNTL_RTC_COCPU_STATE_DONE_M (RTC_CNTL_RTC_COCPU_STATE_DONE_V << RTC_CNTL_RTC_COCPU_STATE_DONE_S) +#define RTC_CNTL_RTC_COCPU_STATE_DONE_V 0x00000001 +#define RTC_CNTL_RTC_COCPU_STATE_DONE_S 16 + +/* RTC_CNTL_RTC_COCPU_STATE_SLP : RO; bitpos: [15]; default: 0; + * ulp/cocpu is in sleep state + */ + +#define RTC_CNTL_RTC_COCPU_STATE_SLP (BIT(15)) +#define RTC_CNTL_RTC_COCPU_STATE_SLP_M (RTC_CNTL_RTC_COCPU_STATE_SLP_V << RTC_CNTL_RTC_COCPU_STATE_SLP_S) +#define RTC_CNTL_RTC_COCPU_STATE_SLP_V 0x00000001 +#define RTC_CNTL_RTC_COCPU_STATE_SLP_S 15 + +/* RTC_CNTL_RTC_COCPU_STATE_SWITCH : RO; bitpos: [14]; default: 0; + * ulp/cocpu is about to working. Switch rtc main state + */ + +#define RTC_CNTL_RTC_COCPU_STATE_SWITCH (BIT(14)) +#define RTC_CNTL_RTC_COCPU_STATE_SWITCH_M (RTC_CNTL_RTC_COCPU_STATE_SWITCH_V << RTC_CNTL_RTC_COCPU_STATE_SWITCH_S) +#define RTC_CNTL_RTC_COCPU_STATE_SWITCH_V 0x00000001 +#define RTC_CNTL_RTC_COCPU_STATE_SWITCH_S 14 + +/* RTC_CNTL_RTC_COCPU_STATE_START : RO; bitpos: [13]; default: 0; + * ulp/cocpu should start to work + */ + +#define RTC_CNTL_RTC_COCPU_STATE_START (BIT(13)) +#define RTC_CNTL_RTC_COCPU_STATE_START_M (RTC_CNTL_RTC_COCPU_STATE_START_V << RTC_CNTL_RTC_COCPU_STATE_START_S) +#define RTC_CNTL_RTC_COCPU_STATE_START_V 0x00000001 +#define RTC_CNTL_RTC_COCPU_STATE_START_S 13 + +/* RTC_CNTL_RTC_TOUCH_STATE_DONE : RO; bitpos: [12]; default: 0; + * touch is done + */ + +#define RTC_CNTL_RTC_TOUCH_STATE_DONE (BIT(12)) +#define RTC_CNTL_RTC_TOUCH_STATE_DONE_M (RTC_CNTL_RTC_TOUCH_STATE_DONE_V << RTC_CNTL_RTC_TOUCH_STATE_DONE_S) +#define RTC_CNTL_RTC_TOUCH_STATE_DONE_V 0x00000001 +#define RTC_CNTL_RTC_TOUCH_STATE_DONE_S 12 + +/* RTC_CNTL_RTC_TOUCH_STATE_SLP : RO; bitpos: [11]; default: 0; + * touch is in sleep state + */ + +#define RTC_CNTL_RTC_TOUCH_STATE_SLP (BIT(11)) +#define RTC_CNTL_RTC_TOUCH_STATE_SLP_M (RTC_CNTL_RTC_TOUCH_STATE_SLP_V << RTC_CNTL_RTC_TOUCH_STATE_SLP_S) +#define RTC_CNTL_RTC_TOUCH_STATE_SLP_V 0x00000001 +#define RTC_CNTL_RTC_TOUCH_STATE_SLP_S 11 + +/* RTC_CNTL_RTC_TOUCH_STATE_SWITCH : RO; bitpos: [10]; default: 0; + * touch is about to working. Switch rtc main state + */ + +#define RTC_CNTL_RTC_TOUCH_STATE_SWITCH (BIT(10)) +#define RTC_CNTL_RTC_TOUCH_STATE_SWITCH_M (RTC_CNTL_RTC_TOUCH_STATE_SWITCH_V << RTC_CNTL_RTC_TOUCH_STATE_SWITCH_S) +#define RTC_CNTL_RTC_TOUCH_STATE_SWITCH_V 0x00000001 +#define RTC_CNTL_RTC_TOUCH_STATE_SWITCH_S 10 + +/* RTC_CNTL_RTC_TOUCH_STATE_START : RO; bitpos: [9]; default: 0; + * touch should start to work + */ + +#define RTC_CNTL_RTC_TOUCH_STATE_START (BIT(9)) +#define RTC_CNTL_RTC_TOUCH_STATE_START_M (RTC_CNTL_RTC_TOUCH_STATE_START_V << RTC_CNTL_RTC_TOUCH_STATE_START_S) +#define RTC_CNTL_RTC_TOUCH_STATE_START_V 0x00000001 +#define RTC_CNTL_RTC_TOUCH_STATE_START_S 9 + +/* RTC_CNTL_XPD_DIG : RO; bitpos: [8]; default: 0; + * digital wrap power down + */ + +#define RTC_CNTL_XPD_DIG (BIT(8)) +#define RTC_CNTL_XPD_DIG_M (RTC_CNTL_XPD_DIG_V << RTC_CNTL_XPD_DIG_S) +#define RTC_CNTL_XPD_DIG_V 0x00000001 +#define RTC_CNTL_XPD_DIG_S 8 + +/* RTC_CNTL_DIG_ISO : RO; bitpos: [7]; default: 0; + * digital wrap iso + */ + +#define RTC_CNTL_DIG_ISO (BIT(7)) +#define RTC_CNTL_DIG_ISO_M (RTC_CNTL_DIG_ISO_V << RTC_CNTL_DIG_ISO_S) +#define RTC_CNTL_DIG_ISO_V 0x00000001 +#define RTC_CNTL_DIG_ISO_S 7 + +/* RTC_CNTL_XPD_WIFI : RO; bitpos: [6]; default: 0; + * wifi wrap power down + */ + +#define RTC_CNTL_XPD_WIFI (BIT(6)) +#define RTC_CNTL_XPD_WIFI_M (RTC_CNTL_XPD_WIFI_V << RTC_CNTL_XPD_WIFI_S) +#define RTC_CNTL_XPD_WIFI_V 0x00000001 +#define RTC_CNTL_XPD_WIFI_S 6 + +/* RTC_CNTL_WIFI_ISO : RO; bitpos: [5]; default: 0; + * wifi iso + */ + +#define RTC_CNTL_WIFI_ISO (BIT(5)) +#define RTC_CNTL_WIFI_ISO_M (RTC_CNTL_WIFI_ISO_V << RTC_CNTL_WIFI_ISO_S) +#define RTC_CNTL_WIFI_ISO_V 0x00000001 +#define RTC_CNTL_WIFI_ISO_S 5 + +/* RTC_CNTL_XPD_RTC_PERI : RO; bitpos: [4]; default: 0; + * rtc peripheral power down + */ + +#define RTC_CNTL_XPD_RTC_PERI (BIT(4)) +#define RTC_CNTL_XPD_RTC_PERI_M (RTC_CNTL_XPD_RTC_PERI_V << RTC_CNTL_XPD_RTC_PERI_S) +#define RTC_CNTL_XPD_RTC_PERI_V 0x00000001 +#define RTC_CNTL_XPD_RTC_PERI_S 4 + +/* RTC_CNTL_RTC_PERI_ISO : RO; bitpos: [3]; default: 0; + * rtc peripheral iso + */ + +#define RTC_CNTL_RTC_PERI_ISO (BIT(3)) +#define RTC_CNTL_RTC_PERI_ISO_M (RTC_CNTL_RTC_PERI_ISO_V << RTC_CNTL_RTC_PERI_ISO_S) +#define RTC_CNTL_RTC_PERI_ISO_V 0x00000001 +#define RTC_CNTL_RTC_PERI_ISO_S 3 + +/* RTC_CNTL_XPD_DIG_DCDC : RO; bitpos: [2]; default: 0; + * External DCDC power down + */ + +#define RTC_CNTL_XPD_DIG_DCDC (BIT(2)) +#define RTC_CNTL_XPD_DIG_DCDC_M (RTC_CNTL_XPD_DIG_DCDC_V << RTC_CNTL_XPD_DIG_DCDC_S) +#define RTC_CNTL_XPD_DIG_DCDC_V 0x00000001 +#define RTC_CNTL_XPD_DIG_DCDC_S 2 + +/* RTC_CNTL_XPD_ROM0 : RO; bitpos: [0]; default: 0; + * rom0 power down + */ + +#define RTC_CNTL_XPD_ROM0 (BIT(0)) +#define RTC_CNTL_XPD_ROM0_M (RTC_CNTL_XPD_ROM0_V << RTC_CNTL_XPD_ROM0_S) +#define RTC_CNTL_XPD_ROM0_V 0x00000001 +#define RTC_CNTL_XPD_ROM0_S 0 + +/* RTC_CNTL_RTC_DIAG0_REG register + * No public + */ + +#define RTC_CNTL_RTC_DIAG0_REG (DR_REG_RTCCNTL_BASE + 0xd4) + +/* RTC_CNTL_RTC_LOW_POWER_DIAG1 : RO; bitpos: [31:0]; default: 0; + * No public + */ + +#define RTC_CNTL_RTC_LOW_POWER_DIAG1 0xffffffff +#define RTC_CNTL_RTC_LOW_POWER_DIAG1_M (RTC_CNTL_RTC_LOW_POWER_DIAG1_V << RTC_CNTL_RTC_LOW_POWER_DIAG1_S) +#define RTC_CNTL_RTC_LOW_POWER_DIAG1_V 0xffffffff +#define RTC_CNTL_RTC_LOW_POWER_DIAG1_S 0 + +/* RTC_CNTL_RTC_PAD_HOLD_REG register + * rtc pad hold configure + */ + +#define RTC_CNTL_RTC_PAD_HOLD_REG (DR_REG_RTCCNTL_BASE + 0xd8) + +/* RTC_CNTL_RTC_PAD21_HOLD : R/W; bitpos: [21]; default: 0; + * hold rtc pad-21 + */ + +#define RTC_CNTL_RTC_PAD21_HOLD (BIT(21)) +#define RTC_CNTL_RTC_PAD21_HOLD_M (RTC_CNTL_RTC_PAD21_HOLD_V << RTC_CNTL_RTC_PAD21_HOLD_S) +#define RTC_CNTL_RTC_PAD21_HOLD_V 0x00000001 +#define RTC_CNTL_RTC_PAD21_HOLD_S 21 + +/* RTC_CNTL_RTC_PAD20_HOLD : R/W; bitpos: [20]; default: 0; + * hold rtc pad-20 + */ + +#define RTC_CNTL_RTC_PAD20_HOLD (BIT(20)) +#define RTC_CNTL_RTC_PAD20_HOLD_M (RTC_CNTL_RTC_PAD20_HOLD_V << RTC_CNTL_RTC_PAD20_HOLD_S) +#define RTC_CNTL_RTC_PAD20_HOLD_V 0x00000001 +#define RTC_CNTL_RTC_PAD20_HOLD_S 20 + +/* RTC_CNTL_RTC_PAD19_HOLD : R/W; bitpos: [19]; default: 0; + * hold rtc pad-19 + */ + +#define RTC_CNTL_RTC_PAD19_HOLD (BIT(19)) +#define RTC_CNTL_RTC_PAD19_HOLD_M (RTC_CNTL_RTC_PAD19_HOLD_V << RTC_CNTL_RTC_PAD19_HOLD_S) +#define RTC_CNTL_RTC_PAD19_HOLD_V 0x00000001 +#define RTC_CNTL_RTC_PAD19_HOLD_S 19 + +/* RTC_CNTL_PDAC2_HOLD : R/W; bitpos: [18]; default: 0; + * hold rtc pad-18 + */ + +#define RTC_CNTL_PDAC2_HOLD (BIT(18)) +#define RTC_CNTL_PDAC2_HOLD_M (RTC_CNTL_PDAC2_HOLD_V << RTC_CNTL_PDAC2_HOLD_S) +#define RTC_CNTL_PDAC2_HOLD_V 0x00000001 +#define RTC_CNTL_PDAC2_HOLD_S 18 + +/* RTC_CNTL_PDAC1_HOLD : R/W; bitpos: [17]; default: 0; + * hold rtc pad-17 + */ + +#define RTC_CNTL_PDAC1_HOLD (BIT(17)) +#define RTC_CNTL_PDAC1_HOLD_M (RTC_CNTL_PDAC1_HOLD_V << RTC_CNTL_PDAC1_HOLD_S) +#define RTC_CNTL_PDAC1_HOLD_V 0x00000001 +#define RTC_CNTL_PDAC1_HOLD_S 17 + +/* RTC_CNTL_X32N_HOLD : R/W; bitpos: [16]; default: 0; + * hold rtc pad-16 + */ + +#define RTC_CNTL_X32N_HOLD (BIT(16)) +#define RTC_CNTL_X32N_HOLD_M (RTC_CNTL_X32N_HOLD_V << RTC_CNTL_X32N_HOLD_S) +#define RTC_CNTL_X32N_HOLD_V 0x00000001 +#define RTC_CNTL_X32N_HOLD_S 16 + +/* RTC_CNTL_X32P_HOLD : R/W; bitpos: [15]; default: 0; + * hold rtc pad-15 + */ + +#define RTC_CNTL_X32P_HOLD (BIT(15)) +#define RTC_CNTL_X32P_HOLD_M (RTC_CNTL_X32P_HOLD_V << RTC_CNTL_X32P_HOLD_S) +#define RTC_CNTL_X32P_HOLD_V 0x00000001 +#define RTC_CNTL_X32P_HOLD_S 15 + +/* RTC_CNTL_TOUCH_PAD14_HOLD : R/W; bitpos: [14]; default: 0; + * hold rtc pad-14 + */ + +#define RTC_CNTL_TOUCH_PAD14_HOLD (BIT(14)) +#define RTC_CNTL_TOUCH_PAD14_HOLD_M (RTC_CNTL_TOUCH_PAD14_HOLD_V << RTC_CNTL_TOUCH_PAD14_HOLD_S) +#define RTC_CNTL_TOUCH_PAD14_HOLD_V 0x00000001 +#define RTC_CNTL_TOUCH_PAD14_HOLD_S 14 + +/* RTC_CNTL_TOUCH_PAD13_HOLD : R/W; bitpos: [13]; default: 0; + * hold rtc pad-13 + */ + +#define RTC_CNTL_TOUCH_PAD13_HOLD (BIT(13)) +#define RTC_CNTL_TOUCH_PAD13_HOLD_M (RTC_CNTL_TOUCH_PAD13_HOLD_V << RTC_CNTL_TOUCH_PAD13_HOLD_S) +#define RTC_CNTL_TOUCH_PAD13_HOLD_V 0x00000001 +#define RTC_CNTL_TOUCH_PAD13_HOLD_S 13 + +/* RTC_CNTL_TOUCH_PAD12_HOLD : R/W; bitpos: [12]; default: 0; + * hold rtc pad-12 + */ + +#define RTC_CNTL_TOUCH_PAD12_HOLD (BIT(12)) +#define RTC_CNTL_TOUCH_PAD12_HOLD_M (RTC_CNTL_TOUCH_PAD12_HOLD_V << RTC_CNTL_TOUCH_PAD12_HOLD_S) +#define RTC_CNTL_TOUCH_PAD12_HOLD_V 0x00000001 +#define RTC_CNTL_TOUCH_PAD12_HOLD_S 12 + +/* RTC_CNTL_TOUCH_PAD11_HOLD : R/W; bitpos: [11]; default: 0; + * hold rtc pad-11 + */ + +#define RTC_CNTL_TOUCH_PAD11_HOLD (BIT(11)) +#define RTC_CNTL_TOUCH_PAD11_HOLD_M (RTC_CNTL_TOUCH_PAD11_HOLD_V << RTC_CNTL_TOUCH_PAD11_HOLD_S) +#define RTC_CNTL_TOUCH_PAD11_HOLD_V 0x00000001 +#define RTC_CNTL_TOUCH_PAD11_HOLD_S 11 + +/* RTC_CNTL_TOUCH_PAD10_HOLD : R/W; bitpos: [10]; default: 0; + * hold rtc pad-10 + */ + +#define RTC_CNTL_TOUCH_PAD10_HOLD (BIT(10)) +#define RTC_CNTL_TOUCH_PAD10_HOLD_M (RTC_CNTL_TOUCH_PAD10_HOLD_V << RTC_CNTL_TOUCH_PAD10_HOLD_S) +#define RTC_CNTL_TOUCH_PAD10_HOLD_V 0x00000001 +#define RTC_CNTL_TOUCH_PAD10_HOLD_S 10 + +/* RTC_CNTL_TOUCH_PAD9_HOLD : R/W; bitpos: [9]; default: 0; + * hold rtc pad-9 + */ + +#define RTC_CNTL_TOUCH_PAD9_HOLD (BIT(9)) +#define RTC_CNTL_TOUCH_PAD9_HOLD_M (RTC_CNTL_TOUCH_PAD9_HOLD_V << RTC_CNTL_TOUCH_PAD9_HOLD_S) +#define RTC_CNTL_TOUCH_PAD9_HOLD_V 0x00000001 +#define RTC_CNTL_TOUCH_PAD9_HOLD_S 9 + +/* RTC_CNTL_TOUCH_PAD8_HOLD : R/W; bitpos: [8]; default: 0; + * hold rtc pad-8 + */ + +#define RTC_CNTL_TOUCH_PAD8_HOLD (BIT(8)) +#define RTC_CNTL_TOUCH_PAD8_HOLD_M (RTC_CNTL_TOUCH_PAD8_HOLD_V << RTC_CNTL_TOUCH_PAD8_HOLD_S) +#define RTC_CNTL_TOUCH_PAD8_HOLD_V 0x00000001 +#define RTC_CNTL_TOUCH_PAD8_HOLD_S 8 + +/* RTC_CNTL_TOUCH_PAD7_HOLD : R/W; bitpos: [7]; default: 0; + * hold rtc pad-7 + */ + +#define RTC_CNTL_TOUCH_PAD7_HOLD (BIT(7)) +#define RTC_CNTL_TOUCH_PAD7_HOLD_M (RTC_CNTL_TOUCH_PAD7_HOLD_V << RTC_CNTL_TOUCH_PAD7_HOLD_S) +#define RTC_CNTL_TOUCH_PAD7_HOLD_V 0x00000001 +#define RTC_CNTL_TOUCH_PAD7_HOLD_S 7 + +/* RTC_CNTL_TOUCH_PAD6_HOLD : R/W; bitpos: [6]; default: 0; + * hold rtc pad-6 + */ + +#define RTC_CNTL_TOUCH_PAD6_HOLD (BIT(6)) +#define RTC_CNTL_TOUCH_PAD6_HOLD_M (RTC_CNTL_TOUCH_PAD6_HOLD_V << RTC_CNTL_TOUCH_PAD6_HOLD_S) +#define RTC_CNTL_TOUCH_PAD6_HOLD_V 0x00000001 +#define RTC_CNTL_TOUCH_PAD6_HOLD_S 6 + +/* RTC_CNTL_TOUCH_PAD5_HOLD : R/W; bitpos: [5]; default: 0; + * hold rtc pad-5 + */ + +#define RTC_CNTL_TOUCH_PAD5_HOLD (BIT(5)) +#define RTC_CNTL_TOUCH_PAD5_HOLD_M (RTC_CNTL_TOUCH_PAD5_HOLD_V << RTC_CNTL_TOUCH_PAD5_HOLD_S) +#define RTC_CNTL_TOUCH_PAD5_HOLD_V 0x00000001 +#define RTC_CNTL_TOUCH_PAD5_HOLD_S 5 + +/* RTC_CNTL_TOUCH_PAD4_HOLD : R/W; bitpos: [4]; default: 0; + * hold rtc pad-4 + */ + +#define RTC_CNTL_TOUCH_PAD4_HOLD (BIT(4)) +#define RTC_CNTL_TOUCH_PAD4_HOLD_M (RTC_CNTL_TOUCH_PAD4_HOLD_V << RTC_CNTL_TOUCH_PAD4_HOLD_S) +#define RTC_CNTL_TOUCH_PAD4_HOLD_V 0x00000001 +#define RTC_CNTL_TOUCH_PAD4_HOLD_S 4 + +/* RTC_CNTL_TOUCH_PAD3_HOLD : R/W; bitpos: [3]; default: 0; + * hold rtc pad-3 + */ + +#define RTC_CNTL_TOUCH_PAD3_HOLD (BIT(3)) +#define RTC_CNTL_TOUCH_PAD3_HOLD_M (RTC_CNTL_TOUCH_PAD3_HOLD_V << RTC_CNTL_TOUCH_PAD3_HOLD_S) +#define RTC_CNTL_TOUCH_PAD3_HOLD_V 0x00000001 +#define RTC_CNTL_TOUCH_PAD3_HOLD_S 3 + +/* RTC_CNTL_TOUCH_PAD2_HOLD : R/W; bitpos: [2]; default: 0; + * hold rtc pad-2 + */ + +#define RTC_CNTL_TOUCH_PAD2_HOLD (BIT(2)) +#define RTC_CNTL_TOUCH_PAD2_HOLD_M (RTC_CNTL_TOUCH_PAD2_HOLD_V << RTC_CNTL_TOUCH_PAD2_HOLD_S) +#define RTC_CNTL_TOUCH_PAD2_HOLD_V 0x00000001 +#define RTC_CNTL_TOUCH_PAD2_HOLD_S 2 + +/* RTC_CNTL_TOUCH_PAD1_HOLD : R/W; bitpos: [1]; default: 0; + * hold rtc pad-1 + */ + +#define RTC_CNTL_TOUCH_PAD1_HOLD (BIT(1)) +#define RTC_CNTL_TOUCH_PAD1_HOLD_M (RTC_CNTL_TOUCH_PAD1_HOLD_V << RTC_CNTL_TOUCH_PAD1_HOLD_S) +#define RTC_CNTL_TOUCH_PAD1_HOLD_V 0x00000001 +#define RTC_CNTL_TOUCH_PAD1_HOLD_S 1 + +/* RTC_CNTL_TOUCH_PAD0_HOLD : R/W; bitpos: [0]; default: 0; + * hold rtc pad0 + */ + +#define RTC_CNTL_TOUCH_PAD0_HOLD (BIT(0)) +#define RTC_CNTL_TOUCH_PAD0_HOLD_M (RTC_CNTL_TOUCH_PAD0_HOLD_V << RTC_CNTL_TOUCH_PAD0_HOLD_S) +#define RTC_CNTL_TOUCH_PAD0_HOLD_V 0x00000001 +#define RTC_CNTL_TOUCH_PAD0_HOLD_S 0 + +/* RTC_CNTL_DIG_PAD_HOLD_REG register + * configure digtal pad hold + */ + +#define RTC_CNTL_DIG_PAD_HOLD_REG (DR_REG_RTCCNTL_BASE + 0xdc) + +/* RTC_CNTL_DIG_PAD_HOLD : R/W; bitpos: [31:0]; default: 0; + * configure digtal pad hold + */ + +#define RTC_CNTL_DIG_PAD_HOLD 0xffffffff +#define RTC_CNTL_DIG_PAD_HOLD_M (RTC_CNTL_DIG_PAD_HOLD_V << RTC_CNTL_DIG_PAD_HOLD_S) +#define RTC_CNTL_DIG_PAD_HOLD_V 0xffffffff +#define RTC_CNTL_DIG_PAD_HOLD_S 0 + +/* RTC_CNTL_RTC_EXT_WAKEUP1_REG register + * configure ext1 wakeup + */ + +#define RTC_CNTL_RTC_EXT_WAKEUP1_REG (DR_REG_RTCCNTL_BASE + 0xe0) + +/* RTC_CNTL_EXT_WAKEUP1_STATUS_CLR : WO; bitpos: [22]; default: 0; + * clear ext wakeup1 status + */ + +#define RTC_CNTL_EXT_WAKEUP1_STATUS_CLR (BIT(22)) +#define RTC_CNTL_EXT_WAKEUP1_STATUS_CLR_M (RTC_CNTL_EXT_WAKEUP1_STATUS_CLR_V << RTC_CNTL_EXT_WAKEUP1_STATUS_CLR_S) +#define RTC_CNTL_EXT_WAKEUP1_STATUS_CLR_V 0x00000001 +#define RTC_CNTL_EXT_WAKEUP1_STATUS_CLR_S 22 + +/* RTC_CNTL_EXT_WAKEUP1_SEL : R/W; bitpos: [21:0]; default: 0; + * Bitmap to select RTC pads for ext wakeup1 + */ + +#define RTC_CNTL_EXT_WAKEUP1_SEL 0x003fffff +#define RTC_CNTL_EXT_WAKEUP1_SEL_M (RTC_CNTL_EXT_WAKEUP1_SEL_V << RTC_CNTL_EXT_WAKEUP1_SEL_S) +#define RTC_CNTL_EXT_WAKEUP1_SEL_V 0x003fffff +#define RTC_CNTL_EXT_WAKEUP1_SEL_S 0 + +/* RTC_CNTL_RTC_EXT_WAKEUP1_STATUS_REG register + * check ext wakeup1 status + */ + +#define RTC_CNTL_RTC_EXT_WAKEUP1_STATUS_REG (DR_REG_RTCCNTL_BASE + 0xe4) + +/* RTC_CNTL_EXT_WAKEUP1_STATUS : RO; bitpos: [21:0]; default: 0; + * ext wakeup1 status + */ + +#define RTC_CNTL_EXT_WAKEUP1_STATUS 0x003fffff +#define RTC_CNTL_EXT_WAKEUP1_STATUS_M (RTC_CNTL_EXT_WAKEUP1_STATUS_V << RTC_CNTL_EXT_WAKEUP1_STATUS_S) +#define RTC_CNTL_EXT_WAKEUP1_STATUS_V 0x003fffff +#define RTC_CNTL_EXT_WAKEUP1_STATUS_S 0 + +/* RTC_CNTL_RTC_BROWN_OUT_REG register + * congfigure brownout + */ + +#define RTC_CNTL_RTC_BROWN_OUT_REG (DR_REG_RTCCNTL_BASE + 0xe8) + +/* RTC_CNTL_RTC_BROWN_OUT_DET : RO; bitpos: [31]; default: 0; + * get brown out detect + */ + +#define RTC_CNTL_RTC_BROWN_OUT_DET (BIT(31)) +#define RTC_CNTL_RTC_BROWN_OUT_DET_M (RTC_CNTL_RTC_BROWN_OUT_DET_V << RTC_CNTL_RTC_BROWN_OUT_DET_S) +#define RTC_CNTL_RTC_BROWN_OUT_DET_V 0x00000001 +#define RTC_CNTL_RTC_BROWN_OUT_DET_S 31 + +/* RTC_CNTL_BROWN_OUT_ENA : R/W; bitpos: [30]; default: 1; + * enable brown out + */ + +#define RTC_CNTL_BROWN_OUT_ENA (BIT(30)) +#define RTC_CNTL_BROWN_OUT_ENA_M (RTC_CNTL_BROWN_OUT_ENA_V << RTC_CNTL_BROWN_OUT_ENA_S) +#define RTC_CNTL_BROWN_OUT_ENA_V 0x00000001 +#define RTC_CNTL_BROWN_OUT_ENA_S 30 + +/* RTC_CNTL_BROWN_OUT_CNT_CLR : WO; bitpos: [29]; default: 0; + * clear brown out counter + */ + +#define RTC_CNTL_BROWN_OUT_CNT_CLR (BIT(29)) +#define RTC_CNTL_BROWN_OUT_CNT_CLR_M (RTC_CNTL_BROWN_OUT_CNT_CLR_V << RTC_CNTL_BROWN_OUT_CNT_CLR_S) +#define RTC_CNTL_BROWN_OUT_CNT_CLR_V 0x00000001 +#define RTC_CNTL_BROWN_OUT_CNT_CLR_S 29 + +/* RTC_CNTL_BROWN_OUT_ANA_RST_EN : R/W; bitpos: [28]; default: 0; + * enable brown out reset en + */ + +#define RTC_CNTL_BROWN_OUT_ANA_RST_EN (BIT(28)) +#define RTC_CNTL_BROWN_OUT_ANA_RST_EN_M (RTC_CNTL_BROWN_OUT_ANA_RST_EN_V << RTC_CNTL_BROWN_OUT_ANA_RST_EN_S) +#define RTC_CNTL_BROWN_OUT_ANA_RST_EN_V 0x00000001 +#define RTC_CNTL_BROWN_OUT_ANA_RST_EN_S 28 + +/* RTC_CNTL_BROWN_OUT_RST_SEL : R/W; bitpos: [27]; default: 0; + * 1: 4-pos reset, 0: sys_reset + */ + +#define RTC_CNTL_BROWN_OUT_RST_SEL (BIT(27)) +#define RTC_CNTL_BROWN_OUT_RST_SEL_M (RTC_CNTL_BROWN_OUT_RST_SEL_V << RTC_CNTL_BROWN_OUT_RST_SEL_S) +#define RTC_CNTL_BROWN_OUT_RST_SEL_V 0x00000001 +#define RTC_CNTL_BROWN_OUT_RST_SEL_S 27 + +/* RTC_CNTL_BROWN_OUT_RST_ENA : R/W; bitpos: [26]; default: 0; + * enable brown out reset + */ + +#define RTC_CNTL_BROWN_OUT_RST_ENA (BIT(26)) +#define RTC_CNTL_BROWN_OUT_RST_ENA_M (RTC_CNTL_BROWN_OUT_RST_ENA_V << RTC_CNTL_BROWN_OUT_RST_ENA_S) +#define RTC_CNTL_BROWN_OUT_RST_ENA_V 0x00000001 +#define RTC_CNTL_BROWN_OUT_RST_ENA_S 26 + +/* RTC_CNTL_BROWN_OUT_RST_WAIT : R/W; bitpos: [25:16]; default: 1023; + * brown out reset wait cycles + */ + +#define RTC_CNTL_BROWN_OUT_RST_WAIT 0x000003ff +#define RTC_CNTL_BROWN_OUT_RST_WAIT_M (RTC_CNTL_BROWN_OUT_RST_WAIT_V << RTC_CNTL_BROWN_OUT_RST_WAIT_S) +#define RTC_CNTL_BROWN_OUT_RST_WAIT_V 0x000003ff +#define RTC_CNTL_BROWN_OUT_RST_WAIT_S 16 + +/* RTC_CNTL_BROWN_OUT_PD_RF_ENA : R/W; bitpos: [15]; default: 0; + * enable power down RF when brown out happens + */ + +#define RTC_CNTL_BROWN_OUT_PD_RF_ENA (BIT(15)) +#define RTC_CNTL_BROWN_OUT_PD_RF_ENA_M (RTC_CNTL_BROWN_OUT_PD_RF_ENA_V << RTC_CNTL_BROWN_OUT_PD_RF_ENA_S) +#define RTC_CNTL_BROWN_OUT_PD_RF_ENA_V 0x00000001 +#define RTC_CNTL_BROWN_OUT_PD_RF_ENA_S 15 + +/* RTC_CNTL_BROWN_OUT_CLOSE_FLASH_ENA : R/W; bitpos: [14]; default: 0; + * enable close flash when brown out happens + */ + +#define RTC_CNTL_BROWN_OUT_CLOSE_FLASH_ENA (BIT(14)) +#define RTC_CNTL_BROWN_OUT_CLOSE_FLASH_ENA_M (RTC_CNTL_BROWN_OUT_CLOSE_FLASH_ENA_V << RTC_CNTL_BROWN_OUT_CLOSE_FLASH_ENA_S) +#define RTC_CNTL_BROWN_OUT_CLOSE_FLASH_ENA_V 0x00000001 +#define RTC_CNTL_BROWN_OUT_CLOSE_FLASH_ENA_S 14 + +/* RTC_CNTL_BROWN_OUT_INT_WAIT : R/W; bitpos: [13:4]; default: 1; + * brown out interrupt wait cycles + */ + +#define RTC_CNTL_BROWN_OUT_INT_WAIT 0x000003ff +#define RTC_CNTL_BROWN_OUT_INT_WAIT_M (RTC_CNTL_BROWN_OUT_INT_WAIT_V << RTC_CNTL_BROWN_OUT_INT_WAIT_S) +#define RTC_CNTL_BROWN_OUT_INT_WAIT_V 0x000003ff +#define RTC_CNTL_BROWN_OUT_INT_WAIT_S 4 + +/* RTC_CNTL_RTC_TIME_LOW1_REG register + * RTC timer low 32 bits + */ + +#define RTC_CNTL_RTC_TIME_LOW1_REG (DR_REG_RTCCNTL_BASE + 0xec) + +/* RTC_CNTL_RTC_TIMER_VALUE1_LOW : RO; bitpos: [31:0]; default: 0; + * RTC timer low 32 bits + */ + +#define RTC_CNTL_RTC_TIMER_VALUE1_LOW 0xffffffff +#define RTC_CNTL_RTC_TIMER_VALUE1_LOW_M (RTC_CNTL_RTC_TIMER_VALUE1_LOW_V << RTC_CNTL_RTC_TIMER_VALUE1_LOW_S) +#define RTC_CNTL_RTC_TIMER_VALUE1_LOW_V 0xffffffff +#define RTC_CNTL_RTC_TIMER_VALUE1_LOW_S 0 + +/* RTC_CNTL_RTC_TIME_HIGH1_REG register + * RTC timer high 16 bits + */ + +#define RTC_CNTL_RTC_TIME_HIGH1_REG (DR_REG_RTCCNTL_BASE + 0xf0) + +/* RTC_CNTL_RTC_TIMER_VALUE1_HIGH : RO; bitpos: [15:0]; default: 0; + * RTC timer high 16 bits + */ + +#define RTC_CNTL_RTC_TIMER_VALUE1_HIGH 0x0000ffff +#define RTC_CNTL_RTC_TIMER_VALUE1_HIGH_M (RTC_CNTL_RTC_TIMER_VALUE1_HIGH_V << RTC_CNTL_RTC_TIMER_VALUE1_HIGH_S) +#define RTC_CNTL_RTC_TIMER_VALUE1_HIGH_V 0x0000ffff +#define RTC_CNTL_RTC_TIMER_VALUE1_HIGH_S 0 + +/* RTC_CNTL_RTC_XTAL32K_CLK_FACTOR_REG register + * xtal 32k watch dog backup clock factor + */ + +#define RTC_CNTL_RTC_XTAL32K_CLK_FACTOR_REG (DR_REG_RTCCNTL_BASE + 0xf4) + +/* RTC_CNTL_XTAL32K_CLK_FACTOR : R/W; bitpos: [31:0]; default: 0; + * xtal 32k watch dog backup clock factor + */ + +#define RTC_CNTL_XTAL32K_CLK_FACTOR 0xffffffff +#define RTC_CNTL_XTAL32K_CLK_FACTOR_M (RTC_CNTL_XTAL32K_CLK_FACTOR_V << RTC_CNTL_XTAL32K_CLK_FACTOR_S) +#define RTC_CNTL_XTAL32K_CLK_FACTOR_V 0xffffffff +#define RTC_CNTL_XTAL32K_CLK_FACTOR_S 0 + +/* RTC_CNTL_RTC_XTAL32K_CONF_REG register + * configure xtal32k + */ + +#define RTC_CNTL_RTC_XTAL32K_CONF_REG (DR_REG_RTCCNTL_BASE + 0xf8) + +/* RTC_CNTL_XTAL32K_STABLE_THRES : R/W; bitpos: [31:28]; default: 0; + * if restarted xtal32k period is smaller than this, it is regarded as stable + */ + +#define RTC_CNTL_XTAL32K_STABLE_THRES 0x0000000f +#define RTC_CNTL_XTAL32K_STABLE_THRES_M (RTC_CNTL_XTAL32K_STABLE_THRES_V << RTC_CNTL_XTAL32K_STABLE_THRES_S) +#define RTC_CNTL_XTAL32K_STABLE_THRES_V 0x0000000f +#define RTC_CNTL_XTAL32K_STABLE_THRES_S 28 + +/* RTC_CNTL_XTAL32K_WDT_TIMEOUT : R/W; bitpos: [27:20]; default: 255; + * If no clock detected for this amount of time 32k is regarded as dead + */ + +#define RTC_CNTL_XTAL32K_WDT_TIMEOUT 0x000000ff +#define RTC_CNTL_XTAL32K_WDT_TIMEOUT_M (RTC_CNTL_XTAL32K_WDT_TIMEOUT_V << RTC_CNTL_XTAL32K_WDT_TIMEOUT_S) +#define RTC_CNTL_XTAL32K_WDT_TIMEOUT_V 0x000000ff +#define RTC_CNTL_XTAL32K_WDT_TIMEOUT_S 20 + +/* RTC_CNTL_XTAL32K_RESTART_WAIT : R/W; bitpos: [19:4]; default: 0; + * cycles to wait to repower on xtal 32k + */ + +#define RTC_CNTL_XTAL32K_RESTART_WAIT 0x0000ffff +#define RTC_CNTL_XTAL32K_RESTART_WAIT_M (RTC_CNTL_XTAL32K_RESTART_WAIT_V << RTC_CNTL_XTAL32K_RESTART_WAIT_S) +#define RTC_CNTL_XTAL32K_RESTART_WAIT_V 0x0000ffff +#define RTC_CNTL_XTAL32K_RESTART_WAIT_S 4 + +/* RTC_CNTL_XTAL32K_RETURN_WAIT : R/W; bitpos: [3:0]; default: 0; + * cycles to wait to return noral xtal 32k + */ + +#define RTC_CNTL_XTAL32K_RETURN_WAIT 0x0000000f +#define RTC_CNTL_XTAL32K_RETURN_WAIT_M (RTC_CNTL_XTAL32K_RETURN_WAIT_V << RTC_CNTL_XTAL32K_RETURN_WAIT_S) +#define RTC_CNTL_XTAL32K_RETURN_WAIT_V 0x0000000f +#define RTC_CNTL_XTAL32K_RETURN_WAIT_S 0 + +/* RTC_CNTL_RTC_ULP_CP_TIMER_REG register + * configure ulp + */ + +#define RTC_CNTL_RTC_ULP_CP_TIMER_REG (DR_REG_RTCCNTL_BASE + 0xfc) + +/* RTC_CNTL_ULP_CP_SLP_TIMER_EN : R/W; bitpos: [31]; default: 0; + * ULP-coprocessor timer enable bit + */ + +#define RTC_CNTL_ULP_CP_SLP_TIMER_EN (BIT(31)) +#define RTC_CNTL_ULP_CP_SLP_TIMER_EN_M (RTC_CNTL_ULP_CP_SLP_TIMER_EN_V << RTC_CNTL_ULP_CP_SLP_TIMER_EN_S) +#define RTC_CNTL_ULP_CP_SLP_TIMER_EN_V 0x00000001 +#define RTC_CNTL_ULP_CP_SLP_TIMER_EN_S 31 + +/* RTC_CNTL_ULP_CP_GPIO_WAKEUP_CLR : WO; bitpos: [30]; default: 0; + * ULP-coprocessor wakeup by GPIO state clear + */ + +#define RTC_CNTL_ULP_CP_GPIO_WAKEUP_CLR (BIT(30)) +#define RTC_CNTL_ULP_CP_GPIO_WAKEUP_CLR_M (RTC_CNTL_ULP_CP_GPIO_WAKEUP_CLR_V << RTC_CNTL_ULP_CP_GPIO_WAKEUP_CLR_S) +#define RTC_CNTL_ULP_CP_GPIO_WAKEUP_CLR_V 0x00000001 +#define RTC_CNTL_ULP_CP_GPIO_WAKEUP_CLR_S 30 + +/* RTC_CNTL_ULP_CP_GPIO_WAKEUP_ENA : R/W; bitpos: [29]; default: 0; + * ULP-coprocessor wakeup by GPIO enable + */ + +#define RTC_CNTL_ULP_CP_GPIO_WAKEUP_ENA (BIT(29)) +#define RTC_CNTL_ULP_CP_GPIO_WAKEUP_ENA_M (RTC_CNTL_ULP_CP_GPIO_WAKEUP_ENA_V << RTC_CNTL_ULP_CP_GPIO_WAKEUP_ENA_S) +#define RTC_CNTL_ULP_CP_GPIO_WAKEUP_ENA_V 0x00000001 +#define RTC_CNTL_ULP_CP_GPIO_WAKEUP_ENA_S 29 + +/* RTC_CNTL_ULP_CP_PC_INIT : R/W; bitpos: [10:0]; default: 0; + * ULP-coprocessor PC initial address + */ + +#define RTC_CNTL_ULP_CP_PC_INIT 0x000007ff +#define RTC_CNTL_ULP_CP_PC_INIT_M (RTC_CNTL_ULP_CP_PC_INIT_V << RTC_CNTL_ULP_CP_PC_INIT_S) +#define RTC_CNTL_ULP_CP_PC_INIT_V 0x000007ff +#define RTC_CNTL_ULP_CP_PC_INIT_S 0 + +/* RTC_CNTL_RTC_ULP_CP_CTRL_REG register + * configure ulp + */ + +#define RTC_CNTL_RTC_ULP_CP_CTRL_REG (DR_REG_RTCCNTL_BASE + 0x100) + +/* RTC_CNTL_ULP_CP_START_TOP : R/W; bitpos: [31]; default: 0; + * Write 1 to start ULP-coprocessor + */ + +#define RTC_CNTL_ULP_CP_START_TOP (BIT(31)) +#define RTC_CNTL_ULP_CP_START_TOP_M (RTC_CNTL_ULP_CP_START_TOP_V << RTC_CNTL_ULP_CP_START_TOP_S) +#define RTC_CNTL_ULP_CP_START_TOP_V 0x00000001 +#define RTC_CNTL_ULP_CP_START_TOP_S 31 + +/* RTC_CNTL_ULP_CP_FORCE_START_TOP : R/W; bitpos: [30]; default: 0; + * 1: ULP-coprocessor is started by SW + */ + +#define RTC_CNTL_ULP_CP_FORCE_START_TOP (BIT(30)) +#define RTC_CNTL_ULP_CP_FORCE_START_TOP_M (RTC_CNTL_ULP_CP_FORCE_START_TOP_V << RTC_CNTL_ULP_CP_FORCE_START_TOP_S) +#define RTC_CNTL_ULP_CP_FORCE_START_TOP_V 0x00000001 +#define RTC_CNTL_ULP_CP_FORCE_START_TOP_S 30 + +/* RTC_CNTL_ULP_CP_RESET : R/W; bitpos: [29]; default: 0; + * ulp coprocessor clk software reset + */ + +#define RTC_CNTL_ULP_CP_RESET (BIT(29)) +#define RTC_CNTL_ULP_CP_RESET_M (RTC_CNTL_ULP_CP_RESET_V << RTC_CNTL_ULP_CP_RESET_S) +#define RTC_CNTL_ULP_CP_RESET_V 0x00000001 +#define RTC_CNTL_ULP_CP_RESET_S 29 + +/* RTC_CNTL_ULP_CP_CLK_FO : R/W; bitpos: [28]; default: 0; + * ulp coprocessor clk force on + */ + +#define RTC_CNTL_ULP_CP_CLK_FO (BIT(28)) +#define RTC_CNTL_ULP_CP_CLK_FO_M (RTC_CNTL_ULP_CP_CLK_FO_V << RTC_CNTL_ULP_CP_CLK_FO_S) +#define RTC_CNTL_ULP_CP_CLK_FO_V 0x00000001 +#define RTC_CNTL_ULP_CP_CLK_FO_S 28 + +/* RTC_CNTL_ULP_CP_MEM_OFFST_CLR : WO; bitpos: [22]; default: 0; + * No public + */ + +#define RTC_CNTL_ULP_CP_MEM_OFFST_CLR (BIT(22)) +#define RTC_CNTL_ULP_CP_MEM_OFFST_CLR_M (RTC_CNTL_ULP_CP_MEM_OFFST_CLR_V << RTC_CNTL_ULP_CP_MEM_OFFST_CLR_S) +#define RTC_CNTL_ULP_CP_MEM_OFFST_CLR_V 0x00000001 +#define RTC_CNTL_ULP_CP_MEM_OFFST_CLR_S 22 + +/* RTC_CNTL_ULP_CP_MEM_ADDR_SIZE : R/W; bitpos: [21:11]; default: 512; + * No public + */ + +#define RTC_CNTL_ULP_CP_MEM_ADDR_SIZE 0x000007ff +#define RTC_CNTL_ULP_CP_MEM_ADDR_SIZE_M (RTC_CNTL_ULP_CP_MEM_ADDR_SIZE_V << RTC_CNTL_ULP_CP_MEM_ADDR_SIZE_S) +#define RTC_CNTL_ULP_CP_MEM_ADDR_SIZE_V 0x000007ff +#define RTC_CNTL_ULP_CP_MEM_ADDR_SIZE_S 11 + +/* RTC_CNTL_ULP_CP_MEM_ADDR_INIT : R/W; bitpos: [10:0]; default: 512; + * No public + */ + +#define RTC_CNTL_ULP_CP_MEM_ADDR_INIT 0x000007ff +#define RTC_CNTL_ULP_CP_MEM_ADDR_INIT_M (RTC_CNTL_ULP_CP_MEM_ADDR_INIT_V << RTC_CNTL_ULP_CP_MEM_ADDR_INIT_S) +#define RTC_CNTL_ULP_CP_MEM_ADDR_INIT_V 0x000007ff +#define RTC_CNTL_ULP_CP_MEM_ADDR_INIT_S 0 + +/* RTC_CNTL_RTC_COCPU_CTRL_REG register + * configure ulp-riscv + */ + +#define RTC_CNTL_RTC_COCPU_CTRL_REG (DR_REG_RTCCNTL_BASE + 0x104) + +/* RTC_CNTL_COCPU_CLKGATE_EN : R/W; bitpos: [27]; default: 0; + * open ulp-riscv clk gate + */ + +#define RTC_CNTL_COCPU_CLKGATE_EN (BIT(27)) +#define RTC_CNTL_COCPU_CLKGATE_EN_M (RTC_CNTL_COCPU_CLKGATE_EN_V << RTC_CNTL_COCPU_CLKGATE_EN_S) +#define RTC_CNTL_COCPU_CLKGATE_EN_V 0x00000001 +#define RTC_CNTL_COCPU_CLKGATE_EN_S 27 + +/* RTC_CNTL_COCPU_SW_INT_TRIGGER : WO; bitpos: [26]; default: 0; + * trigger cocpu register interrupt + */ + +#define RTC_CNTL_COCPU_SW_INT_TRIGGER (BIT(26)) +#define RTC_CNTL_COCPU_SW_INT_TRIGGER_M (RTC_CNTL_COCPU_SW_INT_TRIGGER_V << RTC_CNTL_COCPU_SW_INT_TRIGGER_S) +#define RTC_CNTL_COCPU_SW_INT_TRIGGER_V 0x00000001 +#define RTC_CNTL_COCPU_SW_INT_TRIGGER_S 26 + +/* RTC_CNTL_COCPU_DONE : R/W; bitpos: [25]; default: 0; + * done signal used by riscv to control timer. + */ + +#define RTC_CNTL_COCPU_DONE (BIT(25)) +#define RTC_CNTL_COCPU_DONE_M (RTC_CNTL_COCPU_DONE_V << RTC_CNTL_COCPU_DONE_S) +#define RTC_CNTL_COCPU_DONE_V 0x00000001 +#define RTC_CNTL_COCPU_DONE_S 25 + +/* RTC_CNTL_COCPU_DONE_FORCE : R/W; bitpos: [24]; default: 0; + * 1: select riscv done 0: select ulp done + */ + +#define RTC_CNTL_COCPU_DONE_FORCE (BIT(24)) +#define RTC_CNTL_COCPU_DONE_FORCE_M (RTC_CNTL_COCPU_DONE_FORCE_V << RTC_CNTL_COCPU_DONE_FORCE_S) +#define RTC_CNTL_COCPU_DONE_FORCE_V 0x00000001 +#define RTC_CNTL_COCPU_DONE_FORCE_S 24 + +/* RTC_CNTL_COCPU_SEL : R/W; bitpos: [23]; default: 1; + * 1: old ULP 0: new riscV + */ + +#define RTC_CNTL_COCPU_SEL (BIT(23)) +#define RTC_CNTL_COCPU_SEL_M (RTC_CNTL_COCPU_SEL_V << RTC_CNTL_COCPU_SEL_S) +#define RTC_CNTL_COCPU_SEL_V 0x00000001 +#define RTC_CNTL_COCPU_SEL_S 23 + +/* RTC_CNTL_COCPU_SHUT_RESET_EN : R/W; bitpos: [22]; default: 0; + * to reset cocpu + */ + +#define RTC_CNTL_COCPU_SHUT_RESET_EN (BIT(22)) +#define RTC_CNTL_COCPU_SHUT_RESET_EN_M (RTC_CNTL_COCPU_SHUT_RESET_EN_V << RTC_CNTL_COCPU_SHUT_RESET_EN_S) +#define RTC_CNTL_COCPU_SHUT_RESET_EN_V 0x00000001 +#define RTC_CNTL_COCPU_SHUT_RESET_EN_S 22 + +/* RTC_CNTL_COCPU_SHUT_2_CLK_DIS : R/W; bitpos: [21:14]; default: 40; + * time from shut cocpu to disable clk + */ + +#define RTC_CNTL_COCPU_SHUT_2_CLK_DIS 0x000000ff +#define RTC_CNTL_COCPU_SHUT_2_CLK_DIS_M (RTC_CNTL_COCPU_SHUT_2_CLK_DIS_V << RTC_CNTL_COCPU_SHUT_2_CLK_DIS_S) +#define RTC_CNTL_COCPU_SHUT_2_CLK_DIS_V 0x000000ff +#define RTC_CNTL_COCPU_SHUT_2_CLK_DIS_S 14 + +/* RTC_CNTL_COCPU_SHUT : R/W; bitpos: [13]; default: 0; + * to shut cocpu + */ + +#define RTC_CNTL_COCPU_SHUT (BIT(13)) +#define RTC_CNTL_COCPU_SHUT_M (RTC_CNTL_COCPU_SHUT_V << RTC_CNTL_COCPU_SHUT_S) +#define RTC_CNTL_COCPU_SHUT_V 0x00000001 +#define RTC_CNTL_COCPU_SHUT_S 13 + +/* RTC_CNTL_COCPU_START_2_INTR_EN : R/W; bitpos: [12:7]; default: 16; + * time from start cocpu to give start interrupt + */ + +#define RTC_CNTL_COCPU_START_2_INTR_EN 0x0000003f +#define RTC_CNTL_COCPU_START_2_INTR_EN_M (RTC_CNTL_COCPU_START_2_INTR_EN_V << RTC_CNTL_COCPU_START_2_INTR_EN_S) +#define RTC_CNTL_COCPU_START_2_INTR_EN_V 0x0000003f +#define RTC_CNTL_COCPU_START_2_INTR_EN_S 7 + +/* RTC_CNTL_COCPU_START_2_RESET_DIS : R/W; bitpos: [6:1]; default: 8; + * time from start cocpu to pull down reset + */ + +#define RTC_CNTL_COCPU_START_2_RESET_DIS 0x0000003f +#define RTC_CNTL_COCPU_START_2_RESET_DIS_M (RTC_CNTL_COCPU_START_2_RESET_DIS_V << RTC_CNTL_COCPU_START_2_RESET_DIS_S) +#define RTC_CNTL_COCPU_START_2_RESET_DIS_V 0x0000003f +#define RTC_CNTL_COCPU_START_2_RESET_DIS_S 1 + +/* RTC_CNTL_COCPU_CLK_FO : R/W; bitpos: [0]; default: 0; + * cocpu clk force on + */ + +#define RTC_CNTL_COCPU_CLK_FO (BIT(0)) +#define RTC_CNTL_COCPU_CLK_FO_M (RTC_CNTL_COCPU_CLK_FO_V << RTC_CNTL_COCPU_CLK_FO_S) +#define RTC_CNTL_COCPU_CLK_FO_V 0x00000001 +#define RTC_CNTL_COCPU_CLK_FO_S 0 + +/* RTC_CNTL_RTC_TOUCH_CTRL1_REG register + * configure touch controller + */ + +#define RTC_CNTL_RTC_TOUCH_CTRL1_REG (DR_REG_RTCCNTL_BASE + 0x108) + +/* RTC_CNTL_TOUCH_MEAS_NUM : R/W; bitpos: [31:16]; default: 4096; + * the meas length (in 8MHz) + */ + +#define RTC_CNTL_TOUCH_MEAS_NUM 0x0000ffff +#define RTC_CNTL_TOUCH_MEAS_NUM_M (RTC_CNTL_TOUCH_MEAS_NUM_V << RTC_CNTL_TOUCH_MEAS_NUM_S) +#define RTC_CNTL_TOUCH_MEAS_NUM_V 0x0000ffff +#define RTC_CNTL_TOUCH_MEAS_NUM_S 16 + +/* RTC_CNTL_TOUCH_SLEEP_CYCLES : R/W; bitpos: [15:0]; default: 256; + * sleep cycles for timer + */ + +#define RTC_CNTL_TOUCH_SLEEP_CYCLES 0x0000ffff +#define RTC_CNTL_TOUCH_SLEEP_CYCLES_M (RTC_CNTL_TOUCH_SLEEP_CYCLES_V << RTC_CNTL_TOUCH_SLEEP_CYCLES_S) +#define RTC_CNTL_TOUCH_SLEEP_CYCLES_V 0x0000ffff +#define RTC_CNTL_TOUCH_SLEEP_CYCLES_S 0 + +/* RTC_CNTL_RTC_TOUCH_CTRL2_REG register + * configure touch controller + */ + +#define RTC_CNTL_RTC_TOUCH_CTRL2_REG (DR_REG_RTCCNTL_BASE + 0x10c) + +/* RTC_CNTL_TOUCH_CLKGATE_EN : R/W; bitpos: [31]; default: 0; + * touch clock enable + */ + +#define RTC_CNTL_TOUCH_CLKGATE_EN (BIT(31)) +#define RTC_CNTL_TOUCH_CLKGATE_EN_M (RTC_CNTL_TOUCH_CLKGATE_EN_V << RTC_CNTL_TOUCH_CLKGATE_EN_S) +#define RTC_CNTL_TOUCH_CLKGATE_EN_V 0x00000001 +#define RTC_CNTL_TOUCH_CLKGATE_EN_S 31 + +/* RTC_CNTL_TOUCH_CLK_FO : R/W; bitpos: [30]; default: 0; + * touch clock force on + */ + +#define RTC_CNTL_TOUCH_CLK_FO (BIT(30)) +#define RTC_CNTL_TOUCH_CLK_FO_M (RTC_CNTL_TOUCH_CLK_FO_V << RTC_CNTL_TOUCH_CLK_FO_S) +#define RTC_CNTL_TOUCH_CLK_FO_V 0x00000001 +#define RTC_CNTL_TOUCH_CLK_FO_S 30 + +/* RTC_CNTL_TOUCH_RESET : R/W; bitpos: [29]; default: 0; + * reset upgrade touch + */ + +#define RTC_CNTL_TOUCH_RESET (BIT(29)) +#define RTC_CNTL_TOUCH_RESET_M (RTC_CNTL_TOUCH_RESET_V << RTC_CNTL_TOUCH_RESET_S) +#define RTC_CNTL_TOUCH_RESET_V 0x00000001 +#define RTC_CNTL_TOUCH_RESET_S 29 + +/* RTC_CNTL_TOUCH_TIMER_FORCE_DONE : R/W; bitpos: [28:27]; default: 0; + * force touch timer done + */ + +#define RTC_CNTL_TOUCH_TIMER_FORCE_DONE 0x00000003 +#define RTC_CNTL_TOUCH_TIMER_FORCE_DONE_M (RTC_CNTL_TOUCH_TIMER_FORCE_DONE_V << RTC_CNTL_TOUCH_TIMER_FORCE_DONE_S) +#define RTC_CNTL_TOUCH_TIMER_FORCE_DONE_V 0x00000003 +#define RTC_CNTL_TOUCH_TIMER_FORCE_DONE_S 27 + +/* RTC_CNTL_TOUCH_SLP_CYC_DIV : R/W; bitpos: [26:25]; default: 0; + * when a touch pad is active sleep cycle could be divided by this number + */ + +#define RTC_CNTL_TOUCH_SLP_CYC_DIV 0x00000003 +#define RTC_CNTL_TOUCH_SLP_CYC_DIV_M (RTC_CNTL_TOUCH_SLP_CYC_DIV_V << RTC_CNTL_TOUCH_SLP_CYC_DIV_S) +#define RTC_CNTL_TOUCH_SLP_CYC_DIV_V 0x00000003 +#define RTC_CNTL_TOUCH_SLP_CYC_DIV_S 25 + +/* RTC_CNTL_TOUCH_XPD_WAIT : R/W; bitpos: [24:17]; default: 4; + * the waiting cycles (in 8MHz) between TOUCH_START and TOUCH_XPD + */ + +#define RTC_CNTL_TOUCH_XPD_WAIT 0x000000ff +#define RTC_CNTL_TOUCH_XPD_WAIT_M (RTC_CNTL_TOUCH_XPD_WAIT_V << RTC_CNTL_TOUCH_XPD_WAIT_S) +#define RTC_CNTL_TOUCH_XPD_WAIT_V 0x000000ff +#define RTC_CNTL_TOUCH_XPD_WAIT_S 17 + +/* RTC_CNTL_TOUCH_START_FORCE : R/W; bitpos: [16]; default: 0; + * 1: to start touch fsm by SW + */ + +#define RTC_CNTL_TOUCH_START_FORCE (BIT(16)) +#define RTC_CNTL_TOUCH_START_FORCE_M (RTC_CNTL_TOUCH_START_FORCE_V << RTC_CNTL_TOUCH_START_FORCE_S) +#define RTC_CNTL_TOUCH_START_FORCE_V 0x00000001 +#define RTC_CNTL_TOUCH_START_FORCE_S 16 + +/* RTC_CNTL_TOUCH_START_EN : R/W; bitpos: [15]; default: 0; + * 1: start touch fsm + */ + +#define RTC_CNTL_TOUCH_START_EN (BIT(15)) +#define RTC_CNTL_TOUCH_START_EN_M (RTC_CNTL_TOUCH_START_EN_V << RTC_CNTL_TOUCH_START_EN_S) +#define RTC_CNTL_TOUCH_START_EN_V 0x00000001 +#define RTC_CNTL_TOUCH_START_EN_S 15 + +/* RTC_CNTL_TOUCH_START_FSM_EN : R/W; bitpos: [14]; default: 1; + * 1: TOUCH_START & TOUCH_XPD is controlled by touch fsm + */ + +#define RTC_CNTL_TOUCH_START_FSM_EN (BIT(14)) +#define RTC_CNTL_TOUCH_START_FSM_EN_M (RTC_CNTL_TOUCH_START_FSM_EN_V << RTC_CNTL_TOUCH_START_FSM_EN_S) +#define RTC_CNTL_TOUCH_START_FSM_EN_V 0x00000001 +#define RTC_CNTL_TOUCH_START_FSM_EN_S 14 + +/* RTC_CNTL_TOUCH_SLP_TIMER_EN : R/W; bitpos: [13]; default: 0; + * touch timer enable bit + */ + +#define RTC_CNTL_TOUCH_SLP_TIMER_EN (BIT(13)) +#define RTC_CNTL_TOUCH_SLP_TIMER_EN_M (RTC_CNTL_TOUCH_SLP_TIMER_EN_V << RTC_CNTL_TOUCH_SLP_TIMER_EN_S) +#define RTC_CNTL_TOUCH_SLP_TIMER_EN_V 0x00000001 +#define RTC_CNTL_TOUCH_SLP_TIMER_EN_S 13 + +/* RTC_CNTL_TOUCH_DBIAS : R/W; bitpos: [12]; default: 0; + * 1:use self bias 0:use bandgap bias + */ + +#define RTC_CNTL_TOUCH_DBIAS (BIT(12)) +#define RTC_CNTL_TOUCH_DBIAS_M (RTC_CNTL_TOUCH_DBIAS_V << RTC_CNTL_TOUCH_DBIAS_S) +#define RTC_CNTL_TOUCH_DBIAS_V 0x00000001 +#define RTC_CNTL_TOUCH_DBIAS_S 12 + +/* RTC_CNTL_TOUCH_REFC : R/W; bitpos: [11:9]; default: 0; + * TOUCH pad0 reference cap + */ + +#define RTC_CNTL_TOUCH_REFC 0x00000007 +#define RTC_CNTL_TOUCH_REFC_M (RTC_CNTL_TOUCH_REFC_V << RTC_CNTL_TOUCH_REFC_S) +#define RTC_CNTL_TOUCH_REFC_V 0x00000007 +#define RTC_CNTL_TOUCH_REFC_S 9 + +/* RTC_CNTL_TOUCH_XPD_BIAS : R/W; bitpos: [8]; default: 0; + * TOUCH_XPD_BIAS + */ + +#define RTC_CNTL_TOUCH_XPD_BIAS (BIT(8)) +#define RTC_CNTL_TOUCH_XPD_BIAS_M (RTC_CNTL_TOUCH_XPD_BIAS_V << RTC_CNTL_TOUCH_XPD_BIAS_S) +#define RTC_CNTL_TOUCH_XPD_BIAS_V 0x00000001 +#define RTC_CNTL_TOUCH_XPD_BIAS_S 8 + +/* RTC_CNTL_TOUCH_DREFH : R/W; bitpos: [7:6]; default: 3; + * TOUCH_DREFH + */ + +#define RTC_CNTL_TOUCH_DREFH 0x00000003 +#define RTC_CNTL_TOUCH_DREFH_M (RTC_CNTL_TOUCH_DREFH_V << RTC_CNTL_TOUCH_DREFH_S) +#define RTC_CNTL_TOUCH_DREFH_V 0x00000003 +#define RTC_CNTL_TOUCH_DREFH_S 6 + +/* RTC_CNTL_TOUCH_DREFL : R/W; bitpos: [5:4]; default: 0; + * TOUCH_DREFL + */ + +#define RTC_CNTL_TOUCH_DREFL 0x00000003 +#define RTC_CNTL_TOUCH_DREFL_M (RTC_CNTL_TOUCH_DREFL_V << RTC_CNTL_TOUCH_DREFL_S) +#define RTC_CNTL_TOUCH_DREFL_V 0x00000003 +#define RTC_CNTL_TOUCH_DREFL_S 4 + +/* RTC_CNTL_TOUCH_DRANGE : R/W; bitpos: [3:2]; default: 3; + * TOUCH_DRANGE + */ + +#define RTC_CNTL_TOUCH_DRANGE 0x00000003 +#define RTC_CNTL_TOUCH_DRANGE_M (RTC_CNTL_TOUCH_DRANGE_V << RTC_CNTL_TOUCH_DRANGE_S) +#define RTC_CNTL_TOUCH_DRANGE_V 0x00000003 +#define RTC_CNTL_TOUCH_DRANGE_S 2 + +/* RTC_CNTL_RTC_TOUCH_SCAN_CTRL_REG register + * configure touch controller + */ + +#define RTC_CNTL_RTC_TOUCH_SCAN_CTRL_REG (DR_REG_RTCCNTL_BASE + 0x110) + +/* RTC_CNTL_TOUCH_OUT_RING : R/W; bitpos: [31:28]; default: 15; + * select out ring pad + */ + +#define RTC_CNTL_TOUCH_OUT_RING 0x0000000f +#define RTC_CNTL_TOUCH_OUT_RING_M (RTC_CNTL_TOUCH_OUT_RING_V << RTC_CNTL_TOUCH_OUT_RING_S) +#define RTC_CNTL_TOUCH_OUT_RING_V 0x0000000f +#define RTC_CNTL_TOUCH_OUT_RING_S 28 + +/* RTC_CNTL_TOUCH_BUFDRV : R/W; bitpos: [27:25]; default: 0; + * touch7 buffer driver strength + */ + +#define RTC_CNTL_TOUCH_BUFDRV 0x00000007 +#define RTC_CNTL_TOUCH_BUFDRV_M (RTC_CNTL_TOUCH_BUFDRV_V << RTC_CNTL_TOUCH_BUFDRV_S) +#define RTC_CNTL_TOUCH_BUFDRV_V 0x00000007 +#define RTC_CNTL_TOUCH_BUFDRV_S 25 + +/* RTC_CNTL_TOUCH_SCAN_PAD_MAP : R/W; bitpos: [24:10]; default: 0; + * touch scan mode pad enable map + */ + +#define RTC_CNTL_TOUCH_SCAN_PAD_MAP 0x00007fff +#define RTC_CNTL_TOUCH_SCAN_PAD_MAP_M (RTC_CNTL_TOUCH_SCAN_PAD_MAP_V << RTC_CNTL_TOUCH_SCAN_PAD_MAP_S) +#define RTC_CNTL_TOUCH_SCAN_PAD_MAP_V 0x00007fff +#define RTC_CNTL_TOUCH_SCAN_PAD_MAP_S 10 + +/* RTC_CNTL_TOUCH_SHIELD_PAD_EN : R/W; bitpos: [9]; default: 0; + * touch pad14 will be used as shield + */ + +#define RTC_CNTL_TOUCH_SHIELD_PAD_EN (BIT(9)) +#define RTC_CNTL_TOUCH_SHIELD_PAD_EN_M (RTC_CNTL_TOUCH_SHIELD_PAD_EN_V << RTC_CNTL_TOUCH_SHIELD_PAD_EN_S) +#define RTC_CNTL_TOUCH_SHIELD_PAD_EN_V 0x00000001 +#define RTC_CNTL_TOUCH_SHIELD_PAD_EN_S 9 + +/* RTC_CNTL_TOUCH_INACTIVE_CONNECTION : R/W; bitpos: [8]; default: 1; + * inactive touch pads connect to 1: gnd 0: HighZ + */ + +#define RTC_CNTL_TOUCH_INACTIVE_CONNECTION (BIT(8)) +#define RTC_CNTL_TOUCH_INACTIVE_CONNECTION_M (RTC_CNTL_TOUCH_INACTIVE_CONNECTION_V << RTC_CNTL_TOUCH_INACTIVE_CONNECTION_S) +#define RTC_CNTL_TOUCH_INACTIVE_CONNECTION_V 0x00000001 +#define RTC_CNTL_TOUCH_INACTIVE_CONNECTION_S 8 + +/* RTC_CNTL_TOUCH_DENOISE_EN : R/W; bitpos: [2]; default: 0; + * touch pad0 will be used to de-noise + */ + +#define RTC_CNTL_TOUCH_DENOISE_EN (BIT(2)) +#define RTC_CNTL_TOUCH_DENOISE_EN_M (RTC_CNTL_TOUCH_DENOISE_EN_V << RTC_CNTL_TOUCH_DENOISE_EN_S) +#define RTC_CNTL_TOUCH_DENOISE_EN_V 0x00000001 +#define RTC_CNTL_TOUCH_DENOISE_EN_S 2 + +/* RTC_CNTL_TOUCH_DENOISE_RES : R/W; bitpos: [1:0]; default: 2; + * De-noise resolution: 12/10/8/4 bit + */ + +#define RTC_CNTL_TOUCH_DENOISE_RES 0x00000003 +#define RTC_CNTL_TOUCH_DENOISE_RES_M (RTC_CNTL_TOUCH_DENOISE_RES_V << RTC_CNTL_TOUCH_DENOISE_RES_S) +#define RTC_CNTL_TOUCH_DENOISE_RES_V 0x00000003 +#define RTC_CNTL_TOUCH_DENOISE_RES_S 0 + +/* RTC_CNTL_RTC_TOUCH_SLP_THRES_REG register + * configure touch controller + */ + +#define RTC_CNTL_RTC_TOUCH_SLP_THRES_REG (DR_REG_RTCCNTL_BASE + 0x114) + +/* RTC_CNTL_TOUCH_SLP_PAD : R/W; bitpos: [31:27]; default: 15; + * configure which pad as slp pad + */ + +#define RTC_CNTL_TOUCH_SLP_PAD 0x0000001f +#define RTC_CNTL_TOUCH_SLP_PAD_M (RTC_CNTL_TOUCH_SLP_PAD_V << RTC_CNTL_TOUCH_SLP_PAD_S) +#define RTC_CNTL_TOUCH_SLP_PAD_V 0x0000001f +#define RTC_CNTL_TOUCH_SLP_PAD_S 27 + +/* RTC_CNTL_TOUCH_SLP_APPROACH_EN : R/W; bitpos: [26]; default: 0; + * sleep pad approach function enable + */ + +#define RTC_CNTL_TOUCH_SLP_APPROACH_EN (BIT(26)) +#define RTC_CNTL_TOUCH_SLP_APPROACH_EN_M (RTC_CNTL_TOUCH_SLP_APPROACH_EN_V << RTC_CNTL_TOUCH_SLP_APPROACH_EN_S) +#define RTC_CNTL_TOUCH_SLP_APPROACH_EN_V 0x00000001 +#define RTC_CNTL_TOUCH_SLP_APPROACH_EN_S 26 + +/* RTC_CNTL_TOUCH_SLP_TH : R/W; bitpos: [21:0]; default: 0; + * the threshold for sleep touch pad + */ + +#define RTC_CNTL_TOUCH_SLP_TH 0x003fffff +#define RTC_CNTL_TOUCH_SLP_TH_M (RTC_CNTL_TOUCH_SLP_TH_V << RTC_CNTL_TOUCH_SLP_TH_S) +#define RTC_CNTL_TOUCH_SLP_TH_V 0x003fffff +#define RTC_CNTL_TOUCH_SLP_TH_S 0 + +/* RTC_CNTL_RTC_TOUCH_APPROACH_REG register + * configure touch controller + */ + +#define RTC_CNTL_RTC_TOUCH_APPROACH_REG (DR_REG_RTCCNTL_BASE + 0x118) + +/* RTC_CNTL_TOUCH_APPROACH_MEAS_TIME : R/W; bitpos: [31:24]; default: 80; + * approach pads total meas times + */ + +#define RTC_CNTL_TOUCH_APPROACH_MEAS_TIME 0x000000ff +#define RTC_CNTL_TOUCH_APPROACH_MEAS_TIME_M (RTC_CNTL_TOUCH_APPROACH_MEAS_TIME_V << RTC_CNTL_TOUCH_APPROACH_MEAS_TIME_S) +#define RTC_CNTL_TOUCH_APPROACH_MEAS_TIME_V 0x000000ff +#define RTC_CNTL_TOUCH_APPROACH_MEAS_TIME_S 24 + +/* RTC_CNTL_TOUCH_SLP_CHANNEL_CLR : WO; bitpos: [23]; default: 0; + * clear touch slp channel + */ + +#define RTC_CNTL_TOUCH_SLP_CHANNEL_CLR (BIT(23)) +#define RTC_CNTL_TOUCH_SLP_CHANNEL_CLR_M (RTC_CNTL_TOUCH_SLP_CHANNEL_CLR_V << RTC_CNTL_TOUCH_SLP_CHANNEL_CLR_S) +#define RTC_CNTL_TOUCH_SLP_CHANNEL_CLR_V 0x00000001 +#define RTC_CNTL_TOUCH_SLP_CHANNEL_CLR_S 23 + +/* RTC_CNTL_RTC_TOUCH_FILTER_CTRL_REG register + * configure touch controller + */ + +#define RTC_CNTL_RTC_TOUCH_FILTER_CTRL_REG (DR_REG_RTCCNTL_BASE + 0x11c) + +/* RTC_CNTL_TOUCH_FILTER_EN : R/W; bitpos: [31]; default: 1; + * touch filter enable + */ + +#define RTC_CNTL_TOUCH_FILTER_EN (BIT(31)) +#define RTC_CNTL_TOUCH_FILTER_EN_M (RTC_CNTL_TOUCH_FILTER_EN_V << RTC_CNTL_TOUCH_FILTER_EN_S) +#define RTC_CNTL_TOUCH_FILTER_EN_V 0x00000001 +#define RTC_CNTL_TOUCH_FILTER_EN_S 31 + +/* RTC_CNTL_TOUCH_FILTER_MODE : R/W; bitpos: [30:28]; default: 1; + * 0: IIR ? 1: IIR ? 2: IIR 1/8 3: Jitter + */ + +#define RTC_CNTL_TOUCH_FILTER_MODE 0x00000007 +#define RTC_CNTL_TOUCH_FILTER_MODE_M (RTC_CNTL_TOUCH_FILTER_MODE_V << RTC_CNTL_TOUCH_FILTER_MODE_S) +#define RTC_CNTL_TOUCH_FILTER_MODE_V 0x00000007 +#define RTC_CNTL_TOUCH_FILTER_MODE_S 28 + +/* RTC_CNTL_TOUCH_DEBOUNCE : R/W; bitpos: [27:25]; default: 3; + * debounce counter + */ + +#define RTC_CNTL_TOUCH_DEBOUNCE 0x00000007 +#define RTC_CNTL_TOUCH_DEBOUNCE_M (RTC_CNTL_TOUCH_DEBOUNCE_V << RTC_CNTL_TOUCH_DEBOUNCE_S) +#define RTC_CNTL_TOUCH_DEBOUNCE_V 0x00000007 +#define RTC_CNTL_TOUCH_DEBOUNCE_S 25 + +/* RTC_CNTL_TOUCH_HYSTERESIS : R/W; bitpos: [24:23]; default: 1; + * hysteresis + */ + +#define RTC_CNTL_TOUCH_HYSTERESIS 0x00000003 +#define RTC_CNTL_TOUCH_HYSTERESIS_M (RTC_CNTL_TOUCH_HYSTERESIS_V << RTC_CNTL_TOUCH_HYSTERESIS_S) +#define RTC_CNTL_TOUCH_HYSTERESIS_V 0x00000003 +#define RTC_CNTL_TOUCH_HYSTERESIS_S 23 + +/* RTC_CNTL_TOUCH_NOISE_THRES : R/W; bitpos: [22:21]; default: 1; + * noise thres + */ + +#define RTC_CNTL_TOUCH_NOISE_THRES 0x00000003 +#define RTC_CNTL_TOUCH_NOISE_THRES_M (RTC_CNTL_TOUCH_NOISE_THRES_V << RTC_CNTL_TOUCH_NOISE_THRES_S) +#define RTC_CNTL_TOUCH_NOISE_THRES_V 0x00000003 +#define RTC_CNTL_TOUCH_NOISE_THRES_S 21 + +/* RTC_CNTL_TOUCH_NEG_NOISE_THRES : R/W; bitpos: [20:19]; default: 1; + * neg noise thres + */ + +#define RTC_CNTL_TOUCH_NEG_NOISE_THRES 0x00000003 +#define RTC_CNTL_TOUCH_NEG_NOISE_THRES_M (RTC_CNTL_TOUCH_NEG_NOISE_THRES_V << RTC_CNTL_TOUCH_NEG_NOISE_THRES_S) +#define RTC_CNTL_TOUCH_NEG_NOISE_THRES_V 0x00000003 +#define RTC_CNTL_TOUCH_NEG_NOISE_THRES_S 19 + +/* RTC_CNTL_TOUCH_NEG_NOISE_LIMIT : R/W; bitpos: [18:15]; default: 5; + * negative threshold counter limit + */ + +#define RTC_CNTL_TOUCH_NEG_NOISE_LIMIT 0x0000000f +#define RTC_CNTL_TOUCH_NEG_NOISE_LIMIT_M (RTC_CNTL_TOUCH_NEG_NOISE_LIMIT_V << RTC_CNTL_TOUCH_NEG_NOISE_LIMIT_S) +#define RTC_CNTL_TOUCH_NEG_NOISE_LIMIT_V 0x0000000f +#define RTC_CNTL_TOUCH_NEG_NOISE_LIMIT_S 15 + +/* RTC_CNTL_TOUCH_JITTER_STEP : R/W; bitpos: [14:11]; default: 1; + * touch jitter step + */ + +#define RTC_CNTL_TOUCH_JITTER_STEP 0x0000000f +#define RTC_CNTL_TOUCH_JITTER_STEP_M (RTC_CNTL_TOUCH_JITTER_STEP_V << RTC_CNTL_TOUCH_JITTER_STEP_S) +#define RTC_CNTL_TOUCH_JITTER_STEP_V 0x0000000f +#define RTC_CNTL_TOUCH_JITTER_STEP_S 11 + +/* RTC_CNTL_TOUCH_SMOOTH_LVL : R/W; bitpos: [10:9]; default: 0; + * smooth filter factor + */ + +#define RTC_CNTL_TOUCH_SMOOTH_LVL 0x00000003 +#define RTC_CNTL_TOUCH_SMOOTH_LVL_M (RTC_CNTL_TOUCH_SMOOTH_LVL_V << RTC_CNTL_TOUCH_SMOOTH_LVL_S) +#define RTC_CNTL_TOUCH_SMOOTH_LVL_V 0x00000003 +#define RTC_CNTL_TOUCH_SMOOTH_LVL_S 9 + +/* RTC_CNTL_TOUCH_BYPASS_NOISE_THRES : R/W; bitpos: [8]; default: 0; + * bypaas noise thres + */ + +#define RTC_CNTL_TOUCH_BYPASS_NOISE_THRES (BIT(8)) +#define RTC_CNTL_TOUCH_BYPASS_NOISE_THRES_M (RTC_CNTL_TOUCH_BYPASS_NOISE_THRES_V << RTC_CNTL_TOUCH_BYPASS_NOISE_THRES_S) +#define RTC_CNTL_TOUCH_BYPASS_NOISE_THRES_V 0x00000001 +#define RTC_CNTL_TOUCH_BYPASS_NOISE_THRES_S 8 + +/* RTC_CNTL_TOUCH_BYPASS_NEG_NOISE_THRES : R/W; bitpos: [7]; default: 0; + * bypass neg noise thres + */ + +#define RTC_CNTL_TOUCH_BYPASS_NEG_NOISE_THRES (BIT(7)) +#define RTC_CNTL_TOUCH_BYPASS_NEG_NOISE_THRES_M (RTC_CNTL_TOUCH_BYPASS_NEG_NOISE_THRES_V << RTC_CNTL_TOUCH_BYPASS_NEG_NOISE_THRES_S) +#define RTC_CNTL_TOUCH_BYPASS_NEG_NOISE_THRES_V 0x00000001 +#define RTC_CNTL_TOUCH_BYPASS_NEG_NOISE_THRES_S 7 + +/* RTC_CNTL_RTC_USB_CONF_REG register + * usb configure + */ + +#define RTC_CNTL_RTC_USB_CONF_REG (DR_REG_RTCCNTL_BASE + 0x120) + +/* RTC_CNTL_SW_HW_USB_PHY_SEL : R/W; bitpos: [20]; default: 0; + * reg_sw_hw_usb_phy_sel + */ + +#define RTC_CNTL_SW_HW_USB_PHY_SEL (BIT(20)) +#define RTC_CNTL_SW_HW_USB_PHY_SEL_M (RTC_CNTL_SW_HW_USB_PHY_SEL_V << RTC_CNTL_SW_HW_USB_PHY_SEL_S) +#define RTC_CNTL_SW_HW_USB_PHY_SEL_V 0x00000001 +#define RTC_CNTL_SW_HW_USB_PHY_SEL_S 20 + +/* RTC_CNTL_SW_USB_PHY_SEL : R/W; bitpos: [19]; default: 0; + * reg_sw_usb_phy_sel + */ + +#define RTC_CNTL_SW_USB_PHY_SEL (BIT(19)) +#define RTC_CNTL_SW_USB_PHY_SEL_M (RTC_CNTL_SW_USB_PHY_SEL_V << RTC_CNTL_SW_USB_PHY_SEL_S) +#define RTC_CNTL_SW_USB_PHY_SEL_V 0x00000001 +#define RTC_CNTL_SW_USB_PHY_SEL_S 19 + +/* RTC_CNTL_IO_MUX_RESET_DISABLE : R/W; bitpos: [18]; default: 0; + * reg_io_mux_reset_disable + */ + +#define RTC_CNTL_IO_MUX_RESET_DISABLE (BIT(18)) +#define RTC_CNTL_IO_MUX_RESET_DISABLE_M (RTC_CNTL_IO_MUX_RESET_DISABLE_V << RTC_CNTL_IO_MUX_RESET_DISABLE_S) +#define RTC_CNTL_IO_MUX_RESET_DISABLE_V 0x00000001 +#define RTC_CNTL_IO_MUX_RESET_DISABLE_S 18 + +/* RTC_CNTL_USB_RESET_DISABLE : R/W; bitpos: [17]; default: 0; + * reg_usb_reset_disable + */ + +#define RTC_CNTL_USB_RESET_DISABLE (BIT(17)) +#define RTC_CNTL_USB_RESET_DISABLE_M (RTC_CNTL_USB_RESET_DISABLE_V << RTC_CNTL_USB_RESET_DISABLE_S) +#define RTC_CNTL_USB_RESET_DISABLE_V 0x00000001 +#define RTC_CNTL_USB_RESET_DISABLE_S 17 + +/* RTC_CNTL_USB_TX_EN_OVERRIDE : R/W; bitpos: [16]; default: 0; + * reg_usb_tx_en_override + */ + +#define RTC_CNTL_USB_TX_EN_OVERRIDE (BIT(16)) +#define RTC_CNTL_USB_TX_EN_OVERRIDE_M (RTC_CNTL_USB_TX_EN_OVERRIDE_V << RTC_CNTL_USB_TX_EN_OVERRIDE_S) +#define RTC_CNTL_USB_TX_EN_OVERRIDE_V 0x00000001 +#define RTC_CNTL_USB_TX_EN_OVERRIDE_S 16 + +/* RTC_CNTL_USB_TX_EN : R/W; bitpos: [15]; default: 0; + * reg_usb_tx_en + */ + +#define RTC_CNTL_USB_TX_EN (BIT(15)) +#define RTC_CNTL_USB_TX_EN_M (RTC_CNTL_USB_TX_EN_V << RTC_CNTL_USB_TX_EN_S) +#define RTC_CNTL_USB_TX_EN_V 0x00000001 +#define RTC_CNTL_USB_TX_EN_S 15 + +/* RTC_CNTL_USB_TXP : R/W; bitpos: [14]; default: 0; + * reg_usb_txp + */ + +#define RTC_CNTL_USB_TXP (BIT(14)) +#define RTC_CNTL_USB_TXP_M (RTC_CNTL_USB_TXP_V << RTC_CNTL_USB_TXP_S) +#define RTC_CNTL_USB_TXP_V 0x00000001 +#define RTC_CNTL_USB_TXP_S 14 + +/* RTC_CNTL_USB_TXM : R/W; bitpos: [13]; default: 0; + * reg_usb_txm + */ + +#define RTC_CNTL_USB_TXM (BIT(13)) +#define RTC_CNTL_USB_TXM_M (RTC_CNTL_USB_TXM_V << RTC_CNTL_USB_TXM_S) +#define RTC_CNTL_USB_TXM_V 0x00000001 +#define RTC_CNTL_USB_TXM_S 13 + +/* RTC_CNTL_USB_PAD_ENABLE : R/W; bitpos: [12]; default: 0; + * reg_usb_pad_enable + */ + +#define RTC_CNTL_USB_PAD_ENABLE (BIT(12)) +#define RTC_CNTL_USB_PAD_ENABLE_M (RTC_CNTL_USB_PAD_ENABLE_V << RTC_CNTL_USB_PAD_ENABLE_S) +#define RTC_CNTL_USB_PAD_ENABLE_V 0x00000001 +#define RTC_CNTL_USB_PAD_ENABLE_S 12 + +/* RTC_CNTL_USB_PAD_ENABLE_OVERRIDE : R/W; bitpos: [11]; default: 0; + * reg_usb_pad_enable_override + */ + +#define RTC_CNTL_USB_PAD_ENABLE_OVERRIDE (BIT(11)) +#define RTC_CNTL_USB_PAD_ENABLE_OVERRIDE_M (RTC_CNTL_USB_PAD_ENABLE_OVERRIDE_V << RTC_CNTL_USB_PAD_ENABLE_OVERRIDE_S) +#define RTC_CNTL_USB_PAD_ENABLE_OVERRIDE_V 0x00000001 +#define RTC_CNTL_USB_PAD_ENABLE_OVERRIDE_S 11 + +/* RTC_CNTL_USB_PULLUP_VALUE : R/W; bitpos: [10]; default: 0; + * reg_usb_pullup_value + */ + +#define RTC_CNTL_USB_PULLUP_VALUE (BIT(10)) +#define RTC_CNTL_USB_PULLUP_VALUE_M (RTC_CNTL_USB_PULLUP_VALUE_V << RTC_CNTL_USB_PULLUP_VALUE_S) +#define RTC_CNTL_USB_PULLUP_VALUE_V 0x00000001 +#define RTC_CNTL_USB_PULLUP_VALUE_S 10 + +/* RTC_CNTL_USB_DM_PULLDOWN : R/W; bitpos: [9]; default: 0; + * reg_usb_dm_pulldown + */ + +#define RTC_CNTL_USB_DM_PULLDOWN (BIT(9)) +#define RTC_CNTL_USB_DM_PULLDOWN_M (RTC_CNTL_USB_DM_PULLDOWN_V << RTC_CNTL_USB_DM_PULLDOWN_S) +#define RTC_CNTL_USB_DM_PULLDOWN_V 0x00000001 +#define RTC_CNTL_USB_DM_PULLDOWN_S 9 + +/* RTC_CNTL_USB_DM_PULLUP : R/W; bitpos: [8]; default: 0; + * reg_usb_dm_pullup + */ + +#define RTC_CNTL_USB_DM_PULLUP (BIT(8)) +#define RTC_CNTL_USB_DM_PULLUP_M (RTC_CNTL_USB_DM_PULLUP_V << RTC_CNTL_USB_DM_PULLUP_S) +#define RTC_CNTL_USB_DM_PULLUP_V 0x00000001 +#define RTC_CNTL_USB_DM_PULLUP_S 8 + +/* RTC_CNTL_USB_DP_PULLDOWN : R/W; bitpos: [7]; default: 0; + * reg_usb_dp_pulldown + */ + +#define RTC_CNTL_USB_DP_PULLDOWN (BIT(7)) +#define RTC_CNTL_USB_DP_PULLDOWN_M (RTC_CNTL_USB_DP_PULLDOWN_V << RTC_CNTL_USB_DP_PULLDOWN_S) +#define RTC_CNTL_USB_DP_PULLDOWN_V 0x00000001 +#define RTC_CNTL_USB_DP_PULLDOWN_S 7 + +/* RTC_CNTL_USB_DP_PULLUP : R/W; bitpos: [6]; default: 0; + * reg_usb_dp_pullup + */ + +#define RTC_CNTL_USB_DP_PULLUP (BIT(6)) +#define RTC_CNTL_USB_DP_PULLUP_M (RTC_CNTL_USB_DP_PULLUP_V << RTC_CNTL_USB_DP_PULLUP_S) +#define RTC_CNTL_USB_DP_PULLUP_V 0x00000001 +#define RTC_CNTL_USB_DP_PULLUP_S 6 + +/* RTC_CNTL_USB_PAD_PULL_OVERRIDE : R/W; bitpos: [5]; default: 0; + * reg_usb_pad_pull_override + */ + +#define RTC_CNTL_USB_PAD_PULL_OVERRIDE (BIT(5)) +#define RTC_CNTL_USB_PAD_PULL_OVERRIDE_M (RTC_CNTL_USB_PAD_PULL_OVERRIDE_V << RTC_CNTL_USB_PAD_PULL_OVERRIDE_S) +#define RTC_CNTL_USB_PAD_PULL_OVERRIDE_V 0x00000001 +#define RTC_CNTL_USB_PAD_PULL_OVERRIDE_S 5 + +/* RTC_CNTL_USB_VREF_OVERRIDE : R/W; bitpos: [4]; default: 0; + * reg_usb_vref_override + */ + +#define RTC_CNTL_USB_VREF_OVERRIDE (BIT(4)) +#define RTC_CNTL_USB_VREF_OVERRIDE_M (RTC_CNTL_USB_VREF_OVERRIDE_V << RTC_CNTL_USB_VREF_OVERRIDE_S) +#define RTC_CNTL_USB_VREF_OVERRIDE_V 0x00000001 +#define RTC_CNTL_USB_VREF_OVERRIDE_S 4 + +/* RTC_CNTL_USB_VREFL : R/W; bitpos: [3:2]; default: 0; + * reg_usb_vrefl + */ + +#define RTC_CNTL_USB_VREFL 0x00000003 +#define RTC_CNTL_USB_VREFL_M (RTC_CNTL_USB_VREFL_V << RTC_CNTL_USB_VREFL_S) +#define RTC_CNTL_USB_VREFL_V 0x00000003 +#define RTC_CNTL_USB_VREFL_S 2 + +/* RTC_CNTL_USB_VREFH : R/W; bitpos: [1:0]; default: 0; + * reg_usb_vrefh + */ + +#define RTC_CNTL_USB_VREFH 0x00000003 +#define RTC_CNTL_USB_VREFH_M (RTC_CNTL_USB_VREFH_V << RTC_CNTL_USB_VREFH_S) +#define RTC_CNTL_USB_VREFH_V 0x00000003 +#define RTC_CNTL_USB_VREFH_S 0 + +/* RTC_CNTL_RTC_TOUCH_TIMEOUT_CTRL_REG register + * configure touch controller + */ + +#define RTC_CNTL_RTC_TOUCH_TIMEOUT_CTRL_REG (DR_REG_RTCCNTL_BASE + 0x124) + +/* RTC_CNTL_TOUCH_TIMEOUT_EN : R/W; bitpos: [22]; default: 1; + * enable touch timerout + */ + +#define RTC_CNTL_TOUCH_TIMEOUT_EN (BIT(22)) +#define RTC_CNTL_TOUCH_TIMEOUT_EN_M (RTC_CNTL_TOUCH_TIMEOUT_EN_V << RTC_CNTL_TOUCH_TIMEOUT_EN_S) +#define RTC_CNTL_TOUCH_TIMEOUT_EN_V 0x00000001 +#define RTC_CNTL_TOUCH_TIMEOUT_EN_S 22 + +/* RTC_CNTL_TOUCH_TIMEOUT_NUM : R/W; bitpos: [21:0]; default: 4194303; + * configure touch timerout time + */ + +#define RTC_CNTL_TOUCH_TIMEOUT_NUM 0x003fffff +#define RTC_CNTL_TOUCH_TIMEOUT_NUM_M (RTC_CNTL_TOUCH_TIMEOUT_NUM_V << RTC_CNTL_TOUCH_TIMEOUT_NUM_S) +#define RTC_CNTL_TOUCH_TIMEOUT_NUM_V 0x003fffff +#define RTC_CNTL_TOUCH_TIMEOUT_NUM_S 0 + +/* RTC_CNTL_RTC_SLP_REJECT_CAUSE_REG register + * get reject casue + */ + +#define RTC_CNTL_RTC_SLP_REJECT_CAUSE_REG (DR_REG_RTCCNTL_BASE + 0x128) + +/* RTC_CNTL_REJECT_CAUSE : RO; bitpos: [17:0]; default: 0; + * sleep reject cause + */ + +#define RTC_CNTL_REJECT_CAUSE 0x0003ffff +#define RTC_CNTL_REJECT_CAUSE_M (RTC_CNTL_REJECT_CAUSE_V << RTC_CNTL_REJECT_CAUSE_S) +#define RTC_CNTL_REJECT_CAUSE_V 0x0003ffff +#define RTC_CNTL_REJECT_CAUSE_S 0 + +/* RTC_CNTL_RTC_OPTION1_REG register + * rtc common configure + */ + +#define RTC_CNTL_RTC_OPTION1_REG (DR_REG_RTCCNTL_BASE + 0x12c) + +/* RTC_CNTL_FORCE_DOWNLOAD_BOOT : R/W; bitpos: [0]; default: 0; + * force chip entry download boot by sw + */ + +#define RTC_CNTL_FORCE_DOWNLOAD_BOOT (BIT(0)) +#define RTC_CNTL_FORCE_DOWNLOAD_BOOT_M (RTC_CNTL_FORCE_DOWNLOAD_BOOT_V << RTC_CNTL_FORCE_DOWNLOAD_BOOT_S) +#define RTC_CNTL_FORCE_DOWNLOAD_BOOT_V 0x00000001 +#define RTC_CNTL_FORCE_DOWNLOAD_BOOT_S 0 + +/* RTC_CNTL_RTC_SLP_WAKEUP_CAUSE_REG register + * get wakeup cause + */ + +#define RTC_CNTL_RTC_SLP_WAKEUP_CAUSE_REG (DR_REG_RTCCNTL_BASE + 0x130) + +/* RTC_CNTL_WAKEUP_CAUSE : RO; bitpos: [16:0]; default: 0; + * sleep wakeup cause + */ + +#define RTC_CNTL_WAKEUP_CAUSE 0x0001ffff +#define RTC_CNTL_WAKEUP_CAUSE_M (RTC_CNTL_WAKEUP_CAUSE_V << RTC_CNTL_WAKEUP_CAUSE_S) +#define RTC_CNTL_WAKEUP_CAUSE_V 0x0001ffff +#define RTC_CNTL_WAKEUP_CAUSE_S 0 + +/* RTC_CNTL_RTC_ULP_CP_TIMER_1_REG register + * configure ulp sleep time + */ + +#define RTC_CNTL_RTC_ULP_CP_TIMER_1_REG (DR_REG_RTCCNTL_BASE + 0x134) + +/* RTC_CNTL_ULP_CP_TIMER_SLP_CYCLE : R/W; bitpos: [31:8]; default: 200; + * sleep cycles for ULP-coprocessor timer + */ + +#define RTC_CNTL_ULP_CP_TIMER_SLP_CYCLE 0x00ffffff +#define RTC_CNTL_ULP_CP_TIMER_SLP_CYCLE_M (RTC_CNTL_ULP_CP_TIMER_SLP_CYCLE_V << RTC_CNTL_ULP_CP_TIMER_SLP_CYCLE_S) +#define RTC_CNTL_ULP_CP_TIMER_SLP_CYCLE_V 0x00ffffff +#define RTC_CNTL_ULP_CP_TIMER_SLP_CYCLE_S 8 + +/* RTC_CNTL_INT_ENA_RTC_W1TS_REG register + * oneset rtc interrupt + */ + +#define RTC_CNTL_INT_ENA_RTC_W1TS_REG (DR_REG_RTCCNTL_BASE + 0x138) + +/* RTC_CNTL_RTC_TOUCH_APPROACH_LOOP_DONE_INT_ENA_W1TS : WO; bitpos: [20]; + * default: 0; + * enbale touch approach_loop done interrupt + */ + +#define RTC_CNTL_RTC_TOUCH_APPROACH_LOOP_DONE_INT_ENA_W1TS (BIT(20)) +#define RTC_CNTL_RTC_TOUCH_APPROACH_LOOP_DONE_INT_ENA_W1TS_M (RTC_CNTL_RTC_TOUCH_APPROACH_LOOP_DONE_INT_ENA_W1TS_V << RTC_CNTL_RTC_TOUCH_APPROACH_LOOP_DONE_INT_ENA_W1TS_S) +#define RTC_CNTL_RTC_TOUCH_APPROACH_LOOP_DONE_INT_ENA_W1TS_V 0x00000001 +#define RTC_CNTL_RTC_TOUCH_APPROACH_LOOP_DONE_INT_ENA_W1TS_S 20 + +/* RTC_CNTL_RTC_GLITCH_DET_INT_ENA_W1TS : WO; bitpos: [19]; default: 0; + * enbale gitch det interrupt + */ + +#define RTC_CNTL_RTC_GLITCH_DET_INT_ENA_W1TS (BIT(19)) +#define RTC_CNTL_RTC_GLITCH_DET_INT_ENA_W1TS_M (RTC_CNTL_RTC_GLITCH_DET_INT_ENA_W1TS_V << RTC_CNTL_RTC_GLITCH_DET_INT_ENA_W1TS_S) +#define RTC_CNTL_RTC_GLITCH_DET_INT_ENA_W1TS_V 0x00000001 +#define RTC_CNTL_RTC_GLITCH_DET_INT_ENA_W1TS_S 19 + +/* RTC_CNTL_RTC_TOUCH_TIMEOUT_INT_ENA_W1TS : WO; bitpos: [18]; default: 0; + * enable touch timeout interrupt + */ + +#define RTC_CNTL_RTC_TOUCH_TIMEOUT_INT_ENA_W1TS (BIT(18)) +#define RTC_CNTL_RTC_TOUCH_TIMEOUT_INT_ENA_W1TS_M (RTC_CNTL_RTC_TOUCH_TIMEOUT_INT_ENA_W1TS_V << RTC_CNTL_RTC_TOUCH_TIMEOUT_INT_ENA_W1TS_S) +#define RTC_CNTL_RTC_TOUCH_TIMEOUT_INT_ENA_W1TS_V 0x00000001 +#define RTC_CNTL_RTC_TOUCH_TIMEOUT_INT_ENA_W1TS_S 18 + +/* RTC_CNTL_RTC_COCPU_TRAP_INT_ENA_W1TS : WO; bitpos: [17]; default: 0; + * enable cocpu trap interrupt + */ + +#define RTC_CNTL_RTC_COCPU_TRAP_INT_ENA_W1TS (BIT(17)) +#define RTC_CNTL_RTC_COCPU_TRAP_INT_ENA_W1TS_M (RTC_CNTL_RTC_COCPU_TRAP_INT_ENA_W1TS_V << RTC_CNTL_RTC_COCPU_TRAP_INT_ENA_W1TS_S) +#define RTC_CNTL_RTC_COCPU_TRAP_INT_ENA_W1TS_V 0x00000001 +#define RTC_CNTL_RTC_COCPU_TRAP_INT_ENA_W1TS_S 17 + +/* RTC_CNTL_RTC_XTAL32K_DEAD_INT_ENA_W1TS : WO; bitpos: [16]; default: 0; + * enable xtal32k_dead interrupt + */ + +#define RTC_CNTL_RTC_XTAL32K_DEAD_INT_ENA_W1TS (BIT(16)) +#define RTC_CNTL_RTC_XTAL32K_DEAD_INT_ENA_W1TS_M (RTC_CNTL_RTC_XTAL32K_DEAD_INT_ENA_W1TS_V << RTC_CNTL_RTC_XTAL32K_DEAD_INT_ENA_W1TS_S) +#define RTC_CNTL_RTC_XTAL32K_DEAD_INT_ENA_W1TS_V 0x00000001 +#define RTC_CNTL_RTC_XTAL32K_DEAD_INT_ENA_W1TS_S 16 + +/* RTC_CNTL_RTC_SWD_INT_ENA_W1TS : WO; bitpos: [15]; default: 0; + * enable super watch dog interrupt + */ + +#define RTC_CNTL_RTC_SWD_INT_ENA_W1TS (BIT(15)) +#define RTC_CNTL_RTC_SWD_INT_ENA_W1TS_M (RTC_CNTL_RTC_SWD_INT_ENA_W1TS_V << RTC_CNTL_RTC_SWD_INT_ENA_W1TS_S) +#define RTC_CNTL_RTC_SWD_INT_ENA_W1TS_V 0x00000001 +#define RTC_CNTL_RTC_SWD_INT_ENA_W1TS_S 15 + +/* RTC_CNTL_RTC_SARADC2_INT_ENA_W1TS : WO; bitpos: [14]; default: 0; + * enable saradc2 interrupt + */ + +#define RTC_CNTL_RTC_SARADC2_INT_ENA_W1TS (BIT(14)) +#define RTC_CNTL_RTC_SARADC2_INT_ENA_W1TS_M (RTC_CNTL_RTC_SARADC2_INT_ENA_W1TS_V << RTC_CNTL_RTC_SARADC2_INT_ENA_W1TS_S) +#define RTC_CNTL_RTC_SARADC2_INT_ENA_W1TS_V 0x00000001 +#define RTC_CNTL_RTC_SARADC2_INT_ENA_W1TS_S 14 + +/* RTC_CNTL_RTC_COCPU_INT_ENA_W1TS : WO; bitpos: [13]; default: 0; + * enable riscV cocpu interrupt + */ + +#define RTC_CNTL_RTC_COCPU_INT_ENA_W1TS (BIT(13)) +#define RTC_CNTL_RTC_COCPU_INT_ENA_W1TS_M (RTC_CNTL_RTC_COCPU_INT_ENA_W1TS_V << RTC_CNTL_RTC_COCPU_INT_ENA_W1TS_S) +#define RTC_CNTL_RTC_COCPU_INT_ENA_W1TS_V 0x00000001 +#define RTC_CNTL_RTC_COCPU_INT_ENA_W1TS_S 13 + +/* RTC_CNTL_RTC_TSENS_INT_ENA_W1TS : WO; bitpos: [12]; default: 0; + * enable tsens interrupt + */ + +#define RTC_CNTL_RTC_TSENS_INT_ENA_W1TS (BIT(12)) +#define RTC_CNTL_RTC_TSENS_INT_ENA_W1TS_M (RTC_CNTL_RTC_TSENS_INT_ENA_W1TS_V << RTC_CNTL_RTC_TSENS_INT_ENA_W1TS_S) +#define RTC_CNTL_RTC_TSENS_INT_ENA_W1TS_V 0x00000001 +#define RTC_CNTL_RTC_TSENS_INT_ENA_W1TS_S 12 + +/* RTC_CNTL_RTC_SARADC1_INT_ENA_W1TS : WO; bitpos: [11]; default: 0; + * enable saradc1 interrupt + */ + +#define RTC_CNTL_RTC_SARADC1_INT_ENA_W1TS (BIT(11)) +#define RTC_CNTL_RTC_SARADC1_INT_ENA_W1TS_M (RTC_CNTL_RTC_SARADC1_INT_ENA_W1TS_V << RTC_CNTL_RTC_SARADC1_INT_ENA_W1TS_S) +#define RTC_CNTL_RTC_SARADC1_INT_ENA_W1TS_V 0x00000001 +#define RTC_CNTL_RTC_SARADC1_INT_ENA_W1TS_S 11 + +/* RTC_CNTL_RTC_MAIN_TIMER_INT_ENA_W1TS : WO; bitpos: [10]; default: 0; + * enable RTC main timer interrupt + */ + +#define RTC_CNTL_RTC_MAIN_TIMER_INT_ENA_W1TS (BIT(10)) +#define RTC_CNTL_RTC_MAIN_TIMER_INT_ENA_W1TS_M (RTC_CNTL_RTC_MAIN_TIMER_INT_ENA_W1TS_V << RTC_CNTL_RTC_MAIN_TIMER_INT_ENA_W1TS_S) +#define RTC_CNTL_RTC_MAIN_TIMER_INT_ENA_W1TS_V 0x00000001 +#define RTC_CNTL_RTC_MAIN_TIMER_INT_ENA_W1TS_S 10 + +/* RTC_CNTL_RTC_BROWN_OUT_INT_ENA_W1TS : WO; bitpos: [9]; default: 0; + * enable brown out interrupt + */ + +#define RTC_CNTL_RTC_BROWN_OUT_INT_ENA_W1TS (BIT(9)) +#define RTC_CNTL_RTC_BROWN_OUT_INT_ENA_W1TS_M (RTC_CNTL_RTC_BROWN_OUT_INT_ENA_W1TS_V << RTC_CNTL_RTC_BROWN_OUT_INT_ENA_W1TS_S) +#define RTC_CNTL_RTC_BROWN_OUT_INT_ENA_W1TS_V 0x00000001 +#define RTC_CNTL_RTC_BROWN_OUT_INT_ENA_W1TS_S 9 + +/* RTC_CNTL_RTC_TOUCH_INACTIVE_INT_ENA_W1TS : WO; bitpos: [8]; default: 0; + * enable touch inactive interrupt + */ + +#define RTC_CNTL_RTC_TOUCH_INACTIVE_INT_ENA_W1TS (BIT(8)) +#define RTC_CNTL_RTC_TOUCH_INACTIVE_INT_ENA_W1TS_M (RTC_CNTL_RTC_TOUCH_INACTIVE_INT_ENA_W1TS_V << RTC_CNTL_RTC_TOUCH_INACTIVE_INT_ENA_W1TS_S) +#define RTC_CNTL_RTC_TOUCH_INACTIVE_INT_ENA_W1TS_V 0x00000001 +#define RTC_CNTL_RTC_TOUCH_INACTIVE_INT_ENA_W1TS_S 8 + +/* RTC_CNTL_RTC_TOUCH_ACTIVE_INT_ENA_W1TS : WO; bitpos: [7]; default: 0; + * enable touch active interrupt + */ + +#define RTC_CNTL_RTC_TOUCH_ACTIVE_INT_ENA_W1TS (BIT(7)) +#define RTC_CNTL_RTC_TOUCH_ACTIVE_INT_ENA_W1TS_M (RTC_CNTL_RTC_TOUCH_ACTIVE_INT_ENA_W1TS_V << RTC_CNTL_RTC_TOUCH_ACTIVE_INT_ENA_W1TS_S) +#define RTC_CNTL_RTC_TOUCH_ACTIVE_INT_ENA_W1TS_V 0x00000001 +#define RTC_CNTL_RTC_TOUCH_ACTIVE_INT_ENA_W1TS_S 7 + +/* RTC_CNTL_RTC_TOUCH_DONE_INT_ENA_W1TS : WO; bitpos: [6]; default: 0; + * enable touch done interrupt + */ + +#define RTC_CNTL_RTC_TOUCH_DONE_INT_ENA_W1TS (BIT(6)) +#define RTC_CNTL_RTC_TOUCH_DONE_INT_ENA_W1TS_M (RTC_CNTL_RTC_TOUCH_DONE_INT_ENA_W1TS_V << RTC_CNTL_RTC_TOUCH_DONE_INT_ENA_W1TS_S) +#define RTC_CNTL_RTC_TOUCH_DONE_INT_ENA_W1TS_V 0x00000001 +#define RTC_CNTL_RTC_TOUCH_DONE_INT_ENA_W1TS_S 6 + +/* RTC_CNTL_RTC_ULP_CP_INT_ENA_W1TS : WO; bitpos: [5]; default: 0; + * enable ULP-coprocessor interrupt + */ + +#define RTC_CNTL_RTC_ULP_CP_INT_ENA_W1TS (BIT(5)) +#define RTC_CNTL_RTC_ULP_CP_INT_ENA_W1TS_M (RTC_CNTL_RTC_ULP_CP_INT_ENA_W1TS_V << RTC_CNTL_RTC_ULP_CP_INT_ENA_W1TS_S) +#define RTC_CNTL_RTC_ULP_CP_INT_ENA_W1TS_V 0x00000001 +#define RTC_CNTL_RTC_ULP_CP_INT_ENA_W1TS_S 5 + +/* RTC_CNTL_RTC_TOUCH_SCAN_DONE_INT_ENA_W1TS : WO; bitpos: [4]; default: 0; + * enable touch scan done interrupt + */ + +#define RTC_CNTL_RTC_TOUCH_SCAN_DONE_INT_ENA_W1TS (BIT(4)) +#define RTC_CNTL_RTC_TOUCH_SCAN_DONE_INT_ENA_W1TS_M (RTC_CNTL_RTC_TOUCH_SCAN_DONE_INT_ENA_W1TS_V << RTC_CNTL_RTC_TOUCH_SCAN_DONE_INT_ENA_W1TS_S) +#define RTC_CNTL_RTC_TOUCH_SCAN_DONE_INT_ENA_W1TS_V 0x00000001 +#define RTC_CNTL_RTC_TOUCH_SCAN_DONE_INT_ENA_W1TS_S 4 + +/* RTC_CNTL_RTC_WDT_INT_ENA_W1TS : WO; bitpos: [3]; default: 0; + * enable RTC WDT interrupt + */ + +#define RTC_CNTL_RTC_WDT_INT_ENA_W1TS (BIT(3)) +#define RTC_CNTL_RTC_WDT_INT_ENA_W1TS_M (RTC_CNTL_RTC_WDT_INT_ENA_W1TS_V << RTC_CNTL_RTC_WDT_INT_ENA_W1TS_S) +#define RTC_CNTL_RTC_WDT_INT_ENA_W1TS_V 0x00000001 +#define RTC_CNTL_RTC_WDT_INT_ENA_W1TS_S 3 + +/* RTC_CNTL_SDIO_IDLE_INT_ENA_W1TS : WO; bitpos: [2]; default: 0; + * enable SDIO idle interrupt + */ + +#define RTC_CNTL_SDIO_IDLE_INT_ENA_W1TS (BIT(2)) +#define RTC_CNTL_SDIO_IDLE_INT_ENA_W1TS_M (RTC_CNTL_SDIO_IDLE_INT_ENA_W1TS_V << RTC_CNTL_SDIO_IDLE_INT_ENA_W1TS_S) +#define RTC_CNTL_SDIO_IDLE_INT_ENA_W1TS_V 0x00000001 +#define RTC_CNTL_SDIO_IDLE_INT_ENA_W1TS_S 2 + +/* RTC_CNTL_SLP_REJECT_INT_ENA_W1TS : WO; bitpos: [1]; default: 0; + * enable sleep reject interrupt + */ + +#define RTC_CNTL_SLP_REJECT_INT_ENA_W1TS (BIT(1)) +#define RTC_CNTL_SLP_REJECT_INT_ENA_W1TS_M (RTC_CNTL_SLP_REJECT_INT_ENA_W1TS_V << RTC_CNTL_SLP_REJECT_INT_ENA_W1TS_S) +#define RTC_CNTL_SLP_REJECT_INT_ENA_W1TS_V 0x00000001 +#define RTC_CNTL_SLP_REJECT_INT_ENA_W1TS_S 1 + +/* RTC_CNTL_SLP_WAKEUP_INT_ENA_W1TS : WO; bitpos: [0]; default: 0; + * enable sleep wakeup interrupt + */ + +#define RTC_CNTL_SLP_WAKEUP_INT_ENA_W1TS (BIT(0)) +#define RTC_CNTL_SLP_WAKEUP_INT_ENA_W1TS_M (RTC_CNTL_SLP_WAKEUP_INT_ENA_W1TS_V << RTC_CNTL_SLP_WAKEUP_INT_ENA_W1TS_S) +#define RTC_CNTL_SLP_WAKEUP_INT_ENA_W1TS_V 0x00000001 +#define RTC_CNTL_SLP_WAKEUP_INT_ENA_W1TS_S 0 + +/* RTC_CNTL_INT_ENA_RTC_W1TC_REG register + * oneset clr rtc interrupt enable + */ + +#define RTC_CNTL_INT_ENA_RTC_W1TC_REG (DR_REG_RTCCNTL_BASE + 0x13c) + +/* RTC_CNTL_RTC_TOUCH_APPROACH_LOOP_DONE_INT_ENA_W1TC : WO; bitpos: [20]; + * default: 0; + * enbale touch approach_loop done interrupt + */ + +#define RTC_CNTL_RTC_TOUCH_APPROACH_LOOP_DONE_INT_ENA_W1TC (BIT(20)) +#define RTC_CNTL_RTC_TOUCH_APPROACH_LOOP_DONE_INT_ENA_W1TC_M (RTC_CNTL_RTC_TOUCH_APPROACH_LOOP_DONE_INT_ENA_W1TC_V << RTC_CNTL_RTC_TOUCH_APPROACH_LOOP_DONE_INT_ENA_W1TC_S) +#define RTC_CNTL_RTC_TOUCH_APPROACH_LOOP_DONE_INT_ENA_W1TC_V 0x00000001 +#define RTC_CNTL_RTC_TOUCH_APPROACH_LOOP_DONE_INT_ENA_W1TC_S 20 + +/* RTC_CNTL_RTC_GLITCH_DET_INT_ENA_W1TC : WO; bitpos: [19]; default: 0; + * enbale gitch det interrupt + */ + +#define RTC_CNTL_RTC_GLITCH_DET_INT_ENA_W1TC (BIT(19)) +#define RTC_CNTL_RTC_GLITCH_DET_INT_ENA_W1TC_M (RTC_CNTL_RTC_GLITCH_DET_INT_ENA_W1TC_V << RTC_CNTL_RTC_GLITCH_DET_INT_ENA_W1TC_S) +#define RTC_CNTL_RTC_GLITCH_DET_INT_ENA_W1TC_V 0x00000001 +#define RTC_CNTL_RTC_GLITCH_DET_INT_ENA_W1TC_S 19 + +/* RTC_CNTL_RTC_TOUCH_TIMEOUT_INT_ENA_W1TC : WO; bitpos: [18]; default: 0; + * enable touch timeout interrupt + */ + +#define RTC_CNTL_RTC_TOUCH_TIMEOUT_INT_ENA_W1TC (BIT(18)) +#define RTC_CNTL_RTC_TOUCH_TIMEOUT_INT_ENA_W1TC_M (RTC_CNTL_RTC_TOUCH_TIMEOUT_INT_ENA_W1TC_V << RTC_CNTL_RTC_TOUCH_TIMEOUT_INT_ENA_W1TC_S) +#define RTC_CNTL_RTC_TOUCH_TIMEOUT_INT_ENA_W1TC_V 0x00000001 +#define RTC_CNTL_RTC_TOUCH_TIMEOUT_INT_ENA_W1TC_S 18 + +/* RTC_CNTL_RTC_COCPU_TRAP_INT_ENA_W1TC : WO; bitpos: [17]; default: 0; + * enable cocpu trap interrupt + */ + +#define RTC_CNTL_RTC_COCPU_TRAP_INT_ENA_W1TC (BIT(17)) +#define RTC_CNTL_RTC_COCPU_TRAP_INT_ENA_W1TC_M (RTC_CNTL_RTC_COCPU_TRAP_INT_ENA_W1TC_V << RTC_CNTL_RTC_COCPU_TRAP_INT_ENA_W1TC_S) +#define RTC_CNTL_RTC_COCPU_TRAP_INT_ENA_W1TC_V 0x00000001 +#define RTC_CNTL_RTC_COCPU_TRAP_INT_ENA_W1TC_S 17 + +/* RTC_CNTL_RTC_XTAL32K_DEAD_INT_ENA_W1TC : WO; bitpos: [16]; default: 0; + * enable xtal32k_dead interrupt + */ + +#define RTC_CNTL_RTC_XTAL32K_DEAD_INT_ENA_W1TC (BIT(16)) +#define RTC_CNTL_RTC_XTAL32K_DEAD_INT_ENA_W1TC_M (RTC_CNTL_RTC_XTAL32K_DEAD_INT_ENA_W1TC_V << RTC_CNTL_RTC_XTAL32K_DEAD_INT_ENA_W1TC_S) +#define RTC_CNTL_RTC_XTAL32K_DEAD_INT_ENA_W1TC_V 0x00000001 +#define RTC_CNTL_RTC_XTAL32K_DEAD_INT_ENA_W1TC_S 16 + +/* RTC_CNTL_RTC_SWD_INT_ENA_W1TC : WO; bitpos: [15]; default: 0; + * enable super watch dog interrupt + */ + +#define RTC_CNTL_RTC_SWD_INT_ENA_W1TC (BIT(15)) +#define RTC_CNTL_RTC_SWD_INT_ENA_W1TC_M (RTC_CNTL_RTC_SWD_INT_ENA_W1TC_V << RTC_CNTL_RTC_SWD_INT_ENA_W1TC_S) +#define RTC_CNTL_RTC_SWD_INT_ENA_W1TC_V 0x00000001 +#define RTC_CNTL_RTC_SWD_INT_ENA_W1TC_S 15 + +/* RTC_CNTL_RTC_SARADC2_INT_ENA_W1TC : WO; bitpos: [14]; default: 0; + * enable saradc2 interrupt + */ + +#define RTC_CNTL_RTC_SARADC2_INT_ENA_W1TC (BIT(14)) +#define RTC_CNTL_RTC_SARADC2_INT_ENA_W1TC_M (RTC_CNTL_RTC_SARADC2_INT_ENA_W1TC_V << RTC_CNTL_RTC_SARADC2_INT_ENA_W1TC_S) +#define RTC_CNTL_RTC_SARADC2_INT_ENA_W1TC_V 0x00000001 +#define RTC_CNTL_RTC_SARADC2_INT_ENA_W1TC_S 14 + +/* RTC_CNTL_RTC_COCPU_INT_ENA_W1TC : WO; bitpos: [13]; default: 0; + * enable riscV cocpu interrupt + */ + +#define RTC_CNTL_RTC_COCPU_INT_ENA_W1TC (BIT(13)) +#define RTC_CNTL_RTC_COCPU_INT_ENA_W1TC_M (RTC_CNTL_RTC_COCPU_INT_ENA_W1TC_V << RTC_CNTL_RTC_COCPU_INT_ENA_W1TC_S) +#define RTC_CNTL_RTC_COCPU_INT_ENA_W1TC_V 0x00000001 +#define RTC_CNTL_RTC_COCPU_INT_ENA_W1TC_S 13 + +/* RTC_CNTL_RTC_TSENS_INT_ENA_W1TC : WO; bitpos: [12]; default: 0; + * enable tsens interrupt + */ + +#define RTC_CNTL_RTC_TSENS_INT_ENA_W1TC (BIT(12)) +#define RTC_CNTL_RTC_TSENS_INT_ENA_W1TC_M (RTC_CNTL_RTC_TSENS_INT_ENA_W1TC_V << RTC_CNTL_RTC_TSENS_INT_ENA_W1TC_S) +#define RTC_CNTL_RTC_TSENS_INT_ENA_W1TC_V 0x00000001 +#define RTC_CNTL_RTC_TSENS_INT_ENA_W1TC_S 12 + +/* RTC_CNTL_RTC_SARADC1_INT_ENA_W1TC : WO; bitpos: [11]; default: 0; + * enable saradc1 interrupt + */ + +#define RTC_CNTL_RTC_SARADC1_INT_ENA_W1TC (BIT(11)) +#define RTC_CNTL_RTC_SARADC1_INT_ENA_W1TC_M (RTC_CNTL_RTC_SARADC1_INT_ENA_W1TC_V << RTC_CNTL_RTC_SARADC1_INT_ENA_W1TC_S) +#define RTC_CNTL_RTC_SARADC1_INT_ENA_W1TC_V 0x00000001 +#define RTC_CNTL_RTC_SARADC1_INT_ENA_W1TC_S 11 + +/* RTC_CNTL_RTC_MAIN_TIMER_INT_ENA_W1TC : WO; bitpos: [10]; default: 0; + * enable RTC main timer interrupt + */ + +#define RTC_CNTL_RTC_MAIN_TIMER_INT_ENA_W1TC (BIT(10)) +#define RTC_CNTL_RTC_MAIN_TIMER_INT_ENA_W1TC_M (RTC_CNTL_RTC_MAIN_TIMER_INT_ENA_W1TC_V << RTC_CNTL_RTC_MAIN_TIMER_INT_ENA_W1TC_S) +#define RTC_CNTL_RTC_MAIN_TIMER_INT_ENA_W1TC_V 0x00000001 +#define RTC_CNTL_RTC_MAIN_TIMER_INT_ENA_W1TC_S 10 + +/* RTC_CNTL_RTC_BROWN_OUT_INT_ENA_W1TC : WO; bitpos: [9]; default: 0; + * enable brown out interrupt + */ + +#define RTC_CNTL_RTC_BROWN_OUT_INT_ENA_W1TC (BIT(9)) +#define RTC_CNTL_RTC_BROWN_OUT_INT_ENA_W1TC_M (RTC_CNTL_RTC_BROWN_OUT_INT_ENA_W1TC_V << RTC_CNTL_RTC_BROWN_OUT_INT_ENA_W1TC_S) +#define RTC_CNTL_RTC_BROWN_OUT_INT_ENA_W1TC_V 0x00000001 +#define RTC_CNTL_RTC_BROWN_OUT_INT_ENA_W1TC_S 9 + +/* RTC_CNTL_RTC_TOUCH_INACTIVE_INT_ENA_W1TC : WO; bitpos: [8]; default: 0; + * enable touch inactive interrupt + */ + +#define RTC_CNTL_RTC_TOUCH_INACTIVE_INT_ENA_W1TC (BIT(8)) +#define RTC_CNTL_RTC_TOUCH_INACTIVE_INT_ENA_W1TC_M (RTC_CNTL_RTC_TOUCH_INACTIVE_INT_ENA_W1TC_V << RTC_CNTL_RTC_TOUCH_INACTIVE_INT_ENA_W1TC_S) +#define RTC_CNTL_RTC_TOUCH_INACTIVE_INT_ENA_W1TC_V 0x00000001 +#define RTC_CNTL_RTC_TOUCH_INACTIVE_INT_ENA_W1TC_S 8 + +/* RTC_CNTL_RTC_TOUCH_ACTIVE_INT_ENA_W1TC : WO; bitpos: [7]; default: 0; + * enable touch active interrupt + */ + +#define RTC_CNTL_RTC_TOUCH_ACTIVE_INT_ENA_W1TC (BIT(7)) +#define RTC_CNTL_RTC_TOUCH_ACTIVE_INT_ENA_W1TC_M (RTC_CNTL_RTC_TOUCH_ACTIVE_INT_ENA_W1TC_V << RTC_CNTL_RTC_TOUCH_ACTIVE_INT_ENA_W1TC_S) +#define RTC_CNTL_RTC_TOUCH_ACTIVE_INT_ENA_W1TC_V 0x00000001 +#define RTC_CNTL_RTC_TOUCH_ACTIVE_INT_ENA_W1TC_S 7 + +/* RTC_CNTL_RTC_TOUCH_DONE_INT_ENA_W1TC : WO; bitpos: [6]; default: 0; + * enable touch done interrupt + */ + +#define RTC_CNTL_RTC_TOUCH_DONE_INT_ENA_W1TC (BIT(6)) +#define RTC_CNTL_RTC_TOUCH_DONE_INT_ENA_W1TC_M (RTC_CNTL_RTC_TOUCH_DONE_INT_ENA_W1TC_V << RTC_CNTL_RTC_TOUCH_DONE_INT_ENA_W1TC_S) +#define RTC_CNTL_RTC_TOUCH_DONE_INT_ENA_W1TC_V 0x00000001 +#define RTC_CNTL_RTC_TOUCH_DONE_INT_ENA_W1TC_S 6 + +/* RTC_CNTL_RTC_ULP_CP_INT_ENA_W1TC : WO; bitpos: [5]; default: 0; + * enable ULP-coprocessor interrupt + */ + +#define RTC_CNTL_RTC_ULP_CP_INT_ENA_W1TC (BIT(5)) +#define RTC_CNTL_RTC_ULP_CP_INT_ENA_W1TC_M (RTC_CNTL_RTC_ULP_CP_INT_ENA_W1TC_V << RTC_CNTL_RTC_ULP_CP_INT_ENA_W1TC_S) +#define RTC_CNTL_RTC_ULP_CP_INT_ENA_W1TC_V 0x00000001 +#define RTC_CNTL_RTC_ULP_CP_INT_ENA_W1TC_S 5 + +/* RTC_CNTL_RTC_TOUCH_SCAN_DONE_INT_ENA_W1TC : WO; bitpos: [4]; default: 0; + * enable touch scan done interrupt + */ + +#define RTC_CNTL_RTC_TOUCH_SCAN_DONE_INT_ENA_W1TC (BIT(4)) +#define RTC_CNTL_RTC_TOUCH_SCAN_DONE_INT_ENA_W1TC_M (RTC_CNTL_RTC_TOUCH_SCAN_DONE_INT_ENA_W1TC_V << RTC_CNTL_RTC_TOUCH_SCAN_DONE_INT_ENA_W1TC_S) +#define RTC_CNTL_RTC_TOUCH_SCAN_DONE_INT_ENA_W1TC_V 0x00000001 +#define RTC_CNTL_RTC_TOUCH_SCAN_DONE_INT_ENA_W1TC_S 4 + +/* RTC_CNTL_RTC_WDT_INT_ENA_W1TC : WO; bitpos: [3]; default: 0; + * enable RTC WDT interrupt + */ + +#define RTC_CNTL_RTC_WDT_INT_ENA_W1TC (BIT(3)) +#define RTC_CNTL_RTC_WDT_INT_ENA_W1TC_M (RTC_CNTL_RTC_WDT_INT_ENA_W1TC_V << RTC_CNTL_RTC_WDT_INT_ENA_W1TC_S) +#define RTC_CNTL_RTC_WDT_INT_ENA_W1TC_V 0x00000001 +#define RTC_CNTL_RTC_WDT_INT_ENA_W1TC_S 3 + +/* RTC_CNTL_SDIO_IDLE_INT_ENA_W1TC : WO; bitpos: [2]; default: 0; + * enable SDIO idle interrupt + */ + +#define RTC_CNTL_SDIO_IDLE_INT_ENA_W1TC (BIT(2)) +#define RTC_CNTL_SDIO_IDLE_INT_ENA_W1TC_M (RTC_CNTL_SDIO_IDLE_INT_ENA_W1TC_V << RTC_CNTL_SDIO_IDLE_INT_ENA_W1TC_S) +#define RTC_CNTL_SDIO_IDLE_INT_ENA_W1TC_V 0x00000001 +#define RTC_CNTL_SDIO_IDLE_INT_ENA_W1TC_S 2 + +/* RTC_CNTL_SLP_REJECT_INT_ENA_W1TC : WO; bitpos: [1]; default: 0; + * enable sleep reject interrupt + */ + +#define RTC_CNTL_SLP_REJECT_INT_ENA_W1TC (BIT(1)) +#define RTC_CNTL_SLP_REJECT_INT_ENA_W1TC_M (RTC_CNTL_SLP_REJECT_INT_ENA_W1TC_V << RTC_CNTL_SLP_REJECT_INT_ENA_W1TC_S) +#define RTC_CNTL_SLP_REJECT_INT_ENA_W1TC_V 0x00000001 +#define RTC_CNTL_SLP_REJECT_INT_ENA_W1TC_S 1 + +/* RTC_CNTL_SLP_WAKEUP_INT_ENA_W1TC : WO; bitpos: [0]; default: 0; + * enable sleep wakeup interrupt + */ + +#define RTC_CNTL_SLP_WAKEUP_INT_ENA_W1TC (BIT(0)) +#define RTC_CNTL_SLP_WAKEUP_INT_ENA_W1TC_M (RTC_CNTL_SLP_WAKEUP_INT_ENA_W1TC_V << RTC_CNTL_SLP_WAKEUP_INT_ENA_W1TC_S) +#define RTC_CNTL_SLP_WAKEUP_INT_ENA_W1TC_V 0x00000001 +#define RTC_CNTL_SLP_WAKEUP_INT_ENA_W1TC_S 0 + +/* RTC_CNTL_RETENTION_CTRL_REG register + * configure retention + */ + +#define RTC_CNTL_RETENTION_CTRL_REG (DR_REG_RTCCNTL_BASE + 0x140) + +/* RTC_CNTL_RETENTION_WAIT : R/W; bitpos: [31:25]; default: 20; + * wait cycles for rention operation + */ + +#define RTC_CNTL_RETENTION_WAIT 0x0000007f +#define RTC_CNTL_RETENTION_WAIT_M (RTC_CNTL_RETENTION_WAIT_V << RTC_CNTL_RETENTION_WAIT_S) +#define RTC_CNTL_RETENTION_WAIT_V 0x0000007f +#define RTC_CNTL_RETENTION_WAIT_S 25 + +/* RTC_CNTL_RETENTION_EN : R/W; bitpos: [24]; default: 0; + * enable retention + */ + +#define RTC_CNTL_RETENTION_EN (BIT(24)) +#define RTC_CNTL_RETENTION_EN_M (RTC_CNTL_RETENTION_EN_V << RTC_CNTL_RETENTION_EN_S) +#define RTC_CNTL_RETENTION_EN_V 0x00000001 +#define RTC_CNTL_RETENTION_EN_S 24 + +/* RTC_CNTL_RETENTION_CLKOFF_WAIT : R/W; bitpos: [23:20]; default: 3; + * wait clk off cycle + */ + +#define RTC_CNTL_RETENTION_CLKOFF_WAIT 0x0000000f +#define RTC_CNTL_RETENTION_CLKOFF_WAIT_M (RTC_CNTL_RETENTION_CLKOFF_WAIT_V << RTC_CNTL_RETENTION_CLKOFF_WAIT_S) +#define RTC_CNTL_RETENTION_CLKOFF_WAIT_V 0x0000000f +#define RTC_CNTL_RETENTION_CLKOFF_WAIT_S 20 + +/* RTC_CNTL_RETENTION_DONE_WAIT : R/W; bitpos: [19:17]; default: 2; + * wait retention done cycle + */ + +#define RTC_CNTL_RETENTION_DONE_WAIT 0x00000007 +#define RTC_CNTL_RETENTION_DONE_WAIT_M (RTC_CNTL_RETENTION_DONE_WAIT_V << RTC_CNTL_RETENTION_DONE_WAIT_S) +#define RTC_CNTL_RETENTION_DONE_WAIT_V 0x00000007 +#define RTC_CNTL_RETENTION_DONE_WAIT_S 17 + +/* RTC_CNTL_RETENTION_CLK_SEL : R/W; bitpos: [16]; default: 0; + * No public + */ + +#define RTC_CNTL_RETENTION_CLK_SEL (BIT(16)) +#define RTC_CNTL_RETENTION_CLK_SEL_M (RTC_CNTL_RETENTION_CLK_SEL_V << RTC_CNTL_RETENTION_CLK_SEL_S) +#define RTC_CNTL_RETENTION_CLK_SEL_V 0x00000001 +#define RTC_CNTL_RETENTION_CLK_SEL_S 16 + +/* RTC_CNTL_RETENTION_TARGET : R/W; bitpos: [15:14]; default: 0; + * congfigure retention target cpu and/or tag + */ + +#define RTC_CNTL_RETENTION_TARGET 0x00000003 +#define RTC_CNTL_RETENTION_TARGET_M (RTC_CNTL_RETENTION_TARGET_V << RTC_CNTL_RETENTION_TARGET_S) +#define RTC_CNTL_RETENTION_TARGET_V 0x00000003 +#define RTC_CNTL_RETENTION_TARGET_S 14 + +/* RTC_CNTL_RETENTION_TAG_MODE : R/W; bitpos: [13:10]; default: 0; + * No public + */ + +#define RTC_CNTL_RETENTION_TAG_MODE 0x0000000f +#define RTC_CNTL_RETENTION_TAG_MODE_M (RTC_CNTL_RETENTION_TAG_MODE_V << RTC_CNTL_RETENTION_TAG_MODE_S) +#define RTC_CNTL_RETENTION_TAG_MODE_V 0x0000000f +#define RTC_CNTL_RETENTION_TAG_MODE_S 10 + +/* RTC_CNTL_PG_CTRL_REG register + * configure power glitch + */ + +#define RTC_CNTL_PG_CTRL_REG (DR_REG_RTCCNTL_BASE + 0x144) + +/* RTC_CNTL_POWER_GLITCH_EN : R/W; bitpos: [31]; default: 0; + * enable power glitch + */ + +#define RTC_CNTL_POWER_GLITCH_EN (BIT(31)) +#define RTC_CNTL_POWER_GLITCH_EN_M (RTC_CNTL_POWER_GLITCH_EN_V << RTC_CNTL_POWER_GLITCH_EN_S) +#define RTC_CNTL_POWER_GLITCH_EN_V 0x00000001 +#define RTC_CNTL_POWER_GLITCH_EN_S 31 + +/* RTC_CNTL_POWER_GLITCH_EFUSE_SEL : R/W; bitpos: [30]; default: 0; + * select use analog fib signal + */ + +#define RTC_CNTL_POWER_GLITCH_EFUSE_SEL (BIT(30)) +#define RTC_CNTL_POWER_GLITCH_EFUSE_SEL_M (RTC_CNTL_POWER_GLITCH_EFUSE_SEL_V << RTC_CNTL_POWER_GLITCH_EFUSE_SEL_S) +#define RTC_CNTL_POWER_GLITCH_EFUSE_SEL_V 0x00000001 +#define RTC_CNTL_POWER_GLITCH_EFUSE_SEL_S 30 + +/* RTC_CNTL_POWER_GLITCH_FORCE_PU : R/W; bitpos: [29]; default: 0; + * force power glitch enable + */ + +#define RTC_CNTL_POWER_GLITCH_FORCE_PU (BIT(29)) +#define RTC_CNTL_POWER_GLITCH_FORCE_PU_M (RTC_CNTL_POWER_GLITCH_FORCE_PU_V << RTC_CNTL_POWER_GLITCH_FORCE_PU_S) +#define RTC_CNTL_POWER_GLITCH_FORCE_PU_V 0x00000001 +#define RTC_CNTL_POWER_GLITCH_FORCE_PU_S 29 + +/* RTC_CNTL_POWER_GLITCH_FORCE_PD : R/W; bitpos: [28]; default: 0; + * force power glitch disable + */ + +#define RTC_CNTL_POWER_GLITCH_FORCE_PD (BIT(28)) +#define RTC_CNTL_POWER_GLITCH_FORCE_PD_M (RTC_CNTL_POWER_GLITCH_FORCE_PD_V << RTC_CNTL_POWER_GLITCH_FORCE_PD_S) +#define RTC_CNTL_POWER_GLITCH_FORCE_PD_V 0x00000001 +#define RTC_CNTL_POWER_GLITCH_FORCE_PD_S 28 + +/* RTC_CNTL_POWER_GLITCH_DSENSE : R/W; bitpos: [27:26]; default: 0; + * GLITCH_DSENSE + */ + +#define RTC_CNTL_POWER_GLITCH_DSENSE 0x00000003 +#define RTC_CNTL_POWER_GLITCH_DSENSE_M (RTC_CNTL_POWER_GLITCH_DSENSE_V << RTC_CNTL_POWER_GLITCH_DSENSE_S) +#define RTC_CNTL_POWER_GLITCH_DSENSE_V 0x00000003 +#define RTC_CNTL_POWER_GLITCH_DSENSE_S 26 + +/* RTC_CNTL_RTC_FIB_SEL_REG register + * No public + */ + +#define RTC_CNTL_RTC_FIB_SEL_REG (DR_REG_RTCCNTL_BASE + 0x148) + +/* RTC_CNTL_RTC_FIB_SEL : R/W; bitpos: [2:0]; default: 7; + * No public + */ + +#define RTC_CNTL_RTC_FIB_SEL 0x00000007 +#define RTC_CNTL_RTC_FIB_SEL_M (RTC_CNTL_RTC_FIB_SEL_V << RTC_CNTL_RTC_FIB_SEL_S) +#define RTC_CNTL_RTC_FIB_SEL_V 0x00000007 +#define RTC_CNTL_RTC_FIB_SEL_S 0 + +/* RTC_CNTL_TOUCH_DAC_REG register + * configure touch dac + */ + +#define RTC_CNTL_TOUCH_DAC_REG (DR_REG_RTCCNTL_BASE + 0x14c) + +/* RTC_CNTL_TOUCH_PAD0_DAC : R/W; bitpos: [31:29]; default: 0; + * configure touch pad dac0 + */ + +#define RTC_CNTL_TOUCH_PAD0_DAC 0x00000007 +#define RTC_CNTL_TOUCH_PAD0_DAC_M (RTC_CNTL_TOUCH_PAD0_DAC_V << RTC_CNTL_TOUCH_PAD0_DAC_S) +#define RTC_CNTL_TOUCH_PAD0_DAC_V 0x00000007 +#define RTC_CNTL_TOUCH_PAD0_DAC_S 29 + +/* RTC_CNTL_TOUCH_PAD1_DAC : R/W; bitpos: [28:26]; default: 0; + * configure touch pad dac1 + */ + +#define RTC_CNTL_TOUCH_PAD1_DAC 0x00000007 +#define RTC_CNTL_TOUCH_PAD1_DAC_M (RTC_CNTL_TOUCH_PAD1_DAC_V << RTC_CNTL_TOUCH_PAD1_DAC_S) +#define RTC_CNTL_TOUCH_PAD1_DAC_V 0x00000007 +#define RTC_CNTL_TOUCH_PAD1_DAC_S 26 + +/* RTC_CNTL_TOUCH_PAD2_DAC : R/W; bitpos: [25:23]; default: 0; + * configure touch pad dac2 + */ + +#define RTC_CNTL_TOUCH_PAD2_DAC 0x00000007 +#define RTC_CNTL_TOUCH_PAD2_DAC_M (RTC_CNTL_TOUCH_PAD2_DAC_V << RTC_CNTL_TOUCH_PAD2_DAC_S) +#define RTC_CNTL_TOUCH_PAD2_DAC_V 0x00000007 +#define RTC_CNTL_TOUCH_PAD2_DAC_S 23 + +/* RTC_CNTL_TOUCH_PAD3_DAC : R/W; bitpos: [22:20]; default: 0; + * configure touch pad dac3 + */ + +#define RTC_CNTL_TOUCH_PAD3_DAC 0x00000007 +#define RTC_CNTL_TOUCH_PAD3_DAC_M (RTC_CNTL_TOUCH_PAD3_DAC_V << RTC_CNTL_TOUCH_PAD3_DAC_S) +#define RTC_CNTL_TOUCH_PAD3_DAC_V 0x00000007 +#define RTC_CNTL_TOUCH_PAD3_DAC_S 20 + +/* RTC_CNTL_TOUCH_PAD4_DAC : R/W; bitpos: [19:17]; default: 0; + * configure touch pad dac4 + */ + +#define RTC_CNTL_TOUCH_PAD4_DAC 0x00000007 +#define RTC_CNTL_TOUCH_PAD4_DAC_M (RTC_CNTL_TOUCH_PAD4_DAC_V << RTC_CNTL_TOUCH_PAD4_DAC_S) +#define RTC_CNTL_TOUCH_PAD4_DAC_V 0x00000007 +#define RTC_CNTL_TOUCH_PAD4_DAC_S 17 + +/* RTC_CNTL_TOUCH_PAD5_DAC : R/W; bitpos: [16:14]; default: 0; + * configure touch pad dac5 + */ + +#define RTC_CNTL_TOUCH_PAD5_DAC 0x00000007 +#define RTC_CNTL_TOUCH_PAD5_DAC_M (RTC_CNTL_TOUCH_PAD5_DAC_V << RTC_CNTL_TOUCH_PAD5_DAC_S) +#define RTC_CNTL_TOUCH_PAD5_DAC_V 0x00000007 +#define RTC_CNTL_TOUCH_PAD5_DAC_S 14 + +/* RTC_CNTL_TOUCH_PAD6_DAC : R/W; bitpos: [13:11]; default: 0; + * configure touch pad dac6 + */ + +#define RTC_CNTL_TOUCH_PAD6_DAC 0x00000007 +#define RTC_CNTL_TOUCH_PAD6_DAC_M (RTC_CNTL_TOUCH_PAD6_DAC_V << RTC_CNTL_TOUCH_PAD6_DAC_S) +#define RTC_CNTL_TOUCH_PAD6_DAC_V 0x00000007 +#define RTC_CNTL_TOUCH_PAD6_DAC_S 11 + +/* RTC_CNTL_TOUCH_PAD7_DAC : R/W; bitpos: [10:8]; default: 0; + * configure touch pad dac7 + */ + +#define RTC_CNTL_TOUCH_PAD7_DAC 0x00000007 +#define RTC_CNTL_TOUCH_PAD7_DAC_M (RTC_CNTL_TOUCH_PAD7_DAC_V << RTC_CNTL_TOUCH_PAD7_DAC_S) +#define RTC_CNTL_TOUCH_PAD7_DAC_V 0x00000007 +#define RTC_CNTL_TOUCH_PAD7_DAC_S 8 + +/* RTC_CNTL_TOUCH_PAD8_DAC : R/W; bitpos: [7:5]; default: 0; + * configure touch pad dac8 + */ + +#define RTC_CNTL_TOUCH_PAD8_DAC 0x00000007 +#define RTC_CNTL_TOUCH_PAD8_DAC_M (RTC_CNTL_TOUCH_PAD8_DAC_V << RTC_CNTL_TOUCH_PAD8_DAC_S) +#define RTC_CNTL_TOUCH_PAD8_DAC_V 0x00000007 +#define RTC_CNTL_TOUCH_PAD8_DAC_S 5 + +/* RTC_CNTL_TOUCH_PAD9_DAC : R/W; bitpos: [4:2]; default: 0; + * configure touch pad dac9 + */ + +#define RTC_CNTL_TOUCH_PAD9_DAC 0x00000007 +#define RTC_CNTL_TOUCH_PAD9_DAC_M (RTC_CNTL_TOUCH_PAD9_DAC_V << RTC_CNTL_TOUCH_PAD9_DAC_S) +#define RTC_CNTL_TOUCH_PAD9_DAC_V 0x00000007 +#define RTC_CNTL_TOUCH_PAD9_DAC_S 2 + +/* RTC_CNTL_TOUCH_DAC1_REG register + * configure touch dac + */ + +#define RTC_CNTL_TOUCH_DAC1_REG (DR_REG_RTCCNTL_BASE + 0x150) + +/* RTC_CNTL_TOUCH_PAD10_DAC : R/W; bitpos: [31:29]; default: 0; + * configure touch pad dac10 + */ + +#define RTC_CNTL_TOUCH_PAD10_DAC 0x00000007 +#define RTC_CNTL_TOUCH_PAD10_DAC_M (RTC_CNTL_TOUCH_PAD10_DAC_V << RTC_CNTL_TOUCH_PAD10_DAC_S) +#define RTC_CNTL_TOUCH_PAD10_DAC_V 0x00000007 +#define RTC_CNTL_TOUCH_PAD10_DAC_S 29 + +/* RTC_CNTL_TOUCH_PAD11_DAC : R/W; bitpos: [28:26]; default: 0; + * configure touch pad dac11 + */ + +#define RTC_CNTL_TOUCH_PAD11_DAC 0x00000007 +#define RTC_CNTL_TOUCH_PAD11_DAC_M (RTC_CNTL_TOUCH_PAD11_DAC_V << RTC_CNTL_TOUCH_PAD11_DAC_S) +#define RTC_CNTL_TOUCH_PAD11_DAC_V 0x00000007 +#define RTC_CNTL_TOUCH_PAD11_DAC_S 26 + +/* RTC_CNTL_TOUCH_PAD12_DAC : R/W; bitpos: [25:23]; default: 0; + * configure touch pad dac12 + */ + +#define RTC_CNTL_TOUCH_PAD12_DAC 0x00000007 +#define RTC_CNTL_TOUCH_PAD12_DAC_M (RTC_CNTL_TOUCH_PAD12_DAC_V << RTC_CNTL_TOUCH_PAD12_DAC_S) +#define RTC_CNTL_TOUCH_PAD12_DAC_V 0x00000007 +#define RTC_CNTL_TOUCH_PAD12_DAC_S 23 + +/* RTC_CNTL_TOUCH_PAD13_DAC : R/W; bitpos: [22:20]; default: 0; + * configure touch pad dac13 + */ + +#define RTC_CNTL_TOUCH_PAD13_DAC 0x00000007 +#define RTC_CNTL_TOUCH_PAD13_DAC_M (RTC_CNTL_TOUCH_PAD13_DAC_V << RTC_CNTL_TOUCH_PAD13_DAC_S) +#define RTC_CNTL_TOUCH_PAD13_DAC_V 0x00000007 +#define RTC_CNTL_TOUCH_PAD13_DAC_S 20 + +/* RTC_CNTL_TOUCH_PAD14_DAC : R/W; bitpos: [19:17]; default: 0; + * configure touch pad dac14 + */ + +#define RTC_CNTL_TOUCH_PAD14_DAC 0x00000007 +#define RTC_CNTL_TOUCH_PAD14_DAC_M (RTC_CNTL_TOUCH_PAD14_DAC_V << RTC_CNTL_TOUCH_PAD14_DAC_S) +#define RTC_CNTL_TOUCH_PAD14_DAC_V 0x00000007 +#define RTC_CNTL_TOUCH_PAD14_DAC_S 17 + +/* RTC_CNTL_RTC_COCPU_DISABLE_REG register + * configure ulp diable + */ + +#define RTC_CNTL_RTC_COCPU_DISABLE_REG (DR_REG_RTCCNTL_BASE + 0x154) + +/* RTC_CNTL_DISABLE_RTC_CPU : R/W; bitpos: [31]; default: 0; + * configure ulp diable + */ + +#define RTC_CNTL_DISABLE_RTC_CPU (BIT(31)) +#define RTC_CNTL_DISABLE_RTC_CPU_M (RTC_CNTL_DISABLE_RTC_CPU_V << RTC_CNTL_DISABLE_RTC_CPU_S) +#define RTC_CNTL_DISABLE_RTC_CPU_V 0x00000001 +#define RTC_CNTL_DISABLE_RTC_CPU_S 31 + +/* RTC_CNTL_DATE_REG register + * version register + */ + +#define RTC_CNTL_DATE_REG (DR_REG_RTCCNTL_BASE + 0x1fc) + +/* RTC_CNTL_DATE : R/W; bitpos: [27:0]; default: 34607729; + * version register + */ + +#define RTC_CNTL_DATE 0x0fffffff +#define RTC_CNTL_DATE_M (RTC_CNTL_DATE_V << RTC_CNTL_DATE_S) +#define RTC_CNTL_DATE_V 0x0fffffff +#define RTC_CNTL_DATE_S 0 + +#endif /* __ARCH_XTENSA_SRC_ESP32S3_HARDWARE_ESP32S3_RTCCNTL_H */ diff --git a/arch/xtensa/src/esp32s3/hardware/esp32s3_soc.h b/arch/xtensa/src/esp32s3/hardware/esp32s3_soc.h new file mode 100644 index 0000000000..5b5dc8742d --- /dev/null +++ b/arch/xtensa/src/esp32s3/hardware/esp32s3_soc.h @@ -0,0 +1,487 @@ +/**************************************************************************** + * arch/xtensa/src/esp32s3/hardware/esp32s3_soc.h + * + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. The + * ASF licenses this file to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance with the + * License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT + * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the + * License for the specific language governing permissions and limitations + * under the License. + * + ****************************************************************************/ + +#ifndef __ARCH_XTENSA_SRC_ESP32S3_HARDWARE_ESP32S3_SOC_H +#define __ARCH_XTENSA_SRC_ESP32S3_HARDWARE_ESP32S3_SOC_H + +/**************************************************************************** + * Included Files + ****************************************************************************/ + +#include +#include + +#include "xtensa_attr.h" + +/**************************************************************************** + * Pre-processor Definitions + ****************************************************************************/ + +#define PRO_CPU_NUM (0) +#define APP_CPU_NUM (1) + +#define PRO_CPUID (0xcdcd) +#define APP_CPUID (0xabab) + +/* Largest span of contiguous memory (DRAM or IRAM) in the address space */ + +#define SOC_MAX_CONTIGUOUS_RAM_SIZE (SOC_EXTRAM_DATA_HIGH - SOC_EXTRAM_DATA_LOW) + +#define DR_REG_UART_BASE 0x60000000 +#define DR_REG_SPI1_BASE 0x60002000 +#define DR_REG_SPI0_BASE 0x60003000 +#define DR_REG_GPIO_BASE 0x60004000 +#define DR_REG_GPIO_SD_BASE 0x60004f00 + +#define DR_REG_FE2_BASE 0x60005000 +#define DR_REG_FE_BASE 0x60006000 + +#define DR_REG_EFUSE_BASE 0x60007000 +#define DR_REG_RTCCNTL_BASE 0x60008000 +#define DR_REG_RTCIO_BASE 0x60008400 +#define DR_REG_SENS_BASE 0x60008800 +#define DR_REG_RTC_I2C_BASE 0x60008C00 +#define DR_REG_IO_MUX_BASE 0x60009000 + +#define DR_REG_HINF_BASE 0x6000B000 +#define DR_REG_UHCI1_BASE 0x6000C000 + +#define DR_REG_I2S_BASE 0x6000F000 +#define DR_REG_UART1_BASE 0x60010000 + +#define DR_REG_BT_BASE 0x60011000 + +#define DR_REG_I2C_EXT_BASE 0x60013000 +#define DR_REG_UHCI0_BASE 0x60014000 + +#define DR_REG_SLCHOST_BASE 0x60015000 + +#define DR_REG_RMT_BASE 0x60016000 +#define DR_REG_PCNT_BASE 0x60017000 + +#define DR_REG_SLC_BASE 0x60018000 + +#define DR_REG_LEDC_BASE 0x60019000 + +#define DR_REG_NRX_BASE 0x6001CC00 +#define DR_REG_BB_BASE 0x6001D000 + +#define DR_REG_PWM0_BASE 0x6001E000 +#define DR_REG_TIMERGROUP0_BASE 0x6001F000 +#define DR_REG_TIMERGROUP1_BASE 0x60020000 +#define DR_REG_RTC_SLOWMEM_BASE 0x60021000 +#define DR_REG_SYSTIMER_BASE 0x60023000 +#define DR_REG_SPI2_BASE 0x60024000 +#define DR_REG_SPI3_BASE 0x60025000 +#define DR_REG_SYSCON_BASE 0x60026000 +#define DR_REG_APB_CTRL_BASE 0x60026000 /* Old name for SYSCON, to be removed */ +#define DR_REG_I2C1_EXT_BASE 0x60027000 +#define DR_REG_SDMMC_BASE 0x60028000 + +#define DR_REG_PERI_BACKUP_BASE 0x6002A000 + +#define DR_REG_TWAI_BASE 0x6002B000 +#define DR_REG_PWM1_BASE 0x6002C000 +#define DR_REG_I2S1_BASE 0x6002D000 +#define DR_REG_UART2_BASE 0x6002E000 + +#define DR_REG_USB_DEVICE_BASE 0x60038000 +#define DR_REG_USB_WRAP_BASE 0x60039000 +#define DR_REG_AES_BASE 0x6003A000 +#define DR_REG_SHA_BASE 0x6003B000 +#define DR_REG_RSA_BASE 0x6003C000 +#define DR_REG_HMAC_BASE 0x6003E000 +#define DR_REG_DIGITAL_SIGNATURE_BASE 0x6003D000 +#define DR_REG_GDMA_BASE 0x6003F000 +#define DR_REG_APB_SARADC_BASE 0x60040000 +#define DR_REG_LCD_CAM_BASE 0x60041000 + +#define DR_REG_SYSTEM_BASE 0x600C0000 +#define DR_REG_SENSITIVE_BASE 0x600C1000 +#define DR_REG_INTERRUPT_BASE 0x600C2000 + +/* Cache configuration */ + +#define DR_REG_EXTMEM_BASE 0x600C4000 +#define DR_REG_MMU_TABLE 0x600C5000 +#define DR_REG_ITAG_TABLE 0x600C6000 +#define DR_REG_DTAG_TABLE 0x600C8000 + +#define DR_REG_EXT_MEM_ENC 0x600CC000 + +#define DR_REG_ASSIST_DEBUG_BASE 0x600CE000 +#define DR_REG_WORLD_CNTL_BASE 0x600D0000 +#define DR_REG_DPORT_END 0x600D3FFC + +#define REG_UHCI_BASE(i) (DR_REG_UHCI0_BASE - (i) * 0x8000) +#define REG_UART_BASE( i ) (DR_REG_UART_BASE + (i) * 0x10000 + ((i) > 1 ? 0xe000 : 0)) +#define REG_UART_AHB_BASE(i) (0x60000000 + (i) * 0x10000 + ((i) > 1 ? 0xe000 : 0 )) +#define UART_FIFO_AHB_REG(i) (REG_UART_AHB_BASE(i) + 0x0) +#define REG_I2S_BASE( i ) (DR_REG_I2S_BASE + (i) * 0x1E000) +#define REG_TIMG_BASE(i) (DR_REG_TIMERGROUP0_BASE + (i)*0x1000) +#define REG_SPI_MEM_BASE(i) (DR_REG_SPI0_BASE - (i) * 0x1000) +#define REG_I2C_BASE(i) (DR_REG_I2C_EXT_BASE + (i) * 0x14000) + +/* Registers Operation */ + +#define ETS_UNCACHED_ADDR(addr) (addr) +#define ETS_CACHED_ADDR(addr) (addr) + +#define BIT(nr) (1UL << (nr)) + +/* Write value to register */ + +#define REG_WRITE(_r, _v) (*(volatile uint32_t *)(_r)) = (_v) + +/* Read value from register */ + +#define REG_READ(_r) (*(volatile uint32_t *)(_r)) + +/* Get bit or get bits from register */ + +#define REG_GET_BIT(_r, _b) (*(volatile uint32_t *)(_r) & (_b)) + +/* Set bit or set bits to register */ + +#define REG_SET_BIT(_r, _b) (*(volatile uint32_t *)(_r) |= (_b)) + +/* Clear bit or clear bits of register */ + +#define REG_CLR_BIT(_r, _b) (*(volatile uint32_t *)(_r) &= ~(_b)) + +/* Set bits of register controlled by mask */ + +#define REG_SET_BITS(_r, _b, _m) (*(volatile uint32_t *)(_r) = (*(volatile uint32_t *)(_r) & ~(_m)) | ((_b) & (_m))) + +/* Get field from register, + * used when _f is not left shifted by _f##_S + */ + +#define REG_GET_FIELD(_r, _f) ((REG_READ(_r) >> (_f##_S)) & (_f##_V)) + +/* Set field to register, + * used when _f is not left shifted by _f##_S + */ + +#define REG_SET_FIELD(_r, _f, _v) (REG_WRITE((_r),((REG_READ(_r) & ~((_f##_V) << (_f##_S)))|(((_v) & (_f##_V))<<(_f##_S))))) + +/* Get field value from a variable, + * used when _f is not left shifted by _f##_S + */ + +#define VALUE_GET_FIELD(_r, _f) (((_r) >> (_f##_S)) & (_f)) + +/* Get field value from a variable, + * used when _f is left shifted by _f##_S + */ + +#define VALUE_GET_FIELD2(_r, _f) (((_r) & (_f))>> (_f##_S)) + +/* Set field value to a variable, + * used when _f is not left shifted by _f##_S + */ + +#define VALUE_SET_FIELD(_r, _f, _v) ((_r)=(((_r) & ~((_f) << (_f##_S)))|((_v)<<(_f##_S)))) + +/* Set field value to a variable, + * used when _f is left shifted by _f##_S + */ + +#define VALUE_SET_FIELD2(_r, _f, _v) ((_r)=(((_r) & ~(_f))|((_v)<<(_f##_S)))) + +/* Generate a value from a field value, + * used when _f is not left shifted by _f##_S + */ + +#define FIELD_TO_VALUE(_f, _v) (((_v)&(_f))<<_f##_S) + +/* Generate a value from a field value, + * used when _f is left shifted by _f##_S + */ + +#define FIELD_TO_VALUE2(_f, _v) (((_v)<<_f##_S) & (_f)) + +/* Read value from register */ + +#define READ_PERI_REG(addr) (*((volatile uint32_t *)ETS_UNCACHED_ADDR(addr))) + +/* Write value to register */ + +#define WRITE_PERI_REG(addr, val) (*((volatile uint32_t *)ETS_UNCACHED_ADDR(addr))) = (uint32_t)(val) + +/* Clear bits of register controlled by mask */ + +#define CLEAR_PERI_REG_MASK(reg, mask) WRITE_PERI_REG((reg), (READ_PERI_REG(reg)&(~(mask)))) + +/* Set bits of register controlled by mask */ + +#define SET_PERI_REG_MASK(reg, mask) WRITE_PERI_REG((reg), (READ_PERI_REG(reg)|(mask))) + +/* Get bits of register controlled by mask */ + +#define GET_PERI_REG_MASK(reg, mask) (READ_PERI_REG(reg) & (mask)) + +/* Get bits of register controlled by highest bit and lowest bit */ + +#define GET_PERI_REG_BITS(reg, hipos,lowpos) ((READ_PERI_REG(reg)>>(lowpos))&((1<<((hipos)-(lowpos)+1))-1)) + +/* Set bits of register controlled by mask and shift */ + +#define SET_PERI_REG_BITS(reg,bit_map,value,shift) (WRITE_PERI_REG((reg),(READ_PERI_REG(reg)&(~((bit_map)<<(shift))))|(((value) & bit_map)<<(shift)) )) + +/* Get field of register */ + +#define GET_PERI_REG_BITS2(reg, mask,shift) ((READ_PERI_REG(reg)>>(shift))&(mask)) + +/* Extract the field from the register and shift it to avoid wrong reading */ + +#define REG_MASK(_reg, _field) ((_reg & (_field##_M)) >> (_field##_S)) + +/* Helper to place a value in a field */ + +#define VALUE_TO_FIELD(_value, _field) ((_value << (_field##_S)) & (_field##_M)) + +/* Peripheral Clock */ + +#define APB_CLK_FREQ_ROM (40*1000000) +#define CPU_CLK_FREQ_ROM (40*1000000) +#define UART_CLK_FREQ_ROM (40*1000000) +#define EFUSE_CLK_FREQ_ROM (20*1000000) +#define CPU_CLK_FREQ APB_CLK_FREQ +#define APB_CLK_FREQ (80*1000000) +#define REF_CLK_FREQ (1000000) +#define RTC_CLK_FREQ (20*1000000) +#define XTAL_CLK_FREQ (40*1000000) +#define UART_CLK_FREQ APB_CLK_FREQ +#define WDT_CLK_FREQ APB_CLK_FREQ +#define TIMER_CLK_FREQ (80000000>>4) +#define SPI_CLK_DIV 4 +#define TICKS_PER_US_ROM 40 +#define GPIO_MATRIX_DELAY_NS 0 + +/* Overall memory map */ + +#define SOC_DROM_LOW 0x3C000000 +#define SOC_DROM_HIGH 0x3D000000 +#define SOC_IROM_LOW 0x42000000 +#define SOC_IROM_HIGH 0x44000000 +#define SOC_IRAM_LOW 0x40370000 +#define SOC_IRAM_HIGH 0x403E0000 +#define SOC_DRAM_LOW 0x3FC88000 +#define SOC_DRAM_HIGH 0x3FD00000 + +#define SOC_RTC_IRAM_LOW 0x600FE000 +#define SOC_RTC_IRAM_HIGH 0x60100000 +#define SOC_RTC_DRAM_LOW 0x600FE000 +#define SOC_RTC_DRAM_HIGH 0x60100000 + +#define SOC_RTC_DATA_LOW 0x50000000 +#define SOC_RTC_DATA_HIGH 0x50002000 + +#define SOC_EXTRAM_DATA_LOW 0x3D000000 +#define SOC_EXTRAM_DATA_HIGH 0x3E000000 +#define SOC_IROM_MASK_LOW 0x40000000 +#define SOC_IROM_MASK_HIGH 0x4001A100 + +#define SOC_EXTRAM_DATA_SIZE (SOC_EXTRAM_DATA_HIGH - SOC_EXTRAM_DATA_LOW) + +/* First and last words of the D/IRAM region, for both the DRAM address + * as well as the IRAM alias. + */ + +#define SOC_DIRAM_IRAM_LOW 0x40378000 +#define SOC_DIRAM_IRAM_HIGH 0x403E0000 +#define SOC_DIRAM_DRAM_LOW 0x3FC88000 +#define SOC_DIRAM_DRAM_HIGH 0x3FCF0000 + +/* Region of memory accessible via DMA in internal memory. + * See esp_ptr_dma_capable(). + */ + +#define SOC_DMA_LOW 0x3FC88000 +#define SOC_DMA_HIGH 0x3FD00000 + +/* Region of memory accessible via DMA in external memory. + * See esp_ptr_dma_ext_capable(). + */ + +#define SOC_DMA_EXT_LOW SOC_EXTRAM_DATA_LOW +#define SOC_DMA_EXT_HIGH SOC_EXTRAM_DATA_HIGH + +/* Region of memory that is byte-accessible. + * See esp_ptr_byte_accessible(). + */ + +#define SOC_BYTE_ACCESSIBLE_LOW 0x3FC88000 +#define SOC_BYTE_ACCESSIBLE_HIGH 0x3FD00000 + +/* Region of memory that is internal, as in on the same silicon die as the + * ESP32 CPUs (excluding RTC data region, that's checked separately.) + * See esp_ptr_internal(). + */ + +#define SOC_MEM_INTERNAL_LOW 0x3FC88000 +#define SOC_MEM_INTERNAL_HIGH 0x403E2000 + +/* Start (highest address) of ROM boot stack, only relevant during + * early boot + */ + +#define SOC_ROM_STACK_START 0x3fcebf10 + +/* Interrupt cpu using table, Please see the core-isa.h */ + +/**************************************************************************** + * Intr num Level Type PRO CPU usage APP CPU usage + * 0 1 extern level WMAC Reserved + * 1 1 extern level BT/BLE Host HCI DMA BT/BLE Host HCI DMA + * 2 1 extern level + * 3 1 extern level + * 4 1 extern level WBB + * 5 1 extern level BT/BLE Controller BT/BLE Controller + * 6 1 timer FreeRTOS Tick(L1) FreeRTOS Tick(L1) + * 7 1 software BT/BLE VHCI BT/BLE VHCI + * 8 1 extern level BT/BLE BB(RX/TX) BT/BLE BB(RX/TX) + * 9 1 extern level + * 10 1 extern edge + * 11 3 profiling + * 12 1 extern level + * 13 1 extern level + * 14 7 nmi Reserved Reserved + * 15 3 timer FreeRTOS Tick(L3) FreeRTOS Tick(L3) + * 16 5 timer + * 17 1 extern level + * 18 1 extern level + * 19 2 extern level + * 20 2 extern level + * 21 2 extern level + * 22 3 extern edge + * 23 3 extern level + * 24 4 extern level TG1_WDT + * 25 4 extern level CACHEERR + * 26 5 extern level + * 27 3 extern level Reserved Reserved + * 28 4 extern edge DPORT ACCESS DPORT ACCESS + * 29 3 software Reserved Reserved + * 30 4 extern edge Reserved Reserved + * 31 5 extern level + ****************************************************************************/ + +/* Core voltage needs to be increased in two cases: + * 1. running at 240 MHz + * 2. running with 80MHz Flash frequency + */ + +#if defined(CONFIG_ESP32S3_FLASH_FREQ_80M) || defined(CONFIG_ESP32S3_FLASH_FREQ_120M) +#define DIG_DBIAS_80M_160M RTC_CNTL_DBIAS_1V25 +#else +#define DIG_DBIAS_80M_160M RTC_CNTL_DBIAS_1V10 +#endif +#define DIG_DBIAS_240M RTC_CNTL_DBIAS_1V25 +#define DIG_DBIAS_XTAL RTC_CNTL_DBIAS_1V10 +#define DIG_DBIAS_2M RTC_CNTL_DBIAS_1V00 + +/* CPU0 Interrupt number reserved, not touch this. */ + +#define ETS_WMAC_INUM 0 +#define ETS_BT_HOST_INUM 1 +#define ETS_WBB_INUM 4 +#define ETS_TG0_T1_INUM 10 /**< use edge interrupt*/ +#define ETS_FRC1_INUM 22 +#define ETS_T1_WDT_INUM 24 +#define ETS_CACHEERR_INUM 25 +#define ETS_DPORT_INUM 28 + +/* CPU0 Interrupt number used in ROM, should be cancelled in SDK */ + +#define ETS_SLC_INUM 1 +#define ETS_UART0_INUM 5 +#define ETS_UART1_INUM 5 +#define ETS_SPI2_INUM 1 + +/* CPU0 Interrupt number used in ROM code only when module init function + * called, should pay attention here. + */ + +#define ETS_FRC_TIMER2_INUM 10 /* use edge*/ +#define ETS_GPIO_INUM 4 + +/* Other interrupt number should be managed by the user */ + +/* Invalid interrupt for number interrupt matrix */ + +#define ETS_INVALID_INUM 6 + +#define MHZ (1000000) +#define RTC_PLL_FREQ_320M 320 +#define RTC_PLL_FREQ_480M 480 + +/**************************************************************************** + * Inline Functions + ****************************************************************************/ + +/**************************************************************************** + * Name: esp32s3_sp_dram + * + * Description: + * Check if the stack pointer is in DRAM. + * + ****************************************************************************/ + +static inline bool IRAM_ATTR esp32s3_sp_dram(uint32_t sp) +{ + return (sp >= SOC_DRAM_LOW + 0x10 && sp < SOC_DRAM_HIGH - 0x10); +} + +/**************************************************************************** + * Name: esp32s3_ptr_extram + * + * Description: + * Check if the buffer comes from the external RAM + * + ****************************************************************************/ + +static inline bool IRAM_ATTR esp32s3_ptr_extram(const void *p) +{ + return ((intptr_t)p >= SOC_EXTRAM_DATA_LOW && + (intptr_t)p < SOC_EXTRAM_DATA_HIGH); +} + +/**************************************************************************** + * Name: esp32s3_ptr_exec + * + * Description: + * Check if the pointer is within an executable range. + * + ****************************************************************************/ + +static inline bool IRAM_ATTR esp32s3_ptr_exec(const void *p) +{ + intptr_t ip = (intptr_t)p; + return (ip >= SOC_IROM_LOW && ip < SOC_IROM_HIGH) + || (ip >= SOC_IRAM_LOW && ip < SOC_IRAM_HIGH) + || (ip >= SOC_IROM_MASK_LOW && ip < SOC_IROM_MASK_HIGH) +#if defined(SOC_CACHE_APP_LOW) && !defined(CONFIG_SMP) + || (ip >= SOC_CACHE_APP_LOW && ip < SOC_CACHE_APP_HIGH) +#endif + || (ip >= SOC_RTC_IRAM_LOW && ip < SOC_RTC_IRAM_HIGH); +} + +#endif /* __ARCH_XTENSA_SRC_ESP32S3_HARDWARE_ESP32S3_SOC_H */ diff --git a/arch/xtensa/src/esp32s3/hardware/esp32s3_system.h b/arch/xtensa/src/esp32s3/hardware/esp32s3_system.h new file mode 100644 index 0000000000..ce9d514916 --- /dev/null +++ b/arch/xtensa/src/esp32s3/hardware/esp32s3_system.h @@ -0,0 +1,1757 @@ +/**************************************************************************** + * arch/xtensa/src/esp32s3/hardware/esp32s3_system.h + * + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. The + * ASF licenses this file to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance with the + * License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT + * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the + * License for the specific language governing permissions and limitations + * under the License. + * + ****************************************************************************/ + +#ifndef __ARCH_XTENSA_SRC_ESP32S3_HARDWARE_ESP32S3_SYSTEM_H +#define __ARCH_XTENSA_SRC_ESP32S3_HARDWARE_ESP32S3_SYSTEM_H + +/**************************************************************************** + * Included Files + ****************************************************************************/ + +#include "esp32s3_soc.h" + +/**************************************************************************** + * Pre-processor Definitions + ****************************************************************************/ + +/* SYSTEM_CORE_1_CONTROL_0_REG register + * Core0 control regiter 0 + */ + +#define SYSTEM_CORE_1_CONTROL_0_REG (DR_REG_SYSTEM_BASE + 0x0) + +/* SYSTEM_CONTROL_CORE_1_RESETING : R/W; bitpos: [2]; default: 1; + * Set 1 to let core1 reset + */ + +#define SYSTEM_CONTROL_CORE_1_RESETING (BIT(2)) +#define SYSTEM_CONTROL_CORE_1_RESETING_M (SYSTEM_CONTROL_CORE_1_RESETING_V << SYSTEM_CONTROL_CORE_1_RESETING_S) +#define SYSTEM_CONTROL_CORE_1_RESETING_V 0x00000001 +#define SYSTEM_CONTROL_CORE_1_RESETING_S 2 + +/* SYSTEM_CONTROL_CORE_1_CLKGATE_EN : R/W; bitpos: [1]; default: 0; + * Set 1 to open core1 clock + */ + +#define SYSTEM_CONTROL_CORE_1_CLKGATE_EN (BIT(1)) +#define SYSTEM_CONTROL_CORE_1_CLKGATE_EN_M (SYSTEM_CONTROL_CORE_1_CLKGATE_EN_V << SYSTEM_CONTROL_CORE_1_CLKGATE_EN_S) +#define SYSTEM_CONTROL_CORE_1_CLKGATE_EN_V 0x00000001 +#define SYSTEM_CONTROL_CORE_1_CLKGATE_EN_S 1 + +/* SYSTEM_CONTROL_CORE_1_RUNSTALL : R/W; bitpos: [0]; default: 0; + * Set 1 to stall core1 + */ + +#define SYSTEM_CONTROL_CORE_1_RUNSTALL (BIT(0)) +#define SYSTEM_CONTROL_CORE_1_RUNSTALL_M (SYSTEM_CONTROL_CORE_1_RUNSTALL_V << SYSTEM_CONTROL_CORE_1_RUNSTALL_S) +#define SYSTEM_CONTROL_CORE_1_RUNSTALL_V 0x00000001 +#define SYSTEM_CONTROL_CORE_1_RUNSTALL_S 0 + +/* SYSTEM_CORE_1_CONTROL_1_REG register + * Core0 control regiter 1 + */ + +#define SYSTEM_CORE_1_CONTROL_1_REG (DR_REG_SYSTEM_BASE + 0x4) + +/* SYSTEM_CONTROL_CORE_1_MESSAGE : R/W; bitpos: [31:0]; default: 0; + * it's only a R/W register, no function, software can write any value + */ + +#define SYSTEM_CONTROL_CORE_1_MESSAGE 0xffffffff +#define SYSTEM_CONTROL_CORE_1_MESSAGE_M (SYSTEM_CONTROL_CORE_1_MESSAGE_V << SYSTEM_CONTROL_CORE_1_MESSAGE_S) +#define SYSTEM_CONTROL_CORE_1_MESSAGE_V 0xffffffff +#define SYSTEM_CONTROL_CORE_1_MESSAGE_S 0 + +/* SYSTEM_CPU_PERI_CLK_EN_REG register + * cpu_peripheral clock configuration register + */ + +#define SYSTEM_CPU_PERI_CLK_EN_REG (DR_REG_SYSTEM_BASE + 0x8) + +/* SYSTEM_CLK_EN_DEDICATED_GPIO : R/W; bitpos: [7]; default: 0; + * Set 1 to open dedicated_gpio module clk + */ + +#define SYSTEM_CLK_EN_DEDICATED_GPIO (BIT(7)) +#define SYSTEM_CLK_EN_DEDICATED_GPIO_M (SYSTEM_CLK_EN_DEDICATED_GPIO_V << SYSTEM_CLK_EN_DEDICATED_GPIO_S) +#define SYSTEM_CLK_EN_DEDICATED_GPIO_V 0x00000001 +#define SYSTEM_CLK_EN_DEDICATED_GPIO_S 7 + +/* SYSTEM_CLK_EN_ASSIST_DEBUG : R/W; bitpos: [6]; default: 0; + * Set 1 to open assist_debug module clock + */ + +#define SYSTEM_CLK_EN_ASSIST_DEBUG (BIT(6)) +#define SYSTEM_CLK_EN_ASSIST_DEBUG_M (SYSTEM_CLK_EN_ASSIST_DEBUG_V << SYSTEM_CLK_EN_ASSIST_DEBUG_S) +#define SYSTEM_CLK_EN_ASSIST_DEBUG_V 0x00000001 +#define SYSTEM_CLK_EN_ASSIST_DEBUG_S 6 + +/* SYSTEM_CPU_PERI_RST_EN_REG register + * cpu_peripheral reset configuration regsiter + */ + +#define SYSTEM_CPU_PERI_RST_EN_REG (DR_REG_SYSTEM_BASE + 0xc) + +/* SYSTEM_RST_EN_DEDICATED_GPIO : R/W; bitpos: [7]; default: 1; + * Set 1 to let dedicated_gpio module reset + */ + +#define SYSTEM_RST_EN_DEDICATED_GPIO (BIT(7)) +#define SYSTEM_RST_EN_DEDICATED_GPIO_M (SYSTEM_RST_EN_DEDICATED_GPIO_V << SYSTEM_RST_EN_DEDICATED_GPIO_S) +#define SYSTEM_RST_EN_DEDICATED_GPIO_V 0x00000001 +#define SYSTEM_RST_EN_DEDICATED_GPIO_S 7 + +/* SYSTEM_RST_EN_ASSIST_DEBUG : R/W; bitpos: [6]; default: 1; + * Set 1 to let assist_debug module reset + */ + +#define SYSTEM_RST_EN_ASSIST_DEBUG (BIT(6)) +#define SYSTEM_RST_EN_ASSIST_DEBUG_M (SYSTEM_RST_EN_ASSIST_DEBUG_V << SYSTEM_RST_EN_ASSIST_DEBUG_S) +#define SYSTEM_RST_EN_ASSIST_DEBUG_V 0x00000001 +#define SYSTEM_RST_EN_ASSIST_DEBUG_S 6 + +/* SYSTEM_CPU_PER_CONF_REG register + * cpu peripheral clock configuration register + */ + +#define SYSTEM_CPU_PER_CONF_REG (DR_REG_SYSTEM_BASE + 0x10) + +/* SYSTEM_CPU_WAITI_DELAY_NUM : R/W; bitpos: [7:4]; default: 0; + * This field used to set delay cycle when cpu enter waiti mode, after delay + * waiti_clk will close + */ + +#define SYSTEM_CPU_WAITI_DELAY_NUM 0x0000000f +#define SYSTEM_CPU_WAITI_DELAY_NUM_M (SYSTEM_CPU_WAITI_DELAY_NUM_V << SYSTEM_CPU_WAITI_DELAY_NUM_S) +#define SYSTEM_CPU_WAITI_DELAY_NUM_V 0x0000000f +#define SYSTEM_CPU_WAITI_DELAY_NUM_S 4 + +/* SYSTEM_CPU_WAIT_MODE_FORCE_ON : R/W; bitpos: [3]; default: 1; + * Set 1 to force cpu_waiti_clk enable. + */ + +#define SYSTEM_CPU_WAIT_MODE_FORCE_ON (BIT(3)) +#define SYSTEM_CPU_WAIT_MODE_FORCE_ON_M (SYSTEM_CPU_WAIT_MODE_FORCE_ON_V << SYSTEM_CPU_WAIT_MODE_FORCE_ON_S) +#define SYSTEM_CPU_WAIT_MODE_FORCE_ON_V 0x00000001 +#define SYSTEM_CPU_WAIT_MODE_FORCE_ON_S 3 + +/* SYSTEM_PLL_FREQ_SEL : R/W; bitpos: [2]; default: 1; + * This field used to sel pll frequent. + */ + +#define SYSTEM_PLL_FREQ_SEL (BIT(2)) +#define SYSTEM_PLL_FREQ_SEL_M (SYSTEM_PLL_FREQ_SEL_V << SYSTEM_PLL_FREQ_SEL_S) +#define SYSTEM_PLL_FREQ_SEL_V 0x00000001 +#define SYSTEM_PLL_FREQ_SEL_S 2 + +/* SYSTEM_CPUPERIOD_SEL : R/W; bitpos: [1:0]; default: 0; + * This field used to sel cpu clock frequent. + */ + +#define SYSTEM_CPUPERIOD_SEL 0x00000003 +#define SYSTEM_CPUPERIOD_SEL_M (SYSTEM_CPUPERIOD_SEL_V << SYSTEM_CPUPERIOD_SEL_S) +#define SYSTEM_CPUPERIOD_SEL_V 0x00000003 +#define SYSTEM_CPUPERIOD_SEL_S 0 + +/* SYSTEM_MEM_PD_MASK_REG register + * memory power down mask configuration register + */ + +#define SYSTEM_MEM_PD_MASK_REG (DR_REG_SYSTEM_BASE + 0x14) + +/* SYSTEM_LSLP_MEM_PD_MASK : R/W; bitpos: [0]; default: 1; + * Set 1 to mask memory power down. + */ + +#define SYSTEM_LSLP_MEM_PD_MASK (BIT(0)) +#define SYSTEM_LSLP_MEM_PD_MASK_M (SYSTEM_LSLP_MEM_PD_MASK_V << SYSTEM_LSLP_MEM_PD_MASK_S) +#define SYSTEM_LSLP_MEM_PD_MASK_V 0x00000001 +#define SYSTEM_LSLP_MEM_PD_MASK_S 0 + +/* SYSTEM_PERIP_CLK_EN0_REG register + * peripheral clock configuration regsiter 0 + */ + +#define SYSTEM_PERIP_CLK_EN0_REG (DR_REG_SYSTEM_BASE + 0x18) + +/* SYSTEM_SPI4_CLK_EN : R/W; bitpos: [31]; default: 1; + * Set 1 to enable SPI4 clock + */ + +#define SYSTEM_SPI4_CLK_EN (BIT(31)) +#define SYSTEM_SPI4_CLK_EN_M (SYSTEM_SPI4_CLK_EN_V << SYSTEM_SPI4_CLK_EN_S) +#define SYSTEM_SPI4_CLK_EN_V 0x00000001 +#define SYSTEM_SPI4_CLK_EN_S 31 + +/* SYSTEM_ADC2_ARB_CLK_EN : R/W; bitpos: [30]; default: 1; + * Set 1 to enable ADC2_ARB clock + */ + +#define SYSTEM_ADC2_ARB_CLK_EN (BIT(30)) +#define SYSTEM_ADC2_ARB_CLK_EN_M (SYSTEM_ADC2_ARB_CLK_EN_V << SYSTEM_ADC2_ARB_CLK_EN_S) +#define SYSTEM_ADC2_ARB_CLK_EN_V 0x00000001 +#define SYSTEM_ADC2_ARB_CLK_EN_S 30 + +/* SYSTEM_SYSTIMER_CLK_EN : R/W; bitpos: [29]; default: 1; + * Set 1 to enable SYSTEMTIMER clock + */ + +#define SYSTEM_SYSTIMER_CLK_EN (BIT(29)) +#define SYSTEM_SYSTIMER_CLK_EN_M (SYSTEM_SYSTIMER_CLK_EN_V << SYSTEM_SYSTIMER_CLK_EN_S) +#define SYSTEM_SYSTIMER_CLK_EN_V 0x00000001 +#define SYSTEM_SYSTIMER_CLK_EN_S 29 + +/* SYSTEM_APB_SARADC_CLK_EN : R/W; bitpos: [28]; default: 1; + * Set 1 to enable APB_SARADC clock + */ + +#define SYSTEM_APB_SARADC_CLK_EN (BIT(28)) +#define SYSTEM_APB_SARADC_CLK_EN_M (SYSTEM_APB_SARADC_CLK_EN_V << SYSTEM_APB_SARADC_CLK_EN_S) +#define SYSTEM_APB_SARADC_CLK_EN_V 0x00000001 +#define SYSTEM_APB_SARADC_CLK_EN_S 28 + +/* SYSTEM_SPI3_DMA_CLK_EN : R/W; bitpos: [27]; default: 1; + * Set 1 to enable SPI4 clock + */ + +#define SYSTEM_SPI3_DMA_CLK_EN (BIT(27)) +#define SYSTEM_SPI3_DMA_CLK_EN_M (SYSTEM_SPI3_DMA_CLK_EN_V << SYSTEM_SPI3_DMA_CLK_EN_S) +#define SYSTEM_SPI3_DMA_CLK_EN_V 0x00000001 +#define SYSTEM_SPI3_DMA_CLK_EN_S 27 + +/* SYSTEM_PWM3_CLK_EN : R/W; bitpos: [26]; default: 0; + * Set 1 to enable PWM3 clock + */ + +#define SYSTEM_PWM3_CLK_EN (BIT(26)) +#define SYSTEM_PWM3_CLK_EN_M (SYSTEM_PWM3_CLK_EN_V << SYSTEM_PWM3_CLK_EN_S) +#define SYSTEM_PWM3_CLK_EN_V 0x00000001 +#define SYSTEM_PWM3_CLK_EN_S 26 + +/* SYSTEM_PWM2_CLK_EN : R/W; bitpos: [25]; default: 0; + * Set 1 to enable PWM2 clock + */ + +#define SYSTEM_PWM2_CLK_EN (BIT(25)) +#define SYSTEM_PWM2_CLK_EN_M (SYSTEM_PWM2_CLK_EN_V << SYSTEM_PWM2_CLK_EN_S) +#define SYSTEM_PWM2_CLK_EN_V 0x00000001 +#define SYSTEM_PWM2_CLK_EN_S 25 + +/* SYSTEM_UART_MEM_CLK_EN : R/W; bitpos: [24]; default: 1; + * Set 1 to enable UART_MEM clock + */ + +#define SYSTEM_UART_MEM_CLK_EN (BIT(24)) +#define SYSTEM_UART_MEM_CLK_EN_M (SYSTEM_UART_MEM_CLK_EN_V << SYSTEM_UART_MEM_CLK_EN_S) +#define SYSTEM_UART_MEM_CLK_EN_V 0x00000001 +#define SYSTEM_UART_MEM_CLK_EN_S 24 + +/* SYSTEM_USB_CLK_EN : R/W; bitpos: [23]; default: 1; + * Set 1 to enable USB clock + */ + +#define SYSTEM_USB_CLK_EN (BIT(23)) +#define SYSTEM_USB_CLK_EN_M (SYSTEM_USB_CLK_EN_V << SYSTEM_USB_CLK_EN_S) +#define SYSTEM_USB_CLK_EN_V 0x00000001 +#define SYSTEM_USB_CLK_EN_S 23 + +/* SYSTEM_SPI2_DMA_CLK_EN : R/W; bitpos: [22]; default: 1; + * Set 1 to enable SPI2_DMA clock + */ + +#define SYSTEM_SPI2_DMA_CLK_EN (BIT(22)) +#define SYSTEM_SPI2_DMA_CLK_EN_M (SYSTEM_SPI2_DMA_CLK_EN_V << SYSTEM_SPI2_DMA_CLK_EN_S) +#define SYSTEM_SPI2_DMA_CLK_EN_V 0x00000001 +#define SYSTEM_SPI2_DMA_CLK_EN_S 22 + +/* SYSTEM_I2S1_CLK_EN : R/W; bitpos: [21]; default: 0; + * Set 1 to enable I2S1 clock + */ + +#define SYSTEM_I2S1_CLK_EN (BIT(21)) +#define SYSTEM_I2S1_CLK_EN_M (SYSTEM_I2S1_CLK_EN_V << SYSTEM_I2S1_CLK_EN_S) +#define SYSTEM_I2S1_CLK_EN_V 0x00000001 +#define SYSTEM_I2S1_CLK_EN_S 21 + +/* SYSTEM_PWM1_CLK_EN : R/W; bitpos: [20]; default: 0; + * Set 1 to enable PWM1 clock + */ + +#define SYSTEM_PWM1_CLK_EN (BIT(20)) +#define SYSTEM_PWM1_CLK_EN_M (SYSTEM_PWM1_CLK_EN_V << SYSTEM_PWM1_CLK_EN_S) +#define SYSTEM_PWM1_CLK_EN_V 0x00000001 +#define SYSTEM_PWM1_CLK_EN_S 20 + +/* SYSTEM_CAN_CLK_EN : R/W; bitpos: [19]; default: 0; + * Set 1 to enable CAN clock + */ + +#define SYSTEM_CAN_CLK_EN (BIT(19)) +#define SYSTEM_CAN_CLK_EN_M (SYSTEM_CAN_CLK_EN_V << SYSTEM_CAN_CLK_EN_S) +#define SYSTEM_CAN_CLK_EN_V 0x00000001 +#define SYSTEM_CAN_CLK_EN_S 19 + +/* SYSTEM_I2C_EXT1_CLK_EN : R/W; bitpos: [18]; default: 0; + * Set 1 to enable I2C_EXT1 clock + */ + +#define SYSTEM_I2C_EXT1_CLK_EN (BIT(18)) +#define SYSTEM_I2C_EXT1_CLK_EN_M (SYSTEM_I2C_EXT1_CLK_EN_V << SYSTEM_I2C_EXT1_CLK_EN_S) +#define SYSTEM_I2C_EXT1_CLK_EN_V 0x00000001 +#define SYSTEM_I2C_EXT1_CLK_EN_S 18 + +/* SYSTEM_PWM0_CLK_EN : R/W; bitpos: [17]; default: 0; + * Set 1 to enable PWM0 clock + */ + +#define SYSTEM_PWM0_CLK_EN (BIT(17)) +#define SYSTEM_PWM0_CLK_EN_M (SYSTEM_PWM0_CLK_EN_V << SYSTEM_PWM0_CLK_EN_S) +#define SYSTEM_PWM0_CLK_EN_V 0x00000001 +#define SYSTEM_PWM0_CLK_EN_S 17 + +/* SYSTEM_SPI3_CLK_EN : R/W; bitpos: [16]; default: 1; + * Set 1 to enable SPI3 clock + */ + +#define SYSTEM_SPI3_CLK_EN (BIT(16)) +#define SYSTEM_SPI3_CLK_EN_M (SYSTEM_SPI3_CLK_EN_V << SYSTEM_SPI3_CLK_EN_S) +#define SYSTEM_SPI3_CLK_EN_V 0x00000001 +#define SYSTEM_SPI3_CLK_EN_S 16 + +/* SYSTEM_TIMERGROUP1_CLK_EN : R/W; bitpos: [15]; default: 1; + * Set 1 to enable TIMERGROUP1 clock + */ + +#define SYSTEM_TIMERGROUP1_CLK_EN (BIT(15)) +#define SYSTEM_TIMERGROUP1_CLK_EN_M (SYSTEM_TIMERGROUP1_CLK_EN_V << SYSTEM_TIMERGROUP1_CLK_EN_S) +#define SYSTEM_TIMERGROUP1_CLK_EN_V 0x00000001 +#define SYSTEM_TIMERGROUP1_CLK_EN_S 15 + +/* SYSTEM_EFUSE_CLK_EN : R/W; bitpos: [14]; default: 1; + * Set 1 to enable EFUSE clock + */ + +#define SYSTEM_EFUSE_CLK_EN (BIT(14)) +#define SYSTEM_EFUSE_CLK_EN_M (SYSTEM_EFUSE_CLK_EN_V << SYSTEM_EFUSE_CLK_EN_S) +#define SYSTEM_EFUSE_CLK_EN_V 0x00000001 +#define SYSTEM_EFUSE_CLK_EN_S 14 + +/* SYSTEM_TIMERGROUP_CLK_EN : R/W; bitpos: [13]; default: 1; + * Set 1 to enable TIMERGROUP clock + */ + +#define SYSTEM_TIMERGROUP_CLK_EN (BIT(13)) +#define SYSTEM_TIMERGROUP_CLK_EN_M (SYSTEM_TIMERGROUP_CLK_EN_V << SYSTEM_TIMERGROUP_CLK_EN_S) +#define SYSTEM_TIMERGROUP_CLK_EN_V 0x00000001 +#define SYSTEM_TIMERGROUP_CLK_EN_S 13 + +/* SYSTEM_UHCI1_CLK_EN : R/W; bitpos: [12]; default: 0; + * Set 1 to enable UHCI1 clock + */ + +#define SYSTEM_UHCI1_CLK_EN (BIT(12)) +#define SYSTEM_UHCI1_CLK_EN_M (SYSTEM_UHCI1_CLK_EN_V << SYSTEM_UHCI1_CLK_EN_S) +#define SYSTEM_UHCI1_CLK_EN_V 0x00000001 +#define SYSTEM_UHCI1_CLK_EN_S 12 + +/* SYSTEM_LEDC_CLK_EN : R/W; bitpos: [11]; default: 0; + * Set 1 to enable LEDC clock + */ + +#define SYSTEM_LEDC_CLK_EN (BIT(11)) +#define SYSTEM_LEDC_CLK_EN_M (SYSTEM_LEDC_CLK_EN_V << SYSTEM_LEDC_CLK_EN_S) +#define SYSTEM_LEDC_CLK_EN_V 0x00000001 +#define SYSTEM_LEDC_CLK_EN_S 11 + +/* SYSTEM_PCNT_CLK_EN : R/W; bitpos: [10]; default: 0; + * Set 1 to enable PCNT clock + */ + +#define SYSTEM_PCNT_CLK_EN (BIT(10)) +#define SYSTEM_PCNT_CLK_EN_M (SYSTEM_PCNT_CLK_EN_V << SYSTEM_PCNT_CLK_EN_S) +#define SYSTEM_PCNT_CLK_EN_V 0x00000001 +#define SYSTEM_PCNT_CLK_EN_S 10 + +/* SYSTEM_RMT_CLK_EN : R/W; bitpos: [9]; default: 0; + * Set 1 to enable RMT clock + */ + +#define SYSTEM_RMT_CLK_EN (BIT(9)) +#define SYSTEM_RMT_CLK_EN_M (SYSTEM_RMT_CLK_EN_V << SYSTEM_RMT_CLK_EN_S) +#define SYSTEM_RMT_CLK_EN_V 0x00000001 +#define SYSTEM_RMT_CLK_EN_S 9 + +/* SYSTEM_UHCI0_CLK_EN : R/W; bitpos: [8]; default: 0; + * Set 1 to enable UHCI0 clock + */ + +#define SYSTEM_UHCI0_CLK_EN (BIT(8)) +#define SYSTEM_UHCI0_CLK_EN_M (SYSTEM_UHCI0_CLK_EN_V << SYSTEM_UHCI0_CLK_EN_S) +#define SYSTEM_UHCI0_CLK_EN_V 0x00000001 +#define SYSTEM_UHCI0_CLK_EN_S 8 + +/* SYSTEM_I2C_EXT0_CLK_EN : R/W; bitpos: [7]; default: 0; + * Set 1 to enable I2C_EXT0 clock + */ + +#define SYSTEM_I2C_EXT0_CLK_EN (BIT(7)) +#define SYSTEM_I2C_EXT0_CLK_EN_M (SYSTEM_I2C_EXT0_CLK_EN_V << SYSTEM_I2C_EXT0_CLK_EN_S) +#define SYSTEM_I2C_EXT0_CLK_EN_V 0x00000001 +#define SYSTEM_I2C_EXT0_CLK_EN_S 7 + +/* SYSTEM_SPI2_CLK_EN : R/W; bitpos: [6]; default: 1; + * Set 1 to enable SPI2 clock + */ + +#define SYSTEM_SPI2_CLK_EN (BIT(6)) +#define SYSTEM_SPI2_CLK_EN_M (SYSTEM_SPI2_CLK_EN_V << SYSTEM_SPI2_CLK_EN_S) +#define SYSTEM_SPI2_CLK_EN_V 0x00000001 +#define SYSTEM_SPI2_CLK_EN_S 6 + +/* SYSTEM_UART1_CLK_EN : R/W; bitpos: [5]; default: 1; + * Set 1 to enable UART1 clock + */ + +#define SYSTEM_UART1_CLK_EN (BIT(5)) +#define SYSTEM_UART1_CLK_EN_M (SYSTEM_UART1_CLK_EN_V << SYSTEM_UART1_CLK_EN_S) +#define SYSTEM_UART1_CLK_EN_V 0x00000001 +#define SYSTEM_UART1_CLK_EN_S 5 + +/* SYSTEM_I2S0_CLK_EN : R/W; bitpos: [4]; default: 0; + * Set 1 to enable I2S0 clock + */ + +#define SYSTEM_I2S0_CLK_EN (BIT(4)) +#define SYSTEM_I2S0_CLK_EN_M (SYSTEM_I2S0_CLK_EN_V << SYSTEM_I2S0_CLK_EN_S) +#define SYSTEM_I2S0_CLK_EN_V 0x00000001 +#define SYSTEM_I2S0_CLK_EN_S 4 + +/* SYSTEM_WDG_CLK_EN : R/W; bitpos: [3]; default: 1; + * Set 1 to enable WDG clock + */ + +#define SYSTEM_WDG_CLK_EN (BIT(3)) +#define SYSTEM_WDG_CLK_EN_M (SYSTEM_WDG_CLK_EN_V << SYSTEM_WDG_CLK_EN_S) +#define SYSTEM_WDG_CLK_EN_V 0x00000001 +#define SYSTEM_WDG_CLK_EN_S 3 + +/* SYSTEM_UART_CLK_EN : R/W; bitpos: [2]; default: 1; + * Set 1 to enable UART clock + */ + +#define SYSTEM_UART_CLK_EN (BIT(2)) +#define SYSTEM_UART_CLK_EN_M (SYSTEM_UART_CLK_EN_V << SYSTEM_UART_CLK_EN_S) +#define SYSTEM_UART_CLK_EN_V 0x00000001 +#define SYSTEM_UART_CLK_EN_S 2 + +/* SYSTEM_SPI01_CLK_EN : R/W; bitpos: [1]; default: 1; + * Set 1 to enable SPI01 clock + */ + +#define SYSTEM_SPI01_CLK_EN (BIT(1)) +#define SYSTEM_SPI01_CLK_EN_M (SYSTEM_SPI01_CLK_EN_V << SYSTEM_SPI01_CLK_EN_S) +#define SYSTEM_SPI01_CLK_EN_V 0x00000001 +#define SYSTEM_SPI01_CLK_EN_S 1 + +/* SYSTEM_TIMERS_CLK_EN : R/W; bitpos: [0]; default: 1; + * Set 1 to enable TIMERS clock + */ + +#define SYSTEM_TIMERS_CLK_EN (BIT(0)) +#define SYSTEM_TIMERS_CLK_EN_M (SYSTEM_TIMERS_CLK_EN_V << SYSTEM_TIMERS_CLK_EN_S) +#define SYSTEM_TIMERS_CLK_EN_V 0x00000001 +#define SYSTEM_TIMERS_CLK_EN_S 0 + +/* SYSTEM_PERIP_CLK_EN1_REG register + * peripheral clock configuration regsiter 1 + */ + +#define SYSTEM_PERIP_CLK_EN1_REG (DR_REG_SYSTEM_BASE + 0x1c) + +/* SYSTEM_USB_DEVICE_CLK_EN : R/W; bitpos: [10]; default: 1; + * Set 1 to enable USB_DEVICE clock + */ + +#define SYSTEM_USB_DEVICE_CLK_EN (BIT(10)) +#define SYSTEM_USB_DEVICE_CLK_EN_M (SYSTEM_USB_DEVICE_CLK_EN_V << SYSTEM_USB_DEVICE_CLK_EN_S) +#define SYSTEM_USB_DEVICE_CLK_EN_V 0x00000001 +#define SYSTEM_USB_DEVICE_CLK_EN_S 10 + +/* SYSTEM_UART2_CLK_EN : R/W; bitpos: [9]; default: 1; + * Set 1 to enable UART2 clock + */ + +#define SYSTEM_UART2_CLK_EN (BIT(9)) +#define SYSTEM_UART2_CLK_EN_M (SYSTEM_UART2_CLK_EN_V << SYSTEM_UART2_CLK_EN_S) +#define SYSTEM_UART2_CLK_EN_V 0x00000001 +#define SYSTEM_UART2_CLK_EN_S 9 + +/* SYSTEM_LCD_CAM_CLK_EN : R/W; bitpos: [8]; default: 0; + * Set 1 to enable LCD_CAM clock + */ + +#define SYSTEM_LCD_CAM_CLK_EN (BIT(8)) +#define SYSTEM_LCD_CAM_CLK_EN_M (SYSTEM_LCD_CAM_CLK_EN_V << SYSTEM_LCD_CAM_CLK_EN_S) +#define SYSTEM_LCD_CAM_CLK_EN_V 0x00000001 +#define SYSTEM_LCD_CAM_CLK_EN_S 8 + +/* SYSTEM_SDIO_HOST_CLK_EN : R/W; bitpos: [7]; default: 0; + * Set 1 to enable SDIO_HOST clock + */ + +#define SYSTEM_SDIO_HOST_CLK_EN (BIT(7)) +#define SYSTEM_SDIO_HOST_CLK_EN_M (SYSTEM_SDIO_HOST_CLK_EN_V << SYSTEM_SDIO_HOST_CLK_EN_S) +#define SYSTEM_SDIO_HOST_CLK_EN_V 0x00000001 +#define SYSTEM_SDIO_HOST_CLK_EN_S 7 + +/* SYSTEM_DMA_CLK_EN : R/W; bitpos: [6]; default: 0; + * Set 1 to enable DMA clock + */ + +#define SYSTEM_DMA_CLK_EN (BIT(6)) +#define SYSTEM_DMA_CLK_EN_M (SYSTEM_DMA_CLK_EN_V << SYSTEM_DMA_CLK_EN_S) +#define SYSTEM_DMA_CLK_EN_V 0x00000001 +#define SYSTEM_DMA_CLK_EN_S 6 + +/* SYSTEM_CRYPTO_HMAC_CLK_EN : R/W; bitpos: [5]; default: 0; + * Set 1 to enable HMAC clock + */ + +#define SYSTEM_CRYPTO_HMAC_CLK_EN (BIT(5)) +#define SYSTEM_CRYPTO_HMAC_CLK_EN_M (SYSTEM_CRYPTO_HMAC_CLK_EN_V << SYSTEM_CRYPTO_HMAC_CLK_EN_S) +#define SYSTEM_CRYPTO_HMAC_CLK_EN_V 0x00000001 +#define SYSTEM_CRYPTO_HMAC_CLK_EN_S 5 + +/* SYSTEM_CRYPTO_DS_CLK_EN : R/W; bitpos: [4]; default: 0; + * Set 1 to enable DS clock + */ + +#define SYSTEM_CRYPTO_DS_CLK_EN (BIT(4)) +#define SYSTEM_CRYPTO_DS_CLK_EN_M (SYSTEM_CRYPTO_DS_CLK_EN_V << SYSTEM_CRYPTO_DS_CLK_EN_S) +#define SYSTEM_CRYPTO_DS_CLK_EN_V 0x00000001 +#define SYSTEM_CRYPTO_DS_CLK_EN_S 4 + +/* SYSTEM_CRYPTO_RSA_CLK_EN : R/W; bitpos: [3]; default: 0; + * Set 1 to enable RSA clock + */ + +#define SYSTEM_CRYPTO_RSA_CLK_EN (BIT(3)) +#define SYSTEM_CRYPTO_RSA_CLK_EN_M (SYSTEM_CRYPTO_RSA_CLK_EN_V << SYSTEM_CRYPTO_RSA_CLK_EN_S) +#define SYSTEM_CRYPTO_RSA_CLK_EN_V 0x00000001 +#define SYSTEM_CRYPTO_RSA_CLK_EN_S 3 + +/* SYSTEM_CRYPTO_SHA_CLK_EN : R/W; bitpos: [2]; default: 0; + * Set 1 to enable SHA clock + */ + +#define SYSTEM_CRYPTO_SHA_CLK_EN (BIT(2)) +#define SYSTEM_CRYPTO_SHA_CLK_EN_M (SYSTEM_CRYPTO_SHA_CLK_EN_V << SYSTEM_CRYPTO_SHA_CLK_EN_S) +#define SYSTEM_CRYPTO_SHA_CLK_EN_V 0x00000001 +#define SYSTEM_CRYPTO_SHA_CLK_EN_S 2 + +/* SYSTEM_CRYPTO_AES_CLK_EN : R/W; bitpos: [1]; default: 0; + * Set 1 to enable AES clock + */ + +#define SYSTEM_CRYPTO_AES_CLK_EN (BIT(1)) +#define SYSTEM_CRYPTO_AES_CLK_EN_M (SYSTEM_CRYPTO_AES_CLK_EN_V << SYSTEM_CRYPTO_AES_CLK_EN_S) +#define SYSTEM_CRYPTO_AES_CLK_EN_V 0x00000001 +#define SYSTEM_CRYPTO_AES_CLK_EN_S 1 + +/* SYSTEM_PERI_BACKUP_CLK_EN : R/W; bitpos: [0]; default: 0; + * Set 1 to enable BACKUP clock + */ + +#define SYSTEM_PERI_BACKUP_CLK_EN (BIT(0)) +#define SYSTEM_PERI_BACKUP_CLK_EN_M (SYSTEM_PERI_BACKUP_CLK_EN_V << SYSTEM_PERI_BACKUP_CLK_EN_S) +#define SYSTEM_PERI_BACKUP_CLK_EN_V 0x00000001 +#define SYSTEM_PERI_BACKUP_CLK_EN_S 0 + +/* SYSTEM_PERIP_RST_EN0_REG register + * peripheral reset configuration register0 + */ + +#define SYSTEM_PERIP_RST_EN0_REG (DR_REG_SYSTEM_BASE + 0x20) + +/* SYSTEM_SPI4_RST : R/W; bitpos: [31]; default: 0; + * Set 1 to let SPI4 reset + */ + +#define SYSTEM_SPI4_RST (BIT(31)) +#define SYSTEM_SPI4_RST_M (SYSTEM_SPI4_RST_V << SYSTEM_SPI4_RST_S) +#define SYSTEM_SPI4_RST_V 0x00000001 +#define SYSTEM_SPI4_RST_S 31 + +/* SYSTEM_ADC2_ARB_RST : R/W; bitpos: [30]; default: 0; + * Set 1 to let ADC2_ARB reset + */ + +#define SYSTEM_ADC2_ARB_RST (BIT(30)) +#define SYSTEM_ADC2_ARB_RST_M (SYSTEM_ADC2_ARB_RST_V << SYSTEM_ADC2_ARB_RST_S) +#define SYSTEM_ADC2_ARB_RST_V 0x00000001 +#define SYSTEM_ADC2_ARB_RST_S 30 + +/* SYSTEM_SYSTIMER_RST : R/W; bitpos: [29]; default: 0; + * Set 1 to let SYSTIMER reset + */ + +#define SYSTEM_SYSTIMER_RST (BIT(29)) +#define SYSTEM_SYSTIMER_RST_M (SYSTEM_SYSTIMER_RST_V << SYSTEM_SYSTIMER_RST_S) +#define SYSTEM_SYSTIMER_RST_V 0x00000001 +#define SYSTEM_SYSTIMER_RST_S 29 + +/* SYSTEM_APB_SARADC_RST : R/W; bitpos: [28]; default: 0; + * Set 1 to let APB_SARADC reset + */ + +#define SYSTEM_APB_SARADC_RST (BIT(28)) +#define SYSTEM_APB_SARADC_RST_M (SYSTEM_APB_SARADC_RST_V << SYSTEM_APB_SARADC_RST_S) +#define SYSTEM_APB_SARADC_RST_V 0x00000001 +#define SYSTEM_APB_SARADC_RST_S 28 + +/* SYSTEM_SPI3_DMA_RST : R/W; bitpos: [27]; default: 0; + * Set 1 to let SPI3 reset + */ + +#define SYSTEM_SPI3_DMA_RST (BIT(27)) +#define SYSTEM_SPI3_DMA_RST_M (SYSTEM_SPI3_DMA_RST_V << SYSTEM_SPI3_DMA_RST_S) +#define SYSTEM_SPI3_DMA_RST_V 0x00000001 +#define SYSTEM_SPI3_DMA_RST_S 27 + +/* SYSTEM_PWM3_RST : R/W; bitpos: [26]; default: 0; + * Set 1 to let PWM3 reset + */ + +#define SYSTEM_PWM3_RST (BIT(26)) +#define SYSTEM_PWM3_RST_M (SYSTEM_PWM3_RST_V << SYSTEM_PWM3_RST_S) +#define SYSTEM_PWM3_RST_V 0x00000001 +#define SYSTEM_PWM3_RST_S 26 + +/* SYSTEM_PWM2_RST : R/W; bitpos: [25]; default: 0; + * Set 1 to let PWM2 reset + */ + +#define SYSTEM_PWM2_RST (BIT(25)) +#define SYSTEM_PWM2_RST_M (SYSTEM_PWM2_RST_V << SYSTEM_PWM2_RST_S) +#define SYSTEM_PWM2_RST_V 0x00000001 +#define SYSTEM_PWM2_RST_S 25 + +/* SYSTEM_UART_MEM_RST : R/W; bitpos: [24]; default: 0; + * Set 1 to let UART_MEM reset + */ + +#define SYSTEM_UART_MEM_RST (BIT(24)) +#define SYSTEM_UART_MEM_RST_M (SYSTEM_UART_MEM_RST_V << SYSTEM_UART_MEM_RST_S) +#define SYSTEM_UART_MEM_RST_V 0x00000001 +#define SYSTEM_UART_MEM_RST_S 24 + +/* SYSTEM_USB_RST : R/W; bitpos: [23]; default: 0; + * Set 1 to let USB reset + */ + +#define SYSTEM_USB_RST (BIT(23)) +#define SYSTEM_USB_RST_M (SYSTEM_USB_RST_V << SYSTEM_USB_RST_S) +#define SYSTEM_USB_RST_V 0x00000001 +#define SYSTEM_USB_RST_S 23 + +/* SYSTEM_SPI2_DMA_RST : R/W; bitpos: [22]; default: 0; + * Set 1 to let SPI2 reset + */ + +#define SYSTEM_SPI2_DMA_RST (BIT(22)) +#define SYSTEM_SPI2_DMA_RST_M (SYSTEM_SPI2_DMA_RST_V << SYSTEM_SPI2_DMA_RST_S) +#define SYSTEM_SPI2_DMA_RST_V 0x00000001 +#define SYSTEM_SPI2_DMA_RST_S 22 + +/* SYSTEM_I2S1_RST : R/W; bitpos: [21]; default: 0; + * Set 1 to let I2S1 reset + */ + +#define SYSTEM_I2S1_RST (BIT(21)) +#define SYSTEM_I2S1_RST_M (SYSTEM_I2S1_RST_V << SYSTEM_I2S1_RST_S) +#define SYSTEM_I2S1_RST_V 0x00000001 +#define SYSTEM_I2S1_RST_S 21 + +/* SYSTEM_PWM1_RST : R/W; bitpos: [20]; default: 0; + * Set 1 to let PWM1 reset + */ + +#define SYSTEM_PWM1_RST (BIT(20)) +#define SYSTEM_PWM1_RST_M (SYSTEM_PWM1_RST_V << SYSTEM_PWM1_RST_S) +#define SYSTEM_PWM1_RST_V 0x00000001 +#define SYSTEM_PWM1_RST_S 20 + +/* SYSTEM_CAN_RST : R/W; bitpos: [19]; default: 0; + * Set 1 to let CAN reset + */ + +#define SYSTEM_CAN_RST (BIT(19)) +#define SYSTEM_CAN_RST_M (SYSTEM_CAN_RST_V << SYSTEM_CAN_RST_S) +#define SYSTEM_CAN_RST_V 0x00000001 +#define SYSTEM_CAN_RST_S 19 + +/* SYSTEM_I2C_EXT1_RST : R/W; bitpos: [18]; default: 0; + * Set 1 to let I2C_EXT1 reset + */ + +#define SYSTEM_I2C_EXT1_RST (BIT(18)) +#define SYSTEM_I2C_EXT1_RST_M (SYSTEM_I2C_EXT1_RST_V << SYSTEM_I2C_EXT1_RST_S) +#define SYSTEM_I2C_EXT1_RST_V 0x00000001 +#define SYSTEM_I2C_EXT1_RST_S 18 + +/* SYSTEM_PWM0_RST : R/W; bitpos: [17]; default: 0; + * Set 1 to let PWM0 reset + */ + +#define SYSTEM_PWM0_RST (BIT(17)) +#define SYSTEM_PWM0_RST_M (SYSTEM_PWM0_RST_V << SYSTEM_PWM0_RST_S) +#define SYSTEM_PWM0_RST_V 0x00000001 +#define SYSTEM_PWM0_RST_S 17 + +/* SYSTEM_SPI3_RST : R/W; bitpos: [16]; default: 0; + * Set 1 to let SPI3 reset + */ + +#define SYSTEM_SPI3_RST (BIT(16)) +#define SYSTEM_SPI3_RST_M (SYSTEM_SPI3_RST_V << SYSTEM_SPI3_RST_S) +#define SYSTEM_SPI3_RST_V 0x00000001 +#define SYSTEM_SPI3_RST_S 16 + +/* SYSTEM_TIMERGROUP1_RST : R/W; bitpos: [15]; default: 0; + * Set 1 to let TIMERGROUP1 reset + */ + +#define SYSTEM_TIMERGROUP1_RST (BIT(15)) +#define SYSTEM_TIMERGROUP1_RST_M (SYSTEM_TIMERGROUP1_RST_V << SYSTEM_TIMERGROUP1_RST_S) +#define SYSTEM_TIMERGROUP1_RST_V 0x00000001 +#define SYSTEM_TIMERGROUP1_RST_S 15 + +/* SYSTEM_EFUSE_RST : R/W; bitpos: [14]; default: 0; + * Set 1 to let EFUSE reset + */ + +#define SYSTEM_EFUSE_RST (BIT(14)) +#define SYSTEM_EFUSE_RST_M (SYSTEM_EFUSE_RST_V << SYSTEM_EFUSE_RST_S) +#define SYSTEM_EFUSE_RST_V 0x00000001 +#define SYSTEM_EFUSE_RST_S 14 + +/* SYSTEM_TIMERGROUP_RST : R/W; bitpos: [13]; default: 0; + * Set 1 to let TIMERGROUP reset + */ + +#define SYSTEM_TIMERGROUP_RST (BIT(13)) +#define SYSTEM_TIMERGROUP_RST_M (SYSTEM_TIMERGROUP_RST_V << SYSTEM_TIMERGROUP_RST_S) +#define SYSTEM_TIMERGROUP_RST_V 0x00000001 +#define SYSTEM_TIMERGROUP_RST_S 13 + +/* SYSTEM_UHCI1_RST : R/W; bitpos: [12]; default: 0; + * Set 1 to let UHCI1 reset + */ + +#define SYSTEM_UHCI1_RST (BIT(12)) +#define SYSTEM_UHCI1_RST_M (SYSTEM_UHCI1_RST_V << SYSTEM_UHCI1_RST_S) +#define SYSTEM_UHCI1_RST_V 0x00000001 +#define SYSTEM_UHCI1_RST_S 12 + +/* SYSTEM_LEDC_RST : R/W; bitpos: [11]; default: 0; + * Set 1 to let LEDC reset + */ + +#define SYSTEM_LEDC_RST (BIT(11)) +#define SYSTEM_LEDC_RST_M (SYSTEM_LEDC_RST_V << SYSTEM_LEDC_RST_S) +#define SYSTEM_LEDC_RST_V 0x00000001 +#define SYSTEM_LEDC_RST_S 11 + +/* SYSTEM_PCNT_RST : R/W; bitpos: [10]; default: 0; + * Set 1 to let PCNT reset + */ + +#define SYSTEM_PCNT_RST (BIT(10)) +#define SYSTEM_PCNT_RST_M (SYSTEM_PCNT_RST_V << SYSTEM_PCNT_RST_S) +#define SYSTEM_PCNT_RST_V 0x00000001 +#define SYSTEM_PCNT_RST_S 10 + +/* SYSTEM_RMT_RST : R/W; bitpos: [9]; default: 0; + * Set 1 to let RMT reset + */ + +#define SYSTEM_RMT_RST (BIT(9)) +#define SYSTEM_RMT_RST_M (SYSTEM_RMT_RST_V << SYSTEM_RMT_RST_S) +#define SYSTEM_RMT_RST_V 0x00000001 +#define SYSTEM_RMT_RST_S 9 + +/* SYSTEM_UHCI0_RST : R/W; bitpos: [8]; default: 0; + * Set 1 to let UHCI0 reset + */ + +#define SYSTEM_UHCI0_RST (BIT(8)) +#define SYSTEM_UHCI0_RST_M (SYSTEM_UHCI0_RST_V << SYSTEM_UHCI0_RST_S) +#define SYSTEM_UHCI0_RST_V 0x00000001 +#define SYSTEM_UHCI0_RST_S 8 + +/* SYSTEM_I2C_EXT0_RST : R/W; bitpos: [7]; default: 0; + * Set 1 to let I2C_EXT0 reset + */ + +#define SYSTEM_I2C_EXT0_RST (BIT(7)) +#define SYSTEM_I2C_EXT0_RST_M (SYSTEM_I2C_EXT0_RST_V << SYSTEM_I2C_EXT0_RST_S) +#define SYSTEM_I2C_EXT0_RST_V 0x00000001 +#define SYSTEM_I2C_EXT0_RST_S 7 + +/* SYSTEM_SPI2_RST : R/W; bitpos: [6]; default: 0; + * Set 1 to let SPI2 reset + */ + +#define SYSTEM_SPI2_RST (BIT(6)) +#define SYSTEM_SPI2_RST_M (SYSTEM_SPI2_RST_V << SYSTEM_SPI2_RST_S) +#define SYSTEM_SPI2_RST_V 0x00000001 +#define SYSTEM_SPI2_RST_S 6 + +/* SYSTEM_UART1_RST : R/W; bitpos: [5]; default: 0; + * Set 1 to let UART1 reset + */ + +#define SYSTEM_UART1_RST (BIT(5)) +#define SYSTEM_UART1_RST_M (SYSTEM_UART1_RST_V << SYSTEM_UART1_RST_S) +#define SYSTEM_UART1_RST_V 0x00000001 +#define SYSTEM_UART1_RST_S 5 + +/* SYSTEM_I2S0_RST : R/W; bitpos: [4]; default: 0; + * Set 1 to let I2S0 reset + */ + +#define SYSTEM_I2S0_RST (BIT(4)) +#define SYSTEM_I2S0_RST_M (SYSTEM_I2S0_RST_V << SYSTEM_I2S0_RST_S) +#define SYSTEM_I2S0_RST_V 0x00000001 +#define SYSTEM_I2S0_RST_S 4 + +/* SYSTEM_WDG_RST : R/W; bitpos: [3]; default: 0; + * Set 1 to let WDG reset + */ + +#define SYSTEM_WDG_RST (BIT(3)) +#define SYSTEM_WDG_RST_M (SYSTEM_WDG_RST_V << SYSTEM_WDG_RST_S) +#define SYSTEM_WDG_RST_V 0x00000001 +#define SYSTEM_WDG_RST_S 3 + +/* SYSTEM_UART_RST : R/W; bitpos: [2]; default: 0; + * Set 1 to let UART reset + */ + +#define SYSTEM_UART_RST (BIT(2)) +#define SYSTEM_UART_RST_M (SYSTEM_UART_RST_V << SYSTEM_UART_RST_S) +#define SYSTEM_UART_RST_V 0x00000001 +#define SYSTEM_UART_RST_S 2 + +/* SYSTEM_SPI01_RST : R/W; bitpos: [1]; default: 0; + * Set 1 to let SPI01 reset + */ + +#define SYSTEM_SPI01_RST (BIT(1)) +#define SYSTEM_SPI01_RST_M (SYSTEM_SPI01_RST_V << SYSTEM_SPI01_RST_S) +#define SYSTEM_SPI01_RST_V 0x00000001 +#define SYSTEM_SPI01_RST_S 1 + +/* SYSTEM_TIMERS_RST : R/W; bitpos: [0]; default: 0; + * Set 1 to let TIMERS reset + */ + +#define SYSTEM_TIMERS_RST (BIT(0)) +#define SYSTEM_TIMERS_RST_M (SYSTEM_TIMERS_RST_V << SYSTEM_TIMERS_RST_S) +#define SYSTEM_TIMERS_RST_V 0x00000001 +#define SYSTEM_TIMERS_RST_S 0 + +/* SYSTEM_PERIP_RST_EN1_REG register + * peripheral reset configuration regsiter 1 + */ + +#define SYSTEM_PERIP_RST_EN1_REG (DR_REG_SYSTEM_BASE + 0x24) + +/* SYSTEM_USB_DEVICE_RST : R/W; bitpos: [10]; default: 0; + * Set 1 to let USB_DEVICE reset + */ + +#define SYSTEM_USB_DEVICE_RST (BIT(10)) +#define SYSTEM_USB_DEVICE_RST_M (SYSTEM_USB_DEVICE_RST_V << SYSTEM_USB_DEVICE_RST_S) +#define SYSTEM_USB_DEVICE_RST_V 0x00000001 +#define SYSTEM_USB_DEVICE_RST_S 10 + +/* SYSTEM_UART2_RST : R/W; bitpos: [9]; default: 0; + * Set 1 to let UART2 reset + */ + +#define SYSTEM_UART2_RST (BIT(9)) +#define SYSTEM_UART2_RST_M (SYSTEM_UART2_RST_V << SYSTEM_UART2_RST_S) +#define SYSTEM_UART2_RST_V 0x00000001 +#define SYSTEM_UART2_RST_S 9 + +/* SYSTEM_LCD_CAM_RST : R/W; bitpos: [8]; default: 1; + * Set 1 to let LCD_CAM reset + */ + +#define SYSTEM_LCD_CAM_RST (BIT(8)) +#define SYSTEM_LCD_CAM_RST_M (SYSTEM_LCD_CAM_RST_V << SYSTEM_LCD_CAM_RST_S) +#define SYSTEM_LCD_CAM_RST_V 0x00000001 +#define SYSTEM_LCD_CAM_RST_S 8 + +/* SYSTEM_SDIO_HOST_RST : R/W; bitpos: [7]; default: 1; + * Set 1 to let SDIO_HOST reset + */ + +#define SYSTEM_SDIO_HOST_RST (BIT(7)) +#define SYSTEM_SDIO_HOST_RST_M (SYSTEM_SDIO_HOST_RST_V << SYSTEM_SDIO_HOST_RST_S) +#define SYSTEM_SDIO_HOST_RST_V 0x00000001 +#define SYSTEM_SDIO_HOST_RST_S 7 + +/* SYSTEM_DMA_RST : R/W; bitpos: [6]; default: 1; + * Set 1 to let DMA reset + */ + +#define SYSTEM_DMA_RST (BIT(6)) +#define SYSTEM_DMA_RST_M (SYSTEM_DMA_RST_V << SYSTEM_DMA_RST_S) +#define SYSTEM_DMA_RST_V 0x00000001 +#define SYSTEM_DMA_RST_S 6 + +/* SYSTEM_CRYPTO_HMAC_RST : R/W; bitpos: [5]; default: 1; + * Set 1 to let CRYPTO_HMAC reset + */ + +#define SYSTEM_CRYPTO_HMAC_RST (BIT(5)) +#define SYSTEM_CRYPTO_HMAC_RST_M (SYSTEM_CRYPTO_HMAC_RST_V << SYSTEM_CRYPTO_HMAC_RST_S) +#define SYSTEM_CRYPTO_HMAC_RST_V 0x00000001 +#define SYSTEM_CRYPTO_HMAC_RST_S 5 + +/* SYSTEM_CRYPTO_DS_RST : R/W; bitpos: [4]; default: 1; + * Set 1 to let CRYPTO_DS reset + */ + +#define SYSTEM_CRYPTO_DS_RST (BIT(4)) +#define SYSTEM_CRYPTO_DS_RST_M (SYSTEM_CRYPTO_DS_RST_V << SYSTEM_CRYPTO_DS_RST_S) +#define SYSTEM_CRYPTO_DS_RST_V 0x00000001 +#define SYSTEM_CRYPTO_DS_RST_S 4 + +/* SYSTEM_CRYPTO_RSA_RST : R/W; bitpos: [3]; default: 1; + * Set 1 to let CRYPTO_RSA reset + */ + +#define SYSTEM_CRYPTO_RSA_RST (BIT(3)) +#define SYSTEM_CRYPTO_RSA_RST_M (SYSTEM_CRYPTO_RSA_RST_V << SYSTEM_CRYPTO_RSA_RST_S) +#define SYSTEM_CRYPTO_RSA_RST_V 0x00000001 +#define SYSTEM_CRYPTO_RSA_RST_S 3 + +/* SYSTEM_CRYPTO_SHA_RST : R/W; bitpos: [2]; default: 1; + * Set 1 to let CRYPTO_SHA reset + */ + +#define SYSTEM_CRYPTO_SHA_RST (BIT(2)) +#define SYSTEM_CRYPTO_SHA_RST_M (SYSTEM_CRYPTO_SHA_RST_V << SYSTEM_CRYPTO_SHA_RST_S) +#define SYSTEM_CRYPTO_SHA_RST_V 0x00000001 +#define SYSTEM_CRYPTO_SHA_RST_S 2 + +/* SYSTEM_CRYPTO_AES_RST : R/W; bitpos: [1]; default: 1; + * Set 1 to let CRYPTO_AES reset + */ + +#define SYSTEM_CRYPTO_AES_RST (BIT(1)) +#define SYSTEM_CRYPTO_AES_RST_M (SYSTEM_CRYPTO_AES_RST_V << SYSTEM_CRYPTO_AES_RST_S) +#define SYSTEM_CRYPTO_AES_RST_V 0x00000001 +#define SYSTEM_CRYPTO_AES_RST_S 1 + +/* SYSTEM_PERI_BACKUP_RST : R/W; bitpos: [0]; default: 0; + * Set 1 to let BACKUP reset + */ + +#define SYSTEM_PERI_BACKUP_RST (BIT(0)) +#define SYSTEM_PERI_BACKUP_RST_M (SYSTEM_PERI_BACKUP_RST_V << SYSTEM_PERI_BACKUP_RST_S) +#define SYSTEM_PERI_BACKUP_RST_V 0x00000001 +#define SYSTEM_PERI_BACKUP_RST_S 0 + +/* SYSTEM_BT_LPCK_DIV_INT_REG register + * low power clock frequent division factor configuration regsiter + */ + +#define SYSTEM_BT_LPCK_DIV_INT_REG (DR_REG_SYSTEM_BASE + 0x28) + +/* SYSTEM_BT_LPCK_DIV_NUM : R/W; bitpos: [11:0]; default: 255; + * This field is lower power clock frequent division factor + */ + +#define SYSTEM_BT_LPCK_DIV_NUM 0x00000fff +#define SYSTEM_BT_LPCK_DIV_NUM_M (SYSTEM_BT_LPCK_DIV_NUM_V << SYSTEM_BT_LPCK_DIV_NUM_S) +#define SYSTEM_BT_LPCK_DIV_NUM_V 0x00000fff +#define SYSTEM_BT_LPCK_DIV_NUM_S 0 + +/* SYSTEM_BT_LPCK_DIV_FRAC_REG register + * low power clock configuration register + */ + +#define SYSTEM_BT_LPCK_DIV_FRAC_REG (DR_REG_SYSTEM_BASE + 0x2c) + +/* SYSTEM_LPCLK_RTC_EN : R/W; bitpos: [28]; default: 0; + * Set 1 to enable RTC low power clock + */ + +#define SYSTEM_LPCLK_RTC_EN (BIT(28)) +#define SYSTEM_LPCLK_RTC_EN_M (SYSTEM_LPCLK_RTC_EN_V << SYSTEM_LPCLK_RTC_EN_S) +#define SYSTEM_LPCLK_RTC_EN_V 0x00000001 +#define SYSTEM_LPCLK_RTC_EN_S 28 + +/* SYSTEM_LPCLK_SEL_XTAL32K : R/W; bitpos: [27]; default: 0; + * Set 1 to select xtal32k clock as low power clock + */ + +#define SYSTEM_LPCLK_SEL_XTAL32K (BIT(27)) +#define SYSTEM_LPCLK_SEL_XTAL32K_M (SYSTEM_LPCLK_SEL_XTAL32K_V << SYSTEM_LPCLK_SEL_XTAL32K_S) +#define SYSTEM_LPCLK_SEL_XTAL32K_V 0x00000001 +#define SYSTEM_LPCLK_SEL_XTAL32K_S 27 + +/* SYSTEM_LPCLK_SEL_XTAL : R/W; bitpos: [26]; default: 0; + * Set 1 to select xtal clock as rtc low power clock + */ + +#define SYSTEM_LPCLK_SEL_XTAL (BIT(26)) +#define SYSTEM_LPCLK_SEL_XTAL_M (SYSTEM_LPCLK_SEL_XTAL_V << SYSTEM_LPCLK_SEL_XTAL_S) +#define SYSTEM_LPCLK_SEL_XTAL_V 0x00000001 +#define SYSTEM_LPCLK_SEL_XTAL_S 26 + +/* SYSTEM_LPCLK_SEL_8M : R/W; bitpos: [25]; default: 1; + * Set 1 to select 8m clock as rtc low power clock + */ + +#define SYSTEM_LPCLK_SEL_8M (BIT(25)) +#define SYSTEM_LPCLK_SEL_8M_M (SYSTEM_LPCLK_SEL_8M_V << SYSTEM_LPCLK_SEL_8M_S) +#define SYSTEM_LPCLK_SEL_8M_V 0x00000001 +#define SYSTEM_LPCLK_SEL_8M_S 25 + +/* SYSTEM_LPCLK_SEL_RTC_SLOW : R/W; bitpos: [24]; default: 0; + * Set 1 to select rtc-slow clock as rtc low power clock + */ + +#define SYSTEM_LPCLK_SEL_RTC_SLOW (BIT(24)) +#define SYSTEM_LPCLK_SEL_RTC_SLOW_M (SYSTEM_LPCLK_SEL_RTC_SLOW_V << SYSTEM_LPCLK_SEL_RTC_SLOW_S) +#define SYSTEM_LPCLK_SEL_RTC_SLOW_V 0x00000001 +#define SYSTEM_LPCLK_SEL_RTC_SLOW_S 24 + +/* SYSTEM_BT_LPCK_DIV_A : R/W; bitpos: [23:12]; default: 1; + * This field is lower power clock frequent division factor a + */ + +#define SYSTEM_BT_LPCK_DIV_A 0x00000fff +#define SYSTEM_BT_LPCK_DIV_A_M (SYSTEM_BT_LPCK_DIV_A_V << SYSTEM_BT_LPCK_DIV_A_S) +#define SYSTEM_BT_LPCK_DIV_A_V 0x00000fff +#define SYSTEM_BT_LPCK_DIV_A_S 12 + +/* SYSTEM_BT_LPCK_DIV_B : R/W; bitpos: [11:0]; default: 1; + * This field is lower power clock frequent division factor b + */ + +#define SYSTEM_BT_LPCK_DIV_B 0x00000fff +#define SYSTEM_BT_LPCK_DIV_B_M (SYSTEM_BT_LPCK_DIV_B_V << SYSTEM_BT_LPCK_DIV_B_S) +#define SYSTEM_BT_LPCK_DIV_B_V 0x00000fff +#define SYSTEM_BT_LPCK_DIV_B_S 0 + +/* SYSTEM_CPU_INTR_FROM_CPU_0_REG register + * interrupt source register 0 + */ + +#define SYSTEM_CPU_INTR_FROM_CPU_0_REG (DR_REG_SYSTEM_BASE + 0x30) + +/* SYSTEM_CPU_INTR_FROM_CPU_0 : R/W; bitpos: [0]; default: 0; + * Set 1 to generate cpu interrupt 0 + */ + +#define SYSTEM_CPU_INTR_FROM_CPU_0 (BIT(0)) +#define SYSTEM_CPU_INTR_FROM_CPU_0_M (SYSTEM_CPU_INTR_FROM_CPU_0_V << SYSTEM_CPU_INTR_FROM_CPU_0_S) +#define SYSTEM_CPU_INTR_FROM_CPU_0_V 0x00000001 +#define SYSTEM_CPU_INTR_FROM_CPU_0_S 0 + +/* SYSTEM_CPU_INTR_FROM_CPU_1_REG register + * interrupt source register 1 + */ + +#define SYSTEM_CPU_INTR_FROM_CPU_1_REG (DR_REG_SYSTEM_BASE + 0x34) + +/* SYSTEM_CPU_INTR_FROM_CPU_1 : R/W; bitpos: [0]; default: 0; + * Set 1 to generate cpu interrupt 1 + */ + +#define SYSTEM_CPU_INTR_FROM_CPU_1 (BIT(0)) +#define SYSTEM_CPU_INTR_FROM_CPU_1_M (SYSTEM_CPU_INTR_FROM_CPU_1_V << SYSTEM_CPU_INTR_FROM_CPU_1_S) +#define SYSTEM_CPU_INTR_FROM_CPU_1_V 0x00000001 +#define SYSTEM_CPU_INTR_FROM_CPU_1_S 0 + +/* SYSTEM_CPU_INTR_FROM_CPU_2_REG register + * interrupt source register 2 + */ + +#define SYSTEM_CPU_INTR_FROM_CPU_2_REG (DR_REG_SYSTEM_BASE + 0x38) + +/* SYSTEM_CPU_INTR_FROM_CPU_2 : R/W; bitpos: [0]; default: 0; + * Set 1 to generate cpu interrupt 2 + */ + +#define SYSTEM_CPU_INTR_FROM_CPU_2 (BIT(0)) +#define SYSTEM_CPU_INTR_FROM_CPU_2_M (SYSTEM_CPU_INTR_FROM_CPU_2_V << SYSTEM_CPU_INTR_FROM_CPU_2_S) +#define SYSTEM_CPU_INTR_FROM_CPU_2_V 0x00000001 +#define SYSTEM_CPU_INTR_FROM_CPU_2_S 0 + +/* SYSTEM_CPU_INTR_FROM_CPU_3_REG register + * interrupt source register 3 + */ + +#define SYSTEM_CPU_INTR_FROM_CPU_3_REG (DR_REG_SYSTEM_BASE + 0x3c) + +/* SYSTEM_CPU_INTR_FROM_CPU_3 : R/W; bitpos: [0]; default: 0; + * Set 1 to generate cpu interrupt 3 + */ + +#define SYSTEM_CPU_INTR_FROM_CPU_3 (BIT(0)) +#define SYSTEM_CPU_INTR_FROM_CPU_3_M (SYSTEM_CPU_INTR_FROM_CPU_3_V << SYSTEM_CPU_INTR_FROM_CPU_3_S) +#define SYSTEM_CPU_INTR_FROM_CPU_3_V 0x00000001 +#define SYSTEM_CPU_INTR_FROM_CPU_3_S 0 + +/* SYSTEM_RSA_PD_CTRL_REG register + * rsa memory power control register + */ + +#define SYSTEM_RSA_PD_CTRL_REG (DR_REG_SYSTEM_BASE + 0x40) + +/* SYSTEM_RSA_MEM_FORCE_PD : R/W; bitpos: [2]; default: 0; + * Set 1 to force power down RSA memory,this bit has the highest priority. + */ + +#define SYSTEM_RSA_MEM_FORCE_PD (BIT(2)) +#define SYSTEM_RSA_MEM_FORCE_PD_M (SYSTEM_RSA_MEM_FORCE_PD_V << SYSTEM_RSA_MEM_FORCE_PD_S) +#define SYSTEM_RSA_MEM_FORCE_PD_V 0x00000001 +#define SYSTEM_RSA_MEM_FORCE_PD_S 2 + +/* SYSTEM_RSA_MEM_FORCE_PU : R/W; bitpos: [1]; default: 0; + * Set 1 to force power up RSA memory, this bit has the second highest + * priority. + */ + +#define SYSTEM_RSA_MEM_FORCE_PU (BIT(1)) +#define SYSTEM_RSA_MEM_FORCE_PU_M (SYSTEM_RSA_MEM_FORCE_PU_V << SYSTEM_RSA_MEM_FORCE_PU_S) +#define SYSTEM_RSA_MEM_FORCE_PU_V 0x00000001 +#define SYSTEM_RSA_MEM_FORCE_PU_S 1 + +/* SYSTEM_RSA_MEM_PD : R/W; bitpos: [0]; default: 1; + * Set 1 to power down RSA memory. This bit has the lowest priority.When + * Digital Signature occupies the RSA, this bit is invalid. + */ + +#define SYSTEM_RSA_MEM_PD (BIT(0)) +#define SYSTEM_RSA_MEM_PD_M (SYSTEM_RSA_MEM_PD_V << SYSTEM_RSA_MEM_PD_S) +#define SYSTEM_RSA_MEM_PD_V 0x00000001 +#define SYSTEM_RSA_MEM_PD_S 0 + +/* SYSTEM_EDMA_CTRL_REG register + * EDMA control register + */ + +#define SYSTEM_EDMA_CTRL_REG (DR_REG_SYSTEM_BASE + 0x44) + +/* SYSTEM_EDMA_RESET : R/W; bitpos: [1]; default: 0; + * Set 1 to let EDMA reset + */ + +#define SYSTEM_EDMA_RESET (BIT(1)) +#define SYSTEM_EDMA_RESET_M (SYSTEM_EDMA_RESET_V << SYSTEM_EDMA_RESET_S) +#define SYSTEM_EDMA_RESET_V 0x00000001 +#define SYSTEM_EDMA_RESET_S 1 + +/* SYSTEM_EDMA_CLK_ON : R/W; bitpos: [0]; default: 1; + * Set 1 to enable EDMA clock. + */ + +#define SYSTEM_EDMA_CLK_ON (BIT(0)) +#define SYSTEM_EDMA_CLK_ON_M (SYSTEM_EDMA_CLK_ON_V << SYSTEM_EDMA_CLK_ON_S) +#define SYSTEM_EDMA_CLK_ON_V 0x00000001 +#define SYSTEM_EDMA_CLK_ON_S 0 + +/* SYSTEM_CACHE_CONTROL_REG register + * Cache control register + */ + +#define SYSTEM_CACHE_CONTROL_REG (DR_REG_SYSTEM_BASE + 0x48) + +/* SYSTEM_DCACHE_RESET : R/W; bitpos: [3]; default: 0; + * Set 1 to let dcache reset + */ + +#define SYSTEM_DCACHE_RESET (BIT(3)) +#define SYSTEM_DCACHE_RESET_M (SYSTEM_DCACHE_RESET_V << SYSTEM_DCACHE_RESET_S) +#define SYSTEM_DCACHE_RESET_V 0x00000001 +#define SYSTEM_DCACHE_RESET_S 3 + +/* SYSTEM_DCACHE_CLK_ON : R/W; bitpos: [2]; default: 1; + * Set 1 to enable dcache clock + */ + +#define SYSTEM_DCACHE_CLK_ON (BIT(2)) +#define SYSTEM_DCACHE_CLK_ON_M (SYSTEM_DCACHE_CLK_ON_V << SYSTEM_DCACHE_CLK_ON_S) +#define SYSTEM_DCACHE_CLK_ON_V 0x00000001 +#define SYSTEM_DCACHE_CLK_ON_S 2 + +/* SYSTEM_ICACHE_RESET : R/W; bitpos: [1]; default: 0; + * Set 1 to let icache reset + */ + +#define SYSTEM_ICACHE_RESET (BIT(1)) +#define SYSTEM_ICACHE_RESET_M (SYSTEM_ICACHE_RESET_V << SYSTEM_ICACHE_RESET_S) +#define SYSTEM_ICACHE_RESET_V 0x00000001 +#define SYSTEM_ICACHE_RESET_S 1 + +/* SYSTEM_ICACHE_CLK_ON : R/W; bitpos: [0]; default: 1; + * Set 1 to enable icache clock + */ + +#define SYSTEM_ICACHE_CLK_ON (BIT(0)) +#define SYSTEM_ICACHE_CLK_ON_M (SYSTEM_ICACHE_CLK_ON_V << SYSTEM_ICACHE_CLK_ON_S) +#define SYSTEM_ICACHE_CLK_ON_V 0x00000001 +#define SYSTEM_ICACHE_CLK_ON_S 0 + +/* SYSTEM_EXTERNAL_DEVICE_ENCRYPT_DECRYPT_CONTROL_REG register + * External memory encrypt and decrypt control register + */ + +#define SYSTEM_EXTERNAL_DEVICE_ENCRYPT_DECRYPT_CONTROL_REG (DR_REG_SYSTEM_BASE + 0x4c) + +/* SYSTEM_ENABLE_DOWNLOAD_MANUAL_ENCRYPT : R/W; bitpos: [3]; default: 0; + * Set 1 to enable download manual encrypt + */ + +#define SYSTEM_ENABLE_DOWNLOAD_MANUAL_ENCRYPT (BIT(3)) +#define SYSTEM_ENABLE_DOWNLOAD_MANUAL_ENCRYPT_M (SYSTEM_ENABLE_DOWNLOAD_MANUAL_ENCRYPT_V << SYSTEM_ENABLE_DOWNLOAD_MANUAL_ENCRYPT_S) +#define SYSTEM_ENABLE_DOWNLOAD_MANUAL_ENCRYPT_V 0x00000001 +#define SYSTEM_ENABLE_DOWNLOAD_MANUAL_ENCRYPT_S 3 + +/* SYSTEM_ENABLE_DOWNLOAD_G0CB_DECRYPT : R/W; bitpos: [2]; default: 0; + * Set 1 to enable download G0CB decrypt + */ + +#define SYSTEM_ENABLE_DOWNLOAD_G0CB_DECRYPT (BIT(2)) +#define SYSTEM_ENABLE_DOWNLOAD_G0CB_DECRYPT_M (SYSTEM_ENABLE_DOWNLOAD_G0CB_DECRYPT_V << SYSTEM_ENABLE_DOWNLOAD_G0CB_DECRYPT_S) +#define SYSTEM_ENABLE_DOWNLOAD_G0CB_DECRYPT_V 0x00000001 +#define SYSTEM_ENABLE_DOWNLOAD_G0CB_DECRYPT_S 2 + +/* SYSTEM_ENABLE_DOWNLOAD_DB_ENCRYPT : R/W; bitpos: [1]; default: 0; + * Set 1 to enable download DB encrypt. + */ + +#define SYSTEM_ENABLE_DOWNLOAD_DB_ENCRYPT (BIT(1)) +#define SYSTEM_ENABLE_DOWNLOAD_DB_ENCRYPT_M (SYSTEM_ENABLE_DOWNLOAD_DB_ENCRYPT_V << SYSTEM_ENABLE_DOWNLOAD_DB_ENCRYPT_S) +#define SYSTEM_ENABLE_DOWNLOAD_DB_ENCRYPT_V 0x00000001 +#define SYSTEM_ENABLE_DOWNLOAD_DB_ENCRYPT_S 1 + +/* SYSTEM_ENABLE_SPI_MANUAL_ENCRYPT : R/W; bitpos: [0]; default: 0; + * Set 1 to enable the SPI manual encrypt. + */ + +#define SYSTEM_ENABLE_SPI_MANUAL_ENCRYPT (BIT(0)) +#define SYSTEM_ENABLE_SPI_MANUAL_ENCRYPT_M (SYSTEM_ENABLE_SPI_MANUAL_ENCRYPT_V << SYSTEM_ENABLE_SPI_MANUAL_ENCRYPT_S) +#define SYSTEM_ENABLE_SPI_MANUAL_ENCRYPT_V 0x00000001 +#define SYSTEM_ENABLE_SPI_MANUAL_ENCRYPT_S 0 + +/* SYSTEM_RTC_FASTMEM_CONFIG_REG register + * RTC fast memory configuration register + */ + +#define SYSTEM_RTC_FASTMEM_CONFIG_REG (DR_REG_SYSTEM_BASE + 0x50) + +/* SYSTEM_RTC_MEM_CRC_FINISH : RO; bitpos: [31]; default: 0; + * This bit stores the status of RTC memory CRC.1 means finished. + */ + +#define SYSTEM_RTC_MEM_CRC_FINISH (BIT(31)) +#define SYSTEM_RTC_MEM_CRC_FINISH_M (SYSTEM_RTC_MEM_CRC_FINISH_V << SYSTEM_RTC_MEM_CRC_FINISH_S) +#define SYSTEM_RTC_MEM_CRC_FINISH_V 0x00000001 +#define SYSTEM_RTC_MEM_CRC_FINISH_S 31 + +/* SYSTEM_RTC_MEM_CRC_LEN : R/W; bitpos: [30:20]; default: 2047; + * This field is used to set length of RTC memory for CRC based on start + * address. + */ + +#define SYSTEM_RTC_MEM_CRC_LEN 0x000007ff +#define SYSTEM_RTC_MEM_CRC_LEN_M (SYSTEM_RTC_MEM_CRC_LEN_V << SYSTEM_RTC_MEM_CRC_LEN_S) +#define SYSTEM_RTC_MEM_CRC_LEN_V 0x000007ff +#define SYSTEM_RTC_MEM_CRC_LEN_S 20 + +/* SYSTEM_RTC_MEM_CRC_ADDR : R/W; bitpos: [19:9]; default: 0; + * This field is used to set address of RTC memory for CRC. + */ + +#define SYSTEM_RTC_MEM_CRC_ADDR 0x000007ff +#define SYSTEM_RTC_MEM_CRC_ADDR_M (SYSTEM_RTC_MEM_CRC_ADDR_V << SYSTEM_RTC_MEM_CRC_ADDR_S) +#define SYSTEM_RTC_MEM_CRC_ADDR_V 0x000007ff +#define SYSTEM_RTC_MEM_CRC_ADDR_S 9 + +/* SYSTEM_RTC_MEM_CRC_START : R/W; bitpos: [8]; default: 0; + * Set 1 to start the CRC of RTC memory + */ + +#define SYSTEM_RTC_MEM_CRC_START (BIT(8)) +#define SYSTEM_RTC_MEM_CRC_START_M (SYSTEM_RTC_MEM_CRC_START_V << SYSTEM_RTC_MEM_CRC_START_S) +#define SYSTEM_RTC_MEM_CRC_START_V 0x00000001 +#define SYSTEM_RTC_MEM_CRC_START_S 8 + +/* SYSTEM_RTC_FASTMEM_CRC_REG register + * RTC fast memory CRC control register + */ + +#define SYSTEM_RTC_FASTMEM_CRC_REG (DR_REG_SYSTEM_BASE + 0x54) + +/* SYSTEM_RTC_MEM_CRC_RES : RO; bitpos: [31:0]; default: 0; + * This field stores the CRC result of RTC memory. + */ + +#define SYSTEM_RTC_MEM_CRC_RES 0xffffffff +#define SYSTEM_RTC_MEM_CRC_RES_M (SYSTEM_RTC_MEM_CRC_RES_V << SYSTEM_RTC_MEM_CRC_RES_S) +#define SYSTEM_RTC_MEM_CRC_RES_V 0xffffffff +#define SYSTEM_RTC_MEM_CRC_RES_S 0 + +/* SYSTEM_REDUNDANT_ECO_CTRL_REG register + * ******* Description *********** + */ + +#define SYSTEM_REDUNDANT_ECO_CTRL_REG (DR_REG_SYSTEM_BASE + 0x58) + +/* SYSTEM_REDUNDANT_ECO_RESULT : RO; bitpos: [1]; default: 0; + * ******* Description *********** + */ + +#define SYSTEM_REDUNDANT_ECO_RESULT (BIT(1)) +#define SYSTEM_REDUNDANT_ECO_RESULT_M (SYSTEM_REDUNDANT_ECO_RESULT_V << SYSTEM_REDUNDANT_ECO_RESULT_S) +#define SYSTEM_REDUNDANT_ECO_RESULT_V 0x00000001 +#define SYSTEM_REDUNDANT_ECO_RESULT_S 1 + +/* SYSTEM_REDUNDANT_ECO_DRIVE : R/W; bitpos: [0]; default: 0; + * ******* Description *********** + */ + +#define SYSTEM_REDUNDANT_ECO_DRIVE (BIT(0)) +#define SYSTEM_REDUNDANT_ECO_DRIVE_M (SYSTEM_REDUNDANT_ECO_DRIVE_V << SYSTEM_REDUNDANT_ECO_DRIVE_S) +#define SYSTEM_REDUNDANT_ECO_DRIVE_V 0x00000001 +#define SYSTEM_REDUNDANT_ECO_DRIVE_S 0 + +/* SYSTEM_CLOCK_GATE_REG register + * ******* Description *********** + */ + +#define SYSTEM_CLOCK_GATE_REG (DR_REG_SYSTEM_BASE + 0x5c) + +/* SYSTEM_CLK_EN : R/W; bitpos: [0]; default: 1; + * ******* Description *********** + */ + +#define SYSTEM_CLK_EN (BIT(0)) +#define SYSTEM_CLK_EN_M (SYSTEM_CLK_EN_V << SYSTEM_CLK_EN_S) +#define SYSTEM_CLK_EN_V 0x00000001 +#define SYSTEM_CLK_EN_S 0 + +/* SYSTEM_SYSCLK_CONF_REG register + * System clock configuration register. + */ + +#define SYSTEM_SYSCLK_CONF_REG (DR_REG_SYSTEM_BASE + 0x60) + +/* SYSTEM_CLK_DIV_EN : RO; bitpos: [19]; default: 0; + * Reserved. + */ + +#define SYSTEM_CLK_DIV_EN (BIT(19)) +#define SYSTEM_CLK_DIV_EN_M (SYSTEM_CLK_DIV_EN_V << SYSTEM_CLK_DIV_EN_S) +#define SYSTEM_CLK_DIV_EN_V 0x00000001 +#define SYSTEM_CLK_DIV_EN_S 19 + +/* SYSTEM_CLK_XTAL_FREQ : RO; bitpos: [18:12]; default: 0; + * This field is used to read xtal frequency in MHz. + */ + +#define SYSTEM_CLK_XTAL_FREQ 0x0000007f +#define SYSTEM_CLK_XTAL_FREQ_M (SYSTEM_CLK_XTAL_FREQ_V << SYSTEM_CLK_XTAL_FREQ_S) +#define SYSTEM_CLK_XTAL_FREQ_V 0x0000007f +#define SYSTEM_CLK_XTAL_FREQ_S 12 + +/* SYSTEM_SOC_CLK_SEL : R/W; bitpos: [11:10]; default: 0; + * This field is used to select soc clock. + */ + +#define SYSTEM_SOC_CLK_SEL 0x00000003 +#define SYSTEM_SOC_CLK_SEL_M (SYSTEM_SOC_CLK_SEL_V << SYSTEM_SOC_CLK_SEL_S) +#define SYSTEM_SOC_CLK_SEL_V 0x00000003 +#define SYSTEM_SOC_CLK_SEL_S 10 + +/* SYSTEM_PRE_DIV_CNT : R/W; bitpos: [9:0]; default: 1; + * This field is used to set the count of prescaler of XTAL_CLK. + */ + +#define SYSTEM_PRE_DIV_CNT 0x000003ff +#define SYSTEM_PRE_DIV_CNT_M (SYSTEM_PRE_DIV_CNT_V << SYSTEM_PRE_DIV_CNT_S) +#define SYSTEM_PRE_DIV_CNT_V 0x000003ff +#define SYSTEM_PRE_DIV_CNT_S 0 + +/* SYSTEM_MEM_PVT_REG register + * ******* Description *********** + */ + +#define SYSTEM_MEM_PVT_REG (DR_REG_SYSTEM_BASE + 0x64) + +/* SYSTEM_MEM_VT_SEL : R/W; bitpos: [23:22]; default: 0; + * ******* Description *********** + */ + +#define SYSTEM_MEM_VT_SEL 0x00000003 +#define SYSTEM_MEM_VT_SEL_M (SYSTEM_MEM_VT_SEL_V << SYSTEM_MEM_VT_SEL_S) +#define SYSTEM_MEM_VT_SEL_V 0x00000003 +#define SYSTEM_MEM_VT_SEL_S 22 + +/* SYSTEM_MEM_TIMING_ERR_CNT : RO; bitpos: [21:6]; default: 0; + * ******* Description *********** + */ + +#define SYSTEM_MEM_TIMING_ERR_CNT 0x0000ffff +#define SYSTEM_MEM_TIMING_ERR_CNT_M (SYSTEM_MEM_TIMING_ERR_CNT_V << SYSTEM_MEM_TIMING_ERR_CNT_S) +#define SYSTEM_MEM_TIMING_ERR_CNT_V 0x0000ffff +#define SYSTEM_MEM_TIMING_ERR_CNT_S 6 + +/* SYSTEM_MEM_PVT_MONITOR_EN : R/W; bitpos: [5]; default: 0; + * ******* Description *********** + */ + +#define SYSTEM_MEM_PVT_MONITOR_EN (BIT(5)) +#define SYSTEM_MEM_PVT_MONITOR_EN_M (SYSTEM_MEM_PVT_MONITOR_EN_V << SYSTEM_MEM_PVT_MONITOR_EN_S) +#define SYSTEM_MEM_PVT_MONITOR_EN_V 0x00000001 +#define SYSTEM_MEM_PVT_MONITOR_EN_S 5 + +/* SYSTEM_MEM_ERR_CNT_CLR : WO; bitpos: [4]; default: 0; + * ******* Description *********** + */ + +#define SYSTEM_MEM_ERR_CNT_CLR (BIT(4)) +#define SYSTEM_MEM_ERR_CNT_CLR_M (SYSTEM_MEM_ERR_CNT_CLR_V << SYSTEM_MEM_ERR_CNT_CLR_S) +#define SYSTEM_MEM_ERR_CNT_CLR_V 0x00000001 +#define SYSTEM_MEM_ERR_CNT_CLR_S 4 + +/* SYSTEM_MEM_PATH_LEN : R/W; bitpos: [3:0]; default: 3; + * ******* Description *********** + */ + +#define SYSTEM_MEM_PATH_LEN 0x0000000f +#define SYSTEM_MEM_PATH_LEN_M (SYSTEM_MEM_PATH_LEN_V << SYSTEM_MEM_PATH_LEN_S) +#define SYSTEM_MEM_PATH_LEN_V 0x0000000f +#define SYSTEM_MEM_PATH_LEN_S 0 + +/* SYSTEM_COMB_PVT_LVT_CONF_REG register + * ******* Description *********** + */ + +#define SYSTEM_COMB_PVT_LVT_CONF_REG (DR_REG_SYSTEM_BASE + 0x68) + +/* SYSTEM_COMB_PVT_MONITOR_EN_LVT : R/W; bitpos: [6]; default: 0; + * ******* Description *********** + */ + +#define SYSTEM_COMB_PVT_MONITOR_EN_LVT (BIT(6)) +#define SYSTEM_COMB_PVT_MONITOR_EN_LVT_M (SYSTEM_COMB_PVT_MONITOR_EN_LVT_V << SYSTEM_COMB_PVT_MONITOR_EN_LVT_S) +#define SYSTEM_COMB_PVT_MONITOR_EN_LVT_V 0x00000001 +#define SYSTEM_COMB_PVT_MONITOR_EN_LVT_S 6 + +/* SYSTEM_COMB_ERR_CNT_CLR_LVT : WO; bitpos: [5]; default: 0; + * ******* Description *********** + */ + +#define SYSTEM_COMB_ERR_CNT_CLR_LVT (BIT(5)) +#define SYSTEM_COMB_ERR_CNT_CLR_LVT_M (SYSTEM_COMB_ERR_CNT_CLR_LVT_V << SYSTEM_COMB_ERR_CNT_CLR_LVT_S) +#define SYSTEM_COMB_ERR_CNT_CLR_LVT_V 0x00000001 +#define SYSTEM_COMB_ERR_CNT_CLR_LVT_S 5 + +/* SYSTEM_COMB_PATH_LEN_LVT : R/W; bitpos: [4:0]; default: 3; + * ******* Description *********** + */ + +#define SYSTEM_COMB_PATH_LEN_LVT 0x0000001f +#define SYSTEM_COMB_PATH_LEN_LVT_M (SYSTEM_COMB_PATH_LEN_LVT_V << SYSTEM_COMB_PATH_LEN_LVT_S) +#define SYSTEM_COMB_PATH_LEN_LVT_V 0x0000001f +#define SYSTEM_COMB_PATH_LEN_LVT_S 0 + +/* SYSTEM_COMB_PVT_NVT_CONF_REG register + * ******* Description *********** + */ + +#define SYSTEM_COMB_PVT_NVT_CONF_REG (DR_REG_SYSTEM_BASE + 0x6c) + +/* SYSTEM_COMB_PVT_MONITOR_EN_NVT : R/W; bitpos: [6]; default: 0; + * ******* Description *********** + */ + +#define SYSTEM_COMB_PVT_MONITOR_EN_NVT (BIT(6)) +#define SYSTEM_COMB_PVT_MONITOR_EN_NVT_M (SYSTEM_COMB_PVT_MONITOR_EN_NVT_V << SYSTEM_COMB_PVT_MONITOR_EN_NVT_S) +#define SYSTEM_COMB_PVT_MONITOR_EN_NVT_V 0x00000001 +#define SYSTEM_COMB_PVT_MONITOR_EN_NVT_S 6 + +/* SYSTEM_COMB_ERR_CNT_CLR_NVT : WO; bitpos: [5]; default: 0; + * ******* Description *********** + */ + +#define SYSTEM_COMB_ERR_CNT_CLR_NVT (BIT(5)) +#define SYSTEM_COMB_ERR_CNT_CLR_NVT_M (SYSTEM_COMB_ERR_CNT_CLR_NVT_V << SYSTEM_COMB_ERR_CNT_CLR_NVT_S) +#define SYSTEM_COMB_ERR_CNT_CLR_NVT_V 0x00000001 +#define SYSTEM_COMB_ERR_CNT_CLR_NVT_S 5 + +/* SYSTEM_COMB_PATH_LEN_NVT : R/W; bitpos: [4:0]; default: 3; + * ******* Description *********** + */ + +#define SYSTEM_COMB_PATH_LEN_NVT 0x0000001f +#define SYSTEM_COMB_PATH_LEN_NVT_M (SYSTEM_COMB_PATH_LEN_NVT_V << SYSTEM_COMB_PATH_LEN_NVT_S) +#define SYSTEM_COMB_PATH_LEN_NVT_V 0x0000001f +#define SYSTEM_COMB_PATH_LEN_NVT_S 0 + +/* SYSTEM_COMB_PVT_HVT_CONF_REG register + * ******* Description *********** + */ + +#define SYSTEM_COMB_PVT_HVT_CONF_REG (DR_REG_SYSTEM_BASE + 0x70) + +/* SYSTEM_COMB_PVT_MONITOR_EN_HVT : R/W; bitpos: [6]; default: 0; + * ******* Description *********** + */ + +#define SYSTEM_COMB_PVT_MONITOR_EN_HVT (BIT(6)) +#define SYSTEM_COMB_PVT_MONITOR_EN_HVT_M (SYSTEM_COMB_PVT_MONITOR_EN_HVT_V << SYSTEM_COMB_PVT_MONITOR_EN_HVT_S) +#define SYSTEM_COMB_PVT_MONITOR_EN_HVT_V 0x00000001 +#define SYSTEM_COMB_PVT_MONITOR_EN_HVT_S 6 + +/* SYSTEM_COMB_ERR_CNT_CLR_HVT : WO; bitpos: [5]; default: 0; + * ******* Description *********** + */ + +#define SYSTEM_COMB_ERR_CNT_CLR_HVT (BIT(5)) +#define SYSTEM_COMB_ERR_CNT_CLR_HVT_M (SYSTEM_COMB_ERR_CNT_CLR_HVT_V << SYSTEM_COMB_ERR_CNT_CLR_HVT_S) +#define SYSTEM_COMB_ERR_CNT_CLR_HVT_V 0x00000001 +#define SYSTEM_COMB_ERR_CNT_CLR_HVT_S 5 + +/* SYSTEM_COMB_PATH_LEN_HVT : R/W; bitpos: [4:0]; default: 3; + * ******* Description *********** + */ + +#define SYSTEM_COMB_PATH_LEN_HVT 0x0000001f +#define SYSTEM_COMB_PATH_LEN_HVT_M (SYSTEM_COMB_PATH_LEN_HVT_V << SYSTEM_COMB_PATH_LEN_HVT_S) +#define SYSTEM_COMB_PATH_LEN_HVT_V 0x0000001f +#define SYSTEM_COMB_PATH_LEN_HVT_S 0 + +/* SYSTEM_COMB_PVT_ERR_LVT_SITE0_REG register + * ******* Description *********** + */ + +#define SYSTEM_COMB_PVT_ERR_LVT_SITE0_REG (DR_REG_SYSTEM_BASE + 0x74) + +/* SYSTEM_COMB_TIMING_ERR_CNT_LVT_SITE0 : RO; bitpos: [15:0]; default: 0; + * ******* Description *********** + */ + +#define SYSTEM_COMB_TIMING_ERR_CNT_LVT_SITE0 0x0000ffff +#define SYSTEM_COMB_TIMING_ERR_CNT_LVT_SITE0_M (SYSTEM_COMB_TIMING_ERR_CNT_LVT_SITE0_V << SYSTEM_COMB_TIMING_ERR_CNT_LVT_SITE0_S) +#define SYSTEM_COMB_TIMING_ERR_CNT_LVT_SITE0_V 0x0000ffff +#define SYSTEM_COMB_TIMING_ERR_CNT_LVT_SITE0_S 0 + +/* SYSTEM_COMB_PVT_ERR_NVT_SITE0_REG register + * ******* Description *********** + */ + +#define SYSTEM_COMB_PVT_ERR_NVT_SITE0_REG (DR_REG_SYSTEM_BASE + 0x78) + +/* SYSTEM_COMB_TIMING_ERR_CNT_NVT_SITE0 : RO; bitpos: [15:0]; default: 0; + * ******* Description *********** + */ + +#define SYSTEM_COMB_TIMING_ERR_CNT_NVT_SITE0 0x0000ffff +#define SYSTEM_COMB_TIMING_ERR_CNT_NVT_SITE0_M (SYSTEM_COMB_TIMING_ERR_CNT_NVT_SITE0_V << SYSTEM_COMB_TIMING_ERR_CNT_NVT_SITE0_S) +#define SYSTEM_COMB_TIMING_ERR_CNT_NVT_SITE0_V 0x0000ffff +#define SYSTEM_COMB_TIMING_ERR_CNT_NVT_SITE0_S 0 + +/* SYSTEM_COMB_PVT_ERR_HVT_SITE0_REG register + * ******* Description *********** + */ + +#define SYSTEM_COMB_PVT_ERR_HVT_SITE0_REG (DR_REG_SYSTEM_BASE + 0x7c) + +/* SYSTEM_COMB_TIMING_ERR_CNT_HVT_SITE0 : RO; bitpos: [15:0]; default: 0; + * ******* Description *********** + */ + +#define SYSTEM_COMB_TIMING_ERR_CNT_HVT_SITE0 0x0000ffff +#define SYSTEM_COMB_TIMING_ERR_CNT_HVT_SITE0_M (SYSTEM_COMB_TIMING_ERR_CNT_HVT_SITE0_V << SYSTEM_COMB_TIMING_ERR_CNT_HVT_SITE0_S) +#define SYSTEM_COMB_TIMING_ERR_CNT_HVT_SITE0_V 0x0000ffff +#define SYSTEM_COMB_TIMING_ERR_CNT_HVT_SITE0_S 0 + +/* SYSTEM_COMB_PVT_ERR_LVT_SITE1_REG register + * ******* Description *********** + */ + +#define SYSTEM_COMB_PVT_ERR_LVT_SITE1_REG (DR_REG_SYSTEM_BASE + 0x80) + +/* SYSTEM_COMB_TIMING_ERR_CNT_LVT_SITE1 : RO; bitpos: [15:0]; default: 0; + * ******* Description *********** + */ + +#define SYSTEM_COMB_TIMING_ERR_CNT_LVT_SITE1 0x0000ffff +#define SYSTEM_COMB_TIMING_ERR_CNT_LVT_SITE1_M (SYSTEM_COMB_TIMING_ERR_CNT_LVT_SITE1_V << SYSTEM_COMB_TIMING_ERR_CNT_LVT_SITE1_S) +#define SYSTEM_COMB_TIMING_ERR_CNT_LVT_SITE1_V 0x0000ffff +#define SYSTEM_COMB_TIMING_ERR_CNT_LVT_SITE1_S 0 + +/* SYSTEM_COMB_PVT_ERR_NVT_SITE1_REG register + * ******* Description *********** + */ + +#define SYSTEM_COMB_PVT_ERR_NVT_SITE1_REG (DR_REG_SYSTEM_BASE + 0x84) + +/* SYSTEM_COMB_TIMING_ERR_CNT_NVT_SITE1 : RO; bitpos: [15:0]; default: 0; + * ******* Description *********** + */ + +#define SYSTEM_COMB_TIMING_ERR_CNT_NVT_SITE1 0x0000ffff +#define SYSTEM_COMB_TIMING_ERR_CNT_NVT_SITE1_M (SYSTEM_COMB_TIMING_ERR_CNT_NVT_SITE1_V << SYSTEM_COMB_TIMING_ERR_CNT_NVT_SITE1_S) +#define SYSTEM_COMB_TIMING_ERR_CNT_NVT_SITE1_V 0x0000ffff +#define SYSTEM_COMB_TIMING_ERR_CNT_NVT_SITE1_S 0 + +/* SYSTEM_COMB_PVT_ERR_HVT_SITE1_REG register + * ******* Description *********** + */ + +#define SYSTEM_COMB_PVT_ERR_HVT_SITE1_REG (DR_REG_SYSTEM_BASE + 0x88) + +/* SYSTEM_COMB_TIMING_ERR_CNT_HVT_SITE1 : RO; bitpos: [15:0]; default: 0; + * ******* Description *********** + */ + +#define SYSTEM_COMB_TIMING_ERR_CNT_HVT_SITE1 0x0000ffff +#define SYSTEM_COMB_TIMING_ERR_CNT_HVT_SITE1_M (SYSTEM_COMB_TIMING_ERR_CNT_HVT_SITE1_V << SYSTEM_COMB_TIMING_ERR_CNT_HVT_SITE1_S) +#define SYSTEM_COMB_TIMING_ERR_CNT_HVT_SITE1_V 0x0000ffff +#define SYSTEM_COMB_TIMING_ERR_CNT_HVT_SITE1_S 0 + +/* SYSTEM_COMB_PVT_ERR_LVT_SITE2_REG register + * ******* Description *********** + */ + +#define SYSTEM_COMB_PVT_ERR_LVT_SITE2_REG (DR_REG_SYSTEM_BASE + 0x8c) + +/* SYSTEM_COMB_TIMING_ERR_CNT_LVT_SITE2 : RO; bitpos: [15:0]; default: 0; + * ******* Description *********** + */ + +#define SYSTEM_COMB_TIMING_ERR_CNT_LVT_SITE2 0x0000ffff +#define SYSTEM_COMB_TIMING_ERR_CNT_LVT_SITE2_M (SYSTEM_COMB_TIMING_ERR_CNT_LVT_SITE2_V << SYSTEM_COMB_TIMING_ERR_CNT_LVT_SITE2_S) +#define SYSTEM_COMB_TIMING_ERR_CNT_LVT_SITE2_V 0x0000ffff +#define SYSTEM_COMB_TIMING_ERR_CNT_LVT_SITE2_S 0 + +/* SYSTEM_COMB_PVT_ERR_NVT_SITE2_REG register + * ******* Description *********** + */ + +#define SYSTEM_COMB_PVT_ERR_NVT_SITE2_REG (DR_REG_SYSTEM_BASE + 0x90) + +/* SYSTEM_COMB_TIMING_ERR_CNT_NVT_SITE2 : RO; bitpos: [15:0]; default: 0; + * ******* Description *********** + */ + +#define SYSTEM_COMB_TIMING_ERR_CNT_NVT_SITE2 0x0000ffff +#define SYSTEM_COMB_TIMING_ERR_CNT_NVT_SITE2_M (SYSTEM_COMB_TIMING_ERR_CNT_NVT_SITE2_V << SYSTEM_COMB_TIMING_ERR_CNT_NVT_SITE2_S) +#define SYSTEM_COMB_TIMING_ERR_CNT_NVT_SITE2_V 0x0000ffff +#define SYSTEM_COMB_TIMING_ERR_CNT_NVT_SITE2_S 0 + +/* SYSTEM_COMB_PVT_ERR_HVT_SITE2_REG register + * ******* Description *********** + */ + +#define SYSTEM_COMB_PVT_ERR_HVT_SITE2_REG (DR_REG_SYSTEM_BASE + 0x94) + +/* SYSTEM_COMB_TIMING_ERR_CNT_HVT_SITE2 : RO; bitpos: [15:0]; default: 0; + * ******* Description *********** + */ + +#define SYSTEM_COMB_TIMING_ERR_CNT_HVT_SITE2 0x0000ffff +#define SYSTEM_COMB_TIMING_ERR_CNT_HVT_SITE2_M (SYSTEM_COMB_TIMING_ERR_CNT_HVT_SITE2_V << SYSTEM_COMB_TIMING_ERR_CNT_HVT_SITE2_S) +#define SYSTEM_COMB_TIMING_ERR_CNT_HVT_SITE2_V 0x0000ffff +#define SYSTEM_COMB_TIMING_ERR_CNT_HVT_SITE2_S 0 + +/* SYSTEM_COMB_PVT_ERR_LVT_SITE3_REG register + * ******* Description *********** + */ + +#define SYSTEM_COMB_PVT_ERR_LVT_SITE3_REG (DR_REG_SYSTEM_BASE + 0x98) + +/* SYSTEM_COMB_TIMING_ERR_CNT_LVT_SITE3 : RO; bitpos: [15:0]; default: 0; + * ******* Description *********** + */ + +#define SYSTEM_COMB_TIMING_ERR_CNT_LVT_SITE3 0x0000ffff +#define SYSTEM_COMB_TIMING_ERR_CNT_LVT_SITE3_M (SYSTEM_COMB_TIMING_ERR_CNT_LVT_SITE3_V << SYSTEM_COMB_TIMING_ERR_CNT_LVT_SITE3_S) +#define SYSTEM_COMB_TIMING_ERR_CNT_LVT_SITE3_V 0x0000ffff +#define SYSTEM_COMB_TIMING_ERR_CNT_LVT_SITE3_S 0 + +/* SYSTEM_COMB_PVT_ERR_NVT_SITE3_REG register + * ******* Description *********** + */ + +#define SYSTEM_COMB_PVT_ERR_NVT_SITE3_REG (DR_REG_SYSTEM_BASE + 0x9c) + +/* SYSTEM_COMB_TIMING_ERR_CNT_NVT_SITE3 : RO; bitpos: [15:0]; default: 0; + * ******* Description *********** + */ + +#define SYSTEM_COMB_TIMING_ERR_CNT_NVT_SITE3 0x0000ffff +#define SYSTEM_COMB_TIMING_ERR_CNT_NVT_SITE3_M (SYSTEM_COMB_TIMING_ERR_CNT_NVT_SITE3_V << SYSTEM_COMB_TIMING_ERR_CNT_NVT_SITE3_S) +#define SYSTEM_COMB_TIMING_ERR_CNT_NVT_SITE3_V 0x0000ffff +#define SYSTEM_COMB_TIMING_ERR_CNT_NVT_SITE3_S 0 + +/* SYSTEM_COMB_PVT_ERR_HVT_SITE3_REG register + * ******* Description *********** + */ + +#define SYSTEM_COMB_PVT_ERR_HVT_SITE3_REG (DR_REG_SYSTEM_BASE + 0xa0) + +/* SYSTEM_COMB_TIMING_ERR_CNT_HVT_SITE3 : RO; bitpos: [15:0]; default: 0; + * ******* Description *********** + */ + +#define SYSTEM_COMB_TIMING_ERR_CNT_HVT_SITE3 0x0000ffff +#define SYSTEM_COMB_TIMING_ERR_CNT_HVT_SITE3_M (SYSTEM_COMB_TIMING_ERR_CNT_HVT_SITE3_V << SYSTEM_COMB_TIMING_ERR_CNT_HVT_SITE3_S) +#define SYSTEM_COMB_TIMING_ERR_CNT_HVT_SITE3_V 0x0000ffff +#define SYSTEM_COMB_TIMING_ERR_CNT_HVT_SITE3_S 0 + +/* SYSTEM_DATE_REG register + * version register + */ + +#define SYSTEM_DATE_REG (DR_REG_SYSTEM_BASE + 0xffc) + +/* SYSTEM_DATE : R/W; bitpos: [27:0]; default: 34607648; + * version register + */ + +#define SYSTEM_DATE 0x0fffffff +#define SYSTEM_DATE_M (SYSTEM_DATE_V << SYSTEM_DATE_S) +#define SYSTEM_DATE_V 0x0fffffff +#define SYSTEM_DATE_S 0 + +#endif /* __ARCH_XTENSA_SRC_ESP32S3_HARDWARE_ESP32S3_SYSTEM_H */ diff --git a/arch/xtensa/src/esp32s3/hardware/esp32s3_systimer.h b/arch/xtensa/src/esp32s3/hardware/esp32s3_systimer.h new file mode 100644 index 0000000000..7ef3c57a79 --- /dev/null +++ b/arch/xtensa/src/esp32s3/hardware/esp32s3_systimer.h @@ -0,0 +1,808 @@ +/**************************************************************************** + * arch/xtensa/src/esp32s3/hardware/esp32s3_systimer.h + * + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. The + * ASF licenses this file to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance with the + * License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT + * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the + * License for the specific language governing permissions and limitations + * under the License. + * + ****************************************************************************/ + +#ifndef __ARCH_XTENSA_SRC_ESP32S3_HARDWARE_ESP32S3_SYSTIMER_H +#define __ARCH_XTENSA_SRC_ESP32S3_HARDWARE_ESP32S3_SYSTIMER_H + +/**************************************************************************** + * Included Files + ****************************************************************************/ + +#include "esp32s3_soc.h" + +/**************************************************************************** + * Pre-processor Definitions + ****************************************************************************/ + +/* SYSTIMER_CONF_REG register + * Configure system timer clock + */ + +#define SYSTIMER_CONF_REG (DR_REG_SYSTIMER_BASE + 0x0) + +/* SYSTIMER_CLK_EN : R/W; bitpos: [31]; default: 0; + * register file clk gating + */ + +#define SYSTIMER_CLK_EN (BIT(31)) +#define SYSTIMER_CLK_EN_M (SYSTIMER_CLK_EN_V << SYSTIMER_CLK_EN_S) +#define SYSTIMER_CLK_EN_V 0x00000001 +#define SYSTIMER_CLK_EN_S 31 + +/* SYSTIMER_TIMER_UNIT0_WORK_EN : R/W; bitpos: [30]; default: 1; + * timer unit0 work enable + */ + +#define SYSTIMER_TIMER_UNIT0_WORK_EN (BIT(30)) +#define SYSTIMER_TIMER_UNIT0_WORK_EN_M (SYSTIMER_TIMER_UNIT0_WORK_EN_V << SYSTIMER_TIMER_UNIT0_WORK_EN_S) +#define SYSTIMER_TIMER_UNIT0_WORK_EN_V 0x00000001 +#define SYSTIMER_TIMER_UNIT0_WORK_EN_S 30 + +/* SYSTIMER_TIMER_UNIT1_WORK_EN : R/W; bitpos: [29]; default: 0; + * timer unit1 work enable + */ + +#define SYSTIMER_TIMER_UNIT1_WORK_EN (BIT(29)) +#define SYSTIMER_TIMER_UNIT1_WORK_EN_M (SYSTIMER_TIMER_UNIT1_WORK_EN_V << SYSTIMER_TIMER_UNIT1_WORK_EN_S) +#define SYSTIMER_TIMER_UNIT1_WORK_EN_V 0x00000001 +#define SYSTIMER_TIMER_UNIT1_WORK_EN_S 29 + +/* SYSTIMER_TIMER_UNIT0_CORE0_STALL_EN : R/W; bitpos: [28]; default: 0; + * If timer unit0 is stalled when core0 stalled + */ + +#define SYSTIMER_TIMER_UNIT0_CORE0_STALL_EN (BIT(28)) +#define SYSTIMER_TIMER_UNIT0_CORE0_STALL_EN_M (SYSTIMER_TIMER_UNIT0_CORE0_STALL_EN_V << SYSTIMER_TIMER_UNIT0_CORE0_STALL_EN_S) +#define SYSTIMER_TIMER_UNIT0_CORE0_STALL_EN_V 0x00000001 +#define SYSTIMER_TIMER_UNIT0_CORE0_STALL_EN_S 28 + +/* SYSTIMER_TIMER_UNIT0_CORE1_STALL_EN : R/W; bitpos: [27]; default: 0; + * If timer unit0 is stalled when core1 stalled + */ + +#define SYSTIMER_TIMER_UNIT0_CORE1_STALL_EN (BIT(27)) +#define SYSTIMER_TIMER_UNIT0_CORE1_STALL_EN_M (SYSTIMER_TIMER_UNIT0_CORE1_STALL_EN_V << SYSTIMER_TIMER_UNIT0_CORE1_STALL_EN_S) +#define SYSTIMER_TIMER_UNIT0_CORE1_STALL_EN_V 0x00000001 +#define SYSTIMER_TIMER_UNIT0_CORE1_STALL_EN_S 27 + +/* SYSTIMER_TIMER_UNIT1_CORE0_STALL_EN : R/W; bitpos: [26]; default: 1; + * If timer unit1 is stalled when core0 stalled + */ + +#define SYSTIMER_TIMER_UNIT1_CORE0_STALL_EN (BIT(26)) +#define SYSTIMER_TIMER_UNIT1_CORE0_STALL_EN_M (SYSTIMER_TIMER_UNIT1_CORE0_STALL_EN_V << SYSTIMER_TIMER_UNIT1_CORE0_STALL_EN_S) +#define SYSTIMER_TIMER_UNIT1_CORE0_STALL_EN_V 0x00000001 +#define SYSTIMER_TIMER_UNIT1_CORE0_STALL_EN_S 26 + +/* SYSTIMER_TIMER_UNIT1_CORE1_STALL_EN : R/W; bitpos: [25]; default: 1; + * If timer unit1 is stalled when core1 stalled + */ + +#define SYSTIMER_TIMER_UNIT1_CORE1_STALL_EN (BIT(25)) +#define SYSTIMER_TIMER_UNIT1_CORE1_STALL_EN_M (SYSTIMER_TIMER_UNIT1_CORE1_STALL_EN_V << SYSTIMER_TIMER_UNIT1_CORE1_STALL_EN_S) +#define SYSTIMER_TIMER_UNIT1_CORE1_STALL_EN_V 0x00000001 +#define SYSTIMER_TIMER_UNIT1_CORE1_STALL_EN_S 25 + +/* SYSTIMER_TARGET0_WORK_EN : R/W; bitpos: [24]; default: 0; + * target0 work enable + */ + +#define SYSTIMER_TARGET0_WORK_EN (BIT(24)) +#define SYSTIMER_TARGET0_WORK_EN_M (SYSTIMER_TARGET0_WORK_EN_V << SYSTIMER_TARGET0_WORK_EN_S) +#define SYSTIMER_TARGET0_WORK_EN_V 0x00000001 +#define SYSTIMER_TARGET0_WORK_EN_S 24 + +/* SYSTIMER_TARGET1_WORK_EN : R/W; bitpos: [23]; default: 0; + * target1 work enable + */ + +#define SYSTIMER_TARGET1_WORK_EN (BIT(23)) +#define SYSTIMER_TARGET1_WORK_EN_M (SYSTIMER_TARGET1_WORK_EN_V << SYSTIMER_TARGET1_WORK_EN_S) +#define SYSTIMER_TARGET1_WORK_EN_V 0x00000001 +#define SYSTIMER_TARGET1_WORK_EN_S 23 + +/* SYSTIMER_TARGET2_WORK_EN : R/W; bitpos: [22]; default: 0; + * target2 work enable + */ + +#define SYSTIMER_TARGET2_WORK_EN (BIT(22)) +#define SYSTIMER_TARGET2_WORK_EN_M (SYSTIMER_TARGET2_WORK_EN_V << SYSTIMER_TARGET2_WORK_EN_S) +#define SYSTIMER_TARGET2_WORK_EN_V 0x00000001 +#define SYSTIMER_TARGET2_WORK_EN_S 22 + +/* SYSTIMER_SYSTIMER_CLK_FO : R/W; bitpos: [0]; default: 0; + * systimer clock force on + */ + +#define SYSTIMER_SYSTIMER_CLK_FO (BIT(0)) +#define SYSTIMER_SYSTIMER_CLK_FO_M (SYSTIMER_SYSTIMER_CLK_FO_V << SYSTIMER_SYSTIMER_CLK_FO_S) +#define SYSTIMER_SYSTIMER_CLK_FO_V 0x00000001 +#define SYSTIMER_SYSTIMER_CLK_FO_S 0 + +/* SYSTIMER_UNIT0_OP_REG register + * system timer unit0 value update register + */ + +#define SYSTIMER_UNIT0_OP_REG (DR_REG_SYSTIMER_BASE + 0x4) + +/* SYSTIMER_TIMER_UNIT0_UPDATE : WT; bitpos: [30]; default: 0; + * update timer_unit0 + */ + +#define SYSTIMER_TIMER_UNIT0_UPDATE (BIT(30)) +#define SYSTIMER_TIMER_UNIT0_UPDATE_M (SYSTIMER_TIMER_UNIT0_UPDATE_V << SYSTIMER_TIMER_UNIT0_UPDATE_S) +#define SYSTIMER_TIMER_UNIT0_UPDATE_V 0x00000001 +#define SYSTIMER_TIMER_UNIT0_UPDATE_S 30 + +/* SYSTIMER_TIMER_UNIT0_VALUE_VALID : R/SS/WTC; bitpos: [29]; default: 0; + * timer value is sync and valid + */ + +#define SYSTIMER_TIMER_UNIT0_VALUE_VALID (BIT(29)) +#define SYSTIMER_TIMER_UNIT0_VALUE_VALID_M (SYSTIMER_TIMER_UNIT0_VALUE_VALID_V << SYSTIMER_TIMER_UNIT0_VALUE_VALID_S) +#define SYSTIMER_TIMER_UNIT0_VALUE_VALID_V 0x00000001 +#define SYSTIMER_TIMER_UNIT0_VALUE_VALID_S 29 + +/* SYSTIMER_UNIT1_OP_REG register + * system timer unit1 value update register + */ + +#define SYSTIMER_UNIT1_OP_REG (DR_REG_SYSTIMER_BASE + 0x8) + +/* SYSTIMER_TIMER_UNIT1_UPDATE : WT; bitpos: [30]; default: 0; + * update timer unit1 + */ + +#define SYSTIMER_TIMER_UNIT1_UPDATE (BIT(30)) +#define SYSTIMER_TIMER_UNIT1_UPDATE_M (SYSTIMER_TIMER_UNIT1_UPDATE_V << SYSTIMER_TIMER_UNIT1_UPDATE_S) +#define SYSTIMER_TIMER_UNIT1_UPDATE_V 0x00000001 +#define SYSTIMER_TIMER_UNIT1_UPDATE_S 30 + +/* SYSTIMER_TIMER_UNIT1_VALUE_VALID : R/SS/WTC; bitpos: [29]; default: 0; + * timer value is sync and valid + */ + +#define SYSTIMER_TIMER_UNIT1_VALUE_VALID (BIT(29)) +#define SYSTIMER_TIMER_UNIT1_VALUE_VALID_M (SYSTIMER_TIMER_UNIT1_VALUE_VALID_V << SYSTIMER_TIMER_UNIT1_VALUE_VALID_S) +#define SYSTIMER_TIMER_UNIT1_VALUE_VALID_V 0x00000001 +#define SYSTIMER_TIMER_UNIT1_VALUE_VALID_S 29 + +/* SYSTIMER_UNIT0_LOAD_HI_REG register + * system timer unit0 value high load register + */ + +#define SYSTIMER_UNIT0_LOAD_HI_REG (DR_REG_SYSTIMER_BASE + 0xc) + +/* SYSTIMER_TIMER_UNIT0_LOAD_HI : R/W; bitpos: [19:0]; default: 0; + * timer unit0 load high 20 bits + */ + +#define SYSTIMER_TIMER_UNIT0_LOAD_HI 0x000fffff +#define SYSTIMER_TIMER_UNIT0_LOAD_HI_M (SYSTIMER_TIMER_UNIT0_LOAD_HI_V << SYSTIMER_TIMER_UNIT0_LOAD_HI_S) +#define SYSTIMER_TIMER_UNIT0_LOAD_HI_V 0x000fffff +#define SYSTIMER_TIMER_UNIT0_LOAD_HI_S 0 + +/* SYSTIMER_UNIT0_LOAD_LO_REG register + * system timer unit0 value low load register + */ + +#define SYSTIMER_UNIT0_LOAD_LO_REG (DR_REG_SYSTIMER_BASE + 0x10) + +/* SYSTIMER_TIMER_UNIT0_LOAD_LO : R/W; bitpos: [31:0]; default: 0; + * timer unit0 load low 32 bits + */ + +#define SYSTIMER_TIMER_UNIT0_LOAD_LO 0xffffffff +#define SYSTIMER_TIMER_UNIT0_LOAD_LO_M (SYSTIMER_TIMER_UNIT0_LOAD_LO_V << SYSTIMER_TIMER_UNIT0_LOAD_LO_S) +#define SYSTIMER_TIMER_UNIT0_LOAD_LO_V 0xffffffff +#define SYSTIMER_TIMER_UNIT0_LOAD_LO_S 0 + +/* SYSTIMER_UNIT1_LOAD_HI_REG register + * system timer unit1 value high load register + */ + +#define SYSTIMER_UNIT1_LOAD_HI_REG (DR_REG_SYSTIMER_BASE + 0x14) + +/* SYSTIMER_TIMER_UNIT1_LOAD_HI : R/W; bitpos: [19:0]; default: 0; + * timer unit1 load high 20 bits + */ + +#define SYSTIMER_TIMER_UNIT1_LOAD_HI 0x000fffff +#define SYSTIMER_TIMER_UNIT1_LOAD_HI_M (SYSTIMER_TIMER_UNIT1_LOAD_HI_V << SYSTIMER_TIMER_UNIT1_LOAD_HI_S) +#define SYSTIMER_TIMER_UNIT1_LOAD_HI_V 0x000fffff +#define SYSTIMER_TIMER_UNIT1_LOAD_HI_S 0 + +/* SYSTIMER_UNIT1_LOAD_LO_REG register + * system timer unit1 value low load register + */ + +#define SYSTIMER_UNIT1_LOAD_LO_REG (DR_REG_SYSTIMER_BASE + 0x18) + +/* SYSTIMER_TIMER_UNIT1_LOAD_LO : R/W; bitpos: [31:0]; default: 0; + * timer unit1 load low 32 bits + */ + +#define SYSTIMER_TIMER_UNIT1_LOAD_LO 0xffffffff +#define SYSTIMER_TIMER_UNIT1_LOAD_LO_M (SYSTIMER_TIMER_UNIT1_LOAD_LO_V << SYSTIMER_TIMER_UNIT1_LOAD_LO_S) +#define SYSTIMER_TIMER_UNIT1_LOAD_LO_V 0xffffffff +#define SYSTIMER_TIMER_UNIT1_LOAD_LO_S 0 + +/* SYSTIMER_TARGET0_HI_REG register + * system timer comp0 value high register + */ + +#define SYSTIMER_TARGET0_HI_REG (DR_REG_SYSTIMER_BASE + 0x1c) + +/* SYSTIMER_TIMER_TARGET0_HI : R/W; bitpos: [19:0]; default: 0; + * timer taget0 high 20 bits + */ + +#define SYSTIMER_TIMER_TARGET0_HI 0x000fffff +#define SYSTIMER_TIMER_TARGET0_HI_M (SYSTIMER_TIMER_TARGET0_HI_V << SYSTIMER_TIMER_TARGET0_HI_S) +#define SYSTIMER_TIMER_TARGET0_HI_V 0x000fffff +#define SYSTIMER_TIMER_TARGET0_HI_S 0 + +/* SYSTIMER_TARGET0_LO_REG register + * system timer comp0 value low register + */ + +#define SYSTIMER_TARGET0_LO_REG (DR_REG_SYSTIMER_BASE + 0x20) + +/* SYSTIMER_TIMER_TARGET0_LO : R/W; bitpos: [31:0]; default: 0; + * timer taget0 low 32 bits + */ + +#define SYSTIMER_TIMER_TARGET0_LO 0xffffffff +#define SYSTIMER_TIMER_TARGET0_LO_M (SYSTIMER_TIMER_TARGET0_LO_V << SYSTIMER_TIMER_TARGET0_LO_S) +#define SYSTIMER_TIMER_TARGET0_LO_V 0xffffffff +#define SYSTIMER_TIMER_TARGET0_LO_S 0 + +/* SYSTIMER_TARGET1_HI_REG register + * system timer comp1 value high register + */ + +#define SYSTIMER_TARGET1_HI_REG (DR_REG_SYSTIMER_BASE + 0x24) + +/* SYSTIMER_TIMER_TARGET1_HI : R/W; bitpos: [19:0]; default: 0; + * timer taget1 high 20 bits + */ + +#define SYSTIMER_TIMER_TARGET1_HI 0x000fffff +#define SYSTIMER_TIMER_TARGET1_HI_M (SYSTIMER_TIMER_TARGET1_HI_V << SYSTIMER_TIMER_TARGET1_HI_S) +#define SYSTIMER_TIMER_TARGET1_HI_V 0x000fffff +#define SYSTIMER_TIMER_TARGET1_HI_S 0 + +/* SYSTIMER_TARGET1_LO_REG register + * system timer comp1 value low register + */ + +#define SYSTIMER_TARGET1_LO_REG (DR_REG_SYSTIMER_BASE + 0x28) + +/* SYSTIMER_TIMER_TARGET1_LO : R/W; bitpos: [31:0]; default: 0; + * timer taget1 low 32 bits + */ + +#define SYSTIMER_TIMER_TARGET1_LO 0xffffffff +#define SYSTIMER_TIMER_TARGET1_LO_M (SYSTIMER_TIMER_TARGET1_LO_V << SYSTIMER_TIMER_TARGET1_LO_S) +#define SYSTIMER_TIMER_TARGET1_LO_V 0xffffffff +#define SYSTIMER_TIMER_TARGET1_LO_S 0 + +/* SYSTIMER_TARGET2_HI_REG register + * system timer comp2 value high register + */ + +#define SYSTIMER_TARGET2_HI_REG (DR_REG_SYSTIMER_BASE + 0x2c) + +/* SYSTIMER_TIMER_TARGET2_HI : R/W; bitpos: [19:0]; default: 0; + * timer taget2 high 20 bits + */ + +#define SYSTIMER_TIMER_TARGET2_HI 0x000fffff +#define SYSTIMER_TIMER_TARGET2_HI_M (SYSTIMER_TIMER_TARGET2_HI_V << SYSTIMER_TIMER_TARGET2_HI_S) +#define SYSTIMER_TIMER_TARGET2_HI_V 0x000fffff +#define SYSTIMER_TIMER_TARGET2_HI_S 0 + +/* SYSTIMER_TARGET2_LO_REG register + * system timer comp2 value low register + */ + +#define SYSTIMER_TARGET2_LO_REG (DR_REG_SYSTIMER_BASE + 0x30) + +/* SYSTIMER_TIMER_TARGET2_LO : R/W; bitpos: [31:0]; default: 0; + * timer taget2 low 32 bits + */ + +#define SYSTIMER_TIMER_TARGET2_LO 0xffffffff +#define SYSTIMER_TIMER_TARGET2_LO_M (SYSTIMER_TIMER_TARGET2_LO_V << SYSTIMER_TIMER_TARGET2_LO_S) +#define SYSTIMER_TIMER_TARGET2_LO_V 0xffffffff +#define SYSTIMER_TIMER_TARGET2_LO_S 0 + +/* SYSTIMER_TARGET0_CONF_REG register + * system timer comp0 target mode register + */ + +#define SYSTIMER_TARGET0_CONF_REG (DR_REG_SYSTIMER_BASE + 0x34) + +/* SYSTIMER_TARGET0_TIMER_UNIT_SEL : R/W; bitpos: [31]; default: 0; + * select which unit to compare + */ + +#define SYSTIMER_TARGET0_TIMER_UNIT_SEL (BIT(31)) +#define SYSTIMER_TARGET0_TIMER_UNIT_SEL_M (SYSTIMER_TARGET0_TIMER_UNIT_SEL_V << SYSTIMER_TARGET0_TIMER_UNIT_SEL_S) +#define SYSTIMER_TARGET0_TIMER_UNIT_SEL_V 0x00000001 +#define SYSTIMER_TARGET0_TIMER_UNIT_SEL_S 31 + +/* SYSTIMER_TARGET0_PERIOD_MODE : R/W; bitpos: [30]; default: 0; + * Set target0 to period mode + */ + +#define SYSTIMER_TARGET0_PERIOD_MODE (BIT(30)) +#define SYSTIMER_TARGET0_PERIOD_MODE_M (SYSTIMER_TARGET0_PERIOD_MODE_V << SYSTIMER_TARGET0_PERIOD_MODE_S) +#define SYSTIMER_TARGET0_PERIOD_MODE_V 0x00000001 +#define SYSTIMER_TARGET0_PERIOD_MODE_S 30 + +/* SYSTIMER_TARGET0_PERIOD : R/W; bitpos: [25:0]; default: 0; + * target0 period + */ + +#define SYSTIMER_TARGET0_PERIOD 0x03ffffff +#define SYSTIMER_TARGET0_PERIOD_M (SYSTIMER_TARGET0_PERIOD_V << SYSTIMER_TARGET0_PERIOD_S) +#define SYSTIMER_TARGET0_PERIOD_V 0x03ffffff +#define SYSTIMER_TARGET0_PERIOD_S 0 + +/* SYSTIMER_TARGET1_CONF_REG register + * system timer comp1 target mode register + */ + +#define SYSTIMER_TARGET1_CONF_REG (DR_REG_SYSTIMER_BASE + 0x38) + +/* SYSTIMER_TARGET1_TIMER_UNIT_SEL : R/W; bitpos: [31]; default: 0; + * select which unit to compare + */ + +#define SYSTIMER_TARGET1_TIMER_UNIT_SEL (BIT(31)) +#define SYSTIMER_TARGET1_TIMER_UNIT_SEL_M (SYSTIMER_TARGET1_TIMER_UNIT_SEL_V << SYSTIMER_TARGET1_TIMER_UNIT_SEL_S) +#define SYSTIMER_TARGET1_TIMER_UNIT_SEL_V 0x00000001 +#define SYSTIMER_TARGET1_TIMER_UNIT_SEL_S 31 + +/* SYSTIMER_TARGET1_PERIOD_MODE : R/W; bitpos: [30]; default: 0; + * Set target1 to period mode + */ + +#define SYSTIMER_TARGET1_PERIOD_MODE (BIT(30)) +#define SYSTIMER_TARGET1_PERIOD_MODE_M (SYSTIMER_TARGET1_PERIOD_MODE_V << SYSTIMER_TARGET1_PERIOD_MODE_S) +#define SYSTIMER_TARGET1_PERIOD_MODE_V 0x00000001 +#define SYSTIMER_TARGET1_PERIOD_MODE_S 30 + +/* SYSTIMER_TARGET1_PERIOD : R/W; bitpos: [25:0]; default: 0; + * target1 period + */ + +#define SYSTIMER_TARGET1_PERIOD 0x03ffffff +#define SYSTIMER_TARGET1_PERIOD_M (SYSTIMER_TARGET1_PERIOD_V << SYSTIMER_TARGET1_PERIOD_S) +#define SYSTIMER_TARGET1_PERIOD_V 0x03ffffff +#define SYSTIMER_TARGET1_PERIOD_S 0 + +/* SYSTIMER_TARGET2_CONF_REG register + * system timer comp2 target mode register + */ + +#define SYSTIMER_TARGET2_CONF_REG (DR_REG_SYSTIMER_BASE + 0x3c) + +/* SYSTIMER_TARGET2_TIMER_UNIT_SEL : R/W; bitpos: [31]; default: 0; + * select which unit to compare + */ + +#define SYSTIMER_TARGET2_TIMER_UNIT_SEL (BIT(31)) +#define SYSTIMER_TARGET2_TIMER_UNIT_SEL_M (SYSTIMER_TARGET2_TIMER_UNIT_SEL_V << SYSTIMER_TARGET2_TIMER_UNIT_SEL_S) +#define SYSTIMER_TARGET2_TIMER_UNIT_SEL_V 0x00000001 +#define SYSTIMER_TARGET2_TIMER_UNIT_SEL_S 31 + +/* SYSTIMER_TARGET2_PERIOD_MODE : R/W; bitpos: [30]; default: 0; + * Set target2 to period mode + */ + +#define SYSTIMER_TARGET2_PERIOD_MODE (BIT(30)) +#define SYSTIMER_TARGET2_PERIOD_MODE_M (SYSTIMER_TARGET2_PERIOD_MODE_V << SYSTIMER_TARGET2_PERIOD_MODE_S) +#define SYSTIMER_TARGET2_PERIOD_MODE_V 0x00000001 +#define SYSTIMER_TARGET2_PERIOD_MODE_S 30 + +/* SYSTIMER_TARGET2_PERIOD : R/W; bitpos: [25:0]; default: 0; + * target2 period + */ + +#define SYSTIMER_TARGET2_PERIOD 0x03ffffff +#define SYSTIMER_TARGET2_PERIOD_M (SYSTIMER_TARGET2_PERIOD_V << SYSTIMER_TARGET2_PERIOD_S) +#define SYSTIMER_TARGET2_PERIOD_V 0x03ffffff +#define SYSTIMER_TARGET2_PERIOD_S 0 + +/* SYSTIMER_UNIT0_VALUE_HI_REG register + * system timer unit0 value high register + */ + +#define SYSTIMER_UNIT0_VALUE_HI_REG (DR_REG_SYSTIMER_BASE + 0x40) + +/* SYSTIMER_TIMER_UNIT0_VALUE_HI : RO; bitpos: [19:0]; default: 0; + * timer read value high 20bits + */ + +#define SYSTIMER_TIMER_UNIT0_VALUE_HI 0x000fffff +#define SYSTIMER_TIMER_UNIT0_VALUE_HI_M (SYSTIMER_TIMER_UNIT0_VALUE_HI_V << SYSTIMER_TIMER_UNIT0_VALUE_HI_S) +#define SYSTIMER_TIMER_UNIT0_VALUE_HI_V 0x000fffff +#define SYSTIMER_TIMER_UNIT0_VALUE_HI_S 0 + +/* SYSTIMER_UNIT0_VALUE_LO_REG register + * system timer unit0 value low register + */ + +#define SYSTIMER_UNIT0_VALUE_LO_REG (DR_REG_SYSTIMER_BASE + 0x44) + +/* SYSTIMER_TIMER_UNIT0_VALUE_LO : RO; bitpos: [31:0]; default: 0; + * timer read value low 32bits + */ + +#define SYSTIMER_TIMER_UNIT0_VALUE_LO 0xffffffff +#define SYSTIMER_TIMER_UNIT0_VALUE_LO_M (SYSTIMER_TIMER_UNIT0_VALUE_LO_V << SYSTIMER_TIMER_UNIT0_VALUE_LO_S) +#define SYSTIMER_TIMER_UNIT0_VALUE_LO_V 0xffffffff +#define SYSTIMER_TIMER_UNIT0_VALUE_LO_S 0 + +/* SYSTIMER_UNIT1_VALUE_HI_REG register + * system timer unit1 value high register + */ + +#define SYSTIMER_UNIT1_VALUE_HI_REG (DR_REG_SYSTIMER_BASE + 0x48) + +/* SYSTIMER_TIMER_UNIT1_VALUE_HI : RO; bitpos: [19:0]; default: 0; + * timer read value high 20bits + */ + +#define SYSTIMER_TIMER_UNIT1_VALUE_HI 0x000fffff +#define SYSTIMER_TIMER_UNIT1_VALUE_HI_M (SYSTIMER_TIMER_UNIT1_VALUE_HI_V << SYSTIMER_TIMER_UNIT1_VALUE_HI_S) +#define SYSTIMER_TIMER_UNIT1_VALUE_HI_V 0x000fffff +#define SYSTIMER_TIMER_UNIT1_VALUE_HI_S 0 + +/* SYSTIMER_UNIT1_VALUE_LO_REG register + * system timer unit1 value low register + */ + +#define SYSTIMER_UNIT1_VALUE_LO_REG (DR_REG_SYSTIMER_BASE + 0x4c) + +/* SYSTIMER_TIMER_UNIT1_VALUE_LO : RO; bitpos: [31:0]; default: 0; + * timer read value low 32bits + */ + +#define SYSTIMER_TIMER_UNIT1_VALUE_LO 0xffffffff +#define SYSTIMER_TIMER_UNIT1_VALUE_LO_M (SYSTIMER_TIMER_UNIT1_VALUE_LO_V << SYSTIMER_TIMER_UNIT1_VALUE_LO_S) +#define SYSTIMER_TIMER_UNIT1_VALUE_LO_V 0xffffffff +#define SYSTIMER_TIMER_UNIT1_VALUE_LO_S 0 + +/* SYSTIMER_COMP0_LOAD_REG register + * system timer comp0 conf sync register + */ + +#define SYSTIMER_COMP0_LOAD_REG (DR_REG_SYSTIMER_BASE + 0x50) + +/* SYSTIMER_TIMER_COMP0_LOAD : WT; bitpos: [0]; default: 0; + * timer comp0 sync enable signal + */ + +#define SYSTIMER_TIMER_COMP0_LOAD (BIT(0)) +#define SYSTIMER_TIMER_COMP0_LOAD_M (SYSTIMER_TIMER_COMP0_LOAD_V << SYSTIMER_TIMER_COMP0_LOAD_S) +#define SYSTIMER_TIMER_COMP0_LOAD_V 0x00000001 +#define SYSTIMER_TIMER_COMP0_LOAD_S 0 + +/* SYSTIMER_COMP1_LOAD_REG register + * system timer comp1 conf sync register + */ + +#define SYSTIMER_COMP1_LOAD_REG (DR_REG_SYSTIMER_BASE + 0x54) + +/* SYSTIMER_TIMER_COMP1_LOAD : WT; bitpos: [0]; default: 0; + * timer comp1 sync enable signal + */ + +#define SYSTIMER_TIMER_COMP1_LOAD (BIT(0)) +#define SYSTIMER_TIMER_COMP1_LOAD_M (SYSTIMER_TIMER_COMP1_LOAD_V << SYSTIMER_TIMER_COMP1_LOAD_S) +#define SYSTIMER_TIMER_COMP1_LOAD_V 0x00000001 +#define SYSTIMER_TIMER_COMP1_LOAD_S 0 + +/* SYSTIMER_COMP2_LOAD_REG register + * system timer comp2 conf sync register + */ + +#define SYSTIMER_COMP2_LOAD_REG (DR_REG_SYSTIMER_BASE + 0x58) + +/* SYSTIMER_TIMER_COMP2_LOAD : WT; bitpos: [0]; default: 0; + * timer comp2 sync enable signal + */ + +#define SYSTIMER_TIMER_COMP2_LOAD (BIT(0)) +#define SYSTIMER_TIMER_COMP2_LOAD_M (SYSTIMER_TIMER_COMP2_LOAD_V << SYSTIMER_TIMER_COMP2_LOAD_S) +#define SYSTIMER_TIMER_COMP2_LOAD_V 0x00000001 +#define SYSTIMER_TIMER_COMP2_LOAD_S 0 + +/* SYSTIMER_UNIT0_LOAD_REG register + * system timer unit0 conf sync register + */ + +#define SYSTIMER_UNIT0_LOAD_REG (DR_REG_SYSTIMER_BASE + 0x5c) + +/* SYSTIMER_TIMER_UNIT0_LOAD : WT; bitpos: [0]; default: 0; + * timer unit0 sync enable signal + */ + +#define SYSTIMER_TIMER_UNIT0_LOAD (BIT(0)) +#define SYSTIMER_TIMER_UNIT0_LOAD_M (SYSTIMER_TIMER_UNIT0_LOAD_V << SYSTIMER_TIMER_UNIT0_LOAD_S) +#define SYSTIMER_TIMER_UNIT0_LOAD_V 0x00000001 +#define SYSTIMER_TIMER_UNIT0_LOAD_S 0 + +/* SYSTIMER_UNIT1_LOAD_REG register + * system timer unit1 conf sync register + */ + +#define SYSTIMER_UNIT1_LOAD_REG (DR_REG_SYSTIMER_BASE + 0x60) + +/* SYSTIMER_TIMER_UNIT1_LOAD : WT; bitpos: [0]; default: 0; + * timer unit1 sync enable signal + */ + +#define SYSTIMER_TIMER_UNIT1_LOAD (BIT(0)) +#define SYSTIMER_TIMER_UNIT1_LOAD_M (SYSTIMER_TIMER_UNIT1_LOAD_V << SYSTIMER_TIMER_UNIT1_LOAD_S) +#define SYSTIMER_TIMER_UNIT1_LOAD_V 0x00000001 +#define SYSTIMER_TIMER_UNIT1_LOAD_S 0 + +/* SYSTIMER_INT_ENA_REG register + * systimer interrupt enable register + */ + +#define SYSTIMER_INT_ENA_REG (DR_REG_SYSTIMER_BASE + 0x64) + +/* SYSTIMER_TARGET2_INT_ENA : R/W; bitpos: [2]; default: 0; + * interupt2 enable + */ + +#define SYSTIMER_TARGET2_INT_ENA (BIT(2)) +#define SYSTIMER_TARGET2_INT_ENA_M (SYSTIMER_TARGET2_INT_ENA_V << SYSTIMER_TARGET2_INT_ENA_S) +#define SYSTIMER_TARGET2_INT_ENA_V 0x00000001 +#define SYSTIMER_TARGET2_INT_ENA_S 2 + +/* SYSTIMER_TARGET1_INT_ENA : R/W; bitpos: [1]; default: 0; + * interupt1 enable + */ + +#define SYSTIMER_TARGET1_INT_ENA (BIT(1)) +#define SYSTIMER_TARGET1_INT_ENA_M (SYSTIMER_TARGET1_INT_ENA_V << SYSTIMER_TARGET1_INT_ENA_S) +#define SYSTIMER_TARGET1_INT_ENA_V 0x00000001 +#define SYSTIMER_TARGET1_INT_ENA_S 1 + +/* SYSTIMER_TARGET0_INT_ENA : R/W; bitpos: [0]; default: 0; + * interupt0 enable + */ + +#define SYSTIMER_TARGET0_INT_ENA (BIT(0)) +#define SYSTIMER_TARGET0_INT_ENA_M (SYSTIMER_TARGET0_INT_ENA_V << SYSTIMER_TARGET0_INT_ENA_S) +#define SYSTIMER_TARGET0_INT_ENA_V 0x00000001 +#define SYSTIMER_TARGET0_INT_ENA_S 0 + +/* SYSTIMER_INT_RAW_REG register + * systimer interrupt raw register + */ + +#define SYSTIMER_INT_RAW_REG (DR_REG_SYSTIMER_BASE + 0x68) + +/* SYSTIMER_TARGET2_INT_RAW : R/WTC/SS; bitpos: [2]; default: 0; + * interupt2 raw + */ + +#define SYSTIMER_TARGET2_INT_RAW (BIT(2)) +#define SYSTIMER_TARGET2_INT_RAW_M (SYSTIMER_TARGET2_INT_RAW_V << SYSTIMER_TARGET2_INT_RAW_S) +#define SYSTIMER_TARGET2_INT_RAW_V 0x00000001 +#define SYSTIMER_TARGET2_INT_RAW_S 2 + +/* SYSTIMER_TARGET1_INT_RAW : R/WTC/SS; bitpos: [1]; default: 0; + * interupt1 raw + */ + +#define SYSTIMER_TARGET1_INT_RAW (BIT(1)) +#define SYSTIMER_TARGET1_INT_RAW_M (SYSTIMER_TARGET1_INT_RAW_V << SYSTIMER_TARGET1_INT_RAW_S) +#define SYSTIMER_TARGET1_INT_RAW_V 0x00000001 +#define SYSTIMER_TARGET1_INT_RAW_S 1 + +/* SYSTIMER_TARGET0_INT_RAW : R/WTC/SS; bitpos: [0]; default: 0; + * interupt0 raw + */ + +#define SYSTIMER_TARGET0_INT_RAW (BIT(0)) +#define SYSTIMER_TARGET0_INT_RAW_M (SYSTIMER_TARGET0_INT_RAW_V << SYSTIMER_TARGET0_INT_RAW_S) +#define SYSTIMER_TARGET0_INT_RAW_V 0x00000001 +#define SYSTIMER_TARGET0_INT_RAW_S 0 + +/* SYSTIMER_INT_CLR_REG register + * systimer interrupt clear register + */ + +#define SYSTIMER_INT_CLR_REG (DR_REG_SYSTIMER_BASE + 0x6c) + +/* SYSTIMER_TARGET2_INT_CLR : WT; bitpos: [2]; default: 0; + * interupt2 clear + */ + +#define SYSTIMER_TARGET2_INT_CLR (BIT(2)) +#define SYSTIMER_TARGET2_INT_CLR_M (SYSTIMER_TARGET2_INT_CLR_V << SYSTIMER_TARGET2_INT_CLR_S) +#define SYSTIMER_TARGET2_INT_CLR_V 0x00000001 +#define SYSTIMER_TARGET2_INT_CLR_S 2 + +/* SYSTIMER_TARGET1_INT_CLR : WT; bitpos: [1]; default: 0; + * interupt1 clear + */ + +#define SYSTIMER_TARGET1_INT_CLR (BIT(1)) +#define SYSTIMER_TARGET1_INT_CLR_M (SYSTIMER_TARGET1_INT_CLR_V << SYSTIMER_TARGET1_INT_CLR_S) +#define SYSTIMER_TARGET1_INT_CLR_V 0x00000001 +#define SYSTIMER_TARGET1_INT_CLR_S 1 + +/* SYSTIMER_TARGET0_INT_CLR : WT; bitpos: [0]; default: 0; + * interupt0 clear + */ + +#define SYSTIMER_TARGET0_INT_CLR (BIT(0)) +#define SYSTIMER_TARGET0_INT_CLR_M (SYSTIMER_TARGET0_INT_CLR_V << SYSTIMER_TARGET0_INT_CLR_S) +#define SYSTIMER_TARGET0_INT_CLR_V 0x00000001 +#define SYSTIMER_TARGET0_INT_CLR_S 0 + +/* SYSTIMER_INT_ST_REG register + * systimer interrupt status register + */ + +#define SYSTIMER_INT_ST_REG (DR_REG_SYSTIMER_BASE + 0x70) + +/* SYSTIMER_TARGET2_INT_ST : RO; bitpos: [2]; default: 0; + * interupt2 status + */ + +#define SYSTIMER_TARGET2_INT_ST (BIT(2)) +#define SYSTIMER_TARGET2_INT_ST_M (SYSTIMER_TARGET2_INT_ST_V << SYSTIMER_TARGET2_INT_ST_S) +#define SYSTIMER_TARGET2_INT_ST_V 0x00000001 +#define SYSTIMER_TARGET2_INT_ST_S 2 + +/* SYSTIMER_TARGET1_INT_ST : RO; bitpos: [1]; default: 0; + * interupt1 status + */ + +#define SYSTIMER_TARGET1_INT_ST (BIT(1)) +#define SYSTIMER_TARGET1_INT_ST_M (SYSTIMER_TARGET1_INT_ST_V << SYSTIMER_TARGET1_INT_ST_S) +#define SYSTIMER_TARGET1_INT_ST_V 0x00000001 +#define SYSTIMER_TARGET1_INT_ST_S 1 + +/* SYSTIMER_TARGET0_INT_ST : RO; bitpos: [0]; default: 0; + * interupt0 status + */ + +#define SYSTIMER_TARGET0_INT_ST (BIT(0)) +#define SYSTIMER_TARGET0_INT_ST_M (SYSTIMER_TARGET0_INT_ST_V << SYSTIMER_TARGET0_INT_ST_S) +#define SYSTIMER_TARGET0_INT_ST_V 0x00000001 +#define SYSTIMER_TARGET0_INT_ST_S 0 + +/* SYSTIMER_REAL_TARGET0_LO_REG register + * system timer comp0 actual target value low register + */ + +#define SYSTIMER_REAL_TARGET0_LO_REG (DR_REG_SYSTIMER_BASE + 0x74) + +/* SYSTIMER_TARGET0_LO_RO : RO; bitpos: [31:0]; default: 0; + * actual target value value low 32bits + */ + +#define SYSTIMER_TARGET0_LO_RO 0xffffffff +#define SYSTIMER_TARGET0_LO_RO_M (SYSTIMER_TARGET0_LO_RO_V << SYSTIMER_TARGET0_LO_RO_S) +#define SYSTIMER_TARGET0_LO_RO_V 0xffffffff +#define SYSTIMER_TARGET0_LO_RO_S 0 + +/* SYSTIMER_REAL_TARGET0_HI_REG register + * system timer comp0 actual target value high register + */ + +#define SYSTIMER_REAL_TARGET0_HI_REG (DR_REG_SYSTIMER_BASE + 0x78) + +/* SYSTIMER_TARGET0_HI_RO : RO; bitpos: [19:0]; default: 0; + * actual target value value high 20bits + */ + +#define SYSTIMER_TARGET0_HI_RO 0x000fffff +#define SYSTIMER_TARGET0_HI_RO_M (SYSTIMER_TARGET0_HI_RO_V << SYSTIMER_TARGET0_HI_RO_S) +#define SYSTIMER_TARGET0_HI_RO_V 0x000fffff +#define SYSTIMER_TARGET0_HI_RO_S 0 + +/* SYSTIMER_REAL_TARGET1_LO_REG register + * system timer comp1 actual target value low register + */ + +#define SYSTIMER_REAL_TARGET1_LO_REG (DR_REG_SYSTIMER_BASE + 0x7c) + +/* SYSTIMER_TARGET1_LO_RO : RO; bitpos: [31:0]; default: 0; + * actual target value value low 32bits + */ + +#define SYSTIMER_TARGET1_LO_RO 0xffffffff +#define SYSTIMER_TARGET1_LO_RO_M (SYSTIMER_TARGET1_LO_RO_V << SYSTIMER_TARGET1_LO_RO_S) +#define SYSTIMER_TARGET1_LO_RO_V 0xffffffff +#define SYSTIMER_TARGET1_LO_RO_S 0 + +/* SYSTIMER_REAL_TARGET1_HI_REG register + * system timer comp1 actual target value high register + */ + +#define SYSTIMER_REAL_TARGET1_HI_REG (DR_REG_SYSTIMER_BASE + 0x80) + +/* SYSTIMER_TARGET1_HI_RO : RO; bitpos: [19:0]; default: 0; + * actual target value value high 20bits + */ + +#define SYSTIMER_TARGET1_HI_RO 0x000fffff +#define SYSTIMER_TARGET1_HI_RO_M (SYSTIMER_TARGET1_HI_RO_V << SYSTIMER_TARGET1_HI_RO_S) +#define SYSTIMER_TARGET1_HI_RO_V 0x000fffff +#define SYSTIMER_TARGET1_HI_RO_S 0 + +/* SYSTIMER_REAL_TARGET2_LO_REG register + * system timer comp2 actual target value low register + */ + +#define SYSTIMER_REAL_TARGET2_LO_REG (DR_REG_SYSTIMER_BASE + 0x84) + +/* SYSTIMER_TARGET2_LO_RO : RO; bitpos: [31:0]; default: 0; + * actual target value value low 32bits + */ + +#define SYSTIMER_TARGET2_LO_RO 0xffffffff +#define SYSTIMER_TARGET2_LO_RO_M (SYSTIMER_TARGET2_LO_RO_V << SYSTIMER_TARGET2_LO_RO_S) +#define SYSTIMER_TARGET2_LO_RO_V 0xffffffff +#define SYSTIMER_TARGET2_LO_RO_S 0 + +/* SYSTIMER_REAL_TARGET2_HI_REG register + * system timer comp2 actual target value high register + */ + +#define SYSTIMER_REAL_TARGET2_HI_REG (DR_REG_SYSTIMER_BASE + 0x88) + +/* SYSTIMER_TARGET2_HI_RO : RO; bitpos: [19:0]; default: 0; + * actual target value value high 20bits + */ + +#define SYSTIMER_TARGET2_HI_RO 0x000fffff +#define SYSTIMER_TARGET2_HI_RO_M (SYSTIMER_TARGET2_HI_RO_V << SYSTIMER_TARGET2_HI_RO_S) +#define SYSTIMER_TARGET2_HI_RO_V 0x000fffff +#define SYSTIMER_TARGET2_HI_RO_S 0 + +/* SYSTIMER_DATE_REG register + * system timer version control register + */ + +#define SYSTIMER_DATE_REG (DR_REG_SYSTIMER_BASE + 0xfc) + +/* SYSTIMER_DATE : R/W; bitpos: [31:0]; default: 33628753; + * systimer register version + */ + +#define SYSTIMER_DATE 0xffffffff +#define SYSTIMER_DATE_M (SYSTIMER_DATE_V << SYSTIMER_DATE_S) +#define SYSTIMER_DATE_V 0xffffffff +#define SYSTIMER_DATE_S 0 + +#endif /* __ARCH_XTENSA_SRC_ESP32S3_HARDWARE_ESP32S3_SYSTIMER_H */ diff --git a/arch/xtensa/src/esp32s3/hardware/esp32s3_uart.h b/arch/xtensa/src/esp32s3/hardware/esp32s3_uart.h new file mode 100644 index 0000000000..a647b4f16b --- /dev/null +++ b/arch/xtensa/src/esp32s3/hardware/esp32s3_uart.h @@ -0,0 +1,1961 @@ +/**************************************************************************** + * arch/xtensa/src/esp32s3/hardware/esp32s3_uart.h + * + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. The + * ASF licenses this file to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance with the + * License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT + * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the + * License for the specific language governing permissions and limitations + * under the License. + * + ****************************************************************************/ + +#ifndef __ARCH_XTENSA_SRC_ESP32S3_HARDWARE_ESP32S3_UART_H +#define __ARCH_XTENSA_SRC_ESP32S3_HARDWARE_ESP32S3_UART_H + +/**************************************************************************** + * Included Files + ****************************************************************************/ + +#include "esp32s3_soc.h" + +/**************************************************************************** + * Pre-processor Definitions + ****************************************************************************/ + +/* UART_FIFO_REG register + * FIFO data register + */ + +#define UART_FIFO_REG(i) (REG_UART_BASE(i) + 0x0) + +/* UART_RXFIFO_RD_BYTE : RO; bitpos: [7:0]; default: 0; + * UART $n accesses FIFO via this register. + */ + +#define UART_RXFIFO_RD_BYTE 0x000000ff +#define UART_RXFIFO_RD_BYTE_M (UART_RXFIFO_RD_BYTE_V << UART_RXFIFO_RD_BYTE_S) +#define UART_RXFIFO_RD_BYTE_V 0x000000ff +#define UART_RXFIFO_RD_BYTE_S 0 + +/* UART_INT_RAW_REG register + * Raw interrupt status + */ + +#define UART_INT_RAW_REG(i) (REG_UART_BASE(i) + 0x4) + +/* UART_WAKEUP_INT_RAW : R/WTC/SS; bitpos: [19]; default: 0; + * This interrupt raw bit turns to high level when input rxd edge changes + * more times than what reg_active_threshold specifies in light sleeping + * mode. + */ + +#define UART_WAKEUP_INT_RAW (BIT(19)) +#define UART_WAKEUP_INT_RAW_M (UART_WAKEUP_INT_RAW_V << UART_WAKEUP_INT_RAW_S) +#define UART_WAKEUP_INT_RAW_V 0x00000001 +#define UART_WAKEUP_INT_RAW_S 19 + +/* UART_AT_CMD_CHAR_DET_INT_RAW : R/WTC/SS; bitpos: [18]; default: 0; + * This interrupt raw bit turns to high level when receiver detects the + * configured at_cmd char. + */ + +#define UART_AT_CMD_CHAR_DET_INT_RAW (BIT(18)) +#define UART_AT_CMD_CHAR_DET_INT_RAW_M (UART_AT_CMD_CHAR_DET_INT_RAW_V << UART_AT_CMD_CHAR_DET_INT_RAW_S) +#define UART_AT_CMD_CHAR_DET_INT_RAW_V 0x00000001 +#define UART_AT_CMD_CHAR_DET_INT_RAW_S 18 + +/* UART_RS485_CLASH_INT_RAW : R/WTC/SS; bitpos: [17]; default: 0; + * This interrupt raw bit turns to high level when detects a clash between + * transmitter and receiver in rs485 mode. + */ + +#define UART_RS485_CLASH_INT_RAW (BIT(17)) +#define UART_RS485_CLASH_INT_RAW_M (UART_RS485_CLASH_INT_RAW_V << UART_RS485_CLASH_INT_RAW_S) +#define UART_RS485_CLASH_INT_RAW_V 0x00000001 +#define UART_RS485_CLASH_INT_RAW_S 17 + +/* UART_RS485_FRM_ERR_INT_RAW : R/WTC/SS; bitpos: [16]; default: 0; + * This interrupt raw bit turns to high level when receiver detects a data + * frame error from the echo of transmitter in rs485 mode. + */ + +#define UART_RS485_FRM_ERR_INT_RAW (BIT(16)) +#define UART_RS485_FRM_ERR_INT_RAW_M (UART_RS485_FRM_ERR_INT_RAW_V << UART_RS485_FRM_ERR_INT_RAW_S) +#define UART_RS485_FRM_ERR_INT_RAW_V 0x00000001 +#define UART_RS485_FRM_ERR_INT_RAW_S 16 + +/* UART_RS485_PARITY_ERR_INT_RAW : R/WTC/SS; bitpos: [15]; default: 0; + * This interrupt raw bit turns to high level when receiver detects a parity + * error from the echo of transmitter in rs485 mode. + */ + +#define UART_RS485_PARITY_ERR_INT_RAW (BIT(15)) +#define UART_RS485_PARITY_ERR_INT_RAW_M (UART_RS485_PARITY_ERR_INT_RAW_V << UART_RS485_PARITY_ERR_INT_RAW_S) +#define UART_RS485_PARITY_ERR_INT_RAW_V 0x00000001 +#define UART_RS485_PARITY_ERR_INT_RAW_S 15 + +/* UART_TX_DONE_INT_RAW : R/WTC/SS; bitpos: [14]; default: 0; + * This interrupt raw bit turns to high level when transmitter has send out + * all data in FIFO. + */ + +#define UART_TX_DONE_INT_RAW (BIT(14)) +#define UART_TX_DONE_INT_RAW_M (UART_TX_DONE_INT_RAW_V << UART_TX_DONE_INT_RAW_S) +#define UART_TX_DONE_INT_RAW_V 0x00000001 +#define UART_TX_DONE_INT_RAW_S 14 + +/* UART_TX_BRK_IDLE_DONE_INT_RAW : R/WTC/SS; bitpos: [13]; default: 0; + * This interrupt raw bit turns to high level when transmitter has kept the + * shortest duration after sending the last data. + */ + +#define UART_TX_BRK_IDLE_DONE_INT_RAW (BIT(13)) +#define UART_TX_BRK_IDLE_DONE_INT_RAW_M (UART_TX_BRK_IDLE_DONE_INT_RAW_V << UART_TX_BRK_IDLE_DONE_INT_RAW_S) +#define UART_TX_BRK_IDLE_DONE_INT_RAW_V 0x00000001 +#define UART_TX_BRK_IDLE_DONE_INT_RAW_S 13 + +/* UART_TX_BRK_DONE_INT_RAW : R/WTC/SS; bitpos: [12]; default: 0; + * This interrupt raw bit turns to high level when transmitter completes + * sending NULL characters, after all data in Tx-FIFO are sent. + */ + +#define UART_TX_BRK_DONE_INT_RAW (BIT(12)) +#define UART_TX_BRK_DONE_INT_RAW_M (UART_TX_BRK_DONE_INT_RAW_V << UART_TX_BRK_DONE_INT_RAW_S) +#define UART_TX_BRK_DONE_INT_RAW_V 0x00000001 +#define UART_TX_BRK_DONE_INT_RAW_S 12 + +/* UART_GLITCH_DET_INT_RAW : R/WTC/SS; bitpos: [11]; default: 0; + * This interrupt raw bit turns to high level when receiver detects a glitch + * in the middle of a start bit. + */ + +#define UART_GLITCH_DET_INT_RAW (BIT(11)) +#define UART_GLITCH_DET_INT_RAW_M (UART_GLITCH_DET_INT_RAW_V << UART_GLITCH_DET_INT_RAW_S) +#define UART_GLITCH_DET_INT_RAW_V 0x00000001 +#define UART_GLITCH_DET_INT_RAW_S 11 + +/* UART_SW_XOFF_INT_RAW : R/WTC/SS; bitpos: [10]; default: 0; + * This interrupt raw bit turns to high level when receiver receives Xoff + * char when uart_sw_flow_con_en is set to 1. + */ + +#define UART_SW_XOFF_INT_RAW (BIT(10)) +#define UART_SW_XOFF_INT_RAW_M (UART_SW_XOFF_INT_RAW_V << UART_SW_XOFF_INT_RAW_S) +#define UART_SW_XOFF_INT_RAW_V 0x00000001 +#define UART_SW_XOFF_INT_RAW_S 10 + +/* UART_SW_XON_INT_RAW : R/WTC/SS; bitpos: [9]; default: 0; + * This interrupt raw bit turns to high level when receiver recevies Xon + * char when uart_sw_flow_con_en is set to 1. + */ + +#define UART_SW_XON_INT_RAW (BIT(9)) +#define UART_SW_XON_INT_RAW_M (UART_SW_XON_INT_RAW_V << UART_SW_XON_INT_RAW_S) +#define UART_SW_XON_INT_RAW_V 0x00000001 +#define UART_SW_XON_INT_RAW_S 9 + +/* UART_RXFIFO_TOUT_INT_RAW : R/WTC/SS; bitpos: [8]; default: 0; + * This interrupt raw bit turns to high level when receiver takes more time + * than rx_tout_thrhd to receive a byte. + */ + +#define UART_RXFIFO_TOUT_INT_RAW (BIT(8)) +#define UART_RXFIFO_TOUT_INT_RAW_M (UART_RXFIFO_TOUT_INT_RAW_V << UART_RXFIFO_TOUT_INT_RAW_S) +#define UART_RXFIFO_TOUT_INT_RAW_V 0x00000001 +#define UART_RXFIFO_TOUT_INT_RAW_S 8 + +/* UART_BRK_DET_INT_RAW : R/WTC/SS; bitpos: [7]; default: 0; + * This interrupt raw bit turns to high level when receiver detects a 0 + * after the stop bit. + */ + +#define UART_BRK_DET_INT_RAW (BIT(7)) +#define UART_BRK_DET_INT_RAW_M (UART_BRK_DET_INT_RAW_V << UART_BRK_DET_INT_RAW_S) +#define UART_BRK_DET_INT_RAW_V 0x00000001 +#define UART_BRK_DET_INT_RAW_S 7 + +/* UART_CTS_CHG_INT_RAW : R/WTC/SS; bitpos: [6]; default: 0; + * This interrupt raw bit turns to high level when receiver detects the edge + * change of CTSn signal. + */ + +#define UART_CTS_CHG_INT_RAW (BIT(6)) +#define UART_CTS_CHG_INT_RAW_M (UART_CTS_CHG_INT_RAW_V << UART_CTS_CHG_INT_RAW_S) +#define UART_CTS_CHG_INT_RAW_V 0x00000001 +#define UART_CTS_CHG_INT_RAW_S 6 + +/* UART_DSR_CHG_INT_RAW : R/WTC/SS; bitpos: [5]; default: 0; + * This interrupt raw bit turns to high level when receiver detects the edge + * change of DSRn signal. + */ + +#define UART_DSR_CHG_INT_RAW (BIT(5)) +#define UART_DSR_CHG_INT_RAW_M (UART_DSR_CHG_INT_RAW_V << UART_DSR_CHG_INT_RAW_S) +#define UART_DSR_CHG_INT_RAW_V 0x00000001 +#define UART_DSR_CHG_INT_RAW_S 5 + +/* UART_RXFIFO_OVF_INT_RAW : R/WTC/SS; bitpos: [4]; default: 0; + * This interrupt raw bit turns to high level when receiver receives more + * data than the FIFO can store. + */ + +#define UART_RXFIFO_OVF_INT_RAW (BIT(4)) +#define UART_RXFIFO_OVF_INT_RAW_M (UART_RXFIFO_OVF_INT_RAW_V << UART_RXFIFO_OVF_INT_RAW_S) +#define UART_RXFIFO_OVF_INT_RAW_V 0x00000001 +#define UART_RXFIFO_OVF_INT_RAW_S 4 + +/* UART_FRM_ERR_INT_RAW : R/WTC/SS; bitpos: [3]; default: 0; + * This interrupt raw bit turns to high level when receiver detects a data + * frame error . + */ + +#define UART_FRM_ERR_INT_RAW (BIT(3)) +#define UART_FRM_ERR_INT_RAW_M (UART_FRM_ERR_INT_RAW_V << UART_FRM_ERR_INT_RAW_S) +#define UART_FRM_ERR_INT_RAW_V 0x00000001 +#define UART_FRM_ERR_INT_RAW_S 3 + +/* UART_PARITY_ERR_INT_RAW : R/WTC/SS; bitpos: [2]; default: 0; + * This interrupt raw bit turns to high level when receiver detects a parity + * error in the data. + */ + +#define UART_PARITY_ERR_INT_RAW (BIT(2)) +#define UART_PARITY_ERR_INT_RAW_M (UART_PARITY_ERR_INT_RAW_V << UART_PARITY_ERR_INT_RAW_S) +#define UART_PARITY_ERR_INT_RAW_V 0x00000001 +#define UART_PARITY_ERR_INT_RAW_S 2 + +/* UART_TXFIFO_EMPTY_INT_RAW : R/WTC/SS; bitpos: [1]; default: 1; + * This interrupt raw bit turns to high level when the amount of data in + * Tx-FIFO is less than what txfifo_empty_thrhd specifies . + */ + +#define UART_TXFIFO_EMPTY_INT_RAW (BIT(1)) +#define UART_TXFIFO_EMPTY_INT_RAW_M (UART_TXFIFO_EMPTY_INT_RAW_V << UART_TXFIFO_EMPTY_INT_RAW_S) +#define UART_TXFIFO_EMPTY_INT_RAW_V 0x00000001 +#define UART_TXFIFO_EMPTY_INT_RAW_S 1 + +/* UART_RXFIFO_FULL_INT_RAW : R/WTC/SS; bitpos: [0]; default: 0; + * This interrupt raw bit turns to high level when receiver receives more + * data than what rxfifo_full_thrhd specifies. + */ + +#define UART_RXFIFO_FULL_INT_RAW (BIT(0)) +#define UART_RXFIFO_FULL_INT_RAW_M (UART_RXFIFO_FULL_INT_RAW_V << UART_RXFIFO_FULL_INT_RAW_S) +#define UART_RXFIFO_FULL_INT_RAW_V 0x00000001 +#define UART_RXFIFO_FULL_INT_RAW_S 0 + +/* UART_INT_ST_REG register + * Masked interrupt status + */ + +#define UART_INT_ST_REG(i) (REG_UART_BASE(i) + 0x8) + +/* UART_WAKEUP_INT_ST : RO; bitpos: [19]; default: 0; + * This is the status bit for uart_wakeup_int_raw when uart_wakeup_int_ena + * is set to 1. + */ + +#define UART_WAKEUP_INT_ST (BIT(19)) +#define UART_WAKEUP_INT_ST_M (UART_WAKEUP_INT_ST_V << UART_WAKEUP_INT_ST_S) +#define UART_WAKEUP_INT_ST_V 0x00000001 +#define UART_WAKEUP_INT_ST_S 19 + +/* UART_AT_CMD_CHAR_DET_INT_ST : RO; bitpos: [18]; default: 0; + * This is the status bit for at_cmd_det_int_raw when + * at_cmd_char_det_int_ena is set to 1. + */ + +#define UART_AT_CMD_CHAR_DET_INT_ST (BIT(18)) +#define UART_AT_CMD_CHAR_DET_INT_ST_M (UART_AT_CMD_CHAR_DET_INT_ST_V << UART_AT_CMD_CHAR_DET_INT_ST_S) +#define UART_AT_CMD_CHAR_DET_INT_ST_V 0x00000001 +#define UART_AT_CMD_CHAR_DET_INT_ST_S 18 + +/* UART_RS485_CLASH_INT_ST : RO; bitpos: [17]; default: 0; + * This is the status bit for rs485_clash_int_raw when rs485_clash_int_ena + * is set to 1. + */ + +#define UART_RS485_CLASH_INT_ST (BIT(17)) +#define UART_RS485_CLASH_INT_ST_M (UART_RS485_CLASH_INT_ST_V << UART_RS485_CLASH_INT_ST_S) +#define UART_RS485_CLASH_INT_ST_V 0x00000001 +#define UART_RS485_CLASH_INT_ST_S 17 + +/* UART_RS485_FRM_ERR_INT_ST : RO; bitpos: [16]; default: 0; + * This is the status bit for rs485_frm_err_int_raw when + * rs485_fm_err_int_ena is set to 1. + */ + +#define UART_RS485_FRM_ERR_INT_ST (BIT(16)) +#define UART_RS485_FRM_ERR_INT_ST_M (UART_RS485_FRM_ERR_INT_ST_V << UART_RS485_FRM_ERR_INT_ST_S) +#define UART_RS485_FRM_ERR_INT_ST_V 0x00000001 +#define UART_RS485_FRM_ERR_INT_ST_S 16 + +/* UART_RS485_PARITY_ERR_INT_ST : RO; bitpos: [15]; default: 0; + * This is the status bit for rs485_parity_err_int_raw when + * rs485_parity_int_ena is set to 1. + */ + +#define UART_RS485_PARITY_ERR_INT_ST (BIT(15)) +#define UART_RS485_PARITY_ERR_INT_ST_M (UART_RS485_PARITY_ERR_INT_ST_V << UART_RS485_PARITY_ERR_INT_ST_S) +#define UART_RS485_PARITY_ERR_INT_ST_V 0x00000001 +#define UART_RS485_PARITY_ERR_INT_ST_S 15 + +/* UART_TX_DONE_INT_ST : RO; bitpos: [14]; default: 0; + * This is the status bit for tx_done_int_raw when tx_done_int_ena is set to + * 1. + */ + +#define UART_TX_DONE_INT_ST (BIT(14)) +#define UART_TX_DONE_INT_ST_M (UART_TX_DONE_INT_ST_V << UART_TX_DONE_INT_ST_S) +#define UART_TX_DONE_INT_ST_V 0x00000001 +#define UART_TX_DONE_INT_ST_S 14 + +/* UART_TX_BRK_IDLE_DONE_INT_ST : RO; bitpos: [13]; default: 0; + * This is the stauts bit for tx_brk_idle_done_int_raw when + * tx_brk_idle_done_int_ena is set to 1. + */ + +#define UART_TX_BRK_IDLE_DONE_INT_ST (BIT(13)) +#define UART_TX_BRK_IDLE_DONE_INT_ST_M (UART_TX_BRK_IDLE_DONE_INT_ST_V << UART_TX_BRK_IDLE_DONE_INT_ST_S) +#define UART_TX_BRK_IDLE_DONE_INT_ST_V 0x00000001 +#define UART_TX_BRK_IDLE_DONE_INT_ST_S 13 + +/* UART_TX_BRK_DONE_INT_ST : RO; bitpos: [12]; default: 0; + * This is the status bit for tx_brk_done_int_raw when tx_brk_done_int_ena + * is set to 1. + */ + +#define UART_TX_BRK_DONE_INT_ST (BIT(12)) +#define UART_TX_BRK_DONE_INT_ST_M (UART_TX_BRK_DONE_INT_ST_V << UART_TX_BRK_DONE_INT_ST_S) +#define UART_TX_BRK_DONE_INT_ST_V 0x00000001 +#define UART_TX_BRK_DONE_INT_ST_S 12 + +/* UART_GLITCH_DET_INT_ST : RO; bitpos: [11]; default: 0; + * This is the status bit for glitch_det_int_raw when glitch_det_int_ena is + * set to 1. + */ + +#define UART_GLITCH_DET_INT_ST (BIT(11)) +#define UART_GLITCH_DET_INT_ST_M (UART_GLITCH_DET_INT_ST_V << UART_GLITCH_DET_INT_ST_S) +#define UART_GLITCH_DET_INT_ST_V 0x00000001 +#define UART_GLITCH_DET_INT_ST_S 11 + +/* UART_SW_XOFF_INT_ST : RO; bitpos: [10]; default: 0; + * This is the status bit for sw_xoff_int_raw when sw_xoff_int_ena is set to + * 1. + */ + +#define UART_SW_XOFF_INT_ST (BIT(10)) +#define UART_SW_XOFF_INT_ST_M (UART_SW_XOFF_INT_ST_V << UART_SW_XOFF_INT_ST_S) +#define UART_SW_XOFF_INT_ST_V 0x00000001 +#define UART_SW_XOFF_INT_ST_S 10 + +/* UART_SW_XON_INT_ST : RO; bitpos: [9]; default: 0; + * This is the status bit for sw_xon_int_raw when sw_xon_int_ena is set to 1. + */ + +#define UART_SW_XON_INT_ST (BIT(9)) +#define UART_SW_XON_INT_ST_M (UART_SW_XON_INT_ST_V << UART_SW_XON_INT_ST_S) +#define UART_SW_XON_INT_ST_V 0x00000001 +#define UART_SW_XON_INT_ST_S 9 + +/* UART_RXFIFO_TOUT_INT_ST : RO; bitpos: [8]; default: 0; + * This is the status bit for rxfifo_tout_int_raw when rxfifo_tout_int_ena + * is set to 1. + */ + +#define UART_RXFIFO_TOUT_INT_ST (BIT(8)) +#define UART_RXFIFO_TOUT_INT_ST_M (UART_RXFIFO_TOUT_INT_ST_V << UART_RXFIFO_TOUT_INT_ST_S) +#define UART_RXFIFO_TOUT_INT_ST_V 0x00000001 +#define UART_RXFIFO_TOUT_INT_ST_S 8 + +/* UART_BRK_DET_INT_ST : RO; bitpos: [7]; default: 0; + * This is the status bit for brk_det_int_raw when brk_det_int_ena is set to + * 1. + */ + +#define UART_BRK_DET_INT_ST (BIT(7)) +#define UART_BRK_DET_INT_ST_M (UART_BRK_DET_INT_ST_V << UART_BRK_DET_INT_ST_S) +#define UART_BRK_DET_INT_ST_V 0x00000001 +#define UART_BRK_DET_INT_ST_S 7 + +/* UART_CTS_CHG_INT_ST : RO; bitpos: [6]; default: 0; + * This is the status bit for cts_chg_int_raw when cts_chg_int_ena is set to + * 1. + */ + +#define UART_CTS_CHG_INT_ST (BIT(6)) +#define UART_CTS_CHG_INT_ST_M (UART_CTS_CHG_INT_ST_V << UART_CTS_CHG_INT_ST_S) +#define UART_CTS_CHG_INT_ST_V 0x00000001 +#define UART_CTS_CHG_INT_ST_S 6 + +/* UART_DSR_CHG_INT_ST : RO; bitpos: [5]; default: 0; + * This is the status bit for dsr_chg_int_raw when dsr_chg_int_ena is set to + * 1. + */ + +#define UART_DSR_CHG_INT_ST (BIT(5)) +#define UART_DSR_CHG_INT_ST_M (UART_DSR_CHG_INT_ST_V << UART_DSR_CHG_INT_ST_S) +#define UART_DSR_CHG_INT_ST_V 0x00000001 +#define UART_DSR_CHG_INT_ST_S 5 + +/* UART_RXFIFO_OVF_INT_ST : RO; bitpos: [4]; default: 0; + * This is the status bit for rxfifo_ovf_int_raw when rxfifo_ovf_int_ena is + * set to 1. + */ + +#define UART_RXFIFO_OVF_INT_ST (BIT(4)) +#define UART_RXFIFO_OVF_INT_ST_M (UART_RXFIFO_OVF_INT_ST_V << UART_RXFIFO_OVF_INT_ST_S) +#define UART_RXFIFO_OVF_INT_ST_V 0x00000001 +#define UART_RXFIFO_OVF_INT_ST_S 4 + +/* UART_FRM_ERR_INT_ST : RO; bitpos: [3]; default: 0; + * This is the status bit for frm_err_int_raw when frm_err_int_ena is set to + * 1. + */ + +#define UART_FRM_ERR_INT_ST (BIT(3)) +#define UART_FRM_ERR_INT_ST_M (UART_FRM_ERR_INT_ST_V << UART_FRM_ERR_INT_ST_S) +#define UART_FRM_ERR_INT_ST_V 0x00000001 +#define UART_FRM_ERR_INT_ST_S 3 + +/* UART_PARITY_ERR_INT_ST : RO; bitpos: [2]; default: 0; + * This is the status bit for parity_err_int_raw when parity_err_int_ena is + * set to 1. + */ + +#define UART_PARITY_ERR_INT_ST (BIT(2)) +#define UART_PARITY_ERR_INT_ST_M (UART_PARITY_ERR_INT_ST_V << UART_PARITY_ERR_INT_ST_S) +#define UART_PARITY_ERR_INT_ST_V 0x00000001 +#define UART_PARITY_ERR_INT_ST_S 2 + +/* UART_TXFIFO_EMPTY_INT_ST : RO; bitpos: [1]; default: 0; + * This is the status bit for txfifo_empty_int_raw when + * txfifo_empty_int_ena is set to 1. + */ + +#define UART_TXFIFO_EMPTY_INT_ST (BIT(1)) +#define UART_TXFIFO_EMPTY_INT_ST_M (UART_TXFIFO_EMPTY_INT_ST_V << UART_TXFIFO_EMPTY_INT_ST_S) +#define UART_TXFIFO_EMPTY_INT_ST_V 0x00000001 +#define UART_TXFIFO_EMPTY_INT_ST_S 1 + +/* UART_RXFIFO_FULL_INT_ST : RO; bitpos: [0]; default: 0; + * This is the status bit for rxfifo_full_int_raw when rxfifo_full_int_ena + * is set to 1. + */ + +#define UART_RXFIFO_FULL_INT_ST (BIT(0)) +#define UART_RXFIFO_FULL_INT_ST_M (UART_RXFIFO_FULL_INT_ST_V << UART_RXFIFO_FULL_INT_ST_S) +#define UART_RXFIFO_FULL_INT_ST_V 0x00000001 +#define UART_RXFIFO_FULL_INT_ST_S 0 + +/* UART_INT_ENA_REG register + * Interrupt enable bits + */ + +#define UART_INT_ENA_REG(i) (REG_UART_BASE(i) + 0xc) + +/* UART_WAKEUP_INT_ENA : R/W; bitpos: [19]; default: 0; + * This is the enable bit for uart_wakeup_int_st register. + */ + +#define UART_WAKEUP_INT_ENA (BIT(19)) +#define UART_WAKEUP_INT_ENA_M (UART_WAKEUP_INT_ENA_V << UART_WAKEUP_INT_ENA_S) +#define UART_WAKEUP_INT_ENA_V 0x00000001 +#define UART_WAKEUP_INT_ENA_S 19 + +/* UART_AT_CMD_CHAR_DET_INT_ENA : R/W; bitpos: [18]; default: 0; + * This is the enable bit for at_cmd_char_det_int_st register. + */ + +#define UART_AT_CMD_CHAR_DET_INT_ENA (BIT(18)) +#define UART_AT_CMD_CHAR_DET_INT_ENA_M (UART_AT_CMD_CHAR_DET_INT_ENA_V << UART_AT_CMD_CHAR_DET_INT_ENA_S) +#define UART_AT_CMD_CHAR_DET_INT_ENA_V 0x00000001 +#define UART_AT_CMD_CHAR_DET_INT_ENA_S 18 + +/* UART_RS485_CLASH_INT_ENA : R/W; bitpos: [17]; default: 0; + * This is the enable bit for rs485_clash_int_st register. + */ + +#define UART_RS485_CLASH_INT_ENA (BIT(17)) +#define UART_RS485_CLASH_INT_ENA_M (UART_RS485_CLASH_INT_ENA_V << UART_RS485_CLASH_INT_ENA_S) +#define UART_RS485_CLASH_INT_ENA_V 0x00000001 +#define UART_RS485_CLASH_INT_ENA_S 17 + +/* UART_RS485_FRM_ERR_INT_ENA : R/W; bitpos: [16]; default: 0; + * This is the enable bit for rs485_parity_err_int_st register. + */ + +#define UART_RS485_FRM_ERR_INT_ENA (BIT(16)) +#define UART_RS485_FRM_ERR_INT_ENA_M (UART_RS485_FRM_ERR_INT_ENA_V << UART_RS485_FRM_ERR_INT_ENA_S) +#define UART_RS485_FRM_ERR_INT_ENA_V 0x00000001 +#define UART_RS485_FRM_ERR_INT_ENA_S 16 + +/* UART_RS485_PARITY_ERR_INT_ENA : R/W; bitpos: [15]; default: 0; + * This is the enable bit for rs485_parity_err_int_st register. + */ + +#define UART_RS485_PARITY_ERR_INT_ENA (BIT(15)) +#define UART_RS485_PARITY_ERR_INT_ENA_M (UART_RS485_PARITY_ERR_INT_ENA_V << UART_RS485_PARITY_ERR_INT_ENA_S) +#define UART_RS485_PARITY_ERR_INT_ENA_V 0x00000001 +#define UART_RS485_PARITY_ERR_INT_ENA_S 15 + +/* UART_TX_DONE_INT_ENA : R/W; bitpos: [14]; default: 0; + * This is the enable bit for tx_done_int_st register. + */ + +#define UART_TX_DONE_INT_ENA (BIT(14)) +#define UART_TX_DONE_INT_ENA_M (UART_TX_DONE_INT_ENA_V << UART_TX_DONE_INT_ENA_S) +#define UART_TX_DONE_INT_ENA_V 0x00000001 +#define UART_TX_DONE_INT_ENA_S 14 + +/* UART_TX_BRK_IDLE_DONE_INT_ENA : R/W; bitpos: [13]; default: 0; + * This is the enable bit for tx_brk_idle_done_int_st register. + */ + +#define UART_TX_BRK_IDLE_DONE_INT_ENA (BIT(13)) +#define UART_TX_BRK_IDLE_DONE_INT_ENA_M (UART_TX_BRK_IDLE_DONE_INT_ENA_V << UART_TX_BRK_IDLE_DONE_INT_ENA_S) +#define UART_TX_BRK_IDLE_DONE_INT_ENA_V 0x00000001 +#define UART_TX_BRK_IDLE_DONE_INT_ENA_S 13 + +/* UART_TX_BRK_DONE_INT_ENA : R/W; bitpos: [12]; default: 0; + * This is the enable bit for tx_brk_done_int_st register. + */ + +#define UART_TX_BRK_DONE_INT_ENA (BIT(12)) +#define UART_TX_BRK_DONE_INT_ENA_M (UART_TX_BRK_DONE_INT_ENA_V << UART_TX_BRK_DONE_INT_ENA_S) +#define UART_TX_BRK_DONE_INT_ENA_V 0x00000001 +#define UART_TX_BRK_DONE_INT_ENA_S 12 + +/* UART_GLITCH_DET_INT_ENA : R/W; bitpos: [11]; default: 0; + * This is the enable bit for glitch_det_int_st register. + */ + +#define UART_GLITCH_DET_INT_ENA (BIT(11)) +#define UART_GLITCH_DET_INT_ENA_M (UART_GLITCH_DET_INT_ENA_V << UART_GLITCH_DET_INT_ENA_S) +#define UART_GLITCH_DET_INT_ENA_V 0x00000001 +#define UART_GLITCH_DET_INT_ENA_S 11 + +/* UART_SW_XOFF_INT_ENA : R/W; bitpos: [10]; default: 0; + * This is the enable bit for sw_xoff_int_st register. + */ + +#define UART_SW_XOFF_INT_ENA (BIT(10)) +#define UART_SW_XOFF_INT_ENA_M (UART_SW_XOFF_INT_ENA_V << UART_SW_XOFF_INT_ENA_S) +#define UART_SW_XOFF_INT_ENA_V 0x00000001 +#define UART_SW_XOFF_INT_ENA_S 10 + +/* UART_SW_XON_INT_ENA : R/W; bitpos: [9]; default: 0; + * This is the enable bit for sw_xon_int_st register. + */ + +#define UART_SW_XON_INT_ENA (BIT(9)) +#define UART_SW_XON_INT_ENA_M (UART_SW_XON_INT_ENA_V << UART_SW_XON_INT_ENA_S) +#define UART_SW_XON_INT_ENA_V 0x00000001 +#define UART_SW_XON_INT_ENA_S 9 + +/* UART_RXFIFO_TOUT_INT_ENA : R/W; bitpos: [8]; default: 0; + * This is the enable bit for rxfifo_tout_int_st register. + */ + +#define UART_RXFIFO_TOUT_INT_ENA (BIT(8)) +#define UART_RXFIFO_TOUT_INT_ENA_M (UART_RXFIFO_TOUT_INT_ENA_V << UART_RXFIFO_TOUT_INT_ENA_S) +#define UART_RXFIFO_TOUT_INT_ENA_V 0x00000001 +#define UART_RXFIFO_TOUT_INT_ENA_S 8 + +/* UART_BRK_DET_INT_ENA : R/W; bitpos: [7]; default: 0; + * This is the enable bit for brk_det_int_st register. + */ + +#define UART_BRK_DET_INT_ENA (BIT(7)) +#define UART_BRK_DET_INT_ENA_M (UART_BRK_DET_INT_ENA_V << UART_BRK_DET_INT_ENA_S) +#define UART_BRK_DET_INT_ENA_V 0x00000001 +#define UART_BRK_DET_INT_ENA_S 7 + +/* UART_CTS_CHG_INT_ENA : R/W; bitpos: [6]; default: 0; + * This is the enable bit for cts_chg_int_st register. + */ + +#define UART_CTS_CHG_INT_ENA (BIT(6)) +#define UART_CTS_CHG_INT_ENA_M (UART_CTS_CHG_INT_ENA_V << UART_CTS_CHG_INT_ENA_S) +#define UART_CTS_CHG_INT_ENA_V 0x00000001 +#define UART_CTS_CHG_INT_ENA_S 6 + +/* UART_DSR_CHG_INT_ENA : R/W; bitpos: [5]; default: 0; + * This is the enable bit for dsr_chg_int_st register. + */ + +#define UART_DSR_CHG_INT_ENA (BIT(5)) +#define UART_DSR_CHG_INT_ENA_M (UART_DSR_CHG_INT_ENA_V << UART_DSR_CHG_INT_ENA_S) +#define UART_DSR_CHG_INT_ENA_V 0x00000001 +#define UART_DSR_CHG_INT_ENA_S 5 + +/* UART_RXFIFO_OVF_INT_ENA : R/W; bitpos: [4]; default: 0; + * This is the enable bit for rxfifo_ovf_int_st register. + */ + +#define UART_RXFIFO_OVF_INT_ENA (BIT(4)) +#define UART_RXFIFO_OVF_INT_ENA_M (UART_RXFIFO_OVF_INT_ENA_V << UART_RXFIFO_OVF_INT_ENA_S) +#define UART_RXFIFO_OVF_INT_ENA_V 0x00000001 +#define UART_RXFIFO_OVF_INT_ENA_S 4 + +/* UART_FRM_ERR_INT_ENA : R/W; bitpos: [3]; default: 0; + * This is the enable bit for frm_err_int_st register. + */ + +#define UART_FRM_ERR_INT_ENA (BIT(3)) +#define UART_FRM_ERR_INT_ENA_M (UART_FRM_ERR_INT_ENA_V << UART_FRM_ERR_INT_ENA_S) +#define UART_FRM_ERR_INT_ENA_V 0x00000001 +#define UART_FRM_ERR_INT_ENA_S 3 + +/* UART_PARITY_ERR_INT_ENA : R/W; bitpos: [2]; default: 0; + * This is the enable bit for parity_err_int_st register. + */ + +#define UART_PARITY_ERR_INT_ENA (BIT(2)) +#define UART_PARITY_ERR_INT_ENA_M (UART_PARITY_ERR_INT_ENA_V << UART_PARITY_ERR_INT_ENA_S) +#define UART_PARITY_ERR_INT_ENA_V 0x00000001 +#define UART_PARITY_ERR_INT_ENA_S 2 + +/* UART_TXFIFO_EMPTY_INT_ENA : R/W; bitpos: [1]; default: 0; + * This is the enable bit for txfifo_empty_int_st register. + */ + +#define UART_TXFIFO_EMPTY_INT_ENA (BIT(1)) +#define UART_TXFIFO_EMPTY_INT_ENA_M (UART_TXFIFO_EMPTY_INT_ENA_V << UART_TXFIFO_EMPTY_INT_ENA_S) +#define UART_TXFIFO_EMPTY_INT_ENA_V 0x00000001 +#define UART_TXFIFO_EMPTY_INT_ENA_S 1 + +/* UART_RXFIFO_FULL_INT_ENA : R/W; bitpos: [0]; default: 0; + * This is the enable bit for rxfifo_full_int_st register. + */ + +#define UART_RXFIFO_FULL_INT_ENA (BIT(0)) +#define UART_RXFIFO_FULL_INT_ENA_M (UART_RXFIFO_FULL_INT_ENA_V << UART_RXFIFO_FULL_INT_ENA_S) +#define UART_RXFIFO_FULL_INT_ENA_V 0x00000001 +#define UART_RXFIFO_FULL_INT_ENA_S 0 + +/* UART_WAKEUP_INT_CLR : WT; bitpos: [19]; default: 0; + * Set this bit to clear the uart_wakeup_int_raw interrupt. + */ + +#define UART_WAKEUP_INT_CLR (BIT(19)) +#define UART_WAKEUP_INT_CLR_M (UART_WAKEUP_INT_CLR_V << UART_WAKEUP_INT_CLR_S) +#define UART_WAKEUP_INT_CLR_V 0x00000001 +#define UART_WAKEUP_INT_CLR_S 19 + +/* UART_AT_CMD_CHAR_DET_INT_CLR : WT; bitpos: [18]; default: 0; + * Set this bit to clear the at_cmd_char_det_int_raw interrupt. + */ + +#define UART_AT_CMD_CHAR_DET_INT_CLR (BIT(18)) +#define UART_AT_CMD_CHAR_DET_INT_CLR_M (UART_AT_CMD_CHAR_DET_INT_CLR_V << UART_AT_CMD_CHAR_DET_INT_CLR_S) +#define UART_AT_CMD_CHAR_DET_INT_CLR_V 0x00000001 +#define UART_AT_CMD_CHAR_DET_INT_CLR_S 18 + +/* UART_RS485_CLASH_INT_CLR : WT; bitpos: [17]; default: 0; + * Set this bit to clear the rs485_clash_int_raw interrupt. + */ + +#define UART_RS485_CLASH_INT_CLR (BIT(17)) +#define UART_RS485_CLASH_INT_CLR_M (UART_RS485_CLASH_INT_CLR_V << UART_RS485_CLASH_INT_CLR_S) +#define UART_RS485_CLASH_INT_CLR_V 0x00000001 +#define UART_RS485_CLASH_INT_CLR_S 17 + +/* UART_RS485_FRM_ERR_INT_CLR : WT; bitpos: [16]; default: 0; + * Set this bit to clear the rs485_frm_err_int_raw interrupt. + */ + +#define UART_RS485_FRM_ERR_INT_CLR (BIT(16)) +#define UART_RS485_FRM_ERR_INT_CLR_M (UART_RS485_FRM_ERR_INT_CLR_V << UART_RS485_FRM_ERR_INT_CLR_S) +#define UART_RS485_FRM_ERR_INT_CLR_V 0x00000001 +#define UART_RS485_FRM_ERR_INT_CLR_S 16 + +/* UART_RS485_PARITY_ERR_INT_CLR : WT; bitpos: [15]; default: 0; + * Set this bit to clear the rs485_parity_err_int_raw interrupt. + */ + +#define UART_RS485_PARITY_ERR_INT_CLR (BIT(15)) +#define UART_RS485_PARITY_ERR_INT_CLR_M (UART_RS485_PARITY_ERR_INT_CLR_V << UART_RS485_PARITY_ERR_INT_CLR_S) +#define UART_RS485_PARITY_ERR_INT_CLR_V 0x00000001 +#define UART_RS485_PARITY_ERR_INT_CLR_S 15 + +/* UART_TX_DONE_INT_CLR : WT; bitpos: [14]; default: 0; + * Set this bit to clear the tx_done_int_raw interrupt. + */ + +#define UART_TX_DONE_INT_CLR (BIT(14)) +#define UART_TX_DONE_INT_CLR_M (UART_TX_DONE_INT_CLR_V << UART_TX_DONE_INT_CLR_S) +#define UART_TX_DONE_INT_CLR_V 0x00000001 +#define UART_TX_DONE_INT_CLR_S 14 + +/* UART_TX_BRK_IDLE_DONE_INT_CLR : WT; bitpos: [13]; default: 0; + * Set this bit to clear the tx_brk_idle_done_int_raw interrupt. + */ + +#define UART_TX_BRK_IDLE_DONE_INT_CLR (BIT(13)) +#define UART_TX_BRK_IDLE_DONE_INT_CLR_M (UART_TX_BRK_IDLE_DONE_INT_CLR_V << UART_TX_BRK_IDLE_DONE_INT_CLR_S) +#define UART_TX_BRK_IDLE_DONE_INT_CLR_V 0x00000001 +#define UART_TX_BRK_IDLE_DONE_INT_CLR_S 13 + +/* UART_TX_BRK_DONE_INT_CLR : WT; bitpos: [12]; default: 0; + * Set this bit to clear the tx_brk_done_int_raw interrupt.. + */ + +#define UART_TX_BRK_DONE_INT_CLR (BIT(12)) +#define UART_TX_BRK_DONE_INT_CLR_M (UART_TX_BRK_DONE_INT_CLR_V << UART_TX_BRK_DONE_INT_CLR_S) +#define UART_TX_BRK_DONE_INT_CLR_V 0x00000001 +#define UART_TX_BRK_DONE_INT_CLR_S 12 + +/* UART_GLITCH_DET_INT_CLR : WT; bitpos: [11]; default: 0; + * Set this bit to clear the glitch_det_int_raw interrupt. + */ + +#define UART_GLITCH_DET_INT_CLR (BIT(11)) +#define UART_GLITCH_DET_INT_CLR_M (UART_GLITCH_DET_INT_CLR_V << UART_GLITCH_DET_INT_CLR_S) +#define UART_GLITCH_DET_INT_CLR_V 0x00000001 +#define UART_GLITCH_DET_INT_CLR_S 11 + +/* UART_SW_XOFF_INT_CLR : WT; bitpos: [10]; default: 0; + * Set this bit to clear the sw_xoff_int_raw interrupt. + */ + +#define UART_SW_XOFF_INT_CLR (BIT(10)) +#define UART_SW_XOFF_INT_CLR_M (UART_SW_XOFF_INT_CLR_V << UART_SW_XOFF_INT_CLR_S) +#define UART_SW_XOFF_INT_CLR_V 0x00000001 +#define UART_SW_XOFF_INT_CLR_S 10 + +/* UART_SW_XON_INT_CLR : WT; bitpos: [9]; default: 0; + * Set this bit to clear the sw_xon_int_raw interrupt. + */ + +#define UART_SW_XON_INT_CLR (BIT(9)) +#define UART_SW_XON_INT_CLR_M (UART_SW_XON_INT_CLR_V << UART_SW_XON_INT_CLR_S) +#define UART_SW_XON_INT_CLR_V 0x00000001 +#define UART_SW_XON_INT_CLR_S 9 + +/* UART_RXFIFO_TOUT_INT_CLR : WT; bitpos: [8]; default: 0; + * Set this bit to clear the rxfifo_tout_int_raw interrupt. + */ + +#define UART_RXFIFO_TOUT_INT_CLR (BIT(8)) +#define UART_RXFIFO_TOUT_INT_CLR_M (UART_RXFIFO_TOUT_INT_CLR_V << UART_RXFIFO_TOUT_INT_CLR_S) +#define UART_RXFIFO_TOUT_INT_CLR_V 0x00000001 +#define UART_RXFIFO_TOUT_INT_CLR_S 8 + +/* UART_BRK_DET_INT_CLR : WT; bitpos: [7]; default: 0; + * Set this bit to clear the brk_det_int_raw interrupt. + */ + +#define UART_BRK_DET_INT_CLR (BIT(7)) +#define UART_BRK_DET_INT_CLR_M (UART_BRK_DET_INT_CLR_V << UART_BRK_DET_INT_CLR_S) +#define UART_BRK_DET_INT_CLR_V 0x00000001 +#define UART_BRK_DET_INT_CLR_S 7 + +/* UART_CTS_CHG_INT_CLR : WT; bitpos: [6]; default: 0; + * Set this bit to clear the cts_chg_int_raw interrupt. + */ + +#define UART_CTS_CHG_INT_CLR (BIT(6)) +#define UART_CTS_CHG_INT_CLR_M (UART_CTS_CHG_INT_CLR_V << UART_CTS_CHG_INT_CLR_S) +#define UART_CTS_CHG_INT_CLR_V 0x00000001 +#define UART_CTS_CHG_INT_CLR_S 6 + +/* UART_DSR_CHG_INT_CLR : WT; bitpos: [5]; default: 0; + * Set this bit to clear the dsr_chg_int_raw interrupt. + */ + +#define UART_DSR_CHG_INT_CLR (BIT(5)) +#define UART_DSR_CHG_INT_CLR_M (UART_DSR_CHG_INT_CLR_V << UART_DSR_CHG_INT_CLR_S) +#define UART_DSR_CHG_INT_CLR_V 0x00000001 +#define UART_DSR_CHG_INT_CLR_S 5 + +/* UART_RXFIFO_OVF_INT_CLR : WT; bitpos: [4]; default: 0; + * Set this bit to clear rxfifo_ovf_int_raw interrupt. + */ + +#define UART_RXFIFO_OVF_INT_CLR (BIT(4)) +#define UART_RXFIFO_OVF_INT_CLR_M (UART_RXFIFO_OVF_INT_CLR_V << UART_RXFIFO_OVF_INT_CLR_S) +#define UART_RXFIFO_OVF_INT_CLR_V 0x00000001 +#define UART_RXFIFO_OVF_INT_CLR_S 4 + +/* UART_FRM_ERR_INT_CLR : WT; bitpos: [3]; default: 0; + * Set this bit to clear frm_err_int_raw interrupt. + */ + +#define UART_FRM_ERR_INT_CLR (BIT(3)) +#define UART_FRM_ERR_INT_CLR_M (UART_FRM_ERR_INT_CLR_V << UART_FRM_ERR_INT_CLR_S) +#define UART_FRM_ERR_INT_CLR_V 0x00000001 +#define UART_FRM_ERR_INT_CLR_S 3 + +/* UART_PARITY_ERR_INT_CLR : WT; bitpos: [2]; default: 0; + * Set this bit to clear parity_err_int_raw interrupt. + */ + +#define UART_PARITY_ERR_INT_CLR (BIT(2)) +#define UART_PARITY_ERR_INT_CLR_M (UART_PARITY_ERR_INT_CLR_V << UART_PARITY_ERR_INT_CLR_S) +#define UART_PARITY_ERR_INT_CLR_V 0x00000001 +#define UART_PARITY_ERR_INT_CLR_S 2 + +/* UART_TXFIFO_EMPTY_INT_CLR : WT; bitpos: [1]; default: 0; + * Set this bit to clear txfifo_empty_int_raw interrupt. + */ + +#define UART_TXFIFO_EMPTY_INT_CLR (BIT(1)) +#define UART_TXFIFO_EMPTY_INT_CLR_M (UART_TXFIFO_EMPTY_INT_CLR_V << UART_TXFIFO_EMPTY_INT_CLR_S) +#define UART_TXFIFO_EMPTY_INT_CLR_V 0x00000001 +#define UART_TXFIFO_EMPTY_INT_CLR_S 1 + +/* UART_INT_CLR_REG register + * Interrupt clear bits + */ + +#define UART_INT_CLR_REG(i) (REG_UART_BASE(i) + 0x10) + +/* UART_RXFIFO_FULL_INT_CLR : WT; bitpos: [0]; default: 0; + * Set this bit to clear the rxfifo_full_int_raw interrupt. + */ + +#define UART_RXFIFO_FULL_INT_CLR (BIT(0)) +#define UART_RXFIFO_FULL_INT_CLR_M (UART_RXFIFO_FULL_INT_CLR_V << UART_RXFIFO_FULL_INT_CLR_S) +#define UART_RXFIFO_FULL_INT_CLR_V 0x00000001 +#define UART_RXFIFO_FULL_INT_CLR_S 0 + +/* UART_CLKDIV_REG register + * Clock divider configuration + */ + +#define UART_CLKDIV_REG(i) (REG_UART_BASE(i) + 0x14) + +/* UART_CLKDIV_FRAG : R/W; bitpos: [23:20]; default: 0; + * The decimal part of the frequency divider factor. + */ + +#define UART_CLKDIV_FRAG 0x0000000f +#define UART_CLKDIV_FRAG_M (UART_CLKDIV_FRAG_V << UART_CLKDIV_FRAG_S) +#define UART_CLKDIV_FRAG_V 0x0000000f +#define UART_CLKDIV_FRAG_S 20 + +/* Configuration Register */ + +/* UART_CLKDIV : R/W; bitpos: [11:0]; default: 694; + * The integral part of the frequency divider factor. + */ + +#define UART_CLKDIV 0x00000fff +#define UART_CLKDIV_M (UART_CLKDIV_V << UART_CLKDIV_S) +#define UART_CLKDIV_V 0x00000fff +#define UART_CLKDIV_S 0 + +/* UART_RX_FILT_REG register + * Rx Filter configuration + */ + +#define UART_RX_FILT_REG (DR_REG_UART_BASE + 0x18) + +/* UART_GLITCH_FILT_EN : R/W; bitpos: [8]; default: 0; + * Set this bit to enable Rx signal filter. + */ + +#define UART_GLITCH_FILT_EN (BIT(8)) +#define UART_GLITCH_FILT_EN_M (UART_GLITCH_FILT_EN_V << UART_GLITCH_FILT_EN_S) +#define UART_GLITCH_FILT_EN_V 0x00000001 +#define UART_GLITCH_FILT_EN_S 8 + +/* UART_GLITCH_FILT : R/W; bitpos: [7:0]; default: 8; + * when input pulse width is lower than this value, the pulse is ignored. + */ + +#define UART_GLITCH_FILT 0x000000ff +#define UART_GLITCH_FILT_M (UART_GLITCH_FILT_V << UART_GLITCH_FILT_S) +#define UART_GLITCH_FILT_V 0x000000ff +#define UART_GLITCH_FILT_S 0 + +/* UART_STATUS_REG register + * UART status register + */ + +#define UART_STATUS_REG(i) (REG_UART_BASE(i) + 0x1c) + +/* UART_TXD : RO; bitpos: [31]; default: 1; + * This bit represents the level of the internal uart txd signal. + */ + +#define UART_TXD (BIT(31)) +#define UART_TXD_M (UART_TXD_V << UART_TXD_S) +#define UART_TXD_V 0x00000001 +#define UART_TXD_S 31 + +/* UART_RTSN : RO; bitpos: [30]; default: 1; + * This bit represents the level of the internal uart rts signal. + */ + +#define UART_RTSN (BIT(30)) +#define UART_RTSN_M (UART_RTSN_V << UART_RTSN_S) +#define UART_RTSN_V 0x00000001 +#define UART_RTSN_S 30 + +/* UART_DTRN : RO; bitpos: [29]; default: 1; + * This bit represents the level of the internal uart dtr signal. + */ + +#define UART_DTRN (BIT(29)) +#define UART_DTRN_M (UART_DTRN_V << UART_DTRN_S) +#define UART_DTRN_V 0x00000001 +#define UART_DTRN_S 29 + +/* UART_TXFIFO_CNT : RO; bitpos: [25:16]; default: 0; + * Stores the byte number of data in Tx-FIFO. + */ + +#define UART_TXFIFO_CNT 0x000003ff +#define UART_TXFIFO_CNT_M (UART_TXFIFO_CNT_V << UART_TXFIFO_CNT_S) +#define UART_TXFIFO_CNT_V 0x000003ff +#define UART_TXFIFO_CNT_S 16 + +/* UART_RXD : RO; bitpos: [15]; default: 1; + * This register represent the level value of the internal uart rxd signal. + */ + +#define UART_RXD (BIT(15)) +#define UART_RXD_M (UART_RXD_V << UART_RXD_S) +#define UART_RXD_V 0x00000001 +#define UART_RXD_S 15 + +/* UART_CTSN : RO; bitpos: [14]; default: 1; + * This register represent the level value of the internal uart cts signal. + */ + +#define UART_CTSN (BIT(14)) +#define UART_CTSN_M (UART_CTSN_V << UART_CTSN_S) +#define UART_CTSN_V 0x00000001 +#define UART_CTSN_S 14 + +/* UART_DSRN : RO; bitpos: [13]; default: 0; + * The register represent the level value of the internal uart dsr signal. + */ + +#define UART_DSRN (BIT(13)) +#define UART_DSRN_M (UART_DSRN_V << UART_DSRN_S) +#define UART_DSRN_V 0x00000001 +#define UART_DSRN_S 13 + +/* UART_RXFIFO_CNT : RO; bitpos: [9:0]; default: 0; + * Stores the byte number of valid data in Rx-FIFO. + */ + +#define UART_RXFIFO_CNT 0x000003ff +#define UART_RXFIFO_CNT_M (UART_RXFIFO_CNT_V << UART_RXFIFO_CNT_S) +#define UART_RXFIFO_CNT_V 0x000003ff +#define UART_RXFIFO_CNT_S 0 + +/* UART_CONF0_REG register + * a + */ + +#define UART_CONF0_REG(i) (REG_UART_BASE(i) + 0x20) + +/* UART_MEM_CLK_EN : R/W; bitpos: [28]; default: 1; + * UART memory clock gate enable signal. + */ + +#define UART_MEM_CLK_EN (BIT(28)) +#define UART_MEM_CLK_EN_M (UART_MEM_CLK_EN_V << UART_MEM_CLK_EN_S) +#define UART_MEM_CLK_EN_V 0x00000001 +#define UART_MEM_CLK_EN_S 28 + +/* UART_AUTOBAUD_EN : R/W; bitpos: [27]; default: 0; + * This is the enable bit for detecting baudrate. + */ + +#define UART_AUTOBAUD_EN (BIT(27)) +#define UART_AUTOBAUD_EN_M (UART_AUTOBAUD_EN_V << UART_AUTOBAUD_EN_S) +#define UART_AUTOBAUD_EN_V 0x00000001 +#define UART_AUTOBAUD_EN_S 27 + +/* UART_ERR_WR_MASK : R/W; bitpos: [26]; default: 0; + * 1'h1: Receiver stops storing data into FIFO when data is wrong. 1'h0: + * Receiver stores the data even if the received data is wrong. + */ + +#define UART_ERR_WR_MASK (BIT(26)) +#define UART_ERR_WR_MASK_M (UART_ERR_WR_MASK_V << UART_ERR_WR_MASK_S) +#define UART_ERR_WR_MASK_V 0x00000001 +#define UART_ERR_WR_MASK_S 26 + +/* UART_CLK_EN : R/W; bitpos: [25]; default: 0; + * 1'h1: Force clock on for register. 1'h0: Support clock only when + * application writes registers. + */ + +#define UART_CLK_EN (BIT(25)) +#define UART_CLK_EN_M (UART_CLK_EN_V << UART_CLK_EN_S) +#define UART_CLK_EN_V 0x00000001 +#define UART_CLK_EN_S 25 + +/* UART_DTR_INV : R/W; bitpos: [24]; default: 0; + * Set this bit to inverse the level value of uart dtr signal. + */ + +#define UART_DTR_INV (BIT(24)) +#define UART_DTR_INV_M (UART_DTR_INV_V << UART_DTR_INV_S) +#define UART_DTR_INV_V 0x00000001 +#define UART_DTR_INV_S 24 + +/* UART_RTS_INV : R/W; bitpos: [23]; default: 0; + * Set this bit to inverse the level value of uart rts signal. + */ + +#define UART_RTS_INV (BIT(23)) +#define UART_RTS_INV_M (UART_RTS_INV_V << UART_RTS_INV_S) +#define UART_RTS_INV_V 0x00000001 +#define UART_RTS_INV_S 23 + +/* UART_TXD_INV : R/W; bitpos: [22]; default: 0; + * Set this bit to inverse the level value of uart txd signal. + */ + +#define UART_TXD_INV (BIT(22)) +#define UART_TXD_INV_M (UART_TXD_INV_V << UART_TXD_INV_S) +#define UART_TXD_INV_V 0x00000001 +#define UART_TXD_INV_S 22 + +/* UART_DSR_INV : R/W; bitpos: [21]; default: 0; + * Set this bit to inverse the level value of uart dsr signal. + */ + +#define UART_DSR_INV (BIT(21)) +#define UART_DSR_INV_M (UART_DSR_INV_V << UART_DSR_INV_S) +#define UART_DSR_INV_V 0x00000001 +#define UART_DSR_INV_S 21 + +/* UART_CTS_INV : R/W; bitpos: [20]; default: 0; + * Set this bit to inverse the level value of uart cts signal. + */ + +#define UART_CTS_INV (BIT(20)) +#define UART_CTS_INV_M (UART_CTS_INV_V << UART_CTS_INV_S) +#define UART_CTS_INV_V 0x00000001 +#define UART_CTS_INV_S 20 + +/* UART_RXD_INV : R/W; bitpos: [19]; default: 0; + * Set this bit to inverse the level value of uart rxd signal. + */ + +#define UART_RXD_INV (BIT(19)) +#define UART_RXD_INV_M (UART_RXD_INV_V << UART_RXD_INV_S) +#define UART_RXD_INV_V 0x00000001 +#define UART_RXD_INV_S 19 + +/* UART_TXFIFO_RST : R/W; bitpos: [18]; default: 0; + * Set this bit to reset the uart transmit-FIFO. + */ + +#define UART_TXFIFO_RST (BIT(18)) +#define UART_TXFIFO_RST_M (UART_TXFIFO_RST_V << UART_TXFIFO_RST_S) +#define UART_TXFIFO_RST_V 0x00000001 +#define UART_TXFIFO_RST_S 18 + +/* UART_RXFIFO_RST : R/W; bitpos: [17]; default: 0; + * Set this bit to reset the uart receive-FIFO. + */ + +#define UART_RXFIFO_RST (BIT(17)) +#define UART_RXFIFO_RST_M (UART_RXFIFO_RST_V << UART_RXFIFO_RST_S) +#define UART_RXFIFO_RST_V 0x00000001 +#define UART_RXFIFO_RST_S 17 + +/* UART_IRDA_EN : R/W; bitpos: [16]; default: 0; + * Set this bit to enable IrDA protocol. + */ + +#define UART_IRDA_EN (BIT(16)) +#define UART_IRDA_EN_M (UART_IRDA_EN_V << UART_IRDA_EN_S) +#define UART_IRDA_EN_V 0x00000001 +#define UART_IRDA_EN_S 16 + +/* UART_TX_FLOW_EN : R/W; bitpos: [15]; default: 0; + * Set this bit to enable flow control function for transmitter. + */ + +#define UART_TX_FLOW_EN (BIT(15)) +#define UART_TX_FLOW_EN_M (UART_TX_FLOW_EN_V << UART_TX_FLOW_EN_S) +#define UART_TX_FLOW_EN_V 0x00000001 +#define UART_TX_FLOW_EN_S 15 + +/* UART_LOOPBACK : R/W; bitpos: [14]; default: 0; + * Set this bit to enable uart loopback test mode. + */ + +#define UART_LOOPBACK (BIT(14)) +#define UART_LOOPBACK_M (UART_LOOPBACK_V << UART_LOOPBACK_S) +#define UART_LOOPBACK_V 0x00000001 +#define UART_LOOPBACK_S 14 + +/* UART_IRDA_RX_INV : R/W; bitpos: [13]; default: 0; + * Set this bit to invert the level of IrDA receiver. + */ + +#define UART_IRDA_RX_INV (BIT(13)) +#define UART_IRDA_RX_INV_M (UART_IRDA_RX_INV_V << UART_IRDA_RX_INV_S) +#define UART_IRDA_RX_INV_V 0x00000001 +#define UART_IRDA_RX_INV_S 13 + +/* UART_IRDA_TX_INV : R/W; bitpos: [12]; default: 0; + * Set this bit to invert the level of IrDA transmitter. + */ + +#define UART_IRDA_TX_INV (BIT(12)) +#define UART_IRDA_TX_INV_M (UART_IRDA_TX_INV_V << UART_IRDA_TX_INV_S) +#define UART_IRDA_TX_INV_V 0x00000001 +#define UART_IRDA_TX_INV_S 12 + +/* UART_IRDA_WCTL : R/W; bitpos: [11]; default: 0; + * 1'h1: The IrDA transmitter's 11th bit is the same as 10th bit. 1'h0: Set + * IrDA transmitter's 11th bit to 0. + */ + +#define UART_IRDA_WCTL (BIT(11)) +#define UART_IRDA_WCTL_M (UART_IRDA_WCTL_V << UART_IRDA_WCTL_S) +#define UART_IRDA_WCTL_V 0x00000001 +#define UART_IRDA_WCTL_S 11 + +/* UART_IRDA_TX_EN : R/W; bitpos: [10]; default: 0; + * This is the start enable bit for IrDA transmitter. + */ + +#define UART_IRDA_TX_EN (BIT(10)) +#define UART_IRDA_TX_EN_M (UART_IRDA_TX_EN_V << UART_IRDA_TX_EN_S) +#define UART_IRDA_TX_EN_V 0x00000001 +#define UART_IRDA_TX_EN_S 10 + +/* UART_IRDA_DPLX : R/W; bitpos: [9]; default: 0; + * Set this bit to enable IrDA loopback mode. + */ + +#define UART_IRDA_DPLX (BIT(9)) +#define UART_IRDA_DPLX_M (UART_IRDA_DPLX_V << UART_IRDA_DPLX_S) +#define UART_IRDA_DPLX_V 0x00000001 +#define UART_IRDA_DPLX_S 9 + +/* UART_TXD_BRK : R/W; bitpos: [8]; default: 0; + * Set this bit to enbale transmitter to send NULL when the process of + * sending data is done. + */ + +#define UART_TXD_BRK (BIT(8)) +#define UART_TXD_BRK_M (UART_TXD_BRK_V << UART_TXD_BRK_S) +#define UART_TXD_BRK_V 0x00000001 +#define UART_TXD_BRK_S 8 + +/* UART_SW_DTR : R/W; bitpos: [7]; default: 0; + * This register is used to configure the software dtr signal which is used + * in software flow control. + */ + +#define UART_SW_DTR (BIT(7)) +#define UART_SW_DTR_M (UART_SW_DTR_V << UART_SW_DTR_S) +#define UART_SW_DTR_V 0x00000001 +#define UART_SW_DTR_S 7 + +/* UART_SW_RTS : R/W; bitpos: [6]; default: 0; + * This register is used to configure the software rts signal which is used + * in software flow control. + */ + +#define UART_SW_RTS (BIT(6)) +#define UART_SW_RTS_M (UART_SW_RTS_V << UART_SW_RTS_S) +#define UART_SW_RTS_V 0x00000001 +#define UART_SW_RTS_S 6 + +/* UART_STOP_BIT_NUM : R/W; bitpos: [5:4]; default: 1; + * This register is used to set the length of stop bit. + */ + +#define UART_STOP_BIT_NUM 0x00000003 +#define UART_STOP_BIT_NUM_M (UART_STOP_BIT_NUM_V << UART_STOP_BIT_NUM_S) +#define UART_STOP_BIT_NUM_V 0x00000003 +#define UART_STOP_BIT_NUM_S 4 + +/* UART_BIT_NUM : R/W; bitpos: [3:2]; default: 3; + * This register is used to set the length of data. + */ + +#define UART_BIT_NUM 0x00000003 +#define UART_BIT_NUM_M (UART_BIT_NUM_V << UART_BIT_NUM_S) +#define UART_BIT_NUM_V 0x00000003 +#define UART_BIT_NUM_S 2 + +/* UART_PARITY_EN : R/W; bitpos: [1]; default: 0; + * Set this bit to enable uart parity check. + */ + +#define UART_PARITY_EN (BIT(1)) +#define UART_PARITY_EN_M (UART_PARITY_EN_V << UART_PARITY_EN_S) +#define UART_PARITY_EN_V 0x00000001 +#define UART_PARITY_EN_S 1 + +/* UART_PARITY : R/W; bitpos: [0]; default: 0; + * This register is used to configure the parity check mode. + */ + +#define UART_PARITY (BIT(0)) +#define UART_PARITY_M (UART_PARITY_V << UART_PARITY_S) +#define UART_PARITY_V 0x00000001 +#define UART_PARITY_S 0 + +/* UART_CONF1_REG register + * Configuration register 1 + */ + +#define UART_CONF1_REG(i) (REG_UART_BASE(i) + 0x24) + +/* UART_RX_TOUT_EN : R/W; bitpos: [23]; default: 0; + * This is the enble bit for uart receiver's timeout function. + */ + +#define UART_RX_TOUT_EN (BIT(23)) +#define UART_RX_TOUT_EN_M (UART_RX_TOUT_EN_V << UART_RX_TOUT_EN_S) +#define UART_RX_TOUT_EN_V 0x00000001 +#define UART_RX_TOUT_EN_S 23 + +/* UART_RX_FLOW_EN : R/W; bitpos: [22]; default: 0; + * This is the flow enable bit for UART receiver. + */ + +#define UART_RX_FLOW_EN (BIT(22)) +#define UART_RX_FLOW_EN_M (UART_RX_FLOW_EN_V << UART_RX_FLOW_EN_S) +#define UART_RX_FLOW_EN_V 0x00000001 +#define UART_RX_FLOW_EN_S 22 + +/* UART_RX_TOUT_FLOW_DIS : R/W; bitpos: [21]; default: 0; + * Set this bit to stop accumulating idle_cnt when hardware flow control + * works. + */ + +#define UART_RX_TOUT_FLOW_DIS (BIT(21)) +#define UART_RX_TOUT_FLOW_DIS_M (UART_RX_TOUT_FLOW_DIS_V << UART_RX_TOUT_FLOW_DIS_S) +#define UART_RX_TOUT_FLOW_DIS_V 0x00000001 +#define UART_RX_TOUT_FLOW_DIS_S 21 + +/* UART_DIS_RX_DAT_OVF : R/W; bitpos: [20]; default: 0; + * Disable UART Rx data overflow detect. + */ + +#define UART_DIS_RX_DAT_OVF (BIT(20)) +#define UART_DIS_RX_DAT_OVF_M (UART_DIS_RX_DAT_OVF_V << UART_DIS_RX_DAT_OVF_S) +#define UART_DIS_RX_DAT_OVF_V 0x00000001 +#define UART_DIS_RX_DAT_OVF_S 20 + +/* UART_TXFIFO_EMPTY_THRHD : R/W; bitpos: [19:10]; default: 96; + * It will produce txfifo_empty_int interrupt when the data amount in + * Tx-FIFO is less than this register value. + */ + +#define UART_TXFIFO_EMPTY_THRHD 0x000003ff +#define UART_TXFIFO_EMPTY_THRHD_M (UART_TXFIFO_EMPTY_THRHD_V << UART_TXFIFO_EMPTY_THRHD_S) +#define UART_TXFIFO_EMPTY_THRHD_V 0x000003ff +#define UART_TXFIFO_EMPTY_THRHD_S 10 + +/* UART_RXFIFO_FULL_THRHD : R/W; bitpos: [9:0]; default: 96; + * It will produce rxfifo_full_int interrupt when receiver receives more + * data than this register value. + */ + +#define UART_RXFIFO_FULL_THRHD 0x000003ff +#define UART_RXFIFO_FULL_THRHD_M (UART_RXFIFO_FULL_THRHD_V << UART_RXFIFO_FULL_THRHD_S) +#define UART_RXFIFO_FULL_THRHD_V 0x000003ff +#define UART_RXFIFO_FULL_THRHD_S 0 + +/* UART_LOWPULSE_REG register + * Autobaud minimum low pulse duration register + */ + +#define UART_LOWPULSE_REG (DR_REG_UART_BASE + 0x28) + +/* UART_LOWPULSE_MIN_CNT : RO; bitpos: [11:0]; default: 4095; + * This register stores the value of the minimum duration time of the low + * level pulse. It is used in baud rate-detect process. + */ + +#define UART_LOWPULSE_MIN_CNT 0x00000fff +#define UART_LOWPULSE_MIN_CNT_M (UART_LOWPULSE_MIN_CNT_V << UART_LOWPULSE_MIN_CNT_S) +#define UART_LOWPULSE_MIN_CNT_V 0x00000fff +#define UART_LOWPULSE_MIN_CNT_S 0 + +/* UART_HIGHPULSE_REG register + * Autobaud minimum high pulse duration register + */ + +#define UART_HIGHPULSE_REG (DR_REG_UART_BASE + 0x2c) + +/* UART_HIGHPULSE_MIN_CNT : RO; bitpos: [11:0]; default: 4095; + * This register stores the value of the maxinum duration time for the high + * level pulse. It is used in baud rate-detect process. + */ + +#define UART_HIGHPULSE_MIN_CNT 0x00000fff +#define UART_HIGHPULSE_MIN_CNT_M (UART_HIGHPULSE_MIN_CNT_V << UART_HIGHPULSE_MIN_CNT_S) +#define UART_HIGHPULSE_MIN_CNT_V 0x00000fff +#define UART_HIGHPULSE_MIN_CNT_S 0 + +/* UART_RXD_CNT_REG register + * Autobaud edge change count register + */ + +#define UART_RXD_CNT_REG (DR_REG_UART_BASE + 0x30) + +/* UART_RXD_EDGE_CNT : RO; bitpos: [9:0]; default: 0; + * This register stores the count of rxd edge change. It is used in baud + * rate-detect process. + */ + +#define UART_RXD_EDGE_CNT 0x000003ff +#define UART_RXD_EDGE_CNT_M (UART_RXD_EDGE_CNT_V << UART_RXD_EDGE_CNT_S) +#define UART_RXD_EDGE_CNT_V 0x000003ff +#define UART_RXD_EDGE_CNT_S 0 + +/* UART_FLOW_CONF_REG register + * Software flow-control configuration + */ + +#define UART_FLOW_CONF_REG (DR_REG_UART_BASE + 0x34) + +/* UART_SEND_XOFF : R/W/SS/SC; bitpos: [5]; default: 0; + * Set this bit to send Xoff char. It is cleared by hardware automatically. + */ + +#define UART_SEND_XOFF (BIT(5)) +#define UART_SEND_XOFF_M (UART_SEND_XOFF_V << UART_SEND_XOFF_S) +#define UART_SEND_XOFF_V 0x00000001 +#define UART_SEND_XOFF_S 5 + +/* UART_SEND_XON : R/W/SS/SC; bitpos: [4]; default: 0; + * Set this bit to send Xon char. It is cleared by hardware automatically. + */ + +#define UART_SEND_XON (BIT(4)) +#define UART_SEND_XON_M (UART_SEND_XON_V << UART_SEND_XON_S) +#define UART_SEND_XON_V 0x00000001 +#define UART_SEND_XON_S 4 + +/* UART_FORCE_XOFF : R/W; bitpos: [3]; default: 0; + * Set this bit to stop the transmitter from sending data. + */ + +#define UART_FORCE_XOFF (BIT(3)) +#define UART_FORCE_XOFF_M (UART_FORCE_XOFF_V << UART_FORCE_XOFF_S) +#define UART_FORCE_XOFF_V 0x00000001 +#define UART_FORCE_XOFF_S 3 + +/* UART_FORCE_XON : R/W; bitpos: [2]; default: 0; + * Set this bit to enable the transmitter to go on sending data. + */ + +#define UART_FORCE_XON (BIT(2)) +#define UART_FORCE_XON_M (UART_FORCE_XON_V << UART_FORCE_XON_S) +#define UART_FORCE_XON_V 0x00000001 +#define UART_FORCE_XON_S 2 + +/* UART_XONOFF_DEL : R/W; bitpos: [1]; default: 0; + * Set this bit to remove flow control char from the received data. + */ + +#define UART_XONOFF_DEL (BIT(1)) +#define UART_XONOFF_DEL_M (UART_XONOFF_DEL_V << UART_XONOFF_DEL_S) +#define UART_XONOFF_DEL_V 0x00000001 +#define UART_XONOFF_DEL_S 1 + +/* UART_SW_FLOW_CON_EN : R/W; bitpos: [0]; default: 0; + * Set this bit to enable software flow control. It is used with register + * sw_xon or sw_xoff. + */ + +#define UART_SW_FLOW_CON_EN (BIT(0)) +#define UART_SW_FLOW_CON_EN_M (UART_SW_FLOW_CON_EN_V << UART_SW_FLOW_CON_EN_S) +#define UART_SW_FLOW_CON_EN_V 0x00000001 +#define UART_SW_FLOW_CON_EN_S 0 + +/* UART_SLEEP_CONF_REG register + * Sleep-mode configuration + */ + +#define UART_SLEEP_CONF_REG (DR_REG_UART_BASE + 0x38) + +/* UART_ACTIVE_THRESHOLD : R/W; bitpos: [9:0]; default: 240; + * The uart is activated from light sleeping mode when the input rxd edge + * changes more times than this register value. + */ + +#define UART_ACTIVE_THRESHOLD 0x000003ff +#define UART_ACTIVE_THRESHOLD_M (UART_ACTIVE_THRESHOLD_V << UART_ACTIVE_THRESHOLD_S) +#define UART_ACTIVE_THRESHOLD_V 0x000003ff +#define UART_ACTIVE_THRESHOLD_S 0 + +/* UART_SWFC_CONF0_REG register + * Software flow-control character configuration + */ + +#define UART_SWFC_CONF0_REG (DR_REG_UART_BASE + 0x3c) + +/* UART_XOFF_CHAR : R/W; bitpos: [17:10]; default: 19; + * This register stores the Xoff flow control char. + */ + +#define UART_XOFF_CHAR 0x000000ff +#define UART_XOFF_CHAR_M (UART_XOFF_CHAR_V << UART_XOFF_CHAR_S) +#define UART_XOFF_CHAR_V 0x000000ff +#define UART_XOFF_CHAR_S 10 + +/* UART_XOFF_THRESHOLD : R/W; bitpos: [9:0]; default: 224; + * When the data amount in Rx-FIFO is more than this register value with + * uart_sw_flow_con_en set to 1, it will send a Xoff char. + */ + +#define UART_XOFF_THRESHOLD 0x000003ff +#define UART_XOFF_THRESHOLD_M (UART_XOFF_THRESHOLD_V << UART_XOFF_THRESHOLD_S) +#define UART_XOFF_THRESHOLD_V 0x000003ff +#define UART_XOFF_THRESHOLD_S 0 + +/* UART_SWFC_CONF1_REG register + * Software flow-control character configuration + */ + +#define UART_SWFC_CONF1_REG (DR_REG_UART_BASE + 0x40) + +/* UART_XON_CHAR : R/W; bitpos: [17:10]; default: 17; + * This register stores the Xon flow control char. + */ + +#define UART_XON_CHAR 0x000000ff +#define UART_XON_CHAR_M (UART_XON_CHAR_V << UART_XON_CHAR_S) +#define UART_XON_CHAR_V 0x000000ff +#define UART_XON_CHAR_S 10 + +/* UART_XON_THRESHOLD : R/W; bitpos: [9:0]; default: 0; + * When the data amount in Rx-FIFO is less than this register value with + * uart_sw_flow_con_en set to 1, it will send a Xon char. + */ + +#define UART_XON_THRESHOLD 0x000003ff +#define UART_XON_THRESHOLD_M (UART_XON_THRESHOLD_V << UART_XON_THRESHOLD_S) +#define UART_XON_THRESHOLD_V 0x000003ff +#define UART_XON_THRESHOLD_S 0 + +/* UART_TXBRK_CONF_REG register + * Tx Break character configuration + */ + +#define UART_TXBRK_CONF_REG (DR_REG_UART_BASE + 0x44) + +/* UART_TX_BRK_NUM : R/W; bitpos: [7:0]; default: 10; + * This register is used to configure the number of 0 to be sent after the + * process of sending data is done. It is active when txd_brk is set to 1. + */ + +#define UART_TX_BRK_NUM 0x000000ff +#define UART_TX_BRK_NUM_M (UART_TX_BRK_NUM_V << UART_TX_BRK_NUM_S) +#define UART_TX_BRK_NUM_V 0x000000ff +#define UART_TX_BRK_NUM_S 0 + +/* UART_IDLE_CONF_REG register + * Frame-end idle configuration + */ + +#define UART_IDLE_CONF_REG(i) (REG_UART_BASE(i) + 0x48) + +/* UART_TX_IDLE_NUM : R/W; bitpos: [19:10]; default: 256; + * This register is used to configure the duration time between transfers. + */ + +#define UART_TX_IDLE_NUM 0x000003ff +#define UART_TX_IDLE_NUM_M (UART_TX_IDLE_NUM_V << UART_TX_IDLE_NUM_S) +#define UART_TX_IDLE_NUM_V 0x000003ff +#define UART_TX_IDLE_NUM_S 10 + +/* UART_RX_IDLE_THRHD : R/W; bitpos: [9:0]; default: 256; + * It will produce frame end signal when receiver takes more time to receive + * one byte data than this register value. + */ + +#define UART_RX_IDLE_THRHD 0x000003ff +#define UART_RX_IDLE_THRHD_M (UART_RX_IDLE_THRHD_V << UART_RX_IDLE_THRHD_S) +#define UART_RX_IDLE_THRHD_V 0x000003ff +#define UART_RX_IDLE_THRHD_S 0 + +/* UART_RS485_CONF_REG register + * RS485 mode configuration + */ + +#define UART_RS485_CONF_REG(i) (REG_UART_BASE(i) + 0x4c) + +/* UART_RS485_TX_DLY_NUM : R/W; bitpos: [9:6]; default: 0; + * This register is used to delay the transmitter's internal data signal. + */ + +#define UART_RS485_TX_DLY_NUM 0x0000000f +#define UART_RS485_TX_DLY_NUM_M (UART_RS485_TX_DLY_NUM_V << UART_RS485_TX_DLY_NUM_S) +#define UART_RS485_TX_DLY_NUM_V 0x0000000f +#define UART_RS485_TX_DLY_NUM_S 6 + +/* UART_RS485_RX_DLY_NUM : R/W; bitpos: [5]; default: 0; + * This register is used to delay the receiver's internal data signal. + */ + +#define UART_RS485_RX_DLY_NUM (BIT(5)) +#define UART_RS485_RX_DLY_NUM_M (UART_RS485_RX_DLY_NUM_V << UART_RS485_RX_DLY_NUM_S) +#define UART_RS485_RX_DLY_NUM_V 0x00000001 +#define UART_RS485_RX_DLY_NUM_S 5 + +/* UART_RS485RXBY_TX_EN : R/W; bitpos: [4]; default: 0; + * 1'h1: enable rs485 transmitter to send data when rs485 receiver line is + * busy. + */ + +#define UART_RS485RXBY_TX_EN (BIT(4)) +#define UART_RS485RXBY_TX_EN_M (UART_RS485RXBY_TX_EN_V << UART_RS485RXBY_TX_EN_S) +#define UART_RS485RXBY_TX_EN_V 0x00000001 +#define UART_RS485RXBY_TX_EN_S 4 + +/* UART_RS485TX_RX_EN : R/W; bitpos: [3]; default: 0; + * Set this bit to enable receiver could receive data when the transmitter + * is transmitting data in rs485 mode. + */ + +#define UART_RS485TX_RX_EN (BIT(3)) +#define UART_RS485TX_RX_EN_M (UART_RS485TX_RX_EN_V << UART_RS485TX_RX_EN_S) +#define UART_RS485TX_RX_EN_V 0x00000001 +#define UART_RS485TX_RX_EN_S 3 + +/* UART_DL1_EN : R/W; bitpos: [2]; default: 0; + * Set this bit to delay the stop bit by 1 bit. + */ + +#define UART_DL1_EN (BIT(2)) +#define UART_DL1_EN_M (UART_DL1_EN_V << UART_DL1_EN_S) +#define UART_DL1_EN_V 0x00000001 +#define UART_DL1_EN_S 2 + +/* UART_DL0_EN : R/W; bitpos: [1]; default: 0; + * Set this bit to delay the stop bit by 1 bit. + */ + +#define UART_DL0_EN (BIT(1)) +#define UART_DL0_EN_M (UART_DL0_EN_V << UART_DL0_EN_S) +#define UART_DL0_EN_V 0x00000001 +#define UART_DL0_EN_S 1 + +/* UART_RS485_EN : R/W; bitpos: [0]; default: 0; + * Set this bit to choose the rs485 mode. + */ + +#define UART_RS485_EN (BIT(0)) +#define UART_RS485_EN_M (UART_RS485_EN_V << UART_RS485_EN_S) +#define UART_RS485_EN_V 0x00000001 +#define UART_RS485_EN_S 0 + +/* UART_AT_CMD_PRECNT_REG register + * Pre-sequence timing configuration + */ + +#define UART_AT_CMD_PRECNT_REG (DR_REG_UART_BASE + 0x50) + +/* UART_PRE_IDLE_NUM : R/W; bitpos: [15:0]; default: 2305; + * This register is used to configure the idle duration time before the + * first at_cmd is received by receiver. + */ + +#define UART_PRE_IDLE_NUM 0x0000ffff +#define UART_PRE_IDLE_NUM_M (UART_PRE_IDLE_NUM_V << UART_PRE_IDLE_NUM_S) +#define UART_PRE_IDLE_NUM_V 0x0000ffff +#define UART_PRE_IDLE_NUM_S 0 + +/* UART_AT_CMD_POSTCNT_REG register + * Post-sequence timing configuration + */ + +#define UART_AT_CMD_POSTCNT_REG (DR_REG_UART_BASE + 0x54) + +/* UART_POST_IDLE_NUM : R/W; bitpos: [15:0]; default: 2305; + * This register is used to configure the duration time between the last + * at_cmd and the next data. + */ + +#define UART_POST_IDLE_NUM 0x0000ffff +#define UART_POST_IDLE_NUM_M (UART_POST_IDLE_NUM_V << UART_POST_IDLE_NUM_S) +#define UART_POST_IDLE_NUM_V 0x0000ffff +#define UART_POST_IDLE_NUM_S 0 + +/* UART_AT_CMD_GAPTOUT_REG register + * Timeout configuration + */ + +#define UART_AT_CMD_GAPTOUT_REG (DR_REG_UART_BASE + 0x58) + +/* UART_RX_GAP_TOUT : R/W; bitpos: [15:0]; default: 11; + * This register is used to configure the duration time between the at_cmd + * chars. + */ + +#define UART_RX_GAP_TOUT 0x0000ffff +#define UART_RX_GAP_TOUT_M (UART_RX_GAP_TOUT_V << UART_RX_GAP_TOUT_S) +#define UART_RX_GAP_TOUT_V 0x0000ffff +#define UART_RX_GAP_TOUT_S 0 + +/* UART_AT_CMD_CHAR_REG register + * AT escape sequence detection configuration + */ + +#define UART_AT_CMD_CHAR_REG (DR_REG_UART_BASE + 0x5c) + +/* UART_CHAR_NUM : R/W; bitpos: [15:8]; default: 3; + * This register is used to configure the num of continuous at_cmd chars + * received by receiver. + */ + +#define UART_CHAR_NUM 0x000000ff +#define UART_CHAR_NUM_M (UART_CHAR_NUM_V << UART_CHAR_NUM_S) +#define UART_CHAR_NUM_V 0x000000ff +#define UART_CHAR_NUM_S 8 + +/* UART_AT_CMD_CHAR : R/W; bitpos: [7:0]; default: 43; + * This register is used to configure the content of at_cmd char. + */ + +#define UART_AT_CMD_CHAR 0x000000ff +#define UART_AT_CMD_CHAR_M (UART_AT_CMD_CHAR_V << UART_AT_CMD_CHAR_S) +#define UART_AT_CMD_CHAR_V 0x000000ff +#define UART_AT_CMD_CHAR_S 0 + +/* UART_MEM_CONF_REG register + * UART threshold and allocation configuration + */ + +#define UART_MEM_CONF_REG(i) (REG_UART_BASE(i) + 0x60) + +/* UART_MEM_FORCE_PU : R/W; bitpos: [28]; default: 0; + * Set this bit to force power up UART memory. + */ + +#define UART_MEM_FORCE_PU (BIT(28)) +#define UART_MEM_FORCE_PU_M (UART_MEM_FORCE_PU_V << UART_MEM_FORCE_PU_S) +#define UART_MEM_FORCE_PU_V 0x00000001 +#define UART_MEM_FORCE_PU_S 28 + +/* UART_MEM_FORCE_PD : R/W; bitpos: [27]; default: 0; + * Set this bit to force power down UART memory. + */ + +#define UART_MEM_FORCE_PD (BIT(27)) +#define UART_MEM_FORCE_PD_M (UART_MEM_FORCE_PD_V << UART_MEM_FORCE_PD_S) +#define UART_MEM_FORCE_PD_V 0x00000001 +#define UART_MEM_FORCE_PD_S 27 + +/* UART_RX_TOUT_THRHD : R/W; bitpos: [26:17]; default: 10; + * This register is used to configure the threshold time that receiver takes + * to receive one byte. The rxfifo_tout_int interrupt will be trigger when + * the receiver takes more time to receive one byte with rx_tout_en set to 1. + */ + +#define UART_RX_TOUT_THRHD 0x000003ff +#define UART_RX_TOUT_THRHD_M (UART_RX_TOUT_THRHD_V << UART_RX_TOUT_THRHD_S) +#define UART_RX_TOUT_THRHD_V 0x000003ff +#define UART_RX_TOUT_THRHD_S 17 + +/* UART_RX_FLOW_THRHD : R/W; bitpos: [16:7]; default: 0; + * This register is used to configure the maximum amount of data that can be + * received when hardware flow control works. + */ + +#define UART_RX_FLOW_THRHD 0x000003ff +#define UART_RX_FLOW_THRHD_M (UART_RX_FLOW_THRHD_V << UART_RX_FLOW_THRHD_S) +#define UART_RX_FLOW_THRHD_V 0x000003ff +#define UART_RX_FLOW_THRHD_S 7 + +/* UART_TX_SIZE : R/W; bitpos: [6:4]; default: 1; + * This register is used to configure the amount of mem allocated for + * transmit-FIFO. The default number is 128 bytes. + */ + +#define UART_TX_SIZE 0x00000007 +#define UART_TX_SIZE_M (UART_TX_SIZE_V << UART_TX_SIZE_S) +#define UART_TX_SIZE_V 0x00000007 +#define UART_TX_SIZE_S 4 + +/* UART_RX_SIZE : R/W; bitpos: [3:1]; default: 1; + * This register is used to configure the amount of mem allocated for + * receive-FIFO. The default number is 128 bytes. + */ + +#define UART_RX_SIZE 0x00000007 +#define UART_RX_SIZE_M (UART_RX_SIZE_V << UART_RX_SIZE_S) +#define UART_RX_SIZE_V 0x00000007 +#define UART_RX_SIZE_S 1 + +/* UART_MEM_TX_STATUS_REG register + * Tx-FIFO write and read offset address. + */ + +#define UART_MEM_TX_STATUS_REG (DR_REG_UART_BASE + 0x64) + +/* UART_TX_RADDR : RO; bitpos: [20:11]; default: 0; + * This register stores the offset address in Tx-FIFO when Tx-FSM reads data + * via Tx-FIFO_Ctrl. + */ + +#define UART_TX_RADDR 0x000003ff +#define UART_TX_RADDR_M (UART_TX_RADDR_V << UART_TX_RADDR_S) +#define UART_TX_RADDR_V 0x000003ff +#define UART_TX_RADDR_S 11 + +/* UART_APB_TX_WADDR : RO; bitpos: [9:0]; default: 0; + * This register stores the offset address in Tx-FIFO when software writes + * Tx-FIFO via APB. + */ + +#define UART_APB_TX_WADDR 0x000003ff +#define UART_APB_TX_WADDR_M (UART_APB_TX_WADDR_V << UART_APB_TX_WADDR_S) +#define UART_APB_TX_WADDR_V 0x000003ff +#define UART_APB_TX_WADDR_S 0 + +/* UART_MEM_RX_STATUS_REG register + * Rx-FIFO write and read offset address. + */ + +#define UART_MEM_RX_STATUS_REG (DR_REG_UART_BASE + 0x68) + +/* UART_RX_WADDR : RO; bitpos: [20:11]; default: 512; + * This register stores the offset address in Rx-FIFO when Rx-FIFO_Ctrl + * writes Rx-FIFO. UART0 is 10'h200. UART1 is 10'h280. UART2 is 10'h300. + */ + +#define UART_RX_WADDR 0x000003ff +#define UART_RX_WADDR_M (UART_RX_WADDR_V << UART_RX_WADDR_S) +#define UART_RX_WADDR_V 0x000003ff +#define UART_RX_WADDR_S 11 + +/* UART_APB_RX_RADDR : RO; bitpos: [9:0]; default: 512; + * This register stores the offset address in RX-FIFO when software reads + * data from Rx-FIFO via APB. UART0 is 10'h200. UART1 is 10'h280. UART2 is + * 10'h300. + */ + +#define UART_APB_RX_RADDR 0x000003ff +#define UART_APB_RX_RADDR_M (UART_APB_RX_RADDR_V << UART_APB_RX_RADDR_S) +#define UART_APB_RX_RADDR_V 0x000003ff +#define UART_APB_RX_RADDR_S 0 + +/* UART_FSM_STATUS_REG register + * UART transmit and receive status. + */ + +#define UART_FSM_STATUS_REG (DR_REG_UART_BASE + 0x6c) + +/* UART_ST_UTX_OUT : RO; bitpos: [7:4]; default: 0; + * This is the status register of transmitter. + */ + +#define UART_ST_UTX_OUT 0x0000000f +#define UART_ST_UTX_OUT_M (UART_ST_UTX_OUT_V << UART_ST_UTX_OUT_S) +#define UART_ST_UTX_OUT_V 0x0000000f +#define UART_ST_UTX_OUT_S 4 + +/* UART_ST_URX_OUT : RO; bitpos: [3:0]; default: 0; + * This is the status register of receiver. + */ + +#define UART_ST_URX_OUT 0x0000000f +#define UART_ST_URX_OUT_M (UART_ST_URX_OUT_V << UART_ST_URX_OUT_S) +#define UART_ST_URX_OUT_V 0x0000000f +#define UART_ST_URX_OUT_S 0 + +/* UART_POSPULSE_REG register + * Autobaud high pulse register + */ + +#define UART_POSPULSE_REG (DR_REG_UART_BASE + 0x70) + +/* UART_POSEDGE_MIN_CNT : RO; bitpos: [11:0]; default: 4095; + * This register stores the minimal input clock count between two positive + * edges. It is used in boudrate-detect process. + */ + +#define UART_POSEDGE_MIN_CNT 0x00000fff +#define UART_POSEDGE_MIN_CNT_M (UART_POSEDGE_MIN_CNT_V << UART_POSEDGE_MIN_CNT_S) +#define UART_POSEDGE_MIN_CNT_V 0x00000fff +#define UART_POSEDGE_MIN_CNT_S 0 + +/* UART_NEGPULSE_REG register + * Autobaud low pulse register + */ + +#define UART_NEGPULSE_REG (DR_REG_UART_BASE + 0x74) + +/* UART_NEGEDGE_MIN_CNT : RO; bitpos: [11:0]; default: 4095; + * This register stores the minimal input clock count between two negative + * edges. It is used in boudrate-detect process. + */ + +#define UART_NEGEDGE_MIN_CNT 0x00000fff +#define UART_NEGEDGE_MIN_CNT_M (UART_NEGEDGE_MIN_CNT_V << UART_NEGEDGE_MIN_CNT_S) +#define UART_NEGEDGE_MIN_CNT_V 0x00000fff +#define UART_NEGEDGE_MIN_CNT_S 0 + +/* UART_CLK_CONF_REG register + * UART core clock configuration + */ + +#define UART_CLK_CONF_REG(i) (REG_UART_BASE(i) + 0x78) + +/* UART_RX_RST_CORE : R/W; bitpos: [27]; default: 0; + * Write 1 then write 0 to this bit, reset UART Rx. + */ + +#define UART_RX_RST_CORE (BIT(27)) +#define UART_RX_RST_CORE_M (UART_RX_RST_CORE_V << UART_RX_RST_CORE_S) +#define UART_RX_RST_CORE_V 0x00000001 +#define UART_RX_RST_CORE_S 27 + +/* UART_TX_RST_CORE : R/W; bitpos: [26]; default: 0; + * Write 1 then write 0 to this bit, reset UART Tx. + */ + +#define UART_TX_RST_CORE (BIT(26)) +#define UART_TX_RST_CORE_M (UART_TX_RST_CORE_V << UART_TX_RST_CORE_S) +#define UART_TX_RST_CORE_V 0x00000001 +#define UART_TX_RST_CORE_S 26 + +/* UART_RX_SCLK_EN : R/W; bitpos: [25]; default: 1; + * Set this bit to enable UART Rx clock. + */ + +#define UART_RX_SCLK_EN (BIT(25)) +#define UART_RX_SCLK_EN_M (UART_RX_SCLK_EN_V << UART_RX_SCLK_EN_S) +#define UART_RX_SCLK_EN_V 0x00000001 +#define UART_RX_SCLK_EN_S 25 + +/* UART_TX_SCLK_EN : R/W; bitpos: [24]; default: 1; + * Set this bit to enable UART Tx clock. + */ + +#define UART_TX_SCLK_EN (BIT(24)) +#define UART_TX_SCLK_EN_M (UART_TX_SCLK_EN_V << UART_TX_SCLK_EN_S) +#define UART_TX_SCLK_EN_V 0x00000001 +#define UART_TX_SCLK_EN_S 24 + +/* UART_RST_CORE : R/W; bitpos: [23]; default: 0; + * Write 1 then write 0 to this bit, reset UART Tx/Rx. + */ + +#define UART_RST_CORE (BIT(23)) +#define UART_RST_CORE_M (UART_RST_CORE_V << UART_RST_CORE_S) +#define UART_RST_CORE_V 0x00000001 +#define UART_RST_CORE_S 23 + +/* UART_SCLK_EN : R/W; bitpos: [22]; default: 1; + * Set this bit to enable UART Tx/Rx clock. + */ + +#define UART_SCLK_EN (BIT(22)) +#define UART_SCLK_EN_M (UART_SCLK_EN_V << UART_SCLK_EN_S) +#define UART_SCLK_EN_V 0x00000001 +#define UART_SCLK_EN_S 22 + +/* UART_SCLK_SEL : R/W; bitpos: [21:20]; default: 3; + * UART clock source select. 1: 80Mhz, 2: 8Mhz, 3: XTAL. + */ + +#define UART_SCLK_SEL 0x00000003 +#define UART_SCLK_SEL_M (UART_SCLK_SEL_V << UART_SCLK_SEL_S) +#define UART_SCLK_SEL_V 0x00000003 +#define UART_SCLK_SEL_S 20 + +/* UART_SCLK_DIV_NUM : R/W; bitpos: [19:12]; default: 1; + * The integral part of the frequency divider factor. + */ + +#define UART_SCLK_DIV_NUM 0x000000ff +#define UART_SCLK_DIV_NUM_M (UART_SCLK_DIV_NUM_V << UART_SCLK_DIV_NUM_S) +#define UART_SCLK_DIV_NUM_V 0x000000ff +#define UART_SCLK_DIV_NUM_S 12 + +/* UART_SCLK_DIV_A : R/W; bitpos: [11:6]; default: 0; + * The numerator of the frequency divider factor. + */ + +#define UART_SCLK_DIV_A 0x0000003f +#define UART_SCLK_DIV_A_M (UART_SCLK_DIV_A_V << UART_SCLK_DIV_A_S) +#define UART_SCLK_DIV_A_V 0x0000003f +#define UART_SCLK_DIV_A_S 6 + +/* UART_SCLK_DIV_B : R/W; bitpos: [5:0]; default: 0; + * The denominator of the frequency divider factor. + */ + +#define UART_SCLK_DIV_B 0x0000003f +#define UART_SCLK_DIV_B_M (UART_SCLK_DIV_B_V << UART_SCLK_DIV_B_S) +#define UART_SCLK_DIV_B_V 0x0000003f +#define UART_SCLK_DIV_B_S 0 + +/* UART_DATE_REG register + * UART Version register + */ + +#define UART_DATE_REG (DR_REG_UART_BASE + 0x7c) + +/* UART_DATE : R/W; bitpos: [31:0]; default: 33587824; + * This is the version register. + */ + +#define UART_DATE 0xffffffff +#define UART_DATE_M (UART_DATE_V << UART_DATE_S) +#define UART_DATE_V 0xffffffff +#define UART_DATE_S 0 + +/* UART_ID_REG register + * UART ID register + */ + +#define UART_ID_REG (DR_REG_UART_BASE + 0x80) + +/* UART_REG_UPDATE : R/W/SC; bitpos: [31]; default: 0; + * Software write 1 would synchronize registers into UART Core clock domain + * and would be cleared by hardware after synchronization is done. + */ + +#define UART_REG_UPDATE (BIT(31)) +#define UART_REG_UPDATE_M (UART_REG_UPDATE_V << UART_REG_UPDATE_S) +#define UART_REG_UPDATE_V 0x00000001 +#define UART_REG_UPDATE_S 31 + +/* UART_HIGH_SPEED : R/W; bitpos: [30]; default: 1; + * This bit used to select synchronize mode. 1: Registers are auto + * synchronized into UART Core clock and UART core should be keep the same + * with APB clock. 0: After configure registers, software needs to write 1 + * to UART_REG_UPDATE to synchronize registers. + */ + +#define UART_HIGH_SPEED (BIT(30)) +#define UART_HIGH_SPEED_M (UART_HIGH_SPEED_V << UART_HIGH_SPEED_S) +#define UART_HIGH_SPEED_V 0x00000001 +#define UART_HIGH_SPEED_S 30 + +/* UART_ID : R/W; bitpos: [29:0]; default: 1280; + * This register is used to configure the uart_id. + */ + +#define UART_ID 0x3fffffff +#define UART_ID_M (UART_ID_V << UART_ID_S) +#define UART_ID_V 0x3fffffff +#define UART_ID_S 0 + +#endif /* __ARCH_XTENSA_SRC_ESP32S3_HARDWARE_ESP32S3_UART_H */ diff --git a/arch/xtensa/src/lx7/Toolchain.defs b/arch/xtensa/src/lx7/Toolchain.defs index 9e78bbd35b..b7eb6b11d2 100644 --- a/arch/xtensa/src/lx7/Toolchain.defs +++ b/arch/xtensa/src/lx7/Toolchain.defs @@ -38,7 +38,7 @@ ifeq ($(CONFIG_XTENSA_TOOLCHAIN_XCLANG), y) endif ifeq ($(CONFIG_XTENSA_TOOLCHAIN_ESP), y) - CROSSDEV = xtensa-esp32s2-elf- + CROSSDEV = xtensa-$(CONFIG_ARCH_CHIP)-elf- endif ARCHCPUFLAGS = diff --git a/boards/Kconfig b/boards/Kconfig index b40637c36c..184f862ce6 100644 --- a/boards/Kconfig +++ b/boards/Kconfig @@ -279,6 +279,17 @@ config ARCH_BOARD_ESP32S2_SAOLA_1 ---help--- This is the ESP32-S2-Saola-1 board +config ARCH_BOARD_ESP32S3_DEVKIT + bool "Espressif ESP32-S3 DevKit" + depends on ARCH_CHIP_ESP32S3WROOM1 || ARCH_CHIP_ESP32S3MINI1 + select ARCH_HAVE_LEDS + ---help--- + The ESP32-S3 DevKit features the ESP32-S3 CPU with dual Xtensa LX7 cores. + It comes in two flavors, the ESP32-S3-DevKitM-1 and the ESP32-S3-DevKitC-1. + The ESP32-C3-DevKitM-1 version contains the ESP32-S3-MINI-1/1U module and the + ESP32-S3-DevKitC-1 version may be based either on ESP32-S3-WROOM-1/1U or + ESP32-S3-WROOM-2/2U. + config ARCH_BOARD_ET_STM32_STAMP bool "Futurlec: ET-STM32 Stamp" depends on ARCH_CHIP_STM32F103RE @@ -2401,6 +2412,7 @@ config ARCH_BOARD default "esp32-wrover-kit" if ARCH_BOARD_ESP32_WROVERKIT default "esp32c3-devkit" if ARCH_BOARD_ESP32C3_DEVKIT default "esp32s2-saola-1" if ARCH_BOARD_ESP32S2_SAOLA_1 + default "esp32s3-devkit" if ARCH_BOARD_ESP32S3_DEVKIT default "et-stm32-stamp" if ARCH_BOARD_ET_STM32_STAMP default "ez80f910200kitg" if ARCH_BOARD_EZ80F910200KITG default "ez80f910200zco" if ARCH_BOARD_EZ80F910200ZCO @@ -3282,6 +3294,12 @@ endif if ARCH_BOARD_ESP32S2_SAOLA_1 source "boards/xtensa/esp32s2/esp32s2-saola-1/Kconfig" endif +if ARCH_CHIP_ESP32S3 && !ARCH_BOARD_CUSTOM +source "boards/xtensa/esp32s3/common/Kconfig" +endif +if ARCH_BOARD_ESP32S3_DEVKIT +source "boards/xtensa/esp32s3/esp32s3-devkit/Kconfig" +endif if ARCH_BOARD_SIM source "boards/sim/sim/sim/Kconfig" endif diff --git a/boards/xtensa/esp32s3/common/Kconfig b/boards/xtensa/esp32s3/common/Kconfig new file mode 100644 index 0000000000..d22831a996 --- /dev/null +++ b/boards/xtensa/esp32s3/common/Kconfig @@ -0,0 +1,13 @@ +# +# For a description of the syntax of this configuration file, +# see the file kconfig-language.txt in the NuttX tools repository. +# + +config ESP32S3_MERGE_BINS + bool "Merge raw binary files into a single file" + default n + ---help--- + Merge the raw binary files into a single file for flashing to the + device. + This is only useful when the path to binary files (e.g. bootloader) + is provided via the ESPTOOL_BINDIR variable. diff --git a/boards/xtensa/esp32s3/common/Makefile b/boards/xtensa/esp32s3/common/Makefile new file mode 100644 index 0000000000..4754e44aee --- /dev/null +++ b/boards/xtensa/esp32s3/common/Makefile @@ -0,0 +1,33 @@ +############################################################################# +# boards/xtensa/esp32s3/common/Makefile +# +# Licensed to the Apache Software Foundation (ASF) under one or more +# contributor license agreements. See the NOTICE file distributed with +# this work for additional information regarding copyright ownership. The +# ASF licenses this file to you under the Apache License, Version 2.0 (the +# "License"); you may not use this file except in compliance with the +# License. You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, WITHOUT +# WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the +# License for the specific language governing permissions and limitations +# under the License. +# +############################################################################# + +include $(TOPDIR)/Make.defs + +include board/Make.defs +include src/Make.defs + +DEPPATH += --dep-path board +DEPPATH += --dep-path src + +include $(TOPDIR)/boards/Board.mk + +ARCHSRCDIR = $(TOPDIR)$(DELIM)arch$(DELIM)$(CONFIG_ARCH)$(DELIM)src +BOARDDIR = $(ARCHSRCDIR)$(DELIM)board +CFLAGS += $(shell $(INCDIR) "$(CC)" $(BOARDDIR)$(DELIM)include) diff --git a/boards/xtensa/esp32s3/common/src/Make.defs b/boards/xtensa/esp32s3/common/src/Make.defs new file mode 100644 index 0000000000..3cadbb4afc --- /dev/null +++ b/boards/xtensa/esp32s3/common/src/Make.defs @@ -0,0 +1,23 @@ +############################################################################# +# boards/xtensa/esp32s3/common/src/Make.defs +# +# Licensed to the Apache Software Foundation (ASF) under one or more +# contributor license agreements. See the NOTICE file distributed with +# this work for additional information regarding copyright ownership. The +# ASF licenses this file to you under the Apache License, Version 2.0 (the +# "License"); you may not use this file except in compliance with the +# License. You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, WITHOUT +# WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the +# License for the specific language governing permissions and limitations +# under the License. +# +############################################################################# + +DEPPATH += --dep-path src +VPATH += :src +CFLAGS += $(shell $(INCDIR) "$(CC)" $(TOPDIR)$(DELIM)arch$(DELIM)$(CONFIG_ARCH)$(DELIM)src$(DELIM)board$(DELIM)src) diff --git a/boards/xtensa/esp32s3/esp32s3-devkit/Kconfig b/boards/xtensa/esp32s3/esp32s3-devkit/Kconfig new file mode 100644 index 0000000000..24d2ea1144 --- /dev/null +++ b/boards/xtensa/esp32s3/esp32s3-devkit/Kconfig @@ -0,0 +1,8 @@ +# +# For a description of the syntax of this configuration file, +# see the file kconfig-language.txt in the NuttX tools repository. +# + +if ARCH_BOARD_ESP32S3_DEVKIT + +endif # ARCH_BOARD_ESP32S3_DEVKIT diff --git a/boards/xtensa/esp32s3/esp32s3-devkit/configs/nsh/defconfig b/boards/xtensa/esp32s3/esp32s3-devkit/configs/nsh/defconfig new file mode 100644 index 0000000000..08931e3b38 --- /dev/null +++ b/boards/xtensa/esp32s3/esp32s3-devkit/configs/nsh/defconfig @@ -0,0 +1,48 @@ +# +# This file is autogenerated: PLEASE DO NOT EDIT IT. +# +# You can use "make menuconfig" to make any modifications to the installed .config file. +# You can then do "make savedefconfig" to generate a new defconfig file that includes your +# modifications. +# +# CONFIG_ARCH_LEDS is not set +# CONFIG_NSH_ARGCAT is not set +# CONFIG_NSH_CMDOPT_HEXDUMP is not set +# CONFIG_NSH_CMDPARMS is not set +CONFIG_ARCH="xtensa" +CONFIG_ARCH_BOARD="esp32s3-devkit" +CONFIG_ARCH_BOARD_ESP32S3_DEVKIT=y +CONFIG_ARCH_CHIP="esp32s3" +CONFIG_ARCH_CHIP_ESP32S3=y +CONFIG_ARCH_CHIP_ESP32S3WROOM1=y +CONFIG_ARCH_STACKDUMP=y +CONFIG_ARCH_XTENSA=y +CONFIG_BOARD_LOOPSPERMSEC=16717 +CONFIG_BUILTIN=y +CONFIG_DEBUG_FULLOPT=y +CONFIG_DEBUG_SYMBOLS=y +CONFIG_ESP32S3_UART0=y +CONFIG_FS_PROCFS=y +CONFIG_HAVE_CXX=y +CONFIG_HAVE_CXXINITIALIZE=y +CONFIG_IDLETHREAD_STACKSIZE=3072 +CONFIG_INIT_ENTRYPOINT="nsh_main" +CONFIG_INTELHEX_BINARY=y +CONFIG_MM_REGIONS=3 +CONFIG_NSH_ARCHINIT=y +CONFIG_NSH_BUILTIN_APPS=y +CONFIG_NSH_FILEIOSIZE=512 +CONFIG_NSH_LINELEN=64 +CONFIG_NSH_READLINE=y +CONFIG_PREALLOC_TIMERS=4 +CONFIG_RAM_SIZE=114688 +CONFIG_RAM_START=0x20000000 +CONFIG_RAW_BINARY=y +CONFIG_RR_INTERVAL=200 +CONFIG_SCHED_WAITPID=y +CONFIG_SDCLONE_DISABLE=y +CONFIG_START_DAY=6 +CONFIG_START_MONTH=12 +CONFIG_START_YEAR=2011 +CONFIG_SYSTEM_NSH=y +CONFIG_UART0_SERIAL_CONSOLE=y diff --git a/boards/xtensa/esp32s3/esp32s3-devkit/include/board.h b/boards/xtensa/esp32s3/esp32s3-devkit/include/board.h new file mode 100644 index 0000000000..727da875b6 --- /dev/null +++ b/boards/xtensa/esp32s3/esp32s3-devkit/include/board.h @@ -0,0 +1,73 @@ +/**************************************************************************** + * boards/xtensa/esp32s3/esp32s3-devkit/include/board.h + * + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. The + * ASF licenses this file to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance with the + * License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT + * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the + * License for the specific language governing permissions and limitations + * under the License. + * + ****************************************************************************/ + +#ifndef __BOARDS_XTENSA_ESP32S3_ESP32S3_DEVKIT_INCLUDE_BOARD_H +#define __BOARDS_XTENSA_ESP32S3_ESP32S3_DEVKIT_INCLUDE_BOARD_H + +/**************************************************************************** + * Pre-processor Definitions + ****************************************************************************/ + +/* Clocking *****************************************************************/ + +/* The ESP32-S3 DevKit board is fitted with a 40MHz crystal */ + +#define BOARD_XTAL_FREQUENCY 40000000 + +/* Clock reconfiguration is currently disabled, so the CPU will be running + * at the XTAL frequency or at two times the XTAL frequency, depending upon + * how we load the code: + * + * - If we load the code into FLASH at address 0x1000 where it is started by + * the second level bootloader, then the frequency is the crystal + * frequency. + * - If we load the code into IRAM after the second level bootloader has run + * this frequency will be twice the crystal frequency. + * + * Don't ask me for an explanation. + */ + +/* Note: The bootloader (esp-idf bootloader.bin) configures: + * + * - CPU frequency to 80MHz + * + * Reference: + * https://github.com/espressif/esp-idf/blob + * /ebf7e811b12e3c1e347340e5b9ec014e9c6319ba/components + * /bootloader_support/src/bootloader_clock_init.c#L26-L27 + */ + +#ifdef CONFIG_ESP32S3_RUN_IRAM +# define BOARD_CLOCK_FREQUENCY (2 * BOARD_XTAL_FREQUENCY) +#else +#ifdef CONFIG_ESP32S3_DEFAULT_CPU_FREQ_MHZ +# define BOARD_CLOCK_FREQUENCY (CONFIG_ESP32S3_DEFAULT_CPU_FREQ_MHZ * 1000000) +#else +# define BOARD_CLOCK_FREQUENCY 80000000 +#endif +#endif + +/* LED definitions **********************************************************/ + +/* Define how many LEDs this board has (needed by userleds) */ + +#define BOARD_NLEDS 1 + +#endif /* __BOARDS_XTENSA_ESP32S3_ESP32S3_DEVKIT_INCLUDE_BOARD_H */ diff --git a/boards/xtensa/esp32s3/esp32s3-devkit/scripts/.gitignore b/boards/xtensa/esp32s3/esp32s3-devkit/scripts/.gitignore new file mode 100644 index 0000000000..bde4ee18e8 --- /dev/null +++ b/boards/xtensa/esp32s3/esp32s3-devkit/scripts/.gitignore @@ -0,0 +1 @@ +/esp32s3_out.ld diff --git a/boards/xtensa/esp32s3/esp32s3-devkit/scripts/Make.defs b/boards/xtensa/esp32s3/esp32s3-devkit/scripts/Make.defs new file mode 100644 index 0000000000..ad4ed3b959 --- /dev/null +++ b/boards/xtensa/esp32s3/esp32s3-devkit/scripts/Make.defs @@ -0,0 +1,92 @@ +############################################################################ +# boards/xtensa/esp32s3/esp32s3-devkit/scripts/Make.defs +# +# Licensed to the Apache Software Foundation (ASF) under one or more +# contributor license agreements. See the NOTICE file distributed with +# this work for additional information regarding copyright ownership. The +# ASF licenses this file to you under the Apache License, Version 2.0 (the +# "License"); you may not use this file except in compliance with the +# License. You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, WITHOUT +# WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the +# License for the specific language governing permissions and limitations +# under the License. +# +############################################################################ + +include $(TOPDIR)/.config +include $(TOPDIR)/tools/Config.mk +include $(TOPDIR)/tools/esp32s3/Config.mk +include $(TOPDIR)/arch/xtensa/src/lx7/Toolchain.defs + +LDSCRIPT1 = $(BOARD_DIR)$(DELIM)scripts$(DELIM)esp32s3_out.ld +LDSCRIPT2 = $(BOARD_DIR)$(DELIM)scripts$(DELIM)esp32s3.ld +LDSCRIPT3 = $(BOARD_DIR)$(DELIM)scripts$(DELIM)esp32s3_rom.ld +LDSCRIPT4 = $(BOARD_DIR)$(DELIM)scripts$(DELIM)esp32s3_peripherals.ld + +ifeq ($(CONFIG_CYGWIN_WINTOOL),y) + ARCHSCRIPT = -T "${shell cygpath -w $(LDSCRIPT1)}" + ARCHSCRIPT += -T "${shell cygpath -w $(LDSCRIPT2)}" + ARCHSCRIPT += -T "${shell cygpath -w $(LDSCRIPT3)}" + ARCHSCRIPT += -T "${shell cygpath -w $(LDSCRIPT4)}" +else + ARCHSCRIPT = -T$(LDSCRIPT1) -T$(LDSCRIPT2) -T$(LDSCRIPT3) -T$(LDSCRIPT4) +endif + +ifeq ($(CONFIG_DEBUG_SYMBOLS),y) + ARCHOPTIMIZATION = -g +endif + +ifneq ($(CONFIG_DEBUG_NOOPT),y) + ARCHOPTIMIZATION += $(MAXOPTIMIZATION) -fno-strict-aliasing -fno-strength-reduce +endif + +ARCHCFLAGS = -fno-builtin -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -mlongcalls +ARCHCXXFLAGS = $(ARCHCFLAGS) -fno-exceptions -fcheck-new -fno-rtti +ARCHWARNINGS = -Wall -Wstrict-prototypes -Wshadow -Wundef +ARCHWARNINGSXX = -Wall -Wshadow -Wundef +ARCHPICFLAGS = -fpic + +CFLAGS := $(ARCHCFLAGS) $(ARCHWARNINGS) $(ARCHOPTIMIZATION) $(ARCHCPUFLAGS) $(ARCHINCLUDES) $(ARCHDEFINES) $(EXTRAFLAGS) -pipe +CPICFLAGS = $(ARCHPICFLAGS) $(CFLAGS) +CXXFLAGS := $(ARCHCXXFLAGS) $(ARCHWARNINGSXX) $(ARCHOPTIMIZATION) $(ARCHCPUFLAGS) $(ARCHXXINCLUDES) $(ARCHDEFINES) $(EXTRAFLAGS) -pipe +CXXPICFLAGS = $(ARCHPICFLAGS) $(CXXFLAGS) +CPPFLAGS := $(ARCHINCLUDES) $(ARCHDEFINES) $(EXTRAFLAGS) +AFLAGS := $(CFLAGS) -D__ASSEMBLY__ + +# Loadable module definitions + +CMODULEFLAGS = $(CFLAGS) -mtext-section-literals + +LDMODULEFLAGS = -r -e module_initialize +ifeq ($(CONFIG_CYGWIN_WINTOOL),y) + LDMODULEFLAGS += -T "${shell cygpath -w $(TOPDIR)/libs/libc/modlib/gnu-elf.ld}" +else + LDMODULEFLAGS += -T $(TOPDIR)/libs/libc/modlib/gnu-elf.ld +endif + +# ELF module definitions + +CELFFLAGS = $(CFLAGS) -mtext-section-literals +CXXELFFLAGS = $(CXXFLAGS) -mtext-section-literals + +LDELFFLAGS = -r -e main +ifeq ($(CONFIG_CYGWIN_WINTOOL),y) + LDELFFLAGS += -T "${shell cygpath -w $(BOARD_DIR)$(DELIM)scripts$(DELIM)gnu-elf.ld}" +else + LDELFFLAGS += -T $(BOARD_DIR)$(DELIM)scripts$(DELIM)gnu-elf.ld +endif + +ifeq ($(CONFIG_CYGWIN_WINTOOL),y) + LDFLAGS += -Map="${shell cygpath -w $(TOPDIR)/nuttx.map}" --cref +else + LDFLAGS += -Map=$(TOPDIR)/nuttx.map --cref +endif + +ifeq ($(CONFIG_DEBUG_SYMBOLS),y) + LDFLAGS += -g +endif diff --git a/boards/xtensa/esp32s3/esp32s3-devkit/scripts/esp32s3.ld b/boards/xtensa/esp32s3/esp32s3-devkit/scripts/esp32s3.ld new file mode 100644 index 0000000000..5abcfa5def --- /dev/null +++ b/boards/xtensa/esp32s3/esp32s3-devkit/scripts/esp32s3.ld @@ -0,0 +1,269 @@ +/**************************************************************************** + * boards/xtensa/esp32s3/esp32s3-devkit/scripts/esp32s3_flash.ld + ****************************************************************************/ + +/* Default entry point: */ + +ENTRY(__start); + +_diram_i_start = 0x40378000; + +SECTIONS +{ + /* Send .iram0 code to iram */ + + .iram0.vectors : + { + _iram_start = ABSOLUTE(.); + + /* Vectors go to IRAM. */ + + _init_start = ABSOLUTE(.); + + /* Vectors according to builds/RF-2015.2-win32/esp108_v1_2_s5_512int_2/config.html */ + + . = 0x0; + KEEP (*(.window_vectors.text)); + . = 0x180; + KEEP (*(.xtensa_level2_vector.text)); + . = 0x1c0; + KEEP (*(.xtensa_level3_vector.text)); + . = 0x200; + KEEP (*(.xtensa_level4_vector.text)); + . = 0x240; + KEEP (*(.xtensa_level5_vector.text)); + . = 0x280; + KEEP (*(.debug_exception_vector.text)); + . = 0x2c0; + KEEP (*(.nmi_vector.text)); + . = 0x300; + KEEP (*(.kernel_exception_vector.text)); + . = 0x340; + KEEP (*(.user_exception_vector.text)); + . = 0x3c0; + KEEP (*(.double_exception_vector.text)); + . = 0x400; + *(.*_vector.literal) + + . = ALIGN(16); + + *(.entry.text) + *(.init.literal) + *(.init) + } > iram0_0_seg + + .iram0.text : + { + /* Code marked as running out of IRAM */ + + *(.iram1 .iram1.*) + + /* align + add 16B for CPU dummy speculative instr. fetch */ + + . = ALIGN(4) + 16; + + _iram_text = ABSOLUTE(.); + } > iram0_0_seg + + .dram0.dummy (NOLOAD) : + { + /* This section is required to skip .iram0.text area because iram0_0_seg + * and dram0_0_seg reflect the same address space on different buses. + */ + + . = ORIGIN(dram0_0_seg) + _iram_end - _iram_start; + } > dram0_0_seg + + /* Shared RAM */ + + .dram0.bss (NOLOAD) : + { + /* .bss initialized on power-up */ + + . = ALIGN(8); + _sbss = ABSOLUTE(.); + + *(.bss .bss.*) + *(COMMON) + *(.dynsbss) + *(.sbss) + *(.sbss.*) + *(.gnu.linkonce.sb.*) + *(.scommon) + *(.sbss2) + *(.sbss2.*) + *(.gnu.linkonce.sb2.*) + *(.dynbss) + *(.share.mem) + *(.gnu.linkonce.b.*) + + . = ALIGN(8); + _ebss = ABSOLUTE(.); + } > dram0_0_seg + + .noinit (NOLOAD) : + { + /* This section contains data that is not initialized during load, + * or during the application's initialization sequence. + */ + + . = ALIGN(4); + + *(.noinit .noinit.*) + + . = ALIGN(4); + } > dram0_0_seg + + .dram0.data : + { + /* .data initialized on power-up in ROMed configurations. */ + + _sdata = ABSOLUTE(.); + KEEP (*(.data)) + KEEP (*(.data.*)) + KEEP (*(.gnu.linkonce.d.*)) + KEEP (*(.data1)) + KEEP (*(.sdata)) + KEEP (*(.sdata.*)) + KEEP (*(.gnu.linkonce.s.*)) + KEEP (*(.sdata2)) + KEEP (*(.sdata2.*)) + KEEP (*(.gnu.linkonce.s2.*)) + KEEP (*(.jcr)) + *(.dram1 .dram1.*) + + _edata = ABSOLUTE(.); + . = ALIGN(4); + + /* Heap starts at the end of .data */ + + _sheap = ABSOLUTE(.); + } > dram0_0_seg + + .flash.text : + { + _stext = .; + *(.literal .text .literal.* .text.* .stub .gnu.warning .gnu.linkonce.literal.* .gnu.linkonce.t.*.literal .gnu.linkonce.t.*) + *(.irom0.text) /* catch stray ICACHE_RODATA_ATTR */ + *(.fini.literal) + *(.fini) + *(.gnu.version) + + /* CPU will try to prefetch up to 16 bytes of instructions. + * This means that any configuration (e.g. MMU, PMS) must allow + * safe access to up to 16 bytes after the last real instruction, add + * dummy bytes to ensure this + */ + + . += 16; + + _etext = .; + } > default_code_seg + + .flash_rodata_dummy (NOLOAD) : + { + /* This dummy section represents the .flash.text section but in default_rodata_seg. + * Thus, it must have its alignment and (at least) its size. + */ + + /* Start at the same alignment constraint than .flash.text */ + + . = ALIGN(ALIGNOF(.flash.text)); + + /* Create an empty gap as big as .flash.text section */ + + . = SIZEOF(.flash.text); + + /* Prepare the alignment of the section above. Few bytes (0x20) must be + * added for the mapping header. + */ + + . = ALIGN(0x10000) + 0x20; + _rodata_reserved_start = .; + } > default_rodata_seg + + .flash.rodata : ALIGN(0x10) + { + _srodata = ABSOLUTE(.); + + *(.rodata) + *(.rodata.*) + *(.irom1.text) /* catch stray ICACHE_RODATA_ATTR */ + *(.gnu.linkonce.r.*) + *(.rodata1) + __XT_EXCEPTION_TABLE_ = ABSOLUTE(.); + *(.xt_except_table) + *(.gcc_except_table) + *(.gcc_except_table.*) + *(.gnu.linkonce.e.*) + *(.gnu.version_r) + *(.eh_frame) + + . = ALIGN(4); + + /* C++ constructor and destructor tables, properly ordered: */ + + _sinit = ABSOLUTE(.); + KEEP (*crtbegin.o(.ctors)) + KEEP (*(EXCLUDE_FILE (*crtend.o) .ctors)) + KEEP (*(SORT(.ctors.*))) + KEEP (*(.ctors)) + _einit = ABSOLUTE(.); + KEEP (*crtbegin.o(.dtors)) + KEEP (*(EXCLUDE_FILE (*crtend.o) .dtors)) + KEEP (*(SORT(.dtors.*))) + KEEP (*(.dtors)) + + /* C++ exception handlers table: */ + + __XT_EXCEPTION_DESCS_ = ABSOLUTE(.); + *(.xt_except_desc) + *(.gnu.linkonce.h.*) + __XT_EXCEPTION_DESCS_END__ = ABSOLUTE(.); + *(.xt_except_desc_end) + *(.dynamic) + *(.gnu.version_d) + _erodata = ABSOLUTE(.); + + /* Literals are also RO data. */ + + _lit4_start = ABSOLUTE(.); + *(*.lit4) + *(.lit4.*) + *(.gnu.linkonce.lit4.*) + _lit4_end = ABSOLUTE(.); + _rodata_reserved_end = ABSOLUTE(.); + . = ALIGN(4); + } > default_rodata_seg + + /* Marks the end of IRAM code segment */ + + .iram0.text_end (NOLOAD) : + { + /* ESP32-S3 memprot requires 16B padding for possible CPU prefetch and + * 256B alignment for PMS split lines. + */ + + . += 16; + . = ALIGN(256); + } > iram0_0_seg + + .iram0.data : + { + . = ALIGN(4); + + *(.iram.data) + *(.iram.data.*) + } > iram0_0_seg + + .iram0.bss (NOLOAD) : + { + . = ALIGN(4); + + *(.iram.bss) + *(.iram.bss.*) + + . = ALIGN(4); + _iram_end = ABSOLUTE(.); + } > iram0_0_seg +} diff --git a/boards/xtensa/esp32s3/esp32s3-devkit/scripts/esp32s3.template.ld b/boards/xtensa/esp32s3/esp32s3-devkit/scripts/esp32s3.template.ld new file mode 100644 index 0000000000..05e81b7fe7 --- /dev/null +++ b/boards/xtensa/esp32s3/esp32s3-devkit/scripts/esp32s3.template.ld @@ -0,0 +1,113 @@ +/**************************************************************************** + * boards/xtensa/esp32s3/esp32s3-devkit/scripts/esp32s3.template.ld + * ESP32-S3 Linker Script Memory Layout + * + * This file describes the memory layout (memory blocks) as virtual + * memory addresses. + * + * esp32s3.common.ld contains output sections to link compiler output + * into these memory blocks. + * + * NOTE: That this is not the actual linker script but rather a "template" + * for the elf32_out.ld script. This template script is passed through + * the C preprocessor to include selected configuration options. + * + ****************************************************************************/ + +#include + +#define SRAM_IRAM_START 0x40370000 +#define SRAM_DIRAM_I_START 0x40378000 +#define SRAM_IRAM_END 0x403ba000 +#define I_D_SRAM_OFFSET (SRAM_DIRAM_I_START - SRAM_DRAM_START) + +#define SRAM_DRAM_START 0x3fc88000 + +/* 2nd stage bootloader iram_loader_seg start address */ + +#define SRAM_DRAM_END (SRAM_IRAM_END - I_D_SRAM_OFFSET) +#define I_D_SRAM_SIZE (SRAM_DRAM_END - SRAM_DRAM_START) + +#define ICACHE_SIZE 0x8000 + +#define SRAM_IRAM_ORG (SRAM_IRAM_START + CONFIG_ESP32S3_INSTRUCTION_CACHE_SIZE) +#define SRAM_IRAM_SIZE (I_D_SRAM_SIZE + ICACHE_SIZE - CONFIG_ESP32S3_INSTRUCTION_CACHE_SIZE) + +#define DCACHE_SIZE 0x10000 +#define SRAM_DRAM_ORG (SRAM_DRAM_START) + +#ifdef CONFIG_ESP32S3_FLASH_4M +# define FLASH_SIZE 0x400000 +#elif defined (CONFIG_ESP32S3_FLASH_8M) +# define FLASH_SIZE 0x800000 +#elif defined (CONFIG_ESP32S3_FLASH_16M) +# define FLASH_SIZE 0x1000000 +#endif + +MEMORY +{ + /* Below values assume the flash cache is on, and have the blocks this + * uses subtracted from the length of the various regions. The 'data access + * port' dram/drom regions map to the same iram/irom regions but are + * connected to the data port of the CPU and eg allow bytewise access. + */ + + /* IRAM for CPU */ + + iram0_0_seg (RX) : org = SRAM_IRAM_ORG, len = SRAM_IRAM_SIZE + + /* Flash mapped instruction data. */ + + /* The 0x20 offset is a convenience for the app binary image generation. + * Flash cache has 64KB pages. The .bin file which is flashed to the chip + * has a 0x18 byte file header, and each segment has a 0x08 byte segment + * header. Setting this offset makes it simple to meet the flash cache MMU's + * constraint that (paddr % 64KB == vaddr % 64KB). + */ + + irom0_0_seg (RX) : org = 0x42000020, len = FLASH_SIZE - 0x20 + + /* Shared data RAM, excluding memory reserved for bootloader and ROM + * bss/data/stack. + */ + + dram0_0_seg (RW) : org = SRAM_DRAM_ORG, len = I_D_SRAM_SIZE + + + + /* Flash mapped constant data */ + + /* The 0x20 offset is a convenience for the app binary image generation. + * Flash cache has 64KB pages. The .bin file which is flashed to the chip + * has a 0x18 byte file header, and each segment has a 0x08 byte segment + * header. Setting this offset makes it simple to meet the flash cache MMU's + * constraint that (paddr % 64KB == vaddr % 64KB). + */ + + drom0_0_seg (R) : org = 0x3c000020, len = FLASH_SIZE - 0x20 + + /* RTC fast memory (executable). Persists over deep sleep. */ + + rtc_iram_seg(RWX) : org = 0x600fe000, len = 0x2000 + + /* RTC fast memory (same block as above), viewed from data bus */ + + rtc_data_seg(RW) : org = 0x600fe000, len = 0x2000 + + /* RTC slow memory (data accessible). Persists over deep sleep. + * Start of RTC slow memory is reserved for ULP co-processor code + data, + * if enabled. + */ + + rtc_slow_seg(RW) : org = 0x50000000 + CONFIG_ESP32S3_ULP_COPROC_RESERVE_MEM, + len = 0x2000 - CONFIG_ESP32S3_ULP_COPROC_RESERVE_MEM +} + +#ifdef CONFIG_ESP32S3_RUN_IRAM + REGION_ALIAS("default_rodata_seg", dram0_0_seg); + REGION_ALIAS("default_code_seg", iram0_0_seg); +#else + REGION_ALIAS("default_rodata_seg", drom0_0_seg); + REGION_ALIAS("default_code_seg", irom0_0_seg); +#endif /* CONFIG_ESP32S3_RUN_IRAM */ + diff --git a/boards/xtensa/esp32s3/esp32s3-devkit/scripts/esp32s3_peripherals.ld b/boards/xtensa/esp32s3/esp32s3-devkit/scripts/esp32s3_peripherals.ld new file mode 100644 index 0000000000..049ee1bce0 --- /dev/null +++ b/boards/xtensa/esp32s3/esp32s3-devkit/scripts/esp32s3_peripherals.ld @@ -0,0 +1,47 @@ +/**************************************************************************** + * boards/xtensa/esp32s3/esp32s3-devkit/scripts/esp32s3_peripherals.ld + ****************************************************************************/ + +PROVIDE ( UART0 = 0x60000000 ); +PROVIDE ( SPIMEM1 = 0x60002000 ); +PROVIDE ( SPIMEM0 = 0x60003000 ); +PROVIDE ( GPIO = 0x60004000 ); +PROVIDE ( SIGMADELTA = 0x60004f00 ); +PROVIDE ( RTCCNTL = 0x60008000 ); +PROVIDE ( RTCIO = 0x60008400 ); +PROVIDE ( SENS = 0x60008800 ); +PROVIDE ( HINF = 0x6000B000 ); +PROVIDE ( I2S0 = 0x6000F000 ); +PROVIDE ( I2S1 = 0x6002D000 ); +PROVIDE ( UART1 = 0x60010000 ); +PROVIDE ( I2C0 = 0x60013000 ); +PROVIDE ( UHCI0 = 0x60014000 ); +PROVIDE ( UHCI1 = 0x60014000 ); +PROVIDE ( HOST = 0x60015000 ); +PROVIDE ( RMT = 0x60016000 ); +PROVIDE ( RMTMEM = 0x60016800 ); +PROVIDE ( PCNT = 0x60017000 ); +PROVIDE ( SLC = 0x60018000 ); +PROVIDE ( LEDC = 0x60019000 ); +PROVIDE ( MCPWM0 = 0x6001E000 ); +PROVIDE ( MCPWM1 = 0x6002C000 ); +PROVIDE ( MCP = 0x600c3000 ); +PROVIDE ( TIMERG0 = 0x6001F000 ); +PROVIDE ( TIMERG1 = 0x60020000 ); +PROVIDE ( SYSTIMER = 0x60023000 ); +PROVIDE ( GPSPI2 = 0x60024000 ); +PROVIDE ( GPSPI3 = 0x60025000 ); +PROVIDE ( SYSCON = 0x60026000 ); +PROVIDE ( I2C1 = 0x60027000 ); +PROVIDE ( SDMMC = 0x60028000 ); +PROVIDE ( TWAI = 0x6002B000 ); +PROVIDE ( GPSPI4 = 0x60037000 ); +PROVIDE ( GDMA = 0x6003F000 ); +PROVIDE ( UART2 = 0x6002E000 ); +PROVIDE ( DMA = 0x6003F000 ); +PROVIDE ( APB_SARADC = 0x60040000 ); +PROVIDE ( LCD_CAM = 0x60041000 ); +PROVIDE ( USB_SERIAL_JTAG = 0x60038000 ); +PROVIDE ( USB0 = 0x60080000 ); +PROVIDE ( USBH = 0x60080000 ); +PROVIDE ( USB_WRAP = 0x60039000 ); diff --git a/boards/xtensa/esp32s3/esp32s3-devkit/scripts/esp32s3_rom.ld b/boards/xtensa/esp32s3/esp32s3-devkit/scripts/esp32s3_rom.ld new file mode 100644 index 0000000000..7065096316 --- /dev/null +++ b/boards/xtensa/esp32s3/esp32s3-devkit/scripts/esp32s3_rom.ld @@ -0,0 +1,2522 @@ +/* ROM version variables for esp32s3 + * + * These addresses should be compatible with any ROM version for this chip. + * + * THIS FILE WAS AUTOMATICALLY GENERATED. DO NOT EDIT. + */ +_rom_chip_id = 0x40000570; +_rom_eco_version = 0x40000574; + +/* ROM function interface esp32s3.rom.ld for esp32s3 + * + * + * Generated from ./interface-esp32s3.yml md5sum 39c4ce259b11323b9404c192b01b712b + * + * Compatible with ROM where ECO version equal or greater to 0. + * + * THIS FILE WAS AUTOMATICALLY GENERATED. DO NOT EDIT. + */ + +/*************************************** + Group common + ***************************************/ + +/* Functions */ +rtc_get_reset_reason = 0x4000057c; +analog_super_wdt_reset_happened = 0x40000588; +jtag_cpu_reset_happened = 0x40000594; +rtc_get_wakeup_cause = 0x400005a0; +rtc_select_apb_bridge = 0x400005ac; +rtc_unhold_all_pads = 0x400005b8; +ets_is_print_boot = 0x400005c4; +ets_printf = 0x400005d0; +ets_install_putc1 = 0x400005dc; +ets_install_uart_printf = 0x400005e8; +ets_install_putc2 = 0x400005f4; +PROVIDE( ets_delay_us = 0x40000600 ); +ets_get_stack_info = 0x4000060c; +ets_install_lock = 0x40000618; +ets_backup_dma_copy = 0x40000624; +ets_apb_backup_init_lock_func = 0x40000630; +UartRxString = 0x4000063c; +uart_tx_one_char = 0x40000648; +uart_tx_one_char2 = 0x40000654; +uart_rx_one_char = 0x40000660; +uart_rx_one_char_block = 0x4000066c; +uart_rx_readbuff = 0x40000678; +uartAttach = 0x40000684; +uart_tx_flush = 0x40000690; +uart_tx_wait_idle = 0x4000069c; +uart_div_modify = 0x400006a8; +ets_write_char_uart = 0x400006b4; +uart_tx_switch = 0x400006c0; +multofup = 0x400006cc; +software_reset = 0x400006d8; +software_reset_cpu = 0x400006e4; +assist_debug_clock_enable = 0x400006f0; +assist_debug_record_enable = 0x400006fc; +clear_super_wdt_reset_flag = 0x40000708; +disable_default_watchdog = 0x40000714; +ets_set_appcpu_boot_addr = 0x40000720; +esp_rom_set_rtc_wake_addr = 0x4000072c; +esp_rom_get_rtc_wake_addr = 0x40000738; +send_packet = 0x40000744; +recv_packet = 0x40000750; +GetUartDevice = 0x4000075c; +UartDwnLdProc = 0x40000768; +Uart_Init = 0x40000774; +ets_set_user_start = 0x40000780; +/* Data (.data, .bss, .rodata) */ +ets_rom_layout_p = 0x3ff1fffc; +ets_ops_table_ptr = 0x3fcefffc; + + +/*************************************** + Group miniz + ***************************************/ + +/* Functions */ +mz_adler32 = 0x4000078c; +mz_crc32 = 0x40000798; +mz_free = 0x400007a4; +tdefl_compress = 0x400007b0; +tdefl_compress_buffer = 0x400007bc; +tdefl_compress_mem_to_heap = 0x400007c8; +tdefl_compress_mem_to_mem = 0x400007d4; +tdefl_compress_mem_to_output = 0x400007e0; +tdefl_get_adler32 = 0x400007ec; +tdefl_get_prev_return_status = 0x400007f8; +tdefl_init = 0x40000804; +tdefl_write_image_to_png_file_in_memory = 0x40000810; +tdefl_write_image_to_png_file_in_memory_ex = 0x4000081c; +tinfl_decompress = 0x40000828; +tinfl_decompress_mem_to_callback = 0x40000834; +tinfl_decompress_mem_to_heap = 0x40000840; +tinfl_decompress_mem_to_mem = 0x4000084c; + + +/*************************************** + Group tjpgd + ***************************************/ + +/* Functions */ +PROVIDE( jd_prepare = 0x40000858 ); +PROVIDE (jd_decomp = 0x40000864 ); + + +/*************************************** + Group esp-dsp + ***************************************/ + +/* Data (.data, .bss, .rodata) */ +dsps_fft2r_w_table_fc32_1024 = 0x3fcefff8; + + +/*************************************** + Group opi_flash + ***************************************/ + +/* Functions */ +PROVIDE( opi_flash_set_lock_func = 0x40000870 ); +PROVIDE( esp_rom_spi_cmd_config = 0x4000087c ); +PROVIDE( esp_rom_spi_cmd_start = 0x40000888 ); +PROVIDE( esp_rom_opiflash_pin_config = 0x40000894 ); +PROVIDE( esp_rom_spi_set_op_mode = 0x400008a0 ); +PROVIDE( esp_rom_opiflash_mode_reset = 0x400008ac ); +PROVIDE( esp_rom_opiflash_exec_cmd = 0x400008b8 ); +PROVIDE( esp_rom_opiflash_soft_reset = 0x400008c4 ); +PROVIDE( esp_rom_opiflash_read_id = 0x400008d0 ); +PROVIDE( esp_rom_opiflash_rdsr = 0x400008dc ); +PROVIDE( esp_rom_opiflash_wait_idle = 0x400008e8 ); +PROVIDE( esp_rom_opiflash_wren = 0x400008f4 ); +PROVIDE( esp_rom_opiflash_erase_sector = 0x40000900 ); +PROVIDE( esp_rom_opiflash_erase_block_64k = 0x4000090c ); +PROVIDE( esp_rom_opiflash_erase_area = 0x40000918 ); +PROVIDE( esp_rom_opiflash_read = 0x40000924 ); +PROVIDE( esp_rom_opiflash_write = 0x40000930 ); +PROVIDE( esp_rom_spi_set_dtr_swap_mode = 0x4000093c ); +PROVIDE( esp_rom_opiflash_exit_continuous_read_mode = 0x40000948 ); +PROVIDE( esp_rom_opiflash_legacy_driver_init = 0x40000954 ); +PROVIDE( esp_rom_opiflash_read_raw = 0x4004d9d4); +/* Data (.data, .bss, .rodata) */ +PROVIDE( rom_opiflash_cmd_def = 0x3fcefff4 ); +PROVIDE( rom_spi_usr_cmd_legacy_funcs = 0x3fcefff0 ); + + +/*************************************** + Group spiflash_legacy + ***************************************/ + +/* Functions */ +PROVIDE( esp_rom_spiflash_wait_idle = 0x40000960 ); +PROVIDE( esp_rom_spiflash_write_encrypted = 0x4000096c ); +PROVIDE( esp_rom_spiflash_write_encrypted_dest = 0x40000978 ); +PROVIDE( esp_rom_spiflash_write_encrypted_enable = 0x40000984 ); +PROVIDE( esp_rom_spiflash_write_encrypted_disable = 0x40000990 ); +PROVIDE( esp_rom_spiflash_erase_chip = 0x4000099c ); +PROVIDE( _esp_rom_spiflash_erase_sector = 0x400009a8 ); +PROVIDE( _esp_rom_spiflash_erase_block = 0x400009b4 ); +PROVIDE( _esp_rom_spiflash_write = 0x400009c0 ); +PROVIDE( _esp_rom_spiflash_read = 0x400009cc ); +PROVIDE( _esp_rom_spiflash_unlock = 0x400009d8 ); +PROVIDE( _SPIEraseArea = 0x400009e4 ); +PROVIDE( _SPI_write_enable = 0x400009f0 ); +PROVIDE( esp_rom_spiflash_erase_sector = 0x400009fc ); +PROVIDE( esp_rom_spiflash_erase_block = 0x40000a08 ); +PROVIDE( esp_rom_spiflash_write = 0x40000a14 ); +PROVIDE( esp_rom_spiflash_read = 0x40000a20 ); +PROVIDE( esp_rom_spiflash_unlock = 0x40000a2c ); +PROVIDE( SPIEraseArea = 0x40000a38 ); +PROVIDE( SPI_write_enable = 0x40000a44 ); +PROVIDE( esp_rom_spiflash_config_param = 0x40000a50 ); +PROVIDE( esp_rom_spiflash_read_user_cmd = 0x40000a5c ); +PROVIDE( esp_rom_spiflash_select_qio_pins = 0x40000a68 ); +PROVIDE( esp_rom_spi_flash_auto_sus_res = 0x40000a74 ); +PROVIDE( esp_rom_spi_flash_send_resume = 0x40000a80 ); +PROVIDE( esp_rom_spi_flash_update_id = 0x40000a8c ); +PROVIDE( esp_rom_spiflash_config_clk = 0x40000a98 ); +PROVIDE( esp_rom_spiflash_config_readmode = 0x40000aa4 ); +PROVIDE( esp_rom_spiflash_read_status = 0x40000ab0 ); +PROVIDE( esp_rom_spiflash_read_statushigh = 0x40000abc ); +PROVIDE( esp_rom_spiflash_write_status = 0x40000ac8 ); +PROVIDE( esp_rom_opiflash_cache_mode_config = 0x40000ad4 ); +PROVIDE( esp_rom_spiflash_auto_wait_idle = 0x40000ae0 ); +PROVIDE( spi_flash_attach = 0x40000aec ); +PROVIDE( spi_flash_get_chip_size = 0x40000af8 ); +PROVIDE( spi_flash_guard_set = 0x40000b04 ); +PROVIDE( spi_flash_guard_get = 0x40000b10 ); +PROVIDE( spi_flash_write_config_set = 0x40000b1c ); +PROVIDE( spi_flash_write_config_get = 0x40000b28 ); +PROVIDE( spi_flash_safe_write_address_func_set = 0x40000b34 ); +PROVIDE( spi_flash_unlock = 0x40000b40 ); +PROVIDE( spi_flash_erase_range = 0x40000b4c ); +PROVIDE( spi_flash_erase_sector = 0x40000b58 ); +PROVIDE( spi_flash_write = 0x40000b64 ); +PROVIDE( spi_flash_read = 0x40000b70 ); +PROVIDE( spi_flash_write_encrypted = 0x40000b7c ); +PROVIDE( spi_flash_read_encrypted = 0x40000b88 ); +PROVIDE( spi_flash_mmap_os_func_set = 0x40000b94 ); +PROVIDE( spi_flash_mmap_page_num_init = 0x40000ba0 ); +PROVIDE( spi_flash_mmap = 0x40000bac ); +PROVIDE( spi_flash_mmap_pages = 0x40000bb8 ); +PROVIDE( spi_flash_munmap = 0x40000bc4 ); +PROVIDE( spi_flash_mmap_dump = 0x40000bd0 ); +PROVIDE( spi_flash_check_and_flush_cache = 0x40000bdc ); +PROVIDE( spi_flash_mmap_get_free_pages = 0x40000be8 ); +PROVIDE( spi_flash_cache2phys = 0x40000bf4 ); +PROVIDE( spi_flash_phys2cache = 0x40000c00 ); +PROVIDE( spi_flash_disable_cache = 0x40000c0c ); +PROVIDE( spi_flash_restore_cache = 0x40000c18 ); +PROVIDE( spi_flash_cache_enabled = 0x40000c24 ); +PROVIDE( spi_flash_enable_cache = 0x40000c30 ); +PROVIDE( spi_cache_mode_switch = 0x40000c3c ); +PROVIDE( spi_common_set_dummy_output = 0x40000c48 ); +PROVIDE( spi_common_set_flash_cs_timing = 0x40000c54 ); +PROVIDE( esp_rom_spi_set_address_bit_len = 0x40000c60 ); +PROVIDE( esp_enable_cache_flash_wrap = 0x40000c6c ); +PROVIDE( SPILock = 0x40000c78 ); +PROVIDE( SPIMasterReadModeCnfig = 0x40000c84 ); +PROVIDE( SPI_Common_Command = 0x40000c90 ); +PROVIDE( SPI_WakeUp = 0x40000c9c ); +PROVIDE( SPI_block_erase = 0x40000ca8 ); +PROVIDE( SPI_chip_erase = 0x40000cb4 ); +PROVIDE( SPI_init = 0x40000cc0 ); +PROVIDE( SPI_page_program = 0x40000ccc ); +PROVIDE( SPI_read_data = 0x40000cd8 ); +PROVIDE( SPI_sector_erase = 0x40000ce4 ); +PROVIDE( SelectSpiFunction = 0x40000cf0 ); +PROVIDE( SetSpiDrvs = 0x40000cfc ); +PROVIDE( Wait_SPI_Idle = 0x40000d08 ); +PROVIDE( spi_dummy_len_fix = 0x40000d14 ); +PROVIDE( Disable_QMode = 0x40000d20 ); +PROVIDE( Enable_QMode = 0x40000d2c ); +/* Data (.data, .bss, .rodata) */ +PROVIDE( rom_spiflash_legacy_funcs = 0x3fceffe8 ); +PROVIDE( rom_spiflash_legacy_data = 0x3fceffe4 ); +PROVIDE( g_flash_guard_ops = 0x3fceffec ); + + +/*************************************** + Group hal_soc + ***************************************/ + +/* Functions */ +PROVIDE( spi_flash_hal_poll_cmd_done = 0x40000d38 ); +PROVIDE( spi_flash_hal_device_config = 0x40000d44 ); +PROVIDE( spi_flash_hal_configure_host_io_mode = 0x40000d50 ); +PROVIDE( spi_flash_hal_common_command = 0x40000d5c ); +PROVIDE( spi_flash_hal_read = 0x40000d68 ); +PROVIDE( spi_flash_hal_erase_chip = 0x40000d74 ); +PROVIDE( spi_flash_hal_erase_sector = 0x40000d80 ); +PROVIDE( spi_flash_hal_erase_block = 0x40000d8c ); +PROVIDE( spi_flash_hal_program_page = 0x40000d98 ); +PROVIDE( spi_flash_hal_set_write_protect = 0x40000da4 ); +PROVIDE( spi_flash_hal_host_idle = 0x40000db0 ); +PROVIDE( wdt_hal_init = 0x40000dbc ); +PROVIDE( wdt_hal_deinit = 0x40000dc8 ); +PROVIDE( wdt_hal_config_stage = 0x40000dd4 ); +PROVIDE( wdt_hal_write_protect_disable = 0x40000de0 ); +PROVIDE( wdt_hal_write_protect_enable = 0x40000dec ); +PROVIDE( wdt_hal_enable = 0x40000df8 ); +PROVIDE( wdt_hal_disable = 0x40000e04 ); +PROVIDE( wdt_hal_handle_intr = 0x40000e10 ); +PROVIDE( wdt_hal_feed = 0x40000e1c ); +PROVIDE( wdt_hal_set_flashboot_en = 0x40000e28 ); +PROVIDE( wdt_hal_is_enabled = 0x40000e34 ); +PROVIDE( systimer_hal_get_counter_value = 0x40000e40 ); +PROVIDE( systimer_hal_get_time = 0x40000e4c ); +PROVIDE( systimer_hal_set_alarm_target = 0x40000e58 ); +PROVIDE( systimer_hal_set_alarm_period = 0x40000e64 ); +PROVIDE( systimer_hal_get_alarm_value = 0x40000e70 ); +PROVIDE( systimer_hal_enable_alarm_int = 0x40000e7c ); +PROVIDE( systimer_hal_on_apb_freq_update = 0x40000e88 ); +PROVIDE( systimer_hal_counter_value_advance = 0x40000e94 ); +PROVIDE( systimer_hal_enable_counter = 0x40000ea0 ); +PROVIDE( systimer_hal_init = 0x40000eac ); +PROVIDE( systimer_hal_select_alarm_mode = 0x40000eb8 ); +PROVIDE( systimer_hal_connect_alarm_counter = 0x40000ec4 ); + + +/*************************************** + Group spi_flash_chips + ***************************************/ + +/* Functions */ +PROVIDE( spi_flash_chip_generic_probe = 0x40000ed0 ); +PROVIDE( spi_flash_chip_generic_detect_size = 0x40000edc ); +PROVIDE( spi_flash_chip_generic_write = 0x40000ee8 ); +PROVIDE( spi_flash_chip_generic_write_encrypted = 0x40000ef4 ); +PROVIDE( spi_flash_chip_generic_set_write_protect = 0x40000f00 ); +PROVIDE( spi_flash_common_write_status_16b_wrsr = 0x40000f0c ); +PROVIDE( spi_flash_chip_generic_reset = 0x40000f18 ); +PROVIDE( spi_flash_chip_generic_erase_chip = 0x40000f24 ); +PROVIDE( spi_flash_chip_generic_erase_sector = 0x40000f30 ); +PROVIDE( spi_flash_chip_generic_erase_block = 0x40000f3c ); +PROVIDE( spi_flash_chip_generic_page_program = 0x40000f48 ); +PROVIDE( spi_flash_chip_generic_get_write_protect = 0x40000f54 ); +PROVIDE( spi_flash_common_read_status_16b_rdsr_rdsr2 = 0x40000f60 ); +PROVIDE( spi_flash_chip_generic_read_reg = 0x40000f6c ); +PROVIDE( spi_flash_chip_generic_yield = 0x40000f78 ); +PROVIDE( spi_flash_generic_wait_host_idle = 0x40000f84 ); +PROVIDE( spi_flash_chip_generic_wait_idle = 0x40000f90 ); +PROVIDE( spi_flash_chip_generic_config_host_io_mode = 0x40000f9c ); +PROVIDE( spi_flash_chip_generic_read = 0x40000fa8 ); +PROVIDE( spi_flash_common_read_status_8b_rdsr2 = 0x40000fb4 ); +PROVIDE( spi_flash_chip_generic_get_io_mode = 0x40000fc0 ); +PROVIDE( spi_flash_common_read_status_8b_rdsr = 0x40000fcc ); +PROVIDE( spi_flash_common_write_status_8b_wrsr = 0x40000fd8 ); +PROVIDE( spi_flash_common_write_status_8b_wrsr2 = 0x40000fe4 ); +PROVIDE( spi_flash_common_set_io_mode = 0x40000ff0 ); +PROVIDE( spi_flash_chip_generic_set_io_mode = 0x40000ffc ); +PROVIDE( spi_flash_chip_gd_get_io_mode = 0x40001008 ); +PROVIDE( spi_flash_chip_gd_probe = 0x40001014 ); +PROVIDE( spi_flash_chip_gd_set_io_mode = 0x40001020 ); +/* Data (.data, .bss, .rodata) */ +PROVIDE( spi_flash_chip_generic_config_data = 0x3fceffe0 ); + + +/*************************************** + Group memspi_host + ***************************************/ + +/* Functions */ +PROVIDE( memspi_host_read_id_hs = 0x4000102c ); +PROVIDE( memspi_host_read_status_hs = 0x40001038 ); +PROVIDE( memspi_host_flush_cache = 0x40001044 ); +PROVIDE( memspi_host_erase_chip = 0x40001050 ); +PROVIDE( memspi_host_erase_sector = 0x4000105c ); +PROVIDE( memspi_host_erase_block = 0x40001068 ); +PROVIDE( memspi_host_program_page = 0x40001074 ); +PROVIDE( memspi_host_read = 0x40001080 ); +PROVIDE( memspi_host_set_write_protect = 0x4000108c ); +PROVIDE( memspi_host_set_max_read_len = 0x40001098 ); +PROVIDE( memspi_host_read_data_slicer = 0x400010a4 ); +PROVIDE( memspi_host_write_data_slicer = 0x400010b0 ); + + +/*************************************** + Group esp_flash + ***************************************/ + +/* Functions */ +PROVIDE( esp_flash_chip_driver_initialized = 0x400010bc ); +PROVIDE( esp_flash_read_id = 0x400010c8 ); +PROVIDE( esp_flash_get_size = 0x400010d4 ); +PROVIDE( esp_flash_erase_chip = 0x400010e0 ); +PROVIDE( rom_esp_flash_erase_region = 0x400010ec ); +PROVIDE( esp_flash_get_chip_write_protect = 0x400010f8 ); +PROVIDE( esp_flash_set_chip_write_protect = 0x40001104 ); +PROVIDE( esp_flash_get_protectable_regions = 0x40001110 ); +PROVIDE( esp_flash_get_protected_region = 0x4000111c ); +PROVIDE( esp_flash_set_protected_region = 0x40001128 ); +PROVIDE( esp_flash_read = 0x40001134 ); +PROVIDE( esp_flash_write = 0x40001140 ); +PROVIDE( esp_flash_write_encrypted = 0x4000114c ); +PROVIDE( esp_flash_read_encrypted = 0x40001158 ); +PROVIDE( esp_flash_get_io_mode = 0x40001164 ); +PROVIDE( esp_flash_set_io_mode = 0x40001170 ); +PROVIDE( spi_flash_boot_attach = 0x4000117c ); +PROVIDE( spi_flash_dump_counters = 0x40001188 ); +PROVIDE( spi_flash_get_counters = 0x40001194 ); +PROVIDE( spi_flash_op_counters_config = 0x400011a0 ); +PROVIDE( spi_flash_reset_counters = 0x400011ac ); +PROVIDE( esp_flash_read_chip_id = 0x400011b8 ); +PROVIDE( detect_spi_flash_chip = 0x400011c4 ); +PROVIDE( esp_rom_spiflash_write_disable = 0x400011d0 ); +/* Data (.data, .bss, .rodata) */ +PROVIDE( esp_flash_default_chip = 0x3fceffdc ); +PROVIDE( esp_flash_api_funcs = 0x3fceffd8 ); + + +/*************************************** + Group cache + ***************************************/ + +/* Functions */ +PROVIDE( Cache_Get_ICache_Line_Size = 0x400015fc ); +PROVIDE( Cache_Get_DCache_Line_Size = 0x40001608 ); +PROVIDE( Cache_Get_Mode = 0x40001614 ); +PROVIDE( Cache_Set_ICache_Mode = 0x40001620 ); +PROVIDE( Cache_Set_DCache_Mode = 0x4000162c ); +PROVIDE( Cache_Address_Through_ICache = 0x40001638 ); +PROVIDE( Cache_Address_Through_DCache = 0x40001644 ); +PROVIDE( Cache_Set_Default_Mode = 0x40001650 ); +PROVIDE( Cache_Enable_Defalut_ICache_Mode = 0x4000165c ); +PROVIDE( ROM_Boot_Cache_Init = 0x40001668 ); +PROVIDE( Cache_Invalidate_ICache_Items = 0x40001674 ); +PROVIDE( Cache_Invalidate_DCache_Items = 0x40001680 ); +PROVIDE( Cache_Clean_Items = 0x4000168c ); +PROVIDE( Cache_WriteBack_Items = 0x40001698 ); +PROVIDE( Cache_Op_Addr = 0x400016a4 ); +PROVIDE( Cache_Invalidate_Addr = 0x400016b0 ); +PROVIDE( Cache_Clean_Addr = 0x400016bc ); +PROVIDE( Cache_WriteBack_Addr = 0x400016c8 ); +PROVIDE( Cache_Invalidate_ICache_All = 0x400016d4 ); +PROVIDE( cache_invalidate_dcache_all = 0x400016e0 ); +PROVIDE( Cache_Clean_All = 0x400016ec ); +PROVIDE( Cache_WriteBack_All = 0x400016f8 ); +PROVIDE( Cache_Mask_All = 0x40001704 ); +PROVIDE( Cache_UnMask_Dram0 = 0x40001710 ); +PROVIDE( Cache_Suspend_ICache_Autoload = 0x4000171c ); +PROVIDE( Cache_Resume_ICache_Autoload = 0x40001728 ); +PROVIDE( Cache_Suspend_DCache_Autoload = 0x40001734 ); +PROVIDE( Cache_Resume_DCache_Autoload = 0x40001740 ); +PROVIDE( Cache_Start_ICache_Preload = 0x4000174c ); +PROVIDE( Cache_ICache_Preload_Done = 0x40001758 ); +PROVIDE( Cache_End_ICache_Preload = 0x40001764 ); +PROVIDE( Cache_Start_DCache_Preload = 0x40001770 ); +PROVIDE( Cache_DCache_Preload_Done = 0x4000177c ); +PROVIDE( Cache_End_DCache_Preload = 0x40001788 ); +PROVIDE( Cache_Config_ICache_Autoload = 0x40001794 ); +PROVIDE( Cache_Config_ICache_Region_Autoload = 0x400017a0 ); +PROVIDE( Cache_Enable_ICache_Autoload = 0x400017ac ); +PROVIDE( Cache_Disable_ICache_Autoload = 0x400017b8 ); +PROVIDE( Cache_Config_DCache_Autoload = 0x400017c4 ); +PROVIDE( Cache_Config_DCache_Region_Autoload = 0x400017d0 ); +PROVIDE( Cache_Enable_DCache_Autoload = 0x400017dc ); +PROVIDE( Cache_Disable_DCache_Autoload = 0x400017e8 ); +PROVIDE( Cache_Enable_ICache_PreLock = 0x400017f4 ); +PROVIDE( Cache_Disable_ICache_PreLock = 0x40001800 ); +PROVIDE( Cache_Lock_ICache_Items = 0x4000180c ); +PROVIDE( Cache_Unlock_ICache_Items = 0x40001818 ); +PROVIDE( Cache_Enable_DCache_PreLock = 0x40001824 ); +PROVIDE( Cache_Disable_DCache_PreLock = 0x40001830 ); +PROVIDE( Cache_Lock_DCache_Items = 0x4000183c ); +PROVIDE( Cache_Unlock_DCache_Items = 0x40001848 ); +PROVIDE( Cache_Lock_Addr = 0x40001854 ); +PROVIDE( Cache_Unlock_Addr = 0x40001860 ); +PROVIDE( Cache_Disable_ICache = 0x4000186c ); +PROVIDE( Cache_Enable_ICache = 0x40001878 ); +PROVIDE( Cache_Disable_DCache = 0x40001884 ); +PROVIDE( Cache_Enable_DCache = 0x40001890 ); +PROVIDE( Cache_Suspend_ICache = 0x4000189c ); +PROVIDE( Cache_Resume_ICache = 0x400018a8 ); +PROVIDE( cache_suspend_dcache = 0x400018b4 ); +PROVIDE( cache_resume_dcache = 0x400018c0 ); +PROVIDE( Cache_Occupy_Items = 0x400018cc ); +PROVIDE( cache_occupy_addr = 0x400018d8 ); +PROVIDE( Cache_Freeze_ICache_Enable = 0x400018e4 ); +PROVIDE( Cache_Freeze_ICache_Disable = 0x400018f0 ); +PROVIDE( Cache_Freeze_DCache_Enable = 0x400018fc ); +PROVIDE( Cache_Freeze_DCache_Disable = 0x40001908 ); +PROVIDE( cache_set_idrom_mmu_size = 0x40001914 ); +PROVIDE( flash2spiram_instruction_offset = 0x40001920 ); +PROVIDE( flash2spiram_rodata_offset = 0x4000192c ); +PROVIDE( flash_instr_rodata_start_page = 0x40001938 ); +PROVIDE( flash_instr_rodata_end_page = 0x40001944 ); +PROVIDE( cache_set_idrom_mmu_info = 0x40001950 ); +PROVIDE( Cache_Get_IROM_MMU_End = 0x4000195c ); +PROVIDE( Cache_Get_DROM_MMU_End = 0x40001968 ); +PROVIDE( Cache_Owner_Init = 0x40001974 ); +PROVIDE( Cache_Occupy_ICache_MEMORY = 0x40001980 ); +PROVIDE( Cache_Occupy_DCache_MEMORY = 0x4000198c ); +PROVIDE( Cache_MMU_Init = 0x40001998 ); +PROVIDE( Cache_Ibus_MMU_Set = 0x400019a4 ); +PROVIDE( Cache_Dbus_MMU_Set = 0x400019b0 ); +PROVIDE( Cache_Count_Flash_Pages = 0x400019bc ); +PROVIDE( Cache_Flash_To_SPIRAM_Copy = 0x400019c8 ); +PROVIDE( Cache_Travel_Tag_Memory = 0x400019d4 ); +PROVIDE( Cache_Travel_Tag_Memory2 = 0x400019e0 ); +PROVIDE( Cache_Get_Virtual_Addr = 0x400019ec ); +PROVIDE( Cache_Get_Memory_BaseAddr = 0x400019f8 ); +PROVIDE( Cache_Get_Memory_Addr = 0x40001a04 ); +PROVIDE( Cache_Get_Memory_value = 0x40001a10 ); +PROVIDE( rom_config_instruction_cache_mode = 0x40001a1c ); +PROVIDE( rom_config_data_cache_mode = 0x40001a28 ); +/* Data (.data, .bss, .rodata) */ +PROVIDE( rom_cache_op_cb = 0x3fceffc8 ); +PROVIDE( rom_cache_internal_table_ptr = 0x3fceffc4 ); + + +/*************************************** + Group clock + ***************************************/ + +/* Functions */ +ets_get_apb_freq = 0x40001a34; +ets_get_cpu_frequency = 0x40001a40; +ets_update_cpu_frequency = 0x40001a4c; +ets_get_printf_channel = 0x40001a58; +ets_get_xtal_div = 0x40001a64; +ets_set_xtal_div = 0x40001a70; +ets_get_xtal_freq = 0x40001a7c; + + +/*************************************** + Group gpio + ***************************************/ + +/* Functions */ +gpio_input_get = 0x40001a88; +gpio_matrix_in = 0x40001a94; +gpio_matrix_out = 0x40001aa0; +gpio_output_disable = 0x40001aac; +gpio_output_enable = 0x40001ab8; +gpio_output_set = 0x40001ac4; +gpio_pad_hold = 0x40001ad0; +gpio_pad_input_disable = 0x40001adc; +gpio_pad_input_enable = 0x40001ae8; +gpio_pad_pulldown = 0x40001af4; +gpio_pad_pullup = 0x40001b00; +gpio_pad_select_gpio = 0x40001b0c; +gpio_pad_set_drv = 0x40001b18; +gpio_pad_unhold = 0x40001b24; +gpio_pin_wakeup_disable = 0x40001b30; +gpio_pin_wakeup_enable = 0x40001b3c; +gpio_bypass_matrix_in = 0x40001b48; + + +/*************************************** + Group interrupts + ***************************************/ + +/* Functions */ +intr_matrix_set = 0x40001b54; +ets_intr_lock = 0x40001b60; +ets_intr_unlock = 0x40001b6c; +ets_isr_attach = 0x40001b78; +ets_isr_mask = 0x40001b84; +ets_isr_unmask = 0x40001b90; + + +/*************************************** + Group xtos + ***************************************/ + +/* Functions */ +xthal_bcopy = 0x40001b9c; +xthal_memcpy = 0x40001ba8; +xthal_get_ccompare = 0x40001bb4; +xthal_set_ccompare = 0x40001bc0; +xthal_get_ccount = 0x40001bcc; +xthal_get_interrupt = 0x40001bd8; +xthal_set_intclear = 0x40001be4; +_xtos_ints_off = 0x40001bf0; +_xtos_ints_on = 0x40001bfc; +_xtos_restore_intlevel = 0x40001c08; +_xtos_set_exception_handler = 0x40001c14; +_xtos_set_interrupt_handler = 0x40001c20; +_xtos_set_interrupt_handler_arg = 0x40001c2c; +_xtos_set_intlevel = 0x40001c38; +_xtos_set_vpri = 0x40001c44; + + +/*************************************** + Group crypto + ***************************************/ + +/* Functions */ +md5_vector = 0x40001c50; +MD5Init = 0x40001c5c; +MD5Update = 0x40001c68; +MD5Final = 0x40001c74; +hmac_md5_vector = 0x40001c80; +hmac_md5 = 0x40001c8c; +crc32_le = 0x40001c98; +crc32_be = 0x40001ca4; +crc16_le = 0x40001cb0; +crc16_be = 0x40001cbc; +crc8_le = 0x40001cc8; +crc8_be = 0x40001cd4; +esp_crc8 = 0x40001ce0; +ets_sha_enable = 0x40001cec; +ets_sha_disable = 0x40001cf8; +ets_sha_get_state = 0x40001d04; +ets_sha_init = 0x40001d10; +ets_sha_process = 0x40001d1c; +ets_sha_starts = 0x40001d28; +ets_sha_update = 0x40001d34; +ets_sha_finish = 0x40001d40; +ets_sha_clone = 0x40001d4c; +ets_hmac_enable = 0x40001d58; +ets_hmac_disable = 0x40001d64; +ets_hmac_calculate_message = 0x40001d70; +ets_hmac_calculate_downstream = 0x40001d7c; +ets_hmac_invalidate_downstream = 0x40001d88; +ets_jtag_enable_temporarily = 0x40001d94; +ets_aes_enable = 0x40001da0; +ets_aes_disable = 0x40001dac; +ets_aes_setkey = 0x40001db8; +ets_aes_block = 0x40001dc4; +ets_bigint_enable = 0x40001dd0; +ets_bigint_disable = 0x40001ddc; +ets_bigint_multiply = 0x40001de8; +ets_bigint_modmult = 0x40001df4; +ets_bigint_modexp = 0x40001e00; +ets_bigint_wait_finish = 0x40001e0c; +ets_bigint_getz = 0x40001e18; +ets_ds_enable = 0x40001e24; +ets_ds_disable = 0x40001e30; +ets_ds_start_sign = 0x40001e3c; +ets_ds_is_busy = 0x40001e48; +ets_ds_finish_sign = 0x40001e54; +ets_ds_encrypt_params = 0x40001e60; +ets_aes_setkey_dec = 0x40001e6c; +ets_aes_setkey_enc = 0x40001e78; +ets_mgf1_sha256 = 0x40001e84; + + +/*************************************** + Group efuse + ***************************************/ + +/* Functions */ +ets_efuse_read = 0x40001e90; +ets_efuse_program = 0x40001e9c; +ets_efuse_clear_program_registers = 0x40001ea8; +ets_efuse_write_key = 0x40001eb4; +ets_efuse_get_read_register_address = 0x40001ec0; +ets_efuse_get_key_purpose = 0x40001ecc; +ets_efuse_key_block_unused = 0x40001ed8; +ets_efuse_find_unused_key_block = 0x40001ee4; +ets_efuse_rs_calculate = 0x40001ef0; +ets_efuse_count_unused_key_blocks = 0x40001efc; +ets_efuse_secure_boot_enabled = 0x40001f08; +ets_efuse_secure_boot_aggressive_revoke_enabled = 0x40001f14; +ets_efuse_cache_encryption_enabled = 0x40001f20; +ets_efuse_download_modes_disabled = 0x40001f2c; +ets_efuse_find_purpose = 0x40001f38; +ets_efuse_flash_opi_5pads_power_sel_vddspi = 0x40001f44; +ets_efuse_force_send_resume = 0x40001f50; +ets_efuse_get_flash_delay_us = 0x40001f5c; +ets_efuse_get_mac = 0x40001f68; +ets_efuse_get_spiconfig = 0x40001f74; +ets_efuse_usb_print_is_disabled = 0x40001f80; +ets_efuse_get_uart_print_channel = 0x40001f8c; +ets_efuse_get_uart_print_control = 0x40001f98; +ets_efuse_get_wp_pad = 0x40001fa4; +ets_efuse_legacy_spi_boot_mode_disabled = 0x40001fb0; +ets_efuse_security_download_modes_enabled = 0x40001fbc; +ets_efuse_set_timing = 0x40001fc8; +ets_efuse_jtag_disabled = 0x40001fd4; +ets_efuse_usb_download_mode_disabled = 0x40001fe0; +ets_efuse_usb_module_disabled = 0x40001fec; +ets_efuse_usb_device_disabled = 0x40001ff8; +ets_efuse_flash_octal_mode = 0x40002004; +ets_efuse_ecc_en = 0x40002010; +ets_efuse_ecc_flash_page_size = 0x4000201c; +ets_efuse_ecc_16to17_mode = 0x40002028; + + +/*************************************** + Group ecc + ***************************************/ + +/* Functions */ +ets_ecc_flash_enable = 0x40002034; +ets_ecc_flash_enable_all = 0x40002040; +ets_ecc_flash_disable = 0x4000204c; +ets_ecc_flash_disable_all = 0x40002058; +ets_ecc_get_flash_page_size = 0x40002064; +ets_ecc_set_flash_page_size = 0x40002070; +ets_ecc_set_flash_byte_mode = 0x4000207c; +ets_ecc_get_flash_byte_mode = 0x40002088; +ets_ecc_set_flash_range = 0x40002094; +ets_ecc_get_flash_range = 0x400020a0; +ets_ecc_sram_enable = 0x400020ac; +ets_ecc_sram_disable = 0x400020b8; +ets_ecc_sram_enable_all = 0x400020c4; +ets_ecc_sram_disable_all = 0x400020d0; +ets_ecc_get_sram_page_size = 0x400020dc; +ets_ecc_set_sram_page_size = 0x400020e8; +ets_ecc_get_sram_byte_mode = 0x400020f4; +ets_ecc_set_sram_byte_mode = 0x40002100; +ets_ecc_set_sram_range = 0x4000210c; +ets_ecc_get_sram_range = 0x40002118; +/* Data (.data, .bss, .rodata) */ +ets_ecc_table_ptr = 0x3fceffc0; + + +/*************************************** + Group secureboot + ***************************************/ + +/* Functions */ +ets_emsa_pss_verify = 0x40002124; +ets_rsa_pss_verify = 0x40002130; +ets_secure_boot_verify_bootloader_with_keys = 0x4000213c; +ets_secure_boot_verify_signature = 0x40002148; +ets_secure_boot_read_key_digests = 0x40002154; +ets_secure_boot_revoke_public_key_digest = 0x40002160; + + +/*************************************** + Group usb_uart + ***************************************/ + +/* Functions */ +PROVIDE( usb_uart_otg_rx_one_char = 0x400025a4 ); +PROVIDE( usb_uart_otg_rx_one_char_block = 0x400025b0 ); +PROVIDE( usb_uart_otg_tx_flush = 0x400025bc ); +PROVIDE( usb_uart_otg_tx_one_char = 0x400025c8 ); +PROVIDE( usb_uart_device_rx_one_char = 0x400025d4 ); +PROVIDE( usb_uart_device_rx_one_char_block = 0x400025e0 ); +PROVIDE( usb_uart_device_tx_flush = 0x400025ec ); +PROVIDE( usb_uart_device_tx_one_char = 0x400025f8 ); +PROVIDE( Uart_Init_USB = 0x40002604 ); +/* Data (.data, .bss, .rodata) */ +PROVIDE( uart_acm_dev = 0x3fceffbc ); +PROVIDE( g_uart_print = 0x3fceffb9 ); +PROVIDE( g_usb_print = 0x3fceffb8 ); + + +/*************************************** + Group usb_module + ***************************************/ + +/* Functions */ +cdc_acm_class_handle_req = 0x40002610; +cdc_acm_init = 0x4000261c; +cdc_acm_fifo_fill = 0x40002628; +cdc_acm_rx_fifo_cnt = 0x40002634; +cdc_acm_fifo_read = 0x40002640; +cdc_acm_irq_tx_enable = 0x4000264c; +cdc_acm_irq_tx_disable = 0x40002658; +cdc_acm_irq_state_enable = 0x40002664; +cdc_acm_irq_state_disable = 0x40002670; +cdc_acm_irq_tx_ready = 0x4000267c; +cdc_acm_irq_rx_enable = 0x40002688; +cdc_acm_irq_rx_disable = 0x40002694; +cdc_acm_irq_rx_ready = 0x400026a0; +cdc_acm_irq_is_pending = 0x400026ac; +cdc_acm_irq_callback_set = 0x400026b8; +cdc_acm_line_ctrl_set = 0x400026c4; +cdc_acm_line_ctrl_get = 0x400026d0; +cdc_acm_poll_out = 0x400026dc; +chip_usb_dw_did_persist = 0x400026e8; +chip_usb_dw_init = 0x400026f4; +chip_usb_detach = 0x40002700; +chip_usb_dw_prepare_persist = 0x4000270c; +chip_usb_get_persist_flags = 0x40002718; +chip_usb_set_persist_flags = 0x40002724; +cpio_start = 0x40002730; +cpio_feed = 0x4000273c; +cpio_done = 0x40002748; +cpio_destroy = 0x40002754; +dfu_flash_init = 0x40002760; +dfu_flash_erase = 0x4000276c; +dfu_flash_program = 0x40002778; +dfu_flash_read = 0x40002784; +dfu_flash_attach = 0x40002790; +dfu_cpio_callback = 0x4000279c; +dfu_updater_get_err = 0x400027a8; +dfu_updater_clear_err = 0x400027b4; +dfu_updater_enable = 0x400027c0; +dfu_updater_begin = 0x400027cc; +dfu_updater_feed = 0x400027d8; +dfu_updater_end = 0x400027e4; +dfu_updater_set_raw_addr = 0x400027f0; +dfu_updater_flash_read = 0x400027fc; +usb_dc_prepare_persist = 0x40002808; +usb_dw_isr_handler = 0x40002814; +usb_dc_attach = 0x40002820; +usb_dc_detach = 0x4000282c; +usb_dc_reset = 0x40002838; +usb_dc_set_address = 0x40002844; +usb_dc_ep_check_cap = 0x40002850; +usb_dc_ep_configure = 0x4000285c; +usb_dc_ep_set_stall = 0x40002868; +usb_dc_ep_clear_stall = 0x40002874; +usb_dc_ep_halt = 0x40002880; +usb_dc_ep_is_stalled = 0x4000288c; +usb_dc_ep_enable = 0x40002898; +usb_dc_ep_disable = 0x400028a4; +usb_dc_ep_flush = 0x400028b0; +usb_dc_ep_write_would_block = 0x400028bc; +usb_dc_ep_write = 0x400028c8; +usb_dc_ep_read_wait = 0x400028d4; +usb_dc_ep_read_continue = 0x400028e0; +usb_dc_ep_read = 0x400028ec; +usb_dc_ep_set_callback = 0x400028f8; +usb_dc_set_status_callback = 0x40002904; +usb_dc_ep_mps = 0x40002910; +usb_dc_check_poll_for_interrupts = 0x4000291c; +mac_addr_to_serial_str_desc = 0x40002928; +usb_set_current_descriptor = 0x40002934; +usb_get_descriptor = 0x40002940; +usb_dev_resume = 0x4000294c; +usb_dev_get_configuration = 0x40002958; +usb_set_config = 0x40002964; +usb_deconfig = 0x40002970; +usb_enable = 0x4000297c; +usb_disable = 0x40002988; +usb_write_would_block = 0x40002994; +usb_write = 0x400029a0; +usb_read = 0x400029ac; +usb_ep_set_stall = 0x400029b8; +usb_ep_clear_stall = 0x400029c4; +usb_ep_read_wait = 0x400029d0; +usb_ep_read_continue = 0x400029dc; +usb_transfer_ep_callback = 0x400029e8; +usb_transfer = 0x400029f4; +usb_cancel_transfer = 0x40002a00; +usb_transfer_sync = 0x40002a0c; +usb_dfu_set_detach_cb = 0x40002a18; +dfu_class_handle_req = 0x40002a24; +dfu_status_cb = 0x40002a30; +dfu_custom_handle_req = 0x40002a3c; +usb_dfu_init = 0x40002a48; +usb_dfu_force_detach = 0x40002a54; +usb_dev_deinit = 0x40002a60; +usb_dw_ctrl_deinit = 0x40002a6c; +/* Data (.data, .bss, .rodata) */ +s_usb_osglue = 0x3fceffac; + + +/*************************************** + Group bluetooth + ***************************************/ + +/* Functions */ +bt_rf_coex_get_dft_cfg = 0x40002a78; +bt_rf_coex_hooks_p_set = 0x40002a84; +btdm_con_maxevtime_cal_impl = 0x40002a90; +btdm_controller_get_compile_version_impl = 0x40002a9c; +btdm_controller_rom_data_init = 0x40002aa8; +btdm_dis_privacy_err_report_impl = 0x40002ab4; +btdm_disable_adv_delay_impl = 0x40002ac0; +btdm_enable_scan_continue_impl = 0x40002acc; +btdm_enable_scan_forever_impl = 0x40002ad8; +btdm_get_power_state_impl = 0x40002ae4; +btdm_get_prevent_sleep_flag_impl = 0x40002af0; +btdm_power_state_active_impl = 0x40002afc; +btdm_switch_phy_coded_impl = 0x40002b08; +hci_acl_data_handler = 0x40002b14; +hci_disconnect_cmd_handler = 0x40002b20; +hci_le_con_upd_cmd_handler = 0x40002b2c; +hci_le_ltk_req_neg_reply_cmd_handler = 0x40002b38; +hci_le_ltk_req_reply_cmd_handler = 0x40002b44; +hci_le_rd_chnl_map_cmd_handler = 0x40002b50; +hci_le_rd_phy_cmd_handler = 0x40002b5c; +hci_le_rd_rem_feats_cmd_handler = 0x40002b68; +hci_le_rem_con_param_req_neg_reply_cmd_handler = 0x40002b74; +hci_le_rem_con_param_req_reply_cmd_handler = 0x40002b80; +hci_le_set_data_len_cmd_handler = 0x40002b8c; +hci_le_set_phy_cmd_handler = 0x40002b98; +hci_le_start_enc_cmd_handler = 0x40002ba4; +hci_rd_auth_payl_to_cmd_handler = 0x40002bb0; +hci_rd_rem_ver_info_cmd_handler = 0x40002bbc; +hci_rd_rssi_cmd_handler = 0x40002bc8; +hci_rd_tx_pwr_lvl_cmd_handler = 0x40002bd4; +hci_vs_set_pref_slave_evt_dur_cmd_handler = 0x40002be0; +hci_vs_set_pref_slave_latency_cmd_handler = 0x40002bec; +hci_wr_auth_payl_to_cmd_handler = 0x40002bf8; +ll_channel_map_ind_handler = 0x40002c04; +ll_connection_param_req_handler = 0x40002c10; +ll_connection_param_rsp_handler = 0x40002c1c; +ll_connection_update_ind_handler = 0x40002c28; +ll_enc_req_handler = 0x40002c34; +ll_enc_rsp_handler = 0x40002c40; +ll_feature_req_handler = 0x40002c4c; +ll_feature_rsp_handler = 0x40002c58; +ll_length_req_handler = 0x40002c64; +ll_length_rsp_handler = 0x40002c70; +ll_min_used_channels_ind_handler = 0x40002c7c; +ll_pause_enc_req_handler = 0x40002c88; +ll_pause_enc_rsp_handler = 0x40002c94; +ll_phy_req_handler = 0x40002ca0; +ll_phy_rsp_handler = 0x40002cac; +ll_phy_update_ind_handler = 0x40002cb8; +ll_ping_req_handler = 0x40002cc4; +ll_ping_rsp_handler = 0x40002cd0; +ll_slave_feature_req_handler = 0x40002cdc; +ll_start_enc_req_handler = 0x40002ce8; +ll_start_enc_rsp_handler = 0x40002cf4; +ll_terminate_ind_handler = 0x40002d00; +ll_version_ind_handler = 0x40002d0c; +llc_auth_payl_nearly_to_handler = 0x40002d18; +llc_auth_payl_real_to_handler = 0x40002d24; +llc_encrypt_ind_handler = 0x40002d30; +llc_hci_command_handler_wrapper = 0x40002d3c; +llc_ll_connection_param_req_pdu_send = 0x40002d48; +llc_ll_connection_param_rsp_pdu_send = 0x40002d54; +llc_ll_connection_update_ind_pdu_send = 0x40002d60; +llc_ll_enc_req_pdu_send = 0x40002d6c; +llc_ll_enc_rsp_pdu_send = 0x40002d78; +llc_ll_feature_req_pdu_send = 0x40002d84; +llc_ll_feature_rsp_pdu_send = 0x40002d90; +llc_ll_length_req_pdu_send = 0x40002d9c; +llc_ll_length_rsp_pdu_send = 0x40002da8; +llc_ll_pause_enc_req_pdu_send = 0x40002db4; +llc_ll_pause_enc_rsp_pdu_send = 0x40002dc0; +llc_ll_phy_req_pdu_send = 0x40002dcc; +llc_ll_phy_rsp_pdu_send = 0x40002dd8; +llc_ll_ping_req_pdu_send = 0x40002de4; +llc_ll_ping_rsp_pdu_send = 0x40002df0; +llc_ll_start_enc_req_pdu_send = 0x40002dfc; +llc_ll_start_enc_rsp_pdu_send = 0x40002e08; +llc_ll_terminate_ind_pdu_send = 0x40002e14; +llc_ll_unknown_rsp_pdu_send = 0x40002e20; +llc_llcp_ch_map_update_ind_pdu_send = 0x40002e2c; +llc_llcp_phy_upd_ind_pdu_send = 0x40002e38; +llc_llcp_version_ind_pdu_send = 0x40002e44; +llc_op_ch_map_upd_ind_handler = 0x40002e50; +llc_op_con_upd_ind_handler = 0x40002e5c; +llc_op_disconnect_ind_handler = 0x40002e68; +llc_op_dl_upd_ind_handler = 0x40002e74; +llc_op_encrypt_ind_handler = 0x40002e80; +llc_op_feats_exch_ind_handler = 0x40002e8c; +llc_op_le_ping_ind_handler = 0x40002e98; +llc_op_phy_upd_ind_handler = 0x40002ea4; +llc_op_ver_exch_ind_handler = 0x40002eb0; +llc_stopped_ind_handler = 0x40002ebc; +lld_acl_rx_ind_handler = 0x40002ec8; +lld_acl_tx_cfm_handler = 0x40002ed4; +lld_adv_end_ind_handler = 0x40002ee0; +lld_adv_rep_ind_handler = 0x40002eec; +lld_ch_map_upd_cfm_handler = 0x40002ef8; +lld_con_estab_ind_handler = 0x40002f04; +lld_con_evt_sd_evt_time_set = 0x40002f10; +lld_con_offset_upd_ind_handler = 0x40002f1c; +lld_con_param_upd_cfm_handler = 0x40002f28; +lld_disc_ind_handler = 0x40002f34; +lld_init_end_ind_handler = 0x40002f40; +lld_llcp_rx_ind_handler_wrapper = 0x40002f4c; +lld_llcp_tx_cfm_handler = 0x40002f58; +lld_per_adv_end_ind_handler = 0x40002f64; +lld_per_adv_rep_ind_handler = 0x40002f70; +lld_per_adv_rx_end_ind_handler = 0x40002f7c; +lld_phy_coded_500k_get = 0x40002f88; +lld_phy_upd_cfm_handler = 0x40002f94; +lld_scan_end_ind_handler = 0x40002fa0; +lld_scan_req_ind_handler = 0x40002fac; +lld_sync_start_req_handler = 0x40002fb8; +lld_test_end_ind_handler = 0x40002fc4; +lld_update_rxbuf_handler = 0x40002fd0; +llm_ch_map_update_ind_handler = 0x40002fdc; +llm_hci_command_handler_wrapper = 0x40002fe8; +llm_scan_period_to_handler = 0x40002ff4; +r_Add2SelfBigHex256 = 0x40003000; +r_AddBigHex256 = 0x4000300c; +r_AddBigHexModP256 = 0x40003018; +r_AddP256 = 0x40003024; +r_AddPdiv2_256 = 0x40003030; +r_GF_Jacobian_Point_Addition256 = 0x4000303c; +r_GF_Jacobian_Point_Double256 = 0x40003048; +r_GF_Point_Jacobian_To_Affine256 = 0x40003054; +r_MultiplyBigHexByUint32_256 = 0x40003060; +r_MultiplyBigHexModP256 = 0x4000306c; +r_MultiplyByU16ModP256 = 0x40003078; +r_SubtractBigHex256 = 0x40003084; +r_SubtractBigHexMod256 = 0x40003090; +r_SubtractBigHexUint32_256 = 0x4000309c; +r_SubtractFromSelfBigHex256 = 0x400030a8; +r_SubtractFromSelfBigHexSign256 = 0x400030b4; +r_aes_alloc = 0x400030c0; +r_aes_ccm_continue = 0x400030cc; +r_aes_ccm_process_e = 0x400030d8; +r_aes_ccm_xor_128_lsb = 0x400030e4; +r_aes_ccm_xor_128_msb = 0x400030f0; +r_aes_cmac_continue = 0x400030fc; +r_aes_cmac_start = 0x40003108; +r_aes_k1_continue = 0x40003114; +r_aes_k2_continue = 0x40003120; +r_aes_k3_continue = 0x4000312c; +r_aes_k4_continue = 0x40003138; +r_aes_shift_left_128 = 0x40003144; +r_aes_start = 0x40003150; +r_aes_xor_128 = 0x4000315c; +r_assert_err = 0x40003168; +r_assert_param = 0x40003174; +r_assert_warn = 0x40003180; +r_bigHexInversion256 = 0x4000318c; +r_ble_sw_cca_check_isr = 0x40003198; +r_ble_util_buf_acl_tx_alloc = 0x400031a4; +r_ble_util_buf_acl_tx_elt_get = 0x400031b0; +r_ble_util_buf_acl_tx_free = 0x400031bc; +r_ble_util_buf_acl_tx_free_in_isr = 0x400031c8; +r_ble_util_buf_adv_tx_alloc = 0x400031d4; +r_ble_util_buf_adv_tx_free = 0x400031e0; +r_ble_util_buf_adv_tx_free_in_isr = 0x400031ec; +r_ble_util_buf_env_deinit = 0x400031f8; +r_ble_util_buf_env_init = 0x40003204; +r_ble_util_buf_get_rx_buf_nb = 0x40003210; +r_ble_util_buf_get_rx_buf_size = 0x4000321c; +r_ble_util_buf_llcp_tx_alloc = 0x40003228; +r_ble_util_buf_llcp_tx_free = 0x40003234; +r_ble_util_buf_rx_alloc = 0x40003240; +r_ble_util_buf_rx_alloc_in_isr = 0x4000324c; +r_ble_util_buf_rx_free = 0x40003258; +r_ble_util_buf_rx_free_in_isr = 0x40003264; +r_ble_util_buf_set_rx_buf_nb = 0x40003270; +r_ble_util_buf_set_rx_buf_size = 0x4000327c; +r_ble_util_data_rx_buf_reset = 0x40003288; +r_bt_bb_get_intr_mask = 0x40003294; +r_bt_bb_intr_clear = 0x400032a0; +r_bt_bb_intr_mask_set = 0x400032ac; +r_bt_bb_isr = 0x400032b8; +r_bt_rf_coex_cfg_set = 0x400032c4; +r_bt_rf_coex_conn_dynamic_pti_en_get = 0x400032d0; +r_bt_rf_coex_conn_phy_coded_data_time_limit_en_get = 0x400032dc; +r_bt_rf_coex_ext_adv_dynamic_pti_en_get = 0x400032e8; +r_bt_rf_coex_ext_scan_dynamic_pti_en_get = 0x400032f4; +r_bt_rf_coex_legacy_adv_dynamic_pti_en_get = 0x40003300; +r_bt_rf_coex_per_adv_dynamic_pti_en_get = 0x4000330c; +r_bt_rf_coex_pti_table_get = 0x40003318; +r_bt_rf_coex_st_param_get = 0x40003324; +r_bt_rf_coex_st_param_set = 0x40003330; +r_bt_rf_coex_sync_scan_dynamic_pti_en_get = 0x4000333c; +r_bt_rma_apply_rule_cs_fmt = 0x40003348; +r_bt_rma_apply_rule_cs_idx = 0x40003354; +r_bt_rma_configure = 0x40003360; +r_bt_rma_deregister_rule_cs_fmt = 0x4000336c; +r_bt_rma_deregister_rule_cs_idx = 0x40003378; +r_bt_rma_get_ant_by_act = 0x40003384; +r_bt_rma_init = 0x40003390; +r_bt_rma_register_rule_cs_fmt = 0x4000339c; +r_bt_rma_register_rule_cs_idx = 0x400033a8; +r_bt_rtp_apply_rule_cs_fmt = 0x400033b4; +r_bt_rtp_apply_rule_cs_idx = 0x400033c0; +r_bt_rtp_deregister_rule_cs_fmt = 0x400033cc; +r_bt_rtp_deregister_rule_cs_idx = 0x400033d8; +r_bt_rtp_get_txpwr_idx_by_act = 0x400033e4; +r_bt_rtp_init = 0x400033f0; +r_bt_rtp_register_rule_cs_fmt = 0x400033fc; +r_bt_rtp_register_rule_cs_idx = 0x40003408; +r_btdm_isr = 0x40003414; +r_btdm_task_post = 0x40003420; +r_btdm_task_post_from_isr = 0x4000342c; +r_btdm_task_recycle = 0x40003438; +r_cali_phase_match_p = 0x40003444; +r_cmp_abs_time = 0x40003450; +r_cmp_dest_id = 0x4000345c; +r_cmp_timer_id = 0x40003468; +r_co_bdaddr_compare = 0x40003474; +r_co_ble_pkt_dur_in_us = 0x40003480; +r_co_list_extract = 0x4000348c; +r_co_list_extract_after = 0x40003498; +r_co_list_extract_sublist = 0x400034a4; +r_co_list_find = 0x400034b0; +r_co_list_init = 0x400034bc; +r_co_list_insert_after = 0x400034c8; +r_co_list_insert_before = 0x400034d4; +r_co_list_merge = 0x400034e0; +r_co_list_pool_init = 0x400034ec; +r_co_list_pop_front = 0x400034f8; +r_co_list_push_back = 0x40003504; +r_co_list_push_back_sublist = 0x40003510; +r_co_list_push_front = 0x4000351c; +r_co_list_size = 0x40003528; +r_co_nb_good_le_channels = 0x40003534; +r_co_util_pack = 0x40003540; +r_co_util_read_array_size = 0x4000354c; +r_co_util_unpack = 0x40003558; +r_dbg_env_deinit = 0x40003564; +r_dbg_env_init = 0x40003570; +r_dbg_platform_reset_complete = 0x4000357c; +r_dl_upd_proc_start = 0x40003588; +r_dump_data = 0x40003594; +r_ecc_abort_key256_generation = 0x400035a0; +r_ecc_gen_new_public_key = 0x400035ac; +r_ecc_gen_new_secret_key = 0x400035b8; +r_ecc_generate_key256 = 0x400035c4; +r_ecc_get_debug_Keys = 0x400035d0; +r_ecc_init = 0x400035dc; +r_ecc_is_valid_point = 0x400035e8; +r_ecc_multiplication_event_handler = 0x400035f4; +r_ecc_point_multiplication_win_256 = 0x40003600; +r_emi_alloc_em_mapping_by_offset = 0x4000360c; +r_emi_base_reg_lut_show = 0x40003618; +r_emi_em_base_reg_show = 0x40003624; +r_emi_free_em_mapping_by_offset = 0x40003630; +r_emi_get_em_mapping_idx_by_offset = 0x4000363c; +r_emi_get_mem_addr_by_offset = 0x40003648; +r_emi_overwrite_em_mapping_by_offset = 0x40003654; +r_esp_vendor_hci_command_handler = 0x40003660; +r_get_stack_usage = 0x4000366c; +r_h4tl_acl_hdr_rx_evt_handler = 0x40003678; +r_h4tl_cmd_hdr_rx_evt_handler = 0x40003684; +r_h4tl_cmd_pld_rx_evt_handler = 0x40003690; +r_h4tl_eif_io_event_post = 0x4000369c; +r_h4tl_eif_register = 0x400036a8; +r_h4tl_init = 0x400036b4; +r_h4tl_out_of_sync = 0x400036c0; +r_h4tl_out_of_sync_check = 0x400036cc; +r_h4tl_read_hdr = 0x400036d8; +r_h4tl_read_next_out_of_sync = 0x400036e4; +r_h4tl_read_payl = 0x400036f0; +r_h4tl_read_start = 0x400036fc; +r_h4tl_rx_acl_hdr_extract = 0x40003708; +r_h4tl_rx_cmd_hdr_extract = 0x40003714; +r_h4tl_rx_done = 0x40003720; +r_h4tl_start = 0x4000372c; +r_h4tl_stop = 0x40003738; +r_h4tl_tx_done = 0x40003744; +r_h4tl_tx_evt_handler = 0x40003750; +r_h4tl_write = 0x4000375c; +r_hci_acl_tx_data_alloc = 0x40003768; +r_hci_acl_tx_data_received = 0x40003774; +r_hci_basic_cmd_send_2_controller = 0x40003780; +r_hci_ble_adv_report_filter_check = 0x4000378c; +r_hci_ble_adv_report_tx_check = 0x40003798; +r_hci_ble_conhdl_register = 0x400037a4; +r_hci_ble_conhdl_unregister = 0x400037b0; +r_hci_build_acl_data = 0x400037bc; +r_hci_build_cc_evt = 0x400037c8; +r_hci_build_cs_evt = 0x400037d4; +r_hci_build_evt = 0x400037e0; +r_hci_build_le_evt = 0x400037ec; +r_hci_cmd_get_max_param_size = 0x400037f8; +r_hci_cmd_received = 0x40003804; +r_hci_cmd_reject = 0x40003810; +r_hci_evt_mask_check = 0x4000381c; +r_hci_evt_mask_set = 0x40003828; +r_hci_fc_acl_buf_size_set = 0x40003834; +r_hci_fc_acl_en = 0x40003840; +r_hci_fc_acl_packet_sent = 0x4000384c; +r_hci_fc_check_host_available_nb_acl_packets = 0x40003858; +r_hci_fc_host_nb_acl_pkts_complete = 0x40003864; +r_hci_fc_init = 0x40003870; +r_hci_look_for_cmd_desc = 0x4000387c; +r_hci_look_for_evt_desc = 0x40003888; +r_hci_look_for_le_evt_desc = 0x40003894; +r_hci_look_for_le_evt_desc_esp = 0x400038a0; +r_hci_pack_bytes = 0x400038ac; +r_hci_register_vendor_desc_tab = 0x400038b8; +r_hci_send_2_controller = 0x400038c4; +r_hci_send_2_host = 0x400038d0; +r_hci_tl_c2h_data_flow_on = 0x400038dc; +r_hci_tl_cmd_hdr_rx_evt_handler = 0x400038e8; +r_hci_tl_cmd_pld_rx_evt_handler = 0x400038f4; +r_hci_tl_get_pkt = 0x40003900; +r_hci_tl_hci_pkt_handler = 0x4000390c; +r_hci_tl_hci_tx_done_evt_handler = 0x40003918; +r_hci_tl_inc_nb_h2c_cmd_pkts = 0x40003924; +r_hci_tl_save_pkt = 0x40003930; +r_hci_tl_send = 0x4000393c; +r_hci_tx_done = 0x40003948; +r_hci_tx_start = 0x40003954; +r_hci_tx_trigger = 0x40003960; +r_isValidSecretKey_256 = 0x4000396c; +r_ke_check_malloc = 0x40003978; +r_ke_event_callback_set = 0x40003984; +r_ke_event_clear = 0x40003990; +r_ke_event_flush = 0x4000399c; +r_ke_event_get = 0x400039a8; +r_ke_event_get_all = 0x400039b4; +r_ke_event_init = 0x400039c0; +r_ke_event_schedule = 0x400039cc; +r_ke_event_set = 0x400039d8; +r_ke_flush = 0x400039e4; +r_ke_free = 0x400039f0; +r_ke_handler_search = 0x400039fc; +r_ke_init = 0x40003a08; +r_ke_is_free = 0x40003a14; +r_ke_malloc = 0x40003a20; +r_ke_mem_init = 0x40003a2c; +r_ke_mem_is_empty = 0x40003a38; +r_ke_mem_is_in_heap = 0x40003a44; +r_ke_msg_alloc = 0x40003a50; +r_ke_msg_dest_id_get = 0x40003a5c; +r_ke_msg_discard = 0x40003a68; +r_ke_msg_forward = 0x40003a74; +r_ke_msg_forward_new_id = 0x40003a80; +r_ke_msg_free = 0x40003a8c; +r_ke_msg_in_queue = 0x40003a98; +r_ke_msg_save = 0x40003aa4; +r_ke_msg_send = 0x40003ab0; +r_ke_msg_send_basic = 0x40003abc; +r_ke_msg_src_id_get = 0x40003ac8; +r_ke_queue_extract = 0x40003ad4; +r_ke_queue_insert = 0x40003ae0; +r_ke_sleep_check = 0x40003aec; +r_ke_state_get = 0x40003af8; +r_ke_state_set = 0x40003b04; +r_ke_task_check = 0x40003b10; +r_ke_task_create = 0x40003b1c; +r_ke_task_delete = 0x40003b28; +r_ke_task_handler_get = 0x40003b34; +r_ke_task_init = 0x40003b40; +r_ke_task_msg_flush = 0x40003b4c; +r_ke_task_saved_update = 0x40003b58; +r_ke_task_schedule = 0x40003b64; +r_ke_time = 0x40003b70; +r_ke_time_cmp = 0x40003b7c; +r_ke_time_past = 0x40003b88; +r_ke_timer_active = 0x40003b94; +r_ke_timer_adjust_all = 0x40003ba0; +r_ke_timer_clear = 0x40003bac; +r_ke_timer_init = 0x40003bb8; +r_ke_timer_schedule = 0x40003bc4; +r_ke_timer_set = 0x40003bd0; +r_led_init = 0x40003bdc; +r_led_set_all = 0x40003be8; +r_llc_aes_res_cb = 0x40003bf4; +r_llc_ch_map_up_proc_err_cb = 0x40003c00; +r_llc_cleanup = 0x40003c0c; +r_llc_cmd_cmp_send = 0x40003c18; +r_llc_cmd_stat_send = 0x40003c24; +r_llc_con_move_cbk = 0x40003c30; +r_llc_con_plan_set_update = 0x40003c3c; +r_llc_con_upd_param_in_range = 0x40003c48; +r_llc_disconnect = 0x40003c54; +r_llc_disconnect_end = 0x40003c60; +r_llc_disconnect_proc_continue = 0x40003c6c; +r_llc_disconnect_proc_err_cb = 0x40003c78; +r_llc_dl_chg_check = 0x40003c84; +r_llc_dle_proc_err_cb = 0x40003c90; +r_llc_feats_exch_proc_err_cb = 0x40003c9c; +r_llc_hci_cmd_handler_tab_p_get = 0x40003ca8; +r_llc_hci_command_handler = 0x40003cb4; +r_llc_hci_con_param_req_evt_send = 0x40003cc0; +r_llc_hci_con_upd_info_send = 0x40003ccc; +r_llc_hci_disconnected_dis = 0x40003cd8; +r_llc_hci_dl_upd_info_send = 0x40003ce4; +r_llc_hci_enc_evt_send = 0x40003cf0; +r_llc_hci_feats_info_send = 0x40003cfc; +r_llc_hci_le_phy_upd_cmp_evt_send = 0x40003d08; +r_llc_hci_ltk_request_evt_send = 0x40003d14; +r_llc_hci_nb_cmp_pkts_evt_send = 0x40003d20; +r_llc_hci_version_info_send = 0x40003d2c; +r_llc_init_term_proc = 0x40003d38; +r_llc_iv_skd_rand_gen = 0x40003d44; +r_llc_le_ping_proc_continue = 0x40003d50; +r_llc_le_ping_proc_err_cb = 0x40003d5c; +r_llc_le_ping_restart = 0x40003d68; +r_llc_le_ping_set = 0x40003d74; +r_llc_ll_pause_enc_rsp_ack_handler = 0x40003d80; +r_llc_ll_reject_ind_ack_handler = 0x40003d8c; +r_llc_ll_reject_ind_pdu_send = 0x40003d98; +r_llc_ll_start_enc_rsp_ack_handler = 0x40003da4; +r_llc_ll_terminate_ind_ack = 0x40003db0; +r_llc_ll_unknown_ind_handler = 0x40003dbc; +r_llc_llcp_send = 0x40003dc8; +r_llc_llcp_state_set = 0x40003dd4; +r_llc_llcp_trans_timer_set = 0x40003de0; +r_llc_llcp_tx_check = 0x40003dec; +r_llc_loc_ch_map_proc_continue = 0x40003df8; +r_llc_loc_con_upd_proc_continue = 0x40003e04; +r_llc_loc_con_upd_proc_err_cb = 0x40003e10; +r_llc_loc_dl_upd_proc_continue = 0x40003e1c; +r_llc_loc_encrypt_proc_continue = 0x40003e28; +r_llc_loc_encrypt_proc_err_cb = 0x40003e34; +r_llc_loc_feats_exch_proc_continue = 0x40003e40; +r_llc_loc_phy_upd_proc_continue = 0x40003e4c; +r_llc_loc_phy_upd_proc_err_cb = 0x40003e58; +r_llc_msg_handler_tab_p_get = 0x40003e64; +r_llc_pref_param_compute = 0x40003e70; +r_llc_proc_collision_check = 0x40003e7c; +r_llc_proc_err_ind = 0x40003e88; +r_llc_proc_get = 0x40003e94; +r_llc_proc_id_get = 0x40003ea0; +r_llc_proc_reg = 0x40003eac; +r_llc_proc_state_get = 0x40003eb8; +r_llc_proc_state_set = 0x40003ec4; +r_llc_proc_timer_pause_set = 0x40003ed0; +r_llc_proc_timer_set = 0x40003edc; +r_llc_proc_unreg = 0x40003ee8; +r_llc_rem_ch_map_proc_continue = 0x40003ef4; +r_llc_rem_con_upd_proc_continue = 0x40003f00; +r_llc_rem_con_upd_proc_err_cb = 0x40003f0c; +r_llc_rem_dl_upd_proc = 0x40003f18; +r_llc_rem_encrypt_proc_continue = 0x40003f24; +r_llc_rem_encrypt_proc_err_cb = 0x40003f30; +r_llc_rem_phy_upd_proc_continue = 0x40003f3c; +r_llc_rem_phy_upd_proc_err_cb = 0x40003f48; +r_llc_role_get = 0x40003f54; +r_llc_sk_gen = 0x40003f60; +r_llc_start = 0x40003f6c; +r_llc_stop = 0x40003f78; +r_llc_ver_exch_loc_proc_continue = 0x40003f84; +r_llc_ver_proc_err_cb = 0x40003f90; +r_llcp_pdu_handler_tab_p_get = 0x40003f9c; +r_lld_aa_gen = 0x40003fa8; +r_lld_adv_adv_data_set = 0x40003fb4; +r_lld_adv_adv_data_update = 0x40003fc0; +r_lld_adv_aux_ch_idx_set = 0x40003fcc; +r_lld_adv_aux_evt_canceled_cbk = 0x40003fd8; +r_lld_adv_aux_evt_start_cbk = 0x40003fe4; +r_lld_adv_coex_check_ext_adv_synced = 0x40003ff0; +r_lld_adv_coex_env_reset = 0x40003ffc; +r_lld_adv_duration_update = 0x40004008; +r_lld_adv_dynamic_pti_process = 0x40004014; +r_lld_adv_end = 0x40004020; +r_lld_adv_evt_canceled_cbk = 0x4000402c; +r_lld_adv_evt_start_cbk = 0x40004038; +r_lld_adv_ext_chain_construct = 0x40004044; +r_lld_adv_ext_pkt_prepare = 0x40004050; +r_lld_adv_frm_cbk = 0x4000405c; +r_lld_adv_frm_isr = 0x40004068; +r_lld_adv_frm_skip_isr = 0x40004074; +r_lld_adv_init = 0x40004080; +r_lld_adv_pkt_rx = 0x4000408c; +r_lld_adv_pkt_rx_connect_ind = 0x40004098; +r_lld_adv_pkt_rx_send_scan_req_evt = 0x400040a4; +r_lld_adv_rand_addr_update = 0x400040b0; +r_lld_adv_restart = 0x400040bc; +r_lld_adv_scan_rsp_data_set = 0x400040c8; +r_lld_adv_scan_rsp_data_update = 0x400040d4; +r_lld_adv_set_tx_power = 0x400040e0; +r_lld_adv_start = 0x400040ec; +r_lld_adv_stop = 0x400040f8; +r_lld_adv_sync_info_set = 0x40004104; +r_lld_adv_sync_info_update = 0x40004110; +r_lld_calc_aux_rx = 0x4000411c; +r_lld_cca_alloc = 0x40004128; +r_lld_cca_data_reset = 0x40004134; +r_lld_cca_free = 0x40004140; +r_lld_ch_assess_data_get = 0x4000414c; +r_lld_ch_idx_get = 0x40004158; +r_lld_ch_map_set = 0x40004164; +r_lld_channel_assess = 0x40004170; +r_lld_con_activity_act_offset_compute = 0x4000417c; +r_lld_con_activity_offset_compute = 0x40004188; +r_lld_con_ch_map_update = 0x40004194; +r_lld_con_cleanup = 0x400041a0; +r_lld_con_current_tx_power_get = 0x400041ac; +r_lld_con_data_flow_set = 0x400041b8; +r_lld_con_data_len_update = 0x400041c4; +r_lld_con_data_tx = 0x400041d0; +r_lld_con_enc_key_load = 0x400041dc; +r_lld_con_event_counter_get = 0x400041e8; +r_lld_con_evt_canceled_cbk = 0x400041f4; +r_lld_con_evt_duration_min_get = 0x40004200; +r_lld_con_evt_max_eff_time_cal = 0x4000420c; +r_lld_con_evt_sd_evt_time_get = 0x40004218; +r_lld_con_evt_start_cbk = 0x40004224; +r_lld_con_evt_time_update = 0x40004230; +r_lld_con_free_all_tx_buf = 0x4000423c; +r_lld_con_frm_cbk = 0x40004248; +r_lld_con_frm_isr = 0x40004254; +r_lld_con_frm_skip_isr = 0x40004260; +r_lld_con_init = 0x4000426c; +r_lld_con_llcp_tx = 0x40004278; +r_lld_con_max_lat_calc = 0x40004284; +r_lld_con_offset_get = 0x40004290; +r_lld_con_param_update = 0x4000429c; +r_lld_con_phys_update = 0x400042a8; +r_lld_con_pref_slave_evt_dur_set = 0x400042b4; +r_lld_con_pref_slave_latency_set = 0x400042c0; +r_lld_con_rssi_get = 0x400042cc; +r_lld_con_rx = 0x400042d8; +r_lld_con_rx_channel_assess = 0x400042e4; +r_lld_con_rx_enc = 0x400042f0; +r_lld_con_rx_isr = 0x400042fc; +r_lld_con_rx_link_info_check = 0x40004308; +r_lld_con_rx_llcp_check = 0x40004314; +r_lld_con_rx_sync_time_update = 0x40004320; +r_lld_con_sched = 0x4000432c; +r_lld_con_set_tx_power = 0x40004338; +r_lld_con_start = 0x40004344; +r_lld_con_stop = 0x40004350; +r_lld_con_tx = 0x4000435c; +r_lld_con_tx_enc = 0x40004368; +r_lld_con_tx_isr = 0x40004374; +r_lld_con_tx_len_update = 0x40004380; +r_lld_con_tx_len_update_for_intv = 0x4000438c; +r_lld_con_tx_len_update_for_rate = 0x40004398; +r_lld_con_tx_prog = 0x400043a4; +r_lld_conn_dynamic_pti_process = 0x400043b0; +r_lld_continue_scan_rx_isr_end_process = 0x400043bc; +r_lld_ext_scan_dynamic_pti_process = 0x400043c8; +r_lld_hw_cca_end_isr = 0x400043d4; +r_lld_hw_cca_evt_handler = 0x400043e0; +r_lld_hw_cca_isr = 0x400043ec; +r_lld_init_cal_anchor_point = 0x400043f8; +r_lld_init_compute_winoffset = 0x40004404; +r_lld_init_connect_req_pack = 0x40004410; +r_lld_init_end = 0x4000441c; +r_lld_init_evt_canceled_cbk = 0x40004428; +r_lld_init_evt_start_cbk = 0x40004434; +r_lld_init_frm_cbk = 0x40004440; +r_lld_init_frm_eof_isr = 0x4000444c; +r_lld_init_frm_skip_isr = 0x40004458; +r_lld_init_init = 0x40004464; +r_lld_init_process_pkt_rx = 0x40004470; +r_lld_init_process_pkt_rx_adv_ext_ind = 0x4000447c; +r_lld_init_process_pkt_rx_adv_ind_or_direct_ind = 0x40004488; +r_lld_init_process_pkt_rx_aux_connect_rsp = 0x40004494; +r_lld_init_process_pkt_tx = 0x400044a0; +r_lld_init_process_pkt_tx_cal_con_timestamp = 0x400044ac; +r_lld_init_sched = 0x400044b8; +r_lld_init_set_tx_power = 0x400044c4; +r_lld_init_start = 0x400044d0; +r_lld_init_stop = 0x400044dc; +r_lld_instant_proc_end = 0x400044e8; +r_lld_llcp_rx_ind_handler = 0x400044f4; +r_lld_per_adv_ch_map_update = 0x40004500; +r_lld_per_adv_chain_construct = 0x4000450c; +r_lld_per_adv_cleanup = 0x40004518; +r_lld_per_adv_coex_env_reset = 0x40004524; +r_lld_per_adv_data_set = 0x40004530; +r_lld_per_adv_data_update = 0x4000453c; +r_lld_per_adv_dynamic_pti_process = 0x40004548; +r_lld_per_adv_evt_canceled_cbk = 0x40004554; +r_lld_per_adv_evt_start_cbk = 0x40004560; +r_lld_per_adv_ext_pkt_prepare = 0x4000456c; +r_lld_per_adv_frm_cbk = 0x40004578; +r_lld_per_adv_frm_isr = 0x40004584; +r_lld_per_adv_frm_skip_isr = 0x40004590; +r_lld_per_adv_init = 0x4000459c; +r_lld_per_adv_init_info_get = 0x400045a8; +r_lld_per_adv_list_add = 0x400045b4; +r_lld_per_adv_list_rem = 0x400045c0; +r_lld_per_adv_sched = 0x400045cc; +r_lld_per_adv_set_tx_power = 0x400045d8; +r_lld_per_adv_start = 0x400045e4; +r_lld_per_adv_stop = 0x400045f0; +r_lld_per_adv_sync_info_get = 0x400045fc; +r_lld_process_cca_data = 0x40004608; +r_lld_ral_search = 0x40004614; +r_lld_read_clock = 0x40004620; +r_lld_res_list_add = 0x4000462c; +r_lld_res_list_clear = 0x40004638; +r_lld_res_list_is_empty = 0x40004644; +r_lld_res_list_local_rpa_get = 0x40004650; +r_lld_res_list_peer_rpa_get = 0x4000465c; +r_lld_res_list_peer_update = 0x40004668; +r_lld_res_list_priv_mode_update = 0x40004674; +r_lld_res_list_rem = 0x40004680; +r_lld_reset_reg = 0x4000468c; +r_lld_rpa_renew = 0x40004698; +r_lld_rpa_renew_evt_canceled_cbk = 0x400046a4; +r_lld_rpa_renew_evt_start_cbk = 0x400046b0; +r_lld_rpa_renew_instant_cbk = 0x400046bc; +r_lld_rxdesc_check = 0x400046c8; +r_lld_rxdesc_free = 0x400046d4; +r_lld_scan_create_sync = 0x400046e0; +r_lld_scan_create_sync_cancel = 0x400046ec; +r_lld_scan_end = 0x400046f8; +r_lld_scan_evt_canceled_cbk = 0x40004704; +r_lld_scan_evt_start_cbk = 0x40004710; +r_lld_scan_frm_cbk = 0x4000471c; +r_lld_scan_frm_eof_isr = 0x40004728; +r_lld_scan_frm_rx_isr = 0x40004734; +r_lld_scan_frm_skip_isr = 0x40004740; +r_lld_scan_init = 0x4000474c; +r_lld_scan_params_update = 0x40004758; +r_lld_scan_process_pkt_rx = 0x40004764; +r_lld_scan_process_pkt_rx_adv_rep = 0x40004770; +r_lld_scan_process_pkt_rx_aux_adv_ind = 0x4000477c; +r_lld_scan_process_pkt_rx_aux_chain_ind = 0x40004788; +r_lld_scan_process_pkt_rx_aux_scan_rsp = 0x40004794; +r_lld_scan_process_pkt_rx_ext_adv = 0x400047a0; +r_lld_scan_process_pkt_rx_ext_adv_ind = 0x400047ac; +r_lld_scan_process_pkt_rx_legacy_adv = 0x400047b8; +r_lld_scan_restart = 0x400047c4; +r_lld_scan_sched = 0x400047d0; +r_lld_scan_set_tx_power = 0x400047dc; +r_lld_scan_start = 0x400047e8; +r_lld_scan_stop = 0x400047f4; +r_lld_scan_sync_accept = 0x40004800; +r_lld_scan_sync_info_unpack = 0x4000480c; +r_lld_scan_trunc_ind = 0x40004818; +r_lld_sw_cca_evt_handler = 0x40004824; +r_lld_sw_cca_isr = 0x40004830; +r_lld_sync_ch_map_update = 0x4000483c; +r_lld_sync_cleanup = 0x40004848; +r_lld_sync_evt_canceled_cbk = 0x40004854; +r_lld_sync_evt_start_cbk = 0x40004860; +r_lld_sync_frm_cbk = 0x4000486c; +r_lld_sync_frm_eof_isr = 0x40004878; +r_lld_sync_frm_rx_isr = 0x40004884; +r_lld_sync_frm_skip_isr = 0x40004890; +r_lld_sync_init = 0x4000489c; +r_lld_sync_process_pkt_rx = 0x400048a8; +r_lld_sync_process_pkt_rx_aux_sync_ind = 0x400048b4; +r_lld_sync_process_pkt_rx_pkt_check = 0x400048c0; +r_lld_sync_scan_dynamic_pti_process = 0x400048cc; +r_lld_sync_sched = 0x400048d8; +r_lld_sync_start = 0x400048e4; +r_lld_sync_stop = 0x400048f0; +r_lld_sync_trunc_ind = 0x400048fc; +r_lld_test_cleanup = 0x40004908; +r_lld_test_evt_canceled_cbk = 0x40004914; +r_lld_test_evt_start_cbk = 0x40004920; +r_lld_test_freq2chnl = 0x4000492c; +r_lld_test_frm_cbk = 0x40004938; +r_lld_test_frm_isr = 0x40004944; +r_lld_test_init = 0x40004950; +r_lld_test_rx_isr = 0x4000495c; +r_lld_test_set_tx_power = 0x40004968; +r_lld_test_start = 0x40004974; +r_lld_test_stop = 0x40004980; +r_lld_update_rxbuf = 0x4000498c; +r_lld_update_rxbuf_isr = 0x40004998; +r_lld_white_list_add = 0x400049a4; +r_lld_white_list_rem = 0x400049b0; +r_llm_activity_free_get = 0x400049bc; +r_llm_activity_free_set = 0x400049c8; +r_llm_activity_syncing_get = 0x400049d4; +r_llm_adv_con_len_check = 0x400049e0; +r_llm_adv_hdl_to_id = 0x400049ec; +r_llm_adv_rep_flow_control_check = 0x400049f8; +r_llm_adv_rep_flow_control_update = 0x40004a04; +r_llm_adv_reports_list_check = 0x40004a10; +r_llm_adv_set_all_release = 0x40004a1c; +r_llm_adv_set_dft_params = 0x40004a28; +r_llm_adv_set_release = 0x40004a34; +r_llm_aes_res_cb = 0x40004a40; +r_llm_ble_update_adv_flow_control = 0x40004a4c; +r_llm_ch_map_update = 0x40004a58; +r_llm_cmd_cmp_send = 0x40004a64; +r_llm_cmd_stat_send = 0x40004a70; +r_llm_dev_list_empty_entry = 0x40004a7c; +r_llm_dev_list_search = 0x40004a88; +r_llm_env_adv_dup_filt_deinit = 0x40004a94; +r_llm_env_adv_dup_filt_init = 0x40004aa0; +r_llm_init_ble_adv_report_flow_contol = 0x40004aac; +r_llm_is_dev_connected = 0x40004ab8; +r_llm_is_dev_synced = 0x40004ac4; +r_llm_is_non_con_act_ongoing_check = 0x40004ad0; +r_llm_is_wl_accessible = 0x40004adc; +r_llm_le_evt_mask_check = 0x40004ae8; +r_llm_le_features_get = 0x40004af4; +r_llm_link_disc = 0x40004b00; +r_llm_master_ch_map_get = 0x40004b0c; +r_llm_msg_handler_tab_p_get = 0x40004b18; +r_llm_no_activity = 0x40004b24; +r_llm_per_adv_slot_dur = 0x40004b30; +r_llm_plan_elt_get = 0x40004b3c; +r_llm_rx_path_comp_get = 0x40004b48; +r_llm_scan_start = 0x40004b54; +r_llm_scan_sync_acad_attach = 0x40004b60; +r_llm_scan_sync_acad_detach = 0x40004b6c; +r_llm_send_adv_lost_event_to_host = 0x40004b78; +r_llm_tx_path_comp_get = 0x40004b84; +r_misc_deinit = 0x40004b90; +r_misc_free_em_buf_in_isr = 0x40004b9c; +r_misc_init = 0x40004ba8; +r_misc_msg_handler_tab_p_get = 0x40004bb4; +r_notEqual256 = 0x40004bc0; +r_phy_upd_proc_start = 0x40004bcc; +r_platform_reset = 0x40004bd8; +r_register_esp_vendor_cmd_handler = 0x40004be4; +r_rf_em_init = 0x40004bf0; +r_rf_force_agc_enable = 0x40004bfc; +r_rf_reg_rd = 0x40004c08; +r_rf_reg_wr = 0x40004c14; +r_rf_reset = 0x40004c20; +r_rf_rssi_convert = 0x40004c2c; +r_rf_rw_v9_le_disable = 0x40004c38; +r_rf_rw_v9_le_enable = 0x40004c44; +r_rf_sleep = 0x40004c50; +r_rf_txpwr_cs_get = 0x40004c5c; +r_rf_txpwr_dbm_get = 0x40004c68; +r_rf_util_cs_fmt_convert = 0x40004c74; +r_rw_crypto_aes_ccm = 0x40004c80; +r_rw_crypto_aes_encrypt = 0x40004c8c; +r_rw_crypto_aes_init = 0x40004c98; +r_rw_crypto_aes_k1 = 0x40004ca4; +r_rw_crypto_aes_k2 = 0x40004cb0; +r_rw_crypto_aes_k3 = 0x40004cbc; +r_rw_crypto_aes_k4 = 0x40004cc8; +r_rw_crypto_aes_rand = 0x40004cd4; +r_rw_crypto_aes_result_handler = 0x40004ce0; +r_rw_crypto_aes_s1 = 0x40004cec; +r_rw_cryto_aes_cmac = 0x40004cf8; +r_rw_v9_init_em_radio_table = 0x40004d04; +r_rwble_isr = 0x40004d10; +r_rwble_sleep_enter = 0x40004d1c; +r_rwble_sleep_wakeup_end = 0x40004d28; +r_rwbtdm_isr_wrapper = 0x40004d34; +r_rwip_active_check = 0x40004d40; +r_rwip_aes_encrypt = 0x40004d4c; +r_rwip_assert = 0x40004d58; +r_rwip_crypt_evt_handler = 0x40004d64; +r_rwip_crypt_isr_handler = 0x40004d70; +r_rwip_eif_get = 0x40004d7c; +r_rwip_half_slot_2_lpcycles = 0x40004d88; +r_rwip_hus_2_lpcycles = 0x40004d94; +r_rwip_isr = 0x40004da0; +r_rwip_lpcycles_2_hus = 0x40004dac; +r_rwip_prevent_sleep_clear = 0x40004db8; +r_rwip_prevent_sleep_set = 0x40004dc4; +r_rwip_schedule = 0x40004dd0; +r_rwip_sleep = 0x40004ddc; +r_rwip_sw_int_handler = 0x40004de8; +r_rwip_sw_int_req = 0x40004df4; +r_rwip_time_get = 0x40004e00; +r_rwip_timer_10ms_handler = 0x40004e0c; +r_rwip_timer_10ms_set = 0x40004e18; +r_rwip_timer_hs_handler = 0x40004e24; +r_rwip_timer_hs_set = 0x40004e30; +r_rwip_timer_hus_handler = 0x40004e3c; +r_rwip_timer_hus_set = 0x40004e48; +r_rwip_wakeup = 0x40004e54; +r_rwip_wakeup_end = 0x40004e60; +r_rwip_wlcoex_set = 0x40004e6c; +r_sch_alarm_clear = 0x40004e78; +r_sch_alarm_init = 0x40004e84; +r_sch_alarm_prog = 0x40004e90; +r_sch_alarm_set = 0x40004e9c; +r_sch_alarm_timer_isr = 0x40004ea8; +r_sch_arb_conflict_check = 0x40004eb4; +r_sch_arb_elt_cancel = 0x40004ec0; +r_sch_arb_event_start_isr = 0x40004ecc; +r_sch_arb_init = 0x40004ed8; +r_sch_arb_insert = 0x40004ee4; +r_sch_arb_prog_timer = 0x40004ef0; +r_sch_arb_remove = 0x40004efc; +r_sch_arb_sw_isr = 0x40004f08; +r_sch_plan_chk = 0x40004f14; +r_sch_plan_clock_wrap_offset_update = 0x40004f20; +r_sch_plan_init = 0x40004f2c; +r_sch_plan_interval_req = 0x40004f38; +r_sch_plan_offset_max_calc = 0x40004f44; +r_sch_plan_offset_req = 0x40004f50; +r_sch_plan_position_range_compute = 0x40004f5c; +r_sch_plan_rem = 0x40004f68; +r_sch_plan_req = 0x40004f74; +r_sch_plan_set = 0x40004f80; +r_sch_prog_end_isr = 0x40004f8c; +r_sch_prog_init = 0x40004f98; +r_sch_prog_push = 0x40004fa4; +r_sch_prog_rx_isr = 0x40004fb0; +r_sch_prog_skip_isr = 0x40004fbc; +r_sch_prog_tx_isr = 0x40004fc8; +r_sch_slice_bg_add = 0x40004fd4; +r_sch_slice_bg_remove = 0x40004fe0; +r_sch_slice_compute = 0x40004fec; +r_sch_slice_fg_add = 0x40004ff8; +r_sch_slice_fg_remove = 0x40005004; +r_sch_slice_init = 0x40005010; +r_sch_slice_per_add = 0x4000501c; +r_sch_slice_per_remove = 0x40005028; +r_sdk_config_get_bt_sleep_enable = 0x40005034; +r_sdk_config_get_hl_derived_opts = 0x40005040; +r_sdk_config_get_opts = 0x4000504c; +r_sdk_config_get_priv_opts = 0x40005058; +r_sdk_config_set_bt_sleep_enable = 0x40005064; +r_sdk_config_set_hl_derived_opts = 0x40005070; +r_sdk_config_set_opts = 0x4000507c; +r_specialModP256 = 0x40005088; +r_unloaded_area_init = 0x40005094; +r_vhci_flow_off = 0x400050a0; +r_vhci_flow_on = 0x400050ac; +r_vhci_notify_host_send_available = 0x400050b8; +r_vhci_send_to_host = 0x400050c4; +r_vnd_hci_command_handler = 0x400050d0; +r_vshci_init = 0x400050dc; +vnd_hci_command_handler_wrapper = 0x400050e8; +r_lld_legacy_adv_dynamic_pti_get = 0x400050f4; +r_lld_legacy_adv_dynamic_pti_process = 0x40005100; +r_lld_ext_adv_dynamic_pti_get = 0x4000510c; +r_lld_ext_adv_dynamic_aux_pti_process = 0x40005118; +r_lld_ext_adv_dynamic_pti_process = 0x40005124; +r_lld_adv_ext_pkt_prepare_set = 0x40005130; +r_lld_adv_ext_chain_none_construct = 0x4000513c; +r_lld_adv_ext_chain_connectable_construct = 0x40005148; +r_lld_adv_ext_chain_scannable_construct = 0x40005154; +r_lld_adv_pkt_rx_connect_post = 0x40005160; +r_lld_adv_start_init_evt_param = 0x4000516c; +r_lld_adv_start_set_cs = 0x40005178; +r_lld_adv_start_update_filter_policy = 0x40005184; +r_lld_adv_start_schedule_asap = 0x40005190; +r_lld_con_tx_prog_new_packet_coex = 0x4000519c; +r_lld_con_tx_prog_new_packet = 0x400051a8; +r_lld_per_adv_dynamic_pti_get = 0x400051b4; +r_lld_per_adv_evt_start_chm_upd = 0x400051c0; +r_lld_ext_scan_dynamic_pti_get = 0x400051cc; +r_lld_scan_try_sched = 0x400051d8; +r_lld_sync_insert = 0x400051e4; +r_sch_prog_ble_push = 0x400051f0; +r_sch_prog_bt_push = 0x400051fc; +r_lld_init_evt_end_type_set = 0x40005208; +r_lld_init_evt_end_type_get = 0x40005214; +r_lld_adv_direct_adv_use_rpa_addr_state_set = 0x40005220; +r_lld_adv_direct_adv_use_rpa_addr_state_get = 0x4000522c; +r_lld_init_evt_end_type_check_state_set = 0x40005238; +r_lld_init_evt_end_type_check_state_get = 0x40005244; +/* Data (.data, .bss, .rodata) */ +bt_rf_coex_cfg_p = 0x3fceffa8; +bt_rf_coex_hooks_p = 0x3fceffa4; +btdm_env_p = 0x3fceffa0; +g_rw_controller_task_handle = 0x3fceff9c; +g_rw_init_sem = 0x3fceff98; +g_rw_schd_queue = 0x3fceff94; +lld_init_env = 0x3fceff90; +lld_rpa_renew_env = 0x3fceff8c; +lld_scan_env = 0x3fceff88; +lld_scan_sync_env = 0x3fceff84; +lld_test_env = 0x3fceff80; +p_ble_util_buf_env = 0x3fceff7c; +p_lld_env = 0x3fceff78; +p_llm_env = 0x3fceff74; +r_h4tl_eif_p = 0x3fceff70; +r_hli_funcs_p = 0x3fceff6c; +r_ip_funcs_p = 0x3fceff68; +r_modules_funcs_p = 0x3fceff64; +r_osi_funcs_p = 0x3fceff60; +r_plf_funcs_p = 0x3fceff5c; +vhci_env_p = 0x3fceff58; +aa_gen = 0x3fceff54; +aes_env = 0x3fceff48; +bt_rf_coex_cfg_cb = 0x3fcefef8; +btdm_pwr_state = 0x3fcefef4; +btdm_slp_err = 0x3fcefef0; +ecc_env = 0x3fcefee8; +esp_handler = 0x3fcefee0; +esp_vendor_cmd = 0x3fcefed8; +g_adv_delay_dis = 0x3fcefed4; +g_conflict_elt = 0x3fcefed0; +g_eif_api = 0x3fcefec0; +g_event_empty = 0x3fcefeb4; +g_llc_state = 0x3fcefeaa; +g_llm_state = 0x3fcefea9; +g_max_evt_env = 0x3fcefea7; +g_misc_state = 0x3fcefea6; +g_rma_rule_db = 0x3fcefe8a; +g_rtp_rule_db = 0x3fcefe6e; +g_scan_forever = 0x3fcefe6d; +g_time_msb = 0x3fcefe6c; +h4tl_env = 0x3fcefe44; +hci_env = 0x3fcefe21; +hci_ext_host = 0x3fcefe20; +hci_fc_env = 0x3fcefe18; +hci_tl_env = 0x3fcefdec; +ke_env = 0x3fcefdbc; +ke_event_env = 0x3fcefd7c; +ke_task_env = 0x3fcefd00; +llc_env = 0x3fcefcd8; +lld_adv_env = 0x3fcefcb0; +lld_con_env = 0x3fcefc88; +lld_exp_sync_pos_tab = 0x3fcefc80; +lld_per_adv_env = 0x3fcefc58; +lld_sync_env = 0x3fcefc30; +llm_le_adv_flow_env = 0x3fcefc24; +rw_sleep_enable = 0x3fcefc20; +rwble_env = 0x3fcefc18; +rwip_env = 0x3fcefbfc; +rwip_param = 0x3fcefbf0; +rwip_prog_delay = 0x3fcefbec; +rwip_rf = 0x3fcefbb4; +sch_alarm_env = 0x3fcefbac; +sch_arb_env = 0x3fcefb98; +sch_plan_env = 0x3fcefb90; +sch_prog_env = 0x3fcefa8c; +sch_slice_env = 0x3fcefa2c; +sch_slice_params = 0x3fcefa24; +timer_env = 0x3fcefa1c; +unloaded_area = 0x3fcefa18; +vshci_state = 0x3fcefa14; +TASK_DESC_LLC = 0x3fcefa08; +TASK_DESC_LLM = 0x3fcef9fc; +TASK_DESC_VSHCI = 0x3fcef9f0; +co_default_bdaddr = 0x3fcef9e8; +dbg_assert_block = 0x3fcef9e4; +g_bt_plf_log_level = 0x3fcef9e0; +hci_cmd_desc_tab_vs_esp = 0x3fcef9bc; +hci_command_handler_tab_esp = 0x3fcef9a4; +privacy_en = 0x3fcef9a0; +sdk_cfg_priv_opts = 0x3fcef958; +BasePoint_x_256 = 0x3ff1ffdc; +BasePoint_y_256 = 0x3ff1ffbc; +DebugE256PublicKey_x = 0x3ff1ff9c; +DebugE256PublicKey_y = 0x3ff1ff7c; +DebugE256SecretKey = 0x3ff1ff5c; +ECC_4Win_Look_up_table = 0x3ff1f7a0; +LLM_AA_CT1 = 0x3ff1f79a; +LLM_AA_CT2 = 0x3ff1f798; +RF_TX_PW_CONV_TBL = 0x3ff1f790; +TASK_DESC_MISC = 0x3ff1f784; +adv_evt_prop2type = 0x3ff1f766; +adv_evt_type2prop = 0x3ff1f761; +aes_cmac_zero = 0x3ff1f751; +aes_k2_salt = 0x3ff1f741; +aes_k3_id64 = 0x3ff1f73c; +aes_k3_salt = 0x3ff1f72c; +aes_k4_id6 = 0x3ff1f728; +aes_k4_salt = 0x3ff1f718; +bigHexP256 = 0x3ff1f6ec; +byte_tx_time = 0x3ff1f6e2; +co_null_bdaddr = 0x3ff1f6dc; +co_phy_mask_to_rate = 0x3ff1f6d7; +co_phy_mask_to_value = 0x3ff1f6d2; +co_phy_to_rate = 0x3ff1f6ce; +co_phy_value_to_mask = 0x3ff1f6ca; +co_rate_to_byte_dur_us = 0x3ff1f6c5; +co_rate_to_phy = 0x3ff1f6c0; +co_rate_to_phy_mask = 0x3ff1f6bc; +co_sca2ppm = 0x3ff1f6ac; +coef_B = 0x3ff1f680; +connect_req_dur_tab = 0x3ff1f678; +ecc_Jacobian_InfinityPoint256 = 0x3ff1f5f4; +em_base_reg_lut = 0x3ff1f526; +fixed_tx_time = 0x3ff1f51e; +h4tl_msgtype2hdrlen = 0x3ff1f518; +hci_cmd_desc_root_tab = 0x3ff1f4e8; +hci_cmd_desc_tab_ctrl_bb = 0x3ff1f47c; +hci_cmd_desc_tab_info_par = 0x3ff1f44c; +hci_cmd_desc_tab_le = 0x3ff1f0b0; +hci_cmd_desc_tab_lk_ctrl = 0x3ff1f098; +hci_cmd_desc_tab_stat_par = 0x3ff1f08c; +hci_cmd_desc_tab_vs = 0x3ff1f050; +hci_evt_desc_tab = 0x3ff1f008; +hci_evt_le_desc_tab = 0x3ff1ef68; +hci_evt_le_desc_tab_esp = 0x3ff1ef60; +hci_rsvd_evt_msk = 0x3ff1ef57; +lld_aux_phy_to_rate = 0x3ff1ef54; +lld_init_max_aux_dur_tab = 0x3ff1ef4c; +lld_scan_map_legacy_pdu_to_evt_type = 0x3ff1ef44; +lld_scan_max_aux_dur_tab = 0x3ff1ef3c; +lld_sync_max_aux_dur_tab = 0x3ff1ef34; +llm_local_le_feats = 0x3ff1ef2c; +llm_local_le_states = 0x3ff1ef24; +llm_local_supp_cmds = 0x3ff1eefc; +maxSecretKey_256 = 0x3ff1eedc; +max_data_tx_time = 0x3ff1eed4; +one_bits = 0x3ff1eec3; +rwip_coex_cfg = 0x3ff1eebe; +rwip_priority = 0x3ff1eea8; +veryBigHexP256 = 0x3ff1ee5c; + + +/*************************************** + Group rom_pp + ***************************************/ + +/* Functions */ +esp_pp_rom_version_get = 0x40005250; +RC_GetBlockAckTime = 0x4000525c; +ebuf_list_remove = 0x40005268; +esf_buf_alloc = 0x40005274; +esf_buf_alloc_dynamic = 0x40005280; +esf_buf_recycle = 0x4000528c; +GetAccess = 0x40005298; +hal_mac_is_low_rate_enabled = 0x400052a4; +hal_mac_tx_get_blockack = 0x400052b0; +hal_mac_tx_set_ppdu = 0x400052bc; +ic_get_trc = 0x400052c8; +ic_mac_deinit = 0x400052d4; +ic_mac_init = 0x400052e0; +ic_interface_enabled = 0x400052ec; +is_lmac_idle = 0x400052f8; +lmacAdjustTimestamp = 0x40005304; +lmacDiscardAgedMSDU = 0x40005310; +lmacDiscardMSDU = 0x4000531c; +lmacEndFrameExchangeSequence = 0x40005328; +lmacIsIdle = 0x40005334; +lmacIsLongFrame = 0x40005340; +lmacMSDUAged = 0x4000534c; +lmacPostTxComplete = 0x40005358; +lmacProcessAllTxTimeout = 0x40005364; +lmacProcessCollisions = 0x40005370; +lmacProcessRxSucData = 0x4000537c; +lmacReachLongLimit = 0x40005388; +lmacReachShortLimit = 0x40005394; +lmacRecycleMPDU = 0x400053a0; +lmacRxDone = 0x400053ac; +lmacSetTxFrame = 0x400053b8; +lmacTxDone = 0x400053c4; +lmacTxFrame = 0x400053d0; +mac_tx_set_duration = 0x400053dc; +mac_tx_set_htsig = 0x400053e8; +mac_tx_set_plcp0 = 0x400053f4; +mac_tx_set_plcp1 = 0x40005400; +mac_tx_set_plcp2 = 0x4000540c; +pm_check_state = 0x40005418; +pm_disable_dream_timer = 0x40005424; +pm_disable_sleep_delay_timer = 0x40005430; +pm_dream = 0x4000543c; +pm_mac_wakeup = 0x40005448; +pm_mac_sleep = 0x40005454; +pm_enable_active_timer = 0x40005460; +pm_enable_sleep_delay_timer = 0x4000546c; +pm_local_tsf_process = 0x40005478; +pm_set_beacon_filter = 0x40005484; +pm_is_in_wifi_slice_threshold = 0x40005490; +pm_is_waked = 0x4000549c; +pm_keep_alive = 0x400054a8; +pm_on_beacon_rx = 0x400054b4; +pm_on_data_rx = 0x400054c0; +pm_on_tbtt = 0x400054cc; +pm_parse_beacon = 0x400054d8; +pm_process_tim = 0x400054e4; +pm_rx_beacon_process = 0x400054f0; +pm_rx_data_process = 0x400054fc; +pm_sleep = 0x40005508; +pm_sleep_for = 0x40005514; +pm_tbtt_process = 0x40005520; +ppAMPDU2Normal = 0x4000552c; +ppAssembleAMPDU = 0x40005538; +ppCalFrameTimes = 0x40005544; +ppCalSubFrameLength = 0x40005550; +ppCalTxAMPDULength = 0x4000555c; +ppCheckTxAMPDUlength = 0x40005568; +ppDequeueRxq_Locked = 0x40005574; +ppDequeueTxQ = 0x40005580; +ppEmptyDelimiterLength = 0x4000558c; +ppEnqueueRxq = 0x40005598; +ppEnqueueTxDone = 0x400055a4; +ppGetTxQFirstAvail_Locked = 0x400055b0; +ppGetTxframe = 0x400055bc; +ppMapTxQueue = 0x400055c8; +ppProcessRxPktHdr = 0x400055e0; +ppProcessTxQ = 0x400055ec; +ppRecordBarRRC = 0x400055f8; +lmacRequestTxopQueue = 0x40005604; +lmacReleaseTxopQueue = 0x40005610; +ppRecycleAmpdu = 0x4000561c; +ppRecycleRxPkt = 0x40005628; +ppResortTxAMPDU = 0x40005634; +ppResumeTxAMPDU = 0x40005640; +/* ppRxFragmentProc = 0x4000564c; */ +ppRxPkt = 0x40005658; +ppRxProtoProc = 0x40005664; +ppSearchTxQueue = 0x40005670; +ppSearchTxframe = 0x4000567c; +ppSelectNextQueue = 0x40005688; +ppSubFromAMPDU = 0x40005694; +ppTask = 0x400056a0; +ppTxPkt = 0x400056ac; +ppTxProtoProc = 0x400056b8; +ppTxqUpdateBitmap = 0x400056c4; +pp_coex_tx_request = 0x400056d0; +pp_hdrsize = 0x400056dc; +pp_post = 0x400056e8; +pp_process_hmac_waiting_txq = 0x400056f4; +rcGetAmpduSched = 0x40005700; +rcUpdateRxDone = 0x4000570c; +rc_get_trc = 0x40005718; +rc_get_trc_by_index = 0x40005724; +rcAmpduLowerRate = 0x40005730; +rcampduuprate = 0x4000573c; +rcClearCurAMPDUSched = 0x40005748; +rcClearCurSched = 0x40005754; +rcClearCurStat = 0x40005760; +rcGetSched = 0x4000576c; +rcLowerSched = 0x40005778; +rcSetTxAmpduLimit = 0x40005784; +rcTxUpdatePer = 0x40005790; +rcUpdateAckSnr = 0x4000579c; +rcUpdateRate = 0x400057a8; +/* rcUpdateTxDone = 0x400057b4; */ +rcUpdateTxDoneAmpdu2 = 0x400057c0; +rcUpSched = 0x400057cc; +rssi_margin = 0x400057d8; +rx11NRate2AMPDULimit = 0x400057e4; +TRC_AMPDU_PER_DOWN_THRESHOLD = 0x400057f0; +TRC_AMPDU_PER_UP_THRESHOLD = 0x400057fc; +trc_calc_duration = 0x40005808; +trc_isTxAmpduOperational = 0x40005814; +trc_onAmpduOp = 0x40005820; +TRC_PER_IS_GOOD = 0x4000582c; +trc_SetTxAmpduState = 0x40005838; +trc_tid_isTxAmpduOperational = 0x40005844; +trcAmpduSetState = 0x40005850; +wDevCheckBlockError = 0x4000585c; +wDev_AppendRxBlocks = 0x40005868; +wDev_DiscardFrame = 0x40005874; +wDev_GetNoiseFloor = 0x40005880; +wDev_IndicateAmpdu = 0x4000588c; +wDev_IndicateFrame = 0x40005898; +wdev_bank_store = 0x400058a4; +wdev_bank_load = 0x400058b0; +wdev_mac_reg_load = 0x400058bc; +wdev_mac_reg_store = 0x400058c8; +wdev_mac_special_reg_load = 0x400058d4; +wdev_mac_special_reg_store = 0x400058e0; +wdev_mac_wakeup = 0x400058ec; +wdev_mac_sleep = 0x400058f8; +hal_mac_is_dma_enable = 0x40005904; +wDev_ProcessFiq = 0x40005910; +wDev_ProcessRxSucData = 0x4000591c; +wdevProcessRxSucDataAll = 0x40005928; +wdev_csi_len_align = 0x40005934; +ppDequeueTxDone_Locked = 0x40005940; +ppProcTxDone = 0x4000594c; +pm_tx_data_done_process = 0x40005958; +config_is_cache_tx_buf_enabled = 0x40005964; +ppMapWaitTxq = 0x40005970; +ppProcessWaitingQueue = 0x4000597c; +ppDisableQueue = 0x40005988; +pm_allow_tx = 0x40005994; +wdev_is_data_in_rxlist = 0x400059a0; +ppProcTxCallback = 0x400059ac; +/* Data (.data, .bss, .rodata) */ +our_instances_ptr = 0x3ff1ee58; +pTxRx = 0x3fcef954; +lmacConfMib_ptr = 0x3fcef950; +our_wait_eb = 0x3fcef94c; +our_tx_eb = 0x3fcef948; +pp_wdev_funcs = 0x3fcef944; +g_osi_funcs_p = 0x3fcef940; +wDevCtrl_ptr = 0x3fcef93c; +g_wdev_last_desc_reset_ptr = 0x3ff1ee54; +wDevMacSleep_ptr = 0x3fcef938; +g_lmac_cnt_ptr = 0x3fcef934; +our_controls_ptr = 0x3ff1ee50; +pp_sig_cnt_ptr = 0x3fcef930; +g_eb_list_desc_ptr = 0x3fcef92c; +s_fragment_ptr = 0x3fcef928; +if_ctrl_ptr = 0x3fcef924; +g_intr_lock_mux = 0x3fcef920; +g_wifi_global_lock = 0x3fcef91c; +s_wifi_queue = 0x3fcef918; +pp_task_hdl = 0x3fcef914; +s_pp_task_create_sem = 0x3fcef910; +s_pp_task_del_sem = 0x3fcef90c; +g_wifi_menuconfig_ptr = 0x3fcef908; +xphyQueue = 0x3fcef904; +ap_no_lr_ptr = 0x3fcef900; +rc11BSchedTbl_ptr = 0x3fcef8fc; +rc11NSchedTbl_ptr = 0x3fcef8f8; +rcLoRaSchedTbl_ptr = 0x3fcef8f4; +BasicOFDMSched_ptr = 0x3fcef8f0; +trc_ctl_ptr = 0x3fcef8ec; +g_pm_cnt_ptr = 0x3fcef8e8; +g_pm_ptr = 0x3fcef8e4; +g_pm_cfg_ptr = 0x3fcef8e0; +g_esp_mesh_quick_funcs_ptr = 0x3fcef8dc; +g_txop_queue_status_ptr = 0x3fcef8d8; +g_mac_sleep_en_ptr = 0x3fcef8d4; +g_mesh_is_root_ptr = 0x3fcef8d0; +g_mesh_topology_ptr = 0x3fcef8cc; +g_mesh_init_ps_type_ptr = 0x3fcef8c8; +g_mesh_is_started_ptr = 0x3fcef8c4; +g_config_func = 0x3fcef8c0; +g_net80211_tx_func = 0x3fcef8bc; +g_timer_func = 0x3fcef8b8; +s_michael_mic_failure_cb = 0x3fcef8b4; +wifi_sta_rx_probe_req = 0x3fcef8b0; +g_tx_done_cb_func = 0x3fcef8ac; +g_per_conn_trc = 0x3fcef860; +s_encap_amsdu_func = 0x3fcef85c; + + +/*************************************** + Group rom_net80211 + ***************************************/ + +/* Functions */ +esp_net80211_rom_version_get = 0x400059b8; +ampdu_dispatch = 0x400059c4; +ampdu_dispatch_all = 0x400059d0; +ampdu_dispatch_as_many_as_possible = 0x400059dc; +ampdu_dispatch_movement = 0x400059e8; +ampdu_dispatch_upto = 0x400059f4; +chm_is_at_home_channel = 0x40005a00; +cnx_node_is_existing = 0x40005a0c; +cnx_node_search = 0x40005a18; +ic_ebuf_recycle_rx = 0x40005a24; +ic_ebuf_recycle_tx = 0x40005a30; +ic_reset_rx_ba = 0x40005a3c; +ieee80211_align_eb = 0x40005a48; +ieee80211_ampdu_reorder = 0x40005a54; +ieee80211_ampdu_start_age_timer = 0x40005a60; +/* ieee80211_encap_esfbuf = 0x40005a6c; */ +ieee80211_is_tx_allowed = 0x40005a78; +ieee80211_output_pending_eb = 0x40005a84; +ieee80211_output_process = 0x40005a90; +ieee80211_set_tx_desc = 0x40005a9c; +sta_input = 0x40005aa8; +wifi_get_macaddr = 0x40005ab4; +wifi_rf_phy_disable = 0x40005ac0; +wifi_rf_phy_enable = 0x40005acc; +ic_ebuf_alloc = 0x40005ad8; +ieee80211_classify = 0x40005ae4; +ieee80211_copy_eb_header = 0x40005af0; +ieee80211_recycle_cache_eb = 0x40005afc; +ieee80211_search_node = 0x40005b08; +roundup2 = 0x40005b14; +ieee80211_crypto_encap = 0x40005b20; +ieee80211_crypto_decap = 0x40005b2c; +/* ieee80211_decap = 0x40005b38; */ +ieee80211_set_tx_pti = 0x40005b44; +wifi_is_started = 0x40005b50; +ieee80211_gettid = 0x40005b5c; +/* Data (.data, .bss, .rodata) */ +net80211_funcs = 0x3fcef858; +g_scan = 0x3fcef854; +g_chm = 0x3fcef850; +g_ic_ptr = 0x3fcef84c; +g_hmac_cnt_ptr = 0x3fcef848; +g_tx_cacheq_ptr = 0x3fcef844; +s_netstack_free = 0x3fcef840; +mesh_rxcb = 0x3fcef83c; +sta_rxcb = 0x3fcef838; + + +/*************************************** + Group rom_coexist + ***************************************/ + +/* Functions */ +esp_coex_rom_version_get = 0x40005b68; +coex_bt_release = 0x40005b74; +coex_bt_request = 0x40005b80; +coex_core_ble_conn_dyn_prio_get = 0x40005b8c; +coex_core_event_duration_get = 0x40005b98; +coex_core_pti_get = 0x40005ba4; +coex_core_release = 0x40005bb0; +coex_core_request = 0x40005bbc; +coex_core_status_get = 0x40005bc8; +coex_core_timer_idx_get = 0x40005bd4; +coex_event_duration_get = 0x40005be0; +coex_hw_timer_disable = 0x40005bec; +coex_hw_timer_enable = 0x40005bf8; +coex_hw_timer_set = 0x40005c04; +coex_schm_interval_set = 0x40005c10; +coex_schm_lock = 0x40005c1c; +coex_schm_unlock = 0x40005c28; +coex_status_get = 0x40005c34; +coex_wifi_release = 0x40005c40; +esp_coex_ble_conn_dynamic_prio_get = 0x40005c4c; +/* Data (.data, .bss, .rodata) */ +coex_env_ptr = 0x3fcef834; +coex_pti_tab_ptr = 0x3fcef830; +coex_schm_env_ptr = 0x3fcef82c; +coexist_funcs = 0x3fcef828; +g_coa_funcs_p = 0x3fcef824; +g_coex_param_ptr = 0x3fcef820; + + +/*************************************** + Group rom_phy + ***************************************/ + +/* Functions */ +phy_get_romfuncs = 0x40005c58; +rom_abs_temp = 0x40005c64; +rom_bb_bss_cbw40_dig = 0x40005c70; +rom_bb_wdg_test_en = 0x40005c7c; +rom_bb_wdt_get_status = 0x40005c88; +rom_bb_wdt_int_enable = 0x40005c94; +rom_bb_wdt_rst_enable = 0x40005ca0; +rom_bb_wdt_timeout_clear = 0x40005cac; +rom_cbw2040_cfg = 0x40005cb8; +rom_check_noise_floor = 0x40005cc4; +rom_chip_i2c_readReg = 0x40005cd0; +rom_chip_i2c_writeReg = 0x40005cdc; +rom_dc_iq_est = 0x40005ce8; +rom_disable_agc = 0x40005cf4; +rom_en_pwdet = 0x40005d00; +rom_enable_agc = 0x40005d0c; +rom_get_bbgain_db = 0x40005d18; +rom_get_data_sat = 0x40005d24; +rom_get_i2c_read_mask = 0x40005d30; +rom_get_pwctrl_correct = 0x40005d3c; +rom_i2c_readReg = 0x40005d48; +rom_i2c_readReg_Mask = 0x40005d54; +rom_i2c_writeReg = 0x40005d60; +rom_i2c_writeReg_Mask = 0x40005d6c; +rom_index_to_txbbgain = 0x40005d78; +rom_iq_est_disable = 0x40005d84; +rom_iq_est_enable = 0x40005d90; +rom_linear_to_db = 0x40005d9c; +rom_loopback_mode_en = 0x40005da8; +rom_mhz2ieee = 0x40005db4; +rom_noise_floor_auto_set = 0x40005dc0; +rom_pbus_debugmode = 0x40005dcc; +rom_pbus_force_mode = 0x40005dd8; +rom_pbus_force_test = 0x40005de4; +rom_pbus_rd = 0x40005df0; +rom_pbus_rd_addr = 0x40005dfc; +rom_pbus_rd_shift = 0x40005e08; +rom_pbus_set_dco = 0x40005e14; +rom_pbus_set_rxgain = 0x40005e20; +rom_pbus_workmode = 0x40005e2c; +rom_pbus_xpd_rx_off = 0x40005e38; +rom_pbus_xpd_rx_on = 0x40005e44; +rom_pbus_xpd_tx_off = 0x40005e50; +rom_pbus_xpd_tx_on = 0x40005e5c; +rom_phy_byte_to_word = 0x40005e68; +rom_phy_disable_cca = 0x40005e74; +rom_phy_enable_cca = 0x40005e80; +rom_phy_get_noisefloor = 0x40005e8c; +rom_phy_get_rx_freq = 0x40005e98; +rom_phy_set_bbfreq_init = 0x40005ea4; +rom_pow_usr = 0x40005eb0; +rom_pwdet_sar2_init = 0x40005ebc; +rom_read_hw_noisefloor = 0x40005ec8; +rom_read_sar_dout = 0x40005ed4; +rom_set_cal_rxdc = 0x40005ee0; +rom_set_chan_cal_interp = 0x40005eec; +rom_set_loopback_gain = 0x40005ef8; +rom_set_noise_floor = 0x40005f04; +rom_set_rxclk_en = 0x40005f10; +rom_set_tx_dig_gain = 0x40005f1c; +rom_set_txcap_reg = 0x40005f28; +rom_set_txclk_en = 0x40005f34; +rom_spur_cal = 0x40005f40; +rom_spur_reg_write_one_tone = 0x40005f4c; +rom_target_power_add_backoff = 0x40005f58; +rom_tx_pwctrl_bg_init = 0x40005f64; +rom_txbbgain_to_index = 0x40005f70; +rom_wifi_11g_rate_chg = 0x40005f7c; +rom_write_gain_mem = 0x40005f88; +chip728_phyrom_version = 0x40005f94; +rom_disable_wifi_agc = 0x40005fa0; +rom_enable_wifi_agc = 0x40005fac; +rom_bt_index_to_bb = 0x40005fb8; +rom_bt_bb_to_index = 0x40005fc4; +rom_spur_coef_cfg = 0x40005fd0; +rom_bb_bss_cbw40 = 0x40005fdc; +rom_set_cca = 0x40005fe8; +rom_tx_paon_set = 0x40005ff4; +rom_i2cmst_reg_init = 0x40006000; +rom_iq_corr_enable = 0x4000600c; +rom_fe_reg_init = 0x40006018; +rom_agc_reg_init = 0x40006024; +rom_bb_reg_init = 0x40006030; +rom_mac_enable_bb = 0x4000603c; +rom_bb_wdg_cfg = 0x40006048; +rom_force_txon = 0x40006054; +rom_fe_txrx_reset = 0x40006060; +rom_set_rx_comp = 0x4000606c; +rom_set_pbus_reg = 0x40006078; +rom_write_chan_freq = 0x40006084; +rom_phy_xpd_rf = 0x40006090; +rom_set_xpd_sar = 0x4000609c; +rom_get_target_power_offset = 0x400060a8; +rom_write_txrate_power_offset = 0x400060b4; +rom_get_rate_fcc_index = 0x400060c0; +rom_get_rate_target_power = 0x400060cc; +rom_pkdet_vol_start = 0x400060d8; +rom_read_sar2_code = 0x400060e4; +rom_get_sar2_vol = 0x400060f0; +rom_get_pll_vol = 0x400060fc; +rom_get_phy_target_power = 0x40006108; +rom_temp_to_power = 0x40006114; +rom_phy_track_pll_cap = 0x40006120; +rom_phy_pwdet_always_en = 0x4000612c; +rom_phy_pwdet_onetime_en = 0x40006138; +rom_get_i2c_mst0_mask = 0x40006144; +rom_get_i2c_hostid = 0x40006150; +rom_enter_critical_phy = 0x4000615c; +rom_exit_critical_phy = 0x40006168; +rom_chip_i2c_readReg_org = 0x40006174; +rom_i2c_paral_set_mst0 = 0x40006180; +rom_i2c_paral_set_read = 0x4000618c; +rom_i2c_paral_read = 0x40006198; +rom_i2c_paral_write = 0x400061a4; +rom_i2c_paral_write_num = 0x400061b0; +rom_i2c_paral_write_mask = 0x400061bc; +rom_bb_bss_cbw40_ana = 0x400061c8; +rom_chan_to_freq = 0x400061d4; +rom_open_i2c_xpd = 0x400061e0; +rom_dac_rate_set = 0x400061ec; +rom_tsens_read_init = 0x400061f8; +rom_tsens_code_read = 0x40006204; +rom_tsens_index_to_dac = 0x40006210; +rom_tsens_index_to_offset = 0x4000621c; +rom_tsens_dac_cal = 0x40006228; +rom_code_to_temp = 0x40006234; +rom_write_pll_cap_mem = 0x40006240; +rom_pll_correct_dcap = 0x4000624c; +rom_phy_en_hw_set_freq = 0x40006258; +rom_phy_dis_hw_set_freq = 0x40006264; +rom_pll_vol_cal = 0x40006270; +rom_wrtie_pll_cap = 0x4000627c; +rom_set_tx_gain_mem = 0x40006288; +rom_bt_tx_dig_gain = 0x40006294; +rom_bt_get_tx_gain = 0x400062a0; +rom_get_chan_target_power = 0x400062ac; +rom_get_tx_gain_value = 0x400062b8; +rom_wifi_tx_dig_gain = 0x400062c4; +rom_wifi_get_tx_gain = 0x400062d0; +rom_fe_i2c_reg_renew = 0x400062dc; +rom_wifi_agc_sat_gain = 0x400062e8; +rom_i2c_master_reset = 0x400062f4; +rom_bt_filter_reg = 0x40006300; +rom_phy_bbpll_cal = 0x4000630c; +rom_i2c_sar2_init_code = 0x40006318; +rom_phy_param_addr = 0x40006324; +rom_phy_reg_init = 0x40006330; +rom_set_chan_reg = 0x4000633c; +rom_phy_wakeup_init = 0x40006348; +rom_phy_i2c_init1 = 0x40006354; +rom_tsens_temp_read = 0x40006360; +rom_bt_track_pll_cap = 0x4000636c; +rom_wifi_track_pll_cap = 0x40006378; +rom_wifi_set_tx_gain = 0x40006384; +rom_txpwr_cal_track = 0x40006390; +rom_tx_pwctrl_background = 0x4000639c; +rom_bt_set_tx_gain = 0x400063a8; +rom_noise_check_loop = 0x400063b4; +rom_phy_close_rf = 0x400063c0; +rom_phy_xpd_tsens = 0x400063cc; +rom_phy_freq_mem_backup = 0x400063d8; +rom_phy_ant_init = 0x400063e4; +rom_bt_track_tx_power = 0x400063f0; +rom_wifi_track_tx_power = 0x400063fc; +rom_phy_dig_reg_backup = 0x40006408; +chip728_phyrom_version_num = 0x40006414; +rom_mac_tx_chan_offset = 0x40006420; +rom_rx_gain_force = 0x4000642c; +/* Data (.data, .bss, .rodata) */ +phy_param_rom = 0x3fcef81c; + +PROVIDE ( esp_rom_tjpgd_decomp = 0x40000864 ); +PROVIDE ( esp_rom_tjpgd_prepare = 0x40000858 ); + +PROVIDE ( esp_rom_crc32_le = crc32_le ); +PROVIDE ( esp_rom_crc16_le = crc16_le ); +PROVIDE ( esp_rom_crc8_le = crc8_le ); +PROVIDE ( esp_rom_crc32_be = crc32_be ); +PROVIDE ( esp_rom_crc16_be = crc16_be ); +PROVIDE ( esp_rom_crc8_be = crc8_be ); + +PROVIDE ( esp_rom_gpio_pad_select_gpio = gpio_pad_select_gpio ); +PROVIDE ( esp_rom_gpio_pad_pullup_only = gpio_pad_pullup ); +PROVIDE ( esp_rom_gpio_pad_set_drv = gpio_pad_set_drv ); +PROVIDE ( esp_rom_gpio_pad_unhold = gpio_pad_unhold ); +PROVIDE ( esp_rom_gpio_connect_in_signal = gpio_matrix_in ); +PROVIDE ( esp_rom_gpio_connect_out_signal = gpio_matrix_out ); + +PROVIDE ( esp_rom_efuse_mac_address_crc8 = esp_crc8 ); +PROVIDE ( esp_rom_efuse_get_flash_gpio_info = ets_efuse_get_spiconfig ); +PROVIDE ( esp_rom_efuse_get_flash_wp_gpio = ets_efuse_get_wp_pad ); +PROVIDE ( esp_rom_efuse_is_secure_boot_enabled = ets_efuse_secure_boot_enabled ); + +PROVIDE ( esp_rom_uart_flush_tx = uart_tx_flush ); +PROVIDE ( esp_rom_uart_tx_one_char = uart_tx_one_char ); +PROVIDE ( esp_rom_uart_tx_wait_idle = uart_tx_wait_idle ); +PROVIDE ( esp_rom_uart_rx_one_char = uart_rx_one_char ); +PROVIDE ( esp_rom_uart_rx_string = UartRxString ); +PROVIDE ( esp_rom_uart_set_as_console = uart_tx_switch ); +PROVIDE ( esp_rom_uart_usb_acm_init = Uart_Init_USB ); +PROVIDE ( esp_rom_uart_putc = ets_write_char_uart ); + +PROVIDE ( esp_rom_md5_init = MD5Init ); +PROVIDE ( esp_rom_md5_update = MD5Update ); +PROVIDE ( esp_rom_md5_final = MD5Final ); + +PROVIDE ( esp_rom_printf = ets_printf ); +PROVIDE ( esp_rom_delay_us = ets_delay_us ); +PROVIDE ( esp_rom_install_uart_printf = ets_install_uart_printf ); +PROVIDE ( esp_rom_get_reset_reason = rtc_get_reset_reason ); + +PROVIDE( esp_rom_spiflash_attach = spi_flash_attach ); +PROVIDE ( esp_rom_spiflash_clear_bp = esp_rom_spiflash_unlock ); +PROVIDE ( esp_rom_spiflash_write_enable = SPI_write_enable); + +/*************************************** + Group libgcc + ***************************************/ + +/* Functions */ +__absvdi2 = 0x4000216c; +__absvsi2 = 0x40002178; +__adddf3 = 0x40002184; +__addsf3 = 0x40002190; +__addvdi3 = 0x4000219c; +__addvsi3 = 0x400021a8; +__ashldi3 = 0x400021b4; +__ashrdi3 = 0x400021c0; +__bswapdi2 = 0x400021cc; +__bswapsi2 = 0x400021d8; +__clear_cache = 0x400021e4; +__clrsbdi2 = 0x400021f0; +__clrsbsi2 = 0x400021fc; +__clzdi2 = 0x40002208; +__clzsi2 = 0x40002214; +__cmpdi2 = 0x40002220; +__ctzdi2 = 0x4000222c; +__ctzsi2 = 0x40002238; +__divdc3 = 0x40002244; +__divdf3 = 0x40002250; +__divdi3 = 0x4000225c; +__divsc3 = 0x40002268; +__divsf3 = 0x40002274; +__divsi3 = 0x40002280; +__eqdf2 = 0x4000228c; +__eqsf2 = 0x40002298; +__extendsfdf2 = 0x400022a4; +__ffsdi2 = 0x400022b0; +__ffssi2 = 0x400022bc; +__fixdfdi = 0x400022c8; +__fixdfsi = 0x400022d4; +__fixsfdi = 0x400022e0; +__fixsfsi = 0x400022ec; +__fixunsdfsi = 0x400022f8; +__fixunssfdi = 0x40002304; +__fixunssfsi = 0x40002310; +__floatdidf = 0x4000231c; +__floatdisf = 0x40002328; +__floatsidf = 0x40002334; +__floatsisf = 0x40002340; +__floatundidf = 0x4000234c; +__floatundisf = 0x40002358; +__floatunsidf = 0x40002364; +__floatunsisf = 0x40002370; +__gcc_bcmp = 0x4000237c; +__gedf2 = 0x40002388; +__gesf2 = 0x40002394; +__gtdf2 = 0x400023a0; +__gtsf2 = 0x400023ac; +__ledf2 = 0x400023b8; +__lesf2 = 0x400023c4; +__lshrdi3 = 0x400023d0; +__ltdf2 = 0x400023dc; +__ltsf2 = 0x400023e8; +__moddi3 = 0x400023f4; +__modsi3 = 0x40002400; +__muldc3 = 0x4000240c; +__muldf3 = 0x40002418; +__muldi3 = 0x40002424; +__mulsc3 = 0x40002430; +__mulsf3 = 0x4000243c; +__mulsi3 = 0x40002448; +__mulvdi3 = 0x40002454; +__mulvsi3 = 0x40002460; +__nedf2 = 0x4000246c; +__negdf2 = 0x40002478; +__negdi2 = 0x40002484; +__negsf2 = 0x40002490; +__negvdi2 = 0x4000249c; +__negvsi2 = 0x400024a8; +__nesf2 = 0x400024b4; +__paritysi2 = 0x400024c0; +__popcountdi2 = 0x400024cc; +__popcountsi2 = 0x400024d8; +__powidf2 = 0x400024e4; +__powisf2 = 0x400024f0; +__subdf3 = 0x400024fc; +__subsf3 = 0x40002508; +__subvdi3 = 0x40002514; +__subvsi3 = 0x40002520; +__truncdfsf2 = 0x4000252c; +__ucmpdi2 = 0x40002538; +__udivdi3 = 0x40002544; +__udivmoddi4 = 0x40002550; +__udivsi3 = 0x4000255c; +__udiv_w_sdiv = 0x40002568; +__umoddi3 = 0x40002574; +__umodsi3 = 0x40002580; +__unorddf2 = 0x4000258c; +__unordsf2 = 0x40002598; + +/*************************************** + Group newlib + ***************************************/ + +/* Functions */ +esp_rom_newlib_init_common_mutexes = 0x400011dc; +PROVIDE ( memset = 0x400011e8 ); +PROVIDE ( memcpy = 0x400011f4 ); +PROVIDE ( memmove = 0x40001200 ); +PROVIDE ( memcmp = 0x4000120c ); +PROVIDE ( strcpy = 0x40001218 ); +PROVIDE ( strncpy = 0x40001224 ); +PROVIDE ( strcmp = 0x40001230 ); +PROVIDE ( strncmp = 0x4000123c ); +PROVIDE ( strlen = 0x40001248 ); +PROVIDE ( strstr = 0x40001254 ); +PROVIDE ( bzero = 0x40001260 ); +PROVIDE ( _isatty_r = 0x4000126c ); +PROVIDE ( sbrk = 0x40001278 ); +PROVIDE ( isalnum = 0x40001284 ); +PROVIDE ( isalpha = 0x40001290 ); +PROVIDE ( isascii = 0x4000129c ); +PROVIDE ( isblank = 0x400012a8 ); +PROVIDE ( iscntrl = 0x400012b4 ); +PROVIDE ( isdigit = 0x400012c0 ); +PROVIDE ( islower = 0x400012cc ); +PROVIDE ( isgraph = 0x400012d8 ); +PROVIDE ( isprint = 0x400012e4 ); +PROVIDE ( ispunct = 0x400012f0 ); +PROVIDE ( isspace = 0x400012fc ); +PROVIDE ( isupper = 0x40001308 ); +PROVIDE ( toupper = 0x40001314 ); +PROVIDE ( tolower = 0x40001320 ); +PROVIDE ( toascii = 0x4000132c ); +PROVIDE ( memccpy = 0x40001338 ); +PROVIDE ( memchr = 0x40001344 ); +PROVIDE ( memrchr = 0x40001350 ); +PROVIDE ( strcasecmp = 0x4000135c ); +PROVIDE ( strcasestr = 0x40001368 ); +PROVIDE ( strcat = 0x40001374 ); +PROVIDE ( strdup = 0x40001380 ); +PROVIDE ( strchr = 0x4000138c ); +PROVIDE ( strcspn = 0x40001398 ); +PROVIDE ( strcoll = 0x400013a4 ); +PROVIDE ( strlcat = 0x400013b0 ); +PROVIDE ( strlcpy = 0x400013bc ); +PROVIDE ( strlwr = 0x400013c8 ); +PROVIDE ( strncasecmp = 0x400013d4 ); +PROVIDE ( strncat = 0x400013e0 ); +PROVIDE ( strndup = 0x400013ec ); +PROVIDE ( strnlen = 0x400013f8 ); +PROVIDE ( strrchr = 0x40001404 ); +PROVIDE ( strsep = 0x40001410 ); +PROVIDE ( strspn = 0x4000141c ); +PROVIDE ( strtok_r = 0x40001428 ); +PROVIDE ( strupr = 0x40001434 ); +PROVIDE ( longjmp = 0x40001440 ); +PROVIDE ( setjmp = 0x4000144c ); +PROVIDE ( abs = 0x40001458 ); +PROVIDE ( div = 0x40001464 ); +PROVIDE ( labs = 0x40001470 ); +PROVIDE ( ldiv = 0x4000147c ); +PROVIDE ( qsort = 0x40001488 ); +PROVIDE ( rand_r = 0x40001494 ); +PROVIDE ( rand = 0x400014a0 ); +PROVIDE ( srand = 0x400014ac ); +PROVIDE ( utoa = 0x400014b8 ); +PROVIDE ( itoa = 0x400014c4 ); +PROVIDE ( atoi = 0x400014d0 ); +PROVIDE ( atol = 0x400014dc ); +PROVIDE ( strtol = 0x400014e8 ); +PROVIDE ( strtoul = 0x400014f4 ); +PROVIDE ( fflush = 0x40001500 ); +PROVIDE( _fflush_r = 0x4000150c ); +PROVIDE( _fwalk = 0x40001518 ); +PROVIDE( _fwalk_reent = 0x40001524 ); +PROVIDE( __smakebuf_r = 0x40001530 ); +PROVIDE( __swhatbuf_r = 0x4000153c ); +PROVIDE( __swbuf_r = 0x40001548 ); +PROVIDE( __swbuf = 0x40001554 ); +PROVIDE( __swsetup_r = 0x40001560 ); +/* Data (.data, .bss, .rodata) */ +PROVIDE( syscall_table_ptr = 0x3fceffd4 ); +PROVIDE( _global_impure_ptr = 0x3fceffd0 ); + +/*************************************** + Group newlib_nano_format + ***************************************/ + +/* Functions */ +PROVIDE( __sprint_r = 0x4000156c ); +PROVIDE( _fiprintf_r = 0x40001578 ); +PROVIDE( _fprintf_r = 0x40001584 ); +PROVIDE( _printf_common = 0x40001590 ); +PROVIDE( _printf_i = 0x4000159c ); +PROVIDE( _vfiprintf_r = 0x400015a8 ); +PROVIDE( _vfprintf_r = 0x400015b4 ); +PROVIDE( fiprintf = 0x400015c0 ); +PROVIDE( fprintf = 0x400015cc ); +PROVIDE( printf = 0x400015d8 ); +PROVIDE( vfiprintf = 0x400015e4 ); +PROVIDE( vfprintf = 0x400015f0 ); diff --git a/boards/xtensa/esp32s3/esp32s3-devkit/src/Make.defs b/boards/xtensa/esp32s3/esp32s3-devkit/src/Make.defs new file mode 100644 index 0000000000..25297e832e --- /dev/null +++ b/boards/xtensa/esp32s3/esp32s3-devkit/src/Make.defs @@ -0,0 +1,52 @@ +############################################################################ +# boards/xtensa/esp32s3/esp32s3-devkit/src/Make.defs +# +# Licensed to the Apache Software Foundation (ASF) under one or more +# contributor license agreements. See the NOTICE file distributed with +# this work for additional information regarding copyright ownership. The +# ASF licenses this file to you under the Apache License, Version 2.0 (the +# "License"); you may not use this file except in compliance with the +# License. You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, WITHOUT +# WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the +# License for the specific language governing permissions and limitations +# under the License. +# +############################################################################ + +include $(TOPDIR)/Make.defs + +SCRIPTDIR = $(BOARD_DIR)$(DELIM)scripts + +CONFIGFILE = $(TOPDIR)$(DELIM)include$(DELIM)nuttx$(DELIM)config.h + +CSRCS = esp32s3_boot.c esp32s3_bringup.c + +ifeq ($(CONFIG_BOARDCTL),y) +CSRCS += esp32s3_appinit.c +ifeq ($(CONFIG_BOARDCTL_RESET),y) +CSRCS += esp32s3_reset.c +endif +endif + +SCRIPTIN = $(SCRIPTDIR)$(DELIM)esp32s3.template.ld +SCRIPTOUT = $(SCRIPTDIR)$(DELIM)esp32s3_out.ld + +.PHONY = context distclean + +$(SCRIPTOUT): $(SCRIPTIN) $(CONFIGFILE) + $(Q) $(CC) -isystem $(TOPDIR)/include -C -P -x c -E $(SCRIPTIN) -o $@ + +context:: $(SCRIPTOUT) + +distclean:: + $(call DELFILE, $(SCRIPTOUT)) + +DEPPATH += --dep-path board +VPATH += :board +CFLAGS += $(shell $(INCDIR) "$(CC)" $(TOPDIR)$(DELIM)arch$(DELIM)$(CONFIG_ARCH)$(DELIM)src$(DELIM)board$(DELIM)board) + diff --git a/boards/xtensa/esp32s3/esp32s3-devkit/src/esp32s3-devkit.h b/boards/xtensa/esp32s3/esp32s3-devkit/src/esp32s3-devkit.h new file mode 100644 index 0000000000..509c514b61 --- /dev/null +++ b/boards/xtensa/esp32s3/esp32s3-devkit/src/esp32s3-devkit.h @@ -0,0 +1,67 @@ +/**************************************************************************** + * boards/xtensa/esp32s3/esp32s3-devkit/src/esp32s3-devkit.h + * + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. The + * ASF licenses this file to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance with the + * License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT + * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the + * License for the specific language governing permissions and limitations + * under the License. + * + ****************************************************************************/ + +#ifndef __BOARDS_XTENSA_ESP32S3_ESP32S3_DEVKIT_SRC_ESP32S3_DEVKIT_H +#define __BOARDS_XTENSA_ESP32S3_ESP32S3_DEVKIT_SRC_ESP32S3_DEVKIT_H + +/**************************************************************************** + * Included Files + ****************************************************************************/ + +#include +#include +#include + +/**************************************************************************** + * Pre-processor Definitions + ****************************************************************************/ + +/**************************************************************************** + * Public Types + ****************************************************************************/ + +/**************************************************************************** + * Public Data + ****************************************************************************/ + +#ifndef __ASSEMBLY__ + +/**************************************************************************** + * Public Function Prototypes + ****************************************************************************/ + +/**************************************************************************** + * Name: esp32s3_bringup + * + * Description: + * Perform architecture-specific initialization + * + * CONFIG_BOARD_LATE_INITIALIZE=y : + * Called from board_late_initialize(). + * + * CONFIG_BOARD_LATE_INITIALIZE=y && CONFIG_BOARDCTL=y : + * Called from the NSH library via board_app_initialize() + * + ****************************************************************************/ + +int esp32s3_bringup(void); + +#endif /* __ASSEMBLY__ */ +#endif /* __BOARDS_XTENSA_ESP32S3_ESP32S3_DEVKIT_SRC_ESP32S3_DEVKIT_H */ diff --git a/boards/xtensa/esp32s3/esp32s3-devkit/src/esp32s3_appinit.c b/boards/xtensa/esp32s3/esp32s3-devkit/src/esp32s3_appinit.c new file mode 100644 index 0000000000..6f7178113d --- /dev/null +++ b/boards/xtensa/esp32s3/esp32s3-devkit/src/esp32s3_appinit.c @@ -0,0 +1,80 @@ +/**************************************************************************** + * boards/xtensa/esp32s3/esp32s3-devkit/src/esp32s3_appinit.c + * + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. The + * ASF licenses this file to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance with the + * License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT + * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the + * License for the specific language governing permissions and limitations + * under the License. + * + ****************************************************************************/ + +/**************************************************************************** + * Included Files + ****************************************************************************/ + +#include + +#include +#include + +#include "esp32s3-devkit.h" + +#ifdef CONFIG_BOARDCTL + +/**************************************************************************** + * Pre-processor Definitions + ****************************************************************************/ + +/**************************************************************************** + * Public Functions + ****************************************************************************/ + +/**************************************************************************** + * Name: board_app_initialize + * + * Description: + * Perform application specific initialization. This function is never + * called directly from application code, but only indirectly via the + * (non-standard) boardctl() interface using the command BOARDIOC_INIT. + * + * Input Parameters: + * arg - The boardctl() argument is passed to the board_app_initialize() + * implementation without modification. The argument has no + * meaning to NuttX; the meaning of the argument is a contract + * between the board-specific initialization logic and the + * matching application logic. The value could be such things as a + * mode enumeration value, a set of DIP switch settings, a + * pointer to configuration data read from a file or serial FLASH, + * or whatever you would like to do with it. Every implementation + * should accept zero/NULL as a default configuration. + * + * Returned Value: + * Zero (OK) is returned on success; a negated errno value is returned on + * any failure to indicate the nature of the failure. + * + ****************************************************************************/ + +int board_app_initialize(uintptr_t arg) +{ +#ifdef CONFIG_BOARD_LATE_INITIALIZE + /* Board initialization already performed by board_late_initialize() */ + + return OK; +#else + /* Perform board-specific initialization */ + + return esp32s3_bringup(); +#endif +} + +#endif /* CONFIG_BOARDCTL */ diff --git a/boards/xtensa/esp32s3/esp32s3-devkit/src/esp32s3_boot.c b/boards/xtensa/esp32s3/esp32s3-devkit/src/esp32s3_boot.c new file mode 100644 index 0000000000..6753b8430b --- /dev/null +++ b/boards/xtensa/esp32s3/esp32s3-devkit/src/esp32s3_boot.c @@ -0,0 +1,83 @@ +/**************************************************************************** + * boards/xtensa/esp32s3/esp32s3-devkit/src/esp32s3_boot.c + * + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. The + * ASF licenses this file to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance with the + * License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT + * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the + * License for the specific language governing permissions and limitations + * under the License. + * + ****************************************************************************/ + +/**************************************************************************** + * Included Files + ****************************************************************************/ + +#include + +#include + +#include +#include +#include + +#include "esp32s3-devkit.h" + +/**************************************************************************** + * Pre-processor Definitions + ****************************************************************************/ + +/**************************************************************************** + * Private Functions + ****************************************************************************/ + +/**************************************************************************** + * Public Functions + ****************************************************************************/ + +/**************************************************************************** + * Name: esp32s3_board_initialize + * + * Description: + * All ESP32-S3 boards must provide the following entry point. + * This entry point is called early in the initialization -- after all + * memory has been configured and mapped but before any devices have been + * initialized. + * + ****************************************************************************/ + +void esp32s3_board_initialize(void) +{ +} + +/**************************************************************************** + * Name: board_late_initialize + * + * Description: + * If CONFIG_BOARD_LATE_INITIALIZE is selected, then an additional + * initialization call will be performed in the boot-up sequence to a + * function called board_late_initialize(). board_late_initialize() will + * be called immediately after up_initialize() is called and just before + * the initial application is started. This additional initialization + * phase may be used, for example, to initialize board-specific device + * drivers. + * + ****************************************************************************/ + +#ifdef CONFIG_BOARD_LATE_INITIALIZE +void board_late_initialize(void) +{ + /* Perform board-specific initialization */ + + esp32s3_bringup(); +} +#endif diff --git a/boards/xtensa/esp32s3/esp32s3-devkit/src/esp32s3_bringup.c b/boards/xtensa/esp32s3/esp32s3-devkit/src/esp32s3_bringup.c new file mode 100644 index 0000000000..f49836c9a0 --- /dev/null +++ b/boards/xtensa/esp32s3/esp32s3-devkit/src/esp32s3_bringup.c @@ -0,0 +1,93 @@ +/**************************************************************************** + * boards/xtensa/esp32s3/esp32s3-devkit/src/esp32s3_bringup.c + * + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. The + * ASF licenses this file to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance with the + * License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT + * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the + * License for the specific language governing permissions and limitations + * under the License. + * + ****************************************************************************/ + +/**************************************************************************** + * Included Files + ****************************************************************************/ + +#include + +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include + +#include +#include + +#include "esp32s3-devkit.h" + +/**************************************************************************** + * Public Functions + ****************************************************************************/ + +/**************************************************************************** + * Name: esp32s3_bringup + * + * Description: + * Perform architecture-specific initialization + * + * CONFIG_BOARD_LATE_INITIALIZE=y : + * Called from board_late_initialize(). + * + * CONFIG_BOARD_LATE_INITIALIZE=n && CONFIG_BOARDCTL=y : + * Called from the NSH library + * + ****************************************************************************/ + +int esp32s3_bringup(void) +{ + int ret; + +#ifdef CONFIG_FS_PROCFS + /* Mount the procfs file system */ + + ret = nx_mount(NULL, "/proc", "procfs", 0, NULL); + if (ret < 0) + { + syslog(LOG_ERR, "ERROR: Failed to mount procfs at /proc: %d\n", ret); + } +#endif + +#ifdef CONFIG_FS_TMPFS + /* Mount the tmpfs file system */ + + ret = nx_mount(NULL, CONFIG_LIBC_TMPDIR, "tmpfs", 0, NULL); + if (ret < 0) + { + syslog(LOG_ERR, "ERROR: Failed to mount tmpfs at %s: %d\n", + CONFIG_LIBC_TMPDIR, ret); + } +#endif + + /* If we got here then perhaps not all initialization was successful, but + * at least enough succeeded to bring-up NSH with perhaps reduced + * capabilities. + */ + + UNUSED(ret); + return OK; +} diff --git a/boards/xtensa/esp32s3/esp32s3-devkit/src/esp32s3_reset.c b/boards/xtensa/esp32s3/esp32s3-devkit/src/esp32s3_reset.c new file mode 100644 index 0000000000..309a550c0e --- /dev/null +++ b/boards/xtensa/esp32s3/esp32s3-devkit/src/esp32s3_reset.c @@ -0,0 +1,63 @@ +/**************************************************************************** + * boards/xtensa/esp32s3/esp32s3-devkit/src/esp32s3_reset.c + * + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. The + * ASF licenses this file to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance with the + * License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT + * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the + * License for the specific language governing permissions and limitations + * under the License. + * + ****************************************************************************/ + +/**************************************************************************** + * Included Files + ****************************************************************************/ + +#include + +#include +#include + +#ifdef CONFIG_BOARDCTL_RESET + +/**************************************************************************** + * Public Functions + ****************************************************************************/ + +/**************************************************************************** + * Name: board_reset + * + * Description: + * Reset board. Support for this function is required by board-level + * logic if CONFIG_BOARDCTL_RESET is selected. + * + * Input Parameters: + * status - Status information provided with the reset event. This + * meaning of this status information is board-specific. If not + * used by a board, the value zero may be provided in calls to + * board_reset(). + * + * Returned Value: + * If this function returns, then it was not possible to power-off the + * board due to some constraints. The return value in this case is a + * board-specific reason for the failure to shutdown. + * + ****************************************************************************/ + +int board_reset(int status) +{ + up_systemreset(); + + return 0; +} + +#endif /* CONFIG_BOARDCTL_RESET */ diff --git a/tools/esp32s3/Config.mk b/tools/esp32s3/Config.mk new file mode 100644 index 0000000000..5e8931a825 --- /dev/null +++ b/tools/esp32s3/Config.mk @@ -0,0 +1,140 @@ +############################################################################ +# tools/esp32s3/Config.mk +# +# Licensed to the Apache Software Foundation (ASF) under one or more +# contributor license agreements. See the NOTICE file distributed with +# this work for additional information regarding copyright ownership. The +# ASF licenses this file to you under the Apache License, Version 2.0 (the +# "License"); you may not use this file except in compliance with the +# License. You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, WITHOUT +# WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the +# License for the specific language governing permissions and limitations +# under the License. +# +############################################################################ + +# These are the macros that will be used in the NuttX make system to compile +# and assemble source files and to insert the resulting object files into an +# archive. These replace the default definitions at tools/Config.mk + +ifeq ($(CONFIG_ESP32S3_FLASH_4M),y) + FLASH_SIZE := 4MB +else ifeq ($(CONFIG_ESP32S3_FLASH_8M),y) + FLASH_SIZE := 8MB +else ifeq ($(CONFIG_ESP32S3_FLASH_16M),y) + FLASH_SIZE := 16MB +endif + +ifeq ($(CONFIG_ESP32S3_FLASH_MODE_DIO),y) + FLASH_MODE := dio +else ifeq ($(CONFIG_ESP32S3_FLASH_MODE_DOUT),y) + FLASH_MODE := dout +else ifeq ($(CONFIG_ESP32S3_FLASH_MODE_QIO),y) + FLASH_MODE := qio +else ifeq ($(CONFIG_ESP32S3_FLASH_MODE_QOUT),y) + FLASH_MODE := qout +endif + +ifeq ($(CONFIG_ESP32S3_FLASH_FREQ_120M),y) + FLASH_FREQ := 120m +else ifeq ($(CONFIG_ESP32S3_FLASH_FREQ_80M),y) + FLASH_FREQ := 80m +else ifeq ($(CONFIG_ESP32S3_FLASH_FREQ_40M),y) + FLASH_FREQ := 40m +else ifeq ($(CONFIG_ESP32S3_FLASH_FREQ_20M),y) + FLASH_FREQ := 20m +endif + +ifeq ($(CONFIG_ESP32S3_FLASH_DETECT),y) + ESPTOOL_WRITEFLASH_OPTS := -fs detect -fm dio -ff $(FLASH_FREQ) +else + ESPTOOL_WRITEFLASH_OPTS := -fs $(FLASH_SIZE) -fm dio -ff $(FLASH_FREQ) +endif + +ESPTOOL_FLASH_OPTS := -fs $(FLASH_SIZE) -fm $(FLASH_MODE) -ff $(FLASH_FREQ) + +# Configure the variables according to build environment + +ifdef ESPTOOL_BINDIR + ifeq ($(CONFIG_ESP32S3_APP_FORMAT_LEGACY),y) + BL_OFFSET := 0x0 + PT_OFFSET := $(CONFIG_ESP32S3_PARTITION_TABLE_OFFSET) + BOOTLOADER := $(ESPTOOL_BINDIR)/bootloader-esp32s3.bin + PARTITION_TABLE := $(ESPTOOL_BINDIR)/partition-table-esp32s3.bin + FLASH_BL := $(BL_OFFSET) $(BOOTLOADER) + FLASH_PT := $(PT_OFFSET) $(PARTITION_TABLE) + ESPTOOL_BINS := $(FLASH_BL) $(FLASH_PT) + endif +endif + +ifeq ($(CONFIG_ESP32S3_APP_FORMAT_LEGACY),y) + APP_OFFSET := 0x10000 + APP_IMAGE := nuttx.bin + FLASH_APP := $(APP_OFFSET) $(APP_IMAGE) +endif + +ESPTOOL_BINS += $(FLASH_APP) + +# MERGEBIN -- Merge raw binary files into a single file + +define MERGEBIN + $(Q) if [ -z $(ESPTOOL_BINDIR) ]; then \ + echo "MERGEBIN error: Missing argument for binary files directory."; \ + echo "USAGE: make ESPTOOL_BINDIR="; \ + exit 1; \ + fi + $(Q) if [ -z $(FLASH_SIZE) ]; then \ + echo "Missing Flash memory size configuration for the ESP32-S3 chip."; \ + exit 1; \ + fi + esptool.py -c esp32s3 merge_bin --output nuttx.merged.bin $(ESPTOOL_FLASH_OPTS) $(ESPTOOL_BINS) + $(Q) echo nuttx.merged.bin >> nuttx.manifest + $(Q) echo "Generated: nuttx.merged.bin" +endef + +# MKIMAGE -- Convert an ELF file into a compatible binary file + +define MKIMAGE + $(Q) echo "MKIMAGE: ESP32-S3 binary" + $(Q) if ! esptool.py version 1>/dev/null 2>&1; then \ + echo ""; \ + echo "esptool.py not found. Please run: \"pip install esptool\""; \ + echo ""; \ + echo "Run make again to create the nuttx.bin image."; \ + exit 1; \ + fi + $(Q) if [ -z $(FLASH_SIZE) ]; then \ + echo "Missing Flash memory size configuration for the ESP32-S3 chip."; \ + exit 1; \ + fi + esptool.py -c esp32s3 elf2image $(ESPTOOL_FLASH_OPTS) -o nuttx.bin nuttx + $(Q) echo "Generated: nuttx.bin (ESP32-S3 compatible)" +endef + +# POSTBUILD -- Perform post build operations + +define POSTBUILD + $(call MKIMAGE) + $(if $(CONFIG_ESP32S3_MERGE_BINS),$(call MERGEBIN)) +endef + +# ESPTOOL_BAUD -- Serial port baud rate used when flashing/reading via esptool.py + +ESPTOOL_BAUD ?= 921600 + +# FLASH -- Download a binary image via esptool.py + +define FLASH + $(Q) if [ -z $(ESPTOOL_PORT) ]; then \ + echo "FLASH error: Missing serial port device argument."; \ + echo "USAGE: make flash ESPTOOL_PORT= [ ESPTOOL_BAUD= ] [ ESPTOOL_BINDIR= ]"; \ + exit 1; \ + fi + $(eval ESPTOOL_OPTS := -c esp32s3 -p $(ESPTOOL_PORT) -b $(ESPTOOL_BAUD) $(if $(CONFIG_ESP32S3_ESPTOOLPY_NO_STUB),--no-stub)) + esptool.py $(ESPTOOL_OPTS) write_flash $(ESPTOOL_WRITEFLASH_OPTS) $(ESPTOOL_BINS) +endef