2 Copyright (C) 2004 - 2007 rt2x00 SourceForge Project
3 <http://rt2x00.serialmonkey.com>
5 This program is free software; you can redistribute it and/or modify
6 it under the terms of the GNU General Public License as published by
7 the Free Software Foundation; either version 2 of the License, or
8 (at your option) any later version.
10 This program is distributed in the hope that it will be useful,
11 but WITHOUT ANY WARRANTY; without even the implied warranty of
12 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 GNU General Public License for more details.
15 You should have received a copy of the GNU General Public License
16 along with this program; if not, write to the
17 Free Software Foundation, Inc.,
18 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
23 Abstract: rt2x00 generic pci device routines.
27 * Set enviroment defines for rt2x00.h
29 #define DRV_NAME "rt2x00pci"
31 #include <linux/dma-mapping.h>
32 #include <linux/kernel.h>
33 #include <linux/module.h>
34 #include <linux/pci.h>
37 #include "rt2x00pci.h"
42 int rt2x00pci_beacon_update(struct ieee80211_hw
*hw
, struct sk_buff
*skb
,
43 struct ieee80211_tx_control
*control
)
45 struct rt2x00_dev
*rt2x00dev
= hw
->priv
;
46 struct data_ring
*ring
=
47 rt2x00lib_get_ring(rt2x00dev
, IEEE80211_TX_QUEUE_BEACON
);
48 struct data_entry
*entry
= rt2x00_get_data_entry(ring
);
51 * Just in case mac80211 doesn't set this correctly,
52 * but we need this queue set for the descriptor
55 control
->queue
= IEEE80211_TX_QUEUE_BEACON
;
58 * Update the beacon entry.
60 memcpy(entry
->data_addr
, skb
->data
, skb
->len
);
61 rt2x00lib_write_tx_desc(rt2x00dev
, entry
->priv
,
62 (struct ieee80211_hdr
*)skb
->data
,
66 * Enable beacon generation.
68 rt2x00dev
->ops
->lib
->kick_tx_queue(rt2x00dev
, control
->queue
);
72 EXPORT_SYMBOL_GPL(rt2x00pci_beacon_update
);
77 int rt2x00pci_write_tx_data(struct rt2x00_dev
*rt2x00dev
,
78 struct data_ring
*ring
, struct sk_buff
*skb
,
79 struct ieee80211_tx_control
*control
)
81 struct ieee80211_hdr
*ieee80211hdr
= (struct ieee80211_hdr
*)skb
->data
;
82 struct data_entry
*entry
= rt2x00_get_data_entry(ring
);
83 struct data_desc
*txd
= entry
->priv
;
86 if (rt2x00_ring_full(ring
)) {
87 ieee80211_stop_queue(rt2x00dev
->hw
, control
->queue
);
91 rt2x00_desc_read(txd
, 0, &word
);
93 if (rt2x00_get_field32(word
, TXD_ENTRY_OWNER_NIC
) ||
94 rt2x00_get_field32(word
, TXD_ENTRY_VALID
)) {
96 "Arrived at non-free entry in the non-full queue %d.\n"
97 "Please file bug report to %s.\n",
98 control
->queue
, DRV_PROJECT
);
99 ieee80211_stop_queue(rt2x00dev
->hw
, control
->queue
);
104 memcpy(&entry
->tx_status
.control
, control
, sizeof(*control
));
105 memcpy(entry
->data_addr
, skb
->data
, skb
->len
);
106 rt2x00lib_write_tx_desc(rt2x00dev
, txd
, ieee80211hdr
,
109 rt2x00_ring_index_inc(ring
);
111 if (rt2x00_ring_full(ring
))
112 ieee80211_stop_queue(rt2x00dev
->hw
, control
->queue
);
116 EXPORT_SYMBOL_GPL(rt2x00pci_write_tx_data
);
121 void rt2x00pci_rxdone(struct rt2x00_dev
*rt2x00dev
)
123 struct data_ring
*ring
= rt2x00dev
->rx
;
124 struct data_entry
*entry
;
125 struct data_desc
*rxd
;
127 struct ieee80211_hdr
*hdr
;
128 struct rxdata_entry_desc desc
;
134 entry
= rt2x00_get_data_entry(ring
);
136 rt2x00_desc_read(rxd
, 0, &word
);
138 if (rt2x00_get_field32(word
, RXD_ENTRY_OWNER_NIC
))
141 memset(&desc
, 0x00, sizeof(desc
));
142 rt2x00dev
->ops
->lib
->fill_rxdone(entry
, &desc
);
144 hdr
= (struct ieee80211_hdr
*)entry
->data_addr
;
146 ieee80211_get_hdrlen(le16_to_cpu(hdr
->frame_control
));
149 * The data behind the ieee80211 header must be
150 * aligned on a 4 byte boundary.
152 align
= header_size
% 4;
155 * Allocate the sk_buffer, initialize it and copy
158 skb
= dev_alloc_skb(desc
.size
+ align
);
162 skb_reserve(skb
, align
);
163 memcpy(skb_put(skb
, desc
.size
), entry
->data_addr
, desc
.size
);
166 * Send the frame to rt2x00lib for further processing.
168 rt2x00lib_rxdone(entry
, skb
, &desc
);
170 if (test_bit(DEVICE_ENABLED_RADIO
, &ring
->rt2x00dev
->flags
)) {
171 rt2x00_set_field32(&word
, RXD_ENTRY_OWNER_NIC
, 1);
172 rt2x00_desc_write(rxd
, 0, word
);
175 rt2x00_ring_index_inc(ring
);
178 EXPORT_SYMBOL_GPL(rt2x00pci_rxdone
);
181 * Device initialization handlers.
183 #define priv_offset(__ring, __i) \
185 ring->data_addr + (i * ring->desc_size); \
188 #define data_addr_offset(__ring, __i) \
190 (__ring)->data_addr + \
191 ((__ring)->stats.limit * (__ring)->desc_size) + \
192 ((__i) * (__ring)->data_size); \
195 #define data_dma_offset(__ring, __i) \
197 (__ring)->data_dma + \
198 ((__ring)->stats.limit * (__ring)->desc_size) + \
199 ((__i) * (__ring)->data_size); \
202 static int rt2x00pci_alloc_dma(struct rt2x00_dev
*rt2x00dev
,
203 struct data_ring
*ring
)
208 * Allocate DMA memory for descriptor and buffer.
210 ring
->data_addr
= pci_alloc_consistent(rt2x00dev_pci(rt2x00dev
),
211 rt2x00_get_ring_size(ring
),
213 if (!ring
->data_addr
)
217 * Initialize all ring entries to contain valid
220 for (i
= 0; i
< ring
->stats
.limit
; i
++) {
221 ring
->entry
[i
].priv
= priv_offset(ring
, i
);
222 ring
->entry
[i
].data_addr
= data_addr_offset(ring
, i
);
223 ring
->entry
[i
].data_dma
= data_dma_offset(ring
, i
);
229 static void rt2x00pci_free_dma(struct rt2x00_dev
*rt2x00dev
,
230 struct data_ring
*ring
)
233 pci_free_consistent(rt2x00dev_pci(rt2x00dev
),
234 rt2x00_get_ring_size(ring
),
235 ring
->data_addr
, ring
->data_dma
);
236 ring
->data_addr
= NULL
;
239 int rt2x00pci_initialize(struct rt2x00_dev
*rt2x00dev
)
241 struct pci_dev
*pci_dev
= rt2x00dev_pci(rt2x00dev
);
242 struct data_ring
*ring
;
248 ring_for_each(rt2x00dev
, ring
) {
249 status
= rt2x00pci_alloc_dma(rt2x00dev
, ring
);
255 * Register interrupt handler.
257 status
= request_irq(pci_dev
->irq
, rt2x00dev
->ops
->lib
->irq_handler
,
258 IRQF_SHARED
, pci_name(pci_dev
), rt2x00dev
);
260 ERROR(rt2x00dev
, "IRQ %d allocation failed (error %d).\n",
261 pci_dev
->irq
, status
);
268 rt2x00pci_uninitialize(rt2x00dev
);
272 EXPORT_SYMBOL_GPL(rt2x00pci_initialize
);
274 void rt2x00pci_uninitialize(struct rt2x00_dev
*rt2x00dev
)
276 struct data_ring
*ring
;
281 free_irq(rt2x00dev_pci(rt2x00dev
)->irq
, rt2x00dev
);
286 ring_for_each(rt2x00dev
, ring
)
287 rt2x00pci_free_dma(rt2x00dev
, ring
);
289 EXPORT_SYMBOL_GPL(rt2x00pci_uninitialize
);
292 * PCI driver handlers.
294 static void rt2x00pci_free_reg(struct rt2x00_dev
*rt2x00dev
)
296 kfree(rt2x00dev
->rf
);
297 rt2x00dev
->rf
= NULL
;
299 kfree(rt2x00dev
->eeprom
);
300 rt2x00dev
->eeprom
= NULL
;
302 if (rt2x00dev
->csr_addr
) {
303 iounmap(rt2x00dev
->csr_addr
);
304 rt2x00dev
->csr_addr
= NULL
;
308 static int rt2x00pci_alloc_reg(struct rt2x00_dev
*rt2x00dev
)
310 struct pci_dev
*pci_dev
= rt2x00dev_pci(rt2x00dev
);
312 rt2x00dev
->csr_addr
= ioremap(pci_resource_start(pci_dev
, 0),
313 pci_resource_len(pci_dev
, 0));
314 if (!rt2x00dev
->csr_addr
)
317 rt2x00dev
->eeprom
= kzalloc(rt2x00dev
->ops
->eeprom_size
, GFP_KERNEL
);
318 if (!rt2x00dev
->eeprom
)
321 rt2x00dev
->rf
= kzalloc(rt2x00dev
->ops
->rf_size
, GFP_KERNEL
);
328 ERROR_PROBE("Failed to allocate registers.\n");
330 rt2x00pci_free_reg(rt2x00dev
);
335 int rt2x00pci_probe(struct pci_dev
*pci_dev
, const struct pci_device_id
*id
)
337 struct rt2x00_ops
*ops
= (struct rt2x00_ops
*)id
->driver_data
;
338 struct ieee80211_hw
*hw
;
339 struct rt2x00_dev
*rt2x00dev
;
342 retval
= pci_request_regions(pci_dev
, pci_name(pci_dev
));
344 ERROR_PROBE("PCI request regions failed.\n");
348 retval
= pci_enable_device(pci_dev
);
350 ERROR_PROBE("Enable device failed.\n");
351 goto exit_release_regions
;
354 pci_set_master(pci_dev
);
356 if (pci_set_mwi(pci_dev
))
357 ERROR_PROBE("MWI not available.\n");
359 if (pci_set_dma_mask(pci_dev
, DMA_64BIT_MASK
) &&
360 pci_set_dma_mask(pci_dev
, DMA_32BIT_MASK
)) {
361 ERROR_PROBE("PCI DMA not supported.\n");
363 goto exit_disable_device
;
366 hw
= ieee80211_alloc_hw(sizeof(struct rt2x00_dev
), ops
->hw
);
368 ERROR_PROBE("Failed to allocate hardware.\n");
370 goto exit_disable_device
;
373 pci_set_drvdata(pci_dev
, hw
);
375 rt2x00dev
= hw
->priv
;
376 rt2x00dev
->dev
= pci_dev
;
377 rt2x00dev
->ops
= ops
;
380 retval
= rt2x00pci_alloc_reg(rt2x00dev
);
382 goto exit_free_device
;
384 retval
= rt2x00lib_probe_dev(rt2x00dev
);
391 rt2x00pci_free_reg(rt2x00dev
);
394 ieee80211_free_hw(hw
);
397 if (retval
!= -EBUSY
)
398 pci_disable_device(pci_dev
);
400 exit_release_regions
:
401 pci_release_regions(pci_dev
);
403 pci_set_drvdata(pci_dev
, NULL
);
407 EXPORT_SYMBOL_GPL(rt2x00pci_probe
);
409 void rt2x00pci_remove(struct pci_dev
*pci_dev
)
411 struct ieee80211_hw
*hw
= pci_get_drvdata(pci_dev
);
412 struct rt2x00_dev
*rt2x00dev
= hw
->priv
;
415 * Free all allocated data.
417 rt2x00lib_remove_dev(rt2x00dev
);
418 rt2x00pci_free_reg(rt2x00dev
);
419 ieee80211_free_hw(hw
);
422 * Free the PCI device data.
424 pci_set_drvdata(pci_dev
, NULL
);
425 pci_disable_device(pci_dev
);
426 pci_release_regions(pci_dev
);
428 EXPORT_SYMBOL_GPL(rt2x00pci_remove
);
431 int rt2x00pci_suspend(struct pci_dev
*pci_dev
, pm_message_t state
)
433 struct ieee80211_hw
*hw
= pci_get_drvdata(pci_dev
);
434 struct rt2x00_dev
*rt2x00dev
= hw
->priv
;
437 retval
= rt2x00lib_suspend(rt2x00dev
, state
);
441 rt2x00pci_free_reg(rt2x00dev
);
443 pci_save_state(pci_dev
);
444 pci_disable_device(pci_dev
);
445 return pci_set_power_state(pci_dev
, pci_choose_state(pci_dev
, state
));
447 EXPORT_SYMBOL_GPL(rt2x00pci_suspend
);
449 int rt2x00pci_resume(struct pci_dev
*pci_dev
)
451 struct ieee80211_hw
*hw
= pci_get_drvdata(pci_dev
);
452 struct rt2x00_dev
*rt2x00dev
= hw
->priv
;
455 if (pci_set_power_state(pci_dev
, PCI_D0
) ||
456 pci_enable_device(pci_dev
) ||
457 pci_restore_state(pci_dev
)) {
458 ERROR(rt2x00dev
, "Failed to resume device.\n");
462 retval
= rt2x00pci_alloc_reg(rt2x00dev
);
466 retval
= rt2x00lib_resume(rt2x00dev
);
473 rt2x00pci_free_reg(rt2x00dev
);
477 EXPORT_SYMBOL_GPL(rt2x00pci_resume
);
478 #endif /* CONFIG_PM */
481 * rt2x00pci module information.
483 MODULE_AUTHOR(DRV_PROJECT
);
484 MODULE_VERSION(DRV_VERSION
);
485 MODULE_DESCRIPTION("rt2x00 library");
486 MODULE_LICENSE("GPL");