OpenCores
URL https://opencores.org/ocsvn/mb-jpeg/mb-jpeg/trunk

Subversion Repositories mb-jpeg

[/] [mb-jpeg/] [tags/] [STEP1_1/] [microblaze_0/] [include/] [xstatus.h] - Blame information for rev 66

Details | Compare with Previous | View Log

Line No. Rev Author Line
1 5 quickwayne
/* $Id: xstatus.h,v 1.1 2006-06-23 18:59:00 quickwayne Exp $ */
2
/******************************************************************************
3
*
4
*       XILINX IS PROVIDING THIS DESIGN, CODE, OR INFORMATION "AS IS"
5
*       AS A COURTESY TO YOU, SOLELY FOR USE IN DEVELOPING PROGRAMS AND
6
*       SOLUTIONS FOR XILINX DEVICES.  BY PROVIDING THIS DESIGN, CODE,
7
*       OR INFORMATION AS ONE POSSIBLE IMPLEMENTATION OF THIS FEATURE,
8
*       APPLICATION OR STANDARD, XILINX IS MAKING NO REPRESENTATION
9
*       THAT THIS IMPLEMENTATION IS FREE FROM ANY CLAIMS OF INFRINGEMENT,
10
*       AND YOU ARE RESPONSIBLE FOR OBTAINING ANY RIGHTS YOU MAY REQUIRE
11
*       FOR YOUR IMPLEMENTATION.  XILINX EXPRESSLY DISCLAIMS ANY
12
*       WARRANTY WHATSOEVER WITH RESPECT TO THE ADEQUACY OF THE
13
*       IMPLEMENTATION, INCLUDING BUT NOT LIMITED TO ANY WARRANTIES OR
14
*       REPRESENTATIONS THAT THIS IMPLEMENTATION IS FREE FROM CLAIMS OF
15
*       INFRINGEMENT, IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS
16
*       FOR A PARTICULAR PURPOSE.
17
*
18
*       (c) Copyright 2002 Xilinx Inc.
19
*       All rights reserved.
20
*
21
******************************************************************************/
22
/*****************************************************************************/
23
/**
24
*
25
* @file xstatus.h
26
*
27
* This file contains Xilinx software status codes.  Status codes have their
28
* own data type called XStatus.  These codes are used throughout the Xilinx
29
* device drivers.
30
*
31
******************************************************************************/
32
 
33
#ifndef XSTATUS_H    /* prevent circular inclusions */
34
#define XSTATUS_H    /* by using protection macros */
35
 
36
/***************************** Include Files *********************************/
37
 
38
#include "xbasic_types.h"
39
 
40
/************************** Constant Definitions *****************************/
41
 
42
/*********************** Common statuses 0 - 500 *****************************/
43
 
44
#define XST_SUCCESS                     0L
45
#define XST_FAILURE                     1L
46
#define XST_DEVICE_NOT_FOUND            2L
47
#define XST_DEVICE_BLOCK_NOT_FOUND      3L
48
#define XST_INVALID_VERSION             4L
49
#define XST_DEVICE_IS_STARTED           5L
50
#define XST_DEVICE_IS_STOPPED           6L
51
#define XST_FIFO_ERROR                  7L  /* an error occurred during an
52
                                               operation with a FIFO such as
53
                                               an underrun or overrun, this
54
                                               error requires the device to
55
                                               be reset */
56
#define XST_RESET_ERROR                 8L  /* an error occurred which requires
57
                                               the device to be reset */
58
#define XST_DMA_ERROR                   9L  /* a DMA error occurred, this error
59
                                               typically requires the device
60
                                               using the DMA to be reset */
61
#define XST_NOT_POLLED                  10L /* the device is not configured for
62
                                               polled mode operation */
63
#define XST_FIFO_NO_ROOM                11L /* a FIFO did not have room to put
64
                                               the specified data into */
