This source file includes following definitions.
- rtl8225se_write_phy_ofdm
- rtl8225se_write_phy_cck
   1 
   2 
   3 
   4 
   5 
   6 
   7 
   8 
   9 
  10 
  11 
  12 
  13 
  14 
  15 
  16 #ifndef RTL8187SE_RTL8225_H
  17 #define RTL8187SE_RTL8225_H
  18 
  19 #define RTL8225SE_ANAPARAM_ON   0xb0054d00
  20 #define RTL8225SE_ANAPARAM2_ON  0x000004c6
  21 
  22 
  23 #define RTL8225SE_ANAPARAM_OFF  0xb0054dec
  24 
  25 #define RTL8225SE_ANAPARAM_OFF2 0xb0054dfc
  26 
  27 #define RTL8225SE_ANAPARAM2_OFF 0x00ff04c6
  28 
  29 #define RTL8225SE_ANAPARAM3     0x10
  30 
  31 enum rtl8187se_power_state {
  32         RTL8187SE_POWER_ON,
  33         RTL8187SE_POWER_OFF,
  34         RTL8187SE_POWER_SLEEP
  35 };
  36 
  37 static inline void rtl8225se_write_phy_ofdm(struct ieee80211_hw *dev,
  38                                           u8 addr, u8 data)
  39 {
  40         rtl8180_write_phy(dev, addr, data);
  41 }
  42 
  43 static inline void rtl8225se_write_phy_cck(struct ieee80211_hw *dev,
  44                                          u8 addr, u8 data)
  45 {
  46         rtl8180_write_phy(dev, addr, data | 0x10000);
  47 }
  48 
  49 
  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);
  57 
  58 #endif