net/cxgbe: convert to SPDX license tags
[dpdk.git] / drivers / net / cxgbe / base / t4_hw.h
1 /* SPDX-License-Identifier: BSD-3-Clause
2  * Copyright(c) 2014-2018 Chelsio Communications.
3  * All rights reserved.
4  */
5
6 #ifndef __T4_HW_H
7 #define __T4_HW_H
8
9 enum {
10         NCHAN           = 4,     /* # of HW channels */
11         EEPROMSIZE      = 17408, /* Serial EEPROM physical size */
12         EEPROMVSIZE     = 32768, /* Serial EEPROM virtual address space size */
13         EEPROMPFSIZE    = 1024,  /* EEPROM writable area size for PFn, n>0 */
14         NMTUS           = 16,    /* size of MTU table */
15         NCCTRL_WIN      = 32,    /* # of congestion control windows */
16         MBOX_LEN        = 64,    /* mailbox size in bytes */
17         UDBS_SEG_SIZE   = 128,   /* segment size for BAR2 user doorbells */
18 };
19
20 enum {
21         CIMLA_SIZE     = 2048,  /* # of 32-bit words in CIM LA */
22 };
23
24 enum {
25         SF_SEC_SIZE = 64 * 1024,      /* serial flash sector size */
26 };
27
28 enum {
29         SGE_NTIMERS = 6,          /* # of interrupt holdoff timer values */
30         SGE_NCOUNTERS = 4,        /* # of interrupt packet counter values */
31 };
32
33 /* PCI-e memory window access */
34 enum pcie_memwin {
35         MEMWIN_NIC      = 0,
36 };
37
38 enum {
39         SGE_MAX_WR_LEN = 512,     /* max WR size in bytes */
40         SGE_EQ_IDXSIZE = 64,      /* egress queue pidx/cidx unit size */
41         /* max no. of desc allowed in WR */
42         SGE_MAX_WR_NDESC = SGE_MAX_WR_LEN / SGE_EQ_IDXSIZE,
43 };
44
45 struct sge_qstat {                /* data written to SGE queue status entries */
46         __be32 qid;
47         __be16 cidx;
48         __be16 pidx;
49 };
50
51 /*
52  * Structure for last 128 bits of response descriptors
53  */
54 struct rsp_ctrl {
55         __be32 hdrbuflen_pidx;
56         __be32 pldbuflen_qid;
57         union {
58                 u8 type_gen;
59                 __be64 last_flit;
60         } u;
61 };
62
63 #define S_RSPD_NEWBUF    31
64 #define V_RSPD_NEWBUF(x) ((x) << S_RSPD_NEWBUF)
65 #define F_RSPD_NEWBUF    V_RSPD_NEWBUF(1U)
66
67 #define S_RSPD_LEN    0
68 #define M_RSPD_LEN    0x7fffffff
69 #define V_RSPD_LEN(x) ((x) << S_RSPD_LEN)
70 #define G_RSPD_LEN(x) (((x) >> S_RSPD_LEN) & M_RSPD_LEN)
71
72 #define S_RSPD_GEN    7
73 #define V_RSPD_GEN(x) ((x) << S_RSPD_GEN)
74 #define F_RSPD_GEN    V_RSPD_GEN(1U)
75
76 #define S_RSPD_TYPE    4
77 #define M_RSPD_TYPE    0x3
78 #define V_RSPD_TYPE(x) ((x) << S_RSPD_TYPE)
79 #define G_RSPD_TYPE(x) (((x) >> S_RSPD_TYPE) & M_RSPD_TYPE)
80
81 /* Rx queue interrupt deferral field: timer index */
82 #define S_QINTR_CNT_EN    0
83 #define V_QINTR_CNT_EN(x) ((x) << S_QINTR_CNT_EN)
84 #define F_QINTR_CNT_EN    V_QINTR_CNT_EN(1U)
85
86 #define S_QINTR_TIMER_IDX    1
87 #define M_QINTR_TIMER_IDX    0x7
88 #define V_QINTR_TIMER_IDX(x) ((x) << S_QINTR_TIMER_IDX)
89 #define G_QINTR_TIMER_IDX(x) (((x) >> S_QINTR_TIMER_IDX) & M_QINTR_TIMER_IDX)
90
91 /*
92  * Flash layout.
93  */
94 #define FLASH_START(start)      ((start) * SF_SEC_SIZE)
95 #define FLASH_MAX_SIZE(nsecs)   ((nsecs) * SF_SEC_SIZE)
96
97 enum {
98         /*
99          * Various Expansion-ROM boot images, etc.
100          */
101         FLASH_EXP_ROM_START_SEC = 0,
102         FLASH_EXP_ROM_NSECS = 6,
103         FLASH_EXP_ROM_START = FLASH_START(FLASH_EXP_ROM_START_SEC),
104         FLASH_EXP_ROM_MAX_SIZE = FLASH_MAX_SIZE(FLASH_EXP_ROM_NSECS),
105
106         /*
107          * Location of firmware image in FLASH.
108          */
109         FLASH_FW_START_SEC = 8,
110         FLASH_FW_NSECS = 16,
111         FLASH_FW_START = FLASH_START(FLASH_FW_START_SEC),
112         FLASH_FW_MAX_SIZE = FLASH_MAX_SIZE(FLASH_FW_NSECS),
113
114         /*
115          * Location of bootstrap firmware image in FLASH.
116          */
117         FLASH_FWBOOTSTRAP_START_SEC = 27,
118         FLASH_FWBOOTSTRAP_NSECS = 1,
119         FLASH_FWBOOTSTRAP_START = FLASH_START(FLASH_FWBOOTSTRAP_START_SEC),
120         FLASH_FWBOOTSTRAP_MAX_SIZE = FLASH_MAX_SIZE(FLASH_FWBOOTSTRAP_NSECS),
121
122         /*
123          * Location of Firmware Configuration File in FLASH.
124          */
125         FLASH_CFG_START_SEC = 31,
126         FLASH_CFG_NSECS = 1,
127         FLASH_CFG_START = FLASH_START(FLASH_CFG_START_SEC),
128         FLASH_CFG_MAX_SIZE = FLASH_MAX_SIZE(FLASH_CFG_NSECS),
129
130         /*
131          * We don't support FLASH devices which can't support the full
132          * standard set of sections which we need for normal operations.
133          */
134         FLASH_MIN_SIZE = FLASH_CFG_START + FLASH_CFG_MAX_SIZE,
135 };
136
137 #undef FLASH_START
138 #undef FLASH_MAX_SIZE
139
140 #endif /* __T4_HW_H */