1 /*
2  * Arm SCP/MCP Software
3  * Copyright (c) 2018-2021, Arm Limited and Contributors. All rights reserved.
4  *
5  * SPDX-License-Identifier: BSD-3-Clause
6  */
7 
8 #ifndef BOOT_CTL_H
9 #define BOOT_CTL_H
10 
11 #include <stdint.h>
12 
13 uint8_t get_dsw3_status(uint8_t bit_mask);
14 void set_memory_remap(uint32_t value);
15 
16 #endif /* BOOT_CTL_H */
17