Zephyr API Documentation  3.5.0
A Scalable Open Source RTOS
3.5.0
All Data Structures Files Functions Variables Typedefs Enumerations Enumerator Macros Modules Pages
xtensa_mmu.h
Go to the documentation of this file.
1/*
2 * Copyright (c) 2022 Intel Corporation
3 *
4 * SPDX-License-Identifier: Apache-2.0
5 */
6
7#ifndef ZEPHYR_INCLUDE_ARCH_XTENSA_XTENSA_MMU_H
8#define ZEPHYR_INCLUDE_ARCH_XTENSA_XTENSA_MMU_H
9
10#define Z_XTENSA_MMU_X BIT(0)
11#define Z_XTENSA_MMU_W BIT(1)
12#define Z_XTENSA_MMU_CACHED_WB BIT(2)
13#define Z_XTENSA_MMU_CACHED_WT BIT(3)
14#define Z_XTENSA_MMU_ILLEGAL (BIT(3) | BIT(2))
15
16/* Struct used to map a memory region */
18 const char *name;
22};
23
24extern const struct xtensa_mmu_range xtensa_soc_mmu_ranges[];
26
27void z_xtensa_mmu_init(void);
28
29void z_xtensa_mmu_smp_init(void);
30
31#endif /* ZEPHYR_INCLUDE_ARCH_XTENSA_XTENSA_MMU_H */
__UINT32_TYPE__ uint32_t
Definition: stdint.h:90
Definition: xtensa_mmu.h:17
const uint32_t end
Definition: xtensa_mmu.h:20
const uint32_t attrs
Definition: xtensa_mmu.h:21
const uint32_t start
Definition: xtensa_mmu.h:19
const char * name
Definition: xtensa_mmu.h:18
int xtensa_soc_mmu_ranges_num
const struct xtensa_mmu_range xtensa_soc_mmu_ranges[]