cfe_error.h 2.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980
  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. * Broadcom Common Firmware Environment (CFE)
  20. *
  21. * CFE's global error code list is here.
  22. *
  23. * Author: Mitch Lichtenberg
  24. */
  25. #define CFE_OK 0
  26. #define CFE_ERR -1 /* generic error */
  27. #define CFE_ERR_INV_COMMAND -2
  28. #define CFE_ERR_EOF -3
  29. #define CFE_ERR_IOERR -4
  30. #define CFE_ERR_NOMEM -5
  31. #define CFE_ERR_DEVNOTFOUND -6
  32. #define CFE_ERR_DEVOPEN -7
  33. #define CFE_ERR_INV_PARAM -8
  34. #define CFE_ERR_ENVNOTFOUND -9
  35. #define CFE_ERR_ENVREADONLY -10
  36. #define CFE_ERR_NOTELF -11
  37. #define CFE_ERR_NOT32BIT -12
  38. #define CFE_ERR_WRONGENDIAN -13
  39. #define CFE_ERR_BADELFVERS -14
  40. #define CFE_ERR_NOTMIPS -15
  41. #define CFE_ERR_BADELFFMT -16
  42. #define CFE_ERR_BADADDR -17
  43. #define CFE_ERR_FILENOTFOUND -18
  44. #define CFE_ERR_UNSUPPORTED -19
  45. #define CFE_ERR_HOSTUNKNOWN -20
  46. #define CFE_ERR_TIMEOUT -21
  47. #define CFE_ERR_PROTOCOLERR -22
  48. #define CFE_ERR_NETDOWN -23
  49. #define CFE_ERR_NONAMESERVER -24
  50. #define CFE_ERR_NOHANDLES -25
  51. #define CFE_ERR_ALREADYBOUND -26
  52. #define CFE_ERR_CANNOTSET -27
  53. #define CFE_ERR_NOMORE -28
  54. #define CFE_ERR_BADFILESYS -29
  55. #define CFE_ERR_FSNOTAVAIL -30
  56. #define CFE_ERR_INVBOOTBLOCK -31
  57. #define CFE_ERR_WRONGDEVTYPE -32
  58. #define CFE_ERR_BBCHECKSUM -33
  59. #define CFE_ERR_BOOTPROGCHKSUM -34
  60. #define CFE_ERR_LDRNOTAVAIL -35
  61. #define CFE_ERR_NOTREADY -36
  62. #define CFE_ERR_GETMEM -37
  63. #define CFE_ERR_SETMEM -38
  64. #define CFE_ERR_NOTCONN -39
  65. #define CFE_ERR_ADDRINUSE -40