1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 | /****************************************************************************** * Copyright(c) 2008 - 2010 Realtek Corporation. All rights reserved. * * This program is distributed in the hope that it will be useful, but WITHOUT * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for * more details. * * The full GNU General Public License is included in this distribution in the * file called LICENSE. * * Contact Information: * wlanfae <wlanfae@realtek.com> ******************************************************************************/ #ifndef __INC_QOS_TYPE_H #define __INC_QOS_TYPE_H #define BIT0 0x00000001 #define BIT1 0x00000002 #define BIT2 0x00000004 #define BIT3 0x00000008 #define BIT4 0x00000010 #define BIT5 0x00000020 #define BIT6 0x00000040 #define BIT7 0x00000080 #define BIT8 0x00000100 #define BIT9 0x00000200 #define BIT10 0x00000400 #define BIT11 0x00000800 #define BIT12 0x00001000 #define BIT13 0x00002000 #define BIT14 0x00004000 #define BIT15 0x00008000 #define BIT16 0x00010000 #define BIT17 0x00020000 #define BIT18 0x00040000 #define BIT19 0x00080000 #define BIT20 0x00100000 #define BIT21 0x00200000 #define BIT22 0x00400000 #define BIT23 0x00800000 #define BIT24 0x01000000 #define BIT25 0x02000000 #define BIT26 0x04000000 #define BIT27 0x08000000 #define BIT28 0x10000000 #define BIT29 0x20000000 #define BIT30 0x40000000 #define BIT31 0x80000000 union qos_tsinfo { u8 charData[3]; struct { u8 ucTrafficType:1; u8 ucTSID:4; u8 ucDirection:2; u8 ucAccessPolicy:2; u8 ucAggregation:1; u8 ucPSB:1; u8 ucUP:3; u8 ucTSInfoAckPolicy:2; u8 ucSchedule:1; u8 ucReserved:7; } field; }; union tspec_body { u8 charData[55]; struct { union qos_tsinfo TSInfo; u16 NominalMSDUsize; u16 MaxMSDUsize; u32 MinServiceItv; u32 MaxServiceItv; u32 InactivityItv; u32 SuspenItv; u32 ServiceStartTime; u32 MinDataRate; u32 MeanDataRate; u32 PeakDataRate; u32 MaxBurstSize; u32 DelayBound; u32 MinPhyRate; u16 SurplusBandwidthAllowance; u16 MediumTime; } f; }; struct octet_string { u8 *Octet; u16 Length; }; #define AC0_BE 0 #define AC1_BK 1 #define AC2_VI 2 #define AC3_VO 3 #define AC_MAX 4 enum direction_value { DIR_UP = 0, DIR_DOWN = 1, DIR_DIRECT = 2, DIR_BI_DIR = 3, }; enum acm_method { eAcmWay0_SwAndHw = 0, eAcmWay1_HW = 1, eAcmWay2_SW = 2, }; struct acm { u64 UsedTime; u64 MediumTime; u8 HwAcmCtl; }; union qos_tclas { struct _TYPE_GENERAL { u8 Priority; u8 ClassifierType; u8 Mask; } TYPE_GENERAL; struct _TYPE0_ETH { u8 Priority; u8 ClassifierType; u8 Mask; u8 SrcAddr[ETH_ALEN]; u8 DstAddr[ETH_ALEN]; u16 Type; } TYPE0_ETH; struct _TYPE1_IPV4 { u8 Priority; u8 ClassifierType; u8 Mask; u8 Version; u8 SrcIP[4]; u8 DstIP[4]; u16 SrcPort; u16 DstPort; u8 DSCP; u8 Protocol; u8 Reserved; } TYPE1_IPV4; struct _TYPE1_IPV6 { u8 Priority; u8 ClassifierType; u8 Mask; u8 Version; u8 SrcIP[16]; u8 DstIP[16]; u16 SrcPort; u16 DstPort; u8 FlowLabel[3]; } TYPE1_IPV6; struct _TYPE2_8021Q { u8 Priority; u8 ClassifierType; u8 Mask; u16 TagType; } TYPE2_8021Q; }; union aci_aifsn { u8 charData; struct { u8 AIFSN:4; u8 acm:1; u8 ACI:2; u8 Reserved:1; } f; }; #endif |