65
#define XST_BUFFER_TOO_SMALL            12L /* the buffer is not large enough
66
                                               to hold the expected data */
67
#define XST_NO_DATA                     13L /* there was no data available */
68
#define XST_REGISTER_ERROR              14L /* a register did not contain the
69
                                               expected value */
70
#define XST_INVALID_PARAM               15L /* an invalid parameter was passed
71
                                               into the function */
72
#define XST_NOT_SGDMA                   16L /* the device is not configured for
73
                                               scatter-gather DMA operation */
74
#define XST_LOOPBACK_ERROR              17L /* a loopback test failed */
75
#define XST_NO_CALLBACK                 18L /* a callback has not yet been
76
                                               registered */
77
#define XST_NO_FEATURE                  19L /* device is not configured with
78
                                               the requested feature */
79
#define XST_NOT_INTERRUPT               20L /* device is not configured for
80
                                               interrupt mode operation */
81
#define XST_DEVICE_BUSY                 21L /* device is busy */
82
#define XST_ERROR_COUNT_MAX             22L /* the error counters of a device
83
                                               have maxed out */
84
#define XST_IS_STARTED                  23L /* used when part of device is
85
                                               already started i.e.
86
                                               sub channel */
87
#define XST_IS_STOPPED                  24L /* used when part of device is
88
                                               already stopped i.e.
89
                                               sub channel */
90
#define XST_DATA_LOST                   26L /* driver defined error */
91
#define XST_RECV_ERROR                  27L /* generic receive error */
92
#define XST_SEND_ERROR                  28L /* generic transmit error */
93
#define XST_NOT_ENABLED                 29L /* a requested service is not
94
                                               available because it has not
95
                                               been enabled */
96
 
97
/***************** Utility Component statuses 401 - 500  *********************/
98
 
99
#define XST_MEMTEST_FAILED              401L /* memory test failed */
100
 
101
 
102
/***************** Common Components statuses 501 - 1000 *********************/
103
 
104
/********************* Packet Fifo statuses 501 - 510 ************************/
105
 
106
#define XST_PFIFO_LACK_OF_DATA          501L   /* not enough data in FIFO   */
107
#define XST_PFIFO_NO_ROOM               502L   /* not enough room in FIFO   */
108
#define XST_PFIFO_BAD_REG_VALUE         503L   /* self test, a register value
109
                                                  was invalid after reset */
110
#define XST_PFIFO_ERROR                 504L   /* generic packet FIFO error */
111
#define XST_PFIFO_DEADLOCK              505L   /* packet FIFO is reporting
112
                                                * empty and full simultaneously
113
                                                */
114
 
115
/************************** DMA statuses 511 - 530 ***************************/
116
 
117
#define XST_DMA_TRANSFER_ERROR          511L /* self test, DMA transfer
118
                                                failed */
119
#define XST_DMA_RESET_REGISTER_ERROR    512L /* self test, a register value
120
                                                was invalid after reset */
121
#define XST_DMA_SG_LIST_EMPTY           513L /* scatter gather list contains
122
                                                no buffer descriptors ready
123
                                                to be processed */
124
#define XST_DMA_SG_IS_STARTED           514L /* scatter gather not stopped */
125
#define XST_DMA_SG_IS_STOPPED           515L /* scatter gather not running */
126
#define XST_DMA_SG_LIST_FULL            517L /* all the buffer desciptors of
127
                                                the scatter gather list are
128
                                                being used */
129
#define XST_DMA_SG_BD_LOCKED            518L /* the scatter gather buffer
130
                                                descriptor which is to be
131
                                                copied over in the scatter
132
                                                list is locked */
133
#define XST_DMA_SG_NOTHING_TO_COMMIT    519L /* no buffer descriptors have been
134
                                                put into the scatter gather
135
                                                list to be commited */
136
#define XST_DMA_SG_COUNT_EXCEEDED       521L /* the packet count threshold
137
                                                specified was larger than the
