AM62Px MCU+ SDK  09.02.01
sdl_mtog.h
Go to the documentation of this file.
1 /*
2  * Copyright (c) Texas Instruments Incorporated 2022-2023
3  *
4  * Redistribution and use in source and binary forms, with or without
5  * modification, are permitted provided that the following conditions
6  * are met:
7  *
8  * Redistributions of source code must retain the above copyright
9  * notice, this list of conditions and the following disclaimer.
10  *
11  * Redistributions in binary form must reproduce the above copyright
12  * notice, this list of conditions and the following disclaimer in the
13  * documentation and/or other materials provided with the
14  * distribution.
15  *
16  * Neither the name of Texas Instruments Incorporated nor the names of
17  * its contributors may be used to endorse or promote products derived
18  * from this software without specific prior written permission.
19  *
20  * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
21  * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
22  * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
23  * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
24  * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
25  * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
26  * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
27  * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
28  * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
29  * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
30  * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
31  *
32  */
66 #ifndef SDL_MTOG_H_
67 #define SDL_MTOG_H_
68 
69 #ifdef __cplusplus
70 extern "C" {
71 #endif
72 
73 #include <stdint.h>
74 #include <stdbool.h>
75 #include <sdl/include/soc_config.h>
76 #include <sdl/mtog/soc/sdl_soc_mtog.h>
77 #include <sdl/mtog/sdl_ip_mtog.h>
78 
79 
80 
81 
82 
83 /* Magic value used to force a timeout */
84 #define SDL_MTOG_FORCE_KEY ((uint32_t) 0x95U)
85 
93 typedef struct {
95  uint32_t mtogCtrlRegister;
97 
98 /* This structure contains Master TOG configuration value */
99 typedef struct {
103 
104 /* ========================================================================== */
105 /* Function Declarations */
106 /* ========================================================================== */
107 
128 int32_t SDL_MTOG_init(SDL_MTOG_Inst instance, const SDL_MTOG_config *pConfig);
129 
143 int32_t SDL_MTOG_verifyConfig(SDL_MTOG_Inst instance, const SDL_MTOG_config *pConfig);
144 
155 int32_t SDL_MTOG_start( SDL_MTOG_Inst instance );
156 
167 int32_t SDL_MTOG_stop( SDL_MTOG_Inst instance );
168 
183 
200 int32_t SDL_MTOG_reset( SDL_MTOG_Inst instance );
201 
216  SDL_MTOG_staticRegs *pStaticRegs);
217 
218 
219 #ifdef __cplusplus
220 }
221 #endif
222 
223 #endif /* SDL_MTOG_H_ */
224 
225 /* nothing past this point */
SDL_MTOG_config::timeOut
SDL_MTOGVal timeOut
Definition: sdl_mtog.h:101
SDL_MTOG_config
Definition: sdl_mtog.h:99
SDL_MTOG_verifyConfig
int32_t SDL_MTOG_verifyConfig(SDL_MTOG_Inst instance, const SDL_MTOG_config *pConfig)
Verifying written configuration with Master TOG module.
SDL_MTOG_reset
int32_t SDL_MTOG_reset(SDL_MTOG_Inst instance)
Reset the timeout functionality.
SDL_MTOG_forceTimeout
int32_t SDL_MTOG_forceTimeout(SDL_MTOG_Inst instance)
Force a timeout.
SDL_MTOG_init
int32_t SDL_MTOG_init(SDL_MTOG_Inst instance, const SDL_MTOG_config *pConfig)
Initialize Master TOG module with respect of instance.
SDL_MTOG_staticRegs
Master TOG Static Registers.
Definition: sdl_mtog.h:93
SDL_MTOG_getStaticRegisters
int32_t SDL_MTOG_getStaticRegisters(SDL_MTOG_Inst instance, SDL_MTOG_staticRegs *pStaticRegs)
Readback Static configuration register.
SDL_MTOG_stop
int32_t SDL_MTOG_stop(SDL_MTOG_Inst instance)
Stop the timeout function.
SDL_MTOG_staticRegs::mtogCtrlRegister
uint32_t mtogCtrlRegister
Definition: sdl_mtog.h:95
SDL_MTOGVal
uint32_t SDL_MTOGVal
Definition: sdl_ip_mtog.h:59
SDL_MTOG_start
int32_t SDL_MTOG_start(SDL_MTOG_Inst instance)
Start the timeout function.
SDL_MTOG_Inst
uint8_t SDL_MTOG_Inst
MTOG Instance supported.
Definition: sdl_soc_mtog.h:59