1*5113495bSYour Name /* 2*5113495bSYour Name * Copyright (c) 2020 The Linux Foundation. All rights reserved. 3*5113495bSYour Name * 4*5113495bSYour Name * Permission to use, copy, modify, and/or distribute this software for any 5*5113495bSYour Name * purpose with or without fee is hereby granted, provided that the above 6*5113495bSYour Name * copyright notice and this permission notice appear in all copies. 7*5113495bSYour Name * 8*5113495bSYour Name * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES 9*5113495bSYour Name * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF 10*5113495bSYour Name * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR 11*5113495bSYour Name * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES 12*5113495bSYour Name * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN 13*5113495bSYour Name * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF 14*5113495bSYour Name * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. 15*5113495bSYour Name */ 16*5113495bSYour Name 17*5113495bSYour Name // $ATH_LICENSE_HW_HDR_C$ 18*5113495bSYour Name // 19*5113495bSYour Name // DO NOT EDIT! This file is automatically generated 20*5113495bSYour Name // These definitions are tied to a particular hardware layout 21*5113495bSYour Name 22*5113495bSYour Name 23*5113495bSYour Name #ifndef _TCL_STATUS_RING_H_ 24*5113495bSYour Name #define _TCL_STATUS_RING_H_ 25*5113495bSYour Name #if !defined(__ASSEMBLER__) 26*5113495bSYour Name #endif 27*5113495bSYour Name 28*5113495bSYour Name 29*5113495bSYour Name // ################ START SUMMARY ################# 30*5113495bSYour Name // 31*5113495bSYour Name // Dword Fields 32*5113495bSYour Name // 0 gse_ctrl[3:0], ase_fse_sel[4], cache_op_res[6:5], index_search_en[7], msdu_cnt_n[31:8] 33*5113495bSYour Name // 1 msdu_byte_cnt_n[31:0] 34*5113495bSYour Name // 2 msdu_timestmp_n[31:0] 35*5113495bSYour Name // 3 cmd_meta_data_31_0[31:0] 36*5113495bSYour Name // 4 cmd_meta_data_63_32[31:0] 37*5113495bSYour Name // 5 hash_indx_val[19:0], cache_set_num[23:20], reserved_5a[31:24] 38*5113495bSYour Name // 6 reserved_6a[31:0] 39*5113495bSYour Name // 7 reserved_7a[19:0], ring_id[27:20], looping_count[31:28] 40*5113495bSYour Name // 41*5113495bSYour Name // ################ END SUMMARY ################# 42*5113495bSYour Name 43*5113495bSYour Name #define NUM_OF_DWORDS_TCL_STATUS_RING 8 44*5113495bSYour Name 45*5113495bSYour Name struct tcl_status_ring { 46*5113495bSYour Name uint32_t gse_ctrl : 4, //[3:0] 47*5113495bSYour Name ase_fse_sel : 1, //[4] 48*5113495bSYour Name cache_op_res : 2, //[6:5] 49*5113495bSYour Name index_search_en : 1, //[7] 50*5113495bSYour Name msdu_cnt_n : 24; //[31:8] 51*5113495bSYour Name uint32_t msdu_byte_cnt_n : 32; //[31:0] 52*5113495bSYour Name uint32_t msdu_timestmp_n : 32; //[31:0] 53*5113495bSYour Name uint32_t cmd_meta_data_31_0 : 32; //[31:0] 54*5113495bSYour Name uint32_t cmd_meta_data_63_32 : 32; //[31:0] 55*5113495bSYour Name uint32_t hash_indx_val : 20, //[19:0] 56*5113495bSYour Name cache_set_num : 4, //[23:20] 57*5113495bSYour Name reserved_5a : 8; //[31:24] 58*5113495bSYour Name uint32_t reserved_6a : 32; //[31:0] 59*5113495bSYour Name uint32_t reserved_7a : 20, //[19:0] 60*5113495bSYour Name ring_id : 8, //[27:20] 61*5113495bSYour Name looping_count : 4; //[31:28] 62*5113495bSYour Name }; 63*5113495bSYour Name 64*5113495bSYour Name /* 65*5113495bSYour Name 66*5113495bSYour Name gse_ctrl 67*5113495bSYour Name 68*5113495bSYour Name GSE control operations. This includes cache operations 69*5113495bSYour Name and table entry statistics read/clear operation. 70*5113495bSYour Name 71*5113495bSYour Name <enum 0 rd_stat> Report or Read statistics 72*5113495bSYour Name 73*5113495bSYour Name <enum 1 srch_dis> Search disable. Report only Hash 74*5113495bSYour Name 75*5113495bSYour Name <enum 2 Wr_bk_single> Write Back single entry 76*5113495bSYour Name 77*5113495bSYour Name <enum 3 wr_bk_all> Write Back entire cache entry 78*5113495bSYour Name 79*5113495bSYour Name <enum 4 inval_single> Invalidate single cache entry 80*5113495bSYour Name 81*5113495bSYour Name <enum 5 inval_all> Invalidate entire cache 82*5113495bSYour Name 83*5113495bSYour Name <enum 6 wr_bk_inval_single> Write back and Invalidate 84*5113495bSYour Name single entry in cache 85*5113495bSYour Name 86*5113495bSYour Name <enum 7 wr_bk_inval_all> write back and invalidate 87*5113495bSYour Name entire cache 88*5113495bSYour Name 89*5113495bSYour Name <enum 8 clr_stat_single> Clear statistics for single 90*5113495bSYour Name entry 91*5113495bSYour Name 92*5113495bSYour Name <legal 0-8> 93*5113495bSYour Name 94*5113495bSYour Name Rest of the values reserved. 95*5113495bSYour Name 96*5113495bSYour Name For all single entry control operations (write back, 97*5113495bSYour Name Invalidate or both)Statistics will be reported 98*5113495bSYour Name 99*5113495bSYour Name ase_fse_sel 100*5113495bSYour Name 101*5113495bSYour Name Search Engine for which operation is done. 102*5113495bSYour Name 103*5113495bSYour Name 1'b0: Address Search Engine Result 104*5113495bSYour Name 105*5113495bSYour Name 1'b1: Flow Search Engine result 106*5113495bSYour Name 107*5113495bSYour Name cache_op_res 108*5113495bSYour Name 109*5113495bSYour Name Cache operation result. Following are results of cache 110*5113495bSYour Name operation. 111*5113495bSYour Name 112*5113495bSYour Name <enum 0 op_done> Operation successful 113*5113495bSYour Name 114*5113495bSYour Name <enum 1 not_fnd> Entry not found in Table 115*5113495bSYour Name 116*5113495bSYour Name <enum 2 timeout_er> Timeout Error 117*5113495bSYour Name 118*5113495bSYour Name <legal 0-2> 119*5113495bSYour Name 120*5113495bSYour Name index_search_en 121*5113495bSYour Name 122*5113495bSYour Name When this bit is set to 1 control_buffer_addr[19:0] will 123*5113495bSYour Name be considered as index of the AST or Flow table and GSE 124*5113495bSYour Name commands will be executed accordingly on the entry pointed 125*5113495bSYour Name by the index. 126*5113495bSYour Name 127*5113495bSYour Name This feature is disabled by setting this bit to 0. 128*5113495bSYour Name 129*5113495bSYour Name <enum 0 index_based_cmd_disable> 130*5113495bSYour Name 131*5113495bSYour Name <enum 1 index_based_cmd_enable> 132*5113495bSYour Name 133*5113495bSYour Name 134*5113495bSYour Name 135*5113495bSYour Name <legal all> 136*5113495bSYour Name 137*5113495bSYour Name msdu_cnt_n 138*5113495bSYour Name 139*5113495bSYour Name MSDU count of Entry. Valid when GSE_CTRL is 4'b0111 and 140*5113495bSYour Name 4'b1000 141*5113495bSYour Name 142*5113495bSYour Name msdu_byte_cnt_n 143*5113495bSYour Name 144*5113495bSYour Name MSDU byte count for entry 1. Valid when GSE_CTRL is 145*5113495bSYour Name 4'b0111 and 4'b1000 146*5113495bSYour Name 147*5113495bSYour Name msdu_timestmp_n 148*5113495bSYour Name 149*5113495bSYour Name MSDU timestamp for entry 1. Valid when GSE_CTRL is 150*5113495bSYour Name 4'b0111 and 4'b1000 151*5113495bSYour Name 152*5113495bSYour Name cmd_meta_data_31_0 153*5113495bSYour Name 154*5113495bSYour Name Meta data from input ring 155*5113495bSYour Name 156*5113495bSYour Name <legal all> 157*5113495bSYour Name 158*5113495bSYour Name cmd_meta_data_63_32 159*5113495bSYour Name 160*5113495bSYour Name Meta data from input ring 161*5113495bSYour Name 162*5113495bSYour Name <legal all> 163*5113495bSYour Name 164*5113495bSYour Name hash_indx_val 165*5113495bSYour Name 166*5113495bSYour Name 167*5113495bSYour Name Hash value of the entry in table in case of search 168*5113495bSYour Name failed or search disable. 169*5113495bSYour Name 170*5113495bSYour Name <legal all> 171*5113495bSYour Name 172*5113495bSYour Name cache_set_num 173*5113495bSYour Name 174*5113495bSYour Name Cache set number copied from TCL_GSE_CMD 175*5113495bSYour Name 176*5113495bSYour Name reserved_5a 177*5113495bSYour Name 178*5113495bSYour Name <legal 0> 179*5113495bSYour Name 180*5113495bSYour Name reserved_6a 181*5113495bSYour Name 182*5113495bSYour Name <legal 0> 183*5113495bSYour Name 184*5113495bSYour Name reserved_7a 185*5113495bSYour Name 186*5113495bSYour Name <legal 0> 187*5113495bSYour Name 188*5113495bSYour Name ring_id 189*5113495bSYour Name 190*5113495bSYour Name The buffer pointer ring ID. 191*5113495bSYour Name 192*5113495bSYour Name 193*5113495bSYour Name 194*5113495bSYour Name Helps with debugging when dumping ring contents. 195*5113495bSYour Name 196*5113495bSYour Name <legal all> 197*5113495bSYour Name 198*5113495bSYour Name looping_count 199*5113495bSYour Name 200*5113495bSYour Name A count value that indicates the number of times the 201*5113495bSYour Name producer of entries into the Ring has looped around the 202*5113495bSYour Name ring. 203*5113495bSYour Name 204*5113495bSYour Name At initialization time, this value is set to 0. On the 205*5113495bSYour Name first loop, this value is set to 1. After the max value is 206*5113495bSYour Name reached allowed by the number of bits for this field, the 207*5113495bSYour Name count value continues with 0 again. 208*5113495bSYour Name 209*5113495bSYour Name 210*5113495bSYour Name 211*5113495bSYour Name In case SW is the consumer of the ring entries, it can 212*5113495bSYour Name use this field to figure out up to where the producer of 213*5113495bSYour Name entries has created new entries. This eliminates the need to 214*5113495bSYour Name check where the head pointer' of the ring is located once 215*5113495bSYour Name the SW starts processing an interrupt indicating that new 216*5113495bSYour Name entries have been put into this ring... 217*5113495bSYour Name 218*5113495bSYour Name 219*5113495bSYour Name 220*5113495bSYour Name Also note that SW if it wants only needs to look at the 221*5113495bSYour Name LSB bit of this count value. 222*5113495bSYour Name 223*5113495bSYour Name <legal all> 224*5113495bSYour Name */ 225*5113495bSYour Name 226*5113495bSYour Name 227*5113495bSYour Name /* Description TCL_STATUS_RING_0_GSE_CTRL 228*5113495bSYour Name 229*5113495bSYour Name GSE control operations. This includes cache operations 230*5113495bSYour Name and table entry statistics read/clear operation. 231*5113495bSYour Name 232*5113495bSYour Name <enum 0 rd_stat> Report or Read statistics 233*5113495bSYour Name 234*5113495bSYour Name <enum 1 srch_dis> Search disable. Report only Hash 235*5113495bSYour Name 236*5113495bSYour Name <enum 2 Wr_bk_single> Write Back single entry 237*5113495bSYour Name 238*5113495bSYour Name <enum 3 wr_bk_all> Write Back entire cache entry 239*5113495bSYour Name 240*5113495bSYour Name <enum 4 inval_single> Invalidate single cache entry 241*5113495bSYour Name 242*5113495bSYour Name <enum 5 inval_all> Invalidate entire cache 243*5113495bSYour Name 244*5113495bSYour Name <enum 6 wr_bk_inval_single> Write back and Invalidate 245*5113495bSYour Name single entry in cache 246*5113495bSYour Name 247*5113495bSYour Name <enum 7 wr_bk_inval_all> write back and invalidate 248*5113495bSYour Name entire cache 249*5113495bSYour Name 250*5113495bSYour Name <enum 8 clr_stat_single> Clear statistics for single 251*5113495bSYour Name entry 252*5113495bSYour Name 253*5113495bSYour Name <legal 0-8> 254*5113495bSYour Name 255*5113495bSYour Name Rest of the values reserved. 256*5113495bSYour Name 257*5113495bSYour Name For all single entry control operations (write back, 258*5113495bSYour Name Invalidate or both)Statistics will be reported 259*5113495bSYour Name */ 260*5113495bSYour Name #define TCL_STATUS_RING_0_GSE_CTRL_OFFSET 0x00000000 261*5113495bSYour Name #define TCL_STATUS_RING_0_GSE_CTRL_LSB 0 262*5113495bSYour Name #define TCL_STATUS_RING_0_GSE_CTRL_MASK 0x0000000f 263*5113495bSYour Name 264*5113495bSYour Name /* Description TCL_STATUS_RING_0_ASE_FSE_SEL 265*5113495bSYour Name 266*5113495bSYour Name Search Engine for which operation is done. 267*5113495bSYour Name 268*5113495bSYour Name 1'b0: Address Search Engine Result 269*5113495bSYour Name 270*5113495bSYour Name 1'b1: Flow Search Engine result 271*5113495bSYour Name */ 272*5113495bSYour Name #define TCL_STATUS_RING_0_ASE_FSE_SEL_OFFSET 0x00000000 273*5113495bSYour Name #define TCL_STATUS_RING_0_ASE_FSE_SEL_LSB 4 274*5113495bSYour Name #define TCL_STATUS_RING_0_ASE_FSE_SEL_MASK 0x00000010 275*5113495bSYour Name 276*5113495bSYour Name /* Description TCL_STATUS_RING_0_CACHE_OP_RES 277*5113495bSYour Name 278*5113495bSYour Name Cache operation result. Following are results of cache 279*5113495bSYour Name operation. 280*5113495bSYour Name 281*5113495bSYour Name <enum 0 op_done> Operation successful 282*5113495bSYour Name 283*5113495bSYour Name <enum 1 not_fnd> Entry not found in Table 284*5113495bSYour Name 285*5113495bSYour Name <enum 2 timeout_er> Timeout Error 286*5113495bSYour Name 287*5113495bSYour Name <legal 0-2> 288*5113495bSYour Name */ 289*5113495bSYour Name #define TCL_STATUS_RING_0_CACHE_OP_RES_OFFSET 0x00000000 290*5113495bSYour Name #define TCL_STATUS_RING_0_CACHE_OP_RES_LSB 5 291*5113495bSYour Name #define TCL_STATUS_RING_0_CACHE_OP_RES_MASK 0x00000060 292*5113495bSYour Name 293*5113495bSYour Name /* Description TCL_STATUS_RING_0_INDEX_SEARCH_EN 294*5113495bSYour Name 295*5113495bSYour Name When this bit is set to 1 control_buffer_addr[19:0] will 296*5113495bSYour Name be considered as index of the AST or Flow table and GSE 297*5113495bSYour Name commands will be executed accordingly on the entry pointed 298*5113495bSYour Name by the index. 299*5113495bSYour Name 300*5113495bSYour Name This feature is disabled by setting this bit to 0. 301*5113495bSYour Name 302*5113495bSYour Name <enum 0 index_based_cmd_disable> 303*5113495bSYour Name 304*5113495bSYour Name <enum 1 index_based_cmd_enable> 305*5113495bSYour Name 306*5113495bSYour Name 307*5113495bSYour Name 308*5113495bSYour Name <legal all> 309*5113495bSYour Name */ 310*5113495bSYour Name #define TCL_STATUS_RING_0_INDEX_SEARCH_EN_OFFSET 0x00000000 311*5113495bSYour Name #define TCL_STATUS_RING_0_INDEX_SEARCH_EN_LSB 7 312*5113495bSYour Name #define TCL_STATUS_RING_0_INDEX_SEARCH_EN_MASK 0x00000080 313*5113495bSYour Name 314*5113495bSYour Name /* Description TCL_STATUS_RING_0_MSDU_CNT_N 315*5113495bSYour Name 316*5113495bSYour Name MSDU count of Entry. Valid when GSE_CTRL is 4'b0111 and 317*5113495bSYour Name 4'b1000 318*5113495bSYour Name */ 319*5113495bSYour Name #define TCL_STATUS_RING_0_MSDU_CNT_N_OFFSET 0x00000000 320*5113495bSYour Name #define TCL_STATUS_RING_0_MSDU_CNT_N_LSB 8 321*5113495bSYour Name #define TCL_STATUS_RING_0_MSDU_CNT_N_MASK 0xffffff00 322*5113495bSYour Name 323*5113495bSYour Name /* Description TCL_STATUS_RING_1_MSDU_BYTE_CNT_N 324*5113495bSYour Name 325*5113495bSYour Name MSDU byte count for entry 1. Valid when GSE_CTRL is 326*5113495bSYour Name 4'b0111 and 4'b1000 327*5113495bSYour Name */ 328*5113495bSYour Name #define TCL_STATUS_RING_1_MSDU_BYTE_CNT_N_OFFSET 0x00000004 329*5113495bSYour Name #define TCL_STATUS_RING_1_MSDU_BYTE_CNT_N_LSB 0 330*5113495bSYour Name #define TCL_STATUS_RING_1_MSDU_BYTE_CNT_N_MASK 0xffffffff 331*5113495bSYour Name 332*5113495bSYour Name /* Description TCL_STATUS_RING_2_MSDU_TIMESTMP_N 333*5113495bSYour Name 334*5113495bSYour Name MSDU timestamp for entry 1. Valid when GSE_CTRL is 335*5113495bSYour Name 4'b0111 and 4'b1000 336*5113495bSYour Name */ 337*5113495bSYour Name #define TCL_STATUS_RING_2_MSDU_TIMESTMP_N_OFFSET 0x00000008 338*5113495bSYour Name #define TCL_STATUS_RING_2_MSDU_TIMESTMP_N_LSB 0 339*5113495bSYour Name #define TCL_STATUS_RING_2_MSDU_TIMESTMP_N_MASK 0xffffffff 340*5113495bSYour Name 341*5113495bSYour Name /* Description TCL_STATUS_RING_3_CMD_META_DATA_31_0 342*5113495bSYour Name 343*5113495bSYour Name Meta data from input ring 344*5113495bSYour Name 345*5113495bSYour Name <legal all> 346*5113495bSYour Name */ 347*5113495bSYour Name #define TCL_STATUS_RING_3_CMD_META_DATA_31_0_OFFSET 0x0000000c 348*5113495bSYour Name #define TCL_STATUS_RING_3_CMD_META_DATA_31_0_LSB 0 349*5113495bSYour Name #define TCL_STATUS_RING_3_CMD_META_DATA_31_0_MASK 0xffffffff 350*5113495bSYour Name 351*5113495bSYour Name /* Description TCL_STATUS_RING_4_CMD_META_DATA_63_32 352*5113495bSYour Name 353*5113495bSYour Name Meta data from input ring 354*5113495bSYour Name 355*5113495bSYour Name <legal all> 356*5113495bSYour Name */ 357*5113495bSYour Name #define TCL_STATUS_RING_4_CMD_META_DATA_63_32_OFFSET 0x00000010 358*5113495bSYour Name #define TCL_STATUS_RING_4_CMD_META_DATA_63_32_LSB 0 359*5113495bSYour Name #define TCL_STATUS_RING_4_CMD_META_DATA_63_32_MASK 0xffffffff 360*5113495bSYour Name 361*5113495bSYour Name /* Description TCL_STATUS_RING_5_HASH_INDX_VAL 362*5113495bSYour Name 363*5113495bSYour Name 364*5113495bSYour Name Hash value of the entry in table in case of search 365*5113495bSYour Name failed or search disable. 366*5113495bSYour Name 367*5113495bSYour Name <legal all> 368*5113495bSYour Name */ 369*5113495bSYour Name #define TCL_STATUS_RING_5_HASH_INDX_VAL_OFFSET 0x00000014 370*5113495bSYour Name #define TCL_STATUS_RING_5_HASH_INDX_VAL_LSB 0 371*5113495bSYour Name #define TCL_STATUS_RING_5_HASH_INDX_VAL_MASK 0x000fffff 372*5113495bSYour Name 373*5113495bSYour Name /* Description TCL_STATUS_RING_5_CACHE_SET_NUM 374*5113495bSYour Name 375*5113495bSYour Name Cache set number copied from TCL_GSE_CMD 376*5113495bSYour Name */ 377*5113495bSYour Name #define TCL_STATUS_RING_5_CACHE_SET_NUM_OFFSET 0x00000014 378*5113495bSYour Name #define TCL_STATUS_RING_5_CACHE_SET_NUM_LSB 20 379*5113495bSYour Name #define TCL_STATUS_RING_5_CACHE_SET_NUM_MASK 0x00f00000 380*5113495bSYour Name 381*5113495bSYour Name /* Description TCL_STATUS_RING_5_RESERVED_5A 382*5113495bSYour Name 383*5113495bSYour Name <legal 0> 384*5113495bSYour Name */ 385*5113495bSYour Name #define TCL_STATUS_RING_5_RESERVED_5A_OFFSET 0x00000014 386*5113495bSYour Name #define TCL_STATUS_RING_5_RESERVED_5A_LSB 24 387*5113495bSYour Name #define TCL_STATUS_RING_5_RESERVED_5A_MASK 0xff000000 388*5113495bSYour Name 389*5113495bSYour Name /* Description TCL_STATUS_RING_6_RESERVED_6A 390*5113495bSYour Name 391*5113495bSYour Name <legal 0> 392*5113495bSYour Name */ 393*5113495bSYour Name #define TCL_STATUS_RING_6_RESERVED_6A_OFFSET 0x00000018 394*5113495bSYour Name #define TCL_STATUS_RING_6_RESERVED_6A_LSB 0 395*5113495bSYour Name #define TCL_STATUS_RING_6_RESERVED_6A_MASK 0xffffffff 396*5113495bSYour Name 397*5113495bSYour Name /* Description TCL_STATUS_RING_7_RESERVED_7A 398*5113495bSYour Name 399*5113495bSYour Name <legal 0> 400*5113495bSYour Name */ 401*5113495bSYour Name #define TCL_STATUS_RING_7_RESERVED_7A_OFFSET 0x0000001c 402*5113495bSYour Name #define TCL_STATUS_RING_7_RESERVED_7A_LSB 0 403*5113495bSYour Name #define TCL_STATUS_RING_7_RESERVED_7A_MASK 0x000fffff 404*5113495bSYour Name 405*5113495bSYour Name /* Description TCL_STATUS_RING_7_RING_ID 406*5113495bSYour Name 407*5113495bSYour Name The buffer pointer ring ID. 408*5113495bSYour Name 409*5113495bSYour Name 410*5113495bSYour Name 411*5113495bSYour Name Helps with debugging when dumping ring contents. 412*5113495bSYour Name 413*5113495bSYour Name <legal all> 414*5113495bSYour Name */ 415*5113495bSYour Name #define TCL_STATUS_RING_7_RING_ID_OFFSET 0x0000001c 416*5113495bSYour Name #define TCL_STATUS_RING_7_RING_ID_LSB 20 417*5113495bSYour Name #define TCL_STATUS_RING_7_RING_ID_MASK 0x0ff00000 418*5113495bSYour Name 419*5113495bSYour Name /* Description TCL_STATUS_RING_7_LOOPING_COUNT 420*5113495bSYour Name 421*5113495bSYour Name A count value that indicates the number of times the 422*5113495bSYour Name producer of entries into the Ring has looped around the 423*5113495bSYour Name ring. 424*5113495bSYour Name 425*5113495bSYour Name At initialization time, this value is set to 0. On the 426*5113495bSYour Name first loop, this value is set to 1. After the max value is 427*5113495bSYour Name reached allowed by the number of bits for this field, the 428*5113495bSYour Name count value continues with 0 again. 429*5113495bSYour Name 430*5113495bSYour Name 431*5113495bSYour Name 432*5113495bSYour Name In case SW is the consumer of the ring entries, it can 433*5113495bSYour Name use this field to figure out up to where the producer of 434*5113495bSYour Name entries has created new entries. This eliminates the need to 435*5113495bSYour Name check where the head pointer' of the ring is located once 436*5113495bSYour Name the SW starts processing an interrupt indicating that new 437*5113495bSYour Name entries have been put into this ring... 438*5113495bSYour Name 439*5113495bSYour Name 440*5113495bSYour Name 441*5113495bSYour Name Also note that SW if it wants only needs to look at the 442*5113495bSYour Name LSB bit of this count value. 443*5113495bSYour Name 444*5113495bSYour Name <legal all> 445*5113495bSYour Name */ 446*5113495bSYour Name #define TCL_STATUS_RING_7_LOOPING_COUNT_OFFSET 0x0000001c 447*5113495bSYour Name #define TCL_STATUS_RING_7_LOOPING_COUNT_LSB 28 448*5113495bSYour Name #define TCL_STATUS_RING_7_LOOPING_COUNT_MASK 0xf0000000 449*5113495bSYour Name 450*5113495bSYour Name 451*5113495bSYour Name #endif // _TCL_STATUS_RING_H_ 452