xref: /freebsd/tools/tools/ath/ath_ee_v4k_print/v4k.c (revision e0c4386e)
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 
27 #include <sys/types.h>
28 
29 #include <err.h>
30 #include <stdio.h>
31 #include <stdlib.h>
32 #include <string.h>
33 #include <unistd.h>
34 
35 typedef enum {
36         AH_FALSE = 0,           /* NB: lots of code assumes false is zero */
37         AH_TRUE  = 1,
38 } HAL_BOOL;
39 
40 typedef enum {
41         HAL_OK          = 0,    /* No error */
42 } HAL_STATUS;
43 
44 struct ath_hal;
45 
46 #include "ah_eeprom_v4k.h"
47 
48 void
49 eeprom_v4k_base_print(uint16_t *buf)
50 {
51 	HAL_EEPROM_v4k *eep = (HAL_EEPROM_v4k *) buf;
52 	BASE_EEP4K_HEADER *eh = &eep->ee_base.baseEepHeader;
53 
54 	printf("| Version: 0x%.4x   | Length: 0x%.4x | Checksum: 0x%.4x ",
55 	    eh->version, eh->length, eh->checksum);
56 	printf("| CapFlags: 0x%.2x  | eepMisc: 0x%.2x | RegDomain: 0x%.4x 0x%.4x | \n",
57 	    eh->opCapFlags, eh->eepMisc, eh->regDmn[0], eh->regDmn[1]);
58 	printf("| MAC: %.2x:%.2x:%.2x:%.2x:%.2x:%.2x ",
59 	    eh->macAddr[0], eh->macAddr[1], eh->macAddr[2],
60 	    eh->macAddr[3], eh->macAddr[4], eh->macAddr[5]);
61 	printf("| RxMask: 0x%.2x | TxMask: 0x%.2x | RfSilent: 0x%.4x | btOptions: 0x%.4x |\n",
62 	    eh->rxMask, eh->txMask, eh->rfSilent, eh->blueToothOptions);
63 	printf("| DeviceCap: 0x%.4x | binBuildNumber: %.8x | deviceType: 0x%.2x | txGainType 0x%.2x |\n",
64 	    eh->deviceCap, eh->binBuildNumber, eh->deviceType, eh->txGainType);
65 }
66 
67 void
68 eeprom_v4k_custdata_print(uint16_t *buf)
69 {
70 	HAL_EEPROM_v4k *eep = (HAL_EEPROM_v4k *) buf;
71 	uint8_t *custdata = (uint8_t *) &eep->ee_base.custData;
72 	int i;
73 
74 	printf("\n| Custdata:                                       |\n");
75 	for (i = 0; i < 20; i++) {
76 		printf("%s0x%.2x %s",
77 		    i % 16 == 0 ? "| " : "",
78 		    custdata[i],
79 		    i % 16 == 15 ? "|\n" : "");
80 	}
81 	printf("\n");
82 }
83 
84 void
85 eeprom_v4k_modal_print(uint16_t *buf)
86 {
87 	HAL_EEPROM_v4k *eep = (HAL_EEPROM_v4k *) buf;
88 	MODAL_EEP4K_HEADER *mh = &eep->ee_base.modalHeader;
89 	int i;
90 
91 	printf("| antCtrlCommon: 0x%.8x |\n", mh->antCtrlCommon);
92 	printf("| switchSettling: 0x%.2x |\n", mh->switchSettling);
93 	printf("| adcDesiredSize: %d |\n| pgaDesiredSize: %.2f dBm |\n",
94 	    mh->adcDesiredSize, (float) mh->pgaDesiredSize / 2.0);
95 
96 	printf("| antCtrlChain:        0:0x%.4x |\n", mh->antCtrlChain[0]);
97 	printf("| antennaGainCh:       0:0x%.2x |\n", mh->antennaGainCh[0]);
98 	printf("| txRxAttenCh:         0:0x%.2x |\n", mh->txRxAttenCh[0]);
99 	printf("| rxTxMarginCh:        0:0x%.2x |\n", mh->rxTxMarginCh[0]);
100  	printf("| noiseFloorThresCh:   0:0x%.2x |\n", mh->noiseFloorThreshCh[0]);
101 	printf("| xlnaGainCh:          0:0x%.2x |\n", mh->xlnaGainCh[0]);
102 	printf("| iqCalICh:            0:0x%.2x |\n", mh->iqCalICh[0]);
103 	printf("| iqCalQCh:            0:0x%.2x |\n", mh->iqCalQCh[0]);
104 	printf("| bswAtten:            0:0x%.2x |\n", mh->bswAtten[0]);
105 	printf("| bswMargin:           0:0x%.2x |\n", mh->bswMargin[0]);
106 	printf("| xatten2Db:           0:0x%.2x |\n", mh->xatten2Db[0]);
107 	printf("| xatten2Margin:       0:0x%.2x |\n", mh->xatten2Margin[0]);
108 
109 	printf("| txEndToXpaOff: 0x%.2x | txEndToRxOn: 0x%.2x | txFrameToXpaOn: 0x%.2x |\n",
110 	    mh->txEndToXpaOff, mh->txEndToRxOn, mh->txFrameToXpaOn);
111 	printf("| thres62: 0x%.2x\n", mh->thresh62);
112 	printf("| xpdGain: 0x%.2x | xpd: 0x%.2x |\n", mh->xpdGain, mh->xpd);
113 
114 	printf("| pdGainOverlap: 0x%.2x xpaBiasLvl: 0x%.2x |\n", mh->pdGainOverlap, mh->xpaBiasLvl);
115 	printf("| txFrameToDataStart: 0x%.2x | txFrameToPaOn: 0x%.2x |\n", mh->txFrameToDataStart, mh->txFrameToPaOn);
116 	printf("| ht40PowerIncForPdadc: 0x%.2x |\n", mh->ht40PowerIncForPdadc);
117 	printf("| swSettleHt40: 0x%.2x |\n", mh->swSettleHt40);
118 
119 	printf("| ob_0: 0x%.2x | ob_1: 0x%.2x | ob_2: 0x%.2x | ob_3: 0x%.2x |\n",
120 	    mh->ob_0, mh->ob_1, mh->ob_2, mh->ob_3);
121 	printf("| db_1_0: 0x%.2x | db_1_1: 0x%.2x | db_1_2: 0x%.2x | db_1_3: 0x%.2x db_1_4: 0x%.2x|\n",
122 	    mh->db1_0, mh->db1_1, mh->db1_2, mh->db1_3, mh->db1_4);
123 	printf("| db_1_0: 0x%.2x | db_1_1: 0x%.2x | db_1_2: 0x%.2x | db_1_3: 0x%.2x db_1_4: 0x%.2x|\n",
124 	    mh->db2_0, mh->db2_1, mh->db2_2, mh->db2_3, mh->db2_4);
125 
126 	printf("| antdiv_ctl1: 0x%.2x antdiv_ctl2: 0x%.2x |\n", mh->antdiv_ctl1, mh->antdiv_ctl2);
127 
128 	printf("| Modal Version: %.2x |\n", mh->version);
129 
130 	printf("| tx_diversity: 0x%.2x |\n", mh->tx_diversity);
131 	printf("| flc_pwr_thresh: 0x%.2x |\n", mh->flc_pwr_thresh);
132 	printf("| bb_scale_smrt_antenna: 0x%.2x |\n", mh->bb_scale_smrt_antenna);
133 	printf("| futureModal: 0x%.2x |\n", mh->futureModal[0]);
134 
135 	/* and now, spur channels */
136 	for (i = 0; i < AR5416_EEPROM_MODAL_SPURS; i++) {
137 		printf("| Spur %d: spurChan: 0x%.4x spurRangeLow: 0x%.2x spurRangeHigh: 0x%.2x |\n",
138 		    i, mh->spurChans[i].spurChan,
139 		    (int) mh->spurChans[i].spurRangeLow,
140 		    (int) mh->spurChans[i].spurRangeHigh);
141 	}
142 }
143 
144 static void
145 eeprom_v4k_print_caldata_perfreq(CAL_DATA_PER_FREQ_4K *f)
146 {
147 	int i, j;
148 
149 	for (i = 0; i < AR5416_4K_NUM_PD_GAINS; i++) {
150 		printf("    Gain %d: pwr dBm/vpd: ", i);
151 		for (j = 0; j < AR5416_PD_GAIN_ICEPTS; j++) {
152 			/* These are stored in 0.25dBm increments */
153 			/* XXX is this assumption correct for ar9285? */
154 			/* XXX shouldn't we care about the power table offset, if there is one? */
155 			printf("%d:(%.2f/%d) ", j, (float) f->pwrPdg[i][j] / 4.00,
156 			    f->vpdPdg[i][j]);
157 		}
158 		printf("\n");
159 	}
160 }
161 
162 void
163 eeprom_v4k_calfreqpiers_print(uint16_t *buf)
164 {
165 	HAL_EEPROM_v4k *eep = (HAL_EEPROM_v4k *) buf;
166 	int i, n;
167 
168 	/* 2ghz cal piers */
169 	printf("calFreqPier2G: ");
170 	for (i = 0; i < AR5416_4K_NUM_2G_CAL_PIERS; i++) {
171 		printf(" 0x%.2x ", eep->ee_base.calFreqPier2G[i]);
172 	}
173 	printf("|\n");
174 
175 	for (i = 0; i < AR5416_4K_NUM_2G_CAL_PIERS; i++) {
176 		if (eep->ee_base.calFreqPier2G[i] == 0xff)
177 			continue;
178 		printf("2Ghz Cal Pier %d\n", i);
179 		for (n = 0; n < AR5416_4K_MAX_CHAINS; n++) {
180 			printf("  Chain %d:\n", n);
181 			eeprom_v4k_print_caldata_perfreq(&eep->ee_base.calPierData2G[n][i]);
182 		}
183 	}
184 
185 	printf("\n");
186 }
187 
188 /* XXX these should just reference the v14 print routines */
189 static void
190 eeprom_v14_target_legacy_print(CAL_TARGET_POWER_LEG *l)
191 {
192 	int i;
193 	if (l->bChannel == 0xff)
194 		return;
195 	printf("  bChannel: %d;", l->bChannel);
196 	for (i = 0; i < 4; i++) {
197 		printf(" %.2f", (float) l->tPow2x[i] / 2.0);
198 	}
199 	printf(" (dBm)\n");
200 }
201 
202 static void
203 eeprom_v14_target_ht_print(CAL_TARGET_POWER_HT *l)
204 {
205 	int i;
206 	if (l->bChannel == 0xff)
207 		return;
208 	printf("  bChannel: %d;", l->bChannel);
209 	for (i = 0; i < 8; i++) {
210 		printf(" %.2f", (float) l->tPow2x[i] / 2.0);
211 	}
212 	printf(" (dBm)\n");
213 }
214 
215 void
216 eeprom_v4k_print_targets(uint16_t *buf)
217 {
218 	HAL_EEPROM_v4k *eep = (HAL_EEPROM_v4k *) buf;
219 	int i;
220 
221 	/* 2ghz rates */
222 	printf("2Ghz CCK:\n");
223 	for (i = 0; i < AR5416_4K_NUM_2G_CCK_TARGET_POWERS; i++) {
224 		eeprom_v14_target_legacy_print(&eep->ee_base.calTargetPowerCck[i]);
225 	}
226 	printf("2Ghz 11g:\n");
227 	for (i = 0; i < AR5416_4K_NUM_2G_20_TARGET_POWERS; i++) {
228 		eeprom_v14_target_legacy_print(&eep->ee_base.calTargetPower2G[i]);
229 	}
230 	printf("2Ghz HT20:\n");
231 	for (i = 0; i < AR5416_4K_NUM_2G_20_TARGET_POWERS; i++) {
232 		eeprom_v14_target_ht_print(&eep->ee_base.calTargetPower2GHT20[i]);
233 	}
234 	printf("2Ghz HT40:\n");
235 	for (i = 0; i < AR5416_4K_NUM_2G_40_TARGET_POWERS; i++) {
236 		eeprom_v14_target_ht_print(&eep->ee_base.calTargetPower2GHT40[i]);
237 	}
238 
239 }
240 
241 static void
242 eeprom_v4k_ctl_edge_print(CAL_CTL_DATA_4K *ctl)
243 {
244 	int i, j;
245 	uint8_t pow, flag;
246 
247 	for (i = 0; i < AR5416_4K_MAX_CHAINS; i++) {
248 		printf("  chain %d: ", i);
249 		for (j = 0; j < AR5416_4K_NUM_BAND_EDGES; j++) {
250 			pow = ctl->ctlEdges[i][j].tPowerFlag & 0x3f;
251 			flag = (ctl->ctlEdges[i][j].tPowerFlag & 0xc0) >> 6;
252 			printf(" %d:pow=%d,flag=%.2x", j, pow, flag);
253 		}
254 		printf("\n");
255 	}
256 }
257 
258 void
259 eeprom_v4k_ctl_print(uint16_t *buf)
260 {
261 	HAL_EEPROM_v4k *eep = (HAL_EEPROM_v4k *) buf;
262 	int i;
263 
264 	for (i = 0; i < AR5416_4K_NUM_CTLS; i++) {
265 		if (eep->ee_base.ctlIndex[i] == 0)
266 			continue;
267 		printf("| ctlIndex: offset %d, value %d\n", i, eep->ee_base.ctlIndex[i]);
268 		eeprom_v4k_ctl_edge_print(&eep->ee_base.ctlData[i]);
269 	}
270 }
271 
272 void
273 eeprom_v4k_print_edges(uint16_t *buf)
274 {
275 	HAL_EEPROM_v4k *eep = (HAL_EEPROM_v4k *) buf;
276 	int i;
277 
278 	printf("| eeNumCtls: %d\n", eep->ee_numCtls);
279 	for (i = 0; i < NUM_EDGES*eep->ee_numCtls; i++) {
280 		/* XXX is flag 8 or 32 bits? */
281 		printf("|  edge %2d/%2d: rdEdge: %5d EdgePower: %.2f dBm Flag: 0x%.8x\n",
282 			i / NUM_EDGES, i % NUM_EDGES,
283 			eep->ee_rdEdgesPower[i].rdEdge,
284 			(float) eep->ee_rdEdgesPower[i].twice_rdEdgePower / 2.0,
285 			eep->ee_rdEdgesPower[i].flag);
286 
287 		if (i % NUM_EDGES == (NUM_EDGES -1))
288 			printf("|\n");
289 	}
290 }
291 
292 void
293 eeprom_v4k_print_other(uint16_t *buf)
294 {
295 	HAL_EEPROM_v4k *eep = (HAL_EEPROM_v4k *) buf;
296 	printf("| ee_antennaGainMax: %.2x\n", eep->ee_antennaGainMax);
297 }
298