1/* 2 * Copyright (C) 2000, 2001, 2002 Broadcom Corporation 3 * 4 * This program is free software; you can redistribute it and/or 5 * modify it under the terms of the GNU General Public License 6 * as published by the Free Software Foundation; either version 2 7 * of the License, or (at your option) any later version. 8 * 9 * This program is distributed in the hope that it will be useful, 10 * but WITHOUT ANY WARRANTY; without even the implied warranty of 11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 12 * GNU General Public License for more details. 13 * 14 * You should have received a copy of the GNU General Public License 15 * along with this program; if not, write to the Free Software 16 * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. 17 */ 18 19/* 20 * Broadcom Common Firmware Environment (CFE) 21 * 22 * CFE's global error code list is here. 23 * 24 * Author: Mitch Lichtenberg 25 */ 26 27#define CFE_OK 0 28#define CFE_ERR -1 /* generic error */ 29#define CFE_ERR_INV_COMMAND -2 30#define CFE_ERR_EOF -3 31#define CFE_ERR_IOERR -4 32#define CFE_ERR_NOMEM -5 33#define CFE_ERR_DEVNOTFOUND -6 34#define CFE_ERR_DEVOPEN -7 35#define CFE_ERR_INV_PARAM -8 36#define CFE_ERR_ENVNOTFOUND -9 37#define CFE_ERR_ENVREADONLY -10 38 39#define CFE_ERR_NOTELF -11 40#define CFE_ERR_NOT32BIT -12 41#define CFE_ERR_WRONGENDIAN -13 42#define CFE_ERR_BADELFVERS -14 43#define CFE_ERR_NOTMIPS -15 44#define CFE_ERR_BADELFFMT -16 45#define CFE_ERR_BADADDR -17 46 47#define CFE_ERR_FILENOTFOUND -18 48#define CFE_ERR_UNSUPPORTED -19 49 50#define CFE_ERR_HOSTUNKNOWN -20 51 52#define CFE_ERR_TIMEOUT -21 53 54#define CFE_ERR_PROTOCOLERR -22 55 56#define CFE_ERR_NETDOWN -23 57#define CFE_ERR_NONAMESERVER -24 58 59#define CFE_ERR_NOHANDLES -25 60#define CFE_ERR_ALREADYBOUND -26 61 62#define CFE_ERR_CANNOTSET -27 63#define CFE_ERR_NOMORE -28 64#define CFE_ERR_BADFILESYS -29 65#define CFE_ERR_FSNOTAVAIL -30 66 67#define CFE_ERR_INVBOOTBLOCK -31 68#define CFE_ERR_WRONGDEVTYPE -32 69#define CFE_ERR_BBCHECKSUM -33 70#define CFE_ERR_BOOTPROGCHKSUM -34 71 72#define CFE_ERR_LDRNOTAVAIL -35 73 74#define CFE_ERR_NOTREADY -36 75 76#define CFE_ERR_GETMEM -37 77#define CFE_ERR_SETMEM -38 78 79#define CFE_ERR_NOTCONN -39 80#define CFE_ERR_ADDRINUSE -40 81