]> git.sur5r.net Git - freertos/blob - FreeRTOS/Demo/CORTEX_A9_Zynq_ZC702/RTOSDemo_bsp/ps7_cortexa9_0/libsrc/standalone_v4_1/src/xil_types.h
8b76b53036e77a5e23c231206343d411e44e2429
[freertos] / FreeRTOS / Demo / CORTEX_A9_Zynq_ZC702 / RTOSDemo_bsp / ps7_cortexa9_0 / libsrc / standalone_v4_1 / src / xil_types.h
1 /******************************************************************************
2 *
3 * Copyright (C) 2009 - 2014 Xilinx, Inc.  All rights reserved.
4 *
5 * Permission is hereby granted, free of charge, to any person obtaining a copy
6 * of this software and associated documentation files (the "Software"), to deal
7 * in the Software without restriction, including without limitation the rights
8 * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9 * copies of the Software, and to permit persons to whom the Software is
10 * furnished to do so, subject to the following conditions:
11 *
12 * The above copyright notice and this permission notice shall be included in
13 * all copies or substantial portions of the Software.
14 *
15 * Use of the Software is limited solely to applications:
16 * (a) running on a Xilinx device, or
17 * (b) that interact with a Xilinx device through a bus or interconnect.
18 *
19 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
20 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
21 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
22 * XILINX  BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
23 * WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF
24 * OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
25 * SOFTWARE.
26 *
27 * Except as contained in this notice, the name of the Xilinx shall not be used
28 * in advertising or otherwise to promote the sale, use or other dealings in
29 * this Software without prior written authorization from Xilinx.
30 *
31 ******************************************************************************/
32 /*****************************************************************************/
33 /**
34 *
35 * @file xil_types.h
36 *
37 * This file contains basic types for Xilinx software IP.
38
39 *
40 * <pre>
41 * MODIFICATION HISTORY:
42 *
43 * Ver   Who    Date   Changes
44 * ----- ---- -------- -------------------------------------------------------
45 * 1.00a hbm  07/14/09 First release
46 * 3.03a sdm  05/30/11 Added Xuint64 typedef and XUINT64_MSW/XUINT64_LSW macros
47 * </pre>
48 *
49 ******************************************************************************/
50
51 #ifndef XIL_TYPES_H     /* prevent circular inclusions */
52 #define XIL_TYPES_H     /* by using protection macros */
53
54
55 /************************** Constant Definitions *****************************/
56
57 #ifndef TRUE
58 #  define TRUE          1
59 #endif
60
61 #ifndef FALSE
62 #  define FALSE         0
63 #endif
64
65 #ifndef NULL
66 #define NULL            0
67 #endif
68
69 #define XIL_COMPONENT_IS_READY     0x11111111  /**< component has been initialized */
70 #define XIL_COMPONENT_IS_STARTED   0x22222222  /**< component has been started */
71
72 /** @name New types
73  * New simple types.
74  * @{
75  */
76 #ifndef __KERNEL__
77 #ifndef XBASIC_TYPES_H
78 /**
79  * guarded against xbasic_types.h.
80  */
81 typedef unsigned char u8;
82 typedef unsigned short u16;
83 typedef unsigned long u32;
84
85 #define __XUINT64__
86 typedef struct
87 {
88         u32 Upper;
89         u32 Lower;
90 } Xuint64;
91
92
93 /*****************************************************************************/
94 /**
95 * Return the most significant half of the 64 bit data type.
96 *
97 * @param    x is the 64 bit word.
98 *
99 * @return   The upper 32 bits of the 64 bit word.
100 *
101 * @note     None.
102 *
103 ******************************************************************************/
104 #define XUINT64_MSW(x) ((x).Upper)
105
106 /*****************************************************************************/
107 /**
108 * Return the least significant half of the 64 bit data type.
109 *
110 * @param    x is the 64 bit word.
111 *
112 * @return   The lower 32 bits of the 64 bit word.
113 *
114 * @note     None.
115 *
116 ******************************************************************************/
117 #define XUINT64_LSW(x) ((x).Lower)
118
119 #endif /* XBASIC_TYPES_H */
120
121 /**
122  * xbasic_types.h does not typedef s* or u64
123  */
124 typedef unsigned long long u64;
125
126 typedef char s8;
127 typedef short s16;
128 typedef long s32;
129 typedef long long s64;
130 #else
131 #include <linux/types.h>
132 #endif
133
134
135 /**
136  * This data type defines an interrupt handler for a device.
137  * The argument points to the instance of the component
138  */
139 typedef void (*XInterruptHandler) (void *InstancePtr);
140
141 /**
142  * This data type defines an exception handler for a processor.
143  * The argument points to the instance of the component
144  */
145 typedef void (*XExceptionHandler) (void *InstancePtr);
146
147 /*@}*/
148
149
150 /************************** Constant Definitions *****************************/
151
152 #ifndef TRUE
153 #define TRUE            1
154 #endif
155
156 #ifndef FALSE
157 #define FALSE           0
158 #endif
159
160 #ifndef NULL
161 #define NULL            0
162 #endif
163
164 #endif  /* end of protection macro */