Commit c7cfe38e authored by Chaoming_Li's avatar Chaoming_Li Committed by John W. Linville

rtlwifi: Convert pci routines for addition of rtl8192se and rtl8192de

Convert pci routines for addition of RTL8192SE and RTL8192DE code
These changes allow the upper-level driver to specify the BAR to be
used as it is different for rtl8192se than for the others.
Signed-off-by: default avatarChaoming_Li <chaoming_li@realsil.com.cn>
Signed-off-by: default avatarLarry Finger <Larry.Finger@lwfinger.net>
Signed-off-by: default avatarJohn W. Linville <linville@tuxdriver.com>
parent 0baa0fd7
This diff is collapsed.
...@@ -102,8 +102,8 @@ ...@@ -102,8 +102,8 @@
#define RTL_PCI_8191CE_DID 0x8177 /*8192ce */ #define RTL_PCI_8191CE_DID 0x8177 /*8192ce */
#define RTL_PCI_8188CE_DID 0x8176 /*8192ce */ #define RTL_PCI_8188CE_DID 0x8176 /*8192ce */
#define RTL_PCI_8192CU_DID 0x8191 /*8192ce */ #define RTL_PCI_8192CU_DID 0x8191 /*8192ce */
#define RTL_PCI_8192DE_DID 0x092D /*8192ce */ #define RTL_PCI_8192DE_DID 0x8193 /*8192de */
#define RTL_PCI_8192DU_DID 0x092D /*8192ce */ #define RTL_PCI_8192DE_DID2 0x002B /*92DE*/
/*8192 support 16 pages of IO registers*/ /*8192 support 16 pages of IO registers*/
#define RTL_MEM_MAPPED_IO_RANGE_8190PCI 0x1000 #define RTL_MEM_MAPPED_IO_RANGE_8190PCI 0x1000
...@@ -129,6 +129,11 @@ enum pci_bridge_vendor { ...@@ -129,6 +129,11 @@ enum pci_bridge_vendor {
PCI_BRIDGE_VENDOR_MAX, PCI_BRIDGE_VENDOR_MAX,
}; };
struct rtl_pci_capabilities_header {
u8 capability_id;
u8 next;
};
struct rtl_rx_desc { struct rtl_rx_desc {
u32 dword[8]; u32 dword[8];
} __packed; } __packed;
...@@ -161,7 +166,9 @@ struct rtl_pci { ...@@ -161,7 +166,9 @@ struct rtl_pci {
bool driver_is_goingto_unload; bool driver_is_goingto_unload;
bool up_first_time; bool up_first_time;
bool first_init;
bool being_init_adapter; bool being_init_adapter;
bool init_ready;
bool irq_enabled; bool irq_enabled;
/*Tx */ /*Tx */
...@@ -197,6 +204,9 @@ struct rtl_pci { ...@@ -197,6 +204,9 @@ struct rtl_pci {
/*QOS & EDCA */ /*QOS & EDCA */
enum acm_method acm_method; enum acm_method acm_method;
u16 shortretry_limit;
u16 longretry_limit;
}; };
struct mp_adapter { struct mp_adapter {
...@@ -227,6 +237,7 @@ struct rtl_pci_priv { ...@@ -227,6 +237,7 @@ struct rtl_pci_priv {
struct rtl_pci dev; struct rtl_pci dev;
struct mp_adapter ndis_adapter; struct mp_adapter ndis_adapter;
struct rtl_led_ctl ledctl; struct rtl_led_ctl ledctl;
struct bt_coexist_info bt_coexist;
}; };
#define rtl_pcipriv(hw) (((struct rtl_pci_priv *)(rtl_priv(hw))->priv)) #define rtl_pcipriv(hw) (((struct rtl_pci_priv *)(rtl_priv(hw))->priv))
......
...@@ -428,6 +428,10 @@ void rtl_swlps_rf_awake(struct ieee80211_hw *hw) ...@@ -428,6 +428,10 @@ void rtl_swlps_rf_awake(struct ieee80211_hw *hw)
{ {
} }
void rtl_swlps_beacon(struct ieee80211_hw *hw, void *data, unsigned int len)
{
}
/*Enter the leisure power save mode.*/ /*Enter the leisure power save mode.*/
void rtl_lps_enter(struct ieee80211_hw *hw) void rtl_lps_enter(struct ieee80211_hw *hw)
{ {
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment