v4k.c revision 217770
1
2/*
3 * Copyright (c) 2010-2011 Adrian Chadd, Xenion Pty Ltd.
4 *
5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions
7 * are met:
8 * 1. Redistributions of source code must retain the above copyright
9 *    notice, this list of conditions and the following disclaimer.
10 * 2. Redistributions in binary form must reproduce the above copyright
11 *    notice, this list of conditions and the following disclaimer in the
12 *    documentation and/or other materials provided with the distribution.
13 *
14 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
15 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
16 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
17 * ARE DISCLAIMED.  IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
18 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
19 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
20 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
21 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
22 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
23 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
24 * SUCH DAMAGE.
25 *
26 * $FreeBSD: head/tools/tools/ath/ath_ee_v4k_print/v4k.c 217770 2011-01-24 06:46:03Z adrian $
27 */
28
29#include <stdio.h>
30#include <stdlib.h>
31#include <unistd.h>
32#include <string.h>
33#include <sys/types.h>
34#include <err.h>
35
36typedef enum {
37        AH_FALSE = 0,           /* NB: lots of code assumes false is zero */
38        AH_TRUE  = 1,
39} HAL_BOOL;
40
41typedef enum {
42        HAL_OK          = 0,    /* No error */
43} HAL_STATUS;
44
45struct ath_hal;
46
47#include "ah_eeprom_v4k.h"
48
49void
50eeprom_v4k_base_print(uint16_t *buf)
51{
52	HAL_EEPROM_v4k *eep = (HAL_EEPROM_v4k *) buf;
53	BASE_EEP4K_HEADER *eh = &eep->ee_base.baseEepHeader;
54
55	printf("| Version: 0x%.4x   | Length: 0x%.4x | Checksum: 0x%.4x ",
56	    eh->version, eh->length, eh->checksum);
57	printf("| CapFlags: 0x%.2x  | eepMisc: 0x%.2x | RegDomain: 0x%.2x 0x%.2x | \n",
58	    eh->opCapFlags, eh->eepMisc, eh->regDmn[0], eh->regDmn[1]);
59	printf("| MAC: %.2x:%.2x:%.2x:%.2x:%.2x:%.2x ",
60	    eh->macAddr[0], eh->macAddr[1], eh->macAddr[2],
61	    eh->macAddr[3], eh->macAddr[4], eh->macAddr[5]);
62	printf("| RxMask: 0x%.2x | TxMask: 0x%.2x | RfSilent: 0x%.4x | btOptions: 0x%.4x |\n",
63	    eh->rxMask, eh->txMask, eh->rfSilent, eh->blueToothOptions);
64	printf("| DeviceCap: 0x%.4x | binBuildNumber: %.8x | deviceType: 0x%.2x | txGainType 0x%.2x |\n",
65	    eh->deviceCap, eh->binBuildNumber, eh->deviceType, eh->txGainType);
66}
67
68void
69eeprom_v4k_custdata_print(uint16_t *buf)
70{
71	HAL_EEPROM_v4k *eep = (HAL_EEPROM_v4k *) buf;
72	uint8_t *custdata = (uint8_t *) &eep->ee_base.custData;
73	int i;
74
75	printf("\n| Custdata:                                       |\n");
76	for (i = 0; i < 20; i++) {
77		printf("%s0x%.2x %s",
78		    i % 16 == 0 ? "| " : "",
79		    custdata[i],
80		    i % 16 == 15 ? "|\n" : "");
81	}
82	printf("\n");
83}
84
85void
86eeprom_v4k_modal_print(uint16_t *buf)
87{
88	HAL_EEPROM_v4k *eep = (HAL_EEPROM_v4k *) buf;
89	MODAL_EEP4K_HEADER *mh = &eep->ee_base.modalHeader;
90	int i;
91
92	printf("| antCtrlCommon: 0x%.4x |\n", mh->antCtrlCommon);
93	printf("| switchSettling: 0x%.2x |\n", mh->switchSettling);
94	printf("| adcDesiredSize: %d |\n| pgaDesiredSize: %.2f dBm |\n",
95	    mh->adcDesiredSize, (float) mh->pgaDesiredSize / 2.0);
96
97	printf("| antCtrlChain:        0:0x%.4x |\n", mh->antCtrlChain[0]);
98	printf("| antennaGainCh:       0:0x%.2x |\n", mh->antennaGainCh[0]);
99	printf("| txRxAttenCh:         0:0x%.2x |\n", mh->txRxAttenCh[0]);
100	printf("| rxTxMarginCh:        0:0x%.2x |\n", mh->rxTxMarginCh[0]);
101 	printf("| noiseFloorThresCh:   0:0x%.2x |\n", mh->noiseFloorThreshCh[0]);
102	printf("| xlnaGainCh:          0:0x%.2x |\n", mh->xlnaGainCh[0]);
103	printf("| iqCalICh:            0:0x%.2x |\n", mh->iqCalICh[0]);
104	printf("| iqCalQCh:            0:0x%.2x |\n", mh->iqCalQCh[0]);
105	printf("| bswAtten:            0:0x%.2x |\n", mh->bswAtten[0]);
106	printf("| bswMargin:           0:0x%.2x |\n", mh->bswMargin[0]);
107	printf("| xatten2Db:           0:0x%.2x |\n", mh->xatten2Db[0]);
108	printf("| xatten2Margin:       0:0x%.2x |\n", mh->xatten2Margin[0]);
109
110	printf("| txEndToXpaOff: 0x%.2x | txEndToRxOn: 0x%.2x | txFrameToXpaOn: 0x%.2x |\n",
111	    mh->txEndToXpaOff, mh->txEndToRxOn, mh->txFrameToXpaOn);
112	printf("| thres62: 0x%.2x\n", mh->thresh62);
113	printf("| xpdGain: 0x%.2x | xpd: 0x%.2x |\n", mh->xpdGain, mh->xpd);
114	printf("| xpaBiasLvlFreq: 0:0x%.4x 1:0x%.4x 2:0x%.4x |\n",
115	    mh->xpaBiasLvlFreq[0], mh->xpaBiasLvlFreq[1], mh->xpaBiasLvlFreq[2]);
116	printf("| pdGainOverlap: 0x%.2x | ob: 0x%.2x | db: 0x%.2x | xpaBiasLvl: 0x%.2x |\n",
117	    mh->pdGainOverlap, mh->ob, mh->db, mh->xpaBiasLvl);
118	printf("| txFrameToDataStart: 0x%.2x | txFrameToPaOn: 0x%.2x |\n", mh->txFrameToDataStart, mh->txFrameToPaOn);
119	printf("| ht40PowerIncForPdadc: 0x%.2x |\n", mh->ht40PowerIncForPdadc);
120	printf("| swSettleHt40: 0x%.2x |\n", mh->swSettleHt40);
121	printf("| ob_ch1: 0x%.2x | db_ch1: 0x%.2x |\n", mh->ob_ch1, mh->db_ch1);
122	printf("| flagBits: 0x%.2x | miscBits: 0x%.2x |\n", mh->flagBits, mh->miscBits);
123	printf("| futureModal: 0x%.2x 0x%.2x\n", mh->futureModal[0], mh->futureModal[1]);
124
125	/* and now, spur channels */
126	for (i = 0; i < AR5416_EEPROM_MODAL_SPURS; i++) {
127		printf("| Spur %d: spurChan: 0x%.4x spurRangeLow: 0x%.2x spurRangeHigh: 0x%.2x |\n",
128		    i, mh->spurChans[i].spurChan,
129		    (int) mh->spurChans[i].spurRangeLow,
130		    (int) mh->spurChans[i].spurRangeHigh);
131	}
132}
133
134static void
135eeprom_v4k_print_caldata_perfreq(CAL_DATA_PER_FREQ_4K *f)
136{
137	int i, j;
138
139	for (i = 0; i < AR5416_4K_NUM_PD_GAINS; i++) {
140		printf("    Gain %d: pwr dBm/vpd: ", i);
141		for (j = 0; j < AR5416_PD_GAIN_ICEPTS; j++) {
142			/* These are stored in 0.25dBm increments */
143			/* XXX is this assumption correct for ar9285? */
144			/* XXX shouldn't we care about the power table offset, if there is one? */
145			printf("%d:(%.2f/%d) ", j, (float) f->pwrPdg[i][j] / 4.00,
146			    f->vpdPdg[i][j]);
147		}
148		printf("\n");
149	}
150}
151
152void
153eeprom_v4k_calfreqpiers_print(uint16_t *buf)
154{
155	HAL_EEPROM_v4k *eep = (HAL_EEPROM_v4k *) buf;
156	int i, n;
157
158	/* 2ghz cal piers */
159	printf("calFreqPier2G: ");
160	for (i = 0; i < AR5416_4K_NUM_2G_CAL_PIERS; i++) {
161		printf(" 0x%.2x ", eep->ee_base.calFreqPier2G[i]);
162	}
163	printf("|\n");
164
165	for (i = 0; i < AR5416_4K_NUM_2G_CAL_PIERS; i++) {
166		if (eep->ee_base.calFreqPier2G[i] == 0xff)
167			continue;
168		printf("2Ghz Cal Pier %d\n", i);
169		for (n = 0; n < AR5416_4K_MAX_CHAINS; n++) {
170			printf("  Chain %d:\n", n);
171			eeprom_v4k_print_caldata_perfreq(&eep->ee_base.calPierData2G[n][i]);
172		}
173	}
174
175	printf("\n");
176}
177
178/* XXX these should just reference the v14 print routines */
179static void
180eeprom_v14_target_legacy_print(CAL_TARGET_POWER_LEG *l)
181{
182	int i;
183	if (l->bChannel == 0xff)
184		return;
185	printf("  bChannel: %d;", l->bChannel);
186	for (i = 0; i < 4; i++) {
187		printf(" %.2f", (float) l->tPow2x[i] / 2.0);
188	}
189	printf(" (dBm)\n");
190}
191
192static void
193eeprom_v14_target_ht_print(CAL_TARGET_POWER_HT *l)
194{
195	int i;
196	if (l->bChannel == 0xff)
197		return;
198	printf("  bChannel: %d;", l->bChannel);
199	for (i = 0; i < 8; i++) {
200		printf(" %.2f", (float) l->tPow2x[i] / 2.0);
201	}
202	printf(" (dBm)\n");
203}
204
205void
206eeprom_v4k_print_targets(uint16_t *buf)
207{
208	HAL_EEPROM_v4k *eep = (HAL_EEPROM_v4k *) buf;
209	int i;
210
211	/* 2ghz rates */
212	printf("2Ghz CCK:\n");
213	for (i = 0; i < AR5416_4K_NUM_2G_CCK_TARGET_POWERS; i++) {
214		eeprom_v14_target_legacy_print(&eep->ee_base.calTargetPowerCck[i]);
215	}
216	printf("2Ghz 11g:\n");
217	for (i = 0; i < AR5416_4K_NUM_2G_20_TARGET_POWERS; i++) {
218		eeprom_v14_target_legacy_print(&eep->ee_base.calTargetPower2G[i]);
219	}
220	printf("2Ghz HT20:\n");
221	for (i = 0; i < AR5416_4K_NUM_2G_20_TARGET_POWERS; i++) {
222		eeprom_v14_target_ht_print(&eep->ee_base.calTargetPower2GHT20[i]);
223	}
224	printf("2Ghz HT40:\n");
225	for (i = 0; i < AR5416_4K_NUM_2G_40_TARGET_POWERS; i++) {
226		eeprom_v14_target_ht_print(&eep->ee_base.calTargetPower2GHT40[i]);
227	}
228
229}
230
231static void
232eeprom_v4k_ctl_edge_print(CAL_CTL_DATA_4K *ctl)
233{
234	int i, j;
235	uint8_t pow, flag;
236
237	for (i = 0; i < AR5416_4K_MAX_CHAINS; i++) {
238		printf("  chain %d: ", i);
239		for (j = 0; j < AR5416_4K_NUM_BAND_EDGES; j++) {
240			pow = ctl->ctlEdges[i][j].tPowerFlag & 0x3f;
241			flag = (ctl->ctlEdges[i][j].tPowerFlag & 0xc0) >> 6;
242			printf(" %d:pow=%d,flag=%.2x", j, pow, flag);
243		}
244		printf("\n");
245	}
246}
247
248void
249eeprom_v4k_ctl_print(uint16_t *buf)
250{
251	HAL_EEPROM_v4k *eep = (HAL_EEPROM_v4k *) buf;
252	int i;
253
254	for (i = 0; i < AR5416_4K_NUM_CTLS; i++) {
255		if (eep->ee_base.ctlIndex[i] == 0)
256			continue;
257		printf("| ctlIndex: offset %d, value %d\n", i, eep->ee_base.ctlIndex[i]);
258		eeprom_v4k_ctl_edge_print(&eep->ee_base.ctlData[i]);
259	}
260}
261
262void
263eeprom_v4k_print_edges(uint16_t *buf)
264{
265	HAL_EEPROM_v4k *eep = (HAL_EEPROM_v4k *) buf;
266	int i;
267
268	printf("| eeNumCtls: %d\n", eep->ee_numCtls);
269	for (i = 0; i < NUM_EDGES*eep->ee_numCtls; i++) {
270		/* XXX is flag 8 or 32 bits? */
271		printf("|  edge %2d/%2d: rdEdge: %5d EdgePower: %.2f dBm Flag: 0x%.8x\n",
272			i / NUM_EDGES, i % NUM_EDGES,
273			eep->ee_rdEdgesPower[i].rdEdge,
274			(float) eep->ee_rdEdgesPower[i].twice_rdEdgePower / 2.0,
275			eep->ee_rdEdgesPower[i].flag);
276
277		if (i % NUM_EDGES == (NUM_EDGES -1))
278			printf("|\n");
279	}
280}
281
282void
283eeprom_v4k_print_other(uint16_t *buf)
284{
285	HAL_EEPROM_v4k *eep = (HAL_EEPROM_v4k *) buf;
286	printf("| ee_antennaGainMax: %.2x\n", eep->ee_antennaGainMax);
287}
288