aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/net/wireless/wl12xx/wl1271_init.h
blob: bd8ff0fa2272006f124b3f584dd8a5a050fd3e05 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
/*
 * This file is part of wl1271
 *
 * Copyright (C) 2009 Nokia Corporation
 *
 * Contact: Luciano Coelho <luciano.coelho@nokia.com>
 *
 * 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 __WL1271_INIT_H__
#define __WL1271_INIT_H__

#include "wl1271.h"

int wl1271_hw_init_power_auth(struct wl1271 *wl);
int wl1271_hw_init(struct wl1271 *wl);

/* These are not really a TEST_CMD, but the ref driver uses them as such */
#define TEST_CMD_INI_FILE_RADIO_PARAM   0x19
#define TEST_CMD_INI_FILE_GENERAL_PARAM 0x1E

struct wl1271_general_parms {
	u8 id;
	u8 padding[3];

	u8 ref_clk;
	u8 settling_time;
	u8 clk_valid_on_wakeup;
	u8 dc2dcmode;
	u8 single_dual_band;

	u8 tx_bip_fem_autodetect;
	u8 tx_bip_fem_manufacturer;
	u8 settings;
} __attribute__ ((packed));

enum ref_clk_enum {
	REF_CLK_19_2_E,
	REF_CLK_26_E,
	REF_CLK_38_4_E,
	REF_CLK_52_E
};

#define RSSI_AND_PROCESS_COMPENSATION_SIZE 15
#define NUMBER_OF_SUB_BANDS_5  7
#define NUMBER_OF_RATE_GROUPS  6
#define NUMBER_OF_CHANNELS_2_4 14
#define NUMBER_OF_CHANNELS_5   35

struct wl1271_radio_parms {
	u8 id;
	u8 padding[3];

	/* Static radio parameters */
	/* 2.4GHz */
	u8 rx_trace_loss;
	u8 tx_trace_loss;
	s8 rx_rssi_and_proc_compens[RSSI_AND_PROCESS_COMPENSATION_SIZE];

	/* 5GHz */
	u8 rx_trace_loss_5[NUMBER_OF_SUB_BANDS_5];
	u8 tx_trace_loss_5[NUMBER_OF_SUB_BANDS_5];
	s8 rx_rssi_and_proc_compens_5[RSSI_AND_PROCESS_COMPENSATION_SIZE];

	/* Dynamic radio parameters */
	/* 2.4GHz */
	s16 tx_ref_pd_voltage;
	s8  tx_ref_power;
	s8  tx_offset_db;

	s8  tx_rate_limits_normal[NUMBER_OF_RATE_GROUPS];
	s8  tx_rate_limits_degraded[NUMBER_OF_RATE_GROUPS];

	s8  tx_channel_limits_11b[NUMBER_OF_CHANNELS_2_4];
	s8  tx_channel_limits_ofdm[NUMBER_OF_CHANNELS_2_4];
	s8  tx_pdv_rate_offsets[NUMBER_OF_RATE_GROUPS];

	u8  tx_ibias[NUMBER_OF_RATE_GROUPS];
	u8  rx_fem_insertion_loss;

	u8 padding2;

	/* 5GHz */
	s16 tx_ref_pd_voltage_5[NUMBER_OF_SUB_BANDS_5];
	s8  tx_ref_power_5[NUMBER_OF_SUB_BANDS_5];
	s8  tx_offset_db_5[NUMBER_OF_SUB_BANDS_5];

	s8  tx_rate_limits_normal_5[NUMBER_OF_RATE_GROUPS];
	s8  tx_rate_limits_degraded_5[NUMBER_OF_RATE_GROUPS];

	s8  tx_channel_limits_ofdm_5[NUMBER_OF_CHANNELS_5];
	s8  tx_pdv_rate_offsets_5[NUMBER_OF_RATE_GROUPS];

	/* FIXME: this is inconsistent with the types for 2.4GHz */
	s8  tx_ibias_5[NUMBER_OF_RATE_GROUPS];
	s8  rx_fem_insertion_loss_5[NUMBER_OF_SUB_BANDS_5];

	u8 padding3[2];
} __attribute__ ((packed));

#endif