1 /* SPDX-License-Identifier: GPL-2.0-only */
3 * Copyright (C) 2017 Chelsio Communications. All rights reserved.
6 #ifndef __CUDBG_ENTITY_H__
7 #define __CUDBG_ENTITY_H__
16 #define CUDBG_ENTITY_SIGNATURE 0xCCEDB001
18 struct cudbg_mbox_log
{
19 struct mbox_cmd entry
;
24 struct cudbg_cim_qcfg
{
26 u16 base
[CIM_NUM_IBQ
+ CIM_NUM_OBQ_T5
];
27 u16 size
[CIM_NUM_IBQ
+ CIM_NUM_OBQ_T5
];
28 u16 thres
[CIM_NUM_IBQ
];
29 u32 obq_wr
[2 * CIM_NUM_OBQ_T5
];
30 u32 stat
[4 * (CIM_NUM_IBQ
+ CIM_NUM_OBQ_T5
)];
33 struct cudbg_rss_vf_conf
{
38 struct cudbg_pm_stats
{
39 u32 tx_cnt
[T6_PM_NSTATS
];
40 u32 rx_cnt
[T6_PM_NSTATS
];
41 u64 tx_cyc
[T6_PM_NSTATS
];
42 u64 rx_cyc
[T6_PM_NSTATS
];
45 struct cudbg_hw_sched
{
48 u32 pace_tab
[NTX_SCHED
];
53 #define SGE_QBASE_DATA_REG_NUM 4
55 struct sge_qbase_reg_field
{
57 u32 reg_data
[SGE_QBASE_DATA_REG_NUM
];
58 /* Max supported PFs */
59 u32 pf_data_value
[PCIE_FW_MASTER_M
+ 1][SGE_QBASE_DATA_REG_NUM
];
60 /* Max supported VFs */
61 u32 vf_data_value
[T6_VF_M
+ 1][SGE_QBASE_DATA_REG_NUM
];
62 u32 vfcount
; /* Actual number of max vfs in current configuration */
68 u32 ireg_local_offset
;
69 u32 ireg_offset_range
;
73 struct ireg_field tp_pio
;
77 struct cudbg_ulprx_la
{
78 u32 data
[ULPRX_LA_SIZE
* 8];
88 static const char * const cudbg_region
[] = {
89 "DBQ contexts:", "IMSG contexts:", "FLM cache:", "TCBs:",
90 "Pstructs:", "Timers:", "Rx FL:", "Tx FL:", "Pstruct FL:",
91 "Tx payload:", "Rx payload:", "LE hash:", "iSCSI region:",
92 "TDDP region:", "TPT region:", "STAG region:", "RQ region:",
93 "RQUDP region:", "PBL region:", "TXPBL region:",
94 "DBVFIFO region:", "ULPRX state:", "ULPTX state:",
98 /* Memory region info relative to current memory (i.e. wrt 0). */
99 struct cudbg_region_info
{
100 bool exist
; /* Does region exists in current memory? */
101 u32 start
; /* Start wrt 0 */
102 u32 end
; /* End wrt 0 */
105 struct cudbg_mem_desc
{
111 #define CUDBG_MEMINFO_REV 1
113 struct cudbg_meminfo
{
114 struct cudbg_mem_desc avail
[4];
115 struct cudbg_mem_desc mem
[ARRAY_SIZE(cudbg_region
) + 3];
122 u32 rx_pages_data
[3];
123 u32 tx_pages_data
[4];
128 u32 loopback_used
[NCHAN
];
129 u32 loopback_alloc
[NCHAN
];
130 u32 p_structs_free_cnt
;
135 struct cudbg_cim_pif_la
{
140 struct cudbg_clk_info
{
143 u64 persist_timer_min
;
144 u64 persist_timer_max
;
145 u64 keepalive_idle_timer
;
146 u64 keepalive_interval
;
156 struct cudbg_tid_info_region
{
184 #define CUDBG_TID_INFO_REV 1
186 struct cudbg_tid_info_region_rev1
{
187 struct cudbg_ver_hdr ver_hdr
;
188 struct cudbg_tid_info_region tid
;
193 #define CUDBG_LOWMEM_MAX_CTXT_QIDS 256
194 #define CUDBG_MAX_FL_QIDS 1024
196 struct cudbg_ch_cntxt
{
199 u32 data
[SGE_CTXT_SIZE
/ 4];
202 #define CUDBG_MAX_RPLC_SIZE 128
204 struct cudbg_mps_tcam
{
223 #define CUDBG_VPD_PF_SIZE 0x800
224 #define CUDBG_SCFG_VER_ADDR 0x06
225 #define CUDBG_SCFG_VER_LEN 4
226 #define CUDBG_VPD_VER_ADDR 0x18c7
227 #define CUDBG_VPD_VER_LEN 2
229 struct cudbg_vpd_data
{
230 u8 sn
[SERNUM_LEN
+ 1];
232 u8 na
[MACADDR_LEN
+ 1];
242 #define CUDBG_MAX_TCAM_TID 0x800
243 #define CUDBG_T6_CLIP 1536
244 #define CUDBG_MAX_TID_COMP_EN 6144
245 #define CUDBG_MAX_TID_COMP_DIS 3072
247 enum cudbg_le_entry_types
{
250 LE_ET_TCAM_SERVER
= 2,
251 LE_ET_TCAM_FILTER
= 3,
253 LE_ET_TCAM_ROUTING
= 5,
255 LE_ET_INVALID_TID
= 8,
267 struct cudbg_tid_data
{
272 u32 data
[NUM_LE_DB_DBGI_RSP_DATA_INSTANCES
];
275 #define CUDBG_NUM_ULPTX 11
276 #define CUDBG_NUM_ULPTX_READ 512
277 #define CUDBG_NUM_ULPTX_ASIC 6
278 #define CUDBG_NUM_ULPTX_ASIC_READ 128
280 #define CUDBG_ULPTX_LA_REV 1
282 struct cudbg_ulptx_la
{
283 u32 rdptr
[CUDBG_NUM_ULPTX
];
284 u32 wrptr
[CUDBG_NUM_ULPTX
];
285 u32 rddata
[CUDBG_NUM_ULPTX
];
286 u32 rd_data
[CUDBG_NUM_ULPTX
][CUDBG_NUM_ULPTX_READ
];
287 u32 rdptr_asic
[CUDBG_NUM_ULPTX_ASIC_READ
];
288 u32 rddata_asic
[CUDBG_NUM_ULPTX_ASIC_READ
][CUDBG_NUM_ULPTX_ASIC
];
291 #define CUDBG_CHAC_PBT_ADDR 0x2800
292 #define CUDBG_CHAC_PBT_LRF 0x3000
293 #define CUDBG_CHAC_PBT_DATA 0x3800
294 #define CUDBG_PBT_DYNAMIC_ENTRIES 8
295 #define CUDBG_PBT_STATIC_ENTRIES 16
296 #define CUDBG_LRF_ENTRIES 8
297 #define CUDBG_PBT_DATA_ENTRIES 512
299 struct cudbg_pbt_tables
{
300 u32 pbt_dynamic
[CUDBG_PBT_DYNAMIC_ENTRIES
];
301 u32 pbt_static
[CUDBG_PBT_STATIC_ENTRIES
];
302 u32 lrf_table
[CUDBG_LRF_ENTRIES
];
303 u32 pbt_data
[CUDBG_PBT_DATA_ENTRIES
];
306 enum cudbg_qdesc_qtype
{
307 CUDBG_QTYPE_UNKNOWN
= 0,
315 CUDBG_QTYPE_OFLD_TXQ
,
316 CUDBG_QTYPE_RDMA_RXQ
,
317 CUDBG_QTYPE_RDMA_FLQ
,
318 CUDBG_QTYPE_RDMA_CIQ
,
319 CUDBG_QTYPE_ISCSI_RXQ
,
320 CUDBG_QTYPE_ISCSI_FLQ
,
321 CUDBG_QTYPE_ISCSIT_RXQ
,
322 CUDBG_QTYPE_ISCSIT_FLQ
,
323 CUDBG_QTYPE_CRYPTO_TXQ
,
324 CUDBG_QTYPE_CRYPTO_RXQ
,
325 CUDBG_QTYPE_CRYPTO_FLQ
,
328 CUDBG_QTYPE_ETHOFLD_TXQ
,
329 CUDBG_QTYPE_ETHOFLD_RXQ
,
330 CUDBG_QTYPE_ETHOFLD_FLQ
,
334 #define CUDBG_QDESC_REV 1
336 struct cudbg_qdesc_entry
{
342 u8 data
[0]; /* Must be last */
345 struct cudbg_qdesc_info
{
346 u32 qdesc_entry_size
;
348 u8 data
[0]; /* Must be last */
351 #define IREG_NUM_ELEM 4
353 static const u32 t6_tp_pio_array
[][IREG_NUM_ELEM
] = {
354 {0x7e40, 0x7e44, 0x020, 28}, /* t6_tp_pio_regs_20_to_3b */
355 {0x7e40, 0x7e44, 0x040, 10}, /* t6_tp_pio_regs_40_to_49 */
356 {0x7e40, 0x7e44, 0x050, 10}, /* t6_tp_pio_regs_50_to_59 */
357 {0x7e40, 0x7e44, 0x060, 14}, /* t6_tp_pio_regs_60_to_6d */
358 {0x7e40, 0x7e44, 0x06F, 1}, /* t6_tp_pio_regs_6f */
359 {0x7e40, 0x7e44, 0x070, 6}, /* t6_tp_pio_regs_70_to_75 */
360 {0x7e40, 0x7e44, 0x130, 18}, /* t6_tp_pio_regs_130_to_141 */
361 {0x7e40, 0x7e44, 0x145, 19}, /* t6_tp_pio_regs_145_to_157 */
362 {0x7e40, 0x7e44, 0x160, 1}, /* t6_tp_pio_regs_160 */
363 {0x7e40, 0x7e44, 0x230, 25}, /* t6_tp_pio_regs_230_to_248 */
364 {0x7e40, 0x7e44, 0x24a, 3}, /* t6_tp_pio_regs_24c */
365 {0x7e40, 0x7e44, 0x8C0, 1} /* t6_tp_pio_regs_8c0 */
368 static const u32 t5_tp_pio_array
[][IREG_NUM_ELEM
] = {
369 {0x7e40, 0x7e44, 0x020, 28}, /* t5_tp_pio_regs_20_to_3b */
370 {0x7e40, 0x7e44, 0x040, 19}, /* t5_tp_pio_regs_40_to_52 */
371 {0x7e40, 0x7e44, 0x054, 2}, /* t5_tp_pio_regs_54_to_55 */
372 {0x7e40, 0x7e44, 0x060, 13}, /* t5_tp_pio_regs_60_to_6c */
373 {0x7e40, 0x7e44, 0x06F, 1}, /* t5_tp_pio_regs_6f */
374 {0x7e40, 0x7e44, 0x120, 4}, /* t5_tp_pio_regs_120_to_123 */
375 {0x7e40, 0x7e44, 0x12b, 2}, /* t5_tp_pio_regs_12b_to_12c */
376 {0x7e40, 0x7e44, 0x12f, 21}, /* t5_tp_pio_regs_12f_to_143 */
377 {0x7e40, 0x7e44, 0x145, 19}, /* t5_tp_pio_regs_145_to_157 */
378 {0x7e40, 0x7e44, 0x230, 25}, /* t5_tp_pio_regs_230_to_248 */
379 {0x7e40, 0x7e44, 0x8C0, 1} /* t5_tp_pio_regs_8c0 */
382 static const u32 t6_tp_tm_pio_array
[][IREG_NUM_ELEM
] = {
383 {0x7e18, 0x7e1c, 0x0, 12}
386 static const u32 t5_tp_tm_pio_array
[][IREG_NUM_ELEM
] = {
387 {0x7e18, 0x7e1c, 0x0, 12}
390 static const u32 t6_tp_mib_index_array
[6][IREG_NUM_ELEM
] = {
391 {0x7e50, 0x7e54, 0x0, 13},
392 {0x7e50, 0x7e54, 0x10, 6},
393 {0x7e50, 0x7e54, 0x18, 21},
394 {0x7e50, 0x7e54, 0x30, 32},
395 {0x7e50, 0x7e54, 0x50, 22},
396 {0x7e50, 0x7e54, 0x68, 12}
399 static const u32 t5_tp_mib_index_array
[9][IREG_NUM_ELEM
] = {
400 {0x7e50, 0x7e54, 0x0, 13},
401 {0x7e50, 0x7e54, 0x10, 6},
402 {0x7e50, 0x7e54, 0x18, 8},
403 {0x7e50, 0x7e54, 0x20, 13},
404 {0x7e50, 0x7e54, 0x30, 16},
405 {0x7e50, 0x7e54, 0x40, 16},
406 {0x7e50, 0x7e54, 0x50, 16},
407 {0x7e50, 0x7e54, 0x60, 6},
408 {0x7e50, 0x7e54, 0x68, 4}
411 static const u32 t5_sge_dbg_index_array
[2][IREG_NUM_ELEM
] = {
412 {0x10cc, 0x10d0, 0x0, 16},
413 {0x10cc, 0x10d4, 0x0, 16},
416 static const u32 t6_sge_qbase_index_array
[] = {
417 /* 1 addr reg SGE_QBASE_INDEX and 4 data reg SGE_QBASE_MAP[0-3] */
418 0x1250, 0x1240, 0x1244, 0x1248, 0x124c,
421 static const u32 t5_pcie_pdbg_array
[][IREG_NUM_ELEM
] = {
422 {0x5a04, 0x5a0c, 0x00, 0x20}, /* t5_pcie_pdbg_regs_00_to_20 */
423 {0x5a04, 0x5a0c, 0x21, 0x20}, /* t5_pcie_pdbg_regs_21_to_40 */
424 {0x5a04, 0x5a0c, 0x41, 0x10}, /* t5_pcie_pdbg_regs_41_to_50 */
427 static const u32 t5_pcie_cdbg_array
[][IREG_NUM_ELEM
] = {
428 {0x5a10, 0x5a18, 0x00, 0x20}, /* t5_pcie_cdbg_regs_00_to_20 */
429 {0x5a10, 0x5a18, 0x21, 0x18}, /* t5_pcie_cdbg_regs_21_to_37 */
432 static const u32 t5_pm_rx_array
[][IREG_NUM_ELEM
] = {
433 {0x8FD0, 0x8FD4, 0x10000, 0x20}, /* t5_pm_rx_regs_10000_to_10020 */
434 {0x8FD0, 0x8FD4, 0x10021, 0x0D}, /* t5_pm_rx_regs_10021_to_1002c */
437 static const u32 t5_pm_tx_array
[][IREG_NUM_ELEM
] = {
438 {0x8FF0, 0x8FF4, 0x10000, 0x20}, /* t5_pm_tx_regs_10000_to_10020 */
439 {0x8FF0, 0x8FF4, 0x10021, 0x1D}, /* t5_pm_tx_regs_10021_to_1003c */
442 #define CUDBG_NUM_PCIE_CONFIG_REGS 0x61
444 static const u32 t5_pcie_config_array
[][2] = {
461 static const u32 t6_ma_ireg_array
[][IREG_NUM_ELEM
] = {
462 {0x78f8, 0x78fc, 0xa000, 23}, /* t6_ma_regs_a000_to_a016 */
463 {0x78f8, 0x78fc, 0xa400, 30}, /* t6_ma_regs_a400_to_a41e */
464 {0x78f8, 0x78fc, 0xa800, 20} /* t6_ma_regs_a800_to_a813 */
467 static const u32 t6_ma_ireg_array2
[][IREG_NUM_ELEM
] = {
468 {0x78f8, 0x78fc, 0xe400, 17}, /* t6_ma_regs_e400_to_e600 */
469 {0x78f8, 0x78fc, 0xe640, 13} /* t6_ma_regs_e640_to_e7c0 */
472 static const u32 t6_up_cim_reg_array
[][IREG_NUM_ELEM
+ 1] = {
473 {0x7b50, 0x7b54, 0x2000, 0x20, 0}, /* up_cim_2000_to_207c */
474 {0x7b50, 0x7b54, 0x2080, 0x1d, 0}, /* up_cim_2080_to_20fc */
475 {0x7b50, 0x7b54, 0x00, 0x20, 0}, /* up_cim_00_to_7c */
476 {0x7b50, 0x7b54, 0x80, 0x20, 0}, /* up_cim_80_to_fc */
477 {0x7b50, 0x7b54, 0x100, 0x11, 0}, /* up_cim_100_to_14c */
478 {0x7b50, 0x7b54, 0x200, 0x10, 0}, /* up_cim_200_to_23c */
479 {0x7b50, 0x7b54, 0x240, 0x2, 0}, /* up_cim_240_to_244 */
480 {0x7b50, 0x7b54, 0x250, 0x2, 0}, /* up_cim_250_to_254 */
481 {0x7b50, 0x7b54, 0x260, 0x2, 0}, /* up_cim_260_to_264 */
482 {0x7b50, 0x7b54, 0x270, 0x2, 0}, /* up_cim_270_to_274 */
483 {0x7b50, 0x7b54, 0x280, 0x20, 0}, /* up_cim_280_to_2fc */
484 {0x7b50, 0x7b54, 0x300, 0x20, 0}, /* up_cim_300_to_37c */
485 {0x7b50, 0x7b54, 0x380, 0x14, 0}, /* up_cim_380_to_3cc */
486 {0x7b50, 0x7b54, 0x4900, 0x4, 0x4}, /* up_cim_4900_to_4c60 */
487 {0x7b50, 0x7b54, 0x4904, 0x4, 0x4}, /* up_cim_4904_to_4c64 */
488 {0x7b50, 0x7b54, 0x4908, 0x4, 0x4}, /* up_cim_4908_to_4c68 */
489 {0x7b50, 0x7b54, 0x4910, 0x4, 0x4}, /* up_cim_4910_to_4c70 */
490 {0x7b50, 0x7b54, 0x4914, 0x4, 0x4}, /* up_cim_4914_to_4c74 */
491 {0x7b50, 0x7b54, 0x4920, 0x10, 0x10}, /* up_cim_4920_to_4a10 */
492 {0x7b50, 0x7b54, 0x4924, 0x10, 0x10}, /* up_cim_4924_to_4a14 */
493 {0x7b50, 0x7b54, 0x4928, 0x10, 0x10}, /* up_cim_4928_to_4a18 */
494 {0x7b50, 0x7b54, 0x492c, 0x10, 0x10}, /* up_cim_492c_to_4a1c */
497 static const u32 t5_up_cim_reg_array
[][IREG_NUM_ELEM
+ 1] = {
498 {0x7b50, 0x7b54, 0x2000, 0x20, 0}, /* up_cim_2000_to_207c */
499 {0x7b50, 0x7b54, 0x2080, 0x19, 0}, /* up_cim_2080_to_20ec */
500 {0x7b50, 0x7b54, 0x00, 0x20, 0}, /* up_cim_00_to_7c */
501 {0x7b50, 0x7b54, 0x80, 0x20, 0}, /* up_cim_80_to_fc */
502 {0x7b50, 0x7b54, 0x100, 0x11, 0}, /* up_cim_100_to_14c */
503 {0x7b50, 0x7b54, 0x200, 0x10, 0}, /* up_cim_200_to_23c */
504 {0x7b50, 0x7b54, 0x240, 0x2, 0}, /* up_cim_240_to_244 */
505 {0x7b50, 0x7b54, 0x250, 0x2, 0}, /* up_cim_250_to_254 */
506 {0x7b50, 0x7b54, 0x260, 0x2, 0}, /* up_cim_260_to_264 */
507 {0x7b50, 0x7b54, 0x270, 0x2, 0}, /* up_cim_270_to_274 */
508 {0x7b50, 0x7b54, 0x280, 0x20, 0}, /* up_cim_280_to_2fc */
509 {0x7b50, 0x7b54, 0x300, 0x20, 0}, /* up_cim_300_to_37c */
510 {0x7b50, 0x7b54, 0x380, 0x14, 0}, /* up_cim_380_to_3cc */
513 static const u32 t6_hma_ireg_array
[][IREG_NUM_ELEM
] = {
514 {0x51320, 0x51324, 0xa000, 32} /* t6_hma_regs_a000_to_a01f */
516 #endif /* __CUDBG_ENTITY_H__ */