1 /* 2 * Copyright (C) 2014 Felix Fietkau <nbd@openwrt.org> 3 * Copyright (C) 2015 Jakub Kicinski <kubakici@wp.pl> 4 * Copyright (C) 2018 Stanislaw Gruszka <stf_xl@wp.pl> 5 * 6 * This program is free software; you can redistribute it and/or modify 7 * it under the terms of the GNU General Public License version 2 8 * as published by the Free Software Foundation 9 * 10 * This program is distributed in the hope that it will be useful, 11 * but WITHOUT ANY WARRANTY; without even the implied warranty of 12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 13 * GNU General Public License for more details. 14 */ 15 16 #ifndef __MT76X0U_EEPROM_H 17 #define __MT76X0U_EEPROM_H 18 19 #include "../mt76x02_eeprom.h" 20 21 struct mt76x02_dev; 22 23 #define MT76X0U_EE_MAX_VER 0x0c 24 #define MT76X0_EEPROM_SIZE 512 25 26 int mt76x0_eeprom_init(struct mt76x02_dev *dev); 27 void mt76x0_read_rx_gain(struct mt76x02_dev *dev); 28 void mt76x0_get_tx_power_per_rate(struct mt76x02_dev *dev, 29 struct ieee80211_channel *chan, 30 struct mt76_rate_power *t); 31 void mt76x0_get_power_info(struct mt76x02_dev *dev, 32 struct ieee80211_channel *chan, s8 *tp); 33 34 static inline s8 s6_to_s8(u32 val) 35 { 36 s8 ret = val & GENMASK(5, 0); 37 38 if (ret & BIT(5)) 39 ret -= BIT(6); 40 return ret; 41 } 42 43 static inline bool mt76x0_tssi_enabled(struct mt76x02_dev *dev) 44 { 45 return (mt76x02_eeprom_get(dev, MT_EE_NIC_CONF_1) & 46 MT_EE_NIC_CONF_1_TX_ALC_EN); 47 } 48 49 #endif 50