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 INTERNAL_TRANSACTION_SW_H
9 #define INTERNAL_TRANSACTION_SW_H
10 
11 #include <stdint.h>
12 
13 void set_transactionsw_off(
14     uint32_t transactionsw_reg_addr,
15     uint32_t disable_bit);
16 
17 void set_transactionsw_on(uint32_t transactionsw_reg_addr, uint32_t enable_bit);
18 
19 #endif /* INTERNAL_TRANSACTION_SW_H */
20