1 // Copyright 2010-2019 Espressif Systems (Shanghai) PTE LTD 2 // 3 // Licensed under the Apache License, Version 2.0 (the "License"); 4 // you may not use this file except in compliance with the License. 5 // You may obtain a copy of the License at 6 // 7 // http://www.apache.org/licenses/LICENSE-2.0 8 // 9 // Unless required by applicable law or agreed to in writing, software 10 // distributed under the License is distributed on an "AS IS" BASIS, 11 // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 12 // See the License for the specific language governing permissions and 13 // limitations under the License. 14 15 #pragma once 16 17 #ifndef __ASSEMBLER__ 18 #include <stdint.h> 19 #include "esp_assert.h" 20 #endif 21 22 #include <esp_bit_defs.h> 23 24 #define PRO_CPU_NUM (0) 25 #define APP_CPU_NUM (1) 26 27 28 #define SOC_MAX_CONTIGUOUS_RAM_SIZE 0x400000 ///< Largest span of contiguous memory (DRAM or IRAM) in the address space 29 30 31 #define DR_REG_DPORT_BASE 0x3ff00000 32 #define DR_REG_AES_BASE 0x3ff01000 33 #define DR_REG_RSA_BASE 0x3ff02000 34 #define DR_REG_SHA_BASE 0x3ff03000 35 #define DR_REG_FLASH_MMU_TABLE_PRO 0x3ff10000 36 #define DR_REG_FLASH_MMU_TABLE_APP 0x3ff12000 37 #define DR_REG_DPORT_END 0x3ff13FFC 38 #define DR_REG_UART_BASE 0x3ff40000 39 #define DR_REG_SPI1_BASE 0x3ff42000 40 #define DR_REG_SPI0_BASE 0x3ff43000 41 #define DR_REG_GPIO_BASE 0x3ff44000 42 #define DR_REG_GPIO_SD_BASE 0x3ff44f00 43 #define DR_REG_FE2_BASE 0x3ff45000 44 #define DR_REG_FE_BASE 0x3ff46000 45 #define DR_REG_FRC_TIMER_BASE 0x3ff47000 46 #define DR_REG_RTCCNTL_BASE 0x3ff48000 47 #define DR_REG_RTCIO_BASE 0x3ff48400 48 #define DR_REG_SENS_BASE 0x3ff48800 49 #define DR_REG_RTC_I2C_BASE 0x3ff48C00 50 #define DR_REG_IO_MUX_BASE 0x3ff49000 51 #define DR_REG_HINF_BASE 0x3ff4B000 52 #define DR_REG_UHCI1_BASE 0x3ff4C000 53 #define DR_REG_I2S_BASE 0x3ff4F000 54 #define DR_REG_UART1_BASE 0x3ff50000 55 #define DR_REG_BT_BASE 0x3ff51000 56 #define DR_REG_I2C_EXT_BASE 0x3ff53000 57 #define DR_REG_UHCI0_BASE 0x3ff54000 58 #define DR_REG_SLCHOST_BASE 0x3ff55000 59 #define DR_REG_RMT_BASE 0x3ff56000 60 #define DR_REG_PCNT_BASE 0x3ff57000 61 #define DR_REG_SLC_BASE 0x3ff58000 62 #define DR_REG_LEDC_BASE 0x3ff59000 63 #define DR_REG_EFUSE_BASE 0x3ff5A000 64 #define DR_REG_SPI_ENCRYPT_BASE 0x3ff5B000 65 #define DR_REG_NRX_BASE 0x3ff5CC00 66 #define DR_REG_BB_BASE 0x3ff5D000 67 #define DR_REG_PWM0_BASE 0x3ff5E000 68 #define DR_REG_TIMERGROUP0_BASE 0x3ff5F000 69 #define DR_REG_TIMERGROUP1_BASE 0x3ff60000 70 #define DR_REG_RTCMEM0_BASE 0x3ff61000 71 #define DR_REG_RTCMEM1_BASE 0x3ff62000 72 #define DR_REG_RTCMEM2_BASE 0x3ff63000 73 #define DR_REG_SPI2_BASE 0x3ff64000 74 #define DR_REG_SPI3_BASE 0x3ff65000 75 #define DR_REG_SYSCON_BASE 0x3ff66000 76 #define DR_REG_APB_CTRL_BASE 0x3ff66000 /* Old name for SYSCON, to be removed */ 77 #define DR_REG_I2C1_EXT_BASE 0x3ff67000 78 #define DR_REG_SDMMC_BASE 0x3ff68000 79 #define DR_REG_EMAC_BASE 0x3ff69000 80 #define DR_REG_CAN_BASE 0x3ff6B000 81 #define DR_REG_PWM1_BASE 0x3ff6C000 82 #define DR_REG_I2S1_BASE 0x3ff6D000 83 #define DR_REG_UART2_BASE 0x3ff6E000 84 #define PERIPHS_SPI_ENCRYPT_BASEADDR DR_REG_SPI_ENCRYPT_BASE 85 86 //Registers Operation {{ 87 #define ETS_UNCACHED_ADDR(addr) (addr) 88 #define ETS_CACHED_ADDR(addr) (addr) 89 90 91 #ifndef __ASSEMBLER__ 92 93 #define IS_DPORT_REG(_r) (((_r) >= DR_REG_DPORT_BASE) && (_r) <= DR_REG_DPORT_END) 94 95 #if !defined( BOOTLOADER_BUILD ) && defined( CONFIG_ESP32_DPORT_WORKAROUND ) && defined( ESP_PLATFORM ) 96 #define ASSERT_IF_DPORT_REG(_r, OP) TRY_STATIC_ASSERT(!IS_DPORT_REG(_r), (Cannot use OP for DPORT registers use DPORT_##OP)); 97 #else 98 #define ASSERT_IF_DPORT_REG(_r, OP) 99 #endif 100 101 //write value to register 102 #define REG_WRITE(_r, _v) ({ \ 103 ASSERT_IF_DPORT_REG((_r), REG_WRITE); \ 104 (*(volatile uint32_t *)(_r)) = (_v); \ 105 }) 106 107 //read value from register 108 #define REG_READ(_r) ({ \ 109 ASSERT_IF_DPORT_REG((_r), REG_READ); \ 110 (*(volatile uint32_t *)(_r)); \ 111 }) 112 113 //get bit or get bits from register 114 #define REG_GET_BIT(_r, _b) ({ \ 115 ASSERT_IF_DPORT_REG((_r), REG_GET_BIT); \ 116 (*(volatile uint32_t*)(_r) & (_b)); \ 117 }) 118 119 //set bit or set bits to register 120 #define REG_SET_BIT(_r, _b) ({ \ 121 ASSERT_IF_DPORT_REG((_r), REG_SET_BIT); \ 122 (*(volatile uint32_t*)(_r) |= (_b)); \ 123 }) 124 125 //clear bit or clear bits of register 126 #define REG_CLR_BIT(_r, _b) ({ \ 127 ASSERT_IF_DPORT_REG((_r), REG_CLR_BIT); \ 128 (*(volatile uint32_t*)(_r) &= ~(_b)); \ 129 }) 130 131 //set bits of register controlled by mask 132 #define REG_SET_BITS(_r, _b, _m) ({ \ 133 ASSERT_IF_DPORT_REG((_r), REG_SET_BITS); \ 134 (*(volatile uint32_t*)(_r) = (*(volatile uint32_t*)(_r) & ~(_m)) | ((_b) & (_m))); \ 135 }) 136 137 //get field from register, uses field _S & _V to determine mask 138 #define REG_GET_FIELD(_r, _f) ({ \ 139 ASSERT_IF_DPORT_REG((_r), REG_GET_FIELD); \ 140 ((REG_READ(_r) >> (_f##_S)) & (_f##_V)); \ 141 }) 142 143 //set field of a register from variable, uses field _S & _V to determine mask 144 #define REG_SET_FIELD(_r, _f, _v) ({ \ 145 ASSERT_IF_DPORT_REG((_r), REG_SET_FIELD); \ 146 (REG_WRITE((_r),((REG_READ(_r) & ~((_f##_V) << (_f##_S)))|(((_v) & (_f##_V))<<(_f##_S))))); \ 147 }) 148 149 //get field value from a variable, used when _f is not left shifted by _f##_S 150 #define VALUE_GET_FIELD(_r, _f) (((_r) >> (_f##_S)) & (_f)) 151 152 //get field value from a variable, used when _f is left shifted by _f##_S 153 #define VALUE_GET_FIELD2(_r, _f) (((_r) & (_f))>> (_f##_S)) 154 155 //set field value to a variable, used when _f is not left shifted by _f##_S 156 #define VALUE_SET_FIELD(_r, _f, _v) ((_r)=(((_r) & ~((_f) << (_f##_S)))|((_v)<<(_f##_S)))) 157 158 //set field value to a variable, used when _f is left shifted by _f##_S 159 #define VALUE_SET_FIELD2(_r, _f, _v) ((_r)=(((_r) & ~(_f))|((_v)<<(_f##_S)))) 160 161 //generate a value from a field value, used when _f is not left shifted by _f##_S 162 #define FIELD_TO_VALUE(_f, _v) (((_v)&(_f))<<_f##_S) 163 164 //generate a value from a field value, used when _f is left shifted by _f##_S 165 #define FIELD_TO_VALUE2(_f, _v) (((_v)<<_f##_S) & (_f)) 166 167 //read value from register 168 #define READ_PERI_REG(addr) ({ \ 169 ASSERT_IF_DPORT_REG((addr), READ_PERI_REG); \ 170 (*((volatile uint32_t *)ETS_UNCACHED_ADDR(addr))); \ 171 }) 172 173 //write value to register 174 #define WRITE_PERI_REG(addr, val) ({ \ 175 ASSERT_IF_DPORT_REG((addr), WRITE_PERI_REG); \ 176 (*((volatile uint32_t *)ETS_UNCACHED_ADDR(addr))) = (uint32_t)(val); \ 177 }) 178 179 //clear bits of register controlled by mask 180 #define CLEAR_PERI_REG_MASK(reg, mask) ({ \ 181 ASSERT_IF_DPORT_REG((reg), CLEAR_PERI_REG_MASK); \ 182 WRITE_PERI_REG((reg), (READ_PERI_REG(reg)&(~(mask)))); \ 183 }) 184 185 //set bits of register controlled by mask 186 #define SET_PERI_REG_MASK(reg, mask) ({ \ 187 ASSERT_IF_DPORT_REG((reg), SET_PERI_REG_MASK); \ 188 WRITE_PERI_REG((reg), (READ_PERI_REG(reg)|(mask))); \ 189 }) 190 191 //get bits of register controlled by mask 192 #define GET_PERI_REG_MASK(reg, mask) ({ \ 193 ASSERT_IF_DPORT_REG((reg), GET_PERI_REG_MASK); \ 194 (READ_PERI_REG(reg) & (mask)); \ 195 }) 196 197 //get bits of register controlled by highest bit and lowest bit 198 #define GET_PERI_REG_BITS(reg, hipos,lowpos) ({ \ 199 ASSERT_IF_DPORT_REG((reg), GET_PERI_REG_BITS); \ 200 ((READ_PERI_REG(reg)>>(lowpos))&((1<<((hipos)-(lowpos)+1))-1)); \ 201 }) 202 203 //set bits of register controlled by mask and shift 204 #define SET_PERI_REG_BITS(reg,bit_map,value,shift) ({ \ 205 ASSERT_IF_DPORT_REG((reg), SET_PERI_REG_BITS); \ 206 (WRITE_PERI_REG((reg),(READ_PERI_REG(reg)&(~((bit_map)<<(shift))))|(((value) & bit_map)<<(shift)) )); \ 207 }) 208 209 //get field of register 210 #define GET_PERI_REG_BITS2(reg, mask,shift) ({ \ 211 ASSERT_IF_DPORT_REG((reg), GET_PERI_REG_BITS2); \ 212 ((READ_PERI_REG(reg)>>(shift))&(mask)); \ 213 }) 214 215 #endif /* !__ASSEMBLER__ */ 216 //}} 217 218 //Periheral Clock {{ 219 #define APB_CLK_FREQ_ROM ( 26*1000000 ) 220 #define CPU_CLK_FREQ_ROM APB_CLK_FREQ_ROM 221 #define CPU_CLK_FREQ APB_CLK_FREQ //this may be incorrect, please refer to ESP32_DEFAULT_CPU_FREQ_MHZ 222 #define APB_CLK_FREQ ( 80*1000000 ) //unit: Hz 223 #define REF_CLK_FREQ ( 1000000 ) 224 #define UART_CLK_FREQ APB_CLK_FREQ 225 #define WDT_CLK_FREQ APB_CLK_FREQ 226 #define TIMER_CLK_FREQ (80000000>>4) //80MHz divided by 16 227 #define SPI_CLK_DIV 4 228 #define TICKS_PER_US_ROM 26 // CPU is 80MHz 229 #define GPIO_MATRIX_DELAY_NS 25 230 //}} 231 232 /* Overall memory map */ 233 #define SOC_DROM_LOW 0x3F400000 234 #define SOC_DROM_HIGH 0x3F800000 235 #define SOC_DRAM_LOW 0x3FFAE000 236 #define SOC_DRAM_HIGH 0x40000000 237 #define SOC_IROM_LOW 0x400D0000 238 #define SOC_IROM_HIGH 0x40400000 239 #define SOC_IROM_MASK_LOW 0x40000000 240 #define SOC_IROM_MASK_HIGH 0x40064F00 241 #define SOC_CACHE_PRO_LOW 0x40070000 242 #define SOC_CACHE_PRO_HIGH 0x40078000 243 #define SOC_CACHE_APP_LOW 0x40078000 244 #define SOC_CACHE_APP_HIGH 0x40080000 245 #define SOC_IRAM_LOW 0x40080000 246 #define SOC_IRAM_HIGH 0x400A0000 247 #define SOC_RTC_IRAM_LOW 0x400C0000 248 #define SOC_RTC_IRAM_HIGH 0x400C2000 249 #define SOC_RTC_DRAM_LOW 0x3FF80000 250 #define SOC_RTC_DRAM_HIGH 0x3FF82000 251 #define SOC_RTC_DATA_LOW 0x50000000 252 #define SOC_RTC_DATA_HIGH 0x50002000 253 #define SOC_EXTRAM_DATA_LOW 0x3F800000 254 #define SOC_EXTRAM_DATA_HIGH 0x3FC00000 255 256 #define SOC_EXTRAM_DATA_SIZE (SOC_EXTRAM_DATA_HIGH - SOC_EXTRAM_DATA_LOW) 257 258 //First and last words of the D/IRAM region, for both the DRAM address as well as the IRAM alias. 259 #define SOC_DIRAM_IRAM_LOW 0x400A0000 260 #define SOC_DIRAM_IRAM_HIGH 0x400C0000 261 #define SOC_DIRAM_DRAM_LOW 0x3FFE0000 262 #define SOC_DIRAM_DRAM_HIGH 0x40000000 263 // Byte order of D/IRAM regions is reversed between accessing as DRAM or IRAM 264 #define SOC_DIRAM_INVERTED 1 265 266 // Region of memory accessible via DMA. See esp_ptr_dma_capable(). 267 #define SOC_DMA_LOW 0x3FFAE000 268 #define SOC_DMA_HIGH 0x40000000 269 270 // Region of memory that is byte-accessible. See esp_ptr_byte_accessible(). 271 #define SOC_BYTE_ACCESSIBLE_LOW 0x3FF90000 272 #define SOC_BYTE_ACCESSIBLE_HIGH 0x40000000 273 274 //Region of memory that is internal, as in on the same silicon die as the ESP32 CPUs 275 //(excluding RTC data region, that's checked separately.) See esp_ptr_internal(). 276 #define SOC_MEM_INTERNAL_LOW 0x3FF90000 277 #define SOC_MEM_INTERNAL_HIGH 0x400C2000 278 279 // Start (highest address) of ROM boot stack, only relevant during early boot 280 #define SOC_ROM_STACK_START 0x3ffe3f20 281 282 //Interrupt hardware source table 283 //This table is decided by hardware, don't touch this. 284 #define ETS_WIFI_MAC_INTR_SOURCE 0/**< interrupt of WiFi MAC, level*/ 285 #define ETS_WIFI_MAC_NMI_SOURCE 1/**< interrupt of WiFi MAC, NMI, use if MAC have bug to fix in NMI*/ 286 #define ETS_WIFI_BB_INTR_SOURCE 2/**< interrupt of WiFi BB, level, we can do some calibartion*/ 287 #define ETS_BT_MAC_INTR_SOURCE 3/**< will be cancelled*/ 288 #define ETS_BT_BB_INTR_SOURCE 4/**< interrupt of BT BB, level*/ 289 #define ETS_BT_BB_NMI_SOURCE 5/**< interrupt of BT BB, NMI, use if BB have bug to fix in NMI*/ 290 #define ETS_RWBT_INTR_SOURCE 6/**< interrupt of RWBT, level*/ 291 #define ETS_RWBLE_INTR_SOURCE 7/**< interrupt of RWBLE, level*/ 292 #define ETS_RWBT_NMI_SOURCE 8/**< interrupt of RWBT, NMI, use if RWBT have bug to fix in NMI*/ 293 #define ETS_RWBLE_NMI_SOURCE 9/**< interrupt of RWBLE, NMI, use if RWBT have bug to fix in NMI*/ 294 #define ETS_SLC0_INTR_SOURCE 10/**< interrupt of SLC0, level*/ 295 #define ETS_SLC1_INTR_SOURCE 11/**< interrupt of SLC1, level*/ 296 #define ETS_UHCI0_INTR_SOURCE 12/**< interrupt of UHCI0, level*/ 297 #define ETS_UHCI1_INTR_SOURCE 13/**< interrupt of UHCI1, level*/ 298 #define ETS_TG0_T0_LEVEL_INTR_SOURCE 14/**< interrupt of TIMER_GROUP0, TIMER0, level, we would like use EDGE for timer if permission*/ 299 #define ETS_TG0_T1_LEVEL_INTR_SOURCE 15/**< interrupt of TIMER_GROUP0, TIMER1, level, we would like use EDGE for timer if permission*/ 300 #define ETS_TG0_WDT_LEVEL_INTR_SOURCE 16/**< interrupt of TIMER_GROUP0, WATCHDOG, level*/ 301 #define ETS_TG0_LACT_LEVEL_INTR_SOURCE 17/**< interrupt of TIMER_GROUP0, LACT, level*/ 302 #define ETS_TG1_T0_LEVEL_INTR_SOURCE 18/**< interrupt of TIMER_GROUP1, TIMER0, level, we would like use EDGE for timer if permission*/ 303 #define ETS_TG1_T1_LEVEL_INTR_SOURCE 19/**< interrupt of TIMER_GROUP1, TIMER1, level, we would like use EDGE for timer if permission*/ 304 #define ETS_TG1_WDT_LEVEL_INTR_SOURCE 20/**< interrupt of TIMER_GROUP1, WATCHDOG, level*/ 305 #define ETS_TG1_LACT_LEVEL_INTR_SOURCE 21/**< interrupt of TIMER_GROUP1, LACT, level*/ 306 #define ETS_GPIO_INTR_SOURCE 22/**< interrupt of GPIO, level*/ 307 #define ETS_GPIO_NMI_SOURCE 23/**< interrupt of GPIO, NMI*/ 308 #define ETS_FROM_CPU_INTR0_SOURCE 24/**< interrupt0 generated from a CPU, level*/ /* Used for FreeRTOS */ 309 #define ETS_FROM_CPU_INTR1_SOURCE 25/**< interrupt1 generated from a CPU, level*/ /* Used for FreeRTOS */ 310 #define ETS_FROM_CPU_INTR2_SOURCE 26/**< interrupt2 generated from a CPU, level*/ /* Used for IPC_ISR */ 311 #define ETS_FROM_CPU_INTR3_SOURCE 27/**< interrupt3 generated from a CPU, level*/ /* Used for IPC_ISR */ 312 #define ETS_SPI0_INTR_SOURCE 28/**< interrupt of SPI0, level, SPI0 is for Cache Access, do not use this*/ 313 #define ETS_SPI1_INTR_SOURCE 29/**< interrupt of SPI1, level, SPI1 is for flash read/write, do not use this*/ 314 #define ETS_SPI2_INTR_SOURCE 30/**< interrupt of SPI2, level*/ 315 #define ETS_SPI3_INTR_SOURCE 31/**< interrupt of SPI3, level*/ 316 #define ETS_I2S0_INTR_SOURCE 32/**< interrupt of I2S0, level*/ 317 #define ETS_I2S1_INTR_SOURCE 33/**< interrupt of I2S1, level*/ 318 #define ETS_UART0_INTR_SOURCE 34/**< interrupt of UART0, level*/ 319 #define ETS_UART1_INTR_SOURCE 35/**< interrupt of UART1, level*/ 320 #define ETS_UART2_INTR_SOURCE 36/**< interrupt of UART2, level*/ 321 #define ETS_SDIO_HOST_INTR_SOURCE 37/**< interrupt of SD/SDIO/MMC HOST, level*/ 322 #define ETS_ETH_MAC_INTR_SOURCE 38/**< interrupt of ethernet mac, level*/ 323 #define ETS_PWM0_INTR_SOURCE 39/**< interrupt of PWM0, level, Reserved*/ 324 #define ETS_PWM1_INTR_SOURCE 40/**< interrupt of PWM1, level, Reserved*/ 325 #define ETS_LEDC_INTR_SOURCE 43/**< interrupt of LED PWM, level*/ 326 #define ETS_EFUSE_INTR_SOURCE 44/**< interrupt of efuse, level, not likely to use*/ 327 #define ETS_TWAI_INTR_SOURCE 45/**< interrupt of twai, level*/ 328 #define ETS_CAN_INTR_SOURCE ETS_TWAI_INTR_SOURCE 329 #define ETS_RTC_CORE_INTR_SOURCE 46/**< interrupt of rtc core, level, include rtc watchdog*/ 330 #define ETS_RMT_INTR_SOURCE 47/**< interrupt of remote controller, level*/ 331 #define ETS_PCNT_INTR_SOURCE 48/**< interrupt of pluse count, level*/ 332 #define ETS_I2C_EXT0_INTR_SOURCE 49/**< interrupt of I2C controller1, level*/ 333 #define ETS_I2C_EXT1_INTR_SOURCE 50/**< interrupt of I2C controller0, level*/ 334 #define ETS_RSA_INTR_SOURCE 51/**< interrupt of RSA accelerator, level*/ 335 #define ETS_SPI1_DMA_INTR_SOURCE 52/**< interrupt of SPI1 DMA, SPI1 is for flash read/write, do not use this*/ 336 #define ETS_SPI2_DMA_INTR_SOURCE 53/**< interrupt of SPI2 DMA, level*/ 337 #define ETS_SPI3_DMA_INTR_SOURCE 54/**< interrupt of SPI3 DMA, level*/ 338 #define ETS_WDT_INTR_SOURCE 55/**< will be cancelled*/ 339 #define ETS_TIMER1_INTR_SOURCE 56/**< will be cancelled*/ 340 #define ETS_TIMER2_INTR_SOURCE 57/**< will be cancelled*/ 341 #define ETS_TG0_T0_EDGE_INTR_SOURCE 58/**< interrupt of TIMER_GROUP0, TIMER0, EDGE*/ 342 #define ETS_TG0_T1_EDGE_INTR_SOURCE 59/**< interrupt of TIMER_GROUP0, TIMER1, EDGE*/ 343 #define ETS_TG0_WDT_EDGE_INTR_SOURCE 60/**< interrupt of TIMER_GROUP0, WATCH DOG, EDGE*/ 344 #define ETS_TG0_LACT_EDGE_INTR_SOURCE 61/**< interrupt of TIMER_GROUP0, LACT, EDGE*/ 345 #define ETS_TG1_T0_EDGE_INTR_SOURCE 62/**< interrupt of TIMER_GROUP1, TIMER0, EDGE*/ 346 #define ETS_TG1_T1_EDGE_INTR_SOURCE 63/**< interrupt of TIMER_GROUP1, TIMER1, EDGE*/ 347 #define ETS_TG1_WDT_EDGE_INTR_SOURCE 64/**< interrupt of TIMER_GROUP1, WATCHDOG, EDGE*/ 348 #define ETS_TG1_LACT_EDGE_INTR_SOURCE 65/**< interrupt of TIMER_GROUP0, LACT, EDGE*/ 349 #define ETS_MMU_IA_INTR_SOURCE 66/**< interrupt of MMU Invalid Access, LEVEL*/ 350 #define ETS_MPU_IA_INTR_SOURCE 67/**< interrupt of MPU Invalid Access, LEVEL*/ 351 #define ETS_CACHE_IA_INTR_SOURCE 68/**< interrupt of Cache Invalied Access, LEVEL*/ 352 #define ETS_MAX_INTR_SOURCE 69/**< total number of interrupt sources*/ 353 354 #if CONFIG_ESP_SYSTEM_CHECK_INT_LEVEL_5 355 //interrupt cpu using table, Please see the core-isa.h 356 /************************************************************************************************************* 357 * Intr num Level Type PRO CPU usage APP CPU uasge 358 * 0 1 extern level WMAC Reserved 359 * 1 1 extern level BT/BLE Host HCI DMA BT/BLE Host HCI DMA 360 * 2 1 extern level 361 * 3 1 extern level 362 * 4 1 extern level WBB 363 * 5 1 extern level 364 * 6 1 timer FreeRTOS Tick(L1) FreeRTOS Tick(L1) 365 * 7 1 software BT/BLE VHCI BT/BLE VHCI 366 * 8 1 extern level BT/BLE BB(RX/TX) BT/BLE BB(RX/TX) 367 * 9 1 extern level 368 * 10 1 extern edge 369 * 11 3 profiling 370 * 12 1 extern level 371 * 13 1 extern level 372 * 14 7 nmi Reserved Reserved 373 * 15 3 timer FreeRTOS Tick(L3) FreeRTOS Tick(L3) 374 * 16 5 timer Reserved Reserved 375 * 17 1 extern level 376 * 18 1 extern level 377 * 19 2 extern level 378 * 20 2 extern level 379 * 21 2 extern level 380 * 22 3 extern edge 381 * 23 3 extern level 382 * 24 4 extern level 383 * 25 4 extern level BT/BLE Controller BT/BLE Controller 384 * 26 5 extern level TG1_WDT & CACHEERR 385 * 27 3 extern level Reserved Reserved 386 * 28 4 extern edge 387 * 29 3 software BT/BLE hli BT/BLE hli 388 * 30 4 extern edge Reserved Reserved 389 * 31 5 extern level IPC_ISR IPC_ISR 390 ************************************************************************************************************* 391 */ 392 393 //CPU0 Interrupt number reserved, not touch this. 394 #define ETS_WMAC_INUM 0 395 #define ETS_BT_HOST_INUM 1 396 #define ETS_WBB_INUM 4 397 #define ETS_TG0_T1_INUM 10 /**< use edge interrupt*/ 398 #define ETS_FRC1_INUM 22 399 #define ETS_T1_WDT_CACHEERR_INUM 26 400 #define ETS_T1_WDT_INUM ETS_T1_WDT_CACHEERR_INUM 401 #define ETS_MEMACCESS_ERR_INUM ETS_T1_WDT_CACHEERR_INUM 402 /* backwards compatibility only, use ETS_MEMACCESS_ERR_INUM instead*/ 403 #define ETS_CACHEERR_INUM ETS_MEMACCESS_ERR_INUM 404 #define ETS_IPC_ISR_INUM 31 405 406 #elif CONFIG_ESP_SYSTEM_CHECK_INT_LEVEL_4 407 408 //interrupt cpu using table, Please see the core-isa.h 409 /************************************************************************************************************* 410 * Intr num Level Type PRO CPU usage APP CPU uasge 411 * 0 1 extern level WMAC Reserved 412 * 1 1 extern level BT/BLE Host HCI DMA BT/BLE Host HCI DMA 413 * 2 1 extern level 414 * 3 1 extern level 415 * 4 1 extern level WBB 416 * 5 1 extern level BT/BLE Controller BT/BLE Controller 417 * 6 1 timer FreeRTOS Tick(L1) FreeRTOS Tick(L1) 418 * 7 1 software BT/BLE VHCI BT/BLE VHCI 419 * 8 1 extern level BT/BLE BB(RX/TX) BT/BLE BB(RX/TX) 420 * 9 1 extern level 421 * 10 1 extern edge 422 * 11 3 profiling 423 * 12 1 extern level 424 * 13 1 extern level 425 * 14 7 nmi Reserved Reserved 426 * 15 3 timer FreeRTOS Tick(L3) FreeRTOS Tick(L3) 427 * 16 5 timer 428 * 17 1 extern level 429 * 18 1 extern level 430 * 19 2 extern level 431 * 20 2 extern level 432 * 21 2 extern level 433 * 22 3 extern edge 434 * 23 3 extern level 435 * 24 4 extern level TG1_WDT 436 * 25 4 extern level CACHEERR 437 * 26 5 extern level 438 * 27 3 extern level Reserved Reserved 439 * 28 4 extern edge IPC_ISR IPC_ISR 440 * 29 3 software Reserved Reserved 441 * 30 4 extern edge Reserved Reserved 442 * 31 5 extern level 443 ************************************************************************************************************* 444 */ 445 446 //CPU0 Interrupt number reserved, not touch this. 447 #define ETS_WMAC_INUM 0 448 #define ETS_BT_HOST_INUM 1 449 #define ETS_WBB_INUM 4 450 #define ETS_TG0_T1_INUM 10 /**< use edge interrupt*/ 451 #define ETS_FRC1_INUM 22 452 #define ETS_T1_WDT_INUM 24 453 #define ETS_MEMACCESS_ERR_INUM 25 454 /* backwards compatibility only, use ETS_MEMACCESS_ERR_INUM instead*/ 455 #define ETS_CACHEERR_INUM ETS_MEMACCESS_ERR_INUM 456 #define ETS_IPC_ISR_INUM 28 457 458 #endif /* CONFIG_ESP_SYSTEM_CHECK_INT_LEVEL_5 */ 459 460 //CPU0 Interrupt number used in ROM, should be cancelled in SDK 461 #define ETS_SLC_INUM 1 462 #define ETS_UART0_INUM 5 463 #define ETS_UART1_INUM 5 464 //Other interrupt number should be managed by the user 465 466 //Invalid interrupt for number interrupt matrix 467 #define ETS_INVALID_INUM 6 468