1 /* 2 * Copyright (c) 2021, ARM Limited and Contributors. All rights reserved. 3 * 4 * SPDX-License-Identifier: MIT 5 * 6 * This header provides constants for Memory Region attributes. 7 */ 8 9 #ifndef _DT_BINDINGS_MEMORY_H 10 #define _DT_BINDINGS_MEMORY_H 11 12 #define MEM_CODE (0) 13 #define MEM_RO_DATA (1) 14 #define MEM_RW_DATA (2) 15 #define MEM_RO (3) 16 #define MEM_RW (4) 17 18 #define MEM_SECURE (0) 19 #define MEM_NON_SECURE (1) 20 21 #define MEM_DEVICE (0) 22 #define MEM_NON_CACHE (1) 23 #define MEM_NORMAL (2) 24 25 #endif 26