Commit 66252c3a authored by Forest Bond's avatar Forest Bond Committed by Greg Kroah-Hartman

Staging: vt6656: Add includes to drivers/staging/vt6656.

Add includes to drivers/staging/vt6656.  These came from the includes directory
in the upstream source archive.  Trailing whitespace was stripped.  This is
GPL-licensed code.
Signed-off-by: default avatarForest Bond <forest@alittletooquiet.net>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@suse.de>
parent 92b96797
/*
* Copyright (c) 1996, 2003 VIA Networking Technologies, Inc.
* All rights reserved.
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License along
* with this program; if not, write to the Free Software Foundation, Inc.,
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
*
* File: device_cfg.h
*
* Purpose: Driver configuration header
* Author: Lyndon Chen
*
* Date: Dec 9, 2005
*
*/
#ifndef __DEVICE_CONFIG_H
#define __DEVICE_CONFIG_H
#if LINUX_VERSION_CODE < KERNEL_VERSION(2,6,18)
#include <linux/config.h>
#endif
#include <linux/types.h>
#if !defined(__TTYPE_H__)
#include "ttype.h"
#endif
typedef __u8 UINT8, *PUINT8;
typedef __u16 UINT16, *PUINT16;
typedef __u32 UINT32, *PUINT32;
#ifndef VOID
#define VOID void
#endif
#ifndef CONST
#define CONST const
#endif
#ifndef STATIC
#define STATIC static
#endif
#ifndef DEF
#define DEF
#endif
#ifndef IN
#define IN
#endif
#ifndef OUT
#define OUT
#endif
typedef
struct _version {
UINT8 major;
UINT8 minor;
UINT8 build;
} version_t, *pversion_t;
#ifndef FALSE
#define FALSE (0)
#endif
#ifndef TRUE
#define TRUE (!(FALSE))
#endif
#define VID_TABLE_SIZE 64
#define MCAST_TABLE_SIZE 64
#define MCAM_SIZE 32
#define VCAM_SIZE 32
#define TX_QUEUE_NO 8
#define DEVICE_NAME "vntwusb"
#define DEVICE_FULL_DRV_NAM "VIA Networking Wireless LAN USB Driver"
#ifndef MAJOR_VERSION
#define MAJOR_VERSION 1
#endif
#ifndef MINOR_VERSION
#define MINOR_VERSION 13
#endif
#ifndef DEVICE_VERSION
#define DEVICE_VERSION "1.19_12"
#endif
//config file
#include <linux/fs.h>
#include <linux/fcntl.h>
#ifndef CONFIG_PATH
#define CONFIG_PATH "/etc/vntconfiguration.dat"
#endif
//Max: 2378=2312Payload + 30HD +4CRC + 2Padding + 4Len + 8TSF + 4RSR
#define PKT_BUF_SZ 2390
#define MALLOC(x,y) kmalloc((x),(y))
#define FREE(x) kfree((x))
#define MAX_UINTS 8
#define OPTION_DEFAULT { [0 ... MAX_UINTS-1] = -1}
typedef enum _chip_type{
VT3184=1
} CHIP_TYPE, *PCHIP_TYPE;
#ifdef VIAWET_DEBUG
#define ASSERT(x) { \
if (!(x)) { \
printk(KERN_ERR "assertion %s failed: file %s line %d\n", #x,\
__FUNCTION__, __LINE__);\
*(int*) 0=0;\
}\
}
#define DBG_PORT80(value) outb(value, 0x80)
#else
#define ASSERT(x)
#define DBG_PORT80(value)
#endif
#endif
This diff is collapsed.
/*
* Copyright (c) 1996, 2003 VIA Networking Technologies, Inc.
* All rights reserved.
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License along
* with this program; if not, write to the Free Software Foundation, Inc.,
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
*
* File: iowpa.h
*
* Purpose: Handles wpa supplicant ioctl interface
*
* Author: Lyndon Chen
*
* Date: May 8, 2002
*
*/
#ifndef __IOWPA_H__
#define __IOWPA_H__
/*--------------------- Export Definitions -------------------------*/
#define WPA_IE_LEN 64
//WPA related
/*
typedef enum { WPA_ALG_NONE, WPA_ALG_WEP, WPA_ALG_TKIP, WPA_ALG_CCMP } wpa_alg;
typedef enum { CIPHER_NONE, CIPHER_WEP40, CIPHER_TKIP, CIPHER_CCMP,
CIPHER_WEP104 } wpa_cipher;
typedef enum { KEY_MGMT_802_1X, KEY_MGMT_PSK, KEY_MGMT_NONE,
KEY_MGMT_802_1X_NO_WPA, KEY_MGMT_WPA_NONE } wpa_key_mgmt;
*/
enum {
VIAWGET_SET_WPA = 1,
VIAWGET_SET_KEY = 2,
VIAWGET_SET_SCAN = 3,
VIAWGET_GET_SCAN = 4,
VIAWGET_GET_SSID = 5,
VIAWGET_GET_BSSID = 6,
VIAWGET_SET_DROP_UNENCRYPT = 7,
VIAWGET_SET_DEAUTHENTICATE = 8,
VIAWGET_SET_ASSOCIATE = 9,
VIAWGET_SET_DISASSOCIATE= 10
};
enum {
VIAWGET_ASSOC_MSG = 1,
VIAWGET_DISASSOC_MSG = 2,
VIAWGET_PTK_MIC_MSG = 3,
VIAWGET_GTK_MIC_MSG = 4,
VIAWGET_CCKM_ROAM_MSG = 5,
VIAWGET_DEVICECLOSE_MSG = 6
};
#pragma pack(1)
typedef struct viawget_wpa_header {
u8 type;
u16 req_ie_len;
u16 resp_ie_len;
} viawget_wpa_header;
struct viawget_wpa_param {
u32 cmd;
u8 addr[6];
union {
struct {
u8 len;
u8 data[0];
} generic_elem;
struct {
u8 bssid[6];
u8 ssid[32];
u8 ssid_len;
u8 *wpa_ie;
u16 wpa_ie_len;
int pairwise_suite;
int group_suite;
int key_mgmt_suite;
int auth_alg;
int mode;
u8 roam_dbm; //DavidWang
} wpa_associate;
struct {
int alg_name;
u16 key_index;
u16 set_tx;
u8 *seq;
u16 seq_len;
u8 *key;
u16 key_len;
} wpa_key;
struct {
u8 ssid_len;
u8 ssid[32];
} scan_req;
struct {
u16 scan_count;
u8 *buf;
} scan_results;
} u;
};
#pragma pack(1)
struct viawget_scan_result {
u8 bssid[6];
u8 ssid[32];
u16 ssid_len;
u8 wpa_ie[WPA_IE_LEN];
u16 wpa_ie_len;
u8 rsn_ie[WPA_IE_LEN];
u16 rsn_ie_len;
int freq; // MHz
int caps; // e.g. privacy
int qual; // signal quality
int noise;
int level;
int maxrate;
};
/*--------------------- Export Classes ----------------------------*/
/*--------------------- Export Variables --------------------------*/
/*--------------------- Export Types ------------------------------*/
/*--------------------- Export Functions --------------------------*/
#endif //__IOWPA_H__
/*
* File: ttype.h
* Copyright (c) 1996, 2003 VIA Networking Technologies, Inc.
* All rights reserved.
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
......@@ -15,6 +16,8 @@
* with this program; if not, write to the Free Software Foundation, Inc.,
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
*
* File: ttype.h
*
* Purpose: define basic common types and macros
*
* Author: Tevin Chen
......@@ -50,18 +53,20 @@
#define OUT
#endif
//2007-0115-04<Add>by MikeLiu
//2007-0115-05<Add>by MikeLiu
#ifndef TxInSleep
#define TxInSleep
#endif
//DavidWang
//2007-0814-01<Add>by MikeLiu
#ifndef Safe_Close
#define Safe_Close
#endif
//2008-0131-01<Add>by MikeLiu
//2008-0131-02<Add>by MikeLiu
#ifndef Adhoc_STA
#define Adhoc_STA
#endif
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment