The Design and Implementation of the FreeBSD Operating System, Second Edition
Now available: The Design and Implementation of the FreeBSD Operating System (Second Edition)


[ source navigation ] [ diff markup ] [ identifier search ] [ freetext search ] [ file search ] [ list types ] [ track identifier ]

FreeBSD/Linux Kernel Cross Reference
sys/dev/rtwn/rtl8812a/r12a_tx_desc.h

Version: -  FREEBSD  -  FREEBSD-13-STABLE  -  FREEBSD-13-0  -  FREEBSD-12-STABLE  -  FREEBSD-12-0  -  FREEBSD-11-STABLE  -  FREEBSD-11-0  -  FREEBSD-10-STABLE  -  FREEBSD-10-0  -  FREEBSD-9-STABLE  -  FREEBSD-9-0  -  FREEBSD-8-STABLE  -  FREEBSD-8-0  -  FREEBSD-7-STABLE  -  FREEBSD-7-0  -  FREEBSD-6-STABLE  -  FREEBSD-6-0  -  FREEBSD-5-STABLE  -  FREEBSD-5-0  -  FREEBSD-4-STABLE  -  FREEBSD-3-STABLE  -  FREEBSD22  -  l41  -  OPENBSD  -  linux-2.6  -  MK84  -  PLAN9  -  xnu-8792 
SearchContext: -  none  -  3  -  10 

    1 /*-
    2  * Copyright (c) 2016 Andriy Voskoboinyk <avos@FreeBSD.org>
    3  * All rights reserved.
    4  *
    5  * Redistribution and use in source and binary forms, with or without
    6  * modification, are permitted provided that the following conditions
    7  * are met:
    8  * 1. Redistributions of source code must retain the above copyright
    9  *    notice, this list of conditions and the following disclaimer.
   10  * 2. Redistributions in binary form must reproduce the above copyright
   11  *    notice, this list of conditions and the following disclaimer in the
   12  *    documentation and/or other materials provided with the distribution.
   13  *
   14  * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
   15  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
   16  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
   17  * ARE DISCLAIMED.  IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
   18  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
   19  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
   20  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
   21  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
   22  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
   23  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
   24  * SUCH DAMAGE.
   25  *
   26  * $FreeBSD$
   27  */
   28 
   29 #ifndef R12A_TX_DESC_H
   30 #define R12A_TX_DESC_H
   31 
   32 /* Tx MAC descriptor (common part). */
   33 struct r12a_tx_desc {
   34         uint16_t        pktlen;
   35         uint8_t         offset;
   36         uint8_t         flags0;
   37 #define R12A_FLAGS0_BMCAST      0x01
   38 #define R12A_FLAGS0_LSG         0x04
   39 #define R12A_FLAGS0_FSG         0x08
   40 #define R12A_FLAGS0_OWN         0x80
   41 
   42         uint32_t        txdw1;
   43 #define R12A_TXDW1_MACID_M      0x0000003f
   44 #define R12A_TXDW1_MACID_S      0
   45 #define R12A_TXDW1_QSEL_M       0x00001f00
   46 #define R12A_TXDW1_QSEL_S       8
   47 
   48 #define R12A_TXDW1_QSEL_BE      0x00    /* or 0x03 */
   49 #define R12A_TXDW1_QSEL_BK      0x01    /* or 0x02 */
   50 #define R12A_TXDW1_QSEL_VI      0x04    /* or 0x05 */
   51 #define R12A_TXDW1_QSEL_VO      0x06    /* or 0x07 */
   52 #define RTWN_MAX_TID            8
   53 
   54 #define R12A_TXDW1_QSEL_BEACON  0x10
   55 #define R12A_TXDW1_QSEL_MGNT    0x12
   56 
   57 #define R12A_TXDW1_RAID_M       0x001f0000
   58 #define R12A_TXDW1_RAID_S       16
   59 #define R12A_TXDW1_CIPHER_M     0x00c00000
   60 #define R12A_TXDW1_CIPHER_S     22
   61 #define R12A_TXDW1_CIPHER_NONE  0
   62 #define R12A_TXDW1_CIPHER_RC4   1
   63 #define R12A_TXDW1_CIPHER_SM4   2
   64 #define R12A_TXDW1_CIPHER_AES   3
   65 #define R12A_TXDW1_PKTOFF_M     0x1f000000
   66 #define R12A_TXDW1_PKTOFF_S     24
   67 
   68         uint32_t        txdw2;
   69 #define R12A_TXDW2_AGGEN        0x00001000
   70 #define R12A_TXDW2_AGGBK        0x00010000
   71 #define R12A_TXDW2_MOREFRAG     0x00020000
   72 #define R12A_TXDW2_SPE_RPT      0x00080000
   73 #define R12A_TXDW2_AMPDU_DEN_M  0x00700000
   74 #define R12A_TXDW2_AMPDU_DEN_S  20
   75 
   76         uint32_t        txdw3;
   77 #define R12A_TXDW3_SEQ_SEL_M    0x000000c0
   78 #define R12A_TXDW3_SEQ_SEL_S    6
   79 #define R12A_TXDW3_DRVRATE      0x00000100
   80 #define R12A_TXDW3_DISRTSFB     0x00000200
   81 #define R12A_TXDW3_DISDATAFB    0x00000400
   82 #define R12A_TXDW3_CTS2SELF     0x00000800
   83 #define R12A_TXDW3_RTSEN        0x00001000
   84 #define R12A_TXDW3_HWRTSEN      0x00002000
   85 #define R12A_TXDW3_MAX_AGG_M    0x003e0000
   86 #define R12A_TXDW3_MAX_AGG_S    17
   87 
   88         uint32_t        txdw4;
   89 #define R12A_TXDW4_DATARATE_M           0x0000007f
   90 #define R12A_TXDW4_DATARATE_S           0
   91 #define R12A_TXDW4_DATARATE_FB_LMT_M    0x00001f00
   92 #define R12A_TXDW4_DATARATE_FB_LMT_S    8
   93 #define R12A_TXDW4_RTSRATE_FB_LMT_M     0x0001e000
   94 #define R12A_TXDW4_RTSRATE_FB_LMT_S     13
   95 #define R12A_TXDW4_RETRY_LMT_ENA        0x00020000
   96 #define R12A_TXDW4_RETRY_LMT_M          0x00fc0000
   97 #define R12A_TXDW4_RETRY_LMT_S          18
   98 #define R12A_TXDW4_RTSRATE_M            0x1f000000
   99 #define R12A_TXDW4_RTSRATE_S            24
  100 
  101         uint32_t        txdw5;
  102 #define R12A_TXDW5_DATA_PRIM_CHAN_M     0x0000000f
  103 #define R12A_TXDW5_DATA_PRIM_CHAN_S     0
  104 #define R12A_TXDW5_PRIM_CHAN_20_80_3    1
  105 #define R12A_TXDW5_PRIM_CHAN_20_80_2    2
  106 #define R12A_TXDW5_PRIM_CHAN_20_80_4    3
  107 #define R12A_TXDW5_PRIM_CHAN_20_80_1    4
  108 #define R12A_TXDW5_PRIM_CHAN_40_80_1    9
  109 #define R12A_TXDW5_PRIM_CHAN_40_80_2    10
  110 #define R12A_TXDW5_DATA_SHORT           0x00000010
  111 #define R12A_TXDW5_DATA_BW_M            0x00000060
  112 #define R12A_TXDW5_DATA_BW_S            5
  113 #define R12A_TXDW5_DATA_BW40            1
  114 #define R12A_TXDW5_DATA_BW80            2
  115 #define R12A_TXDW5_DATA_LDPC            0x00000080
  116 #define R12A_TXDW5_RTS_SHORT            0x00001000
  117 #define R12A_TXDW5_RTS_PRIM_CHAN_M      0x0001e000
  118 #define R12A_TXDW5_RTS_PRIM_CHAN_S      13
  119 
  120         uint32_t        txdw6;
  121 #define R21A_TXDW6_MBSSID_M     0x0000f000
  122 #define R21A_TXDW6_MBSSID_S     12
  123 
  124         uint32_t        reserved;
  125         uint32_t        txdw8;
  126 #define R12A_TXDW8_HWSEQ_EN     0x00008000
  127 
  128         uint32_t        txdw9;
  129 #define R12A_TXDW9_SEQ_M        0x00fff000
  130 #define R12A_TXDW9_SEQ_S        12
  131 } __packed __attribute__((aligned(4)));
  132 
  133 /* Rate adaptation modes. */
  134 #define R12A_RAID_11BGN_2_40    0
  135 #define R12A_RAID_11BGN_1_40    1
  136 #define R12A_RAID_11BGN_2       2
  137 #define R12A_RAID_11BGN_1       3
  138 #define R12A_RAID_11GN_2        4
  139 #define R12A_RAID_11GN_1        5
  140 #define R12A_RAID_11BG          6
  141 #define R12A_RAID_11G           7       /* "pure" 11g */
  142 #define R12A_RAID_11B           8
  143 #define R12A_RAID_11AC_2_80     9
  144 #define R12A_RAID_11AC_1_80     10
  145 #define R12A_RAID_11AC_1        11
  146 #define R12A_RAID_11AC_2        12
  147 
  148 #endif  /* R12A_TX_DESC_H */

Cache object: 9f6617b2d8e0a45583458287742e127b


[ source navigation ] [ diff markup ] [ identifier search ] [ freetext search ] [ file search ] [ list types ] [ track identifier ]


This page is part of the FreeBSD/Linux Linux Kernel Cross-Reference, and was automatically generated using a modified version of the LXR engine.