138
                                                total # of buffer descriptors
139
                                                in the scatter gather list */
140
#define XST_DMA_SG_LIST_EXISTS          522L /* the scatter gather list has
141
                                                already been created */
142
#define XST_DMA_SG_NO_LIST              523L /* no scatter gather list has
143
                                                been created */
144
#define XST_DMA_SG_BD_NOT_COMMITTED     524L /* the buffer descriptor which was
145
                                                being started was not committed
146
                                                to the list */
147
#define XST_DMA_SG_NO_DATA              525L /* the buffer descriptor to start
148
                                                has already been used by the
149
                                                hardware so it can't be reused
150
                                                */
151
#define XST_DMA_SG_LIST_ERROR           526L /* general purpose list access
152
                                                error */
153
#define XST_DMA_BD_ERROR                527L /* general buffer descriptor
154
                                                error */
155
 
156
/************************** IPIF statuses 531 - 550 ***************************/
157
 
158
#define XST_IPIF_REG_WIDTH_ERROR        531L /* an invalid register width
159
                                                was passed into the function */
160
#define XST_IPIF_RESET_REGISTER_ERROR   532L /* the value of a register at
161
                                                reset was not valid */
162
#define XST_IPIF_DEVICE_STATUS_ERROR    533L /* a write to the device interrupt
163
                                                status register did not read
164
                                                back correctly */
165
#define XST_IPIF_DEVICE_ACK_ERROR       534L /* the device interrupt status
166
                                                register did not reset when
167
                                                acked */
168
#define XST_IPIF_DEVICE_ENABLE_ERROR    535L /* the device interrupt enable
169
                                                register was not updated when
170
                                                other registers changed */
171
#define XST_IPIF_IP_STATUS_ERROR        536L /* a write to the IP interrupt
172
                                                status register did not read
173
                                                back correctly */
174
#define XST_IPIF_IP_ACK_ERROR           537L /* the IP interrupt status register
175
                                                did not reset when acked */
176
#define XST_IPIF_IP_ENABLE_ERROR        538L /* IP interrupt enable register was
177
                                                not updated correctly when other
178
                                                registers changed */
179
#define XST_IPIF_DEVICE_PENDING_ERROR   539L /* The device interrupt pending
180
                                                register did not indicate the
181
                                                expected value */
182
#define XST_IPIF_DEVICE_ID_ERROR        540L /* The device interrupt ID register
183
                                                did not indicate the expected
184
                                                value */
185
#define XST_IPIF_ERROR                  541L /* generic ipif error */
186
 
187
/****************** Device specific statuses 1001 - 4095 *********************/
188
 
189
/********************* Ethernet statuses 1001 - 1050 *************************/
190
 
191
#define XST_EMAC_MEMORY_SIZE_ERROR  1001L /* Memory space is not big enough
192
                                           * to hold the minimum number of
193
                                           * buffers or descriptors */
194
#define XST_EMAC_MEMORY_ALLOC_ERROR 1002L /* Memory allocation failed */
195
#define XST_EMAC_MII_READ_ERROR     1003L /* MII read error */
196
#define XST_EMAC_MII_BUSY           1004L /* An MII operation is in progress */
197
#define XST_EMAC_OUT_OF_BUFFERS     1005L /* Adapter is out of buffers */
198
#define XST_EMAC_PARSE_ERROR        1006L /* Invalid adapter init string */
199
#define XST_EMAC_COLLISION_ERROR    1007L /* Excess deferral or late
200
                                           * collision on polled send */
201
 
202
/*********************** UART statuses 1051 - 1075 ***************************/
203
#define XST_UART
204
 
205
#define XST_UART_INIT_ERROR         1051L
206
#define XST_UART_START_ERROR        1052L
207
#define XST_UART_CONFIG_ERROR       1053L
208
#define XST_UART_TEST_FAIL          1054L
209
#define XST_UART_BAUD_ERROR         1055L
210
#define XST_UART_BAUD_RANGE         1056L
211
 
