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