1 /*
2  * Arm SCP/MCP Software
3  * Copyright (c) 2015-2021, Arm Limited and Contributors. All rights reserved.
4  *
5  * SPDX-License-Identifier: BSD-3-Clause
6  */
7 
8 #ifndef INTERNAL_MHU_H
9 #define INTERNAL_MHU_H
10 
11 #include <mod_mhu.h>
12 
13 #include <fwk_macros.h>
14 
15 #include <stdint.h>
16 
17 /*!
18  * \brief MHU Register Definitions
19  */
20 struct mhu_reg {
21     /*! Status register */
22     FWK_R  uint32_t STAT;
23            uint32_t RESERVED0;
24     /*! Set register (sets the value of STAT) */
25     FWK_W  uint32_t SET;
26            uint32_t RESERVED1;
27     /*! Clear register (clears STAT) */
28     FWK_W  uint32_t CLEAR;
29 };
30 
31 #endif /* INTERNAL_MHU_H */
32