212
 
213
/************************ IIC statuses 1076 - 1100 ***************************/
214
 
215
#define XST_IIC_SELFTEST_FAILED         1076 /* self test failed            */
216
#define XST_IIC_BUS_BUSY                1077 /* bus found busy              */
217
#define XST_IIC_GENERAL_CALL_ADDRESS    1078 /* mastersend attempted with   */
218
                                             /* general call address        */
219
#define XST_IIC_STAND_REG_RESET_ERROR   1079 /* A non parameterizable reg   */
220
                                             /* value after reset not valid */
221
#define XST_IIC_TX_FIFO_REG_RESET_ERROR 1080 /* Tx fifo included in design  */
222
                                             /* value after reset not valid */
223
#define XST_IIC_RX_FIFO_REG_RESET_ERROR 1081 /* Rx fifo included in design  */
224
                                             /* value after reset not valid */
225
#define XST_IIC_TBA_REG_RESET_ERROR     1082 /* 10 bit addr incl in design  */
226
                                             /* value after reset not valid */
227
#define XST_IIC_CR_READBACK_ERROR       1083 /* Read of the control register*/
228
                                             /* didn't return value written */
229
#define XST_IIC_DTR_READBACK_ERROR      1084 /* Read of the data Tx reg     */
230
                                             /* didn't return value written */
231
#define XST_IIC_DRR_READBACK_ERROR      1085 /* Read of the data Receive reg*/
232
                                             /* didn't return value written */
233
#define XST_IIC_ADR_READBACK_ERROR      1086 /* Read of the data Tx reg     */
234
                                             /* didn't return value written */
235
#define XST_IIC_TBA_READBACK_ERROR      1087 /* Read of the 10 bit addr reg */
236
                                             /* didn't return written value */
237
#define XST_IIC_NOT_SLAVE               1088 /* The device isn't a slave    */
238
 
239
/*********************** ATMC statuses 1101 - 1125 ***************************/
240
 
241
#define XST_ATMC_ERROR_COUNT_MAX    1101L   /* the error counters in the ATM
242
                                               controller hit the max value
243
                                               which requires the statistics
244
                                               to be cleared */
245
 
246
/*********************** Flash statuses 1126 - 1150 **************************/
247
 
248
#define XST_FLASH_BUSY                1126L /* Flash is erasing or programming */
249
#define XST_FLASH_READY               1127L /* Flash is ready for commands */
250
#define XST_FLASH_ERROR               1128L /* Flash had detected an internal
251
                                               error. Use XFlash_DeviceControl
252
                                               to retrieve device specific codes */
253
#define XST_FLASH_ERASE_SUSPENDED     1129L /* Flash is in suspended erase state */
254
#define XST_FLASH_WRITE_SUSPENDED     1130L /* Flash is in suspended write state */
255
#define XST_FLASH_PART_NOT_SUPPORTED  1131L /* Flash type not supported by
256
                                               driver */
257
#define XST_FLASH_NOT_SUPPORTED       1132L /* Operation not supported */
258
#define XST_FLASH_TOO_MANY_REGIONS    1133L /* Too many erase regions */
259
#define XST_FLASH_TIMEOUT_ERROR       1134L /* Programming or erase operation
260
                                               aborted due to a timeout */
261
#define XST_FLASH_ADDRESS_ERROR       1135L /* Accessed flash outside its
262
                                               addressible range */
263
#define XST_FLASH_ALIGNMENT_ERROR     1136L /* Write alignment error */
264
#define XST_FLASH_BLOCKING_CALL_ERROR 1137L /* Couldn't return immediately from
265
                                               write/erase function with
266
                                               XFL_NON_BLOCKING_WRITE/ERASE
267
                                               option cleared */
268
#define XST_FLASH_CFI_QUERY_ERROR     1138L /* Failed to query the device */
269
 
