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 mt76x0_dev;
22 
23 #define MT76X0U_EE_MAX_VER		0x0c
24 #define MT76X0_EEPROM_SIZE		512
25 
26 struct mt76x0_caldata {
27 	s8 rssi_offset[2];
28 	s8 lna_gain;
29 
30 	s16 temp_offset;
31 	u8 freq_offset;
32 };
33 
34 int mt76x0_eeprom_init(struct mt76x0_dev *dev);
35 void mt76x0_read_rx_gain(struct mt76x0_dev *dev);
36 void mt76x0_get_tx_power_per_rate(struct mt76x0_dev *dev);
37 void mt76x0_get_power_info(struct mt76x0_dev *dev, u8 *info);
38 
39 static inline s8 s6_to_s8(u32 val)
40 {
41 	s8 ret = val & GENMASK(5, 0);
42 
43 	if (ret & BIT(5))
44 		ret -= BIT(6);
45 	return ret;
46 }
47 
48 #endif
49