You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

vxge_version.h 1.0KB

12345678910111213141516171819202122232425262728293031323334353637383940
  1. /*
  2. * vxge-version.h: iPXE driver for Neterion Inc's X3100 Series 10GbE
  3. * PCIe I/O Virtualized Server Adapter.
  4. *
  5. * Copyright(c) 2002-2010 Neterion Inc.
  6. *
  7. * This software may be used and distributed according to the terms of
  8. * the GNU General Public License (GPL), incorporated herein by
  9. * reference. Drivers based on or derived from this code fall under
  10. * the GPL and must retain the authorship, copyright and license
  11. * notice.
  12. *
  13. */
  14. FILE_LICENCE(GPL2_ONLY);
  15. #ifndef VXGE_VERSION_H
  16. #define VXGE_VERSION_H
  17. /* ipxe vxge driver version fields.
  18. * Note: Each field must be a nibble size
  19. */
  20. #define VXGE_VERSION_MAJOR 3
  21. #define VXGE_VERSION_MINOR 5
  22. #define VXGE_VERSION_FIX 0
  23. #define VXGE_VERSION_BUILD 1
  24. #define VXGE_FW_VER(major, minor, build) \
  25. (((major) << 16) + ((minor) << 8) + (build))
  26. /* Certified FW version. */
  27. #define VXGE_CERT_FW_VER_MAJOR 1
  28. #define VXGE_CERT_FW_VER_MINOR 6
  29. #define VXGE_CERT_FW_VER_BUILD 0
  30. #define VXGE_CERT_FW_VER VXGE_FW_VER(VXGE_CERT_FW_VER_MAJOR, \
  31. VXGE_CERT_FW_VER_MINOR, VXGE_CERT_FW_VER_BUILD)
  32. #endif