Go to the documentation of this file.
62 #ifndef __iwl_eeprom_parse_h__
63 #define __iwl_eeprom_parse_h__
65 #include <linux/types.h>
66 #include <linux/if_ether.h>
70 #define EEPROM_SKU_CAP_BAND_24GHZ (1 << 4)
71 #define EEPROM_SKU_CAP_BAND_52GHZ (1 << 5)
72 #define EEPROM_SKU_CAP_11N_ENABLE (1 << 6)
73 #define EEPROM_SKU_CAP_AMT_ENABLE (1 << 7)
74 #define EEPROM_SKU_CAP_IPAN_ENABLE (1 << 8)
77 #define EEPROM_RF_CFG_TYPE_MSK(x) (x & 0x3)
78 #define EEPROM_RF_CFG_STEP_MSK(x) ((x >> 2) & 0x3)
79 #define EEPROM_RF_CFG_DASH_MSK(x) ((x >> 4) & 0x3)
80 #define EEPROM_RF_CFG_PNUM_MSK(x) ((x >> 6) & 0x3)
81 #define EEPROM_RF_CFG_TX_ANT_MSK(x) ((x >> 8) & 0xF)
82 #define EEPROM_RF_CFG_RX_ANT_MSK(x) ((x >> 12) & 0xF)