Loading...
1/******************************************************************************
2 *
3 * Copyright(c) 2009-2010 Realtek Corporation.
4 *
5 * This program is free software; you can redistribute it and/or modify it
6 * under the terms of version 2 of the GNU General Public License as
7 * published by the Free Software Foundation.
8 *
9 * This program is distributed in the hope that it will be useful, but WITHOUT
10 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
11 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
12 * more details.
13 *
14 * You should have received a copy of the GNU General Public License along with
15 * this program; if not, write to the Free Software Foundation, Inc.,
16 * 51 Franklin Street, Fifth Floor, Boston, MA 02110, USA
17 *
18 * The full GNU General Public License is included in this distribution in the
19 * file called LICENSE.
20 *
21 * Contact Information:
22 * wlanfae <wlanfae@realtek.com>
23 * Realtek Corporation, No. 2, Innovation Road II, Hsinchu Science Park,
24 * Hsinchu 300, Taiwan.
25 *
26 * Larry Finger <Larry.Finger@lwfinger.net>
27 *
28 *****************************************************************************/
29
30#ifndef __RTL_PCI_H__
31#define __RTL_PCI_H__
32
33#include <linux/pci.h>
34/*
351: MSDU packet queue,
362: Rx Command Queue
37*/
38#define RTL_PCI_RX_MPDU_QUEUE 0
39#define RTL_PCI_RX_CMD_QUEUE 1
40#define RTL_PCI_MAX_RX_QUEUE 2
41
42#define RTL_PCI_MAX_RX_COUNT 64
43#define RTL_PCI_MAX_TX_QUEUE_COUNT 9
44
45#define RT_TXDESC_NUM 128
46#define RT_TXDESC_NUM_BE_QUEUE 256
47
48#define BK_QUEUE 0
49#define BE_QUEUE 1
50#define VI_QUEUE 2
51#define VO_QUEUE 3
52#define BEACON_QUEUE 4
53#define TXCMD_QUEUE 5
54#define MGNT_QUEUE 6
55#define HIGH_QUEUE 7
56#define HCCA_QUEUE 8
57
58#define RTL_PCI_DEVICE(vend, dev, cfg) \
59 .vendor = (vend), \
60 .device = (dev), \
61 .subvendor = PCI_ANY_ID, \
62 .subdevice = PCI_ANY_ID,\
63 .driver_data = (kernel_ulong_t)&(cfg)
64
65#define PCI_MAX_BRIDGE_NUMBER 255
66#define PCI_MAX_DEVICES 32
67#define PCI_MAX_FUNCTION 8
68
69#define PCI_CONF_ADDRESS 0x0CF8 /*PCI Configuration Space Address */
70#define PCI_CONF_DATA 0x0CFC /*PCI Configuration Space Data */
71
72#define U1DONTCARE 0xFF
73#define U2DONTCARE 0xFFFF
74#define U4DONTCARE 0xFFFFFFFF
75
76#define RTL_PCI_8192_DID 0x8192 /*8192 PCI-E */
77#define RTL_PCI_8192SE_DID 0x8192 /*8192 SE */
78#define RTL_PCI_8174_DID 0x8174 /*8192 SE */
79#define RTL_PCI_8173_DID 0x8173 /*8191 SE Crab */
80#define RTL_PCI_8172_DID 0x8172 /*8191 SE RE */
81#define RTL_PCI_8171_DID 0x8171 /*8191 SE Unicron */
82#define RTL_PCI_0045_DID 0x0045 /*8190 PCI for Ceraga */
83#define RTL_PCI_0046_DID 0x0046 /*8190 Cardbus for Ceraga */
84#define RTL_PCI_0044_DID 0x0044 /*8192e PCIE for Ceraga */
85#define RTL_PCI_0047_DID 0x0047 /*8192e Express Card for Ceraga */
86#define RTL_PCI_700F_DID 0x700F
87#define RTL_PCI_701F_DID 0x701F
88#define RTL_PCI_DLINK_DID 0x3304
89#define RTL_PCI_8192CET_DID 0x8191 /*8192ce */
90#define RTL_PCI_8192CE_DID 0x8178 /*8192ce */
91#define RTL_PCI_8191CE_DID 0x8177 /*8192ce */
92#define RTL_PCI_8188CE_DID 0x8176 /*8192ce */
93#define RTL_PCI_8192CU_DID 0x8191 /*8192ce */
94#define RTL_PCI_8192DE_DID 0x8193 /*8192de */
95#define RTL_PCI_8192DE_DID2 0x002B /*92DE*/
96
97/*8192 support 16 pages of IO registers*/
98#define RTL_MEM_MAPPED_IO_RANGE_8190PCI 0x1000
99#define RTL_MEM_MAPPED_IO_RANGE_8192PCIE 0x4000
100#define RTL_MEM_MAPPED_IO_RANGE_8192SE 0x4000
101#define RTL_MEM_MAPPED_IO_RANGE_8192CE 0x4000
102#define RTL_MEM_MAPPED_IO_RANGE_8192DE 0x4000
103
104#define RTL_PCI_REVISION_ID_8190PCI 0x00
105#define RTL_PCI_REVISION_ID_8192PCIE 0x01
106#define RTL_PCI_REVISION_ID_8192SE 0x10
107#define RTL_PCI_REVISION_ID_8192CE 0x1
108#define RTL_PCI_REVISION_ID_8192DE 0x0
109
110#define RTL_DEFAULT_HARDWARE_TYPE HARDWARE_TYPE_RTL8192CE
111
112enum pci_bridge_vendor {
113 PCI_BRIDGE_VENDOR_INTEL = 0x0, /*0b'0000,0001 */
114 PCI_BRIDGE_VENDOR_ATI, /*0b'0000,0010*/
115 PCI_BRIDGE_VENDOR_AMD, /*0b'0000,0100*/
116 PCI_BRIDGE_VENDOR_SIS, /*0b'0000,1000*/
117 PCI_BRIDGE_VENDOR_UNKNOWN, /*0b'0100,0000*/
118 PCI_BRIDGE_VENDOR_MAX,
119};
120
121struct rtl_pci_capabilities_header {
122 u8 capability_id;
123 u8 next;
124};
125
126struct rtl_rx_desc {
127 u32 dword[8];
128} __packed;
129
130struct rtl_tx_desc {
131 u32 dword[16];
132} __packed;
133
134struct rtl_tx_cmd_desc {
135 u32 dword[16];
136} __packed;
137
138struct rtl8192_tx_ring {
139 struct rtl_tx_desc *desc;
140 dma_addr_t dma;
141 unsigned int idx;
142 unsigned int entries;
143 struct sk_buff_head queue;
144};
145
146struct rtl8192_rx_ring {
147 struct rtl_rx_desc *desc;
148 dma_addr_t dma;
149 unsigned int idx;
150 struct sk_buff *rx_buf[RTL_PCI_MAX_RX_COUNT];
151};
152
153struct rtl_pci {
154 struct pci_dev *pdev;
155
156 bool driver_is_goingto_unload;
157 bool up_first_time;
158 bool first_init;
159 bool being_init_adapter;
160 bool init_ready;
161
162 /*Tx */
163 struct rtl8192_tx_ring tx_ring[RTL_PCI_MAX_TX_QUEUE_COUNT];
164 int txringcount[RTL_PCI_MAX_TX_QUEUE_COUNT];
165 u32 transmit_config;
166
167 /*Rx */
168 struct rtl8192_rx_ring rx_ring[RTL_PCI_MAX_RX_QUEUE];
169 int rxringcount;
170 u16 rxbuffersize;
171 u32 receive_config;
172
173 /*irq */
174 u8 irq_alloc;
175 u32 irq_mask[2];
176
177 /*Bcn control register setting */
178 u32 reg_bcn_ctrl_val;
179
180 /*ASPM*/ u8 const_pci_aspm;
181 u8 const_amdpci_aspm;
182 u8 const_hwsw_rfoff_d3;
183 u8 const_support_pciaspm;
184 /*pci-e bridge */
185 u8 const_hostpci_aspm_setting;
186 /*pci-e device */
187 u8 const_devicepci_aspm_setting;
188 /*If it supports ASPM, Offset[560h] = 0x40,
189 otherwise Offset[560h] = 0x00. */
190 bool support_aspm;
191 bool support_backdoor;
192
193 /*QOS & EDCA */
194 enum acm_method acm_method;
195
196 u16 shortretry_limit;
197 u16 longretry_limit;
198};
199
200struct mp_adapter {
201 u8 linkctrl_reg;
202
203 u8 busnumber;
204 u8 devnumber;
205 u8 funcnumber;
206
207 u8 pcibridge_busnum;
208 u8 pcibridge_devnum;
209 u8 pcibridge_funcnum;
210
211 u8 pcibridge_vendor;
212 u16 pcibridge_vendorid;
213 u16 pcibridge_deviceid;
214
215 u32 pcicfg_addrport;
216 u8 num4bytes;
217
218 u8 pcibridge_pciehdr_offset;
219 u8 pcibridge_linkctrlreg;
220
221 bool amd_l1_patch;
222};
223
224struct rtl_pci_priv {
225 struct rtl_pci dev;
226 struct mp_adapter ndis_adapter;
227 struct rtl_led_ctl ledctl;
228 struct bt_coexist_info bt_coexist;
229};
230
231#define rtl_pcipriv(hw) (((struct rtl_pci_priv *)(rtl_priv(hw))->priv))
232#define rtl_pcidev(pcipriv) (&((pcipriv)->dev))
233
234int rtl_pci_reset_trx_ring(struct ieee80211_hw *hw);
235
236extern struct rtl_intf_ops rtl_pci_ops;
237
238int __devinit rtl_pci_probe(struct pci_dev *pdev,
239 const struct pci_device_id *id);
240void rtl_pci_disconnect(struct pci_dev *pdev);
241int rtl_pci_suspend(struct pci_dev *pdev, pm_message_t state);
242int rtl_pci_resume(struct pci_dev *pdev);
243
244static inline u8 pci_read8_sync(struct rtl_priv *rtlpriv, u32 addr)
245{
246 return readb((u8 __iomem *) rtlpriv->io.pci_mem_start + addr);
247}
248
249static inline u16 pci_read16_sync(struct rtl_priv *rtlpriv, u32 addr)
250{
251 return readw((u8 __iomem *) rtlpriv->io.pci_mem_start + addr);
252}
253
254static inline u32 pci_read32_sync(struct rtl_priv *rtlpriv, u32 addr)
255{
256 return readl((u8 __iomem *) rtlpriv->io.pci_mem_start + addr);
257}
258
259static inline void pci_write8_async(struct rtl_priv *rtlpriv, u32 addr, u8 val)
260{
261 writeb(val, (u8 __iomem *) rtlpriv->io.pci_mem_start + addr);
262}
263
264static inline void pci_write16_async(struct rtl_priv *rtlpriv,
265 u32 addr, u16 val)
266{
267 writew(val, (u8 __iomem *) rtlpriv->io.pci_mem_start + addr);
268}
269
270static inline void pci_write32_async(struct rtl_priv *rtlpriv,
271 u32 addr, u32 val)
272{
273 writel(val, (u8 __iomem *) rtlpriv->io.pci_mem_start + addr);
274}
275
276static inline void rtl_pci_raw_write_port_ulong(u32 port, u32 val)
277{
278 outl(val, port);
279}
280
281static inline void rtl_pci_raw_write_port_uchar(u32 port, u8 val)
282{
283 outb(val, port);
284}
285
286static inline void rtl_pci_raw_read_port_uchar(u32 port, u8 *pval)
287{
288 *pval = inb(port);
289}
290
291static inline void rtl_pci_raw_read_port_ushort(u32 port, u16 *pval)
292{
293 *pval = inw(port);
294}
295
296static inline void rtl_pci_raw_read_port_ulong(u32 port, u32 *pval)
297{
298 *pval = inl(port);
299}
300
301#endif
1/******************************************************************************
2 *
3 * Copyright(c) 2009-2012 Realtek Corporation.
4 *
5 * This program is free software; you can redistribute it and/or modify it
6 * under the terms of version 2 of the GNU General Public License as
7 * published by the Free Software Foundation.
8 *
9 * This program is distributed in the hope that it will be useful, but WITHOUT
10 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
11 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
12 * more details.
13 *
14 * You should have received a copy of the GNU General Public License along with
15 * this program; if not, write to the Free Software Foundation, Inc.,
16 * 51 Franklin Street, Fifth Floor, Boston, MA 02110, USA
17 *
18 * The full GNU General Public License is included in this distribution in the
19 * file called LICENSE.
20 *
21 * Contact Information:
22 * wlanfae <wlanfae@realtek.com>
23 * Realtek Corporation, No. 2, Innovation Road II, Hsinchu Science Park,
24 * Hsinchu 300, Taiwan.
25 *
26 * Larry Finger <Larry.Finger@lwfinger.net>
27 *
28 *****************************************************************************/
29
30#ifndef __RTL_PCI_H__
31#define __RTL_PCI_H__
32
33#include <linux/pci.h>
34/*
351: MSDU packet queue,
362: Rx Command Queue
37*/
38#define RTL_PCI_RX_MPDU_QUEUE 0
39#define RTL_PCI_RX_CMD_QUEUE 1
40#define RTL_PCI_MAX_RX_QUEUE 2
41
42#define RTL_PCI_MAX_RX_COUNT 64
43#define RTL_PCI_MAX_TX_QUEUE_COUNT 9
44
45#define RT_TXDESC_NUM 128
46#define RT_TXDESC_NUM_BE_QUEUE 256
47
48#define BK_QUEUE 0
49#define BE_QUEUE 1
50#define VI_QUEUE 2
51#define VO_QUEUE 3
52#define BEACON_QUEUE 4
53#define TXCMD_QUEUE 5
54#define MGNT_QUEUE 6
55#define HIGH_QUEUE 7
56#define HCCA_QUEUE 8
57
58#define RTL_PCI_DEVICE(vend, dev, cfg) \
59 .vendor = (vend), \
60 .device = (dev), \
61 .subvendor = PCI_ANY_ID, \
62 .subdevice = PCI_ANY_ID,\
63 .driver_data = (kernel_ulong_t)&(cfg)
64
65#define PCI_MAX_BRIDGE_NUMBER 255
66#define PCI_MAX_DEVICES 32
67#define PCI_MAX_FUNCTION 8
68
69#define PCI_CONF_ADDRESS 0x0CF8 /*PCI Configuration Space Address */
70#define PCI_CONF_DATA 0x0CFC /*PCI Configuration Space Data */
71
72#define U1DONTCARE 0xFF
73#define U2DONTCARE 0xFFFF
74#define U4DONTCARE 0xFFFFFFFF
75
76#define RTL_PCI_8192_DID 0x8192 /*8192 PCI-E */
77#define RTL_PCI_8192SE_DID 0x8192 /*8192 SE */
78#define RTL_PCI_8174_DID 0x8174 /*8192 SE */
79#define RTL_PCI_8173_DID 0x8173 /*8191 SE Crab */
80#define RTL_PCI_8172_DID 0x8172 /*8191 SE RE */
81#define RTL_PCI_8171_DID 0x8171 /*8191 SE Unicron */
82#define RTL_PCI_8723AE_DID 0x8723 /*8723AE */
83#define RTL_PCI_0045_DID 0x0045 /*8190 PCI for Ceraga */
84#define RTL_PCI_0046_DID 0x0046 /*8190 Cardbus for Ceraga */
85#define RTL_PCI_0044_DID 0x0044 /*8192e PCIE for Ceraga */
86#define RTL_PCI_0047_DID 0x0047 /*8192e Express Card for Ceraga */
87#define RTL_PCI_700F_DID 0x700F
88#define RTL_PCI_701F_DID 0x701F
89#define RTL_PCI_DLINK_DID 0x3304
90#define RTL_PCI_8192CET_DID 0x8191 /*8192ce */
91#define RTL_PCI_8192CE_DID 0x8178 /*8192ce */
92#define RTL_PCI_8191CE_DID 0x8177 /*8192ce */
93#define RTL_PCI_8188CE_DID 0x8176 /*8192ce */
94#define RTL_PCI_8192CU_DID 0x8191 /*8192ce */
95#define RTL_PCI_8192DE_DID 0x8193 /*8192de */
96#define RTL_PCI_8192DE_DID2 0x002B /*92DE*/
97#define RTL_PCI_8188EE_DID 0x8179 /*8188ee*/
98
99/*8192 support 16 pages of IO registers*/
100#define RTL_MEM_MAPPED_IO_RANGE_8190PCI 0x1000
101#define RTL_MEM_MAPPED_IO_RANGE_8192PCIE 0x4000
102#define RTL_MEM_MAPPED_IO_RANGE_8192SE 0x4000
103#define RTL_MEM_MAPPED_IO_RANGE_8192CE 0x4000
104#define RTL_MEM_MAPPED_IO_RANGE_8192DE 0x4000
105
106#define RTL_PCI_REVISION_ID_8190PCI 0x00
107#define RTL_PCI_REVISION_ID_8192PCIE 0x01
108#define RTL_PCI_REVISION_ID_8192SE 0x10
109#define RTL_PCI_REVISION_ID_8192CE 0x1
110#define RTL_PCI_REVISION_ID_8192DE 0x0
111
112#define RTL_DEFAULT_HARDWARE_TYPE HARDWARE_TYPE_RTL8192CE
113
114enum pci_bridge_vendor {
115 PCI_BRIDGE_VENDOR_INTEL = 0x0, /*0b'0000,0001 */
116 PCI_BRIDGE_VENDOR_ATI, /*0b'0000,0010*/
117 PCI_BRIDGE_VENDOR_AMD, /*0b'0000,0100*/
118 PCI_BRIDGE_VENDOR_SIS, /*0b'0000,1000*/
119 PCI_BRIDGE_VENDOR_UNKNOWN, /*0b'0100,0000*/
120 PCI_BRIDGE_VENDOR_MAX,
121};
122
123struct rtl_pci_capabilities_header {
124 u8 capability_id;
125 u8 next;
126};
127
128struct rtl_rx_desc {
129 u32 dword[8];
130} __packed;
131
132struct rtl_tx_desc {
133 u32 dword[16];
134} __packed;
135
136struct rtl_tx_cmd_desc {
137 u32 dword[16];
138} __packed;
139
140/* In new TRX flow, Buffer_desc is new concept
141 * But TX wifi info == TX descriptor in old flow
142 * RX wifi info == RX descriptor in old flow
143 */
144struct rtl_tx_buffer_desc {
145 u32 dword[8]; /*seg = 4*/
146} __packed;
147
148struct rtl8192_tx_ring {
149 struct rtl_tx_desc *desc;
150 dma_addr_t dma;
151 unsigned int idx;
152 unsigned int entries;
153 struct sk_buff_head queue;
154 /*add for new trx flow*/
155 struct rtl_tx_buffer_desc *buffer_desc; /*tx buffer descriptor*/
156};
157
158struct rtl8192_rx_ring {
159 struct rtl_rx_desc *desc;
160 dma_addr_t dma;
161 unsigned int idx;
162 struct sk_buff *rx_buf[RTL_PCI_MAX_RX_COUNT];
163};
164
165struct rtl_pci {
166 struct pci_dev *pdev;
167 bool irq_enabled;
168
169 bool driver_is_goingto_unload;
170 bool up_first_time;
171 bool first_init;
172 bool being_init_adapter;
173 bool init_ready;
174
175 /*Tx */
176 struct rtl8192_tx_ring tx_ring[RTL_PCI_MAX_TX_QUEUE_COUNT];
177 int txringcount[RTL_PCI_MAX_TX_QUEUE_COUNT];
178 u32 transmit_config;
179
180 /*Rx */
181 struct rtl8192_rx_ring rx_ring[RTL_PCI_MAX_RX_QUEUE];
182 int rxringcount;
183 u16 rxbuffersize;
184 u32 receive_config;
185
186 /*irq */
187 u8 irq_alloc;
188 u32 irq_mask[2];
189 u32 sys_irq_mask;
190
191 /*Bcn control register setting */
192 u32 reg_bcn_ctrl_val;
193
194 /*ASPM*/ u8 const_pci_aspm;
195 u8 const_amdpci_aspm;
196 u8 const_hwsw_rfoff_d3;
197 u8 const_support_pciaspm;
198 /*pci-e bridge */
199 u8 const_hostpci_aspm_setting;
200 /*pci-e device */
201 u8 const_devicepci_aspm_setting;
202 /*If it supports ASPM, Offset[560h] = 0x40,
203 otherwise Offset[560h] = 0x00. */
204 bool support_aspm;
205 bool support_backdoor;
206
207 /*QOS & EDCA */
208 enum acm_method acm_method;
209
210 u16 shortretry_limit;
211 u16 longretry_limit;
212
213 /* MSI support */
214 bool msi_support;
215 bool using_msi;
216};
217
218struct mp_adapter {
219 u8 linkctrl_reg;
220
221 u8 busnumber;
222 u8 devnumber;
223 u8 funcnumber;
224
225 u8 pcibridge_busnum;
226 u8 pcibridge_devnum;
227 u8 pcibridge_funcnum;
228
229 u8 pcibridge_vendor;
230 u16 pcibridge_vendorid;
231 u16 pcibridge_deviceid;
232
233 u8 num4bytes;
234
235 u8 pcibridge_pciehdr_offset;
236 u8 pcibridge_linkctrlreg;
237
238 bool amd_l1_patch;
239};
240
241struct rtl_pci_priv {
242 struct rtl_pci dev;
243 struct mp_adapter ndis_adapter;
244 struct rtl_led_ctl ledctl;
245 struct bt_coexist_info bt_coexist;
246};
247
248#define rtl_pcipriv(hw) (((struct rtl_pci_priv *)(rtl_priv(hw))->priv))
249#define rtl_pcidev(pcipriv) (&((pcipriv)->dev))
250
251int rtl_pci_reset_trx_ring(struct ieee80211_hw *hw);
252
253extern struct rtl_intf_ops rtl_pci_ops;
254
255int rtl_pci_probe(struct pci_dev *pdev,
256 const struct pci_device_id *id);
257void rtl_pci_disconnect(struct pci_dev *pdev);
258#ifdef CONFIG_PM_SLEEP
259int rtl_pci_suspend(struct device *dev);
260int rtl_pci_resume(struct device *dev);
261#endif /* CONFIG_PM_SLEEP */
262static inline u8 pci_read8_sync(struct rtl_priv *rtlpriv, u32 addr)
263{
264 return readb((u8 __iomem *) rtlpriv->io.pci_mem_start + addr);
265}
266
267static inline u16 pci_read16_sync(struct rtl_priv *rtlpriv, u32 addr)
268{
269 return readw((u8 __iomem *) rtlpriv->io.pci_mem_start + addr);
270}
271
272static inline u32 pci_read32_sync(struct rtl_priv *rtlpriv, u32 addr)
273{
274 return readl((u8 __iomem *) rtlpriv->io.pci_mem_start + addr);
275}
276
277static inline void pci_write8_async(struct rtl_priv *rtlpriv, u32 addr, u8 val)
278{
279 writeb(val, (u8 __iomem *) rtlpriv->io.pci_mem_start + addr);
280}
281
282static inline void pci_write16_async(struct rtl_priv *rtlpriv,
283 u32 addr, u16 val)
284{
285 writew(val, (u8 __iomem *) rtlpriv->io.pci_mem_start + addr);
286}
287
288static inline void pci_write32_async(struct rtl_priv *rtlpriv,
289 u32 addr, u32 val)
290{
291 writel(val, (u8 __iomem *) rtlpriv->io.pci_mem_start + addr);
292}
293
294#endif