cudbg_entity.h 12 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462
  1. /*
  2. * Copyright (C) 2017 Chelsio Communications. All rights reserved.
  3. *
  4. * This program is free software; you can redistribute it and/or modify it
  5. * under the terms and conditions of the GNU General Public License,
  6. * version 2, as published by the Free Software Foundation.
  7. *
  8. * This program is distributed in the hope it will be useful, but WITHOUT
  9. * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
  10. * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
  11. * more details.
  12. *
  13. * The full GNU General Public License is included in this distribution in
  14. * the file called "COPYING".
  15. *
  16. */
  17. #ifndef __CUDBG_ENTITY_H__
  18. #define __CUDBG_ENTITY_H__
  19. #define EDC0_FLAG 0
  20. #define EDC1_FLAG 1
  21. #define MC_FLAG 2
  22. #define MC0_FLAG 3
  23. #define MC1_FLAG 4
  24. #define HMA_FLAG 5
  25. #define CUDBG_ENTITY_SIGNATURE 0xCCEDB001
  26. struct cudbg_mbox_log {
  27. struct mbox_cmd entry;
  28. u32 hi[MBOX_LEN / 8];
  29. u32 lo[MBOX_LEN / 8];
  30. };
  31. struct cudbg_cim_qcfg {
  32. u8 chip;
  33. u16 base[CIM_NUM_IBQ + CIM_NUM_OBQ_T5];
  34. u16 size[CIM_NUM_IBQ + CIM_NUM_OBQ_T5];
  35. u16 thres[CIM_NUM_IBQ];
  36. u32 obq_wr[2 * CIM_NUM_OBQ_T5];
  37. u32 stat[4 * (CIM_NUM_IBQ + CIM_NUM_OBQ_T5)];
  38. };
  39. struct cudbg_rss_vf_conf {
  40. u32 rss_vf_vfl;
  41. u32 rss_vf_vfh;
  42. };
  43. struct cudbg_pm_stats {
  44. u32 tx_cnt[T6_PM_NSTATS];
  45. u32 rx_cnt[T6_PM_NSTATS];
  46. u64 tx_cyc[T6_PM_NSTATS];
  47. u64 rx_cyc[T6_PM_NSTATS];
  48. };
  49. struct cudbg_hw_sched {
  50. u32 kbps[NTX_SCHED];
  51. u32 ipg[NTX_SCHED];
  52. u32 pace_tab[NTX_SCHED];
  53. u32 mode;
  54. u32 map;
  55. };
  56. struct ireg_field {
  57. u32 ireg_addr;
  58. u32 ireg_data;
  59. u32 ireg_local_offset;
  60. u32 ireg_offset_range;
  61. };
  62. struct ireg_buf {
  63. struct ireg_field tp_pio;
  64. u32 outbuf[32];
  65. };
  66. struct cudbg_ulprx_la {
  67. u32 data[ULPRX_LA_SIZE * 8];
  68. u32 size;
  69. };
  70. struct cudbg_tp_la {
  71. u32 size;
  72. u32 mode;
  73. u8 data[0];
  74. };
  75. static const char * const cudbg_region[] = {
  76. "DBQ contexts:", "IMSG contexts:", "FLM cache:", "TCBs:",
  77. "Pstructs:", "Timers:", "Rx FL:", "Tx FL:", "Pstruct FL:",
  78. "Tx payload:", "Rx payload:", "LE hash:", "iSCSI region:",
  79. "TDDP region:", "TPT region:", "STAG region:", "RQ region:",
  80. "RQUDP region:", "PBL region:", "TXPBL region:",
  81. "DBVFIFO region:", "ULPRX state:", "ULPTX state:",
  82. "On-chip queues:"
  83. };
  84. /* Memory region info relative to current memory (i.e. wrt 0). */
  85. struct cudbg_region_info {
  86. bool exist; /* Does region exists in current memory? */
  87. u32 start; /* Start wrt 0 */
  88. u32 end; /* End wrt 0 */
  89. };
  90. struct cudbg_mem_desc {
  91. u32 base;
  92. u32 limit;
  93. u32 idx;
  94. };
  95. struct cudbg_meminfo {
  96. struct cudbg_mem_desc avail[4];
  97. struct cudbg_mem_desc mem[ARRAY_SIZE(cudbg_region) + 3];
  98. u32 avail_c;
  99. u32 mem_c;
  100. u32 up_ram_lo;
  101. u32 up_ram_hi;
  102. u32 up_extmem2_lo;
  103. u32 up_extmem2_hi;
  104. u32 rx_pages_data[3];
  105. u32 tx_pages_data[4];
  106. u32 p_structs;
  107. u32 reserved[12];
  108. u32 port_used[4];
  109. u32 port_alloc[4];
  110. u32 loopback_used[NCHAN];
  111. u32 loopback_alloc[NCHAN];
  112. };
  113. struct cudbg_cim_pif_la {
  114. int size;
  115. u8 data[0];
  116. };
  117. struct cudbg_clk_info {
  118. u64 retransmit_min;
  119. u64 retransmit_max;
  120. u64 persist_timer_min;
  121. u64 persist_timer_max;
  122. u64 keepalive_idle_timer;
  123. u64 keepalive_interval;
  124. u64 initial_srtt;
  125. u64 finwait2_timer;
  126. u32 dack_timer;
  127. u32 res;
  128. u32 cclk_ps;
  129. u32 tre;
  130. u32 dack_re;
  131. };
  132. struct cudbg_tid_info_region {
  133. u32 ntids;
  134. u32 nstids;
  135. u32 stid_base;
  136. u32 hash_base;
  137. u32 natids;
  138. u32 nftids;
  139. u32 ftid_base;
  140. u32 aftid_base;
  141. u32 aftid_end;
  142. u32 sftid_base;
  143. u32 nsftids;
  144. u32 uotid_base;
  145. u32 nuotids;
  146. u32 sb;
  147. u32 flags;
  148. u32 le_db_conf;
  149. u32 ip_users;
  150. u32 ipv6_users;
  151. u32 hpftid_base;
  152. u32 nhpftids;
  153. };
  154. #define CUDBG_TID_INFO_REV 1
  155. struct cudbg_tid_info_region_rev1 {
  156. struct cudbg_ver_hdr ver_hdr;
  157. struct cudbg_tid_info_region tid;
  158. u32 tid_start;
  159. u32 reserved[16];
  160. };
  161. #define CUDBG_LOWMEM_MAX_CTXT_QIDS 256
  162. #define CUDBG_MAX_FL_QIDS 1024
  163. struct cudbg_ch_cntxt {
  164. u32 cntxt_type;
  165. u32 cntxt_id;
  166. u32 data[SGE_CTXT_SIZE / 4];
  167. };
  168. #define CUDBG_MAX_RPLC_SIZE 128
  169. struct cudbg_mps_tcam {
  170. u64 mask;
  171. u32 rplc[8];
  172. u32 idx;
  173. u32 cls_lo;
  174. u32 cls_hi;
  175. u32 rplc_size;
  176. u32 vniy;
  177. u32 vnix;
  178. u32 dip_hit;
  179. u32 vlan_vld;
  180. u32 repli;
  181. u16 ivlan;
  182. u8 addr[ETH_ALEN];
  183. u8 lookup_type;
  184. u8 port_num;
  185. u8 reserved[2];
  186. };
  187. #define CUDBG_VPD_PF_SIZE 0x800
  188. #define CUDBG_SCFG_VER_ADDR 0x06
  189. #define CUDBG_SCFG_VER_LEN 4
  190. #define CUDBG_VPD_VER_ADDR 0x18c7
  191. #define CUDBG_VPD_VER_LEN 2
  192. struct cudbg_vpd_data {
  193. u8 sn[SERNUM_LEN + 1];
  194. u8 bn[PN_LEN + 1];
  195. u8 na[MACADDR_LEN + 1];
  196. u8 mn[ID_LEN + 1];
  197. u16 fw_major;
  198. u16 fw_minor;
  199. u16 fw_micro;
  200. u16 fw_build;
  201. u32 scfg_vers;
  202. u32 vpd_vers;
  203. };
  204. #define CUDBG_MAX_TCAM_TID 0x800
  205. enum cudbg_le_entry_types {
  206. LE_ET_UNKNOWN = 0,
  207. LE_ET_TCAM_CON = 1,
  208. LE_ET_TCAM_SERVER = 2,
  209. LE_ET_TCAM_FILTER = 3,
  210. LE_ET_TCAM_CLIP = 4,
  211. LE_ET_TCAM_ROUTING = 5,
  212. LE_ET_HASH_CON = 6,
  213. LE_ET_INVALID_TID = 8,
  214. };
  215. struct cudbg_tcam {
  216. u32 filter_start;
  217. u32 server_start;
  218. u32 clip_start;
  219. u32 routing_start;
  220. u32 tid_hash_base;
  221. u32 max_tid;
  222. };
  223. struct cudbg_tid_data {
  224. u32 tid;
  225. u32 dbig_cmd;
  226. u32 dbig_conf;
  227. u32 dbig_rsp_stat;
  228. u32 data[NUM_LE_DB_DBGI_RSP_DATA_INSTANCES];
  229. };
  230. #define CUDBG_NUM_ULPTX 11
  231. #define CUDBG_NUM_ULPTX_READ 512
  232. struct cudbg_ulptx_la {
  233. u32 rdptr[CUDBG_NUM_ULPTX];
  234. u32 wrptr[CUDBG_NUM_ULPTX];
  235. u32 rddata[CUDBG_NUM_ULPTX];
  236. u32 rd_data[CUDBG_NUM_ULPTX][CUDBG_NUM_ULPTX_READ];
  237. };
  238. #define CUDBG_CHAC_PBT_ADDR 0x2800
  239. #define CUDBG_CHAC_PBT_LRF 0x3000
  240. #define CUDBG_CHAC_PBT_DATA 0x3800
  241. #define CUDBG_PBT_DYNAMIC_ENTRIES 8
  242. #define CUDBG_PBT_STATIC_ENTRIES 16
  243. #define CUDBG_LRF_ENTRIES 8
  244. #define CUDBG_PBT_DATA_ENTRIES 512
  245. struct cudbg_pbt_tables {
  246. u32 pbt_dynamic[CUDBG_PBT_DYNAMIC_ENTRIES];
  247. u32 pbt_static[CUDBG_PBT_STATIC_ENTRIES];
  248. u32 lrf_table[CUDBG_LRF_ENTRIES];
  249. u32 pbt_data[CUDBG_PBT_DATA_ENTRIES];
  250. };
  251. #define IREG_NUM_ELEM 4
  252. static const u32 t6_tp_pio_array[][IREG_NUM_ELEM] = {
  253. {0x7e40, 0x7e44, 0x020, 28}, /* t6_tp_pio_regs_20_to_3b */
  254. {0x7e40, 0x7e44, 0x040, 10}, /* t6_tp_pio_regs_40_to_49 */
  255. {0x7e40, 0x7e44, 0x050, 10}, /* t6_tp_pio_regs_50_to_59 */
  256. {0x7e40, 0x7e44, 0x060, 14}, /* t6_tp_pio_regs_60_to_6d */
  257. {0x7e40, 0x7e44, 0x06F, 1}, /* t6_tp_pio_regs_6f */
  258. {0x7e40, 0x7e44, 0x070, 6}, /* t6_tp_pio_regs_70_to_75 */
  259. {0x7e40, 0x7e44, 0x130, 18}, /* t6_tp_pio_regs_130_to_141 */
  260. {0x7e40, 0x7e44, 0x145, 19}, /* t6_tp_pio_regs_145_to_157 */
  261. {0x7e40, 0x7e44, 0x160, 1}, /* t6_tp_pio_regs_160 */
  262. {0x7e40, 0x7e44, 0x230, 25}, /* t6_tp_pio_regs_230_to_248 */
  263. {0x7e40, 0x7e44, 0x24a, 3}, /* t6_tp_pio_regs_24c */
  264. {0x7e40, 0x7e44, 0x8C0, 1} /* t6_tp_pio_regs_8c0 */
  265. };
  266. static const u32 t5_tp_pio_array[][IREG_NUM_ELEM] = {
  267. {0x7e40, 0x7e44, 0x020, 28}, /* t5_tp_pio_regs_20_to_3b */
  268. {0x7e40, 0x7e44, 0x040, 19}, /* t5_tp_pio_regs_40_to_52 */
  269. {0x7e40, 0x7e44, 0x054, 2}, /* t5_tp_pio_regs_54_to_55 */
  270. {0x7e40, 0x7e44, 0x060, 13}, /* t5_tp_pio_regs_60_to_6c */
  271. {0x7e40, 0x7e44, 0x06F, 1}, /* t5_tp_pio_regs_6f */
  272. {0x7e40, 0x7e44, 0x120, 4}, /* t5_tp_pio_regs_120_to_123 */
  273. {0x7e40, 0x7e44, 0x12b, 2}, /* t5_tp_pio_regs_12b_to_12c */
  274. {0x7e40, 0x7e44, 0x12f, 21}, /* t5_tp_pio_regs_12f_to_143 */
  275. {0x7e40, 0x7e44, 0x145, 19}, /* t5_tp_pio_regs_145_to_157 */
  276. {0x7e40, 0x7e44, 0x230, 25}, /* t5_tp_pio_regs_230_to_248 */
  277. {0x7e40, 0x7e44, 0x8C0, 1} /* t5_tp_pio_regs_8c0 */
  278. };
  279. static const u32 t6_tp_tm_pio_array[][IREG_NUM_ELEM] = {
  280. {0x7e18, 0x7e1c, 0x0, 12}
  281. };
  282. static const u32 t5_tp_tm_pio_array[][IREG_NUM_ELEM] = {
  283. {0x7e18, 0x7e1c, 0x0, 12}
  284. };
  285. static const u32 t6_tp_mib_index_array[6][IREG_NUM_ELEM] = {
  286. {0x7e50, 0x7e54, 0x0, 13},
  287. {0x7e50, 0x7e54, 0x10, 6},
  288. {0x7e50, 0x7e54, 0x18, 21},
  289. {0x7e50, 0x7e54, 0x30, 32},
  290. {0x7e50, 0x7e54, 0x50, 22},
  291. {0x7e50, 0x7e54, 0x68, 12}
  292. };
  293. static const u32 t5_tp_mib_index_array[9][IREG_NUM_ELEM] = {
  294. {0x7e50, 0x7e54, 0x0, 13},
  295. {0x7e50, 0x7e54, 0x10, 6},
  296. {0x7e50, 0x7e54, 0x18, 8},
  297. {0x7e50, 0x7e54, 0x20, 13},
  298. {0x7e50, 0x7e54, 0x30, 16},
  299. {0x7e50, 0x7e54, 0x40, 16},
  300. {0x7e50, 0x7e54, 0x50, 16},
  301. {0x7e50, 0x7e54, 0x60, 6},
  302. {0x7e50, 0x7e54, 0x68, 4}
  303. };
  304. static const u32 t5_sge_dbg_index_array[2][IREG_NUM_ELEM] = {
  305. {0x10cc, 0x10d0, 0x0, 16},
  306. {0x10cc, 0x10d4, 0x0, 16},
  307. };
  308. static const u32 t5_pcie_pdbg_array[][IREG_NUM_ELEM] = {
  309. {0x5a04, 0x5a0c, 0x00, 0x20}, /* t5_pcie_pdbg_regs_00_to_20 */
  310. {0x5a04, 0x5a0c, 0x21, 0x20}, /* t5_pcie_pdbg_regs_21_to_40 */
  311. {0x5a04, 0x5a0c, 0x41, 0x10}, /* t5_pcie_pdbg_regs_41_to_50 */
  312. };
  313. static const u32 t5_pcie_cdbg_array[][IREG_NUM_ELEM] = {
  314. {0x5a10, 0x5a18, 0x00, 0x20}, /* t5_pcie_cdbg_regs_00_to_20 */
  315. {0x5a10, 0x5a18, 0x21, 0x18}, /* t5_pcie_cdbg_regs_21_to_37 */
  316. };
  317. static const u32 t5_pm_rx_array[][IREG_NUM_ELEM] = {
  318. {0x8FD0, 0x8FD4, 0x10000, 0x20}, /* t5_pm_rx_regs_10000_to_10020 */
  319. {0x8FD0, 0x8FD4, 0x10021, 0x0D}, /* t5_pm_rx_regs_10021_to_1002c */
  320. };
  321. static const u32 t5_pm_tx_array[][IREG_NUM_ELEM] = {
  322. {0x8FF0, 0x8FF4, 0x10000, 0x20}, /* t5_pm_tx_regs_10000_to_10020 */
  323. {0x8FF0, 0x8FF4, 0x10021, 0x1D}, /* t5_pm_tx_regs_10021_to_1003c */
  324. };
  325. #define CUDBG_NUM_PCIE_CONFIG_REGS 0x61
  326. static const u32 t5_pcie_config_array[][2] = {
  327. {0x0, 0x34},
  328. {0x3c, 0x40},
  329. {0x50, 0x64},
  330. {0x70, 0x80},
  331. {0x94, 0xa0},
  332. {0xb0, 0xb8},
  333. {0xd0, 0xd4},
  334. {0x100, 0x128},
  335. {0x140, 0x148},
  336. {0x150, 0x164},
  337. {0x170, 0x178},
  338. {0x180, 0x194},
  339. {0x1a0, 0x1b8},
  340. {0x1c0, 0x208},
  341. };
  342. static const u32 t6_ma_ireg_array[][IREG_NUM_ELEM] = {
  343. {0x78f8, 0x78fc, 0xa000, 23}, /* t6_ma_regs_a000_to_a016 */
  344. {0x78f8, 0x78fc, 0xa400, 30}, /* t6_ma_regs_a400_to_a41e */
  345. {0x78f8, 0x78fc, 0xa800, 20} /* t6_ma_regs_a800_to_a813 */
  346. };
  347. static const u32 t6_ma_ireg_array2[][IREG_NUM_ELEM] = {
  348. {0x78f8, 0x78fc, 0xe400, 17}, /* t6_ma_regs_e400_to_e600 */
  349. {0x78f8, 0x78fc, 0xe640, 13} /* t6_ma_regs_e640_to_e7c0 */
  350. };
  351. static const u32 t6_up_cim_reg_array[][IREG_NUM_ELEM + 1] = {
  352. {0x7b50, 0x7b54, 0x2000, 0x20, 0}, /* up_cim_2000_to_207c */
  353. {0x7b50, 0x7b54, 0x2080, 0x1d, 0}, /* up_cim_2080_to_20fc */
  354. {0x7b50, 0x7b54, 0x00, 0x20, 0}, /* up_cim_00_to_7c */
  355. {0x7b50, 0x7b54, 0x80, 0x20, 0}, /* up_cim_80_to_fc */
  356. {0x7b50, 0x7b54, 0x100, 0x11, 0}, /* up_cim_100_to_14c */
  357. {0x7b50, 0x7b54, 0x200, 0x10, 0}, /* up_cim_200_to_23c */
  358. {0x7b50, 0x7b54, 0x240, 0x2, 0}, /* up_cim_240_to_244 */
  359. {0x7b50, 0x7b54, 0x250, 0x2, 0}, /* up_cim_250_to_254 */
  360. {0x7b50, 0x7b54, 0x260, 0x2, 0}, /* up_cim_260_to_264 */
  361. {0x7b50, 0x7b54, 0x270, 0x2, 0}, /* up_cim_270_to_274 */
  362. {0x7b50, 0x7b54, 0x280, 0x20, 0}, /* up_cim_280_to_2fc */
  363. {0x7b50, 0x7b54, 0x300, 0x20, 0}, /* up_cim_300_to_37c */
  364. {0x7b50, 0x7b54, 0x380, 0x14, 0}, /* up_cim_380_to_3cc */
  365. {0x7b50, 0x7b54, 0x2900, 0x4, 0x4}, /* up_cim_2900_to_3d40 */
  366. {0x7b50, 0x7b54, 0x2904, 0x4, 0x4}, /* up_cim_2904_to_3d44 */
  367. {0x7b50, 0x7b54, 0x2908, 0x4, 0x4}, /* up_cim_2908_to_3d48 */
  368. {0x7b50, 0x7b54, 0x2910, 0x4, 0x4}, /* up_cim_2910_to_3d4c */
  369. {0x7b50, 0x7b54, 0x2914, 0x4, 0x4}, /* up_cim_2914_to_3d50 */
  370. {0x7b50, 0x7b54, 0x2920, 0x10, 0x10}, /* up_cim_2920_to_2a10 */
  371. {0x7b50, 0x7b54, 0x2924, 0x10, 0x10}, /* up_cim_2924_to_2a14 */
  372. {0x7b50, 0x7b54, 0x2928, 0x10, 0x10}, /* up_cim_2928_to_2a18 */
  373. {0x7b50, 0x7b54, 0x292c, 0x10, 0x10}, /* up_cim_292c_to_2a1c */
  374. };
  375. static const u32 t5_up_cim_reg_array[][IREG_NUM_ELEM + 1] = {
  376. {0x7b50, 0x7b54, 0x2000, 0x20, 0}, /* up_cim_2000_to_207c */
  377. {0x7b50, 0x7b54, 0x2080, 0x19, 0}, /* up_cim_2080_to_20ec */
  378. {0x7b50, 0x7b54, 0x00, 0x20, 0}, /* up_cim_00_to_7c */
  379. {0x7b50, 0x7b54, 0x80, 0x20, 0}, /* up_cim_80_to_fc */
  380. {0x7b50, 0x7b54, 0x100, 0x11, 0}, /* up_cim_100_to_14c */
  381. {0x7b50, 0x7b54, 0x200, 0x10, 0}, /* up_cim_200_to_23c */
  382. {0x7b50, 0x7b54, 0x240, 0x2, 0}, /* up_cim_240_to_244 */
  383. {0x7b50, 0x7b54, 0x250, 0x2, 0}, /* up_cim_250_to_254 */
  384. {0x7b50, 0x7b54, 0x260, 0x2, 0}, /* up_cim_260_to_264 */
  385. {0x7b50, 0x7b54, 0x270, 0x2, 0}, /* up_cim_270_to_274 */
  386. {0x7b50, 0x7b54, 0x280, 0x20, 0}, /* up_cim_280_to_2fc */
  387. {0x7b50, 0x7b54, 0x300, 0x20, 0}, /* up_cim_300_to_37c */
  388. {0x7b50, 0x7b54, 0x380, 0x14, 0}, /* up_cim_380_to_3cc */
  389. {0x7b50, 0x7b54, 0x2900, 0x4, 0x4}, /* up_cim_2900_to_3d40 */
  390. {0x7b50, 0x7b54, 0x2904, 0x4, 0x4}, /* up_cim_2904_to_3d44 */
  391. {0x7b50, 0x7b54, 0x2908, 0x4, 0x4}, /* up_cim_2908_to_3d48 */
  392. {0x7b50, 0x7b54, 0x2910, 0x4, 0x4}, /* up_cim_2910_to_3d4c */
  393. {0x7b50, 0x7b54, 0x2914, 0x4, 0x4}, /* up_cim_2914_to_3d50 */
  394. {0x7b50, 0x7b54, 0x2918, 0x4, 0x4}, /* up_cim_2918_to_3d54 */
  395. {0x7b50, 0x7b54, 0x291c, 0x4, 0x4}, /* up_cim_291c_to_3d58 */
  396. {0x7b50, 0x7b54, 0x2924, 0x10, 0x10}, /* up_cim_2924_to_2914 */
  397. {0x7b50, 0x7b54, 0x2928, 0x10, 0x10}, /* up_cim_2928_to_2a18 */
  398. {0x7b50, 0x7b54, 0x292c, 0x10, 0x10}, /* up_cim_292c_to_2a1c */
  399. };
  400. static const u32 t6_hma_ireg_array[][IREG_NUM_ELEM] = {
  401. {0x51320, 0x51324, 0xa000, 32} /* t6_hma_regs_a000_to_a01f */
  402. };
  403. #endif /* __CUDBG_ENTITY_H__ */