1 /******************************************************************************
3 * Copyright (C) 2009 - 2014 Xilinx, Inc. All rights reserved.
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:
12 * The above copyright notice and this permission notice shall be included in
13 * all copies or substantial portions of the Software.
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.
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
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.
31 ******************************************************************************/
32 /*****************************************************************************/
37 * This file contains basic types for Xilinx software IP.
41 * MODIFICATION HISTORY:
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
49 ******************************************************************************/
51 #ifndef XIL_TYPES_H /* prevent circular inclusions */
52 #define XIL_TYPES_H /* by using protection macros */
55 /************************** Constant Definitions *****************************/
69 #define XIL_COMPONENT_IS_READY 0x11111111 /**< component has been initialized */
70 #define XIL_COMPONENT_IS_STARTED 0x22222222 /**< component has been started */
77 #ifndef XBASIC_TYPES_H
79 * guarded against xbasic_types.h.
81 typedef unsigned char u8;
82 typedef unsigned short u16;
83 typedef unsigned long u32;
93 /*****************************************************************************/
95 * Return the most significant half of the 64 bit data type.
97 * @param x is the 64 bit word.
99 * @return The upper 32 bits of the 64 bit word.
103 ******************************************************************************/
104 #define XUINT64_MSW(x) ((x).Upper)
106 /*****************************************************************************/
108 * Return the least significant half of the 64 bit data type.
110 * @param x is the 64 bit word.
112 * @return The lower 32 bits of the 64 bit word.
116 ******************************************************************************/
117 #define XUINT64_LSW(x) ((x).Lower)
119 #endif /* XBASIC_TYPES_H */
122 * xbasic_types.h does not typedef s* or u64
124 typedef unsigned long long u64;
129 typedef long long s64;
131 #include <linux/types.h>
136 * This data type defines an interrupt handler for a device.
137 * The argument points to the instance of the component
139 typedef void (*XInterruptHandler) (void *InstancePtr);
142 * This data type defines an exception handler for a processor.
143 * The argument points to the instance of the component
145 typedef void (*XExceptionHandler) (void *InstancePtr);
150 /************************** Constant Definitions *****************************/
164 #endif /* end of protection macro */