8e2b8a7d5b354d34f6c1ffc8b31c9e75b05c3911
[dpdk.git] / drivers / net / cxgbe / base / t4_hw.c
1 /*-
2  *   BSD LICENSE
3  *
4  *   Copyright(c) 2014-2017 Chelsio Communications.
5  *   All rights reserved.
6  *
7  *   Redistribution and use in source and binary forms, with or without
8  *   modification, are permitted provided that the following conditions
9  *   are met:
10  *
11  *     * Redistributions of source code must retain the above copyright
12  *       notice, this list of conditions and the following disclaimer.
13  *     * Redistributions in binary form must reproduce the above copyright
14  *       notice, this list of conditions and the following disclaimer in
15  *       the documentation and/or other materials provided with the
16  *       distribution.
17  *     * Neither the name of Chelsio Communications nor the names of its
18  *       contributors may be used to endorse or promote products derived
19  *       from this software without specific prior written permission.
20  *
21  *   THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
22  *   "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
23  *   LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
24  *   A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
25  *   OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
26  *   SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
27  *   LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
28  *   DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
29  *   THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
30  *   (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
31  *   OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
32  */
33
34 #include <netinet/in.h>
35
36 #include <rte_interrupts.h>
37 #include <rte_log.h>
38 #include <rte_debug.h>
39 #include <rte_pci.h>
40 #include <rte_atomic.h>
41 #include <rte_branch_prediction.h>
42 #include <rte_memory.h>
43 #include <rte_tailq.h>
44 #include <rte_eal.h>
45 #include <rte_alarm.h>
46 #include <rte_ether.h>
47 #include <rte_ethdev_driver.h>
48 #include <rte_malloc.h>
49 #include <rte_random.h>
50 #include <rte_dev.h>
51 #include <rte_byteorder.h>
52
53 #include "common.h"
54 #include "t4_regs.h"
55 #include "t4_regs_values.h"
56 #include "t4fw_interface.h"
57
58 static void init_link_config(struct link_config *lc, unsigned int pcaps,
59                              unsigned int acaps);
60
61 /**
62  * t4_read_mtu_tbl - returns the values in the HW path MTU table
63  * @adap: the adapter
64  * @mtus: where to store the MTU values
65  * @mtu_log: where to store the MTU base-2 log (may be %NULL)
66  *
67  * Reads the HW path MTU table.
68  */
69 void t4_read_mtu_tbl(struct adapter *adap, u16 *mtus, u8 *mtu_log)
70 {
71         u32 v;
72         int i;
73
74         for (i = 0; i < NMTUS; ++i) {
75                 t4_write_reg(adap, A_TP_MTU_TABLE,
76                              V_MTUINDEX(0xff) | V_MTUVALUE(i));
77                 v = t4_read_reg(adap, A_TP_MTU_TABLE);
78                 mtus[i] = G_MTUVALUE(v);
79                 if (mtu_log)
80                         mtu_log[i] = G_MTUWIDTH(v);
81         }
82 }
83
84 /**
85  * t4_tp_wr_bits_indirect - set/clear bits in an indirect TP register
86  * @adap: the adapter
87  * @addr: the indirect TP register address
88  * @mask: specifies the field within the register to modify
89  * @val: new value for the field
90  *
91  * Sets a field of an indirect TP register to the given value.
92  */
93 void t4_tp_wr_bits_indirect(struct adapter *adap, unsigned int addr,
94                             unsigned int mask, unsigned int val)
95 {
96         t4_write_reg(adap, A_TP_PIO_ADDR, addr);
97         val |= t4_read_reg(adap, A_TP_PIO_DATA) & ~mask;
98         t4_write_reg(adap, A_TP_PIO_DATA, val);
99 }
100
101 /* The minimum additive increment value for the congestion control table */
102 #define CC_MIN_INCR 2U
103
104 /**
105  * t4_load_mtus - write the MTU and congestion control HW tables
106  * @adap: the adapter
107  * @mtus: the values for the MTU table
108  * @alpha: the values for the congestion control alpha parameter
109  * @beta: the values for the congestion control beta parameter
110  *
111  * Write the HW MTU table with the supplied MTUs and the high-speed
112  * congestion control table with the supplied alpha, beta, and MTUs.
113  * We write the two tables together because the additive increments
114  * depend on the MTUs.
115  */
116 void t4_load_mtus(struct adapter *adap, const unsigned short *mtus,
117                   const unsigned short *alpha, const unsigned short *beta)
118 {
119         static const unsigned int avg_pkts[NCCTRL_WIN] = {
120                 2, 6, 10, 14, 20, 28, 40, 56, 80, 112, 160, 224, 320, 448, 640,
121                 896, 1281, 1792, 2560, 3584, 5120, 7168, 10240, 14336, 20480,
122                 28672, 40960, 57344, 81920, 114688, 163840, 229376
123         };
124
125         unsigned int i, w;
126
127         for (i = 0; i < NMTUS; ++i) {
128                 unsigned int mtu = mtus[i];
129                 unsigned int log2 = cxgbe_fls(mtu);
130
131                 if (!(mtu & ((1 << log2) >> 2)))     /* round */
132                         log2--;
133                 t4_write_reg(adap, A_TP_MTU_TABLE, V_MTUINDEX(i) |
134                              V_MTUWIDTH(log2) | V_MTUVALUE(mtu));
135
136                 for (w = 0; w < NCCTRL_WIN; ++w) {
137                         unsigned int inc;
138
139                         inc = max(((mtu - 40) * alpha[w]) / avg_pkts[w],
140                                   CC_MIN_INCR);
141
142                         t4_write_reg(adap, A_TP_CCTRL_TABLE, (i << 21) |
143                                      (w << 16) | (beta[w] << 13) | inc);
144                 }
145         }
146 }
147
148 /**
149  * t4_wait_op_done_val - wait until an operation is completed
150  * @adapter: the adapter performing the operation
151  * @reg: the register to check for completion
152  * @mask: a single-bit field within @reg that indicates completion
153  * @polarity: the value of the field when the operation is completed
154  * @attempts: number of check iterations
155  * @delay: delay in usecs between iterations
156  * @valp: where to store the value of the register at completion time
157  *
158  * Wait until an operation is completed by checking a bit in a register
159  * up to @attempts times.  If @valp is not NULL the value of the register
160  * at the time it indicated completion is stored there.  Returns 0 if the
161  * operation completes and -EAGAIN otherwise.
162  */
163 int t4_wait_op_done_val(struct adapter *adapter, int reg, u32 mask,
164                         int polarity, int attempts, int delay, u32 *valp)
165 {
166         while (1) {
167                 u32 val = t4_read_reg(adapter, reg);
168
169                 if (!!(val & mask) == polarity) {
170                         if (valp)
171                                 *valp = val;
172                         return 0;
173                 }
174                 if (--attempts == 0)
175                         return -EAGAIN;
176                 if (delay)
177                         udelay(delay);
178         }
179 }
180
181 /**
182  * t4_set_reg_field - set a register field to a value
183  * @adapter: the adapter to program
184  * @addr: the register address
185  * @mask: specifies the portion of the register to modify
186  * @val: the new value for the register field
187  *
188  * Sets a register field specified by the supplied mask to the
189  * given value.
190  */
191 void t4_set_reg_field(struct adapter *adapter, unsigned int addr, u32 mask,
192                       u32 val)
193 {
194         u32 v = t4_read_reg(adapter, addr) & ~mask;
195
196         t4_write_reg(adapter, addr, v | val);
197         (void)t4_read_reg(adapter, addr);      /* flush */
198 }
199
200 /**
201  * t4_read_indirect - read indirectly addressed registers
202  * @adap: the adapter
203  * @addr_reg: register holding the indirect address
204  * @data_reg: register holding the value of the indirect register
205  * @vals: where the read register values are stored
206  * @nregs: how many indirect registers to read
207  * @start_idx: index of first indirect register to read
208  *
209  * Reads registers that are accessed indirectly through an address/data
210  * register pair.
211  */
212 void t4_read_indirect(struct adapter *adap, unsigned int addr_reg,
213                       unsigned int data_reg, u32 *vals, unsigned int nregs,
214                       unsigned int start_idx)
215 {
216         while (nregs--) {
217                 t4_write_reg(adap, addr_reg, start_idx);
218                 *vals++ = t4_read_reg(adap, data_reg);
219                 start_idx++;
220         }
221 }
222
223 /**
224  * t4_write_indirect - write indirectly addressed registers
225  * @adap: the adapter
226  * @addr_reg: register holding the indirect addresses
227  * @data_reg: register holding the value for the indirect registers
228  * @vals: values to write
229  * @nregs: how many indirect registers to write
230  * @start_idx: address of first indirect register to write
231  *
232  * Writes a sequential block of registers that are accessed indirectly
233  * through an address/data register pair.
234  */
235 void t4_write_indirect(struct adapter *adap, unsigned int addr_reg,
236                        unsigned int data_reg, const u32 *vals,
237                        unsigned int nregs, unsigned int start_idx)
238 {
239         while (nregs--) {
240                 t4_write_reg(adap, addr_reg, start_idx++);
241                 t4_write_reg(adap, data_reg, *vals++);
242         }
243 }
244
245 /**
246  * t4_report_fw_error - report firmware error
247  * @adap: the adapter
248  *
249  * The adapter firmware can indicate error conditions to the host.
250  * If the firmware has indicated an error, print out the reason for
251  * the firmware error.
252  */
253 static void t4_report_fw_error(struct adapter *adap)
254 {
255         static const char * const reason[] = {
256                 "Crash",                        /* PCIE_FW_EVAL_CRASH */
257                 "During Device Preparation",    /* PCIE_FW_EVAL_PREP */
258                 "During Device Configuration",  /* PCIE_FW_EVAL_CONF */
259                 "During Device Initialization", /* PCIE_FW_EVAL_INIT */
260                 "Unexpected Event",     /* PCIE_FW_EVAL_UNEXPECTEDEVENT */
261                 "Insufficient Airflow",         /* PCIE_FW_EVAL_OVERHEAT */
262                 "Device Shutdown",      /* PCIE_FW_EVAL_DEVICESHUTDOWN */
263                 "Reserved",                     /* reserved */
264         };
265         u32 pcie_fw;
266
267         pcie_fw = t4_read_reg(adap, A_PCIE_FW);
268         if (pcie_fw & F_PCIE_FW_ERR)
269                 pr_err("%s: Firmware reports adapter error: %s\n",
270                        __func__, reason[G_PCIE_FW_EVAL(pcie_fw)]);
271 }
272
273 /*
274  * Get the reply to a mailbox command and store it in @rpl in big-endian order.
275  */
276 static void get_mbox_rpl(struct adapter *adap, __be64 *rpl, int nflit,
277                          u32 mbox_addr)
278 {
279         for ( ; nflit; nflit--, mbox_addr += 8)
280                 *rpl++ = htobe64(t4_read_reg64(adap, mbox_addr));
281 }
282
283 /*
284  * Handle a FW assertion reported in a mailbox.
285  */
286 static void fw_asrt(struct adapter *adap, u32 mbox_addr)
287 {
288         struct fw_debug_cmd asrt;
289
290         get_mbox_rpl(adap, (__be64 *)&asrt, sizeof(asrt) / 8, mbox_addr);
291         pr_warn("FW assertion at %.16s:%u, val0 %#x, val1 %#x\n",
292                 asrt.u.assert.filename_0_7, be32_to_cpu(asrt.u.assert.line),
293                 be32_to_cpu(asrt.u.assert.x), be32_to_cpu(asrt.u.assert.y));
294 }
295
296 #define X_CIM_PF_NOACCESS 0xeeeeeeee
297
298 /*
299  * If the Host OS Driver needs locking arround accesses to the mailbox, this
300  * can be turned on via the T4_OS_NEEDS_MBOX_LOCKING CPP define ...
301  */
302 /* makes single-statement usage a bit cleaner ... */
303 #ifdef T4_OS_NEEDS_MBOX_LOCKING
304 #define T4_OS_MBOX_LOCKING(x) x
305 #else
306 #define T4_OS_MBOX_LOCKING(x) do {} while (0)
307 #endif
308
309 /**
310  * t4_wr_mbox_meat_timeout - send a command to FW through the given mailbox
311  * @adap: the adapter
312  * @mbox: index of the mailbox to use
313  * @cmd: the command to write
314  * @size: command length in bytes
315  * @rpl: where to optionally store the reply
316  * @sleep_ok: if true we may sleep while awaiting command completion
317  * @timeout: time to wait for command to finish before timing out
318  *           (negative implies @sleep_ok=false)
319  *
320  * Sends the given command to FW through the selected mailbox and waits
321  * for the FW to execute the command.  If @rpl is not %NULL it is used to
322  * store the FW's reply to the command.  The command and its optional
323  * reply are of the same length.  Some FW commands like RESET and
324  * INITIALIZE can take a considerable amount of time to execute.
325  * @sleep_ok determines whether we may sleep while awaiting the response.
326  * If sleeping is allowed we use progressive backoff otherwise we spin.
327  * Note that passing in a negative @timeout is an alternate mechanism
328  * for specifying @sleep_ok=false.  This is useful when a higher level
329  * interface allows for specification of @timeout but not @sleep_ok ...
330  *
331  * Returns 0 on success or a negative errno on failure.  A
332  * failure can happen either because we are not able to execute the
333  * command or FW executes it but signals an error.  In the latter case
334  * the return value is the error code indicated by FW (negated).
335  */
336 int t4_wr_mbox_meat_timeout(struct adapter *adap, int mbox,
337                             const void __attribute__((__may_alias__)) *cmd,
338                             int size, void *rpl, bool sleep_ok, int timeout)
339 {
340         /*
341          * We delay in small increments at first in an effort to maintain
342          * responsiveness for simple, fast executing commands but then back
343          * off to larger delays to a maximum retry delay.
344          */
345         static const int delay[] = {
346                 1, 1, 3, 5, 10, 10, 20, 50, 100
347         };
348
349         u32 v;
350         u64 res;
351         int i, ms;
352         unsigned int delay_idx;
353         __be64 *temp = (__be64 *)malloc(size * sizeof(char));
354         __be64 *p = temp;
355         u32 data_reg = PF_REG(mbox, A_CIM_PF_MAILBOX_DATA);
356         u32 ctl_reg = PF_REG(mbox, A_CIM_PF_MAILBOX_CTRL);
357         u32 ctl;
358         struct mbox_entry entry;
359         u32 pcie_fw = 0;
360
361         if (!temp)
362                 return -ENOMEM;
363
364         if ((size & 15) || size > MBOX_LEN) {
365                 free(temp);
366                 return -EINVAL;
367         }
368
369         bzero(p, size);
370         memcpy(p, (const __be64 *)cmd, size);
371
372         /*
373          * If we have a negative timeout, that implies that we can't sleep.
374          */
375         if (timeout < 0) {
376                 sleep_ok = false;
377                 timeout = -timeout;
378         }
379
380 #ifdef T4_OS_NEEDS_MBOX_LOCKING
381         /*
382          * Queue ourselves onto the mailbox access list.  When our entry is at
383          * the front of the list, we have rights to access the mailbox.  So we
384          * wait [for a while] till we're at the front [or bail out with an
385          * EBUSY] ...
386          */
387         t4_os_atomic_add_tail(&entry, &adap->mbox_list, &adap->mbox_lock);
388
389         delay_idx = 0;
390         ms = delay[0];
391
392         for (i = 0; ; i += ms) {
393                 /*
394                  * If we've waited too long, return a busy indication.  This
395                  * really ought to be based on our initial position in the
396                  * mailbox access list but this is a start.  We very rarely
397                  * contend on access to the mailbox ...  Also check for a
398                  * firmware error which we'll report as a device error.
399                  */
400                 pcie_fw = t4_read_reg(adap, A_PCIE_FW);
401                 if (i > 4 * timeout || (pcie_fw & F_PCIE_FW_ERR)) {
402                         t4_os_atomic_list_del(&entry, &adap->mbox_list,
403                                               &adap->mbox_lock);
404                         t4_report_fw_error(adap);
405                         free(temp);
406                         return (pcie_fw & F_PCIE_FW_ERR) ? -ENXIO : -EBUSY;
407                 }
408
409                 /*
410                  * If we're at the head, break out and start the mailbox
411                  * protocol.
412                  */
413                 if (t4_os_list_first_entry(&adap->mbox_list) == &entry)
414                         break;
415
416                 /*
417                  * Delay for a bit before checking again ...
418                  */
419                 if (sleep_ok) {
420                         ms = delay[delay_idx];  /* last element may repeat */
421                         if (delay_idx < ARRAY_SIZE(delay) - 1)
422                                 delay_idx++;
423                         msleep(ms);
424                 } else {
425                         rte_delay_ms(ms);
426                 }
427         }
428 #endif /* T4_OS_NEEDS_MBOX_LOCKING */
429
430         /*
431          * Attempt to gain access to the mailbox.
432          */
433         for (i = 0; i < 4; i++) {
434                 ctl = t4_read_reg(adap, ctl_reg);
435                 v = G_MBOWNER(ctl);
436                 if (v != X_MBOWNER_NONE)
437                         break;
438         }
439
440         /*
441          * If we were unable to gain access, dequeue ourselves from the
442          * mailbox atomic access list and report the error to our caller.
443          */
444         if (v != X_MBOWNER_PL) {
445                 T4_OS_MBOX_LOCKING(t4_os_atomic_list_del(&entry,
446                                                          &adap->mbox_list,
447                                                          &adap->mbox_lock));
448                 t4_report_fw_error(adap);
449                 free(temp);
450                 return (v == X_MBOWNER_FW ? -EBUSY : -ETIMEDOUT);
451         }
452
453         /*
454          * If we gain ownership of the mailbox and there's a "valid" message
455          * in it, this is likely an asynchronous error message from the
456          * firmware.  So we'll report that and then proceed on with attempting
457          * to issue our own command ... which may well fail if the error
458          * presaged the firmware crashing ...
459          */
460         if (ctl & F_MBMSGVALID) {
461                 dev_err(adap, "found VALID command in mbox %u: "
462                         "%llx %llx %llx %llx %llx %llx %llx %llx\n", mbox,
463                         (unsigned long long)t4_read_reg64(adap, data_reg),
464                         (unsigned long long)t4_read_reg64(adap, data_reg + 8),
465                         (unsigned long long)t4_read_reg64(adap, data_reg + 16),
466                         (unsigned long long)t4_read_reg64(adap, data_reg + 24),
467                         (unsigned long long)t4_read_reg64(adap, data_reg + 32),
468                         (unsigned long long)t4_read_reg64(adap, data_reg + 40),
469                         (unsigned long long)t4_read_reg64(adap, data_reg + 48),
470                         (unsigned long long)t4_read_reg64(adap, data_reg + 56));
471         }
472
473         /*
474          * Copy in the new mailbox command and send it on its way ...
475          */
476         for (i = 0; i < size; i += 8, p++)
477                 t4_write_reg64(adap, data_reg + i, be64_to_cpu(*p));
478
479         CXGBE_DEBUG_MBOX(adap, "%s: mbox %u: %016llx %016llx %016llx %016llx "
480                         "%016llx %016llx %016llx %016llx\n", __func__,  (mbox),
481                         (unsigned long long)t4_read_reg64(adap, data_reg),
482                         (unsigned long long)t4_read_reg64(adap, data_reg + 8),
483                         (unsigned long long)t4_read_reg64(adap, data_reg + 16),
484                         (unsigned long long)t4_read_reg64(adap, data_reg + 24),
485                         (unsigned long long)t4_read_reg64(adap, data_reg + 32),
486                         (unsigned long long)t4_read_reg64(adap, data_reg + 40),
487                         (unsigned long long)t4_read_reg64(adap, data_reg + 48),
488                         (unsigned long long)t4_read_reg64(adap, data_reg + 56));
489
490         t4_write_reg(adap, ctl_reg, F_MBMSGVALID | V_MBOWNER(X_MBOWNER_FW));
491         t4_read_reg(adap, ctl_reg);          /* flush write */
492
493         delay_idx = 0;
494         ms = delay[0];
495
496         /*
497          * Loop waiting for the reply; bail out if we time out or the firmware
498          * reports an error.
499          */
500         pcie_fw = t4_read_reg(adap, A_PCIE_FW);
501         for (i = 0; i < timeout && !(pcie_fw & F_PCIE_FW_ERR); i += ms) {
502                 if (sleep_ok) {
503                         ms = delay[delay_idx];  /* last element may repeat */
504                         if (delay_idx < ARRAY_SIZE(delay) - 1)
505                                 delay_idx++;
506                         msleep(ms);
507                 } else {
508                         msleep(ms);
509                 }
510
511                 pcie_fw = t4_read_reg(adap, A_PCIE_FW);
512                 v = t4_read_reg(adap, ctl_reg);
513                 if (v == X_CIM_PF_NOACCESS)
514                         continue;
515                 if (G_MBOWNER(v) == X_MBOWNER_PL) {
516                         if (!(v & F_MBMSGVALID)) {
517                                 t4_write_reg(adap, ctl_reg,
518                                              V_MBOWNER(X_MBOWNER_NONE));
519                                 continue;
520                         }
521
522                         CXGBE_DEBUG_MBOX(adap,
523                         "%s: mbox %u: %016llx %016llx %016llx %016llx "
524                         "%016llx %016llx %016llx %016llx\n", __func__,  (mbox),
525                         (unsigned long long)t4_read_reg64(adap, data_reg),
526                         (unsigned long long)t4_read_reg64(adap, data_reg + 8),
527                         (unsigned long long)t4_read_reg64(adap, data_reg + 16),
528                         (unsigned long long)t4_read_reg64(adap, data_reg + 24),
529                         (unsigned long long)t4_read_reg64(adap, data_reg + 32),
530                         (unsigned long long)t4_read_reg64(adap, data_reg + 40),
531                         (unsigned long long)t4_read_reg64(adap, data_reg + 48),
532                         (unsigned long long)t4_read_reg64(adap, data_reg + 56));
533
534                         CXGBE_DEBUG_MBOX(adap,
535                                 "command %#x completed in %d ms (%ssleeping)\n",
536                                 *(const u8 *)cmd,
537                                 i + ms, sleep_ok ? "" : "non-");
538
539                         res = t4_read_reg64(adap, data_reg);
540                         if (G_FW_CMD_OP(res >> 32) == FW_DEBUG_CMD) {
541                                 fw_asrt(adap, data_reg);
542                                 res = V_FW_CMD_RETVAL(EIO);
543                         } else if (rpl) {
544                                 get_mbox_rpl(adap, rpl, size / 8, data_reg);
545                         }
546                         t4_write_reg(adap, ctl_reg, V_MBOWNER(X_MBOWNER_NONE));
547                         T4_OS_MBOX_LOCKING(
548                                 t4_os_atomic_list_del(&entry, &adap->mbox_list,
549                                                       &adap->mbox_lock));
550                         free(temp);
551                         return -G_FW_CMD_RETVAL((int)res);
552                 }
553         }
554
555         /*
556          * We timed out waiting for a reply to our mailbox command.  Report
557          * the error and also check to see if the firmware reported any
558          * errors ...
559          */
560         dev_err(adap, "command %#x in mailbox %d timed out\n",
561                 *(const u8 *)cmd, mbox);
562         T4_OS_MBOX_LOCKING(t4_os_atomic_list_del(&entry,
563                                                  &adap->mbox_list,
564                                                  &adap->mbox_lock));
565         t4_report_fw_error(adap);
566         free(temp);
567         return (pcie_fw & F_PCIE_FW_ERR) ? -ENXIO : -ETIMEDOUT;
568 }
569
570 int t4_wr_mbox_meat(struct adapter *adap, int mbox, const void *cmd, int size,
571                     void *rpl, bool sleep_ok)
572 {
573         return t4_wr_mbox_meat_timeout(adap, mbox, cmd, size, rpl, sleep_ok,
574                                        FW_CMD_MAX_TIMEOUT);
575 }
576
577 /**
578  * t4_get_regs_len - return the size of the chips register set
579  * @adapter: the adapter
580  *
581  * Returns the size of the chip's BAR0 register space.
582  */
583 unsigned int t4_get_regs_len(struct adapter *adapter)
584 {
585         unsigned int chip_version = CHELSIO_CHIP_VERSION(adapter->params.chip);
586
587         switch (chip_version) {
588         case CHELSIO_T5:
589         case CHELSIO_T6:
590                 return T5_REGMAP_SIZE;
591         }
592
593         dev_err(adapter,
594                 "Unsupported chip version %d\n", chip_version);
595         return 0;
596 }
597
598 /**
599  * t4_get_regs - read chip registers into provided buffer
600  * @adap: the adapter
601  * @buf: register buffer
602  * @buf_size: size (in bytes) of register buffer
603  *
604  * If the provided register buffer isn't large enough for the chip's
605  * full register range, the register dump will be truncated to the
606  * register buffer's size.
607  */
608 void t4_get_regs(struct adapter *adap, void *buf, size_t buf_size)
609 {
610         static const unsigned int t5_reg_ranges[] = {
611                 0x1008, 0x10c0,
612                 0x10cc, 0x10f8,
613                 0x1100, 0x1100,
614                 0x110c, 0x1148,
615                 0x1180, 0x1184,
616                 0x1190, 0x1194,
617                 0x11a0, 0x11a4,
618                 0x11b0, 0x11b4,
619                 0x11fc, 0x123c,
620                 0x1280, 0x173c,
621                 0x1800, 0x18fc,
622                 0x3000, 0x3028,
623                 0x3060, 0x30b0,
624                 0x30b8, 0x30d8,
625                 0x30e0, 0x30fc,
626                 0x3140, 0x357c,
627                 0x35a8, 0x35cc,
628                 0x35ec, 0x35ec,
629                 0x3600, 0x5624,
630                 0x56cc, 0x56ec,
631                 0x56f4, 0x5720,
632                 0x5728, 0x575c,
633                 0x580c, 0x5814,
634                 0x5890, 0x589c,
635                 0x58a4, 0x58ac,
636                 0x58b8, 0x58bc,
637                 0x5940, 0x59c8,
638                 0x59d0, 0x59dc,
639                 0x59fc, 0x5a18,
640                 0x5a60, 0x5a70,
641                 0x5a80, 0x5a9c,
642                 0x5b94, 0x5bfc,
643                 0x6000, 0x6020,
644                 0x6028, 0x6040,
645                 0x6058, 0x609c,
646                 0x60a8, 0x614c,
647                 0x7700, 0x7798,
648                 0x77c0, 0x78fc,
649                 0x7b00, 0x7b58,
650                 0x7b60, 0x7b84,
651                 0x7b8c, 0x7c54,
652                 0x7d00, 0x7d38,
653                 0x7d40, 0x7d80,
654                 0x7d8c, 0x7ddc,
655                 0x7de4, 0x7e04,
656                 0x7e10, 0x7e1c,
657                 0x7e24, 0x7e38,
658                 0x7e40, 0x7e44,
659                 0x7e4c, 0x7e78,
660                 0x7e80, 0x7edc,
661                 0x7ee8, 0x7efc,
662                 0x8dc0, 0x8de0,
663                 0x8df8, 0x8e04,
664                 0x8e10, 0x8e84,
665                 0x8ea0, 0x8f84,
666                 0x8fc0, 0x9058,
667                 0x9060, 0x9060,
668                 0x9068, 0x90f8,
669                 0x9400, 0x9408,
670                 0x9410, 0x9470,
671                 0x9600, 0x9600,
672                 0x9608, 0x9638,
673                 0x9640, 0x96f4,
674                 0x9800, 0x9808,
675                 0x9820, 0x983c,
676                 0x9850, 0x9864,
677                 0x9c00, 0x9c6c,
678                 0x9c80, 0x9cec,
679                 0x9d00, 0x9d6c,
680                 0x9d80, 0x9dec,
681                 0x9e00, 0x9e6c,
682                 0x9e80, 0x9eec,
683                 0x9f00, 0x9f6c,
684                 0x9f80, 0xa020,
685                 0xd004, 0xd004,
686                 0xd010, 0xd03c,
687                 0xdfc0, 0xdfe0,
688                 0xe000, 0x1106c,
689                 0x11074, 0x11088,
690                 0x1109c, 0x1117c,
691                 0x11190, 0x11204,
692                 0x19040, 0x1906c,
693                 0x19078, 0x19080,
694                 0x1908c, 0x190e8,
695                 0x190f0, 0x190f8,
696                 0x19100, 0x19110,
697                 0x19120, 0x19124,
698                 0x19150, 0x19194,
699                 0x1919c, 0x191b0,
700                 0x191d0, 0x191e8,
701                 0x19238, 0x19290,
702                 0x193f8, 0x19428,
703                 0x19430, 0x19444,
704                 0x1944c, 0x1946c,
705                 0x19474, 0x19474,
706                 0x19490, 0x194cc,
707                 0x194f0, 0x194f8,
708                 0x19c00, 0x19c08,
709                 0x19c10, 0x19c60,
710                 0x19c94, 0x19ce4,
711                 0x19cf0, 0x19d40,
712                 0x19d50, 0x19d94,
713                 0x19da0, 0x19de8,
714                 0x19df0, 0x19e10,
715                 0x19e50, 0x19e90,
716                 0x19ea0, 0x19f24,
717                 0x19f34, 0x19f34,
718                 0x19f40, 0x19f50,
719                 0x19f90, 0x19fb4,
720                 0x19fc4, 0x19fe4,
721                 0x1a000, 0x1a004,
722                 0x1a010, 0x1a06c,
723                 0x1a0b0, 0x1a0e4,
724                 0x1a0ec, 0x1a0f8,
725                 0x1a100, 0x1a108,
726                 0x1a114, 0x1a120,
727                 0x1a128, 0x1a130,
728                 0x1a138, 0x1a138,
729                 0x1a190, 0x1a1c4,
730                 0x1a1fc, 0x1a1fc,
731                 0x1e008, 0x1e00c,
732                 0x1e040, 0x1e044,
733                 0x1e04c, 0x1e04c,
734                 0x1e284, 0x1e290,
735                 0x1e2c0, 0x1e2c0,
736                 0x1e2e0, 0x1e2e0,
737                 0x1e300, 0x1e384,
738                 0x1e3c0, 0x1e3c8,
739                 0x1e408, 0x1e40c,
740                 0x1e440, 0x1e444,
741                 0x1e44c, 0x1e44c,
742                 0x1e684, 0x1e690,
743                 0x1e6c0, 0x1e6c0,
744                 0x1e6e0, 0x1e6e0,
745                 0x1e700, 0x1e784,
746                 0x1e7c0, 0x1e7c8,
747                 0x1e808, 0x1e80c,
748                 0x1e840, 0x1e844,
749                 0x1e84c, 0x1e84c,
750                 0x1ea84, 0x1ea90,
751                 0x1eac0, 0x1eac0,
752                 0x1eae0, 0x1eae0,
753                 0x1eb00, 0x1eb84,
754                 0x1ebc0, 0x1ebc8,
755                 0x1ec08, 0x1ec0c,
756                 0x1ec40, 0x1ec44,
757                 0x1ec4c, 0x1ec4c,
758                 0x1ee84, 0x1ee90,
759                 0x1eec0, 0x1eec0,
760                 0x1eee0, 0x1eee0,
761                 0x1ef00, 0x1ef84,
762                 0x1efc0, 0x1efc8,
763                 0x1f008, 0x1f00c,
764                 0x1f040, 0x1f044,
765                 0x1f04c, 0x1f04c,
766                 0x1f284, 0x1f290,
767                 0x1f2c0, 0x1f2c0,
768                 0x1f2e0, 0x1f2e0,
769                 0x1f300, 0x1f384,
770                 0x1f3c0, 0x1f3c8,
771                 0x1f408, 0x1f40c,
772                 0x1f440, 0x1f444,
773                 0x1f44c, 0x1f44c,
774                 0x1f684, 0x1f690,
775                 0x1f6c0, 0x1f6c0,
776                 0x1f6e0, 0x1f6e0,
777                 0x1f700, 0x1f784,
778                 0x1f7c0, 0x1f7c8,
779                 0x1f808, 0x1f80c,
780                 0x1f840, 0x1f844,
781                 0x1f84c, 0x1f84c,
782                 0x1fa84, 0x1fa90,
783                 0x1fac0, 0x1fac0,
784                 0x1fae0, 0x1fae0,
785                 0x1fb00, 0x1fb84,
786                 0x1fbc0, 0x1fbc8,
787                 0x1fc08, 0x1fc0c,
788                 0x1fc40, 0x1fc44,
789                 0x1fc4c, 0x1fc4c,
790                 0x1fe84, 0x1fe90,
791                 0x1fec0, 0x1fec0,
792                 0x1fee0, 0x1fee0,
793                 0x1ff00, 0x1ff84,
794                 0x1ffc0, 0x1ffc8,
795                 0x30000, 0x30030,
796                 0x30038, 0x30038,
797                 0x30040, 0x30040,
798                 0x30100, 0x30144,
799                 0x30190, 0x301a0,
800                 0x301a8, 0x301b8,
801                 0x301c4, 0x301c8,
802                 0x301d0, 0x301d0,
803                 0x30200, 0x30318,
804                 0x30400, 0x304b4,
805                 0x304c0, 0x3052c,
806                 0x30540, 0x3061c,
807                 0x30800, 0x30828,
808                 0x30834, 0x30834,
809                 0x308c0, 0x30908,
810                 0x30910, 0x309ac,
811                 0x30a00, 0x30a14,
812                 0x30a1c, 0x30a2c,
813                 0x30a44, 0x30a50,
814                 0x30a74, 0x30a74,
815                 0x30a7c, 0x30afc,
816                 0x30b08, 0x30c24,
817                 0x30d00, 0x30d00,
818                 0x30d08, 0x30d14,
819                 0x30d1c, 0x30d20,
820                 0x30d3c, 0x30d3c,
821                 0x30d48, 0x30d50,
822                 0x31200, 0x3120c,
823                 0x31220, 0x31220,
824                 0x31240, 0x31240,
825                 0x31600, 0x3160c,
826                 0x31a00, 0x31a1c,
827                 0x31e00, 0x31e20,
828                 0x31e38, 0x31e3c,
829                 0x31e80, 0x31e80,
830                 0x31e88, 0x31ea8,
831                 0x31eb0, 0x31eb4,
832                 0x31ec8, 0x31ed4,
833                 0x31fb8, 0x32004,
834                 0x32200, 0x32200,
835                 0x32208, 0x32240,
836                 0x32248, 0x32280,
837                 0x32288, 0x322c0,
838                 0x322c8, 0x322fc,
839                 0x32600, 0x32630,
840                 0x32a00, 0x32abc,
841                 0x32b00, 0x32b10,
842                 0x32b20, 0x32b30,
843                 0x32b40, 0x32b50,
844                 0x32b60, 0x32b70,
845                 0x33000, 0x33028,
846                 0x33030, 0x33048,
847                 0x33060, 0x33068,
848                 0x33070, 0x3309c,
849                 0x330f0, 0x33128,
850                 0x33130, 0x33148,
851                 0x33160, 0x33168,
852                 0x33170, 0x3319c,
853                 0x331f0, 0x33238,
854                 0x33240, 0x33240,
855                 0x33248, 0x33250,
856                 0x3325c, 0x33264,
857                 0x33270, 0x332b8,
858                 0x332c0, 0x332e4,
859                 0x332f8, 0x33338,
860                 0x33340, 0x33340,
861                 0x33348, 0x33350,
862                 0x3335c, 0x33364,
863                 0x33370, 0x333b8,
864                 0x333c0, 0x333e4,
865                 0x333f8, 0x33428,
866                 0x33430, 0x33448,
867                 0x33460, 0x33468,
868                 0x33470, 0x3349c,
869                 0x334f0, 0x33528,
870                 0x33530, 0x33548,
871                 0x33560, 0x33568,
872                 0x33570, 0x3359c,
873                 0x335f0, 0x33638,
874                 0x33640, 0x33640,
875                 0x33648, 0x33650,
876                 0x3365c, 0x33664,
877                 0x33670, 0x336b8,
878                 0x336c0, 0x336e4,
879                 0x336f8, 0x33738,
880                 0x33740, 0x33740,
881                 0x33748, 0x33750,
882                 0x3375c, 0x33764,
883                 0x33770, 0x337b8,
884                 0x337c0, 0x337e4,
885                 0x337f8, 0x337fc,
886                 0x33814, 0x33814,
887                 0x3382c, 0x3382c,
888                 0x33880, 0x3388c,
889                 0x338e8, 0x338ec,
890                 0x33900, 0x33928,
891                 0x33930, 0x33948,
892                 0x33960, 0x33968,
893                 0x33970, 0x3399c,
894                 0x339f0, 0x33a38,
895                 0x33a40, 0x33a40,
896                 0x33a48, 0x33a50,
897                 0x33a5c, 0x33a64,
898                 0x33a70, 0x33ab8,
899                 0x33ac0, 0x33ae4,
900                 0x33af8, 0x33b10,
901                 0x33b28, 0x33b28,
902                 0x33b3c, 0x33b50,
903                 0x33bf0, 0x33c10,
904                 0x33c28, 0x33c28,
905                 0x33c3c, 0x33c50,
906                 0x33cf0, 0x33cfc,
907                 0x34000, 0x34030,
908                 0x34038, 0x34038,
909                 0x34040, 0x34040,
910                 0x34100, 0x34144,
911                 0x34190, 0x341a0,
912                 0x341a8, 0x341b8,
913                 0x341c4, 0x341c8,
914                 0x341d0, 0x341d0,
915                 0x34200, 0x34318,
916                 0x34400, 0x344b4,
917                 0x344c0, 0x3452c,
918                 0x34540, 0x3461c,
919                 0x34800, 0x34828,
920                 0x34834, 0x34834,
921                 0x348c0, 0x34908,
922                 0x34910, 0x349ac,
923                 0x34a00, 0x34a14,
924                 0x34a1c, 0x34a2c,
925                 0x34a44, 0x34a50,
926                 0x34a74, 0x34a74,
927                 0x34a7c, 0x34afc,
928                 0x34b08, 0x34c24,
929                 0x34d00, 0x34d00,
930                 0x34d08, 0x34d14,
931                 0x34d1c, 0x34d20,
932                 0x34d3c, 0x34d3c,
933                 0x34d48, 0x34d50,
934                 0x35200, 0x3520c,
935                 0x35220, 0x35220,
936                 0x35240, 0x35240,
937                 0x35600, 0x3560c,
938                 0x35a00, 0x35a1c,
939                 0x35e00, 0x35e20,
940                 0x35e38, 0x35e3c,
941                 0x35e80, 0x35e80,
942                 0x35e88, 0x35ea8,
943                 0x35eb0, 0x35eb4,
944                 0x35ec8, 0x35ed4,
945                 0x35fb8, 0x36004,
946                 0x36200, 0x36200,
947                 0x36208, 0x36240,
948                 0x36248, 0x36280,
949                 0x36288, 0x362c0,
950                 0x362c8, 0x362fc,
951                 0x36600, 0x36630,
952                 0x36a00, 0x36abc,
953                 0x36b00, 0x36b10,
954                 0x36b20, 0x36b30,
955                 0x36b40, 0x36b50,
956                 0x36b60, 0x36b70,
957                 0x37000, 0x37028,
958                 0x37030, 0x37048,
959                 0x37060, 0x37068,
960                 0x37070, 0x3709c,
961                 0x370f0, 0x37128,
962                 0x37130, 0x37148,
963                 0x37160, 0x37168,
964                 0x37170, 0x3719c,
965                 0x371f0, 0x37238,
966                 0x37240, 0x37240,
967                 0x37248, 0x37250,
968                 0x3725c, 0x37264,
969                 0x37270, 0x372b8,
970                 0x372c0, 0x372e4,
971                 0x372f8, 0x37338,
972                 0x37340, 0x37340,
973                 0x37348, 0x37350,
974                 0x3735c, 0x37364,
975                 0x37370, 0x373b8,
976                 0x373c0, 0x373e4,
977                 0x373f8, 0x37428,
978                 0x37430, 0x37448,
979                 0x37460, 0x37468,
980                 0x37470, 0x3749c,
981                 0x374f0, 0x37528,
982                 0x37530, 0x37548,
983                 0x37560, 0x37568,
984                 0x37570, 0x3759c,
985                 0x375f0, 0x37638,
986                 0x37640, 0x37640,
987                 0x37648, 0x37650,
988                 0x3765c, 0x37664,
989                 0x37670, 0x376b8,
990                 0x376c0, 0x376e4,
991                 0x376f8, 0x37738,
992                 0x37740, 0x37740,
993                 0x37748, 0x37750,
994                 0x3775c, 0x37764,
995                 0x37770, 0x377b8,
996                 0x377c0, 0x377e4,
997                 0x377f8, 0x377fc,
998                 0x37814, 0x37814,
999                 0x3782c, 0x3782c,
1000                 0x37880, 0x3788c,
1001                 0x378e8, 0x378ec,
1002                 0x37900, 0x37928,
1003                 0x37930, 0x37948,
1004                 0x37960, 0x37968,
1005                 0x37970, 0x3799c,
1006                 0x379f0, 0x37a38,
1007                 0x37a40, 0x37a40,
1008                 0x37a48, 0x37a50,
1009                 0x37a5c, 0x37a64,
1010                 0x37a70, 0x37ab8,
1011                 0x37ac0, 0x37ae4,
1012                 0x37af8, 0x37b10,
1013                 0x37b28, 0x37b28,
1014                 0x37b3c, 0x37b50,
1015                 0x37bf0, 0x37c10,
1016                 0x37c28, 0x37c28,
1017                 0x37c3c, 0x37c50,
1018                 0x37cf0, 0x37cfc,
1019                 0x38000, 0x38030,
1020                 0x38038, 0x38038,
1021                 0x38040, 0x38040,
1022                 0x38100, 0x38144,
1023                 0x38190, 0x381a0,
1024                 0x381a8, 0x381b8,
1025                 0x381c4, 0x381c8,
1026                 0x381d0, 0x381d0,
1027                 0x38200, 0x38318,
1028                 0x38400, 0x384b4,
1029                 0x384c0, 0x3852c,
1030                 0x38540, 0x3861c,
1031                 0x38800, 0x38828,
1032                 0x38834, 0x38834,
1033                 0x388c0, 0x38908,
1034                 0x38910, 0x389ac,
1035                 0x38a00, 0x38a14,
1036                 0x38a1c, 0x38a2c,
1037                 0x38a44, 0x38a50,
1038                 0x38a74, 0x38a74,
1039                 0x38a7c, 0x38afc,
1040                 0x38b08, 0x38c24,
1041                 0x38d00, 0x38d00,
1042                 0x38d08, 0x38d14,
1043                 0x38d1c, 0x38d20,
1044                 0x38d3c, 0x38d3c,
1045                 0x38d48, 0x38d50,
1046                 0x39200, 0x3920c,
1047                 0x39220, 0x39220,
1048                 0x39240, 0x39240,
1049                 0x39600, 0x3960c,
1050                 0x39a00, 0x39a1c,
1051                 0x39e00, 0x39e20,
1052                 0x39e38, 0x39e3c,
1053                 0x39e80, 0x39e80,
1054                 0x39e88, 0x39ea8,
1055                 0x39eb0, 0x39eb4,
1056                 0x39ec8, 0x39ed4,
1057                 0x39fb8, 0x3a004,
1058                 0x3a200, 0x3a200,
1059                 0x3a208, 0x3a240,
1060                 0x3a248, 0x3a280,
1061                 0x3a288, 0x3a2c0,
1062                 0x3a2c8, 0x3a2fc,
1063                 0x3a600, 0x3a630,
1064                 0x3aa00, 0x3aabc,
1065                 0x3ab00, 0x3ab10,
1066                 0x3ab20, 0x3ab30,
1067                 0x3ab40, 0x3ab50,
1068                 0x3ab60, 0x3ab70,
1069                 0x3b000, 0x3b028,
1070                 0x3b030, 0x3b048,
1071                 0x3b060, 0x3b068,
1072                 0x3b070, 0x3b09c,
1073                 0x3b0f0, 0x3b128,
1074                 0x3b130, 0x3b148,
1075                 0x3b160, 0x3b168,
1076                 0x3b170, 0x3b19c,
1077                 0x3b1f0, 0x3b238,
1078                 0x3b240, 0x3b240,
1079                 0x3b248, 0x3b250,
1080                 0x3b25c, 0x3b264,
1081                 0x3b270, 0x3b2b8,
1082                 0x3b2c0, 0x3b2e4,
1083                 0x3b2f8, 0x3b338,
1084                 0x3b340, 0x3b340,
1085                 0x3b348, 0x3b350,
1086                 0x3b35c, 0x3b364,
1087                 0x3b370, 0x3b3b8,
1088                 0x3b3c0, 0x3b3e4,
1089                 0x3b3f8, 0x3b428,
1090                 0x3b430, 0x3b448,
1091                 0x3b460, 0x3b468,
1092                 0x3b470, 0x3b49c,
1093                 0x3b4f0, 0x3b528,
1094                 0x3b530, 0x3b548,
1095                 0x3b560, 0x3b568,
1096                 0x3b570, 0x3b59c,
1097                 0x3b5f0, 0x3b638,
1098                 0x3b640, 0x3b640,
1099                 0x3b648, 0x3b650,
1100                 0x3b65c, 0x3b664,
1101                 0x3b670, 0x3b6b8,
1102                 0x3b6c0, 0x3b6e4,
1103                 0x3b6f8, 0x3b738,
1104                 0x3b740, 0x3b740,
1105                 0x3b748, 0x3b750,
1106                 0x3b75c, 0x3b764,
1107                 0x3b770, 0x3b7b8,
1108                 0x3b7c0, 0x3b7e4,
1109                 0x3b7f8, 0x3b7fc,
1110                 0x3b814, 0x3b814,
1111                 0x3b82c, 0x3b82c,
1112                 0x3b880, 0x3b88c,
1113                 0x3b8e8, 0x3b8ec,
1114                 0x3b900, 0x3b928,
1115                 0x3b930, 0x3b948,
1116                 0x3b960, 0x3b968,
1117                 0x3b970, 0x3b99c,
1118                 0x3b9f0, 0x3ba38,
1119                 0x3ba40, 0x3ba40,
1120                 0x3ba48, 0x3ba50,
1121                 0x3ba5c, 0x3ba64,
1122                 0x3ba70, 0x3bab8,
1123                 0x3bac0, 0x3bae4,
1124                 0x3baf8, 0x3bb10,
1125                 0x3bb28, 0x3bb28,
1126                 0x3bb3c, 0x3bb50,
1127                 0x3bbf0, 0x3bc10,
1128                 0x3bc28, 0x3bc28,
1129                 0x3bc3c, 0x3bc50,
1130                 0x3bcf0, 0x3bcfc,
1131                 0x3c000, 0x3c030,
1132                 0x3c038, 0x3c038,
1133                 0x3c040, 0x3c040,
1134                 0x3c100, 0x3c144,
1135                 0x3c190, 0x3c1a0,
1136                 0x3c1a8, 0x3c1b8,
1137                 0x3c1c4, 0x3c1c8,
1138                 0x3c1d0, 0x3c1d0,
1139                 0x3c200, 0x3c318,
1140                 0x3c400, 0x3c4b4,
1141                 0x3c4c0, 0x3c52c,
1142                 0x3c540, 0x3c61c,
1143                 0x3c800, 0x3c828,
1144                 0x3c834, 0x3c834,
1145                 0x3c8c0, 0x3c908,
1146                 0x3c910, 0x3c9ac,
1147                 0x3ca00, 0x3ca14,
1148                 0x3ca1c, 0x3ca2c,
1149                 0x3ca44, 0x3ca50,
1150                 0x3ca74, 0x3ca74,
1151                 0x3ca7c, 0x3cafc,
1152                 0x3cb08, 0x3cc24,
1153                 0x3cd00, 0x3cd00,
1154                 0x3cd08, 0x3cd14,
1155                 0x3cd1c, 0x3cd20,
1156                 0x3cd3c, 0x3cd3c,
1157                 0x3cd48, 0x3cd50,
1158                 0x3d200, 0x3d20c,
1159                 0x3d220, 0x3d220,
1160                 0x3d240, 0x3d240,
1161                 0x3d600, 0x3d60c,
1162                 0x3da00, 0x3da1c,
1163                 0x3de00, 0x3de20,
1164                 0x3de38, 0x3de3c,
1165                 0x3de80, 0x3de80,
1166                 0x3de88, 0x3dea8,
1167                 0x3deb0, 0x3deb4,
1168                 0x3dec8, 0x3ded4,
1169                 0x3dfb8, 0x3e004,
1170                 0x3e200, 0x3e200,
1171                 0x3e208, 0x3e240,
1172                 0x3e248, 0x3e280,
1173                 0x3e288, 0x3e2c0,
1174                 0x3e2c8, 0x3e2fc,
1175                 0x3e600, 0x3e630,
1176                 0x3ea00, 0x3eabc,
1177                 0x3eb00, 0x3eb10,
1178                 0x3eb20, 0x3eb30,
1179                 0x3eb40, 0x3eb50,
1180                 0x3eb60, 0x3eb70,
1181                 0x3f000, 0x3f028,
1182                 0x3f030, 0x3f048,
1183                 0x3f060, 0x3f068,
1184                 0x3f070, 0x3f09c,
1185                 0x3f0f0, 0x3f128,
1186                 0x3f130, 0x3f148,
1187                 0x3f160, 0x3f168,
1188                 0x3f170, 0x3f19c,
1189                 0x3f1f0, 0x3f238,
1190                 0x3f240, 0x3f240,
1191                 0x3f248, 0x3f250,
1192                 0x3f25c, 0x3f264,
1193                 0x3f270, 0x3f2b8,
1194                 0x3f2c0, 0x3f2e4,
1195                 0x3f2f8, 0x3f338,
1196                 0x3f340, 0x3f340,
1197                 0x3f348, 0x3f350,
1198                 0x3f35c, 0x3f364,
1199                 0x3f370, 0x3f3b8,
1200                 0x3f3c0, 0x3f3e4,
1201                 0x3f3f8, 0x3f428,
1202                 0x3f430, 0x3f448,
1203                 0x3f460, 0x3f468,
1204                 0x3f470, 0x3f49c,
1205                 0x3f4f0, 0x3f528,
1206                 0x3f530, 0x3f548,
1207                 0x3f560, 0x3f568,
1208                 0x3f570, 0x3f59c,
1209                 0x3f5f0, 0x3f638,
1210                 0x3f640, 0x3f640,
1211                 0x3f648, 0x3f650,
1212                 0x3f65c, 0x3f664,
1213                 0x3f670, 0x3f6b8,
1214                 0x3f6c0, 0x3f6e4,
1215                 0x3f6f8, 0x3f738,
1216                 0x3f740, 0x3f740,
1217                 0x3f748, 0x3f750,
1218                 0x3f75c, 0x3f764,
1219                 0x3f770, 0x3f7b8,
1220                 0x3f7c0, 0x3f7e4,
1221                 0x3f7f8, 0x3f7fc,
1222                 0x3f814, 0x3f814,
1223                 0x3f82c, 0x3f82c,
1224                 0x3f880, 0x3f88c,
1225                 0x3f8e8, 0x3f8ec,
1226                 0x3f900, 0x3f928,
1227                 0x3f930, 0x3f948,
1228                 0x3f960, 0x3f968,
1229                 0x3f970, 0x3f99c,
1230                 0x3f9f0, 0x3fa38,
1231                 0x3fa40, 0x3fa40,
1232                 0x3fa48, 0x3fa50,
1233                 0x3fa5c, 0x3fa64,
1234                 0x3fa70, 0x3fab8,
1235                 0x3fac0, 0x3fae4,
1236                 0x3faf8, 0x3fb10,
1237                 0x3fb28, 0x3fb28,
1238                 0x3fb3c, 0x3fb50,
1239                 0x3fbf0, 0x3fc10,
1240                 0x3fc28, 0x3fc28,
1241                 0x3fc3c, 0x3fc50,
1242                 0x3fcf0, 0x3fcfc,
1243                 0x40000, 0x4000c,
1244                 0x40040, 0x40050,
1245                 0x40060, 0x40068,
1246                 0x4007c, 0x4008c,
1247                 0x40094, 0x400b0,
1248                 0x400c0, 0x40144,
1249                 0x40180, 0x4018c,
1250                 0x40200, 0x40254,
1251                 0x40260, 0x40264,
1252                 0x40270, 0x40288,
1253                 0x40290, 0x40298,
1254                 0x402ac, 0x402c8,
1255                 0x402d0, 0x402e0,
1256                 0x402f0, 0x402f0,
1257                 0x40300, 0x4033c,
1258                 0x403f8, 0x403fc,
1259                 0x41304, 0x413c4,
1260                 0x41400, 0x4140c,
1261                 0x41414, 0x4141c,
1262                 0x41480, 0x414d0,
1263                 0x44000, 0x44054,
1264                 0x4405c, 0x44078,
1265                 0x440c0, 0x44174,
1266                 0x44180, 0x441ac,
1267                 0x441b4, 0x441b8,
1268                 0x441c0, 0x44254,
1269                 0x4425c, 0x44278,
1270                 0x442c0, 0x44374,
1271                 0x44380, 0x443ac,
1272                 0x443b4, 0x443b8,
1273                 0x443c0, 0x44454,
1274                 0x4445c, 0x44478,
1275                 0x444c0, 0x44574,
1276                 0x44580, 0x445ac,
1277                 0x445b4, 0x445b8,
1278                 0x445c0, 0x44654,
1279                 0x4465c, 0x44678,
1280                 0x446c0, 0x44774,
1281                 0x44780, 0x447ac,
1282                 0x447b4, 0x447b8,
1283                 0x447c0, 0x44854,
1284                 0x4485c, 0x44878,
1285                 0x448c0, 0x44974,
1286                 0x44980, 0x449ac,
1287                 0x449b4, 0x449b8,
1288                 0x449c0, 0x449fc,
1289                 0x45000, 0x45004,
1290                 0x45010, 0x45030,
1291                 0x45040, 0x45060,
1292                 0x45068, 0x45068,
1293                 0x45080, 0x45084,
1294                 0x450a0, 0x450b0,
1295                 0x45200, 0x45204,
1296                 0x45210, 0x45230,
1297                 0x45240, 0x45260,
1298                 0x45268, 0x45268,
1299                 0x45280, 0x45284,
1300                 0x452a0, 0x452b0,
1301                 0x460c0, 0x460e4,
1302                 0x47000, 0x4703c,
1303                 0x47044, 0x4708c,
1304                 0x47200, 0x47250,
1305                 0x47400, 0x47408,
1306                 0x47414, 0x47420,
1307                 0x47600, 0x47618,
1308                 0x47800, 0x47814,
1309                 0x48000, 0x4800c,
1310                 0x48040, 0x48050,
1311                 0x48060, 0x48068,
1312                 0x4807c, 0x4808c,
1313                 0x48094, 0x480b0,
1314                 0x480c0, 0x48144,
1315                 0x48180, 0x4818c,
1316                 0x48200, 0x48254,
1317                 0x48260, 0x48264,
1318                 0x48270, 0x48288,
1319                 0x48290, 0x48298,
1320                 0x482ac, 0x482c8,
1321                 0x482d0, 0x482e0,
1322                 0x482f0, 0x482f0,
1323                 0x48300, 0x4833c,
1324                 0x483f8, 0x483fc,
1325                 0x49304, 0x493c4,
1326                 0x49400, 0x4940c,
1327                 0x49414, 0x4941c,
1328                 0x49480, 0x494d0,
1329                 0x4c000, 0x4c054,
1330                 0x4c05c, 0x4c078,
1331                 0x4c0c0, 0x4c174,
1332                 0x4c180, 0x4c1ac,
1333                 0x4c1b4, 0x4c1b8,
1334                 0x4c1c0, 0x4c254,
1335                 0x4c25c, 0x4c278,
1336                 0x4c2c0, 0x4c374,
1337                 0x4c380, 0x4c3ac,
1338                 0x4c3b4, 0x4c3b8,
1339                 0x4c3c0, 0x4c454,
1340                 0x4c45c, 0x4c478,
1341                 0x4c4c0, 0x4c574,
1342                 0x4c580, 0x4c5ac,
1343                 0x4c5b4, 0x4c5b8,
1344                 0x4c5c0, 0x4c654,
1345                 0x4c65c, 0x4c678,
1346                 0x4c6c0, 0x4c774,
1347                 0x4c780, 0x4c7ac,
1348                 0x4c7b4, 0x4c7b8,
1349                 0x4c7c0, 0x4c854,
1350                 0x4c85c, 0x4c878,
1351                 0x4c8c0, 0x4c974,
1352                 0x4c980, 0x4c9ac,
1353                 0x4c9b4, 0x4c9b8,
1354                 0x4c9c0, 0x4c9fc,
1355                 0x4d000, 0x4d004,
1356                 0x4d010, 0x4d030,
1357                 0x4d040, 0x4d060,
1358                 0x4d068, 0x4d068,
1359                 0x4d080, 0x4d084,
1360                 0x4d0a0, 0x4d0b0,
1361                 0x4d200, 0x4d204,
1362                 0x4d210, 0x4d230,
1363                 0x4d240, 0x4d260,
1364                 0x4d268, 0x4d268,
1365                 0x4d280, 0x4d284,
1366                 0x4d2a0, 0x4d2b0,
1367                 0x4e0c0, 0x4e0e4,
1368                 0x4f000, 0x4f03c,
1369                 0x4f044, 0x4f08c,
1370                 0x4f200, 0x4f250,
1371                 0x4f400, 0x4f408,
1372                 0x4f414, 0x4f420,
1373                 0x4f600, 0x4f618,
1374                 0x4f800, 0x4f814,
1375                 0x50000, 0x50084,
1376                 0x50090, 0x500cc,
1377                 0x50400, 0x50400,
1378                 0x50800, 0x50884,
1379                 0x50890, 0x508cc,
1380                 0x50c00, 0x50c00,
1381                 0x51000, 0x5101c,
1382                 0x51300, 0x51308,
1383         };
1384
1385         static const unsigned int t6_reg_ranges[] = {
1386                 0x1008, 0x101c,
1387                 0x1024, 0x10a8,
1388                 0x10b4, 0x10f8,
1389                 0x1100, 0x1114,
1390                 0x111c, 0x112c,
1391                 0x1138, 0x113c,
1392                 0x1144, 0x114c,
1393                 0x1180, 0x1184,
1394                 0x1190, 0x1194,
1395                 0x11a0, 0x11a4,
1396                 0x11b0, 0x11b4,
1397                 0x11fc, 0x1274,
1398                 0x1280, 0x133c,
1399                 0x1800, 0x18fc,
1400                 0x3000, 0x302c,
1401                 0x3060, 0x30b0,
1402                 0x30b8, 0x30d8,
1403                 0x30e0, 0x30fc,
1404                 0x3140, 0x357c,
1405                 0x35a8, 0x35cc,
1406                 0x35ec, 0x35ec,
1407                 0x3600, 0x5624,
1408                 0x56cc, 0x56ec,
1409                 0x56f4, 0x5720,
1410                 0x5728, 0x575c,
1411                 0x580c, 0x5814,
1412                 0x5890, 0x589c,
1413                 0x58a4, 0x58ac,
1414                 0x58b8, 0x58bc,
1415                 0x5940, 0x595c,
1416                 0x5980, 0x598c,
1417                 0x59b0, 0x59c8,
1418                 0x59d0, 0x59dc,
1419                 0x59fc, 0x5a18,
1420                 0x5a60, 0x5a6c,
1421                 0x5a80, 0x5a8c,
1422                 0x5a94, 0x5a9c,
1423                 0x5b94, 0x5bfc,
1424                 0x5c10, 0x5e48,
1425                 0x5e50, 0x5e94,
1426                 0x5ea0, 0x5eb0,
1427                 0x5ec0, 0x5ec0,
1428                 0x5ec8, 0x5ed0,
1429                 0x5ee0, 0x5ee0,
1430                 0x5ef0, 0x5ef0,
1431                 0x5f00, 0x5f00,
1432                 0x6000, 0x6020,
1433                 0x6028, 0x6040,
1434                 0x6058, 0x609c,
1435                 0x60a8, 0x619c,
1436                 0x7700, 0x7798,
1437                 0x77c0, 0x7880,
1438                 0x78cc, 0x78fc,
1439                 0x7b00, 0x7b58,
1440                 0x7b60, 0x7b84,
1441                 0x7b8c, 0x7c54,
1442                 0x7d00, 0x7d38,
1443                 0x7d40, 0x7d84,
1444                 0x7d8c, 0x7ddc,
1445                 0x7de4, 0x7e04,
1446                 0x7e10, 0x7e1c,
1447                 0x7e24, 0x7e38,
1448                 0x7e40, 0x7e44,
1449                 0x7e4c, 0x7e78,
1450                 0x7e80, 0x7edc,
1451                 0x7ee8, 0x7efc,
1452                 0x8dc0, 0x8de4,
1453                 0x8df8, 0x8e04,
1454                 0x8e10, 0x8e84,
1455                 0x8ea0, 0x8f88,
1456                 0x8fb8, 0x9058,
1457                 0x9060, 0x9060,
1458                 0x9068, 0x90f8,
1459                 0x9100, 0x9124,
1460                 0x9400, 0x9470,
1461                 0x9600, 0x9600,
1462                 0x9608, 0x9638,
1463                 0x9640, 0x9704,
1464                 0x9710, 0x971c,
1465                 0x9800, 0x9808,
1466                 0x9820, 0x983c,
1467                 0x9850, 0x9864,
1468                 0x9c00, 0x9c6c,
1469                 0x9c80, 0x9cec,
1470                 0x9d00, 0x9d6c,
1471                 0x9d80, 0x9dec,
1472                 0x9e00, 0x9e6c,
1473                 0x9e80, 0x9eec,
1474                 0x9f00, 0x9f6c,
1475                 0x9f80, 0xa020,
1476                 0xd004, 0xd03c,
1477                 0xd100, 0xd118,
1478                 0xd200, 0xd214,
1479                 0xd220, 0xd234,
1480                 0xd240, 0xd254,
1481                 0xd260, 0xd274,
1482                 0xd280, 0xd294,
1483                 0xd2a0, 0xd2b4,
1484                 0xd2c0, 0xd2d4,
1485                 0xd2e0, 0xd2f4,
1486                 0xd300, 0xd31c,
1487                 0xdfc0, 0xdfe0,
1488                 0xe000, 0xf008,
1489                 0xf010, 0xf018,
1490                 0xf020, 0xf028,
1491                 0x11000, 0x11014,
1492                 0x11048, 0x1106c,
1493                 0x11074, 0x11088,
1494                 0x11098, 0x11120,
1495                 0x1112c, 0x1117c,
1496                 0x11190, 0x112e0,
1497                 0x11300, 0x1130c,
1498                 0x12000, 0x1206c,
1499                 0x19040, 0x1906c,
1500                 0x19078, 0x19080,
1501                 0x1908c, 0x190e8,
1502                 0x190f0, 0x190f8,
1503                 0x19100, 0x19110,
1504                 0x19120, 0x19124,
1505                 0x19150, 0x19194,
1506                 0x1919c, 0x191b0,
1507                 0x191d0, 0x191e8,
1508                 0x19238, 0x19290,
1509                 0x192a4, 0x192b0,
1510                 0x192bc, 0x192bc,
1511                 0x19348, 0x1934c,
1512                 0x193f8, 0x19418,
1513                 0x19420, 0x19428,
1514                 0x19430, 0x19444,
1515                 0x1944c, 0x1946c,
1516                 0x19474, 0x19474,
1517                 0x19490, 0x194cc,
1518                 0x194f0, 0x194f8,
1519                 0x19c00, 0x19c48,
1520                 0x19c50, 0x19c80,
1521                 0x19c94, 0x19c98,
1522                 0x19ca0, 0x19cbc,
1523                 0x19ce4, 0x19ce4,
1524                 0x19cf0, 0x19cf8,
1525                 0x19d00, 0x19d28,
1526                 0x19d50, 0x19d78,
1527                 0x19d94, 0x19d98,
1528                 0x19da0, 0x19dc8,
1529                 0x19df0, 0x19e10,
1530                 0x19e50, 0x19e6c,
1531                 0x19ea0, 0x19ebc,
1532                 0x19ec4, 0x19ef4,
1533                 0x19f04, 0x19f2c,
1534                 0x19f34, 0x19f34,
1535                 0x19f40, 0x19f50,
1536                 0x19f90, 0x19fac,
1537                 0x19fc4, 0x19fc8,
1538                 0x19fd0, 0x19fe4,
1539                 0x1a000, 0x1a004,
1540                 0x1a010, 0x1a06c,
1541                 0x1a0b0, 0x1a0e4,
1542                 0x1a0ec, 0x1a0f8,
1543                 0x1a100, 0x1a108,
1544                 0x1a114, 0x1a120,
1545                 0x1a128, 0x1a130,
1546                 0x1a138, 0x1a138,
1547                 0x1a190, 0x1a1c4,
1548                 0x1a1fc, 0x1a1fc,
1549                 0x1e008, 0x1e00c,
1550                 0x1e040, 0x1e044,
1551                 0x1e04c, 0x1e04c,
1552                 0x1e284, 0x1e290,
1553                 0x1e2c0, 0x1e2c0,
1554                 0x1e2e0, 0x1e2e0,
1555                 0x1e300, 0x1e384,
1556                 0x1e3c0, 0x1e3c8,
1557                 0x1e408, 0x1e40c,
1558                 0x1e440, 0x1e444,
1559                 0x1e44c, 0x1e44c,
1560                 0x1e684, 0x1e690,
1561                 0x1e6c0, 0x1e6c0,
1562                 0x1e6e0, 0x1e6e0,
1563                 0x1e700, 0x1e784,
1564                 0x1e7c0, 0x1e7c8,
1565                 0x1e808, 0x1e80c,
1566                 0x1e840, 0x1e844,
1567                 0x1e84c, 0x1e84c,
1568                 0x1ea84, 0x1ea90,
1569                 0x1eac0, 0x1eac0,
1570                 0x1eae0, 0x1eae0,
1571                 0x1eb00, 0x1eb84,
1572                 0x1ebc0, 0x1ebc8,
1573                 0x1ec08, 0x1ec0c,
1574                 0x1ec40, 0x1ec44,
1575                 0x1ec4c, 0x1ec4c,
1576                 0x1ee84, 0x1ee90,
1577                 0x1eec0, 0x1eec0,
1578                 0x1eee0, 0x1eee0,
1579                 0x1ef00, 0x1ef84,
1580                 0x1efc0, 0x1efc8,
1581                 0x1f008, 0x1f00c,
1582                 0x1f040, 0x1f044,
1583                 0x1f04c, 0x1f04c,
1584                 0x1f284, 0x1f290,
1585                 0x1f2c0, 0x1f2c0,
1586                 0x1f2e0, 0x1f2e0,
1587                 0x1f300, 0x1f384,
1588                 0x1f3c0, 0x1f3c8,
1589                 0x1f408, 0x1f40c,
1590                 0x1f440, 0x1f444,
1591                 0x1f44c, 0x1f44c,
1592                 0x1f684, 0x1f690,
1593                 0x1f6c0, 0x1f6c0,
1594                 0x1f6e0, 0x1f6e0,
1595                 0x1f700, 0x1f784,
1596                 0x1f7c0, 0x1f7c8,
1597                 0x1f808, 0x1f80c,
1598                 0x1f840, 0x1f844,
1599                 0x1f84c, 0x1f84c,
1600                 0x1fa84, 0x1fa90,
1601                 0x1fac0, 0x1fac0,
1602                 0x1fae0, 0x1fae0,
1603                 0x1fb00, 0x1fb84,
1604                 0x1fbc0, 0x1fbc8,
1605                 0x1fc08, 0x1fc0c,
1606                 0x1fc40, 0x1fc44,
1607                 0x1fc4c, 0x1fc4c,
1608                 0x1fe84, 0x1fe90,
1609                 0x1fec0, 0x1fec0,
1610                 0x1fee0, 0x1fee0,
1611                 0x1ff00, 0x1ff84,
1612                 0x1ffc0, 0x1ffc8,
1613                 0x30000, 0x30030,
1614                 0x30100, 0x30168,
1615                 0x30190, 0x301a0,
1616                 0x301a8, 0x301b8,
1617                 0x301c4, 0x301c8,
1618                 0x301d0, 0x301d0,
1619                 0x30200, 0x30320,
1620                 0x30400, 0x304b4,
1621                 0x304c0, 0x3052c,
1622                 0x30540, 0x3061c,
1623                 0x30800, 0x308a0,
1624                 0x308c0, 0x30908,
1625                 0x30910, 0x309b8,
1626                 0x30a00, 0x30a04,
1627                 0x30a0c, 0x30a14,
1628                 0x30a1c, 0x30a2c,
1629                 0x30a44, 0x30a50,
1630                 0x30a74, 0x30a74,
1631                 0x30a7c, 0x30afc,
1632                 0x30b08, 0x30c24,
1633                 0x30d00, 0x30d14,
1634                 0x30d1c, 0x30d3c,
1635                 0x30d44, 0x30d4c,
1636                 0x30d54, 0x30d74,
1637                 0x30d7c, 0x30d7c,
1638                 0x30de0, 0x30de0,
1639                 0x30e00, 0x30ed4,
1640                 0x30f00, 0x30fa4,
1641                 0x30fc0, 0x30fc4,
1642                 0x31000, 0x31004,
1643                 0x31080, 0x310fc,
1644                 0x31208, 0x31220,
1645                 0x3123c, 0x31254,
1646                 0x31300, 0x31300,
1647                 0x31308, 0x3131c,
1648                 0x31338, 0x3133c,
1649                 0x31380, 0x31380,
1650                 0x31388, 0x313a8,
1651                 0x313b4, 0x313b4,
1652                 0x31400, 0x31420,
1653                 0x31438, 0x3143c,
1654                 0x31480, 0x31480,
1655                 0x314a8, 0x314a8,
1656                 0x314b0, 0x314b4,
1657                 0x314c8, 0x314d4,
1658                 0x31a40, 0x31a4c,
1659                 0x31af0, 0x31b20,
1660                 0x31b38, 0x31b3c,
1661                 0x31b80, 0x31b80,
1662                 0x31ba8, 0x31ba8,
1663                 0x31bb0, 0x31bb4,
1664                 0x31bc8, 0x31bd4,
1665                 0x32140, 0x3218c,
1666                 0x321f0, 0x321f4,
1667                 0x32200, 0x32200,
1668                 0x32218, 0x32218,
1669                 0x32400, 0x32400,
1670                 0x32408, 0x3241c,
1671                 0x32618, 0x32620,
1672                 0x32664, 0x32664,
1673                 0x326a8, 0x326a8,
1674                 0x326ec, 0x326ec,
1675                 0x32a00, 0x32abc,
1676                 0x32b00, 0x32b38,
1677                 0x32b20, 0x32b38,
1678                 0x32b40, 0x32b58,
1679                 0x32b60, 0x32b78,
1680                 0x32c00, 0x32c00,
1681                 0x32c08, 0x32c3c,
1682                 0x33000, 0x3302c,
1683                 0x33034, 0x33050,
1684                 0x33058, 0x33058,
1685                 0x33060, 0x3308c,
1686                 0x3309c, 0x330ac,
1687                 0x330c0, 0x330c0,
1688                 0x330c8, 0x330d0,
1689                 0x330d8, 0x330e0,
1690                 0x330ec, 0x3312c,
1691                 0x33134, 0x33150,
1692                 0x33158, 0x33158,
1693                 0x33160, 0x3318c,
1694                 0x3319c, 0x331ac,
1695                 0x331c0, 0x331c0,
1696                 0x331c8, 0x331d0,
1697                 0x331d8, 0x331e0,
1698                 0x331ec, 0x33290,
1699                 0x33298, 0x332c4,
1700                 0x332e4, 0x33390,
1701                 0x33398, 0x333c4,
1702                 0x333e4, 0x3342c,
1703                 0x33434, 0x33450,
1704                 0x33458, 0x33458,
1705                 0x33460, 0x3348c,
1706                 0x3349c, 0x334ac,
1707                 0x334c0, 0x334c0,
1708                 0x334c8, 0x334d0,
1709                 0x334d8, 0x334e0,
1710                 0x334ec, 0x3352c,
1711                 0x33534, 0x33550,
1712                 0x33558, 0x33558,
1713                 0x33560, 0x3358c,
1714                 0x3359c, 0x335ac,
1715                 0x335c0, 0x335c0,
1716                 0x335c8, 0x335d0,
1717                 0x335d8, 0x335e0,
1718                 0x335ec, 0x33690,
1719                 0x33698, 0x336c4,
1720                 0x336e4, 0x33790,
1721                 0x33798, 0x337c4,
1722                 0x337e4, 0x337fc,
1723                 0x33814, 0x33814,
1724                 0x33854, 0x33868,
1725                 0x33880, 0x3388c,
1726                 0x338c0, 0x338d0,
1727                 0x338e8, 0x338ec,
1728                 0x33900, 0x3392c,
1729                 0x33934, 0x33950,
1730                 0x33958, 0x33958,
1731                 0x33960, 0x3398c,
1732                 0x3399c, 0x339ac,
1733                 0x339c0, 0x339c0,
1734                 0x339c8, 0x339d0,
1735                 0x339d8, 0x339e0,
1736                 0x339ec, 0x33a90,
1737                 0x33a98, 0x33ac4,
1738                 0x33ae4, 0x33b10,
1739                 0x33b24, 0x33b28,
1740                 0x33b38, 0x33b50,
1741                 0x33bf0, 0x33c10,
1742                 0x33c24, 0x33c28,
1743                 0x33c38, 0x33c50,
1744                 0x33cf0, 0x33cfc,
1745                 0x34000, 0x34030,
1746                 0x34100, 0x34168,
1747                 0x34190, 0x341a0,
1748                 0x341a8, 0x341b8,
1749                 0x341c4, 0x341c8,
1750                 0x341d0, 0x341d0,
1751                 0x34200, 0x34320,
1752                 0x34400, 0x344b4,
1753                 0x344c0, 0x3452c,
1754                 0x34540, 0x3461c,
1755                 0x34800, 0x348a0,
1756                 0x348c0, 0x34908,
1757                 0x34910, 0x349b8,
1758                 0x34a00, 0x34a04,
1759                 0x34a0c, 0x34a14,
1760                 0x34a1c, 0x34a2c,
1761                 0x34a44, 0x34a50,
1762                 0x34a74, 0x34a74,
1763                 0x34a7c, 0x34afc,
1764                 0x34b08, 0x34c24,
1765                 0x34d00, 0x34d14,
1766                 0x34d1c, 0x34d3c,
1767                 0x34d44, 0x34d4c,
1768                 0x34d54, 0x34d74,
1769                 0x34d7c, 0x34d7c,
1770                 0x34de0, 0x34de0,
1771                 0x34e00, 0x34ed4,
1772                 0x34f00, 0x34fa4,
1773                 0x34fc0, 0x34fc4,
1774                 0x35000, 0x35004,
1775                 0x35080, 0x350fc,
1776                 0x35208, 0x35220,
1777                 0x3523c, 0x35254,
1778                 0x35300, 0x35300,
1779                 0x35308, 0x3531c,
1780                 0x35338, 0x3533c,
1781                 0x35380, 0x35380,
1782                 0x35388, 0x353a8,
1783                 0x353b4, 0x353b4,
1784                 0x35400, 0x35420,
1785                 0x35438, 0x3543c,
1786                 0x35480, 0x35480,
1787                 0x354a8, 0x354a8,
1788                 0x354b0, 0x354b4,
1789                 0x354c8, 0x354d4,
1790                 0x35a40, 0x35a4c,
1791                 0x35af0, 0x35b20,
1792                 0x35b38, 0x35b3c,
1793                 0x35b80, 0x35b80,
1794                 0x35ba8, 0x35ba8,
1795                 0x35bb0, 0x35bb4,
1796                 0x35bc8, 0x35bd4,
1797                 0x36140, 0x3618c,
1798                 0x361f0, 0x361f4,
1799                 0x36200, 0x36200,
1800                 0x36218, 0x36218,
1801                 0x36400, 0x36400,
1802                 0x36408, 0x3641c,
1803                 0x36618, 0x36620,
1804                 0x36664, 0x36664,
1805                 0x366a8, 0x366a8,
1806                 0x366ec, 0x366ec,
1807                 0x36a00, 0x36abc,
1808                 0x36b00, 0x36b38,
1809                 0x36b20, 0x36b38,
1810                 0x36b40, 0x36b58,
1811                 0x36b60, 0x36b78,
1812                 0x36c00, 0x36c00,
1813                 0x36c08, 0x36c3c,
1814                 0x37000, 0x3702c,
1815                 0x37034, 0x37050,
1816                 0x37058, 0x37058,
1817                 0x37060, 0x3708c,
1818                 0x3709c, 0x370ac,
1819                 0x370c0, 0x370c0,
1820                 0x370c8, 0x370d0,
1821                 0x370d8, 0x370e0,
1822                 0x370ec, 0x3712c,
1823                 0x37134, 0x37150,
1824                 0x37158, 0x37158,
1825                 0x37160, 0x3718c,
1826                 0x3719c, 0x371ac,
1827                 0x371c0, 0x371c0,
1828                 0x371c8, 0x371d0,
1829                 0x371d8, 0x371e0,
1830                 0x371ec, 0x37290,
1831                 0x37298, 0x372c4,
1832                 0x372e4, 0x37390,
1833                 0x37398, 0x373c4,
1834                 0x373e4, 0x3742c,
1835                 0x37434, 0x37450,
1836                 0x37458, 0x37458,
1837                 0x37460, 0x3748c,
1838                 0x3749c, 0x374ac,
1839                 0x374c0, 0x374c0,
1840                 0x374c8, 0x374d0,
1841                 0x374d8, 0x374e0,
1842                 0x374ec, 0x3752c,
1843                 0x37534, 0x37550,
1844                 0x37558, 0x37558,
1845                 0x37560, 0x3758c,
1846                 0x3759c, 0x375ac,
1847                 0x375c0, 0x375c0,
1848                 0x375c8, 0x375d0,
1849                 0x375d8, 0x375e0,
1850                 0x375ec, 0x37690,
1851                 0x37698, 0x376c4,
1852                 0x376e4, 0x37790,
1853                 0x37798, 0x377c4,
1854                 0x377e4, 0x377fc,
1855                 0x37814, 0x37814,
1856                 0x37854, 0x37868,
1857                 0x37880, 0x3788c,
1858                 0x378c0, 0x378d0,
1859                 0x378e8, 0x378ec,
1860                 0x37900, 0x3792c,
1861                 0x37934, 0x37950,
1862                 0x37958, 0x37958,
1863                 0x37960, 0x3798c,
1864                 0x3799c, 0x379ac,
1865                 0x379c0, 0x379c0,
1866                 0x379c8, 0x379d0,
1867                 0x379d8, 0x379e0,
1868                 0x379ec, 0x37a90,
1869                 0x37a98, 0x37ac4,
1870                 0x37ae4, 0x37b10,
1871                 0x37b24, 0x37b28,
1872                 0x37b38, 0x37b50,
1873                 0x37bf0, 0x37c10,
1874                 0x37c24, 0x37c28,
1875                 0x37c38, 0x37c50,
1876                 0x37cf0, 0x37cfc,
1877                 0x40040, 0x40040,
1878                 0x40080, 0x40084,
1879                 0x40100, 0x40100,
1880                 0x40140, 0x401bc,
1881                 0x40200, 0x40214,
1882                 0x40228, 0x40228,
1883                 0x40240, 0x40258,
1884                 0x40280, 0x40280,
1885                 0x40304, 0x40304,
1886                 0x40330, 0x4033c,
1887                 0x41304, 0x413c8,
1888                 0x413d0, 0x413dc,
1889                 0x413f0, 0x413f0,
1890                 0x41400, 0x4140c,
1891                 0x41414, 0x4141c,
1892                 0x41480, 0x414d0,
1893                 0x44000, 0x4407c,
1894                 0x440c0, 0x441ac,
1895                 0x441b4, 0x4427c,
1896                 0x442c0, 0x443ac,
1897                 0x443b4, 0x4447c,
1898                 0x444c0, 0x445ac,
1899                 0x445b4, 0x4467c,
1900                 0x446c0, 0x447ac,
1901                 0x447b4, 0x4487c,
1902                 0x448c0, 0x449ac,
1903                 0x449b4, 0x44a7c,
1904                 0x44ac0, 0x44bac,
1905                 0x44bb4, 0x44c7c,
1906                 0x44cc0, 0x44dac,
1907                 0x44db4, 0x44e7c,
1908                 0x44ec0, 0x44fac,
1909                 0x44fb4, 0x4507c,
1910                 0x450c0, 0x451ac,
1911                 0x451b4, 0x451fc,
1912                 0x45800, 0x45804,
1913                 0x45810, 0x45830,
1914                 0x45840, 0x45860,
1915                 0x45868, 0x45868,
1916                 0x45880, 0x45884,
1917                 0x458a0, 0x458b0,
1918                 0x45a00, 0x45a04,
1919                 0x45a10, 0x45a30,
1920                 0x45a40, 0x45a60,
1921                 0x45a68, 0x45a68,
1922                 0x45a80, 0x45a84,
1923                 0x45aa0, 0x45ab0,
1924                 0x460c0, 0x460e4,
1925                 0x47000, 0x4703c,
1926                 0x47044, 0x4708c,
1927                 0x47200, 0x47250,
1928                 0x47400, 0x47408,
1929                 0x47414, 0x47420,
1930                 0x47600, 0x47618,
1931                 0x47800, 0x47814,
1932                 0x47820, 0x4782c,
1933                 0x50000, 0x50084,
1934                 0x50090, 0x500cc,
1935                 0x50300, 0x50384,
1936                 0x50400, 0x50400,
1937                 0x50800, 0x50884,
1938                 0x50890, 0x508cc,
1939                 0x50b00, 0x50b84,
1940                 0x50c00, 0x50c00,
1941                 0x51000, 0x51020,
1942                 0x51028, 0x510b0,
1943                 0x51300, 0x51324,
1944         };
1945
1946         u32 *buf_end = (u32 *)((char *)buf + buf_size);
1947         const unsigned int *reg_ranges;
1948         int reg_ranges_size, range;
1949         unsigned int chip_version = CHELSIO_CHIP_VERSION(adap->params.chip);
1950
1951         /* Select the right set of register ranges to dump depending on the
1952          * adapter chip type.
1953          */
1954         switch (chip_version) {
1955         case CHELSIO_T5:
1956                 reg_ranges = t5_reg_ranges;
1957                 reg_ranges_size = ARRAY_SIZE(t5_reg_ranges);
1958                 break;
1959
1960         case CHELSIO_T6:
1961                 reg_ranges = t6_reg_ranges;
1962                 reg_ranges_size = ARRAY_SIZE(t6_reg_ranges);
1963                 break;
1964
1965         default:
1966                 dev_err(adap,
1967                         "Unsupported chip version %d\n", chip_version);
1968                 return;
1969         }
1970
1971         /* Clear the register buffer and insert the appropriate register
1972          * values selected by the above register ranges.
1973          */
1974         memset(buf, 0, buf_size);
1975         for (range = 0; range < reg_ranges_size; range += 2) {
1976                 unsigned int reg = reg_ranges[range];
1977                 unsigned int last_reg = reg_ranges[range + 1];
1978                 u32 *bufp = (u32 *)((char *)buf + reg);
1979
1980                 /* Iterate across the register range filling in the register
1981                  * buffer but don't write past the end of the register buffer.
1982                  */
1983                 while (reg <= last_reg && bufp < buf_end) {
1984                         *bufp++ = t4_read_reg(adap, reg);
1985                         reg += sizeof(u32);
1986                 }
1987         }
1988 }
1989
1990 /* EEPROM reads take a few tens of us while writes can take a bit over 5 ms. */
1991 #define EEPROM_DELAY            10              /* 10us per poll spin */
1992 #define EEPROM_MAX_POLL         5000            /* x 5000 == 50ms */
1993
1994 #define EEPROM_STAT_ADDR        0x7bfc
1995
1996 /**
1997  * Small utility function to wait till any outstanding VPD Access is complete.
1998  * We have a per-adapter state variable "VPD Busy" to indicate when we have a
1999  * VPD Access in flight.  This allows us to handle the problem of having a
2000  * previous VPD Access time out and prevent an attempt to inject a new VPD
2001  * Request before any in-flight VPD request has completed.
2002  */
2003 static int t4_seeprom_wait(struct adapter *adapter)
2004 {
2005         unsigned int base = adapter->params.pci.vpd_cap_addr;
2006         int max_poll;
2007
2008         /* If no VPD Access is in flight, we can just return success right
2009          * away.
2010          */
2011         if (!adapter->vpd_busy)
2012                 return 0;
2013
2014         /* Poll the VPD Capability Address/Flag register waiting for it
2015          * to indicate that the operation is complete.
2016          */
2017         max_poll = EEPROM_MAX_POLL;
2018         do {
2019                 u16 val;
2020
2021                 udelay(EEPROM_DELAY);
2022                 t4_os_pci_read_cfg2(adapter, base + PCI_VPD_ADDR, &val);
2023
2024                 /* If the operation is complete, mark the VPD as no longer
2025                  * busy and return success.
2026                  */
2027                 if ((val & PCI_VPD_ADDR_F) == adapter->vpd_flag) {
2028                         adapter->vpd_busy = 0;
2029                         return 0;
2030                 }
2031         } while (--max_poll);
2032
2033         /* Failure!  Note that we leave the VPD Busy status set in order to
2034          * avoid pushing a new VPD Access request into the VPD Capability till
2035          * the current operation eventually succeeds.  It's a bug to issue a
2036          * new request when an existing request is in flight and will result
2037          * in corrupt hardware state.
2038          */
2039         return -ETIMEDOUT;
2040 }
2041
2042 /**
2043  * t4_seeprom_read - read a serial EEPROM location
2044  * @adapter: adapter to read
2045  * @addr: EEPROM virtual address
2046  * @data: where to store the read data
2047  *
2048  * Read a 32-bit word from a location in serial EEPROM using the card's PCI
2049  * VPD capability.  Note that this function must be called with a virtual
2050  * address.
2051  */
2052 int t4_seeprom_read(struct adapter *adapter, u32 addr, u32 *data)
2053 {
2054         unsigned int base = adapter->params.pci.vpd_cap_addr;
2055         int ret;
2056
2057         /* VPD Accesses must alway be 4-byte aligned!
2058          */
2059         if (addr >= EEPROMVSIZE || (addr & 3))
2060                 return -EINVAL;
2061
2062         /* Wait for any previous operation which may still be in flight to
2063          * complete.
2064          */
2065         ret = t4_seeprom_wait(adapter);
2066         if (ret) {
2067                 dev_err(adapter, "VPD still busy from previous operation\n");
2068                 return ret;
2069         }
2070
2071         /* Issue our new VPD Read request, mark the VPD as being busy and wait
2072          * for our request to complete.  If it doesn't complete, note the
2073          * error and return it to our caller.  Note that we do not reset the
2074          * VPD Busy status!
2075          */
2076         t4_os_pci_write_cfg2(adapter, base + PCI_VPD_ADDR, (u16)addr);
2077         adapter->vpd_busy = 1;
2078         adapter->vpd_flag = PCI_VPD_ADDR_F;
2079         ret = t4_seeprom_wait(adapter);
2080         if (ret) {
2081                 dev_err(adapter, "VPD read of address %#x failed\n", addr);
2082                 return ret;
2083         }
2084
2085         /* Grab the returned data, swizzle it into our endianness and
2086          * return success.
2087          */
2088         t4_os_pci_read_cfg4(adapter, base + PCI_VPD_DATA, data);
2089         *data = le32_to_cpu(*data);
2090         return 0;
2091 }
2092
2093 /**
2094  * t4_seeprom_write - write a serial EEPROM location
2095  * @adapter: adapter to write
2096  * @addr: virtual EEPROM address
2097  * @data: value to write
2098  *
2099  * Write a 32-bit word to a location in serial EEPROM using the card's PCI
2100  * VPD capability.  Note that this function must be called with a virtual
2101  * address.
2102  */
2103 int t4_seeprom_write(struct adapter *adapter, u32 addr, u32 data)
2104 {
2105         unsigned int base = adapter->params.pci.vpd_cap_addr;
2106         int ret;
2107         u32 stats_reg = 0;
2108         int max_poll;
2109
2110         /* VPD Accesses must alway be 4-byte aligned!
2111          */
2112         if (addr >= EEPROMVSIZE || (addr & 3))
2113                 return -EINVAL;
2114
2115         /* Wait for any previous operation which may still be in flight to
2116          * complete.
2117          */
2118         ret = t4_seeprom_wait(adapter);
2119         if (ret) {
2120                 dev_err(adapter, "VPD still busy from previous operation\n");
2121                 return ret;
2122         }
2123
2124         /* Issue our new VPD Read request, mark the VPD as being busy and wait
2125          * for our request to complete.  If it doesn't complete, note the
2126          * error and return it to our caller.  Note that we do not reset the
2127          * VPD Busy status!
2128          */
2129         t4_os_pci_write_cfg4(adapter, base + PCI_VPD_DATA,
2130                              cpu_to_le32(data));
2131         t4_os_pci_write_cfg2(adapter, base + PCI_VPD_ADDR,
2132                              (u16)addr | PCI_VPD_ADDR_F);
2133         adapter->vpd_busy = 1;
2134         adapter->vpd_flag = 0;
2135         ret = t4_seeprom_wait(adapter);
2136         if (ret) {
2137                 dev_err(adapter, "VPD write of address %#x failed\n", addr);
2138                 return ret;
2139         }
2140
2141         /* Reset PCI_VPD_DATA register after a transaction and wait for our
2142          * request to complete. If it doesn't complete, return error.
2143          */
2144         t4_os_pci_write_cfg4(adapter, base + PCI_VPD_DATA, 0);
2145         max_poll = EEPROM_MAX_POLL;
2146         do {
2147                 udelay(EEPROM_DELAY);
2148                 t4_seeprom_read(adapter, EEPROM_STAT_ADDR, &stats_reg);
2149         } while ((stats_reg & 0x1) && --max_poll);
2150         if (!max_poll)
2151                 return -ETIMEDOUT;
2152
2153         /* Return success! */
2154         return 0;
2155 }
2156
2157 /**
2158  * t4_seeprom_wp - enable/disable EEPROM write protection
2159  * @adapter: the adapter
2160  * @enable: whether to enable or disable write protection
2161  *
2162  * Enables or disables write protection on the serial EEPROM.
2163  */
2164 int t4_seeprom_wp(struct adapter *adapter, int enable)
2165 {
2166         return t4_seeprom_write(adapter, EEPROM_STAT_ADDR, enable ? 0xc : 0);
2167 }
2168
2169 /**
2170  * t4_fw_tp_pio_rw - Access TP PIO through LDST
2171  * @adap: the adapter
2172  * @vals: where the indirect register values are stored/written
2173  * @nregs: how many indirect registers to read/write
2174  * @start_idx: index of first indirect register to read/write
2175  * @rw: Read (1) or Write (0)
2176  *
2177  * Access TP PIO registers through LDST
2178  */
2179 void t4_fw_tp_pio_rw(struct adapter *adap, u32 *vals, unsigned int nregs,
2180                      unsigned int start_index, unsigned int rw)
2181 {
2182         int cmd = FW_LDST_ADDRSPC_TP_PIO;
2183         struct fw_ldst_cmd c;
2184         unsigned int i;
2185         int ret;
2186
2187         for (i = 0 ; i < nregs; i++) {
2188                 memset(&c, 0, sizeof(c));
2189                 c.op_to_addrspace = cpu_to_be32(V_FW_CMD_OP(FW_LDST_CMD) |
2190                                                 F_FW_CMD_REQUEST |
2191                                                 (rw ? F_FW_CMD_READ :
2192                                                       F_FW_CMD_WRITE) |
2193                                                 V_FW_LDST_CMD_ADDRSPACE(cmd));
2194                 c.cycles_to_len16 = cpu_to_be32(FW_LEN16(c));
2195
2196                 c.u.addrval.addr = cpu_to_be32(start_index + i);
2197                 c.u.addrval.val  = rw ? 0 : cpu_to_be32(vals[i]);
2198                 ret = t4_wr_mbox(adap, adap->mbox, &c, sizeof(c), &c);
2199                 if (ret == 0) {
2200                         if (rw)
2201                                 vals[i] = be32_to_cpu(c.u.addrval.val);
2202                 }
2203         }
2204 }
2205
2206 /**
2207  * t4_read_rss_key - read the global RSS key
2208  * @adap: the adapter
2209  * @key: 10-entry array holding the 320-bit RSS key
2210  *
2211  * Reads the global 320-bit RSS key.
2212  */
2213 void t4_read_rss_key(struct adapter *adap, u32 *key)
2214 {
2215         t4_fw_tp_pio_rw(adap, key, 10, A_TP_RSS_SECRET_KEY0, 1);
2216 }
2217
2218 /**
2219  * t4_write_rss_key - program one of the RSS keys
2220  * @adap: the adapter
2221  * @key: 10-entry array holding the 320-bit RSS key
2222  * @idx: which RSS key to write
2223  *
2224  * Writes one of the RSS keys with the given 320-bit value.  If @idx is
2225  * 0..15 the corresponding entry in the RSS key table is written,
2226  * otherwise the global RSS key is written.
2227  */
2228 void t4_write_rss_key(struct adapter *adap, u32 *key, int idx)
2229 {
2230         u32 vrt = t4_read_reg(adap, A_TP_RSS_CONFIG_VRT);
2231         u8 rss_key_addr_cnt = 16;
2232
2233         /* T6 and later: for KeyMode 3 (per-vf and per-vf scramble),
2234          * allows access to key addresses 16-63 by using KeyWrAddrX
2235          * as index[5:4](upper 2) into key table
2236          */
2237         if ((CHELSIO_CHIP_VERSION(adap->params.chip) > CHELSIO_T5) &&
2238             (vrt & F_KEYEXTEND) && (G_KEYMODE(vrt) == 3))
2239                 rss_key_addr_cnt = 32;
2240
2241         t4_fw_tp_pio_rw(adap, key, 10, A_TP_RSS_SECRET_KEY0, 0);
2242
2243         if (idx >= 0 && idx < rss_key_addr_cnt) {
2244                 if (rss_key_addr_cnt > 16)
2245                         t4_write_reg(adap, A_TP_RSS_CONFIG_VRT,
2246                                      V_KEYWRADDRX(idx >> 4) |
2247                                      V_T6_VFWRADDR(idx) | F_KEYWREN);
2248                 else
2249                         t4_write_reg(adap, A_TP_RSS_CONFIG_VRT,
2250                                      V_KEYWRADDR(idx) | F_KEYWREN);
2251         }
2252 }
2253
2254 /**
2255  * t4_config_rss_range - configure a portion of the RSS mapping table
2256  * @adapter: the adapter
2257  * @mbox: mbox to use for the FW command
2258  * @viid: virtual interface whose RSS subtable is to be written
2259  * @start: start entry in the table to write
2260  * @n: how many table entries to write
2261  * @rspq: values for the "response queue" (Ingress Queue) lookup table
2262  * @nrspq: number of values in @rspq
2263  *
2264  * Programs the selected part of the VI's RSS mapping table with the
2265  * provided values.  If @nrspq < @n the supplied values are used repeatedly
2266  * until the full table range is populated.
2267  *
2268  * The caller must ensure the values in @rspq are in the range allowed for
2269  * @viid.
2270  */
2271 int t4_config_rss_range(struct adapter *adapter, int mbox, unsigned int viid,
2272                         int start, int n, const u16 *rspq, unsigned int nrspq)
2273 {
2274         int ret;
2275         const u16 *rsp = rspq;
2276         const u16 *rsp_end = rspq + nrspq;
2277         struct fw_rss_ind_tbl_cmd cmd;
2278
2279         memset(&cmd, 0, sizeof(cmd));
2280         cmd.op_to_viid = cpu_to_be32(V_FW_CMD_OP(FW_RSS_IND_TBL_CMD) |
2281                                      F_FW_CMD_REQUEST | F_FW_CMD_WRITE |
2282                                      V_FW_RSS_IND_TBL_CMD_VIID(viid));
2283         cmd.retval_len16 = cpu_to_be32(FW_LEN16(cmd));
2284
2285         /*
2286          * Each firmware RSS command can accommodate up to 32 RSS Ingress
2287          * Queue Identifiers.  These Ingress Queue IDs are packed three to
2288          * a 32-bit word as 10-bit values with the upper remaining 2 bits
2289          * reserved.
2290          */
2291         while (n > 0) {
2292                 int nq = min(n, 32);
2293                 int nq_packed = 0;
2294                 __be32 *qp = &cmd.iq0_to_iq2;
2295
2296                 /*
2297                  * Set up the firmware RSS command header to send the next
2298                  * "nq" Ingress Queue IDs to the firmware.
2299                  */
2300                 cmd.niqid = cpu_to_be16(nq);
2301                 cmd.startidx = cpu_to_be16(start);
2302
2303                 /*
2304                  * "nq" more done for the start of the next loop.
2305                  */
2306                 start += nq;
2307                 n -= nq;
2308
2309                 /*
2310                  * While there are still Ingress Queue IDs to stuff into the
2311                  * current firmware RSS command, retrieve them from the
2312                  * Ingress Queue ID array and insert them into the command.
2313                  */
2314                 while (nq > 0) {
2315                         /*
2316                          * Grab up to the next 3 Ingress Queue IDs (wrapping
2317                          * around the Ingress Queue ID array if necessary) and
2318                          * insert them into the firmware RSS command at the
2319                          * current 3-tuple position within the commad.
2320                          */
2321                         u16 qbuf[3];
2322                         u16 *qbp = qbuf;
2323                         int nqbuf = min(3, nq);
2324
2325                         nq -= nqbuf;
2326                         qbuf[0] = 0;
2327                         qbuf[1] = 0;
2328                         qbuf[2] = 0;
2329                         while (nqbuf && nq_packed < 32) {
2330                                 nqbuf--;
2331                                 nq_packed++;
2332                                 *qbp++ = *rsp++;
2333                                 if (rsp >= rsp_end)
2334                                         rsp = rspq;
2335                         }
2336                         *qp++ = cpu_to_be32(V_FW_RSS_IND_TBL_CMD_IQ0(qbuf[0]) |
2337                                             V_FW_RSS_IND_TBL_CMD_IQ1(qbuf[1]) |
2338                                             V_FW_RSS_IND_TBL_CMD_IQ2(qbuf[2]));
2339                 }
2340
2341                 /*
2342                  * Send this portion of the RRS table update to the firmware;
2343                  * bail out on any errors.
2344                  */
2345                 if (is_pf4(adapter))
2346                         ret = t4_wr_mbox(adapter, mbox, &cmd, sizeof(cmd),
2347                                          NULL);
2348                 else
2349                         ret = t4vf_wr_mbox(adapter, &cmd, sizeof(cmd), NULL);
2350                 if (ret)
2351                         return ret;
2352         }
2353
2354         return 0;
2355 }
2356
2357 /**
2358  * t4_config_vi_rss - configure per VI RSS settings
2359  * @adapter: the adapter
2360  * @mbox: mbox to use for the FW command
2361  * @viid: the VI id
2362  * @flags: RSS flags
2363  * @defq: id of the default RSS queue for the VI.
2364  *
2365  * Configures VI-specific RSS properties.
2366  */
2367 int t4_config_vi_rss(struct adapter *adapter, int mbox, unsigned int viid,
2368                      unsigned int flags, unsigned int defq)
2369 {
2370         struct fw_rss_vi_config_cmd c;
2371
2372         memset(&c, 0, sizeof(c));
2373         c.op_to_viid = cpu_to_be32(V_FW_CMD_OP(FW_RSS_VI_CONFIG_CMD) |
2374                                    F_FW_CMD_REQUEST | F_FW_CMD_WRITE |
2375                                    V_FW_RSS_VI_CONFIG_CMD_VIID(viid));
2376         c.retval_len16 = cpu_to_be32(FW_LEN16(c));
2377         c.u.basicvirtual.defaultq_to_udpen = cpu_to_be32(flags |
2378                         V_FW_RSS_VI_CONFIG_CMD_DEFAULTQ(defq));
2379         if (is_pf4(adapter))
2380                 return t4_wr_mbox(adapter, mbox, &c, sizeof(c), NULL);
2381         else
2382                 return t4vf_wr_mbox(adapter, &c, sizeof(c), NULL);
2383 }
2384
2385 /**
2386  * t4_read_config_vi_rss - read the configured per VI RSS settings
2387  * @adapter: the adapter
2388  * @mbox: mbox to use for the FW command
2389  * @viid: the VI id
2390  * @flags: where to place the configured flags
2391  * @defq: where to place the id of the default RSS queue for the VI.
2392  *
2393  * Read configured VI-specific RSS properties.
2394  */
2395 int t4_read_config_vi_rss(struct adapter *adapter, int mbox, unsigned int viid,
2396                           u64 *flags, unsigned int *defq)
2397 {
2398         struct fw_rss_vi_config_cmd c;
2399         unsigned int result;
2400         int ret;
2401
2402         memset(&c, 0, sizeof(c));
2403         c.op_to_viid = cpu_to_be32(V_FW_CMD_OP(FW_RSS_VI_CONFIG_CMD) |
2404                                    F_FW_CMD_REQUEST | F_FW_CMD_READ |
2405                                    V_FW_RSS_VI_CONFIG_CMD_VIID(viid));
2406         c.retval_len16 = cpu_to_be32(FW_LEN16(c));
2407         ret = t4_wr_mbox(adapter, mbox, &c, sizeof(c), &c);
2408         if (!ret) {
2409                 result = be32_to_cpu(c.u.basicvirtual.defaultq_to_udpen);
2410                 if (defq)
2411                         *defq = G_FW_RSS_VI_CONFIG_CMD_DEFAULTQ(result);
2412                 if (flags)
2413                         *flags = result & M_FW_RSS_VI_CONFIG_CMD_DEFAULTQ;
2414         }
2415
2416         return ret;
2417 }
2418
2419 /**
2420  * init_cong_ctrl - initialize congestion control parameters
2421  * @a: the alpha values for congestion control
2422  * @b: the beta values for congestion control
2423  *
2424  * Initialize the congestion control parameters.
2425  */
2426 static void init_cong_ctrl(unsigned short *a, unsigned short *b)
2427 {
2428         int i;
2429
2430         for (i = 0; i < 9; i++) {
2431                 a[i] = 1;
2432                 b[i] = 0;
2433         }
2434
2435         a[9] = 2;
2436         a[10] = 3;
2437         a[11] = 4;
2438         a[12] = 5;
2439         a[13] = 6;
2440         a[14] = 7;
2441         a[15] = 8;
2442         a[16] = 9;
2443         a[17] = 10;
2444         a[18] = 14;
2445         a[19] = 17;
2446         a[20] = 21;
2447         a[21] = 25;
2448         a[22] = 30;
2449         a[23] = 35;
2450         a[24] = 45;
2451         a[25] = 60;
2452         a[26] = 80;
2453         a[27] = 100;
2454         a[28] = 200;
2455         a[29] = 300;
2456         a[30] = 400;
2457         a[31] = 500;
2458
2459         b[9] = 1;
2460         b[10] = 1;
2461         b[11] = 2;
2462         b[12] = 2;
2463         b[13] = 3;
2464         b[14] = 3;
2465         b[15] = 3;
2466         b[16] = 3;
2467         b[17] = 4;
2468         b[18] = 4;
2469         b[19] = 4;
2470         b[20] = 4;
2471         b[21] = 4;
2472         b[22] = 5;
2473         b[23] = 5;
2474         b[24] = 5;
2475         b[25] = 5;
2476         b[26] = 5;
2477         b[27] = 5;
2478         b[28] = 6;
2479         b[29] = 6;
2480         b[30] = 7;
2481         b[31] = 7;
2482 }
2483
2484 #define INIT_CMD(var, cmd, rd_wr) do { \
2485         (var).op_to_write = cpu_to_be32(V_FW_CMD_OP(FW_##cmd##_CMD) | \
2486                         F_FW_CMD_REQUEST | F_FW_CMD_##rd_wr); \
2487         (var).retval_len16 = cpu_to_be32(FW_LEN16(var)); \
2488 } while (0)
2489
2490 int t4_get_core_clock(struct adapter *adapter, struct vpd_params *p)
2491 {
2492         u32 cclk_param, cclk_val;
2493         int ret;
2494
2495         /*
2496          * Ask firmware for the Core Clock since it knows how to translate the
2497          * Reference Clock ('V2') VPD field into a Core Clock value ...
2498          */
2499         cclk_param = (V_FW_PARAMS_MNEM(FW_PARAMS_MNEM_DEV) |
2500                       V_FW_PARAMS_PARAM_X(FW_PARAMS_PARAM_DEV_CCLK));
2501         ret = t4_query_params(adapter, adapter->mbox, adapter->pf, 0,
2502                               1, &cclk_param, &cclk_val);
2503         if (ret) {
2504                 dev_err(adapter, "%s: error in fetching from coreclock - %d\n",
2505                         __func__, ret);
2506                 return ret;
2507         }
2508
2509         p->cclk = cclk_val;
2510         dev_debug(adapter, "%s: p->cclk = %u\n", __func__, p->cclk);
2511         return 0;
2512 }
2513
2514 /* serial flash and firmware constants and flash config file constants */
2515 enum {
2516         SF_ATTEMPTS = 10,             /* max retries for SF operations */
2517
2518         /* flash command opcodes */
2519         SF_PROG_PAGE    = 2,          /* program page */
2520         SF_WR_DISABLE   = 4,          /* disable writes */
2521         SF_RD_STATUS    = 5,          /* read status register */
2522         SF_WR_ENABLE    = 6,          /* enable writes */
2523         SF_RD_DATA_FAST = 0xb,        /* read flash */
2524         SF_RD_ID        = 0x9f,       /* read ID */
2525         SF_ERASE_SECTOR = 0xd8,       /* erase sector */
2526 };
2527
2528 /**
2529  * sf1_read - read data from the serial flash
2530  * @adapter: the adapter
2531  * @byte_cnt: number of bytes to read
2532  * @cont: whether another operation will be chained
2533  * @lock: whether to lock SF for PL access only
2534  * @valp: where to store the read data
2535  *
2536  * Reads up to 4 bytes of data from the serial flash.  The location of
2537  * the read needs to be specified prior to calling this by issuing the
2538  * appropriate commands to the serial flash.
2539  */
2540 static int sf1_read(struct adapter *adapter, unsigned int byte_cnt, int cont,
2541                     int lock, u32 *valp)
2542 {
2543         int ret;
2544
2545         if (!byte_cnt || byte_cnt > 4)
2546                 return -EINVAL;
2547         if (t4_read_reg(adapter, A_SF_OP) & F_BUSY)
2548                 return -EBUSY;
2549         t4_write_reg(adapter, A_SF_OP,
2550                      V_SF_LOCK(lock) | V_CONT(cont) | V_BYTECNT(byte_cnt - 1));
2551         ret = t4_wait_op_done(adapter, A_SF_OP, F_BUSY, 0, SF_ATTEMPTS, 5);
2552         if (!ret)
2553                 *valp = t4_read_reg(adapter, A_SF_DATA);
2554         return ret;
2555 }
2556
2557 /**
2558  * sf1_write - write data to the serial flash
2559  * @adapter: the adapter
2560  * @byte_cnt: number of bytes to write
2561  * @cont: whether another operation will be chained
2562  * @lock: whether to lock SF for PL access only
2563  * @val: value to write
2564  *
2565  * Writes up to 4 bytes of data to the serial flash.  The location of
2566  * the write needs to be specified prior to calling this by issuing the
2567  * appropriate commands to the serial flash.
2568  */
2569 static int sf1_write(struct adapter *adapter, unsigned int byte_cnt, int cont,
2570                      int lock, u32 val)
2571 {
2572         if (!byte_cnt || byte_cnt > 4)
2573                 return -EINVAL;
2574         if (t4_read_reg(adapter, A_SF_OP) & F_BUSY)
2575                 return -EBUSY;
2576         t4_write_reg(adapter, A_SF_DATA, val);
2577         t4_write_reg(adapter, A_SF_OP, V_SF_LOCK(lock) |
2578                      V_CONT(cont) | V_BYTECNT(byte_cnt - 1) | V_OP(1));
2579         return t4_wait_op_done(adapter, A_SF_OP, F_BUSY, 0, SF_ATTEMPTS, 5);
2580 }
2581
2582 /**
2583  * t4_read_flash - read words from serial flash
2584  * @adapter: the adapter
2585  * @addr: the start address for the read
2586  * @nwords: how many 32-bit words to read
2587  * @data: where to store the read data
2588  * @byte_oriented: whether to store data as bytes or as words
2589  *
2590  * Read the specified number of 32-bit words from the serial flash.
2591  * If @byte_oriented is set the read data is stored as a byte array
2592  * (i.e., big-endian), otherwise as 32-bit words in the platform's
2593  * natural endianness.
2594  */
2595 int t4_read_flash(struct adapter *adapter, unsigned int addr,
2596                   unsigned int nwords, u32 *data, int byte_oriented)
2597 {
2598         int ret;
2599
2600         if (((addr + nwords * sizeof(u32)) > adapter->params.sf_size) ||
2601             (addr & 3))
2602                 return -EINVAL;
2603
2604         addr = rte_constant_bswap32(addr) | SF_RD_DATA_FAST;
2605
2606         ret = sf1_write(adapter, 4, 1, 0, addr);
2607         if (ret != 0)
2608                 return ret;
2609
2610         ret = sf1_read(adapter, 1, 1, 0, data);
2611         if (ret != 0)
2612                 return ret;
2613
2614         for ( ; nwords; nwords--, data++) {
2615                 ret = sf1_read(adapter, 4, nwords > 1, nwords == 1, data);
2616                 if (nwords == 1)
2617                         t4_write_reg(adapter, A_SF_OP, 0);    /* unlock SF */
2618                 if (ret)
2619                         return ret;
2620                 if (byte_oriented)
2621                         *data = cpu_to_be32(*data);
2622         }
2623         return 0;
2624 }
2625
2626 /**
2627  * t4_get_exprom_version - return the Expansion ROM version (if any)
2628  * @adapter: the adapter
2629  * @vers: where to place the version
2630  *
2631  * Reads the Expansion ROM header from FLASH and returns the version
2632  * number (if present) through the @vers return value pointer.  We return
2633  * this in the Firmware Version Format since it's convenient.  Return
2634  * 0 on success, -ENOENT if no Expansion ROM is present.
2635  */
2636 static int t4_get_exprom_version(struct adapter *adapter, u32 *vers)
2637 {
2638         struct exprom_header {
2639                 unsigned char hdr_arr[16];      /* must start with 0x55aa */
2640                 unsigned char hdr_ver[4];       /* Expansion ROM version */
2641         } *hdr;
2642         u32 exprom_header_buf[DIV_ROUND_UP(sizeof(struct exprom_header),
2643                                            sizeof(u32))];
2644         int ret;
2645
2646         ret = t4_read_flash(adapter, FLASH_EXP_ROM_START,
2647                             ARRAY_SIZE(exprom_header_buf),
2648                             exprom_header_buf, 0);
2649         if (ret)
2650                 return ret;
2651
2652         hdr = (struct exprom_header *)exprom_header_buf;
2653         if (hdr->hdr_arr[0] != 0x55 || hdr->hdr_arr[1] != 0xaa)
2654                 return -ENOENT;
2655
2656         *vers = (V_FW_HDR_FW_VER_MAJOR(hdr->hdr_ver[0]) |
2657                  V_FW_HDR_FW_VER_MINOR(hdr->hdr_ver[1]) |
2658                  V_FW_HDR_FW_VER_MICRO(hdr->hdr_ver[2]) |
2659                  V_FW_HDR_FW_VER_BUILD(hdr->hdr_ver[3]));
2660         return 0;
2661 }
2662
2663 /**
2664  * t4_get_fw_version - read the firmware version
2665  * @adapter: the adapter
2666  * @vers: where to place the version
2667  *
2668  * Reads the FW version from flash.
2669  */
2670 static int t4_get_fw_version(struct adapter *adapter, u32 *vers)
2671 {
2672         return t4_read_flash(adapter, FLASH_FW_START +
2673                              offsetof(struct fw_hdr, fw_ver), 1, vers, 0);
2674 }
2675
2676 /**
2677  *     t4_get_bs_version - read the firmware bootstrap version
2678  *     @adapter: the adapter
2679  *     @vers: where to place the version
2680  *
2681  *     Reads the FW Bootstrap version from flash.
2682  */
2683 static int t4_get_bs_version(struct adapter *adapter, u32 *vers)
2684 {
2685         return t4_read_flash(adapter, FLASH_FWBOOTSTRAP_START +
2686                              offsetof(struct fw_hdr, fw_ver), 1,
2687                              vers, 0);
2688 }
2689
2690 /**
2691  * t4_get_tp_version - read the TP microcode version
2692  * @adapter: the adapter
2693  * @vers: where to place the version
2694  *
2695  * Reads the TP microcode version from flash.
2696  */
2697 static int t4_get_tp_version(struct adapter *adapter, u32 *vers)
2698 {
2699         return t4_read_flash(adapter, FLASH_FW_START +
2700                              offsetof(struct fw_hdr, tp_microcode_ver),
2701                              1, vers, 0);
2702 }
2703
2704 /**
2705  * t4_get_version_info - extract various chip/firmware version information
2706  * @adapter: the adapter
2707  *
2708  * Reads various chip/firmware version numbers and stores them into the
2709  * adapter Adapter Parameters structure.  If any of the efforts fails
2710  * the first failure will be returned, but all of the version numbers
2711  * will be read.
2712  */
2713 int t4_get_version_info(struct adapter *adapter)
2714 {
2715         int ret = 0;
2716
2717 #define FIRST_RET(__getvinfo) \
2718         do { \
2719                 int __ret = __getvinfo; \
2720                 if (__ret && !ret) \
2721                         ret = __ret; \
2722         } while (0)
2723
2724         FIRST_RET(t4_get_fw_version(adapter, &adapter->params.fw_vers));
2725         FIRST_RET(t4_get_bs_version(adapter, &adapter->params.bs_vers));
2726         FIRST_RET(t4_get_tp_version(adapter, &adapter->params.tp_vers));
2727         FIRST_RET(t4_get_exprom_version(adapter, &adapter->params.er_vers));
2728
2729 #undef FIRST_RET
2730
2731         return ret;
2732 }
2733
2734 /**
2735  * t4_dump_version_info - dump all of the adapter configuration IDs
2736  * @adapter: the adapter
2737  *
2738  * Dumps all of the various bits of adapter configuration version/revision
2739  * IDs information.  This is typically called at some point after
2740  * t4_get_version_info() has been called.
2741  */
2742 void t4_dump_version_info(struct adapter *adapter)
2743 {
2744         /**
2745          * Device information.
2746          */
2747         dev_info(adapter, "Chelsio rev %d\n",
2748                  CHELSIO_CHIP_RELEASE(adapter->params.chip));
2749
2750         /**
2751          * Firmware Version.
2752          */
2753         if (!adapter->params.fw_vers)
2754                 dev_warn(adapter, "No firmware loaded\n");
2755         else
2756                 dev_info(adapter, "Firmware version: %u.%u.%u.%u\n",
2757                          G_FW_HDR_FW_VER_MAJOR(adapter->params.fw_vers),
2758                          G_FW_HDR_FW_VER_MINOR(adapter->params.fw_vers),
2759                          G_FW_HDR_FW_VER_MICRO(adapter->params.fw_vers),
2760                          G_FW_HDR_FW_VER_BUILD(adapter->params.fw_vers));
2761
2762         /**
2763          * Bootstrap Firmware Version.
2764          */
2765         if (!adapter->params.bs_vers)
2766                 dev_warn(adapter, "No bootstrap loaded\n");
2767         else
2768                 dev_info(adapter, "Bootstrap version: %u.%u.%u.%u\n",
2769                          G_FW_HDR_FW_VER_MAJOR(adapter->params.bs_vers),
2770                          G_FW_HDR_FW_VER_MINOR(adapter->params.bs_vers),
2771                          G_FW_HDR_FW_VER_MICRO(adapter->params.bs_vers),
2772                          G_FW_HDR_FW_VER_BUILD(adapter->params.bs_vers));
2773
2774         /**
2775          * TP Microcode Version.
2776          */
2777         if (!adapter->params.tp_vers)
2778                 dev_warn(adapter, "No TP Microcode loaded\n");
2779         else
2780                 dev_info(adapter, "TP Microcode version: %u.%u.%u.%u\n",
2781                          G_FW_HDR_FW_VER_MAJOR(adapter->params.tp_vers),
2782                          G_FW_HDR_FW_VER_MINOR(adapter->params.tp_vers),
2783                          G_FW_HDR_FW_VER_MICRO(adapter->params.tp_vers),
2784                          G_FW_HDR_FW_VER_BUILD(adapter->params.tp_vers));
2785
2786         /**
2787          * Expansion ROM version.
2788          */
2789         if (!adapter->params.er_vers)
2790                 dev_info(adapter, "No Expansion ROM loaded\n");
2791         else
2792                 dev_info(adapter, "Expansion ROM version: %u.%u.%u.%u\n",
2793                          G_FW_HDR_FW_VER_MAJOR(adapter->params.er_vers),
2794                          G_FW_HDR_FW_VER_MINOR(adapter->params.er_vers),
2795                          G_FW_HDR_FW_VER_MICRO(adapter->params.er_vers),
2796                          G_FW_HDR_FW_VER_BUILD(adapter->params.er_vers));
2797 }
2798
2799 #define ADVERT_MASK (V_FW_PORT_CAP32_SPEED(M_FW_PORT_CAP32_SPEED) | \
2800                      FW_PORT_CAP32_ANEG)
2801 /**
2802  *     fwcaps16_to_caps32 - convert 16-bit Port Capabilities to 32-bits
2803  *     @caps16: a 16-bit Port Capabilities value
2804  *
2805  *     Returns the equivalent 32-bit Port Capabilities value.
2806  */
2807 static fw_port_cap32_t fwcaps16_to_caps32(fw_port_cap16_t caps16)
2808 {
2809         fw_port_cap32_t caps32 = 0;
2810
2811 #define CAP16_TO_CAP32(__cap) \
2812         do { \
2813                 if (caps16 & FW_PORT_CAP_##__cap) \
2814                         caps32 |= FW_PORT_CAP32_##__cap; \
2815         } while (0)
2816
2817         CAP16_TO_CAP32(SPEED_100M);
2818         CAP16_TO_CAP32(SPEED_1G);
2819         CAP16_TO_CAP32(SPEED_25G);
2820         CAP16_TO_CAP32(SPEED_10G);
2821         CAP16_TO_CAP32(SPEED_40G);
2822         CAP16_TO_CAP32(SPEED_100G);
2823         CAP16_TO_CAP32(FC_RX);
2824         CAP16_TO_CAP32(FC_TX);
2825         CAP16_TO_CAP32(ANEG);
2826         CAP16_TO_CAP32(MDIX);
2827         CAP16_TO_CAP32(MDIAUTO);
2828         CAP16_TO_CAP32(FEC_RS);
2829         CAP16_TO_CAP32(FEC_BASER_RS);
2830         CAP16_TO_CAP32(802_3_PAUSE);
2831         CAP16_TO_CAP32(802_3_ASM_DIR);
2832
2833 #undef CAP16_TO_CAP32
2834
2835         return caps32;
2836 }
2837
2838 /**
2839  *     fwcaps32_to_caps16 - convert 32-bit Port Capabilities to 16-bits
2840  *     @caps32: a 32-bit Port Capabilities value
2841  *
2842  *     Returns the equivalent 16-bit Port Capabilities value.  Note that
2843  *     not all 32-bit Port Capabilities can be represented in the 16-bit
2844  *     Port Capabilities and some fields/values may not make it.
2845  */
2846 static fw_port_cap16_t fwcaps32_to_caps16(fw_port_cap32_t caps32)
2847 {
2848         fw_port_cap16_t caps16 = 0;
2849
2850 #define CAP32_TO_CAP16(__cap) \
2851         do { \
2852                 if (caps32 & FW_PORT_CAP32_##__cap) \
2853                         caps16 |= FW_PORT_CAP_##__cap; \
2854         } while (0)
2855
2856         CAP32_TO_CAP16(SPEED_100M);
2857         CAP32_TO_CAP16(SPEED_1G);
2858         CAP32_TO_CAP16(SPEED_10G);
2859         CAP32_TO_CAP16(SPEED_25G);
2860         CAP32_TO_CAP16(SPEED_40G);
2861         CAP32_TO_CAP16(SPEED_100G);
2862         CAP32_TO_CAP16(FC_RX);
2863         CAP32_TO_CAP16(FC_TX);
2864         CAP32_TO_CAP16(802_3_PAUSE);
2865         CAP32_TO_CAP16(802_3_ASM_DIR);
2866         CAP32_TO_CAP16(ANEG);
2867         CAP32_TO_CAP16(MDIX);
2868         CAP32_TO_CAP16(MDIAUTO);
2869         CAP32_TO_CAP16(FEC_RS);
2870         CAP32_TO_CAP16(FEC_BASER_RS);
2871
2872 #undef CAP32_TO_CAP16
2873
2874         return caps16;
2875 }
2876
2877 /* Translate Firmware Pause specification to Common Code */
2878 static inline enum cc_pause fwcap_to_cc_pause(fw_port_cap32_t fw_pause)
2879 {
2880         enum cc_pause cc_pause = 0;
2881
2882         if (fw_pause & FW_PORT_CAP32_FC_RX)
2883                 cc_pause |= PAUSE_RX;
2884         if (fw_pause & FW_PORT_CAP32_FC_TX)
2885                 cc_pause |= PAUSE_TX;
2886
2887         return cc_pause;
2888 }
2889
2890 /* Translate Common Code Pause Frame specification into Firmware */
2891 static inline fw_port_cap32_t cc_to_fwcap_pause(enum cc_pause cc_pause)
2892 {
2893         fw_port_cap32_t fw_pause = 0;
2894
2895         if (cc_pause & PAUSE_RX)
2896                 fw_pause |= FW_PORT_CAP32_FC_RX;
2897         if (cc_pause & PAUSE_TX)
2898                 fw_pause |= FW_PORT_CAP32_FC_TX;
2899
2900         return fw_pause;
2901 }
2902
2903 /* Translate Firmware Forward Error Correction specification to Common Code */
2904 static inline enum cc_fec fwcap_to_cc_fec(fw_port_cap32_t fw_fec)
2905 {
2906         enum cc_fec cc_fec = 0;
2907
2908         if (fw_fec & FW_PORT_CAP32_FEC_RS)
2909                 cc_fec |= FEC_RS;
2910         if (fw_fec & FW_PORT_CAP32_FEC_BASER_RS)
2911                 cc_fec |= FEC_BASER_RS;
2912
2913         return cc_fec;
2914 }
2915
2916 /* Translate Common Code Forward Error Correction specification to Firmware */
2917 static inline fw_port_cap32_t cc_to_fwcap_fec(enum cc_fec cc_fec)
2918 {
2919         fw_port_cap32_t fw_fec = 0;
2920
2921         if (cc_fec & FEC_RS)
2922                 fw_fec |= FW_PORT_CAP32_FEC_RS;
2923         if (cc_fec & FEC_BASER_RS)
2924                 fw_fec |= FW_PORT_CAP32_FEC_BASER_RS;
2925
2926         return fw_fec;
2927 }
2928
2929 /**
2930  * t4_link_l1cfg - apply link configuration to MAC/PHY
2931  * @adapter: the adapter
2932  * @mbox: the Firmware Mailbox to use
2933  * @port: the Port ID
2934  * @lc: the Port's Link Configuration
2935  *
2936  * Set up a port's MAC and PHY according to a desired link configuration.
2937  * - If the PHY can auto-negotiate first decide what to advertise, then
2938  *   enable/disable auto-negotiation as desired, and reset.
2939  * - If the PHY does not auto-negotiate just reset it.
2940  * - If auto-negotiation is off set the MAC to the proper speed/duplex/FC,
2941  *   otherwise do it later based on the outcome of auto-negotiation.
2942  */
2943 int t4_link_l1cfg(struct adapter *adap, unsigned int mbox, unsigned int port,
2944                   struct link_config *lc)
2945 {
2946         unsigned int fw_mdi = V_FW_PORT_CAP32_MDI(FW_PORT_CAP32_MDI_AUTO);
2947         unsigned int fw_caps = adap->params.fw_caps_support;
2948         fw_port_cap32_t fw_fc, cc_fec, fw_fec, rcap;
2949         struct fw_port_cmd cmd;
2950
2951         lc->link_ok = 0;
2952
2953         fw_fc = cc_to_fwcap_pause(lc->requested_fc);
2954
2955         /* Convert Common Code Forward Error Control settings into the
2956          * Firmware's API.  If the current Requested FEC has "Automatic"
2957          * (IEEE 802.3) specified, then we use whatever the Firmware
2958          * sent us as part of it's IEEE 802.3-based interpratation of
2959          * the Transceiver Module EPROM FEC parameters.  Otherwise we
2960          * use whatever is in the current Requested FEC settings.
2961          */
2962         if (lc->requested_fec & FEC_AUTO)
2963                 cc_fec = lc->auto_fec;
2964         else
2965                 cc_fec = lc->requested_fec;
2966         fw_fec = cc_to_fwcap_fec(cc_fec);
2967
2968         /* Figure out what our Requested Port Capabilities are going to be.
2969          */
2970         if (!(lc->pcaps & FW_PORT_CAP32_ANEG)) {
2971                 rcap = (lc->pcaps & ADVERT_MASK) | fw_fc | fw_fec;
2972                 lc->fc = lc->requested_fc & ~PAUSE_AUTONEG;
2973                 lc->fec = cc_fec;
2974         } else if (lc->autoneg == AUTONEG_DISABLE) {
2975                 rcap = lc->requested_speed | fw_fc | fw_fec | fw_mdi;
2976                 lc->fc = lc->requested_fc & ~PAUSE_AUTONEG;
2977                 lc->fec = cc_fec;
2978         } else {
2979                 rcap = lc->acaps | fw_fc | fw_fec | fw_mdi;
2980         }
2981
2982         /* And send that on to the Firmware ...
2983          */
2984         memset(&cmd, 0, sizeof(cmd));
2985         cmd.op_to_portid = cpu_to_be32(V_FW_CMD_OP(FW_PORT_CMD) |
2986                                        F_FW_CMD_REQUEST | F_FW_CMD_EXEC |
2987                                        V_FW_PORT_CMD_PORTID(port));
2988         cmd.action_to_len16 =
2989                 cpu_to_be32(V_FW_PORT_CMD_ACTION(fw_caps == FW_CAPS16 ?
2990                                                  FW_PORT_ACTION_L1_CFG :
2991                                                  FW_PORT_ACTION_L1_CFG32) |
2992                             FW_LEN16(cmd));
2993
2994         if (fw_caps == FW_CAPS16)
2995                 cmd.u.l1cfg.rcap = cpu_to_be32(fwcaps32_to_caps16(rcap));
2996         else
2997                 cmd.u.l1cfg32.rcap32 = cpu_to_be32(rcap);
2998
2999         return t4_wr_mbox(adap, mbox, &cmd, sizeof(cmd), NULL);
3000 }
3001
3002 /**
3003  * t4_flash_cfg_addr - return the address of the flash configuration file
3004  * @adapter: the adapter
3005  *
3006  * Return the address within the flash where the Firmware Configuration
3007  * File is stored, or an error if the device FLASH is too small to contain
3008  * a Firmware Configuration File.
3009  */
3010 int t4_flash_cfg_addr(struct adapter *adapter)
3011 {
3012         /*
3013          * If the device FLASH isn't large enough to hold a Firmware
3014          * Configuration File, return an error.
3015          */
3016         if (adapter->params.sf_size < FLASH_CFG_START + FLASH_CFG_MAX_SIZE)
3017                 return -ENOSPC;
3018
3019         return FLASH_CFG_START;
3020 }
3021
3022 #define PF_INTR_MASK (F_PFSW | F_PFCIM)
3023
3024 /**
3025  * t4_intr_enable - enable interrupts
3026  * @adapter: the adapter whose interrupts should be enabled
3027  *
3028  * Enable PF-specific interrupts for the calling function and the top-level
3029  * interrupt concentrator for global interrupts.  Interrupts are already
3030  * enabled at each module, here we just enable the roots of the interrupt
3031  * hierarchies.
3032  *
3033  * Note: this function should be called only when the driver manages
3034  * non PF-specific interrupts from the various HW modules.  Only one PCI
3035  * function at a time should be doing this.
3036  */
3037 void t4_intr_enable(struct adapter *adapter)
3038 {
3039         u32 val = 0;
3040         u32 whoami = t4_read_reg(adapter, A_PL_WHOAMI);
3041         u32 pf = CHELSIO_CHIP_VERSION(adapter->params.chip) <= CHELSIO_T5 ?
3042                  G_SOURCEPF(whoami) : G_T6_SOURCEPF(whoami);
3043
3044         if (CHELSIO_CHIP_VERSION(adapter->params.chip) <= CHELSIO_T5)
3045                 val = F_ERR_DROPPED_DB | F_ERR_EGR_CTXT_PRIO | F_DBFIFO_HP_INT;
3046         t4_write_reg(adapter, A_SGE_INT_ENABLE3, F_ERR_CPL_EXCEED_IQE_SIZE |
3047                      F_ERR_INVALID_CIDX_INC | F_ERR_CPL_OPCODE_0 |
3048                      F_ERR_DATA_CPL_ON_HIGH_QID1 | F_INGRESS_SIZE_ERR |
3049                      F_ERR_DATA_CPL_ON_HIGH_QID0 | F_ERR_BAD_DB_PIDX3 |
3050                      F_ERR_BAD_DB_PIDX2 | F_ERR_BAD_DB_PIDX1 |
3051                      F_ERR_BAD_DB_PIDX0 | F_ERR_ING_CTXT_PRIO |
3052                      F_DBFIFO_LP_INT | F_EGRESS_SIZE_ERR | val);
3053         t4_write_reg(adapter, MYPF_REG(A_PL_PF_INT_ENABLE), PF_INTR_MASK);
3054         t4_set_reg_field(adapter, A_PL_INT_MAP0, 0, 1 << pf);
3055 }
3056
3057 /**
3058  * t4_intr_disable - disable interrupts
3059  * @adapter: the adapter whose interrupts should be disabled
3060  *
3061  * Disable interrupts.  We only disable the top-level interrupt
3062  * concentrators.  The caller must be a PCI function managing global
3063  * interrupts.
3064  */
3065 void t4_intr_disable(struct adapter *adapter)
3066 {
3067         u32 whoami = t4_read_reg(adapter, A_PL_WHOAMI);
3068         u32 pf = CHELSIO_CHIP_VERSION(adapter->params.chip) <= CHELSIO_T5 ?
3069                  G_SOURCEPF(whoami) : G_T6_SOURCEPF(whoami);
3070
3071         t4_write_reg(adapter, MYPF_REG(A_PL_PF_INT_ENABLE), 0);
3072         t4_set_reg_field(adapter, A_PL_INT_MAP0, 1 << pf, 0);
3073 }
3074
3075 /**
3076  * t4_get_port_type_description - return Port Type string description
3077  * @port_type: firmware Port Type enumeration
3078  */
3079 const char *t4_get_port_type_description(enum fw_port_type port_type)
3080 {
3081         static const char * const port_type_description[] = {
3082                 "Fiber_XFI",
3083                 "Fiber_XAUI",
3084                 "BT_SGMII",
3085                 "BT_XFI",
3086                 "BT_XAUI",
3087                 "KX4",
3088                 "CX4",
3089                 "KX",
3090                 "KR",
3091                 "SFP",
3092                 "BP_AP",
3093                 "BP4_AP",
3094                 "QSFP_10G",
3095                 "QSA",
3096                 "QSFP",
3097                 "BP40_BA",
3098                 "KR4_100G",
3099                 "CR4_QSFP",
3100                 "CR_QSFP",
3101                 "CR2_QSFP",
3102                 "SFP28",
3103                 "KR_SFP28",
3104         };
3105
3106         if (port_type < ARRAY_SIZE(port_type_description))
3107                 return port_type_description[port_type];
3108         return "UNKNOWN";
3109 }
3110
3111 /**
3112  * t4_get_mps_bg_map - return the buffer groups associated with a port
3113  * @adap: the adapter
3114  * @pidx: the port index
3115  *
3116  * Returns a bitmap indicating which MPS buffer groups are associated
3117  * with the given port.  Bit i is set if buffer group i is used by the
3118  * port.
3119  */
3120 unsigned int t4_get_mps_bg_map(struct adapter *adap, unsigned int pidx)
3121 {
3122         unsigned int chip_version = CHELSIO_CHIP_VERSION(adap->params.chip);
3123         unsigned int nports = 1 << G_NUMPORTS(t4_read_reg(adap,
3124                                                           A_MPS_CMN_CTL));
3125
3126         if (pidx >= nports) {
3127                 dev_warn(adap, "MPS Port Index %d >= Nports %d\n",
3128                          pidx, nports);
3129                 return 0;
3130         }
3131
3132         switch (chip_version) {
3133         case CHELSIO_T4:
3134         case CHELSIO_T5:
3135                 switch (nports) {
3136                 case 1: return 0xf;
3137                 case 2: return 3 << (2 * pidx);
3138                 case 4: return 1 << pidx;
3139                 }
3140                 break;
3141
3142         case CHELSIO_T6:
3143                 switch (nports) {
3144                 case 2: return 1 << (2 * pidx);
3145                 }
3146                 break;
3147         }
3148
3149         dev_err(adap, "Need MPS Buffer Group Map for Chip %0x, Nports %d\n",
3150                 chip_version, nports);
3151         return 0;
3152 }
3153
3154 /**
3155  * t4_get_tp_ch_map - return TP ingress channels associated with a port
3156  * @adapter: the adapter
3157  * @pidx: the port index
3158  *
3159  * Returns a bitmap indicating which TP Ingress Channels are associated with
3160  * a given Port.  Bit i is set if TP Ingress Channel i is used by the Port.
3161  */
3162 unsigned int t4_get_tp_ch_map(struct adapter *adapter, unsigned int pidx)
3163 {
3164         unsigned int chip_version = CHELSIO_CHIP_VERSION(adapter->params.chip);
3165         unsigned int nports = 1 << G_NUMPORTS(t4_read_reg(adapter,
3166                                                           A_MPS_CMN_CTL));
3167
3168         if (pidx >= nports) {
3169                 dev_warn(adap, "TP Port Index %d >= Nports %d\n",
3170                          pidx, nports);
3171                 return 0;
3172         }
3173
3174         switch (chip_version) {
3175         case CHELSIO_T4:
3176         case CHELSIO_T5:
3177                 /* Note that this happens to be the same values as the MPS
3178                  * Buffer Group Map for these Chips.  But we replicate the code
3179                  * here because they're really separate concepts.
3180                  */
3181                 switch (nports) {
3182                 case 1: return 0xf;
3183                 case 2: return 3 << (2 * pidx);
3184                 case 4: return 1 << pidx;
3185                 }
3186                 break;
3187
3188         case CHELSIO_T6:
3189                 switch (nports) {
3190                 case 2: return 1 << pidx;
3191                 }
3192                 break;
3193         }
3194
3195         dev_err(adapter, "Need TP Channel Map for Chip %0x, Nports %d\n",
3196                 chip_version, nports);
3197         return 0;
3198 }
3199
3200 /**
3201  * t4_get_port_stats - collect port statistics
3202  * @adap: the adapter
3203  * @idx: the port index
3204  * @p: the stats structure to fill
3205  *
3206  * Collect statistics related to the given port from HW.
3207  */
3208 void t4_get_port_stats(struct adapter *adap, int idx, struct port_stats *p)
3209 {
3210         u32 bgmap = t4_get_mps_bg_map(adap, idx);
3211         u32 stat_ctl = t4_read_reg(adap, A_MPS_STAT_CTL);
3212
3213 #define GET_STAT(name) \
3214         t4_read_reg64(adap, \
3215                       (is_t4(adap->params.chip) ? \
3216                        PORT_REG(idx, A_MPS_PORT_STAT_##name##_L) :\
3217                        T5_PORT_REG(idx, A_MPS_PORT_STAT_##name##_L)))
3218 #define GET_STAT_COM(name) t4_read_reg64(adap, A_MPS_STAT_##name##_L)
3219
3220         p->tx_octets           = GET_STAT(TX_PORT_BYTES);
3221         p->tx_frames           = GET_STAT(TX_PORT_FRAMES);
3222         p->tx_bcast_frames     = GET_STAT(TX_PORT_BCAST);
3223         p->tx_mcast_frames     = GET_STAT(TX_PORT_MCAST);
3224         p->tx_ucast_frames     = GET_STAT(TX_PORT_UCAST);
3225         p->tx_error_frames     = GET_STAT(TX_PORT_ERROR);
3226         p->tx_frames_64        = GET_STAT(TX_PORT_64B);
3227         p->tx_frames_65_127    = GET_STAT(TX_PORT_65B_127B);
3228         p->tx_frames_128_255   = GET_STAT(TX_PORT_128B_255B);
3229         p->tx_frames_256_511   = GET_STAT(TX_PORT_256B_511B);
3230         p->tx_frames_512_1023  = GET_STAT(TX_PORT_512B_1023B);
3231         p->tx_frames_1024_1518 = GET_STAT(TX_PORT_1024B_1518B);
3232         p->tx_frames_1519_max  = GET_STAT(TX_PORT_1519B_MAX);
3233         p->tx_drop             = GET_STAT(TX_PORT_DROP);
3234         p->tx_pause            = GET_STAT(TX_PORT_PAUSE);
3235         p->tx_ppp0             = GET_STAT(TX_PORT_PPP0);
3236         p->tx_ppp1             = GET_STAT(TX_PORT_PPP1);
3237         p->tx_ppp2             = GET_STAT(TX_PORT_PPP2);
3238         p->tx_ppp3             = GET_STAT(TX_PORT_PPP3);
3239         p->tx_ppp4             = GET_STAT(TX_PORT_PPP4);
3240         p->tx_ppp5             = GET_STAT(TX_PORT_PPP5);
3241         p->tx_ppp6             = GET_STAT(TX_PORT_PPP6);
3242         p->tx_ppp7             = GET_STAT(TX_PORT_PPP7);
3243
3244         if (CHELSIO_CHIP_VERSION(adap->params.chip) >= CHELSIO_T5) {
3245                 if (stat_ctl & F_COUNTPAUSESTATTX) {
3246                         p->tx_frames -= p->tx_pause;
3247                         p->tx_octets -= p->tx_pause * 64;
3248                 }
3249                 if (stat_ctl & F_COUNTPAUSEMCTX)
3250                         p->tx_mcast_frames -= p->tx_pause;
3251         }
3252
3253         p->rx_octets           = GET_STAT(RX_PORT_BYTES);
3254         p->rx_frames           = GET_STAT(RX_PORT_FRAMES);
3255         p->rx_bcast_frames     = GET_STAT(RX_PORT_BCAST);
3256         p->rx_mcast_frames     = GET_STAT(RX_PORT_MCAST);
3257         p->rx_ucast_frames     = GET_STAT(RX_PORT_UCAST);
3258         p->rx_too_long         = GET_STAT(RX_PORT_MTU_ERROR);
3259         p->rx_jabber           = GET_STAT(RX_PORT_MTU_CRC_ERROR);
3260         p->rx_fcs_err          = GET_STAT(RX_PORT_CRC_ERROR);
3261         p->rx_len_err          = GET_STAT(RX_PORT_LEN_ERROR);
3262         p->rx_symbol_err       = GET_STAT(RX_PORT_SYM_ERROR);
3263         p->rx_runt             = GET_STAT(RX_PORT_LESS_64B);
3264         p->rx_frames_64        = GET_STAT(RX_PORT_64B);
3265         p->rx_frames_65_127    = GET_STAT(RX_PORT_65B_127B);
3266         p->rx_frames_128_255   = GET_STAT(RX_PORT_128B_255B);
3267         p->rx_frames_256_511   = GET_STAT(RX_PORT_256B_511B);
3268         p->rx_frames_512_1023  = GET_STAT(RX_PORT_512B_1023B);
3269         p->rx_frames_1024_1518 = GET_STAT(RX_PORT_1024B_1518B);
3270         p->rx_frames_1519_max  = GET_STAT(RX_PORT_1519B_MAX);
3271         p->rx_pause            = GET_STAT(RX_PORT_PAUSE);
3272         p->rx_ppp0             = GET_STAT(RX_PORT_PPP0);
3273         p->rx_ppp1             = GET_STAT(RX_PORT_PPP1);
3274         p->rx_ppp2             = GET_STAT(RX_PORT_PPP2);
3275         p->rx_ppp3             = GET_STAT(RX_PORT_PPP3);
3276         p->rx_ppp4             = GET_STAT(RX_PORT_PPP4);
3277         p->rx_ppp5             = GET_STAT(RX_PORT_PPP5);
3278         p->rx_ppp6             = GET_STAT(RX_PORT_PPP6);
3279         p->rx_ppp7             = GET_STAT(RX_PORT_PPP7);
3280
3281         if (CHELSIO_CHIP_VERSION(adap->params.chip) >= CHELSIO_T5) {
3282                 if (stat_ctl & F_COUNTPAUSESTATRX) {
3283                         p->rx_frames -= p->rx_pause;
3284                         p->rx_octets -= p->rx_pause * 64;
3285                 }
3286                 if (stat_ctl & F_COUNTPAUSEMCRX)
3287                         p->rx_mcast_frames -= p->rx_pause;
3288         }
3289
3290         p->rx_ovflow0 = (bgmap & 1) ? GET_STAT_COM(RX_BG_0_MAC_DROP_FRAME) : 0;
3291         p->rx_ovflow1 = (bgmap & 2) ? GET_STAT_COM(RX_BG_1_MAC_DROP_FRAME) : 0;
3292         p->rx_ovflow2 = (bgmap & 4) ? GET_STAT_COM(RX_BG_2_MAC_DROP_FRAME) : 0;
3293         p->rx_ovflow3 = (bgmap & 8) ? GET_STAT_COM(RX_BG_3_MAC_DROP_FRAME) : 0;
3294         p->rx_trunc0 = (bgmap & 1) ? GET_STAT_COM(RX_BG_0_MAC_TRUNC_FRAME) : 0;
3295         p->rx_trunc1 = (bgmap & 2) ? GET_STAT_COM(RX_BG_1_MAC_TRUNC_FRAME) : 0;
3296         p->rx_trunc2 = (bgmap & 4) ? GET_STAT_COM(RX_BG_2_MAC_TRUNC_FRAME) : 0;
3297         p->rx_trunc3 = (bgmap & 8) ? GET_STAT_COM(RX_BG_3_MAC_TRUNC_FRAME) : 0;
3298
3299 #undef GET_STAT
3300 #undef GET_STAT_COM
3301 }
3302
3303 /**
3304  * t4_get_port_stats_offset - collect port stats relative to a previous snapshot
3305  * @adap: The adapter
3306  * @idx: The port
3307  * @stats: Current stats to fill
3308  * @offset: Previous stats snapshot
3309  */
3310 void t4_get_port_stats_offset(struct adapter *adap, int idx,
3311                               struct port_stats *stats,
3312                               struct port_stats *offset)
3313 {
3314         u64 *s, *o;
3315         unsigned int i;
3316
3317         t4_get_port_stats(adap, idx, stats);
3318         for (i = 0, s = (u64 *)stats, o = (u64 *)offset;
3319              i < (sizeof(struct port_stats) / sizeof(u64));
3320              i++, s++, o++)
3321                 *s -= *o;
3322 }
3323
3324 /**
3325  * t4_clr_port_stats - clear port statistics
3326  * @adap: the adapter
3327  * @idx: the port index
3328  *
3329  * Clear HW statistics for the given port.
3330  */
3331 void t4_clr_port_stats(struct adapter *adap, int idx)
3332 {
3333         unsigned int i;
3334         u32 bgmap = t4_get_mps_bg_map(adap, idx);
3335         u32 port_base_addr;
3336
3337         if (is_t4(adap->params.chip))
3338                 port_base_addr = PORT_BASE(idx);
3339         else
3340                 port_base_addr = T5_PORT_BASE(idx);
3341
3342         for (i = A_MPS_PORT_STAT_TX_PORT_BYTES_L;
3343              i <= A_MPS_PORT_STAT_TX_PORT_PPP7_H; i += 8)
3344                 t4_write_reg(adap, port_base_addr + i, 0);
3345         for (i = A_MPS_PORT_STAT_RX_PORT_BYTES_L;
3346              i <= A_MPS_PORT_STAT_RX_PORT_LESS_64B_H; i += 8)
3347                 t4_write_reg(adap, port_base_addr + i, 0);
3348         for (i = 0; i < 4; i++)
3349                 if (bgmap & (1 << i)) {
3350                         t4_write_reg(adap,
3351                                      A_MPS_STAT_RX_BG_0_MAC_DROP_FRAME_L +
3352                                      i * 8, 0);
3353                         t4_write_reg(adap,
3354                                      A_MPS_STAT_RX_BG_0_MAC_TRUNC_FRAME_L +
3355                                      i * 8, 0);
3356                 }
3357 }
3358
3359 /**
3360  * t4_fw_hello - establish communication with FW
3361  * @adap: the adapter
3362  * @mbox: mailbox to use for the FW command
3363  * @evt_mbox: mailbox to receive async FW events
3364  * @master: specifies the caller's willingness to be the device master
3365  * @state: returns the current device state (if non-NULL)
3366  *
3367  * Issues a command to establish communication with FW.  Returns either
3368  * an error (negative integer) or the mailbox of the Master PF.
3369  */
3370 int t4_fw_hello(struct adapter *adap, unsigned int mbox, unsigned int evt_mbox,
3371                 enum dev_master master, enum dev_state *state)
3372 {
3373         int ret;
3374         struct fw_hello_cmd c;
3375         u32 v;
3376         unsigned int master_mbox;
3377         int retries = FW_CMD_HELLO_RETRIES;
3378
3379 retry:
3380         memset(&c, 0, sizeof(c));
3381         INIT_CMD(c, HELLO, WRITE);
3382         c.err_to_clearinit = cpu_to_be32(
3383                         V_FW_HELLO_CMD_MASTERDIS(master == MASTER_CANT) |
3384                         V_FW_HELLO_CMD_MASTERFORCE(master == MASTER_MUST) |
3385                         V_FW_HELLO_CMD_MBMASTER(master == MASTER_MUST ? mbox :
3386                                                 M_FW_HELLO_CMD_MBMASTER) |
3387                         V_FW_HELLO_CMD_MBASYNCNOT(evt_mbox) |
3388                         V_FW_HELLO_CMD_STAGE(FW_HELLO_CMD_STAGE_OS) |
3389                         F_FW_HELLO_CMD_CLEARINIT);
3390
3391         /*
3392          * Issue the HELLO command to the firmware.  If it's not successful
3393          * but indicates that we got a "busy" or "timeout" condition, retry
3394          * the HELLO until we exhaust our retry limit.  If we do exceed our
3395          * retry limit, check to see if the firmware left us any error
3396          * information and report that if so ...
3397          */
3398         ret = t4_wr_mbox(adap, mbox, &c, sizeof(c), &c);
3399         if (ret != FW_SUCCESS) {
3400                 if ((ret == -EBUSY || ret == -ETIMEDOUT) && retries-- > 0)
3401                         goto retry;
3402                 if (t4_read_reg(adap, A_PCIE_FW) & F_PCIE_FW_ERR)
3403                         t4_report_fw_error(adap);
3404                 return ret;
3405         }
3406
3407         v = be32_to_cpu(c.err_to_clearinit);
3408         master_mbox = G_FW_HELLO_CMD_MBMASTER(v);
3409         if (state) {
3410                 if (v & F_FW_HELLO_CMD_ERR)
3411                         *state = DEV_STATE_ERR;
3412                 else if (v & F_FW_HELLO_CMD_INIT)
3413                         *state = DEV_STATE_INIT;
3414                 else
3415                         *state = DEV_STATE_UNINIT;
3416         }
3417
3418         /*
3419          * If we're not the Master PF then we need to wait around for the
3420          * Master PF Driver to finish setting up the adapter.
3421          *
3422          * Note that we also do this wait if we're a non-Master-capable PF and
3423          * there is no current Master PF; a Master PF may show up momentarily
3424          * and we wouldn't want to fail pointlessly.  (This can happen when an
3425          * OS loads lots of different drivers rapidly at the same time).  In
3426          * this case, the Master PF returned by the firmware will be
3427          * M_PCIE_FW_MASTER so the test below will work ...
3428          */
3429         if ((v & (F_FW_HELLO_CMD_ERR | F_FW_HELLO_CMD_INIT)) == 0 &&
3430             master_mbox != mbox) {
3431                 int waiting = FW_CMD_HELLO_TIMEOUT;
3432
3433                 /*
3434                  * Wait for the firmware to either indicate an error or
3435                  * initialized state.  If we see either of these we bail out
3436                  * and report the issue to the caller.  If we exhaust the
3437                  * "hello timeout" and we haven't exhausted our retries, try
3438                  * again.  Otherwise bail with a timeout error.
3439                  */
3440                 for (;;) {
3441                         u32 pcie_fw;
3442
3443                         msleep(50);
3444                         waiting -= 50;
3445
3446                         /*
3447                          * If neither Error nor Initialialized are indicated
3448                          * by the firmware keep waiting till we exaust our
3449                          * timeout ... and then retry if we haven't exhausted
3450                          * our retries ...
3451                          */
3452                         pcie_fw = t4_read_reg(adap, A_PCIE_FW);
3453                         if (!(pcie_fw & (F_PCIE_FW_ERR | F_PCIE_FW_INIT))) {
3454                                 if (waiting <= 0) {
3455                                         if (retries-- > 0)
3456                                                 goto retry;
3457
3458                                         return -ETIMEDOUT;
3459                                 }
3460                                 continue;
3461                         }
3462
3463                         /*
3464                          * We either have an Error or Initialized condition
3465                          * report errors preferentially.
3466                          */
3467                         if (state) {
3468                                 if (pcie_fw & F_PCIE_FW_ERR)
3469                                         *state = DEV_STATE_ERR;
3470                                 else if (pcie_fw & F_PCIE_FW_INIT)
3471                                         *state = DEV_STATE_INIT;
3472                         }
3473
3474                         /*
3475                          * If we arrived before a Master PF was selected and
3476                          * there's not a valid Master PF, grab its identity
3477                          * for our caller.
3478                          */
3479                         if (master_mbox == M_PCIE_FW_MASTER &&
3480                             (pcie_fw & F_PCIE_FW_MASTER_VLD))
3481                                 master_mbox = G_PCIE_FW_MASTER(pcie_fw);
3482                         break;
3483                 }
3484         }
3485
3486         return master_mbox;
3487 }
3488
3489 /**
3490  * t4_fw_bye - end communication with FW
3491  * @adap: the adapter
3492  * @mbox: mailbox to use for the FW command
3493  *
3494  * Issues a command to terminate communication with FW.
3495  */
3496 int t4_fw_bye(struct adapter *adap, unsigned int mbox)
3497 {
3498         struct fw_bye_cmd c;
3499
3500         memset(&c, 0, sizeof(c));
3501         INIT_CMD(c, BYE, WRITE);
3502         return t4_wr_mbox(adap, mbox, &c, sizeof(c), NULL);
3503 }
3504
3505 /**
3506  * t4_fw_reset - issue a reset to FW
3507  * @adap: the adapter
3508  * @mbox: mailbox to use for the FW command
3509  * @reset: specifies the type of reset to perform
3510  *
3511  * Issues a reset command of the specified type to FW.
3512  */
3513 int t4_fw_reset(struct adapter *adap, unsigned int mbox, int reset)
3514 {
3515         struct fw_reset_cmd c;
3516
3517         memset(&c, 0, sizeof(c));
3518         INIT_CMD(c, RESET, WRITE);
3519         c.val = cpu_to_be32(reset);
3520         return t4_wr_mbox(adap, mbox, &c, sizeof(c), NULL);
3521 }
3522
3523 /**
3524  * t4_fw_halt - issue a reset/halt to FW and put uP into RESET
3525  * @adap: the adapter
3526  * @mbox: mailbox to use for the FW RESET command (if desired)
3527  * @force: force uP into RESET even if FW RESET command fails
3528  *
3529  * Issues a RESET command to firmware (if desired) with a HALT indication
3530  * and then puts the microprocessor into RESET state.  The RESET command
3531  * will only be issued if a legitimate mailbox is provided (mbox <=
3532  * M_PCIE_FW_MASTER).
3533  *
3534  * This is generally used in order for the host to safely manipulate the
3535  * adapter without fear of conflicting with whatever the firmware might
3536  * be doing.  The only way out of this state is to RESTART the firmware
3537  * ...
3538  */
3539 int t4_fw_halt(struct adapter *adap, unsigned int mbox, int force)
3540 {
3541         int ret = 0;
3542
3543         /*
3544          * If a legitimate mailbox is provided, issue a RESET command
3545          * with a HALT indication.
3546          */
3547         if (mbox <= M_PCIE_FW_MASTER) {
3548                 struct fw_reset_cmd c;
3549
3550                 memset(&c, 0, sizeof(c));
3551                 INIT_CMD(c, RESET, WRITE);
3552                 c.val = cpu_to_be32(F_PIORST | F_PIORSTMODE);
3553                 c.halt_pkd = cpu_to_be32(F_FW_RESET_CMD_HALT);
3554                 ret = t4_wr_mbox(adap, mbox, &c, sizeof(c), NULL);
3555         }
3556
3557         /*
3558          * Normally we won't complete the operation if the firmware RESET
3559          * command fails but if our caller insists we'll go ahead and put the
3560          * uP into RESET.  This can be useful if the firmware is hung or even
3561          * missing ...  We'll have to take the risk of putting the uP into
3562          * RESET without the cooperation of firmware in that case.
3563          *
3564          * We also force the firmware's HALT flag to be on in case we bypassed
3565          * the firmware RESET command above or we're dealing with old firmware
3566          * which doesn't have the HALT capability.  This will serve as a flag
3567          * for the incoming firmware to know that it's coming out of a HALT
3568          * rather than a RESET ... if it's new enough to understand that ...
3569          */
3570         if (ret == 0 || force) {
3571                 t4_set_reg_field(adap, A_CIM_BOOT_CFG, F_UPCRST, F_UPCRST);
3572                 t4_set_reg_field(adap, A_PCIE_FW, F_PCIE_FW_HALT,
3573                                  F_PCIE_FW_HALT);
3574         }
3575
3576         /*
3577          * And we always return the result of the firmware RESET command
3578          * even when we force the uP into RESET ...
3579          */
3580         return ret;
3581 }
3582
3583 /**
3584  * t4_fw_restart - restart the firmware by taking the uP out of RESET
3585  * @adap: the adapter
3586  * @mbox: mailbox to use for the FW RESET command (if desired)
3587  * @reset: if we want to do a RESET to restart things
3588  *
3589  * Restart firmware previously halted by t4_fw_halt().  On successful
3590  * return the previous PF Master remains as the new PF Master and there
3591  * is no need to issue a new HELLO command, etc.
3592  *
3593  * We do this in two ways:
3594  *
3595  * 1. If we're dealing with newer firmware we'll simply want to take
3596  *    the chip's microprocessor out of RESET.  This will cause the
3597  *    firmware to start up from its start vector.  And then we'll loop
3598  *    until the firmware indicates it's started again (PCIE_FW.HALT
3599  *    reset to 0) or we timeout.
3600  *
3601  * 2. If we're dealing with older firmware then we'll need to RESET
3602  *    the chip since older firmware won't recognize the PCIE_FW.HALT
3603  *    flag and automatically RESET itself on startup.
3604  */
3605 int t4_fw_restart(struct adapter *adap, unsigned int mbox, int reset)
3606 {
3607         if (reset) {
3608                 /*
3609                  * Since we're directing the RESET instead of the firmware
3610                  * doing it automatically, we need to clear the PCIE_FW.HALT
3611                  * bit.
3612                  */
3613                 t4_set_reg_field(adap, A_PCIE_FW, F_PCIE_FW_HALT, 0);
3614
3615                 /*
3616                  * If we've been given a valid mailbox, first try to get the
3617                  * firmware to do the RESET.  If that works, great and we can
3618                  * return success.  Otherwise, if we haven't been given a
3619                  * valid mailbox or the RESET command failed, fall back to
3620                  * hitting the chip with a hammer.
3621                  */
3622                 if (mbox <= M_PCIE_FW_MASTER) {
3623                         t4_set_reg_field(adap, A_CIM_BOOT_CFG, F_UPCRST, 0);
3624                         msleep(100);
3625                         if (t4_fw_reset(adap, mbox,
3626                                         F_PIORST | F_PIORSTMODE) == 0)
3627                                 return 0;
3628                 }
3629
3630                 t4_write_reg(adap, A_PL_RST, F_PIORST | F_PIORSTMODE);
3631                 msleep(2000);
3632         } else {
3633                 int ms;
3634
3635                 t4_set_reg_field(adap, A_CIM_BOOT_CFG, F_UPCRST, 0);
3636                 for (ms = 0; ms < FW_CMD_MAX_TIMEOUT; ) {
3637                         if (!(t4_read_reg(adap, A_PCIE_FW) & F_PCIE_FW_HALT))
3638                                 return FW_SUCCESS;
3639                         msleep(100);
3640                         ms += 100;
3641                 }
3642                 return -ETIMEDOUT;
3643         }
3644         return 0;
3645 }
3646
3647 /**
3648  * t4_fl_pkt_align - return the fl packet alignment
3649  * @adap: the adapter
3650  *
3651  * T4 has a single field to specify the packing and padding boundary.
3652  * T5 onwards has separate fields for this and hence the alignment for
3653  * next packet offset is maximum of these two.
3654  */
3655 int t4_fl_pkt_align(struct adapter *adap)
3656 {
3657         u32 sge_control, sge_control2;
3658         unsigned int ingpadboundary, ingpackboundary, fl_align, ingpad_shift;
3659
3660         sge_control = t4_read_reg(adap, A_SGE_CONTROL);
3661
3662         /* T4 uses a single control field to specify both the PCIe Padding and
3663          * Packing Boundary.  T5 introduced the ability to specify these
3664          * separately.  The actual Ingress Packet Data alignment boundary
3665          * within Packed Buffer Mode is the maximum of these two
3666          * specifications.
3667          */
3668         if (CHELSIO_CHIP_VERSION(adap->params.chip) <= CHELSIO_T5)
3669                 ingpad_shift = X_INGPADBOUNDARY_SHIFT;
3670         else
3671                 ingpad_shift = X_T6_INGPADBOUNDARY_SHIFT;
3672
3673         ingpadboundary = 1 << (G_INGPADBOUNDARY(sge_control) + ingpad_shift);
3674
3675         fl_align = ingpadboundary;
3676         if (!is_t4(adap->params.chip)) {
3677                 sge_control2 = t4_read_reg(adap, A_SGE_CONTROL2);
3678                 ingpackboundary = G_INGPACKBOUNDARY(sge_control2);
3679                 if (ingpackboundary == X_INGPACKBOUNDARY_16B)
3680                         ingpackboundary = 16;
3681                 else
3682                         ingpackboundary = 1 << (ingpackboundary +
3683                                         X_INGPACKBOUNDARY_SHIFT);
3684
3685                 fl_align = max(ingpadboundary, ingpackboundary);
3686         }
3687         return fl_align;
3688 }
3689
3690 /**
3691  * t4_fixup_host_params_compat - fix up host-dependent parameters
3692  * @adap: the adapter
3693  * @page_size: the host's Base Page Size
3694  * @cache_line_size: the host's Cache Line Size
3695  * @chip_compat: maintain compatibility with designated chip
3696  *
3697  * Various registers in the chip contain values which are dependent on the
3698  * host's Base Page and Cache Line Sizes.  This function will fix all of
3699  * those registers with the appropriate values as passed in ...
3700  *
3701  * @chip_compat is used to limit the set of changes that are made
3702  * to be compatible with the indicated chip release.  This is used by
3703  * drivers to maintain compatibility with chip register settings when
3704  * the drivers haven't [yet] been updated with new chip support.
3705  */
3706 int t4_fixup_host_params_compat(struct adapter *adap,
3707                                 unsigned int page_size,
3708                                 unsigned int cache_line_size,
3709                                 enum chip_type chip_compat)
3710 {
3711         unsigned int page_shift = cxgbe_fls(page_size) - 1;
3712         unsigned int sge_hps = page_shift - 10;
3713         unsigned int stat_len = cache_line_size > 64 ? 128 : 64;
3714         unsigned int fl_align = cache_line_size < 32 ? 32 : cache_line_size;
3715         unsigned int fl_align_log = cxgbe_fls(fl_align) - 1;
3716
3717         t4_write_reg(adap, A_SGE_HOST_PAGE_SIZE,
3718                      V_HOSTPAGESIZEPF0(sge_hps) |
3719                      V_HOSTPAGESIZEPF1(sge_hps) |
3720                      V_HOSTPAGESIZEPF2(sge_hps) |
3721                      V_HOSTPAGESIZEPF3(sge_hps) |
3722                      V_HOSTPAGESIZEPF4(sge_hps) |
3723                      V_HOSTPAGESIZEPF5(sge_hps) |
3724                      V_HOSTPAGESIZEPF6(sge_hps) |
3725                      V_HOSTPAGESIZEPF7(sge_hps));
3726
3727         if (is_t4(adap->params.chip) || is_t4(chip_compat))
3728                 t4_set_reg_field(adap, A_SGE_CONTROL,
3729                                  V_INGPADBOUNDARY(M_INGPADBOUNDARY) |
3730                                  F_EGRSTATUSPAGESIZE,
3731                                  V_INGPADBOUNDARY(fl_align_log -
3732                                                   X_INGPADBOUNDARY_SHIFT) |
3733                                 V_EGRSTATUSPAGESIZE(stat_len != 64));
3734         else {
3735                 unsigned int pack_align;
3736                 unsigned int ingpad, ingpack;
3737                 unsigned int pcie_cap;
3738
3739                 /*
3740                  * T5 introduced the separation of the Free List Padding and
3741                  * Packing Boundaries.  Thus, we can select a smaller Padding
3742                  * Boundary to avoid uselessly chewing up PCIe Link and Memory
3743                  * Bandwidth, and use a Packing Boundary which is large enough
3744                  * to avoid false sharing between CPUs, etc.
3745                  *
3746                  * For the PCI Link, the smaller the Padding Boundary the
3747                  * better.  For the Memory Controller, a smaller Padding
3748                  * Boundary is better until we cross under the Memory Line
3749                  * Size (the minimum unit of transfer to/from Memory).  If we
3750                  * have a Padding Boundary which is smaller than the Memory
3751                  * Line Size, that'll involve a Read-Modify-Write cycle on the
3752                  * Memory Controller which is never good.
3753                  */
3754
3755                 /* We want the Packing Boundary to be based on the Cache Line
3756                  * Size in order to help avoid False Sharing performance
3757                  * issues between CPUs, etc.  We also want the Packing
3758                  * Boundary to incorporate the PCI-E Maximum Payload Size.  We
3759                  * get best performance when the Packing Boundary is a
3760                  * multiple of the Maximum Payload Size.
3761                  */
3762                 pack_align = fl_align;
3763                 pcie_cap = t4_os_find_pci_capability(adap, PCI_CAP_ID_EXP);
3764                 if (pcie_cap) {
3765                         unsigned int mps, mps_log;
3766                         u16 devctl;
3767
3768                         /* The PCIe Device Control Maximum Payload Size field
3769                          * [bits 7:5] encodes sizes as powers of 2 starting at
3770                          * 128 bytes.
3771                          */
3772                         t4_os_pci_read_cfg2(adap, pcie_cap + PCI_EXP_DEVCTL,
3773                                             &devctl);
3774                         mps_log = ((devctl & PCI_EXP_DEVCTL_PAYLOAD) >> 5) + 7;
3775                         mps = 1 << mps_log;
3776                         if (mps > pack_align)
3777                                 pack_align = mps;
3778                 }
3779
3780                 /*
3781                  * N.B. T5 has a different interpretation of the "0" value for
3782                  * the Packing Boundary.  This corresponds to 16 bytes instead
3783                  * of the expected 32 bytes.  We never have a Packing Boundary
3784                  * less than 32 bytes so we can't use that special value but
3785                  * on the other hand, if we wanted 32 bytes, the best we can
3786                  * really do is 64 bytes ...
3787                  */
3788                 if (pack_align <= 16) {
3789                         ingpack = X_INGPACKBOUNDARY_16B;
3790                         fl_align = 16;
3791                 } else if (pack_align == 32) {
3792                         ingpack = X_INGPACKBOUNDARY_64B;
3793                         fl_align = 64;
3794                 } else {
3795                         unsigned int pack_align_log = cxgbe_fls(pack_align) - 1;
3796
3797                         ingpack = pack_align_log - X_INGPACKBOUNDARY_SHIFT;
3798                         fl_align = pack_align;
3799                 }
3800
3801                 /* Use the smallest Ingress Padding which isn't smaller than
3802                  * the Memory Controller Read/Write Size.  We'll take that as
3803                  * being 8 bytes since we don't know of any system with a
3804                  * wider Memory Controller Bus Width.
3805                  */
3806                 if (is_t5(adap->params.chip))
3807                         ingpad = X_INGPADBOUNDARY_32B;
3808                 else
3809                         ingpad = X_T6_INGPADBOUNDARY_8B;
3810                 t4_set_reg_field(adap, A_SGE_CONTROL,
3811                                  V_INGPADBOUNDARY(M_INGPADBOUNDARY) |
3812                                  F_EGRSTATUSPAGESIZE,
3813                                  V_INGPADBOUNDARY(ingpad) |
3814                                  V_EGRSTATUSPAGESIZE(stat_len != 64));
3815                 t4_set_reg_field(adap, A_SGE_CONTROL2,
3816                                  V_INGPACKBOUNDARY(M_INGPACKBOUNDARY),
3817                                  V_INGPACKBOUNDARY(ingpack));
3818         }
3819
3820         /*
3821          * Adjust various SGE Free List Host Buffer Sizes.
3822          *
3823          * The first four entries are:
3824          *
3825          *   0: Host Page Size
3826          *   1: 64KB
3827          *   2: Buffer size corresponding to 1500 byte MTU (unpacked mode)
3828          *   3: Buffer size corresponding to 9000 byte MTU (unpacked mode)
3829          *
3830          * For the single-MTU buffers in unpacked mode we need to include
3831          * space for the SGE Control Packet Shift, 14 byte Ethernet header,
3832          * possible 4 byte VLAN tag, all rounded up to the next Ingress Packet
3833          * Padding boundary.  All of these are accommodated in the Factory
3834          * Default Firmware Configuration File but we need to adjust it for
3835          * this host's cache line size.
3836          */
3837         t4_write_reg(adap, A_SGE_FL_BUFFER_SIZE0, page_size);
3838         t4_write_reg(adap, A_SGE_FL_BUFFER_SIZE2,
3839                      (t4_read_reg(adap, A_SGE_FL_BUFFER_SIZE2) + fl_align - 1)
3840                      & ~(fl_align - 1));
3841         t4_write_reg(adap, A_SGE_FL_BUFFER_SIZE3,
3842                      (t4_read_reg(adap, A_SGE_FL_BUFFER_SIZE3) + fl_align - 1)
3843                      & ~(fl_align - 1));
3844
3845         t4_write_reg(adap, A_ULP_RX_TDDP_PSZ, V_HPZ0(page_shift - 12));
3846
3847         return 0;
3848 }
3849
3850 /**
3851  * t4_fixup_host_params - fix up host-dependent parameters (T4 compatible)
3852  * @adap: the adapter
3853  * @page_size: the host's Base Page Size
3854  * @cache_line_size: the host's Cache Line Size
3855  *
3856  * Various registers in T4 contain values which are dependent on the
3857  * host's Base Page and Cache Line Sizes.  This function will fix all of
3858  * those registers with the appropriate values as passed in ...
3859  *
3860  * This routine makes changes which are compatible with T4 chips.
3861  */
3862 int t4_fixup_host_params(struct adapter *adap, unsigned int page_size,
3863                          unsigned int cache_line_size)
3864 {
3865         return t4_fixup_host_params_compat(adap, page_size, cache_line_size,
3866                                            T4_LAST_REV);
3867 }
3868
3869 /**
3870  * t4_fw_initialize - ask FW to initialize the device
3871  * @adap: the adapter
3872  * @mbox: mailbox to use for the FW command
3873  *
3874  * Issues a command to FW to partially initialize the device.  This
3875  * performs initialization that generally doesn't depend on user input.
3876  */
3877 int t4_fw_initialize(struct adapter *adap, unsigned int mbox)
3878 {
3879         struct fw_initialize_cmd c;
3880
3881         memset(&c, 0, sizeof(c));
3882         INIT_CMD(c, INITIALIZE, WRITE);
3883         return t4_wr_mbox(adap, mbox, &c, sizeof(c), NULL);
3884 }
3885
3886 /**
3887  * t4_query_params_rw - query FW or device parameters
3888  * @adap: the adapter
3889  * @mbox: mailbox to use for the FW command
3890  * @pf: the PF
3891  * @vf: the VF
3892  * @nparams: the number of parameters
3893  * @params: the parameter names
3894  * @val: the parameter values
3895  * @rw: Write and read flag
3896  *
3897  * Reads the value of FW or device parameters.  Up to 7 parameters can be
3898  * queried at once.
3899  */
3900 static int t4_query_params_rw(struct adapter *adap, unsigned int mbox,
3901                               unsigned int pf, unsigned int vf,
3902                               unsigned int nparams, const u32 *params,
3903                               u32 *val, int rw)
3904 {
3905         unsigned int i;
3906         int ret;
3907         struct fw_params_cmd c;
3908         __be32 *p = &c.param[0].mnem;
3909
3910         if (nparams > 7)
3911                 return -EINVAL;
3912
3913         memset(&c, 0, sizeof(c));
3914         c.op_to_vfn = cpu_to_be32(V_FW_CMD_OP(FW_PARAMS_CMD) |
3915                                   F_FW_CMD_REQUEST | F_FW_CMD_READ |
3916                                   V_FW_PARAMS_CMD_PFN(pf) |
3917                                   V_FW_PARAMS_CMD_VFN(vf));
3918         c.retval_len16 = cpu_to_be32(FW_LEN16(c));
3919
3920         for (i = 0; i < nparams; i++) {
3921                 *p++ = cpu_to_be32(*params++);
3922                 if (rw)
3923                         *p = cpu_to_be32(*(val + i));
3924                 p++;
3925         }
3926
3927         ret = t4_wr_mbox(adap, mbox, &c, sizeof(c), &c);
3928         if (ret == 0)
3929                 for (i = 0, p = &c.param[0].val; i < nparams; i++, p += 2)
3930                         *val++ = be32_to_cpu(*p);
3931         return ret;
3932 }
3933
3934 int t4_query_params(struct adapter *adap, unsigned int mbox, unsigned int pf,
3935                     unsigned int vf, unsigned int nparams, const u32 *params,
3936                     u32 *val)
3937 {
3938         return t4_query_params_rw(adap, mbox, pf, vf, nparams, params, val, 0);
3939 }
3940
3941 /**
3942  * t4_set_params_timeout - sets FW or device parameters
3943  * @adap: the adapter
3944  * @mbox: mailbox to use for the FW command
3945  * @pf: the PF
3946  * @vf: the VF
3947  * @nparams: the number of parameters
3948  * @params: the parameter names
3949  * @val: the parameter values
3950  * @timeout: the timeout time
3951  *
3952  * Sets the value of FW or device parameters.  Up to 7 parameters can be
3953  * specified at once.
3954  */
3955 int t4_set_params_timeout(struct adapter *adap, unsigned int mbox,
3956                           unsigned int pf, unsigned int vf,
3957                           unsigned int nparams, const u32 *params,
3958                           const u32 *val, int timeout)
3959 {
3960         struct fw_params_cmd c;
3961         __be32 *p = &c.param[0].mnem;
3962
3963         if (nparams > 7)
3964                 return -EINVAL;
3965
3966         memset(&c, 0, sizeof(c));
3967         c.op_to_vfn = cpu_to_be32(V_FW_CMD_OP(FW_PARAMS_CMD) |
3968                                   F_FW_CMD_REQUEST | F_FW_CMD_WRITE |
3969                                   V_FW_PARAMS_CMD_PFN(pf) |
3970                                   V_FW_PARAMS_CMD_VFN(vf));
3971         c.retval_len16 = cpu_to_be32(FW_LEN16(c));
3972
3973         while (nparams--) {
3974                 *p++ = cpu_to_be32(*params++);
3975                 *p++ = cpu_to_be32(*val++);
3976         }
3977
3978         return t4_wr_mbox_timeout(adap, mbox, &c, sizeof(c), NULL, timeout);
3979 }
3980
3981 int t4_set_params(struct adapter *adap, unsigned int mbox, unsigned int pf,
3982                   unsigned int vf, unsigned int nparams, const u32 *params,
3983                   const u32 *val)
3984 {
3985         return t4_set_params_timeout(adap, mbox, pf, vf, nparams, params, val,
3986                                      FW_CMD_MAX_TIMEOUT);
3987 }
3988
3989 /**
3990  * t4_alloc_vi_func - allocate a virtual interface
3991  * @adap: the adapter
3992  * @mbox: mailbox to use for the FW command
3993  * @port: physical port associated with the VI
3994  * @pf: the PF owning the VI
3995  * @vf: the VF owning the VI
3996  * @nmac: number of MAC addresses needed (1 to 5)
3997  * @mac: the MAC addresses of the VI
3998  * @rss_size: size of RSS table slice associated with this VI
3999  * @portfunc: which Port Application Function MAC Address is desired
4000  * @idstype: Intrusion Detection Type
4001  *
4002  * Allocates a virtual interface for the given physical port.  If @mac is
4003  * not %NULL it contains the MAC addresses of the VI as assigned by FW.
4004  * @mac should be large enough to hold @nmac Ethernet addresses, they are
4005  * stored consecutively so the space needed is @nmac * 6 bytes.
4006  * Returns a negative error number or the non-negative VI id.
4007  */
4008 int t4_alloc_vi_func(struct adapter *adap, unsigned int mbox,
4009                      unsigned int port, unsigned int pf, unsigned int vf,
4010                      unsigned int nmac, u8 *mac, unsigned int *rss_size,
4011                      unsigned int portfunc, unsigned int idstype)
4012 {
4013         int ret;
4014         struct fw_vi_cmd c;
4015
4016         memset(&c, 0, sizeof(c));
4017         c.op_to_vfn = cpu_to_be32(V_FW_CMD_OP(FW_VI_CMD) | F_FW_CMD_REQUEST |
4018                                   F_FW_CMD_WRITE | F_FW_CMD_EXEC |
4019                                   V_FW_VI_CMD_PFN(pf) | V_FW_VI_CMD_VFN(vf));
4020         c.alloc_to_len16 = cpu_to_be32(F_FW_VI_CMD_ALLOC | FW_LEN16(c));
4021         c.type_to_viid = cpu_to_be16(V_FW_VI_CMD_TYPE(idstype) |
4022                                      V_FW_VI_CMD_FUNC(portfunc));
4023         c.portid_pkd = V_FW_VI_CMD_PORTID(port);
4024         c.nmac = nmac - 1;
4025
4026         ret = t4_wr_mbox(adap, mbox, &c, sizeof(c), &c);
4027         if (ret)
4028                 return ret;
4029
4030         if (mac) {
4031                 memcpy(mac, c.mac, sizeof(c.mac));
4032                 switch (nmac) {
4033                 case 5:
4034                         memcpy(mac + 24, c.nmac3, sizeof(c.nmac3));
4035                         /* FALLTHROUGH */
4036                 case 4:
4037                         memcpy(mac + 18, c.nmac2, sizeof(c.nmac2));
4038                         /* FALLTHROUGH */
4039                 case 3:
4040                         memcpy(mac + 12, c.nmac1, sizeof(c.nmac1));
4041                         /* FALLTHROUGH */
4042                 case 2:
4043                         memcpy(mac + 6,  c.nmac0, sizeof(c.nmac0));
4044                         /* FALLTHROUGH */
4045                 }
4046         }
4047         if (rss_size)
4048                 *rss_size = G_FW_VI_CMD_RSSSIZE(be16_to_cpu(c.norss_rsssize));
4049         return G_FW_VI_CMD_VIID(cpu_to_be16(c.type_to_viid));
4050 }
4051
4052 /**
4053  * t4_alloc_vi - allocate an [Ethernet Function] virtual interface
4054  * @adap: the adapter
4055  * @mbox: mailbox to use for the FW command
4056  * @port: physical port associated with the VI
4057  * @pf: the PF owning the VI
4058  * @vf: the VF owning the VI
4059  * @nmac: number of MAC addresses needed (1 to 5)
4060  * @mac: the MAC addresses of the VI
4061  * @rss_size: size of RSS table slice associated with this VI
4062  *
4063  * Backwards compatible and convieniance routine to allocate a Virtual
4064  * Interface with a Ethernet Port Application Function and Intrustion
4065  * Detection System disabled.
4066  */
4067 int t4_alloc_vi(struct adapter *adap, unsigned int mbox, unsigned int port,
4068                 unsigned int pf, unsigned int vf, unsigned int nmac, u8 *mac,
4069                 unsigned int *rss_size)
4070 {
4071         return t4_alloc_vi_func(adap, mbox, port, pf, vf, nmac, mac, rss_size,
4072                                 FW_VI_FUNC_ETH, 0);
4073 }
4074
4075 /**
4076  * t4_free_vi - free a virtual interface
4077  * @adap: the adapter
4078  * @mbox: mailbox to use for the FW command
4079  * @pf: the PF owning the VI
4080  * @vf: the VF owning the VI
4081  * @viid: virtual interface identifiler
4082  *
4083  * Free a previously allocated virtual interface.
4084  */
4085 int t4_free_vi(struct adapter *adap, unsigned int mbox, unsigned int pf,
4086                unsigned int vf, unsigned int viid)
4087 {
4088         struct fw_vi_cmd c;
4089
4090         memset(&c, 0, sizeof(c));
4091         c.op_to_vfn = cpu_to_be32(V_FW_CMD_OP(FW_VI_CMD) | F_FW_CMD_REQUEST |
4092                                   F_FW_CMD_EXEC);
4093         if (is_pf4(adap))
4094                 c.op_to_vfn |= cpu_to_be32(V_FW_VI_CMD_PFN(pf) |
4095                                            V_FW_VI_CMD_VFN(vf));
4096         c.alloc_to_len16 = cpu_to_be32(F_FW_VI_CMD_FREE | FW_LEN16(c));
4097         c.type_to_viid = cpu_to_be16(V_FW_VI_CMD_VIID(viid));
4098
4099         if (is_pf4(adap))
4100                 return t4_wr_mbox(adap, mbox, &c, sizeof(c), &c);
4101         else
4102                 return t4vf_wr_mbox(adap, &c, sizeof(c), NULL);
4103 }
4104
4105 /**
4106  * t4_set_rxmode - set Rx properties of a virtual interface
4107  * @adap: the adapter
4108  * @mbox: mailbox to use for the FW command
4109  * @viid: the VI id
4110  * @mtu: the new MTU or -1
4111  * @promisc: 1 to enable promiscuous mode, 0 to disable it, -1 no change
4112  * @all_multi: 1 to enable all-multi mode, 0 to disable it, -1 no change
4113  * @bcast: 1 to enable broadcast Rx, 0 to disable it, -1 no change
4114  * @vlanex: 1 to enable hardware VLAN Tag extraction, 0 to disable it,
4115  *          -1 no change
4116  * @sleep_ok: if true we may sleep while awaiting command completion
4117  *
4118  * Sets Rx properties of a virtual interface.
4119  */
4120 int t4_set_rxmode(struct adapter *adap, unsigned int mbox, unsigned int viid,
4121                   int mtu, int promisc, int all_multi, int bcast, int vlanex,
4122                   bool sleep_ok)
4123 {
4124         struct fw_vi_rxmode_cmd c;
4125
4126         /* convert to FW values */
4127         if (mtu < 0)
4128                 mtu = M_FW_VI_RXMODE_CMD_MTU;
4129         if (promisc < 0)
4130                 promisc = M_FW_VI_RXMODE_CMD_PROMISCEN;
4131         if (all_multi < 0)
4132                 all_multi = M_FW_VI_RXMODE_CMD_ALLMULTIEN;
4133         if (bcast < 0)
4134                 bcast = M_FW_VI_RXMODE_CMD_BROADCASTEN;
4135         if (vlanex < 0)
4136                 vlanex = M_FW_VI_RXMODE_CMD_VLANEXEN;
4137
4138         memset(&c, 0, sizeof(c));
4139         c.op_to_viid = cpu_to_be32(V_FW_CMD_OP(FW_VI_RXMODE_CMD) |
4140                                    F_FW_CMD_REQUEST | F_FW_CMD_WRITE |
4141                                    V_FW_VI_RXMODE_CMD_VIID(viid));
4142         c.retval_len16 = cpu_to_be32(FW_LEN16(c));
4143         c.mtu_to_vlanexen = cpu_to_be32(V_FW_VI_RXMODE_CMD_MTU(mtu) |
4144                             V_FW_VI_RXMODE_CMD_PROMISCEN(promisc) |
4145                             V_FW_VI_RXMODE_CMD_ALLMULTIEN(all_multi) |
4146                             V_FW_VI_RXMODE_CMD_BROADCASTEN(bcast) |
4147                             V_FW_VI_RXMODE_CMD_VLANEXEN(vlanex));
4148         if (is_pf4(adap))
4149                 return t4_wr_mbox_meat(adap, mbox, &c, sizeof(c), NULL,
4150                                        sleep_ok);
4151         else
4152                 return t4vf_wr_mbox(adap, &c, sizeof(c), NULL);
4153 }
4154
4155 /**
4156  * t4_change_mac - modifies the exact-match filter for a MAC address
4157  * @adap: the adapter
4158  * @mbox: mailbox to use for the FW command
4159  * @viid: the VI id
4160  * @idx: index of existing filter for old value of MAC address, or -1
4161  * @addr: the new MAC address value
4162  * @persist: whether a new MAC allocation should be persistent
4163  * @add_smt: if true also add the address to the HW SMT
4164  *
4165  * Modifies an exact-match filter and sets it to the new MAC address if
4166  * @idx >= 0, or adds the MAC address to a new filter if @idx < 0.  In the
4167  * latter case the address is added persistently if @persist is %true.
4168  *
4169  * Note that in general it is not possible to modify the value of a given
4170  * filter so the generic way to modify an address filter is to free the one
4171  * being used by the old address value and allocate a new filter for the
4172  * new address value.
4173  *
4174  * Returns a negative error number or the index of the filter with the new
4175  * MAC value.  Note that this index may differ from @idx.
4176  */
4177 int t4_change_mac(struct adapter *adap, unsigned int mbox, unsigned int viid,
4178                   int idx, const u8 *addr, bool persist, bool add_smt)
4179 {
4180         int ret, mode;
4181         struct fw_vi_mac_cmd c;
4182         struct fw_vi_mac_exact *p = c.u.exact;
4183         int max_mac_addr = adap->params.arch.mps_tcam_size;
4184
4185         if (idx < 0)                             /* new allocation */
4186                 idx = persist ? FW_VI_MAC_ADD_PERSIST_MAC : FW_VI_MAC_ADD_MAC;
4187         mode = add_smt ? FW_VI_MAC_SMT_AND_MPSTCAM : FW_VI_MAC_MPS_TCAM_ENTRY;
4188
4189         memset(&c, 0, sizeof(c));
4190         c.op_to_viid = cpu_to_be32(V_FW_CMD_OP(FW_VI_MAC_CMD) |
4191                                    F_FW_CMD_REQUEST | F_FW_CMD_WRITE |
4192                                    V_FW_VI_MAC_CMD_VIID(viid));
4193         c.freemacs_to_len16 = cpu_to_be32(V_FW_CMD_LEN16(1));
4194         p->valid_to_idx = cpu_to_be16(F_FW_VI_MAC_CMD_VALID |
4195                                       V_FW_VI_MAC_CMD_SMAC_RESULT(mode) |
4196                                       V_FW_VI_MAC_CMD_IDX(idx));
4197         memcpy(p->macaddr, addr, sizeof(p->macaddr));
4198
4199         if (is_pf4(adap))
4200                 ret = t4_wr_mbox(adap, mbox, &c, sizeof(c), &c);
4201         else
4202                 ret = t4vf_wr_mbox(adap, &c, sizeof(c), &c);
4203         if (ret == 0) {
4204                 ret = G_FW_VI_MAC_CMD_IDX(be16_to_cpu(p->valid_to_idx));
4205                 if (ret >= max_mac_addr)
4206                         ret = -ENOMEM;
4207         }
4208         return ret;
4209 }
4210
4211 /**
4212  * t4_enable_vi_params - enable/disable a virtual interface
4213  * @adap: the adapter
4214  * @mbox: mailbox to use for the FW command
4215  * @viid: the VI id
4216  * @rx_en: 1=enable Rx, 0=disable Rx
4217  * @tx_en: 1=enable Tx, 0=disable Tx
4218  * @dcb_en: 1=enable delivery of Data Center Bridging messages.
4219  *
4220  * Enables/disables a virtual interface.  Note that setting DCB Enable
4221  * only makes sense when enabling a Virtual Interface ...
4222  */
4223 int t4_enable_vi_params(struct adapter *adap, unsigned int mbox,
4224                         unsigned int viid, bool rx_en, bool tx_en, bool dcb_en)
4225 {
4226         struct fw_vi_enable_cmd c;
4227
4228         memset(&c, 0, sizeof(c));
4229         c.op_to_viid = cpu_to_be32(V_FW_CMD_OP(FW_VI_ENABLE_CMD) |
4230                                    F_FW_CMD_REQUEST | F_FW_CMD_EXEC |
4231                                    V_FW_VI_ENABLE_CMD_VIID(viid));
4232         c.ien_to_len16 = cpu_to_be32(V_FW_VI_ENABLE_CMD_IEN(rx_en) |
4233                                      V_FW_VI_ENABLE_CMD_EEN(tx_en) |
4234                                      V_FW_VI_ENABLE_CMD_DCB_INFO(dcb_en) |
4235                                      FW_LEN16(c));
4236         if (is_pf4(adap))
4237                 return t4_wr_mbox_ns(adap, mbox, &c, sizeof(c), NULL);
4238         else
4239                 return t4vf_wr_mbox_ns(adap, &c, sizeof(c), NULL);
4240 }
4241
4242 /**
4243  * t4_enable_vi - enable/disable a virtual interface
4244  * @adap: the adapter
4245  * @mbox: mailbox to use for the FW command
4246  * @viid: the VI id
4247  * @rx_en: 1=enable Rx, 0=disable Rx
4248  * @tx_en: 1=enable Tx, 0=disable Tx
4249  *
4250  * Enables/disables a virtual interface.  Note that setting DCB Enable
4251  * only makes sense when enabling a Virtual Interface ...
4252  */
4253 int t4_enable_vi(struct adapter *adap, unsigned int mbox, unsigned int viid,
4254                  bool rx_en, bool tx_en)
4255 {
4256         return t4_enable_vi_params(adap, mbox, viid, rx_en, tx_en, 0);
4257 }
4258
4259 /**
4260  * t4_iq_start_stop - enable/disable an ingress queue and its FLs
4261  * @adap: the adapter
4262  * @mbox: mailbox to use for the FW command
4263  * @start: %true to enable the queues, %false to disable them
4264  * @pf: the PF owning the queues
4265  * @vf: the VF owning the queues
4266  * @iqid: ingress queue id
4267  * @fl0id: FL0 queue id or 0xffff if no attached FL0
4268  * @fl1id: FL1 queue id or 0xffff if no attached FL1
4269  *
4270  * Starts or stops an ingress queue and its associated FLs, if any.
4271  */
4272 int t4_iq_start_stop(struct adapter *adap, unsigned int mbox, bool start,
4273                      unsigned int pf, unsigned int vf, unsigned int iqid,
4274                      unsigned int fl0id, unsigned int fl1id)
4275 {
4276         struct fw_iq_cmd c;
4277
4278         memset(&c, 0, sizeof(c));
4279         c.op_to_vfn = cpu_to_be32(V_FW_CMD_OP(FW_IQ_CMD) | F_FW_CMD_REQUEST |
4280                                   F_FW_CMD_EXEC);
4281         c.alloc_to_len16 = cpu_to_be32(V_FW_IQ_CMD_IQSTART(start) |
4282                                        V_FW_IQ_CMD_IQSTOP(!start) |
4283                                        FW_LEN16(c));
4284         c.iqid = cpu_to_be16(iqid);
4285         c.fl0id = cpu_to_be16(fl0id);
4286         c.fl1id = cpu_to_be16(fl1id);
4287         if (is_pf4(adap)) {
4288                 c.op_to_vfn |= cpu_to_be32(V_FW_IQ_CMD_PFN(pf) |
4289                                            V_FW_IQ_CMD_VFN(vf));
4290                 return t4_wr_mbox(adap, mbox, &c, sizeof(c), NULL);
4291         } else {
4292                 return t4vf_wr_mbox(adap, &c, sizeof(c), NULL);
4293         }
4294 }
4295
4296 /**
4297  * t4_iq_free - free an ingress queue and its FLs
4298  * @adap: the adapter
4299  * @mbox: mailbox to use for the FW command
4300  * @pf: the PF owning the queues
4301  * @vf: the VF owning the queues
4302  * @iqtype: the ingress queue type (FW_IQ_TYPE_FL_INT_CAP, etc.)
4303  * @iqid: ingress queue id
4304  * @fl0id: FL0 queue id or 0xffff if no attached FL0
4305  * @fl1id: FL1 queue id or 0xffff if no attached FL1
4306  *
4307  * Frees an ingress queue and its associated FLs, if any.
4308  */
4309 int t4_iq_free(struct adapter *adap, unsigned int mbox, unsigned int pf,
4310                unsigned int vf, unsigned int iqtype, unsigned int iqid,
4311                unsigned int fl0id, unsigned int fl1id)
4312 {
4313         struct fw_iq_cmd c;
4314
4315         memset(&c, 0, sizeof(c));
4316         c.op_to_vfn = cpu_to_be32(V_FW_CMD_OP(FW_IQ_CMD) | F_FW_CMD_REQUEST |
4317                                   F_FW_CMD_EXEC);
4318         if (is_pf4(adap))
4319                 c.op_to_vfn |= cpu_to_be32(V_FW_IQ_CMD_PFN(pf) |
4320                                            V_FW_IQ_CMD_VFN(vf));
4321         c.alloc_to_len16 = cpu_to_be32(F_FW_IQ_CMD_FREE | FW_LEN16(c));
4322         c.type_to_iqandstindex = cpu_to_be32(V_FW_IQ_CMD_TYPE(iqtype));
4323         c.iqid = cpu_to_be16(iqid);
4324         c.fl0id = cpu_to_be16(fl0id);
4325         c.fl1id = cpu_to_be16(fl1id);
4326         if (is_pf4(adap))
4327                 return t4_wr_mbox(adap, mbox, &c, sizeof(c), NULL);
4328         else
4329                 return t4vf_wr_mbox(adap, &c, sizeof(c), NULL);
4330 }
4331
4332 /**
4333  * t4_eth_eq_free - free an Ethernet egress queue
4334  * @adap: the adapter
4335  * @mbox: mailbox to use for the FW command
4336  * @pf: the PF owning the queue
4337  * @vf: the VF owning the queue
4338  * @eqid: egress queue id
4339  *
4340  * Frees an Ethernet egress queue.
4341  */
4342 int t4_eth_eq_free(struct adapter *adap, unsigned int mbox, unsigned int pf,
4343                    unsigned int vf, unsigned int eqid)
4344 {
4345         struct fw_eq_eth_cmd c;
4346
4347         memset(&c, 0, sizeof(c));
4348         c.op_to_vfn = cpu_to_be32(V_FW_CMD_OP(FW_EQ_ETH_CMD) |
4349                                   F_FW_CMD_REQUEST | F_FW_CMD_EXEC);
4350         if (is_pf4(adap))
4351                 c.op_to_vfn |= cpu_to_be32(V_FW_IQ_CMD_PFN(pf) |
4352                                            V_FW_IQ_CMD_VFN(vf));
4353         c.alloc_to_len16 = cpu_to_be32(F_FW_EQ_ETH_CMD_FREE | FW_LEN16(c));
4354         c.eqid_pkd = cpu_to_be32(V_FW_EQ_ETH_CMD_EQID(eqid));
4355         if (is_pf4(adap))
4356                 return t4_wr_mbox(adap, mbox, &c, sizeof(c), NULL);
4357         else
4358                 return t4vf_wr_mbox(adap, &c, sizeof(c), NULL);
4359 }
4360
4361 /**
4362  * t4_link_down_rc_str - return a string for a Link Down Reason Code
4363  * @link_down_rc: Link Down Reason Code
4364  *
4365  * Returns a string representation of the Link Down Reason Code.
4366  */
4367 static const char *t4_link_down_rc_str(unsigned char link_down_rc)
4368 {
4369         static const char * const reason[] = {
4370                 "Link Down",
4371                 "Remote Fault",
4372                 "Auto-negotiation Failure",
4373                 "Reserved",
4374                 "Insufficient Airflow",
4375                 "Unable To Determine Reason",
4376                 "No RX Signal Detected",
4377                 "Reserved",
4378         };
4379
4380         if (link_down_rc >= ARRAY_SIZE(reason))
4381                 return "Bad Reason Code";
4382
4383         return reason[link_down_rc];
4384 }
4385
4386 /* Return the highest speed set in the port capabilities, in Mb/s. */
4387 static unsigned int fwcap_to_speed(fw_port_cap32_t caps)
4388 {
4389 #define TEST_SPEED_RETURN(__caps_speed, __speed) \
4390         do { \
4391                 if (caps & FW_PORT_CAP32_SPEED_##__caps_speed) \
4392                         return __speed; \
4393         } while (0)
4394
4395         TEST_SPEED_RETURN(100G, 100000);
4396         TEST_SPEED_RETURN(50G,   50000);
4397         TEST_SPEED_RETURN(40G,   40000);
4398         TEST_SPEED_RETURN(25G,   25000);
4399         TEST_SPEED_RETURN(10G,   10000);
4400         TEST_SPEED_RETURN(1G,     1000);
4401         TEST_SPEED_RETURN(100M,    100);
4402
4403 #undef TEST_SPEED_RETURN
4404
4405         return 0;
4406 }
4407
4408 /**
4409  * t4_handle_get_port_info - process a FW reply message
4410  * @pi: the port info
4411  * @rpl: start of the FW message
4412  *
4413  * Processes a GET_PORT_INFO FW reply message.
4414  */
4415 static void t4_handle_get_port_info(struct port_info *pi, const __be64 *rpl)
4416 {
4417         const struct fw_port_cmd *cmd = (const void *)rpl;
4418         int action = G_FW_PORT_CMD_ACTION(be32_to_cpu(cmd->action_to_len16));
4419         fw_port_cap32_t pcaps, acaps, linkattr;
4420         struct link_config *lc = &pi->link_cfg;
4421         struct adapter *adapter = pi->adapter;
4422         enum fw_port_module_type mod_type;
4423         enum fw_port_type port_type;
4424         unsigned int speed, fc, fec;
4425         int link_ok, linkdnrc;
4426
4427         /* Extract the various fields from the Port Information message.
4428          */
4429         switch (action) {
4430         case FW_PORT_ACTION_GET_PORT_INFO: {
4431                 u32 lstatus = be32_to_cpu(cmd->u.info.lstatus_to_modtype);
4432
4433                 link_ok = (lstatus & F_FW_PORT_CMD_LSTATUS) != 0;
4434                 linkdnrc = G_FW_PORT_CMD_LINKDNRC(lstatus);
4435                 port_type = G_FW_PORT_CMD_PTYPE(lstatus);
4436                 mod_type = G_FW_PORT_CMD_MODTYPE(lstatus);
4437                 pcaps = fwcaps16_to_caps32(be16_to_cpu(cmd->u.info.pcap));
4438                 acaps = fwcaps16_to_caps32(be16_to_cpu(cmd->u.info.acap));
4439
4440                 /* Unfortunately the format of the Link Status in the old
4441                  * 16-bit Port Information message isn't the same as the
4442                  * 16-bit Port Capabilities bitfield used everywhere else ...
4443                  */
4444                 linkattr = 0;
4445                 if (lstatus & F_FW_PORT_CMD_RXPAUSE)
4446                         linkattr |= FW_PORT_CAP32_FC_RX;
4447                 if (lstatus & F_FW_PORT_CMD_TXPAUSE)
4448                         linkattr |= FW_PORT_CAP32_FC_TX;
4449                 if (lstatus & V_FW_PORT_CMD_LSPEED(FW_PORT_CAP_SPEED_100M))
4450                         linkattr |= FW_PORT_CAP32_SPEED_100M;
4451                 if (lstatus & V_FW_PORT_CMD_LSPEED(FW_PORT_CAP_SPEED_1G))
4452                         linkattr |= FW_PORT_CAP32_SPEED_1G;
4453                 if (lstatus & V_FW_PORT_CMD_LSPEED(FW_PORT_CAP_SPEED_10G))
4454                         linkattr |= FW_PORT_CAP32_SPEED_10G;
4455                 if (lstatus & V_FW_PORT_CMD_LSPEED(FW_PORT_CAP_SPEED_25G))
4456                         linkattr |= FW_PORT_CAP32_SPEED_25G;
4457                 if (lstatus & V_FW_PORT_CMD_LSPEED(FW_PORT_CAP_SPEED_40G))
4458                         linkattr |= FW_PORT_CAP32_SPEED_40G;
4459                 if (lstatus & V_FW_PORT_CMD_LSPEED(FW_PORT_CAP_SPEED_100G))
4460                         linkattr |= FW_PORT_CAP32_SPEED_100G;
4461
4462                 break;
4463                 }
4464
4465         case FW_PORT_ACTION_GET_PORT_INFO32: {
4466                 u32 lstatus32 =
4467                         be32_to_cpu(cmd->u.info32.lstatus32_to_cbllen32);
4468
4469                 link_ok = (lstatus32 & F_FW_PORT_CMD_LSTATUS32) != 0;
4470                 linkdnrc = G_FW_PORT_CMD_LINKDNRC32(lstatus32);
4471                 port_type = G_FW_PORT_CMD_PORTTYPE32(lstatus32);
4472                 mod_type = G_FW_PORT_CMD_MODTYPE32(lstatus32);
4473                 pcaps = be32_to_cpu(cmd->u.info32.pcaps32);
4474                 acaps = be32_to_cpu(cmd->u.info32.acaps32);
4475                 linkattr = be32_to_cpu(cmd->u.info32.linkattr32);
4476                 break;
4477                 }
4478
4479         default:
4480                 dev_warn(adapter, "Handle Port Information: Bad Command/Action %#x\n",
4481                          be32_to_cpu(cmd->action_to_len16));
4482                 return;
4483         }
4484
4485         fec = fwcap_to_cc_fec(acaps);
4486
4487         fc = fwcap_to_cc_pause(linkattr);
4488         speed = fwcap_to_speed(linkattr);
4489
4490         if (mod_type != pi->mod_type) {
4491                 lc->auto_fec = fec;
4492                 pi->port_type = port_type;
4493                 pi->mod_type = mod_type;
4494                 t4_os_portmod_changed(adapter, pi->port_id);
4495         }
4496         if (link_ok != lc->link_ok || speed != lc->speed ||
4497             fc != lc->fc || fec != lc->fec) { /* something changed */
4498                 if (!link_ok && lc->link_ok) {
4499                         lc->link_down_rc = linkdnrc;
4500                         dev_warn(adap, "Port %d link down, reason: %s\n",
4501                                  pi->tx_chan, t4_link_down_rc_str(linkdnrc));
4502                 }
4503                 lc->link_ok = link_ok;
4504                 lc->speed = speed;
4505                 lc->fc = fc;
4506                 lc->fec = fec;
4507                 lc->pcaps = pcaps;
4508                 lc->acaps = acaps & ADVERT_MASK;
4509
4510                 if (lc->acaps & FW_PORT_CAP32_ANEG) {
4511                         lc->autoneg = AUTONEG_ENABLE;
4512                 } else {
4513                         /* When Autoneg is disabled, user needs to set
4514                          * single speed.
4515                          * Similar to cxgb4_ethtool.c: set_link_ksettings
4516                          */
4517                         lc->acaps = 0;
4518                         lc->requested_speed = fwcap_to_speed(acaps);
4519                         lc->autoneg = AUTONEG_DISABLE;
4520                 }
4521         }
4522 }
4523
4524 /**
4525  * t4_handle_fw_rpl - process a FW reply message
4526  * @adap: the adapter
4527  * @rpl: start of the FW message
4528  *
4529  * Processes a FW message, such as link state change messages.
4530  */
4531 int t4_handle_fw_rpl(struct adapter *adap, const __be64 *rpl)
4532 {
4533         u8 opcode = *(const u8 *)rpl;
4534
4535         /*
4536          * This might be a port command ... this simplifies the following
4537          * conditionals ...  We can get away with pre-dereferencing
4538          * action_to_len16 because it's in the first 16 bytes and all messages
4539          * will be at least that long.
4540          */
4541         const struct fw_port_cmd *p = (const void *)rpl;
4542         unsigned int action =
4543                 G_FW_PORT_CMD_ACTION(be32_to_cpu(p->action_to_len16));
4544
4545         if (opcode == FW_PORT_CMD &&
4546             (action == FW_PORT_ACTION_GET_PORT_INFO ||
4547              action == FW_PORT_ACTION_GET_PORT_INFO32)) {
4548                 /* link/module state change message */
4549                 int chan = G_FW_PORT_CMD_PORTID(be32_to_cpu(p->op_to_portid));
4550                 struct port_info *pi = NULL;
4551                 int i;
4552
4553                 for_each_port(adap, i) {
4554                         pi = adap2pinfo(adap, i);
4555                         if (pi->tx_chan == chan)
4556                                 break;
4557                 }
4558
4559                 t4_handle_get_port_info(pi, rpl);
4560         } else {
4561                 dev_warn(adap, "Unknown firmware reply %d\n", opcode);
4562                 return -EINVAL;
4563         }
4564         return 0;
4565 }
4566
4567 void t4_reset_link_config(struct adapter *adap, int idx)
4568 {
4569         struct port_info *pi = adap2pinfo(adap, idx);
4570         struct link_config *lc = &pi->link_cfg;
4571
4572         lc->link_ok = 0;
4573         lc->requested_speed = 0;
4574         lc->requested_fc = 0;
4575         lc->speed = 0;
4576         lc->fc = 0;
4577 }
4578
4579 /**
4580  * init_link_config - initialize a link's SW state
4581  * @lc: structure holding the link state
4582  * @pcaps: link Port Capabilities
4583  * @acaps: link current Advertised Port Capabilities
4584  *
4585  * Initializes the SW state maintained for each link, including the link's
4586  * capabilities and default speed/flow-control/autonegotiation settings.
4587  */
4588 static void init_link_config(struct link_config *lc, fw_port_cap32_t pcaps,
4589                              fw_port_cap32_t acaps)
4590 {
4591         lc->pcaps = pcaps;
4592         lc->requested_speed = 0;
4593         lc->speed = 0;
4594         lc->requested_fc = 0;
4595         lc->fc = 0;
4596
4597         /**
4598          * For Forward Error Control, we default to whatever the Firmware
4599          * tells us the Link is currently advertising.
4600          */
4601         lc->auto_fec = fwcap_to_cc_fec(acaps);
4602         lc->requested_fec = FEC_AUTO;
4603         lc->fec = lc->auto_fec;
4604
4605         if (lc->pcaps & FW_PORT_CAP32_ANEG) {
4606                 lc->acaps = lc->pcaps & ADVERT_MASK;
4607                 lc->autoneg = AUTONEG_ENABLE;
4608                 lc->requested_fc |= PAUSE_AUTONEG;
4609         } else {
4610                 lc->acaps = 0;
4611                 lc->autoneg = AUTONEG_DISABLE;
4612         }
4613 }
4614
4615 /**
4616  * t4_wait_dev_ready - wait till to reads of registers work
4617  *
4618  * Right after the device is RESET is can take a small amount of time
4619  * for it to respond to register reads.  Until then, all reads will
4620  * return either 0xff...ff or 0xee...ee.  Return an error if reads
4621  * don't work within a reasonable time frame.
4622  */
4623 static int t4_wait_dev_ready(struct adapter *adapter)
4624 {
4625         u32 whoami;
4626
4627         whoami = t4_read_reg(adapter, A_PL_WHOAMI);
4628
4629         if (whoami != 0xffffffff && whoami != X_CIM_PF_NOACCESS)
4630                 return 0;
4631
4632         msleep(500);
4633         whoami = t4_read_reg(adapter, A_PL_WHOAMI);
4634         if (whoami != 0xffffffff && whoami != X_CIM_PF_NOACCESS)
4635                 return 0;
4636
4637         dev_err(adapter, "Device didn't become ready for access, whoami = %#x\n",
4638                 whoami);
4639         return -EIO;
4640 }
4641
4642 struct flash_desc {
4643         u32 vendor_and_model_id;
4644         u32 size_mb;
4645 };
4646
4647 int t4_get_flash_params(struct adapter *adapter)
4648 {
4649         /*
4650          * Table for non-Numonix supported flash parts.  Numonix parts are left
4651          * to the preexisting well-tested code.  All flash parts have 64KB
4652          * sectors.
4653          */
4654         static struct flash_desc supported_flash[] = {
4655                 { 0x00150201, 4 << 20 },       /* Spansion 4MB S25FL032P */
4656         };
4657
4658         int ret;
4659         u32 flashid = 0;
4660         unsigned int part, manufacturer;
4661         unsigned int density, size;
4662
4663         /**
4664          * Issue a Read ID Command to the Flash part.  We decode supported
4665          * Flash parts and their sizes from this.  There's a newer Query
4666          * Command which can retrieve detailed geometry information but
4667          * many Flash parts don't support it.
4668          */
4669         ret = sf1_write(adapter, 1, 1, 0, SF_RD_ID);
4670         if (!ret)
4671                 ret = sf1_read(adapter, 3, 0, 1, &flashid);
4672         t4_write_reg(adapter, A_SF_OP, 0);               /* unlock SF */
4673         if (ret < 0)
4674                 return ret;
4675
4676         for (part = 0; part < ARRAY_SIZE(supported_flash); part++) {
4677                 if (supported_flash[part].vendor_and_model_id == flashid) {
4678                         adapter->params.sf_size =
4679                                 supported_flash[part].size_mb;
4680                         adapter->params.sf_nsec =
4681                                 adapter->params.sf_size / SF_SEC_SIZE;
4682                         goto found;
4683                 }
4684         }
4685
4686         manufacturer = flashid & 0xff;
4687         switch (manufacturer) {
4688         case 0x20: { /* Micron/Numonix */
4689                 /**
4690                  * This Density -> Size decoding table is taken from Micron
4691                  * Data Sheets.
4692                  */
4693                 density = (flashid >> 16) & 0xff;
4694                 switch (density) {
4695                 case 0x14:
4696                         size = 1 << 20; /* 1MB */
4697                         break;
4698                 case 0x15:
4699                         size = 1 << 21; /* 2MB */
4700                         break;
4701                 case 0x16:
4702                         size = 1 << 22; /* 4MB */
4703                         break;
4704                 case 0x17:
4705                         size = 1 << 23; /* 8MB */
4706                         break;
4707                 case 0x18:
4708                         size = 1 << 24; /* 16MB */
4709                         break;
4710                 case 0x19:
4711                         size = 1 << 25; /* 32MB */
4712                         break;
4713                 case 0x20:
4714                         size = 1 << 26; /* 64MB */
4715                         break;
4716                 case 0x21:
4717                         size = 1 << 27; /* 128MB */
4718                         break;
4719                 case 0x22:
4720                         size = 1 << 28; /* 256MB */
4721                         break;
4722                 default:
4723                         dev_err(adapter, "Micron Flash Part has bad size, ID = %#x, Density code = %#x\n",
4724                                 flashid, density);
4725                         return -EINVAL;
4726                 }
4727
4728                 adapter->params.sf_size = size;
4729                 adapter->params.sf_nsec = size / SF_SEC_SIZE;
4730                 break;
4731         }
4732         default:
4733                 dev_err(adapter, "Unsupported Flash Part, ID = %#x\n", flashid);
4734                 return -EINVAL;
4735         }
4736
4737 found:
4738         /*
4739          * We should reject adapters with FLASHes which are too small. So, emit
4740          * a warning.
4741          */
4742         if (adapter->params.sf_size < FLASH_MIN_SIZE)
4743                 dev_warn(adapter, "WARNING: Flash Part ID %#x, size %#x < %#x\n",
4744                          flashid, adapter->params.sf_size, FLASH_MIN_SIZE);
4745
4746         return 0;
4747 }
4748
4749 static void set_pcie_completion_timeout(struct adapter *adapter,
4750                                         u8 range)
4751 {
4752         u32 pcie_cap;
4753         u16 val;
4754
4755         pcie_cap = t4_os_find_pci_capability(adapter, PCI_CAP_ID_EXP);
4756         if (pcie_cap) {
4757                 t4_os_pci_read_cfg2(adapter, pcie_cap + PCI_EXP_DEVCTL2, &val);
4758                 val &= 0xfff0;
4759                 val |= range;
4760                 t4_os_pci_write_cfg2(adapter, pcie_cap + PCI_EXP_DEVCTL2, val);
4761         }
4762 }
4763
4764 /**
4765  * t4_get_chip_type - Determine chip type from device ID
4766  * @adap: the adapter
4767  * @ver: adapter version
4768  */
4769 int t4_get_chip_type(struct adapter *adap, int ver)
4770 {
4771         enum chip_type chip = 0;
4772         u32 pl_rev = G_REV(t4_read_reg(adap, A_PL_REV));
4773
4774         /* Retrieve adapter's device ID */
4775         switch (ver) {
4776         case CHELSIO_T5:
4777                 chip |= CHELSIO_CHIP_CODE(CHELSIO_T5, pl_rev);
4778                 break;
4779         case CHELSIO_T6:
4780                 chip |= CHELSIO_CHIP_CODE(CHELSIO_T6, pl_rev);
4781                 break;
4782         default:
4783                 dev_err(adap, "Device %d is not supported\n",
4784                         adap->params.pci.device_id);
4785                 return -EINVAL;
4786         }
4787
4788         return chip;
4789 }
4790
4791 /**
4792  * t4_prep_adapter - prepare SW and HW for operation
4793  * @adapter: the adapter
4794  *
4795  * Initialize adapter SW state for the various HW modules, set initial
4796  * values for some adapter tunables, take PHYs out of reset, and
4797  * initialize the MDIO interface.
4798  */
4799 int t4_prep_adapter(struct adapter *adapter)
4800 {
4801         int ret, ver;
4802         u32 pl_rev;
4803
4804         ret = t4_wait_dev_ready(adapter);
4805         if (ret < 0)
4806                 return ret;
4807
4808         pl_rev = G_REV(t4_read_reg(adapter, A_PL_REV));
4809         adapter->params.pci.device_id = adapter->pdev->id.device_id;
4810         adapter->params.pci.vendor_id = adapter->pdev->id.vendor_id;
4811
4812         /*
4813          * WE DON'T NEED adapter->params.chip CODE ONCE PL_REV CONTAINS
4814          * ADAPTER (VERSION << 4 | REVISION)
4815          */
4816         ver = CHELSIO_PCI_ID_VER(adapter->params.pci.device_id);
4817         adapter->params.chip = 0;
4818         switch (ver) {
4819         case CHELSIO_T5:
4820                 adapter->params.chip |= CHELSIO_CHIP_CODE(CHELSIO_T5, pl_rev);
4821                 adapter->params.arch.sge_fl_db = F_DBPRIO | F_DBTYPE;
4822                 adapter->params.arch.mps_tcam_size =
4823                                                 NUM_MPS_T5_CLS_SRAM_L_INSTANCES;
4824                 adapter->params.arch.mps_rplc_size = 128;
4825                 adapter->params.arch.nchan = NCHAN;
4826                 adapter->params.arch.vfcount = 128;
4827                 break;
4828         case CHELSIO_T6:
4829                 adapter->params.chip |= CHELSIO_CHIP_CODE(CHELSIO_T6, pl_rev);
4830                 adapter->params.arch.sge_fl_db = 0;
4831                 adapter->params.arch.mps_tcam_size =
4832                                                 NUM_MPS_T5_CLS_SRAM_L_INSTANCES;
4833                 adapter->params.arch.mps_rplc_size = 256;
4834                 adapter->params.arch.nchan = 2;
4835                 adapter->params.arch.vfcount = 256;
4836                 break;
4837         default:
4838                 dev_err(adapter, "%s: Device %d is not supported\n",
4839                         __func__, adapter->params.pci.device_id);
4840                 return -EINVAL;
4841         }
4842
4843         adapter->params.pci.vpd_cap_addr =
4844                 t4_os_find_pci_capability(adapter, PCI_CAP_ID_VPD);
4845
4846         ret = t4_get_flash_params(adapter);
4847         if (ret < 0) {
4848                 dev_err(adapter, "Unable to retrieve Flash Parameters, ret = %d\n",
4849                         -ret);
4850                 return ret;
4851         }
4852
4853         adapter->params.cim_la_size = CIMLA_SIZE;
4854
4855         init_cong_ctrl(adapter->params.a_wnd, adapter->params.b_wnd);
4856
4857         /*
4858          * Default port and clock for debugging in case we can't reach FW.
4859          */
4860         adapter->params.nports = 1;
4861         adapter->params.portvec = 1;
4862         adapter->params.vpd.cclk = 50000;
4863
4864         /* Set pci completion timeout value to 4 seconds. */
4865         set_pcie_completion_timeout(adapter, 0xd);
4866         return 0;
4867 }
4868
4869 /**
4870  * t4_bar2_sge_qregs - return BAR2 SGE Queue register information
4871  * @adapter: the adapter
4872  * @qid: the Queue ID
4873  * @qtype: the Ingress or Egress type for @qid
4874  * @pbar2_qoffset: BAR2 Queue Offset
4875  * @pbar2_qid: BAR2 Queue ID or 0 for Queue ID inferred SGE Queues
4876  *
4877  * Returns the BAR2 SGE Queue Registers information associated with the
4878  * indicated Absolute Queue ID.  These are passed back in return value
4879  * pointers.  @qtype should be T4_BAR2_QTYPE_EGRESS for Egress Queue
4880  * and T4_BAR2_QTYPE_INGRESS for Ingress Queues.
4881  *
4882  * This may return an error which indicates that BAR2 SGE Queue
4883  * registers aren't available.  If an error is not returned, then the
4884  * following values are returned:
4885  *
4886  *   *@pbar2_qoffset: the BAR2 Offset of the @qid Registers
4887  *   *@pbar2_qid: the BAR2 SGE Queue ID or 0 of @qid
4888  *
4889  * If the returned BAR2 Queue ID is 0, then BAR2 SGE registers which
4890  * require the "Inferred Queue ID" ability may be used.  E.g. the
4891  * Write Combining Doorbell Buffer. If the BAR2 Queue ID is not 0,
4892  * then these "Inferred Queue ID" register may not be used.
4893  */
4894 int t4_bar2_sge_qregs(struct adapter *adapter, unsigned int qid,
4895                       enum t4_bar2_qtype qtype, u64 *pbar2_qoffset,
4896                       unsigned int *pbar2_qid)
4897 {
4898         unsigned int page_shift, page_size, qpp_shift, qpp_mask;
4899         u64 bar2_page_offset, bar2_qoffset;
4900         unsigned int bar2_qid, bar2_qid_offset, bar2_qinferred;
4901
4902         /*
4903          * T4 doesn't support BAR2 SGE Queue registers.
4904          */
4905         if (is_t4(adapter->params.chip))
4906                 return -EINVAL;
4907
4908         /*
4909          * Get our SGE Page Size parameters.
4910          */
4911         page_shift = adapter->params.sge.hps + 10;
4912         page_size = 1 << page_shift;
4913
4914         /*
4915          * Get the right Queues per Page parameters for our Queue.
4916          */
4917         qpp_shift = (qtype == T4_BAR2_QTYPE_EGRESS ?
4918                               adapter->params.sge.eq_qpp :
4919                               adapter->params.sge.iq_qpp);
4920         qpp_mask = (1 << qpp_shift) - 1;
4921
4922         /*
4923          * Calculate the basics of the BAR2 SGE Queue register area:
4924          *  o The BAR2 page the Queue registers will be in.
4925          *  o The BAR2 Queue ID.
4926          *  o The BAR2 Queue ID Offset into the BAR2 page.
4927          */
4928         bar2_page_offset = ((qid >> qpp_shift) << page_shift);
4929         bar2_qid = qid & qpp_mask;
4930         bar2_qid_offset = bar2_qid * SGE_UDB_SIZE;
4931
4932         /*
4933          * If the BAR2 Queue ID Offset is less than the Page Size, then the
4934          * hardware will infer the Absolute Queue ID simply from the writes to
4935          * the BAR2 Queue ID Offset within the BAR2 Page (and we need to use a
4936          * BAR2 Queue ID of 0 for those writes).  Otherwise, we'll simply
4937          * write to the first BAR2 SGE Queue Area within the BAR2 Page with
4938          * the BAR2 Queue ID and the hardware will infer the Absolute Queue ID
4939          * from the BAR2 Page and BAR2 Queue ID.
4940          *
4941          * One important censequence of this is that some BAR2 SGE registers
4942          * have a "Queue ID" field and we can write the BAR2 SGE Queue ID
4943          * there.  But other registers synthesize the SGE Queue ID purely
4944          * from the writes to the registers -- the Write Combined Doorbell
4945          * Buffer is a good example.  These BAR2 SGE Registers are only
4946          * available for those BAR2 SGE Register areas where the SGE Absolute
4947          * Queue ID can be inferred from simple writes.
4948          */
4949         bar2_qoffset = bar2_page_offset;
4950         bar2_qinferred = (bar2_qid_offset < page_size);
4951         if (bar2_qinferred) {
4952                 bar2_qoffset += bar2_qid_offset;
4953                 bar2_qid = 0;
4954         }
4955
4956         *pbar2_qoffset = bar2_qoffset;
4957         *pbar2_qid = bar2_qid;
4958         return 0;
4959 }
4960
4961 /**
4962  * t4_init_sge_params - initialize adap->params.sge
4963  * @adapter: the adapter
4964  *
4965  * Initialize various fields of the adapter's SGE Parameters structure.
4966  */
4967 int t4_init_sge_params(struct adapter *adapter)
4968 {
4969         struct sge_params *sge_params = &adapter->params.sge;
4970         u32 hps, qpp;
4971         unsigned int s_hps, s_qpp;
4972
4973         /*
4974          * Extract the SGE Page Size for our PF.
4975          */
4976         hps = t4_read_reg(adapter, A_SGE_HOST_PAGE_SIZE);
4977         s_hps = (S_HOSTPAGESIZEPF0 + (S_HOSTPAGESIZEPF1 - S_HOSTPAGESIZEPF0) *
4978                  adapter->pf);
4979         sge_params->hps = ((hps >> s_hps) & M_HOSTPAGESIZEPF0);
4980
4981         /*
4982          * Extract the SGE Egress and Ingess Queues Per Page for our PF.
4983          */
4984         s_qpp = (S_QUEUESPERPAGEPF0 +
4985                  (S_QUEUESPERPAGEPF1 - S_QUEUESPERPAGEPF0) * adapter->pf);
4986         qpp = t4_read_reg(adapter, A_SGE_EGRESS_QUEUES_PER_PAGE_PF);
4987         sge_params->eq_qpp = ((qpp >> s_qpp) & M_QUEUESPERPAGEPF0);
4988         qpp = t4_read_reg(adapter, A_SGE_INGRESS_QUEUES_PER_PAGE_PF);
4989         sge_params->iq_qpp = ((qpp >> s_qpp) & M_QUEUESPERPAGEPF0);
4990
4991         return 0;
4992 }
4993
4994 /**
4995  * t4_init_tp_params - initialize adap->params.tp
4996  * @adap: the adapter
4997  *
4998  * Initialize various fields of the adapter's TP Parameters structure.
4999  */
5000 int t4_init_tp_params(struct adapter *adap)
5001 {
5002         int chan;
5003         u32 v;
5004
5005         v = t4_read_reg(adap, A_TP_TIMER_RESOLUTION);
5006         adap->params.tp.tre = G_TIMERRESOLUTION(v);
5007         adap->params.tp.dack_re = G_DELAYEDACKRESOLUTION(v);
5008
5009         /* MODQ_REQ_MAP defaults to setting queues 0-3 to chan 0-3 */
5010         for (chan = 0; chan < NCHAN; chan++)
5011                 adap->params.tp.tx_modq[chan] = chan;
5012
5013         /*
5014          * Cache the adapter's Compressed Filter Mode and global Incress
5015          * Configuration.
5016          */
5017         t4_read_indirect(adap, A_TP_PIO_ADDR, A_TP_PIO_DATA,
5018                          &adap->params.tp.vlan_pri_map, 1, A_TP_VLAN_PRI_MAP);
5019         t4_read_indirect(adap, A_TP_PIO_ADDR, A_TP_PIO_DATA,
5020                          &adap->params.tp.ingress_config, 1,
5021                          A_TP_INGRESS_CONFIG);
5022
5023         /* For T6, cache the adapter's compressed error vector
5024          * and passing outer header info for encapsulated packets.
5025          */
5026         if (CHELSIO_CHIP_VERSION(adap->params.chip) > CHELSIO_T5) {
5027                 v = t4_read_reg(adap, A_TP_OUT_CONFIG);
5028                 adap->params.tp.rx_pkt_encap = (v & F_CRXPKTENC) ? 1 : 0;
5029         }
5030
5031         /*
5032          * Now that we have TP_VLAN_PRI_MAP cached, we can calculate the field
5033          * shift positions of several elements of the Compressed Filter Tuple
5034          * for this adapter which we need frequently ...
5035          */
5036         adap->params.tp.vlan_shift = t4_filter_field_shift(adap, F_VLAN);
5037         adap->params.tp.vnic_shift = t4_filter_field_shift(adap, F_VNIC_ID);
5038         adap->params.tp.port_shift = t4_filter_field_shift(adap, F_PORT);
5039         adap->params.tp.protocol_shift = t4_filter_field_shift(adap,
5040                                                                F_PROTOCOL);
5041
5042         /*
5043          * If TP_INGRESS_CONFIG.VNID == 0, then TP_VLAN_PRI_MAP.VNIC_ID
5044          * represents the presense of an Outer VLAN instead of a VNIC ID.
5045          */
5046         if ((adap->params.tp.ingress_config & F_VNIC) == 0)
5047                 adap->params.tp.vnic_shift = -1;
5048
5049         return 0;
5050 }
5051
5052 /**
5053  * t4_filter_field_shift - calculate filter field shift
5054  * @adap: the adapter
5055  * @filter_sel: the desired field (from TP_VLAN_PRI_MAP bits)
5056  *
5057  * Return the shift position of a filter field within the Compressed
5058  * Filter Tuple.  The filter field is specified via its selection bit
5059  * within TP_VLAN_PRI_MAL (filter mode).  E.g. F_VLAN.
5060  */
5061 int t4_filter_field_shift(const struct adapter *adap, unsigned int filter_sel)
5062 {
5063         unsigned int filter_mode = adap->params.tp.vlan_pri_map;
5064         unsigned int sel;
5065         int field_shift;
5066
5067         if ((filter_mode & filter_sel) == 0)
5068                 return -1;
5069
5070         for (sel = 1, field_shift = 0; sel < filter_sel; sel <<= 1) {
5071                 switch (filter_mode & sel) {
5072                 case F_FCOE:
5073                         field_shift += W_FT_FCOE;
5074                         break;
5075                 case F_PORT:
5076                         field_shift += W_FT_PORT;
5077                         break;
5078                 case F_VNIC_ID:
5079                         field_shift += W_FT_VNIC_ID;
5080                         break;
5081                 case F_VLAN:
5082                         field_shift += W_FT_VLAN;
5083                         break;
5084                 case F_TOS:
5085                         field_shift += W_FT_TOS;
5086                         break;
5087                 case F_PROTOCOL:
5088                         field_shift += W_FT_PROTOCOL;
5089                         break;
5090                 case F_ETHERTYPE:
5091                         field_shift += W_FT_ETHERTYPE;
5092                         break;
5093                 case F_MACMATCH:
5094                         field_shift += W_FT_MACMATCH;
5095                         break;
5096                 case F_MPSHITTYPE:
5097                         field_shift += W_FT_MPSHITTYPE;
5098                         break;
5099                 case F_FRAGMENTATION:
5100                         field_shift += W_FT_FRAGMENTATION;
5101                         break;
5102                 }
5103         }
5104         return field_shift;
5105 }
5106
5107 int t4_init_rss_mode(struct adapter *adap, int mbox)
5108 {
5109         int i, ret;
5110         struct fw_rss_vi_config_cmd rvc;
5111
5112         memset(&rvc, 0, sizeof(rvc));
5113
5114         for_each_port(adap, i) {
5115                 struct port_info *p = adap2pinfo(adap, i);
5116
5117                 rvc.op_to_viid = htonl(V_FW_CMD_OP(FW_RSS_VI_CONFIG_CMD) |
5118                                        F_FW_CMD_REQUEST | F_FW_CMD_READ |
5119                                        V_FW_RSS_VI_CONFIG_CMD_VIID(p->viid));
5120                 rvc.retval_len16 = htonl(FW_LEN16(rvc));
5121                 ret = t4_wr_mbox(adap, mbox, &rvc, sizeof(rvc), &rvc);
5122                 if (ret)
5123                         return ret;
5124                 p->rss_mode = ntohl(rvc.u.basicvirtual.defaultq_to_udpen);
5125         }
5126         return 0;
5127 }
5128
5129 int t4_port_init(struct adapter *adap, int mbox, int pf, int vf)
5130 {
5131         unsigned int fw_caps = adap->params.fw_caps_support;
5132         fw_port_cap32_t pcaps, acaps;
5133         enum fw_port_type port_type;
5134         struct fw_port_cmd cmd;
5135         int ret, i, j = 0;
5136         int mdio_addr;
5137         u32 action;
5138         u8 addr[6];
5139
5140         memset(&cmd, 0, sizeof(cmd));
5141
5142         for_each_port(adap, i) {
5143                 struct port_info *pi = adap2pinfo(adap, i);
5144                 unsigned int rss_size = 0;
5145
5146                 while ((adap->params.portvec & (1 << j)) == 0)
5147                         j++;
5148
5149                 /* If we haven't yet determined whether we're talking to
5150                  * Firmware which knows the new 32-bit Port Capabilities, it's
5151                  * time to find out now.  This will also tell new Firmware to
5152                  * send us Port Status Updates using the new 32-bit Port
5153                  * Capabilities version of the Port Information message.
5154                  */
5155                 if (fw_caps == FW_CAPS_UNKNOWN) {
5156                         u32 param, val, caps;
5157
5158                         caps = FW_PARAMS_PARAM_PFVF_PORT_CAPS32;
5159                         param = (V_FW_PARAMS_MNEM(FW_PARAMS_MNEM_PFVF) |
5160                                  V_FW_PARAMS_PARAM_X(caps));
5161                         val = 1;
5162                         ret = t4_set_params(adap, mbox, pf, vf, 1, &param,
5163                                             &val);
5164                         fw_caps = ret == 0 ? FW_CAPS32 : FW_CAPS16;
5165                         adap->params.fw_caps_support = fw_caps;
5166                 }
5167
5168                 memset(&cmd, 0, sizeof(cmd));
5169                 cmd.op_to_portid = cpu_to_be32(V_FW_CMD_OP(FW_PORT_CMD) |
5170                                                F_FW_CMD_REQUEST |
5171                                                F_FW_CMD_READ |
5172                                                V_FW_PORT_CMD_PORTID(j));
5173                 action = fw_caps == FW_CAPS16 ? FW_PORT_ACTION_GET_PORT_INFO :
5174                                                 FW_PORT_ACTION_GET_PORT_INFO32;
5175                 cmd.action_to_len16 = cpu_to_be32(V_FW_PORT_CMD_ACTION(action) |
5176                                                   FW_LEN16(cmd));
5177                 ret = t4_wr_mbox(pi->adapter, mbox, &cmd, sizeof(cmd), &cmd);
5178                 if (ret)
5179                         return ret;
5180
5181                 /* Extract the various fields from the Port Information message.
5182                  */
5183                 if (fw_caps == FW_CAPS16) {
5184                         u32 lstatus =
5185                                 be32_to_cpu(cmd.u.info.lstatus_to_modtype);
5186
5187                         port_type = G_FW_PORT_CMD_PTYPE(lstatus);
5188                         mdio_addr = (lstatus & F_FW_PORT_CMD_MDIOCAP) ?
5189                                     (int)G_FW_PORT_CMD_MDIOADDR(lstatus) : -1;
5190                         pcaps = be16_to_cpu(cmd.u.info.pcap);
5191                         acaps = be16_to_cpu(cmd.u.info.acap);
5192                         pcaps = fwcaps16_to_caps32(pcaps);
5193                         acaps = fwcaps16_to_caps32(acaps);
5194                 } else {
5195                         u32 lstatus32 =
5196                                 be32_to_cpu(cmd.u.info32.lstatus32_to_cbllen32);
5197
5198                         port_type = G_FW_PORT_CMD_PORTTYPE32(lstatus32);
5199                         mdio_addr = (lstatus32 & F_FW_PORT_CMD_MDIOCAP32) ?
5200                                     (int)G_FW_PORT_CMD_MDIOADDR32(lstatus32) :
5201                                     -1;
5202                         pcaps = be32_to_cpu(cmd.u.info32.pcaps32);
5203                         acaps = be32_to_cpu(cmd.u.info32.acaps32);
5204                 }
5205
5206                 ret = t4_alloc_vi(adap, mbox, j, pf, vf, 1, addr, &rss_size);
5207                 if (ret < 0)
5208                         return ret;
5209
5210                 pi->viid = ret;
5211                 pi->tx_chan = j;
5212                 pi->rss_size = rss_size;
5213                 t4_os_set_hw_addr(adap, i, addr);
5214
5215                 pi->port_type = port_type;
5216                 pi->mdio_addr = mdio_addr;
5217                 pi->mod_type = FW_PORT_MOD_TYPE_NA;
5218
5219                 init_link_config(&pi->link_cfg, pcaps, acaps);
5220                 j++;
5221         }
5222         return 0;
5223 }