1 /*
2  * Copyright (c) 2015-2020, Broadcom
3  *
4  * SPDX-License-Identifier: BSD-3-Clause
5  */
6 
7 #ifndef CMN_SEC_H
8 #define CMN_SEC_H
9 
10 #include <stdint.h>
11 
12 #define SECURE_MASTER 0
13 #define NS_MASTER 1
14 
15 void tz_master_default_cfg(void);
16 void tz_usb_ns_master_set(uint32_t ns);
17 void tz_sdio_ns_master_set(uint32_t ns);
18 
19 #endif
20