]> Gitweb @ Texas Instruments - Open Source Git Repositories - git.TI.com/gitweb - keystone-rtos/sa-lld.git/blob - saver.h
test: fix priv level associated with sec context
[keystone-rtos/sa-lld.git] / saver.h
1 #ifndef _SAVER_H
2 #define _SAVER_H
4 /* ========================================================================== */
5 /**
6  *  @file   saver.h
7  *
8  *  path    ti/drv/sa/saver.h
9  *
10  *  @brief  SA LLD Version Definitions
11  *
12  *  ============================================================================
13  *  Copyright (c) Texas Instruments Incorporated 2009-2020
14  * 
15  *  Redistribution and use in source and binary forms, with or without 
16  *  modification, are permitted provided that the following conditions 
17  *  are met:
18  *
19  *    Redistributions of source code must retain the above copyright 
20  *    notice, this list of conditions and the following disclaimer.
21  *
22  *    Redistributions in binary form must reproduce the above copyright
23  *    notice, this list of conditions and the following disclaimer in the 
24  *    documentation and/or other materials provided with the   
25  *    distribution.
26  *
27  *    Neither the name of Texas Instruments Incorporated nor the names of
28  *    its contributors may be used to endorse or promote products derived
29  *    from this software without specific prior written permission.
30  *
31  *  THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS 
32  *  "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT 
33  *  LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
34  *  A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT 
35  *  OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, 
36  *  SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT 
37  *  LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
38  *  DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
39  *  THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT 
40  *  (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE 
41  *  OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
42  *
43 */
45 #ifdef __cplusplus
46 extern "C" {
47 #endif
49 /**
50  * @brief   This is the SA LLD Version. Versions numbers are encoded in the following 
51  * format:
52  *  0xAABBCCDD -> Arch (AA); API Changes (BB); Major (CC); Minor (DD)
53  */
54 #define SA_LLD_VERSION_ID                   (0x04000004)
56 /**
57  * @brief   This is the version string which describes the SA LLD along with the
58  * date and build information.
59  */
60 #define SA_LLD_VERSION_STR                  "SA LLD Revision: 04.00.00.04"
62 #ifdef __cplusplus
63 }
64 #endif
66 #endif /* _SAVER_H */
68 /* nothing past this point */