1/**
2 * \addtogroup common
3 */
4/*@{*/
5
6/***************************************************
7 * Header name: gigle_version.h
8 *
9 * Copyright 2010 Gigle Semiconductor as an unpublished work.
10 * All Rights Reserved.
11 *
12 *  The information contained herein is confidential
13 * property of Company. The user, copying, transfer or
14 * disclosure of such information is prohibited except
15 * by express written agreement with Company.
16 *
17 * First written on 18/10/2010 by Toni Homedes
18 *
19 ***************************************************/
20/** \file gigle_version.h
21 *
22 * \brief This contains the version number and description
23 *
24 * Version 0.0.1 - 20/10/2010
25 *       First compilable version
26 *
27 * $Id: gigle_version.h 246063 2011-03-12 06:39:32Z rnuti $
28 ****************************************************/
29
30/* FILE-CSTYLED */
31
32#ifndef VERSION_H_
33#define VERSION_H_
34
35/***************************************************
36 *                 Public Defines Section
37 ***************************************************/
38
39/** \brief Version branch */
40#define VERSION_BRANCH  (6) // WIFI
41
42/** \brief Version major */
43#define VERSION_MAJOR   (2)
44
45/** \brief Version revison */
46#define VERSION_REVISION (0)
47
48/** \brief Version minor */
49#define VERSION_MINOR   (9)
50
51/*************** HW version defines ******************/
52// only the lower 16 bits can be used to identify hw version
53
54//Gigle-WiFi
55#define HWVER_RELEASE_MII_GGL541AC 0x80000701
56#define HWVER_RELEASE_WBROADCOM_A2XMIIHPAV 0x80000703
57
58/************** Release defines ***********************/
59
60#ifdef RELEASE
61  /* */
62#endif
63
64#define RAW_SOCKET_INPUT_IF            "vlan7"
65#define RAW_SOCKET_OUTPUT_IF           "vlan7"
66
67
68//#define PRECONFIGURE_NVRAM_ON_GIGLED
69
70#define FW_VERSION (VERSION_BRANCH << 24 | VERSION_MAJOR << 16 | VERSION_REVISION << 8 | VERSION_MINOR)
71
72#else /*VERSION_H_*/
73#error "Header file __FILE__ has already been included!"
74#endif /*VERSION_H_*/
75
76
77/*@}*/
78