18c2ecf20Sopenharmony_ci/******************************************************************************
28c2ecf20Sopenharmony_ci * This software may be used and distributed according to the terms of
38c2ecf20Sopenharmony_ci * the GNU General Public License (GPL), incorporated herein by reference.
48c2ecf20Sopenharmony_ci * Drivers based on or derived from this code fall under the GPL and must
58c2ecf20Sopenharmony_ci * retain the authorship, copyright and license notice.  This file is not
68c2ecf20Sopenharmony_ci * a complete program and may only be used when the entire operating
78c2ecf20Sopenharmony_ci * system is licensed under the GPL.
88c2ecf20Sopenharmony_ci * See the file COPYING in this distribution for more information.
98c2ecf20Sopenharmony_ci *
108c2ecf20Sopenharmony_ci * vxge-version.h: Driver for Exar Corp's X3100 Series 10GbE PCIe I/O
118c2ecf20Sopenharmony_ci *                 Virtualized Server Adapter.
128c2ecf20Sopenharmony_ci * Copyright(c) 2002-2010 Exar Corp.
138c2ecf20Sopenharmony_ci ******************************************************************************/
148c2ecf20Sopenharmony_ci#ifndef VXGE_VERSION_H
158c2ecf20Sopenharmony_ci#define VXGE_VERSION_H
168c2ecf20Sopenharmony_ci
178c2ecf20Sopenharmony_ci#define VXGE_VERSION_MAJOR	"2"
188c2ecf20Sopenharmony_ci#define VXGE_VERSION_MINOR	"5"
198c2ecf20Sopenharmony_ci#define VXGE_VERSION_FIX	"3"
208c2ecf20Sopenharmony_ci#define VXGE_VERSION_BUILD	"22640"
218c2ecf20Sopenharmony_ci#define VXGE_VERSION_FOR	"k"
228c2ecf20Sopenharmony_ci
238c2ecf20Sopenharmony_ci#define VXGE_FW_VER(maj, min, bld) (((maj) << 16) + ((min) << 8) + (bld))
248c2ecf20Sopenharmony_ci
258c2ecf20Sopenharmony_ci#define VXGE_DEAD_FW_VER_MAJOR	1
268c2ecf20Sopenharmony_ci#define VXGE_DEAD_FW_VER_MINOR	4
278c2ecf20Sopenharmony_ci#define VXGE_DEAD_FW_VER_BUILD	4
288c2ecf20Sopenharmony_ci
298c2ecf20Sopenharmony_ci#define VXGE_FW_DEAD_VER VXGE_FW_VER(VXGE_DEAD_FW_VER_MAJOR, \
308c2ecf20Sopenharmony_ci				     VXGE_DEAD_FW_VER_MINOR, \
318c2ecf20Sopenharmony_ci				     VXGE_DEAD_FW_VER_BUILD)
328c2ecf20Sopenharmony_ci
338c2ecf20Sopenharmony_ci#define VXGE_EPROM_FW_VER_MAJOR	1
348c2ecf20Sopenharmony_ci#define VXGE_EPROM_FW_VER_MINOR	6
358c2ecf20Sopenharmony_ci#define VXGE_EPROM_FW_VER_BUILD	1
368c2ecf20Sopenharmony_ci
378c2ecf20Sopenharmony_ci#define VXGE_EPROM_FW_VER VXGE_FW_VER(VXGE_EPROM_FW_VER_MAJOR, \
388c2ecf20Sopenharmony_ci				      VXGE_EPROM_FW_VER_MINOR, \
398c2ecf20Sopenharmony_ci				      VXGE_EPROM_FW_VER_BUILD)
408c2ecf20Sopenharmony_ci
418c2ecf20Sopenharmony_ci#define VXGE_CERT_FW_VER_MAJOR	1
428c2ecf20Sopenharmony_ci#define VXGE_CERT_FW_VER_MINOR	8
438c2ecf20Sopenharmony_ci#define VXGE_CERT_FW_VER_BUILD	1
448c2ecf20Sopenharmony_ci
458c2ecf20Sopenharmony_ci#define VXGE_CERT_FW_VER VXGE_FW_VER(VXGE_CERT_FW_VER_MAJOR, \
468c2ecf20Sopenharmony_ci				     VXGE_CERT_FW_VER_MINOR, \
478c2ecf20Sopenharmony_ci				     VXGE_CERT_FW_VER_BUILD)
488c2ecf20Sopenharmony_ci
498c2ecf20Sopenharmony_ci#endif
50