cfe_error.h 2.4 KB

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