1
6
7
14
15
16
17
18
19
27
28
29
30
31
32
33
/* ... */
#pragma once
#include <stdlib.h>
#include <stdint.h>
#include <stdbool.h>
#include "sdkconfig.h"
#include "soc/soc_caps.h"
#include "hal/cache_types.h"
#include "hal/mmu_types.h"7 includes
#ifdef __cplusplus
extern "C" {
#endif
typedef struct {
uint32_t start;
uint32_t end;
size_t size;
cache_bus_mask_t bus_id;
mmu_target_t targets;
uint32_t caps;
}{ ... } mmu_mem_region_t;
extern const mmu_mem_region_t g_mmu_mem_regions[SOC_MMU_LINEAR_ADDRESS_REGION_NUM];
#ifdef __cplusplus
}{...}
#endif