rt2x00: rt2800pci: move TX descriptor functions to the rt2800mmio module
[cascardo/linux.git] / drivers / net / wireless / rt2x00 / rt2800mmio.c
1 /*      Copyright (C) 2009 - 2010 Ivo van Doorn <IvDoorn@gmail.com>
2  *      Copyright (C) 2009 Alban Browaeys <prahal@yahoo.com>
3  *      Copyright (C) 2009 Felix Fietkau <nbd@openwrt.org>
4  *      Copyright (C) 2009 Luis Correia <luis.f.correia@gmail.com>
5  *      Copyright (C) 2009 Mattias Nissler <mattias.nissler@gmx.de>
6  *      Copyright (C) 2009 Mark Asselstine <asselsm@gmail.com>
7  *      Copyright (C) 2009 Xose Vazquez Perez <xose.vazquez@gmail.com>
8  *      Copyright (C) 2009 Bart Zolnierkiewicz <bzolnier@gmail.com>
9  *      <http://rt2x00.serialmonkey.com>
10  *
11  *      This program is free software; you can redistribute it and/or modify
12  *      it under the terms of the GNU General Public License as published by
13  *      the Free Software Foundation; either version 2 of the License, or
14  *      (at your option) any later version.
15  *
16  *      This program is distributed in the hope that it will be useful,
17  *      but WITHOUT ANY WARRANTY; without even the implied warranty of
18  *      MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
19  *      GNU General Public License for more details.
20  *
21  *      You should have received a copy of the GNU General Public License
22  *      along with this program; if not, write to the
23  *      Free Software Foundation, Inc.,
24  *      59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
25  */
26
27 /*      Module: rt2800mmio
28  *      Abstract: rt2800 MMIO device routines.
29  */
30
31 #include <linux/kernel.h>
32 #include <linux/module.h>
33 #include <linux/export.h>
34
35 #include "rt2x00.h"
36 #include "rt2x00mmio.h"
37 #include "rt2800mmio.h"
38
39 /*
40  * TX descriptor initialization
41  */
42 __le32 *rt2800mmio_get_txwi(struct queue_entry *entry)
43 {
44         return (__le32 *) entry->skb->data;
45 }
46 EXPORT_SYMBOL_GPL(rt2800mmio_get_txwi);
47
48 void rt2800mmio_write_tx_desc(struct queue_entry *entry,
49                               struct txentry_desc *txdesc)
50 {
51         struct skb_frame_desc *skbdesc = get_skb_frame_desc(entry->skb);
52         struct queue_entry_priv_mmio *entry_priv = entry->priv_data;
53         __le32 *txd = entry_priv->desc;
54         u32 word;
55         const unsigned int txwi_size = entry->queue->winfo_size;
56
57         /*
58          * The buffers pointed by SD_PTR0/SD_LEN0 and SD_PTR1/SD_LEN1
59          * must contains a TXWI structure + 802.11 header + padding + 802.11
60          * data. We choose to have SD_PTR0/SD_LEN0 only contains TXWI and
61          * SD_PTR1/SD_LEN1 contains 802.11 header + padding + 802.11
62          * data. It means that LAST_SEC0 is always 0.
63          */
64
65         /*
66          * Initialize TX descriptor
67          */
68         word = 0;
69         rt2x00_set_field32(&word, TXD_W0_SD_PTR0, skbdesc->skb_dma);
70         rt2x00_desc_write(txd, 0, word);
71
72         word = 0;
73         rt2x00_set_field32(&word, TXD_W1_SD_LEN1, entry->skb->len);
74         rt2x00_set_field32(&word, TXD_W1_LAST_SEC1,
75                            !test_bit(ENTRY_TXD_MORE_FRAG, &txdesc->flags));
76         rt2x00_set_field32(&word, TXD_W1_BURST,
77                            test_bit(ENTRY_TXD_BURST, &txdesc->flags));
78         rt2x00_set_field32(&word, TXD_W1_SD_LEN0, txwi_size);
79         rt2x00_set_field32(&word, TXD_W1_LAST_SEC0, 0);
80         rt2x00_set_field32(&word, TXD_W1_DMA_DONE, 0);
81         rt2x00_desc_write(txd, 1, word);
82
83         word = 0;
84         rt2x00_set_field32(&word, TXD_W2_SD_PTR1,
85                            skbdesc->skb_dma + txwi_size);
86         rt2x00_desc_write(txd, 2, word);
87
88         word = 0;
89         rt2x00_set_field32(&word, TXD_W3_WIV,
90                            !test_bit(ENTRY_TXD_ENCRYPT_IV, &txdesc->flags));
91         rt2x00_set_field32(&word, TXD_W3_QSEL, 2);
92         rt2x00_desc_write(txd, 3, word);
93
94         /*
95          * Register descriptor details in skb frame descriptor.
96          */
97         skbdesc->desc = txd;
98         skbdesc->desc_len = TXD_DESC_SIZE;
99 }
100 EXPORT_SYMBOL_GPL(rt2800mmio_write_tx_desc);
101
102 #include "rt2x00.h"
103
104 MODULE_AUTHOR(DRV_PROJECT);
105 MODULE_VERSION(DRV_VERSION);
106 MODULE_DESCRIPTION("rt2800 MMIO library");
107 MODULE_LICENSE("GPL");