1 /* SPDX-License-Identifier: GPL-2.0-only */
3 /* Definitions for RTL8187SE hardware
5 * Copyright 2009 Larry Finger <Larry.Finger@lwfinger.net>
6 * Copyright 2014 Andrea Merello <andrea.merello@gmail.com>
8 * Based on the r8180 and Realtek r8187se drivers, which are:
9 * Copyright 2004-2005 Andrea Merello <andrea.merello@gmail.com>, et al.
11 * Also based on the rtl8187 driver, which is:
12 * Copyright 2007 Michael Wu <flamingice@sourmilk.net>
13 * Copyright 2007 Andrea Merello <andrea.merello@gmail.com>
16 #ifndef RTL8187SE_RTL8225_H
17 #define RTL8187SE_RTL8225_H
19 #define RTL8225SE_ANAPARAM_ON 0xb0054d00
20 #define RTL8225SE_ANAPARAM2_ON 0x000004c6
22 /* all off except PLL */
23 #define RTL8225SE_ANAPARAM_OFF 0xb0054dec
24 /* all on including PLL */
25 #define RTL8225SE_ANAPARAM_OFF2 0xb0054dfc
27 #define RTL8225SE_ANAPARAM2_OFF 0x00ff04c6
29 #define RTL8225SE_ANAPARAM3 0x10
31 enum rtl8187se_power_state
{
37 static inline void rtl8225se_write_phy_ofdm(struct ieee80211_hw
*dev
,
40 rtl8180_write_phy(dev
, addr
, data
);
43 static inline void rtl8225se_write_phy_cck(struct ieee80211_hw
*dev
,
46 rtl8180_write_phy(dev
, addr
, data
| 0x10000);
50 const struct rtl818x_rf_ops
*rtl8187se_detect_rf(struct ieee80211_hw
*);
51 void rtl8225se_rf_stop(struct ieee80211_hw
*dev
);
52 void rtl8225se_rf_set_channel(struct ieee80211_hw
*dev
,
53 struct ieee80211_conf
*conf
);
54 void rtl8225se_rf_conf_erp(struct ieee80211_hw
*dev
,
55 struct ieee80211_bss_conf
*info
);
56 void rtl8225se_rf_init(struct ieee80211_hw
*dev
);
58 #endif /* RTL8187SE_RTL8225_H */