blob: a0b82169dad3c5fdaf45a5caea96e2104abbdfb8 [file] [log] [blame]
Forest Bond66252c32009-06-13 07:38:40 -04001/*
2 * Copyright (c) 1996, 2003 VIA Networking Technologies, Inc.
3 * All rights reserved.
4 *
5 * This program is free software; you can redistribute it and/or modify
6 * it under the terms of the GNU General Public License as published by
7 * the Free Software Foundation; either version 2 of the License, or
8 * (at your option) any later version.
9 *
10 * This program is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 * GNU General Public License for more details.
14 *
15 * You should have received a copy of the GNU General Public License along
16 * with this program; if not, write to the Free Software Foundation, Inc.,
17 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
18 *
19 * File: device_cfg.h
20 *
21 * Purpose: Driver configuration header
22 * Author: Lyndon Chen
23 *
24 * Date: Dec 9, 2005
25 *
26 */
27#ifndef __DEVICE_CONFIG_H
28#define __DEVICE_CONFIG_H
29
Forest Bond66252c32009-06-13 07:38:40 -040030#include <linux/types.h>
31
Forest Bond66252c32009-06-13 07:38:40 -040032#include "ttype.h"
Forest Bond66252c32009-06-13 07:38:40 -040033
34typedef
35struct _version {
Jim Lieb193a8232009-08-12 14:54:06 -070036 unsigned char major;
37 unsigned char minor;
38 unsigned char build;
Forest Bond66252c32009-06-13 07:38:40 -040039} version_t, *pversion_t;
40
41#ifndef FALSE
42#define FALSE (0)
43#endif
44
45#ifndef TRUE
46#define TRUE (!(FALSE))
47#endif
48
49#define VID_TABLE_SIZE 64
50#define MCAST_TABLE_SIZE 64
51#define MCAM_SIZE 32
52#define VCAM_SIZE 32
53#define TX_QUEUE_NO 8
54
Forest Bondf02a8cb2009-06-13 07:38:43 -040055#define DEVICE_NAME "vt6656"
Forest Bond66252c32009-06-13 07:38:40 -040056#define DEVICE_FULL_DRV_NAM "VIA Networking Wireless LAN USB Driver"
57
58#ifndef MAJOR_VERSION
59#define MAJOR_VERSION 1
60#endif
61
62#ifndef MINOR_VERSION
63#define MINOR_VERSION 13
64#endif
65
66#ifndef DEVICE_VERSION
67#define DEVICE_VERSION "1.19_12"
68#endif
69
70//config file
71#include <linux/fs.h>
72#include <linux/fcntl.h>
73#ifndef CONFIG_PATH
74#define CONFIG_PATH "/etc/vntconfiguration.dat"
75#endif
76
77//Max: 2378=2312Payload + 30HD +4CRC + 2Padding + 4Len + 8TSF + 4RSR
78#define PKT_BUF_SZ 2390
79
Forest Bond66252c32009-06-13 07:38:40 -040080#define MAX_UINTS 8
81#define OPTION_DEFAULT { [0 ... MAX_UINTS-1] = -1}
82
Andres Mored9d1ccb2010-05-26 20:00:36 -030083typedef enum _chip_type {
84 VT3184 = 1
Forest Bond66252c32009-06-13 07:38:40 -040085} CHIP_TYPE, *PCHIP_TYPE;
86
Forest Bond66252c32009-06-13 07:38:40 -040087#ifdef VIAWET_DEBUG
88#define ASSERT(x) { \
89 if (!(x)) { \
Andres Mored9d1ccb2010-05-26 20:00:36 -030090 printk(KERN_ERR "assertion %s failed: file %s line %d\n", #x, \
Forest Bond66252c32009-06-13 07:38:40 -040091 __FUNCTION__, __LINE__);\
Andres Mored9d1ccb2010-05-26 20:00:36 -030092 *(int *) 0 = 0; \
93 } \
Forest Bond66252c32009-06-13 07:38:40 -040094}
95#define DBG_PORT80(value) outb(value, 0x80)
96#else
97#define ASSERT(x)
98#define DBG_PORT80(value)
99#endif
100
Forest Bond66252c32009-06-13 07:38:40 -0400101#endif