270
/*********************** SPI statuses 1151 - 1175 ****************************/
271
 
272
#define XST_SPI_MODE_FAULT          1151 /* master was selected as slave */
273
#define XST_SPI_TRANSFER_DONE       1152 /* data transfer is complete */
274
#define XST_SPI_TRANSMIT_UNDERRUN   1153 /* slave underruns transmit register */
275
#define XST_SPI_RECEIVE_OVERRUN     1154 /* device overruns receive register */
276
#define XST_SPI_NO_SLAVE            1155 /* no slave has been selected yet */
277
#define XST_SPI_TOO_MANY_SLAVES     1156 /* more than one slave is being
278
                                          * selected */
279
#define XST_SPI_NOT_MASTER          1157 /* operation is valid only as master */
280
#define XST_SPI_SLAVE_ONLY          1158 /* device is configured as slave-only */
281
#define XST_SPI_SLAVE_MODE_FAULT    1159 /* slave was selected while disabled */
282
 
283
/********************** OPB Arbiter statuses 1176 - 1200 *********************/
284
 
285
#define XST_OPBARB_INVALID_PRIORITY  1176 /* the priority registers have either
286
                                           * one master assigned to two or more
287
                                           * priorities, or one master not
288
                                           * assigned to any priority
289
                                           */
290
#define XST_OPBARB_NOT_SUSPENDED     1177 /* an attempt was made to modify the
291
                                           * priority levels without first
292
                                           * suspending the use of priority
293
                                           * levels
294
                                           */
295
#define XST_OPBARB_PARK_NOT_ENABLED  1178 /* bus parking by id was enabled but
296
                                           * bus parking was not enabled
297
                                           */
298
#define XST_OPBARB_NOT_FIXED_PRIORITY 1179 /* the arbiter must be in fixed
299
                                            * priority mode to allow the
300
                                            * priorities to be changed
301
                                            */
302
 
303
/************************ Intc statuses 1201 - 1225 **************************/
304
 
305
#define XST_INTC_FAIL_SELFTEST      1201        /* self test failed */
306
#define XST_INTC_CONNECT_ERROR      1202        /* interrupt already in use */
307
 
308
/********************** TmrCtr statuses 1226 - 1250 **************************/
309
 
310
#define XST_TMRCTR_TIMER_FAILED     1226        /* self test failed */
311
 
312
/********************** WdtTb statuses 1251 - 1275 ***************************/
313
 
314
#define XST_WDTTB_TIMER_FAILED      1251L
315
 
316
/********************** PlbArb statuses 1276 - 1300 **************************/
317
 
318
#define XST_PLBARB_FAIL_SELFTEST    1276L
319
 
320
/********************** Plb2Opb statuses 1301 - 1325 *************************/
321
 
322
#define XST_PLB2OPB_FAIL_SELFTEST   1301L
323
 
324
/********************** Opb2Plb statuses 1326 - 1350 *************************/
325
 
326
#define XST_OPB2PLB_FAIL_SELFTEST   1326L
327
 
328
/********************** SysAce statuses 1351 - 1360 **************************/
329
 
330
#define XST_SYSACE_NO_LOCK          1351L    /* No MPU lock has been granted */
331
 
332
/********************** PCI Bridge statuses 1361 - 1375 **********************/
333
 
334
#define XST_PCI_INVALID_ADDRESS     1361L
335
 
336
/**************************** Type Definitions *******************************/
337
 
338
/**
339
 * The status typedef.
340
 */
341
typedef Xuint32 XStatus;
342
 
343
/***************** Macros (Inline Functions) Definitions *********************/
344
 
345
 
346
/************************** Function Prototypes ******************************/
347
 
348
 
349
#endif              /* end of protection macro */
350
 

powered by: WebSVN 2.1.0

© copyright 1999-2024 OpenCores.org, equivalent to Oliscience, all rights reserved. OpenCores®, registered trademark.