Update ath_hal from FreeBSD.
[dragonfly.git] / sys / dev / netif / ath / hal / ath_hal / ah_eeprom_v1.h
1 /*
2  * Copyright (c) 2002-2008 Sam Leffler, Errno Consulting
3  * Copyright (c) 2002-2008 Atheros Communications, Inc.
4  *
5  * Permission to use, copy, modify, and/or distribute this software for any
6  * purpose with or without fee is hereby granted, provided that the above
7  * copyright notice and this permission notice appear in all copies.
8  *
9  * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
10  * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
11  * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
12  * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
13  * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
14  * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
15  * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
16  *
17  * $Id: ah_eeprom_v1.h,v 1.1 2008/11/11 02:40:11 sam Exp $
18  * $DragonFly$
19  */
20 #ifndef _ATH_AH_EEPROM_V1_H_
21 #define _ATH_AH_EEPROM_V1_H_
22
23 #include "ah_eeprom.h"
24
25 /*
26  * EEPROM defines for Version 1 Crete EEPROM.
27  *
28  * The EEPROM is segmented into three sections:
29  *
30  *    PCI/Cardbus default configuration settings
31  *    Cardbus CIS tuples and vendor-specific data
32  *    Atheros-specific data
33  *
34  * EEPROM entries are read 32-bits at a time through the PCI bus
35  * interface but are all 16-bit values.
36  *
37  * Access to the Atheros-specific data is controlled by protection
38  * bits and the data is checksum'd.  The driver reads the Atheros
39  * data from the EEPROM at attach and caches it in its private state.
40  * This data includes the local regulatory domain, channel calibration
41  * settings, and phy-related configuration settings.
42  */
43 #define AR_EEPROM_MAC(i)        (0x1f-(i))/* MAC address word */
44 #define AR_EEPROM_MAGIC         0x3d    /* magic number */
45 #define AR_EEPROM_PROTECT       0x3f    /* Atheros segment protect register */
46 #define AR_EEPROM_PROTOTECT_WP_128_191  0x80
47 #define AR_EEPROM_REG_DOMAIN    0xbf    /* Current regulatory domain register */
48 #define AR_EEPROM_ATHEROS_BASE  0xc0    /* Base of Atheros-specific data */
49 #define AR_EEPROM_ATHEROS_MAX   64      /* 64x2=128 bytes of EEPROM settings */
50 #define AR_EEPROM_ATHEROS(n)    (AR_EEPROM_ATHEROS_BASE+(n))
51 #define AR_EEPROM_VERSION       AR_EEPROM_ATHEROS(1)
52 #define AR_EEPROM_ATHEROS_TP_SETTINGS   0x09    /* Transmit power settings */
53 #define AR_REG_DOMAINS_MAX      4       /* # of Regulatory Domains */
54 #define AR_CHANNELS_MAX         5       /* # of Channel calibration groups */
55 #define AR_TP_SETTINGS_SIZE     11      /* # locations/Channel group */
56 #define AR_TP_SCALING_ENTRIES   11      /* # entries in transmit power dBm->pcdac */
57
58 /*
59  * NB: we store the rfsilent select+polarity data packed
60  *     with the encoding used in later parts so values
61  *     returned to applications are consistent.
62  */
63 #define AR_EEPROM_RFSILENT_GPIO_SEL     0x001c
64 #define AR_EEPROM_RFSILENT_GPIO_SEL_S   2
65 #define AR_EEPROM_RFSILENT_POLARITY     0x0002
66 #define AR_EEPROM_RFSILENT_POLARITY_S   1
67
68 #define AR_I2DBM(x)     ((uint8_t)((x * 2) + 3))
69
70 /*
71  * Transmit power and channel calibration settings.
72  */
73 struct tpcMap {
74         uint8_t         pcdac[AR_TP_SCALING_ENTRIES];
75         uint8_t         gainF[AR_TP_SCALING_ENTRIES];
76         uint8_t         rate36;
77         uint8_t         rate48;
78         uint8_t         rate54;
79         uint8_t         regdmn[AR_REG_DOMAINS_MAX];
80 };
81
82 /*
83  * Information retrieved from EEPROM.
84  */
85 typedef struct {
86         uint16_t        ee_version;             /* Version field */
87         uint16_t        ee_protect;             /* EEPROM protect field */
88         uint16_t        ee_antenna;             /* Antenna Settings */
89         uint16_t        ee_biasCurrents;        /* OB, DB */
90         uint8_t         ee_thresh62;            /* thresh62 */
91         uint8_t         ee_xlnaOn;              /* External LNA timing */
92         uint8_t         ee_xpaOff;              /* Extern output stage timing */
93         uint8_t         ee_xpaOn;               /* Extern output stage timing */
94         uint8_t         ee_rfKill;              /* Single low bit signalling if RF Kill is implemented */
95         uint8_t         ee_devType;             /* Type: PCI, miniPCI, CB */
96         uint8_t         ee_regDomain[AR_REG_DOMAINS_MAX];
97                                                 /* calibrated reg domains */
98         struct tpcMap   ee_tpc[AR_CHANNELS_MAX];
99 } HAL_EEPROM_v1;
100 #endif /* _ATH_AH_EEPROM_V1_H_ */