提交 15baf4ff 编写于 作者: M Malcolm Priestley 提交者: Greg Kroah-Hartman

staging: vt6656: srom.h move all macros to device.h

Remove srom.h
Signed-off-by: NMalcolm Priestley <tvboxspy@gmail.com>
Signed-off-by: NGreg Kroah-Hartman <gregkh@linuxfoundation.org>
上级 399db90d
...@@ -40,7 +40,6 @@ ...@@ -40,7 +40,6 @@
#include "mac.h" #include "mac.h"
#include "baseband.h" #include "baseband.h"
#include "rf.h" #include "rf.h"
#include "srom.h"
#include "control.h" #include "control.h"
#include "datarate.h" #include "datarate.h"
#include "rndis.h" #include "rndis.h"
......
...@@ -40,7 +40,6 @@ ...@@ -40,7 +40,6 @@
#include "datarate.h" #include "datarate.h"
#include "card.h" #include "card.h"
#include "baseband.h" #include "baseband.h"
#include "srom.h"
#include "rf.h" #include "rf.h"
/* static int msglevel = MSG_LEVEL_DEBUG; */ /* static int msglevel = MSG_LEVEL_DEBUG; */
......
...@@ -62,7 +62,6 @@ ...@@ -62,7 +62,6 @@
#include "tether.h" #include "tether.h"
#include "wmgr.h" #include "wmgr.h"
#include "wcmd.h" #include "wcmd.h"
#include "srom.h"
#include "rc4.h" #include "rc4.h"
#include "desc.h" #include "desc.h"
#include "key.h" #include "key.h"
...@@ -106,6 +105,41 @@ ...@@ -106,6 +105,41 @@
#define BB_VGA_LEVEL 4 #define BB_VGA_LEVEL 4
#define BB_VGA_CHANGE_THRESHOLD 3 #define BB_VGA_CHANGE_THRESHOLD 3
#define EEP_MAX_CONTEXT_SIZE 256
/* Contents in the EEPROM */
#define EEP_OFS_PAR 0x0
#define EEP_OFS_ANTENNA 0x17
#define EEP_OFS_RADIOCTL 0x18
#define EEP_OFS_RFTYPE 0x1b
#define EEP_OFS_MINCHANNEL 0x1c
#define EEP_OFS_MAXCHANNEL 0x1d
#define EEP_OFS_SIGNATURE 0x1e
#define EEP_OFS_ZONETYPE 0x1f
#define EEP_OFS_RFTABLE 0x20
#define EEP_OFS_PWR_CCK 0x20
#define EEP_OFS_SETPT_CCK 0x21
#define EEP_OFS_PWR_OFDMG 0x23
#define EEP_OFS_CALIB_TX_IQ 0x24
#define EEP_OFS_CALIB_TX_DC 0x25
#define EEP_OFS_CALIB_RX_IQ 0x26
#define EEP_OFS_MAJOR_VER 0x2e
#define EEP_OFS_MINOR_VER 0x2f
#define EEP_OFS_CCK_PWR_TBL 0x30
#define EEP_OFS_OFDM_PWR_TBL 0x40
#define EEP_OFS_OFDMA_PWR_TBL 0x50
/* Bits in EEP_OFS_ANTENNA */
#define EEP_ANTENNA_MAIN 0x1
#define EEP_ANTENNA_AUX 0x2
#define EEP_ANTINV 0x4
/* Bits in EEP_OFS_RADIOCTL */
#define EEP_RADIOCTL_ENABLE 0x80
#ifndef RUN_AT #ifndef RUN_AT
#define RUN_AT(x) (jiffies+(x)) #define RUN_AT(x) (jiffies+(x))
#endif #endif
......
/*
* 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: srom.h
*
* Purpose: Implement functions to access eeprom
*
* Author: Jerry Chen
*
* Date: Jan 29, 2003
*
*/
#ifndef __SROM_H__
#define __SROM_H__
#define EEP_MAX_CONTEXT_SIZE 256
//
// Contents in the EEPROM
//
#define EEP_OFS_PAR 0x00 // physical address
#define EEP_OFS_ANTENNA 0x17
#define EEP_OFS_RADIOCTL 0x18
#define EEP_OFS_RFTYPE 0x1B // for select RF
#define EEP_OFS_MINCHANNEL 0x1C // Min Channel #
#define EEP_OFS_MAXCHANNEL 0x1D // Max Channel #
#define EEP_OFS_SIGNATURE 0x1E //
#define EEP_OFS_ZONETYPE 0x1F //
#define EEP_OFS_RFTABLE 0x20 // RF POWER TABLE
#define EEP_OFS_PWR_CCK 0x20
#define EEP_OFS_SETPT_CCK 0x21
#define EEP_OFS_PWR_OFDMG 0x23
#define EEP_OFS_CALIB_TX_IQ 0x24
#define EEP_OFS_CALIB_TX_DC 0x25
#define EEP_OFS_CALIB_RX_IQ 0x26
#define EEP_OFS_MAJOR_VER 0x2E
#define EEP_OFS_MINOR_VER 0x2F
#define EEP_OFS_CCK_PWR_TBL 0x30
#define EEP_OFS_OFDM_PWR_TBL 0x40
#define EEP_OFS_OFDMA_PWR_TBL 0x50
//
// Bits in EEP_OFS_ANTENNA
//
#define EEP_ANTENNA_MAIN 0x01
#define EEP_ANTENNA_AUX 0x02
#define EEP_ANTINV 0x04
//
// Bits in EEP_OFS_RADIOCTL
//
#define EEP_RADIOCTL_ENABLE 0x80
#endif /* __EEPROM_H__ */
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册