Merge branch 'for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/jikos/hid
[pandora-kernel.git] / drivers / net / bnx2x_init.h
1 /* bnx2x_init.h: Broadcom Everest network driver.
2  *               Structures and macroes needed during the initialization.
3  *
4  * Copyright (c) 2007-2009 Broadcom Corporation
5  *
6  * This program is free software; you can redistribute it and/or modify
7  * it under the terms of the GNU General Public License as published by
8  * the Free Software Foundation.
9  *
10  * Maintained by: Eilon Greenstein <eilong@broadcom.com>
11  * Written by: Eliezer Tamir
12  * Modified by: Vladislav Zolotarov <vladz@broadcom.com>
13  */
14
15 #ifndef BNX2X_INIT_H
16 #define BNX2X_INIT_H
17
18 #define COMMON                          0x1
19 #define PORT0                           0x2
20 #define PORT1                           0x4
21
22 #define INIT_EMULATION                  0x1
23 #define INIT_FPGA                       0x2
24 #define INIT_ASIC                       0x4
25 #define INIT_HARDWARE                   0x7
26
27 #define TSTORM_INTMEM_ADDR              TSEM_REG_FAST_MEMORY
28 #define CSTORM_INTMEM_ADDR              CSEM_REG_FAST_MEMORY
29 #define XSTORM_INTMEM_ADDR              XSEM_REG_FAST_MEMORY
30 #define USTORM_INTMEM_ADDR              USEM_REG_FAST_MEMORY
31 /* RAM0 size in bytes */
32 #define STORM_INTMEM_SIZE_E1            0x5800
33 #define STORM_INTMEM_SIZE_E1H           0x10000
34 #define STORM_INTMEM_SIZE(bp)   ((CHIP_IS_E1H(bp) ? STORM_INTMEM_SIZE_E1H : \
35                                                     STORM_INTMEM_SIZE_E1) / 4)
36
37
38 /* Init operation types and structures */
39 /* Common for both E1 and E1H */
40 #define OP_RD                   0x1 /* read single register */
41 #define OP_WR                   0x2 /* write single register */
42 #define OP_IW                   0x3 /* write single register using mailbox */
43 #define OP_SW                   0x4 /* copy a string to the device */
44 #define OP_SI                   0x5 /* copy a string using mailbox */
45 #define OP_ZR                   0x6 /* clear memory */
46 #define OP_ZP                   0x7 /* unzip then copy with DMAE */
47 #define OP_WR_64                0x8 /* write 64 bit pattern */
48 #define OP_WB                   0x9 /* copy a string using DMAE */
49
50 /* FPGA and EMUL specific operations */
51 #define OP_WR_EMUL              0xa /* write single register on Emulation */
52 #define OP_WR_FPGA              0xb /* write single register on FPGA */
53 #define OP_WR_ASIC              0xc /* write single register on ASIC */
54
55 /* Init stages */
56 #define COMMON_STAGE            0
57 #define PORT0_STAGE             1
58 #define PORT1_STAGE             2
59 /* Never reorder FUNCx stages !!! */
60 #define FUNC0_STAGE             3
61 #define FUNC1_STAGE             4
62 #define FUNC2_STAGE             5
63 #define FUNC3_STAGE             6
64 #define FUNC4_STAGE             7
65 #define FUNC5_STAGE             8
66 #define FUNC6_STAGE             9
67 #define FUNC7_STAGE             10
68 #define STAGE_IDX_MAX           11
69
70 #define STAGE_START             0
71 #define STAGE_END               1
72
73
74 /* Indices of blocks */
75 #define PRS_BLOCK               0
76 #define SRCH_BLOCK              1
77 #define TSDM_BLOCK              2
78 #define TCM_BLOCK               3
79 #define BRB1_BLOCK              4
80 #define TSEM_BLOCK              5
81 #define PXPCS_BLOCK             6
82 #define EMAC0_BLOCK             7
83 #define EMAC1_BLOCK             8
84 #define DBU_BLOCK               9
85 #define MISC_BLOCK              10
86 #define DBG_BLOCK               11
87 #define NIG_BLOCK               12
88 #define MCP_BLOCK               13
89 #define UPB_BLOCK               14
90 #define CSDM_BLOCK              15
91 #define USDM_BLOCK              16
92 #define CCM_BLOCK               17
93 #define UCM_BLOCK               18
94 #define USEM_BLOCK              19
95 #define CSEM_BLOCK              20
96 #define XPB_BLOCK               21
97 #define DQ_BLOCK                22
98 #define TIMERS_BLOCK            23
99 #define XSDM_BLOCK              24
100 #define QM_BLOCK                25
101 #define PBF_BLOCK               26
102 #define XCM_BLOCK               27
103 #define XSEM_BLOCK              28
104 #define CDU_BLOCK               29
105 #define DMAE_BLOCK              30
106 #define PXP_BLOCK               31
107 #define CFC_BLOCK               32
108 #define HC_BLOCK                33
109 #define PXP2_BLOCK              34
110 #define MISC_AEU_BLOCK          35
111
112 /* Returns the index of start or end of a specific block stage in ops array*/
113 #define BLOCK_OPS_IDX(block, stage, end) \
114        (2*(((block)*STAGE_IDX_MAX) + (stage)) + (end))
115
116
117 struct raw_op {
118         u32 op:8;
119         u32 offset:24;
120         u32 raw_data;
121 };
122
123 struct op_read {
124         u32 op:8;
125         u32 offset:24;
126         u32 pad;
127 };
128
129 struct op_write {
130         u32 op:8;
131         u32 offset:24;
132         u32 val;
133 };
134
135 struct op_string_write {
136         u32 op:8;
137         u32 offset:24;
138 #ifdef __LITTLE_ENDIAN
139         u16 data_off;
140         u16 data_len;
141 #else /* __BIG_ENDIAN */
142         u16 data_len;
143         u16 data_off;
144 #endif
145 };
146
147 struct op_zero {
148         u32 op:8;
149         u32 offset:24;
150         u32 len;
151 };
152
153 union init_op {
154         struct op_read          read;
155         struct op_write         write;
156         struct op_string_write  str_wr;
157         struct op_zero          zero;
158         struct raw_op           raw;
159 };
160
161 /****************************************************************************
162 * PXP
163 ****************************************************************************/
164 /*
165  * This code configures the PCI read/write arbiter
166  * which implements a weighted round robin
167  * between the virtual queues in the chip.
168  *
169  * The values were derived for each PCI max payload and max request size.
170  * since max payload and max request size are only known at run time,
171  * this is done as a separate init stage.
172  */
173
174 #define NUM_WR_Q                        13
175 #define NUM_RD_Q                        29
176 #define MAX_RD_ORD                      3
177 #define MAX_WR_ORD                      2
178
179 /* configuration for one arbiter queue */
180 struct arb_line {
181         int l;
182         int add;
183         int ubound;
184 };
185
186 /* derived configuration for each read queue for each max request size */
187 static const struct arb_line read_arb_data[NUM_RD_Q][MAX_RD_ORD + 1] = {
188 /* 1 */ { {8, 64, 25}, {16, 64, 25}, {32, 64, 25}, {64, 64, 41} },
189         { {4, 8,  4},  {4,  8,  4},  {4,  8,  4},  {4,  8,  4}  },
190         { {4, 3,  3},  {4,  3,  3},  {4,  3,  3},  {4,  3,  3}  },
191         { {8, 3,  6},  {16, 3,  11}, {16, 3,  11}, {16, 3,  11} },
192         { {8, 64, 25}, {16, 64, 25}, {32, 64, 25}, {64, 64, 41} },
193         { {8, 3,  6},  {16, 3,  11}, {32, 3,  21}, {64, 3,  41} },
194         { {8, 3,  6},  {16, 3,  11}, {32, 3,  21}, {64, 3,  41} },
195         { {8, 3,  6},  {16, 3,  11}, {32, 3,  21}, {64, 3,  41} },
196         { {8, 3,  6},  {16, 3,  11}, {32, 3,  21}, {64, 3,  41} },
197 /* 10 */{ {8, 3,  6},  {16, 3,  11}, {32, 3,  21}, {32, 3,  21} },
198         { {8, 3,  6},  {16, 3,  11}, {32, 3,  21}, {32, 3,  21} },
199         { {8, 3,  6},  {16, 3,  11}, {32, 3,  21}, {32, 3,  21} },
200         { {8, 3,  6},  {16, 3,  11}, {32, 3,  21}, {32, 3,  21} },
201         { {8, 3,  6},  {16, 3,  11}, {32, 3,  21}, {32, 3,  21} },
202         { {8, 3,  6},  {16, 3,  11}, {32, 3,  21}, {32, 3,  21} },
203         { {8, 3,  6},  {16, 3,  11}, {32, 3,  21}, {32, 3,  21} },
204         { {8, 3,  6},  {16, 3,  11}, {32, 3,  21}, {32, 3,  21} },
205         { {8, 3,  6},  {16, 3,  11}, {32, 3,  21}, {32, 3,  21} },
206         { {8, 3,  6},  {16, 3,  11}, {32, 3,  21}, {32, 3,  21} },
207 /* 20 */{ {8, 3,  6},  {16, 3,  11}, {32, 3,  21}, {32, 3,  21} },
208         { {8, 3,  6},  {16, 3,  11}, {32, 3,  21}, {32, 3,  21} },
209         { {8, 3,  6},  {16, 3,  11}, {32, 3,  21}, {32, 3,  21} },
210         { {8, 3,  6},  {16, 3,  11}, {32, 3,  21}, {32, 3,  21} },
211         { {8, 3,  6},  {16, 3,  11}, {32, 3,  21}, {32, 3,  21} },
212         { {8, 3,  6},  {16, 3,  11}, {32, 3,  21}, {32, 3,  21} },
213         { {8, 3,  6},  {16, 3,  11}, {32, 3,  21}, {32, 3,  21} },
214         { {8, 3,  6},  {16, 3,  11}, {32, 3,  21}, {32, 3,  21} },
215         { {8, 3,  6},  {16, 3,  11}, {32, 3,  21}, {32, 3,  21} },
216         { {8, 64, 25}, {16, 64, 41}, {32, 64, 81}, {64, 64, 120} }
217 };
218
219 /* derived configuration for each write queue for each max request size */
220 static const struct arb_line write_arb_data[NUM_WR_Q][MAX_WR_ORD + 1] = {
221 /* 1 */ { {4, 6,  3},  {4,  6,  3},  {4,  6,  3} },
222         { {4, 2,  3},  {4,  2,  3},  {4,  2,  3} },
223         { {8, 2,  6},  {16, 2,  11}, {16, 2,  11} },
224         { {8, 2,  6},  {16, 2,  11}, {32, 2,  21} },
225         { {8, 2,  6},  {16, 2,  11}, {32, 2,  21} },
226         { {8, 2,  6},  {16, 2,  11}, {32, 2,  21} },
227         { {8, 64, 25}, {16, 64, 25}, {32, 64, 25} },
228         { {8, 2,  6},  {16, 2,  11}, {16, 2,  11} },
229         { {8, 2,  6},  {16, 2,  11}, {16, 2,  11} },
230 /* 10 */{ {8, 9,  6},  {16, 9,  11}, {32, 9,  21} },
231         { {8, 47, 19}, {16, 47, 19}, {32, 47, 21} },
232         { {8, 9,  6},  {16, 9,  11}, {16, 9,  11} },
233         { {8, 64, 25}, {16, 64, 41}, {32, 64, 81} }
234 };
235
236 /* register addresses for read queues */
237 static const struct arb_line read_arb_addr[NUM_RD_Q-1] = {
238 /* 1 */ {PXP2_REG_RQ_BW_RD_L0, PXP2_REG_RQ_BW_RD_ADD0,
239                 PXP2_REG_RQ_BW_RD_UBOUND0},
240         {PXP2_REG_PSWRQ_BW_L1, PXP2_REG_PSWRQ_BW_ADD1,
241                 PXP2_REG_PSWRQ_BW_UB1},
242         {PXP2_REG_PSWRQ_BW_L2, PXP2_REG_PSWRQ_BW_ADD2,
243                 PXP2_REG_PSWRQ_BW_UB2},
244         {PXP2_REG_PSWRQ_BW_L3, PXP2_REG_PSWRQ_BW_ADD3,
245                 PXP2_REG_PSWRQ_BW_UB3},
246         {PXP2_REG_RQ_BW_RD_L4, PXP2_REG_RQ_BW_RD_ADD4,
247                 PXP2_REG_RQ_BW_RD_UBOUND4},
248         {PXP2_REG_RQ_BW_RD_L5, PXP2_REG_RQ_BW_RD_ADD5,
249                 PXP2_REG_RQ_BW_RD_UBOUND5},
250         {PXP2_REG_PSWRQ_BW_L6, PXP2_REG_PSWRQ_BW_ADD6,
251                 PXP2_REG_PSWRQ_BW_UB6},
252         {PXP2_REG_PSWRQ_BW_L7, PXP2_REG_PSWRQ_BW_ADD7,
253                 PXP2_REG_PSWRQ_BW_UB7},
254         {PXP2_REG_PSWRQ_BW_L8, PXP2_REG_PSWRQ_BW_ADD8,
255                 PXP2_REG_PSWRQ_BW_UB8},
256 /* 10 */{PXP2_REG_PSWRQ_BW_L9, PXP2_REG_PSWRQ_BW_ADD9,
257                 PXP2_REG_PSWRQ_BW_UB9},
258         {PXP2_REG_PSWRQ_BW_L10, PXP2_REG_PSWRQ_BW_ADD10,
259                 PXP2_REG_PSWRQ_BW_UB10},
260         {PXP2_REG_PSWRQ_BW_L11, PXP2_REG_PSWRQ_BW_ADD11,
261                 PXP2_REG_PSWRQ_BW_UB11},
262         {PXP2_REG_RQ_BW_RD_L12, PXP2_REG_RQ_BW_RD_ADD12,
263                 PXP2_REG_RQ_BW_RD_UBOUND12},
264         {PXP2_REG_RQ_BW_RD_L13, PXP2_REG_RQ_BW_RD_ADD13,
265                 PXP2_REG_RQ_BW_RD_UBOUND13},
266         {PXP2_REG_RQ_BW_RD_L14, PXP2_REG_RQ_BW_RD_ADD14,
267                 PXP2_REG_RQ_BW_RD_UBOUND14},
268         {PXP2_REG_RQ_BW_RD_L15, PXP2_REG_RQ_BW_RD_ADD15,
269                 PXP2_REG_RQ_BW_RD_UBOUND15},
270         {PXP2_REG_RQ_BW_RD_L16, PXP2_REG_RQ_BW_RD_ADD16,
271                 PXP2_REG_RQ_BW_RD_UBOUND16},
272         {PXP2_REG_RQ_BW_RD_L17, PXP2_REG_RQ_BW_RD_ADD17,
273                 PXP2_REG_RQ_BW_RD_UBOUND17},
274         {PXP2_REG_RQ_BW_RD_L18, PXP2_REG_RQ_BW_RD_ADD18,
275                 PXP2_REG_RQ_BW_RD_UBOUND18},
276 /* 20 */{PXP2_REG_RQ_BW_RD_L19, PXP2_REG_RQ_BW_RD_ADD19,
277                 PXP2_REG_RQ_BW_RD_UBOUND19},
278         {PXP2_REG_RQ_BW_RD_L20, PXP2_REG_RQ_BW_RD_ADD20,
279                 PXP2_REG_RQ_BW_RD_UBOUND20},
280         {PXP2_REG_RQ_BW_RD_L22, PXP2_REG_RQ_BW_RD_ADD22,
281                 PXP2_REG_RQ_BW_RD_UBOUND22},
282         {PXP2_REG_RQ_BW_RD_L23, PXP2_REG_RQ_BW_RD_ADD23,
283                 PXP2_REG_RQ_BW_RD_UBOUND23},
284         {PXP2_REG_RQ_BW_RD_L24, PXP2_REG_RQ_BW_RD_ADD24,
285                 PXP2_REG_RQ_BW_RD_UBOUND24},
286         {PXP2_REG_RQ_BW_RD_L25, PXP2_REG_RQ_BW_RD_ADD25,
287                 PXP2_REG_RQ_BW_RD_UBOUND25},
288         {PXP2_REG_RQ_BW_RD_L26, PXP2_REG_RQ_BW_RD_ADD26,
289                 PXP2_REG_RQ_BW_RD_UBOUND26},
290         {PXP2_REG_RQ_BW_RD_L27, PXP2_REG_RQ_BW_RD_ADD27,
291                 PXP2_REG_RQ_BW_RD_UBOUND27},
292         {PXP2_REG_PSWRQ_BW_L28, PXP2_REG_PSWRQ_BW_ADD28,
293                 PXP2_REG_PSWRQ_BW_UB28}
294 };
295
296 /* register addresses for write queues */
297 static const struct arb_line write_arb_addr[NUM_WR_Q-1] = {
298 /* 1 */ {PXP2_REG_PSWRQ_BW_L1, PXP2_REG_PSWRQ_BW_ADD1,
299                 PXP2_REG_PSWRQ_BW_UB1},
300         {PXP2_REG_PSWRQ_BW_L2, PXP2_REG_PSWRQ_BW_ADD2,
301                 PXP2_REG_PSWRQ_BW_UB2},
302         {PXP2_REG_PSWRQ_BW_L3, PXP2_REG_PSWRQ_BW_ADD3,
303                 PXP2_REG_PSWRQ_BW_UB3},
304         {PXP2_REG_PSWRQ_BW_L6, PXP2_REG_PSWRQ_BW_ADD6,
305                 PXP2_REG_PSWRQ_BW_UB6},
306         {PXP2_REG_PSWRQ_BW_L7, PXP2_REG_PSWRQ_BW_ADD7,
307                 PXP2_REG_PSWRQ_BW_UB7},
308         {PXP2_REG_PSWRQ_BW_L8, PXP2_REG_PSWRQ_BW_ADD8,
309                 PXP2_REG_PSWRQ_BW_UB8},
310         {PXP2_REG_PSWRQ_BW_L9, PXP2_REG_PSWRQ_BW_ADD9,
311                 PXP2_REG_PSWRQ_BW_UB9},
312         {PXP2_REG_PSWRQ_BW_L10, PXP2_REG_PSWRQ_BW_ADD10,
313                 PXP2_REG_PSWRQ_BW_UB10},
314         {PXP2_REG_PSWRQ_BW_L11, PXP2_REG_PSWRQ_BW_ADD11,
315                 PXP2_REG_PSWRQ_BW_UB11},
316 /* 10 */{PXP2_REG_PSWRQ_BW_L28, PXP2_REG_PSWRQ_BW_ADD28,
317                 PXP2_REG_PSWRQ_BW_UB28},
318         {PXP2_REG_RQ_BW_WR_L29, PXP2_REG_RQ_BW_WR_ADD29,
319                 PXP2_REG_RQ_BW_WR_UBOUND29},
320         {PXP2_REG_RQ_BW_WR_L30, PXP2_REG_RQ_BW_WR_ADD30,
321                 PXP2_REG_RQ_BW_WR_UBOUND30}
322 };
323
324
325 /****************************************************************************
326 * CDU
327 ****************************************************************************/
328
329 #define CDU_REGION_NUMBER_XCM_AG        2
330 #define CDU_REGION_NUMBER_UCM_AG        4
331
332 /**
333  * String-to-compress [31:8] = CID (all 24 bits)
334  * String-to-compress [7:4] = Region
335  * String-to-compress [3:0] = Type
336  */
337 #define CDU_VALID_DATA(_cid, _region, _type) \
338                 (((_cid) << 8) | (((_region) & 0xf) << 4) | (((_type) & 0xf)))
339 #define CDU_CRC8(_cid, _region, _type) \
340                         calc_crc8(CDU_VALID_DATA(_cid, _region, _type), 0xff)
341 #define CDU_RSRVD_VALUE_TYPE_A(_cid, _region, _type) \
342                         (0x80 | (CDU_CRC8(_cid, _region, _type) & 0x7f))
343 #define CDU_RSRVD_VALUE_TYPE_B(_crc, _type) \
344         (0x80 | ((_type) & 0xf << 3) | (CDU_CRC8(_cid, _region, _type) & 0x7))
345 #define CDU_RSRVD_INVALIDATE_CONTEXT_VALUE(_val)        ((_val) & ~0x80)
346
347
348 /* registers addresses are not in order
349    so these arrays help simplify the code */
350 static const int cm_blocks[9] = {
351         MISC_BLOCK, TCM_BLOCK,  UCM_BLOCK,  CCM_BLOCK, XCM_BLOCK,
352         TSEM_BLOCK, USEM_BLOCK, CSEM_BLOCK, XSEM_BLOCK
353 };
354
355 #endif /* BNX2X_INIT_H */
356