Michael Wu | 605bebe | 2007-05-14 01:41:02 -0400 | [diff] [blame^] | 1 | #ifndef RTL8187_RTL8225_H |
| 2 | #define RTL8187_RTL8225_H |
| 3 | |
| 4 | #define RTL8225_ANAPARAM_ON 0xa0000a59 |
| 5 | #define RTL8225_ANAPARAM2_ON 0x860c7312 |
| 6 | #define RTL8225_ANAPARAM_OFF 0xa00beb59 |
| 7 | #define RTL8225_ANAPARAM2_OFF 0x840dec11 |
| 8 | |
| 9 | void rtl8225_write(struct ieee80211_hw *, u8 addr, u16 data); |
| 10 | u16 rtl8225_read(struct ieee80211_hw *, u8 addr); |
| 11 | |
| 12 | void rtl8225_rf_init(struct ieee80211_hw *); |
| 13 | void rtl8225z2_rf_init(struct ieee80211_hw *); |
| 14 | void rtl8225_rf_stop(struct ieee80211_hw *); |
| 15 | void rtl8225_rf_set_channel(struct ieee80211_hw *, int); |
| 16 | |
| 17 | |
| 18 | static inline void rtl8225_write_phy_ofdm(struct ieee80211_hw *dev, |
| 19 | u8 addr, u32 data) |
| 20 | { |
| 21 | rtl8187_write_phy(dev, addr, data); |
| 22 | } |
| 23 | |
| 24 | static inline void rtl8225_write_phy_cck(struct ieee80211_hw *dev, |
| 25 | u8 addr, u32 data) |
| 26 | { |
| 27 | rtl8187_write_phy(dev, addr, data | 0x10000); |
| 28 | } |
| 29 | |
| 30 | #endif /* RTL8187_RTL8225_H */ |