e5c44b96d0a7b56bac9e9bc997f8786c5b27754b
[linux-2.6-microblaze.git] / drivers / net / ethernet / chelsio / cxgb4 / cudbg_if.h
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
18 #ifndef __CUDBG_IF_H__
19 #define __CUDBG_IF_H__
20
21 /* Error codes */
22 #define CUDBG_STATUS_NO_MEM -19
23 #define CUDBG_STATUS_ENTITY_NOT_FOUND -24
24 #define CUDBG_SYSTEM_ERROR -29
25 #define CUDBG_STATUS_CCLK_NOT_DEFINED -32
26
27 #define CUDBG_MAJOR_VERSION 1
28 #define CUDBG_MINOR_VERSION 14
29
30 enum cudbg_dbg_entity_type {
31         CUDBG_REG_DUMP = 1,
32         CUDBG_DEV_LOG = 2,
33         CUDBG_CIM_LA = 3,
34         CUDBG_CIM_MA_LA = 4,
35         CUDBG_CIM_QCFG = 5,
36         CUDBG_CIM_IBQ_TP0 = 6,
37         CUDBG_CIM_IBQ_TP1 = 7,
38         CUDBG_CIM_IBQ_ULP = 8,
39         CUDBG_CIM_IBQ_SGE0 = 9,
40         CUDBG_CIM_IBQ_SGE1 = 10,
41         CUDBG_CIM_IBQ_NCSI = 11,
42         CUDBG_CIM_OBQ_ULP0 = 12,
43         CUDBG_CIM_OBQ_ULP1 = 13,
44         CUDBG_CIM_OBQ_ULP2 = 14,
45         CUDBG_CIM_OBQ_ULP3 = 15,
46         CUDBG_CIM_OBQ_SGE = 16,
47         CUDBG_CIM_OBQ_NCSI = 17,
48         CUDBG_EDC0 = 18,
49         CUDBG_EDC1 = 19,
50         CUDBG_RSS = 22,
51         CUDBG_RSS_VF_CONF = 25,
52         CUDBG_HW_SCHED = 31,
53         CUDBG_TP_INDIRECT = 36,
54         CUDBG_SGE_INDIRECT = 37,
55         CUDBG_ULPRX_LA = 41,
56         CUDBG_TP_LA = 43,
57         CUDBG_CIM_PIF_LA = 45,
58         CUDBG_CIM_OBQ_RXQ0 = 47,
59         CUDBG_CIM_OBQ_RXQ1 = 48,
60         CUDBG_PCIE_INDIRECT = 50,
61         CUDBG_PM_INDIRECT = 51,
62         CUDBG_TID_INFO = 54,
63         CUDBG_MPS_TCAM = 57,
64         CUDBG_MA_INDIRECT = 61,
65         CUDBG_ULPTX_LA = 62,
66         CUDBG_UP_CIM_INDIRECT = 64,
67         CUDBG_PBT_TABLE = 65,
68         CUDBG_MBOX_LOG = 66,
69         CUDBG_HMA_INDIRECT = 67,
70         CUDBG_MAX_ENTITY = 70,
71 };
72
73 struct cudbg_init {
74         struct adapter *adap; /* Pointer to adapter structure */
75         void *outbuf; /* Output buffer */
76         u32 outbuf_size;  /* Output buffer size */
77 };
78
79 static inline unsigned int cudbg_mbytes_to_bytes(unsigned int size)
80 {
81         return size * 1024 * 1024;
82 }
83 #endif /* __CUDBG_IF_H__ */