• Home
  • History
  • Annotate
  • Raw
  • Download
  • only in /asuswrt-rt-n18u-9.0.0.4.380.2695/release/src-rt-6.x.4708/linux/linux-2.6.36/drivers/net/wireless/rt2x00/

Lines Matching defs:txdesc

1766 				  struct txentry_desc *txdesc)
1777 rt2x00_set_field32(&word, TXD_W1_HOST_Q_ID, txdesc->queue);
1778 rt2x00_set_field32(&word, TXD_W1_AIFSN, txdesc->aifs);
1779 rt2x00_set_field32(&word, TXD_W1_CWMIN, txdesc->cw_min);
1780 rt2x00_set_field32(&word, TXD_W1_CWMAX, txdesc->cw_max);
1781 rt2x00_set_field32(&word, TXD_W1_IV_OFFSET, txdesc->iv_offset);
1783 test_bit(ENTRY_TXD_GENERATE_SEQ, &txdesc->flags));
1788 rt2x00_set_field32(&word, TXD_W2_PLCP_SIGNAL, txdesc->signal);
1789 rt2x00_set_field32(&word, TXD_W2_PLCP_SERVICE, txdesc->service);
1790 rt2x00_set_field32(&word, TXD_W2_PLCP_LENGTH_LOW, txdesc->length_low);
1791 rt2x00_set_field32(&word, TXD_W2_PLCP_LENGTH_HIGH, txdesc->length_high);
1794 if (test_bit(ENTRY_TXD_ENCRYPT, &txdesc->flags)) {
1808 if (txdesc->queue != QID_BEACON) {
1816 txdesc->length);
1829 test_bit(ENTRY_TXD_MORE_FRAG, &txdesc->flags));
1831 test_bit(ENTRY_TXD_ACK, &txdesc->flags));
1833 test_bit(ENTRY_TXD_REQ_TIMESTAMP, &txdesc->flags));
1835 (txdesc->rate_mode == RATE_MODE_OFDM));
1836 rt2x00_set_field32(&word, TXD_W0_IFS, txdesc->ifs);
1838 test_bit(ENTRY_TXD_RETRY_MODE, &txdesc->flags));
1840 test_bit(ENTRY_TXD_ENCRYPT_MMIC, &txdesc->flags));
1842 test_bit(ENTRY_TXD_ENCRYPT_PAIRWISE, &txdesc->flags));
1843 rt2x00_set_field32(&word, TXD_W0_KEY_INDEX, txdesc->key_idx);
1844 rt2x00_set_field32(&word, TXD_W0_DATABYTE_COUNT, txdesc->length);
1846 test_bit(ENTRY_TXD_BURST, &txdesc->flags));
1847 rt2x00_set_field32(&word, TXD_W0_CIPHER_ALG, txdesc->cipher);
1855 (txdesc->queue == QID_BEACON) ? TXINFO_SIZE : TXD_DESC_SIZE;
1862 struct txentry_desc *txdesc)
1880 rt61pci_write_tx_desc(rt2x00dev, entry->skb, txdesc);
2045 struct txdone_entry_desc txdesc;
2100 txdesc.flags = 0;
2101 __set_bit(TXDONE_UNKNOWN, &txdesc.flags);
2102 txdesc.retry = 0;
2104 rt2x00lib_txdone(entry_done, &txdesc);
2111 txdesc.flags = 0;
2114 __set_bit(TXDONE_SUCCESS, &txdesc.flags);
2117 __set_bit(TXDONE_EXCESSIVE_RETRY, &txdesc.flags);
2120 __set_bit(TXDONE_FAILURE, &txdesc.flags);
2122 txdesc.retry = rt2x00_get_field32(reg, STA_CSR4_RETRY_COUNT);
2128 if (txdesc.retry)
2129 __set_bit(TXDONE_FALLBACK, &txdesc.flags);
2131 rt2x00lib_txdone(entry, &txdesc);