2011-12-05 22:51:10 +08:00
|
|
|
/*
|
|
|
|
* This file is part of wl12xx
|
|
|
|
*
|
|
|
|
* Copyright (C) 2011 Texas Instruments Inc.
|
|
|
|
*
|
|
|
|
* This program is free software; you can redistribute it and/or
|
|
|
|
* modify it under the terms of the GNU General Public License
|
|
|
|
* version 2 as published by the Free Software Foundation.
|
|
|
|
*
|
|
|
|
* 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 St, Fifth Floor, Boston, MA
|
|
|
|
* 02110-1301 USA
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef __WL12XX_PRIV_H__
|
|
|
|
#define __WL12XX_PRIV_H__
|
|
|
|
|
|
|
|
#include "conf.h"
|
|
|
|
|
2012-11-27 21:51:56 +08:00
|
|
|
/* WiLink 6/7 chip IDs */
|
|
|
|
#define CHIP_ID_127X_PG10 (0x04030101)
|
|
|
|
#define CHIP_ID_127X_PG20 (0x04030111)
|
|
|
|
#define CHIP_ID_128X_PG10 (0x05030101)
|
|
|
|
#define CHIP_ID_128X_PG20 (0x05030111)
|
|
|
|
|
2012-11-27 21:52:00 +08:00
|
|
|
/* FW chip version for wl127x */
|
2012-06-25 22:46:40 +08:00
|
|
|
#define WL127X_CHIP_VER 6
|
2012-11-27 21:52:00 +08:00
|
|
|
/* minimum single-role FW version for wl127x */
|
|
|
|
#define WL127X_IFTYPE_SR_VER 3
|
|
|
|
#define WL127X_MAJOR_SR_VER 10
|
|
|
|
#define WL127X_SUBTYPE_SR_VER WLCORE_FW_VER_IGNORE
|
2013-05-10 15:44:25 +08:00
|
|
|
#define WL127X_MINOR_SR_VER 133
|
2012-11-27 21:52:00 +08:00
|
|
|
/* minimum multi-role FW version for wl127x */
|
|
|
|
#define WL127X_IFTYPE_MR_VER 5
|
|
|
|
#define WL127X_MAJOR_MR_VER 7
|
|
|
|
#define WL127X_SUBTYPE_MR_VER WLCORE_FW_VER_IGNORE
|
2013-05-10 15:19:38 +08:00
|
|
|
#define WL127X_MINOR_MR_VER 42
|
2012-06-25 22:46:40 +08:00
|
|
|
|
2012-11-27 21:52:00 +08:00
|
|
|
/* FW chip version for wl128x */
|
2012-06-25 22:46:40 +08:00
|
|
|
#define WL128X_CHIP_VER 7
|
2012-11-27 21:52:00 +08:00
|
|
|
/* minimum single-role FW version for wl128x */
|
|
|
|
#define WL128X_IFTYPE_SR_VER 3
|
|
|
|
#define WL128X_MAJOR_SR_VER 10
|
|
|
|
#define WL128X_SUBTYPE_SR_VER WLCORE_FW_VER_IGNORE
|
2013-05-10 15:44:25 +08:00
|
|
|
#define WL128X_MINOR_SR_VER 133
|
2012-11-27 21:52:00 +08:00
|
|
|
/* minimum multi-role FW version for wl128x */
|
|
|
|
#define WL128X_IFTYPE_MR_VER 5
|
|
|
|
#define WL128X_MAJOR_MR_VER 7
|
|
|
|
#define WL128X_SUBTYPE_MR_VER WLCORE_FW_VER_IGNORE
|
|
|
|
#define WL128X_MINOR_MR_VER 42
|
2012-06-25 22:46:40 +08:00
|
|
|
|
2012-07-29 23:21:12 +08:00
|
|
|
#define WL12XX_AGGR_BUFFER_SIZE (4 * PAGE_SIZE)
|
|
|
|
|
2012-07-31 19:48:46 +08:00
|
|
|
#define WL12XX_NUM_TX_DESCRIPTORS 16
|
|
|
|
#define WL12XX_NUM_RX_DESCRIPTORS 8
|
|
|
|
|
2012-08-03 01:37:21 +08:00
|
|
|
#define WL12XX_NUM_MAC_ADDRESSES 2
|
|
|
|
|
2013-03-12 23:19:35 +08:00
|
|
|
#define WL12XX_RX_BA_MAX_SESSIONS 3
|
|
|
|
|
2012-05-10 17:13:45 +08:00
|
|
|
struct wl127x_rx_mem_pool_addr {
|
|
|
|
u32 addr;
|
|
|
|
u32 addr_extra;
|
|
|
|
};
|
|
|
|
|
2011-12-05 22:51:10 +08:00
|
|
|
struct wl12xx_priv {
|
|
|
|
struct wl12xx_priv_conf conf;
|
2012-05-10 17:13:43 +08:00
|
|
|
|
|
|
|
int ref_clock;
|
|
|
|
int tcxo_clock;
|
2012-11-28 17:42:49 +08:00
|
|
|
|
|
|
|
struct wl127x_rx_mem_pool_addr *rx_mem_addr;
|
2011-12-05 22:51:10 +08:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif /* __WL12XX_PRIV_H__ */
|