blob: b08459d268b454659defc733c6abe223322fca7b [file] [log] [blame]
Sathya Perla6b7c5b92009-03-11 23:32:03 -07001/*
Vasundhara Volamc7bb15a2013-03-06 20:05:05 +00002 * Copyright (C) 2005 - 2013 Emulex
Sathya Perla6b7c5b92009-03-11 23:32:03 -07003 * All rights reserved.
4 *
5 * This program is free software; you can redistribute it and/or
6 * modify it under the terms of the GNU General Public License version 2
7 * as published by the Free Software Foundation. The full GNU General
8 * Public License is included in this distribution in the file called COPYING.
9 *
10 * Contact Information:
Ajit Khaparded2145cd2011-03-16 08:20:46 +000011 * linux-drivers@emulex.com
Sathya Perla6b7c5b92009-03-11 23:32:03 -070012 *
Ajit Khaparded2145cd2011-03-16 08:20:46 +000013 * Emulex
14 * 3333 Susan Street
15 * Costa Mesa, CA 92626
Sathya Perla6b7c5b92009-03-11 23:32:03 -070016 */
17
Paul Gortmaker70c71602011-05-22 16:47:17 -040018#include <linux/prefetch.h>
Paul Gortmaker9d9779e2011-07-03 15:21:01 -040019#include <linux/module.h>
Sathya Perla6b7c5b92009-03-11 23:32:03 -070020#include "be.h"
Sathya Perla8788fdc2009-07-27 22:52:03 +000021#include "be_cmds.h"
Stephen Hemminger65f71b82009-03-27 00:25:24 -070022#include <asm/div64.h>
Sathya Perlad6b6d982012-09-05 01:56:48 +000023#include <linux/aer.h>
Sathya Perla6b7c5b92009-03-11 23:32:03 -070024
25MODULE_VERSION(DRV_VER);
26MODULE_DEVICE_TABLE(pci, be_dev_ids);
27MODULE_DESCRIPTION(DRV_DESC " " DRV_VER);
Sarveshwar Bandi00d3d512013-01-28 04:17:01 +000028MODULE_AUTHOR("Emulex Corporation");
Sathya Perla6b7c5b92009-03-11 23:32:03 -070029MODULE_LICENSE("GPL");
30
Sarveshwar Bandiba343c72010-03-31 02:56:12 +000031static unsigned int num_vfs;
Sarveshwar Bandiba343c72010-03-31 02:56:12 +000032module_param(num_vfs, uint, S_IRUGO);
Sarveshwar Bandiba343c72010-03-31 02:56:12 +000033MODULE_PARM_DESC(num_vfs, "Number of PCI VFs to initialize");
Sathya Perla6b7c5b92009-03-11 23:32:03 -070034
Sathya Perla11ac75e2011-12-13 00:58:50 +000035static ushort rx_frag_size = 2048;
36module_param(rx_frag_size, ushort, S_IRUGO);
37MODULE_PARM_DESC(rx_frag_size, "Size of a fragment that holds rcvd data.");
38
Sathya Perla6b7c5b92009-03-11 23:32:03 -070039static DEFINE_PCI_DEVICE_TABLE(be_dev_ids) = {
Ajit Khapardec4ca2372009-05-18 15:38:55 -070040 { PCI_DEVICE(BE_VENDOR_ID, BE_DEVICE_ID1) },
Ajit Khaparde59fd5d82009-10-29 01:11:06 -070041 { PCI_DEVICE(BE_VENDOR_ID, BE_DEVICE_ID2) },
Ajit Khapardec4ca2372009-05-18 15:38:55 -070042 { PCI_DEVICE(BE_VENDOR_ID, OC_DEVICE_ID1) },
43 { PCI_DEVICE(BE_VENDOR_ID, OC_DEVICE_ID2) },
Sathya Perlafe6d2a32010-11-21 23:25:50 +000044 { PCI_DEVICE(EMULEX_VENDOR_ID, OC_DEVICE_ID3)},
Mammatha Edhala12f4d0a2011-05-18 03:26:22 +000045 { PCI_DEVICE(EMULEX_VENDOR_ID, OC_DEVICE_ID4)},
Ajit Khapardeecedb6a2011-12-15 06:31:38 +000046 { PCI_DEVICE(EMULEX_VENDOR_ID, OC_DEVICE_ID5)},
Padmanabh Ratnakar76b73532012-10-20 06:04:40 +000047 { PCI_DEVICE(EMULEX_VENDOR_ID, OC_DEVICE_ID6)},
Sathya Perla6b7c5b92009-03-11 23:32:03 -070048 { 0 }
49};
50MODULE_DEVICE_TABLE(pci, be_dev_ids);
Ajit Khaparde7c185272010-07-29 06:16:33 +000051/* UE Status Low CSR */
Joe Perches42c8b112011-07-09 02:56:56 -070052static const char * const ue_status_low_desc[] = {
Ajit Khaparde7c185272010-07-29 06:16:33 +000053 "CEV",
54 "CTX",
55 "DBUF",
56 "ERX",
57 "Host",
58 "MPU",
59 "NDMA",
60 "PTC ",
61 "RDMA ",
62 "RXF ",
63 "RXIPS ",
64 "RXULP0 ",
65 "RXULP1 ",
66 "RXULP2 ",
67 "TIM ",
68 "TPOST ",
69 "TPRE ",
70 "TXIPS ",
71 "TXULP0 ",
72 "TXULP1 ",
73 "UC ",
74 "WDMA ",
75 "TXULP2 ",
76 "HOST1 ",
77 "P0_OB_LINK ",
78 "P1_OB_LINK ",
79 "HOST_GPIO ",
80 "MBOX ",
81 "AXGMAC0",
82 "AXGMAC1",
83 "JTAG",
84 "MPU_INTPEND"
85};
86/* UE Status High CSR */
Joe Perches42c8b112011-07-09 02:56:56 -070087static const char * const ue_status_hi_desc[] = {
Ajit Khaparde7c185272010-07-29 06:16:33 +000088 "LPCMEMHOST",
89 "MGMT_MAC",
90 "PCS0ONLINE",
91 "MPU_IRAM",
92 "PCS1ONLINE",
93 "PCTL0",
94 "PCTL1",
95 "PMEM",
96 "RR",
97 "TXPB",
98 "RXPP",
99 "XAUI",
100 "TXP",
101 "ARM",
102 "IPC",
103 "HOST2",
104 "HOST3",
105 "HOST4",
106 "HOST5",
107 "HOST6",
108 "HOST7",
109 "HOST8",
110 "HOST9",
Joe Perches42c8b112011-07-09 02:56:56 -0700111 "NETC",
Ajit Khaparde7c185272010-07-29 06:16:33 +0000112 "Unknown",
113 "Unknown",
114 "Unknown",
115 "Unknown",
116 "Unknown",
117 "Unknown",
118 "Unknown",
119 "Unknown"
120};
Sathya Perla6b7c5b92009-03-11 23:32:03 -0700121
Sathya Perla752961a2011-10-24 02:45:03 +0000122/* Is BE in a multi-channel mode */
123static inline bool be_is_mc(struct be_adapter *adapter) {
124 return (adapter->function_mode & FLEX10_MODE ||
125 adapter->function_mode & VNIC_MODE ||
126 adapter->function_mode & UMC_ENABLED);
127}
128
Sathya Perla6b7c5b92009-03-11 23:32:03 -0700129static void be_queue_free(struct be_adapter *adapter, struct be_queue_info *q)
130{
131 struct be_dma_mem *mem = &q->dma_mem;
Sathya Perla1cfafab2012-02-23 18:50:15 +0000132 if (mem->va) {
Ivan Vecera2b7bceb2011-02-02 08:05:12 +0000133 dma_free_coherent(&adapter->pdev->dev, mem->size, mem->va,
134 mem->dma);
Sathya Perla1cfafab2012-02-23 18:50:15 +0000135 mem->va = NULL;
136 }
Sathya Perla6b7c5b92009-03-11 23:32:03 -0700137}
138
139static int be_queue_alloc(struct be_adapter *adapter, struct be_queue_info *q,
140 u16 len, u16 entry_size)
141{
142 struct be_dma_mem *mem = &q->dma_mem;
143
144 memset(q, 0, sizeof(*q));
145 q->len = len;
146 q->entry_size = entry_size;
147 mem->size = len * entry_size;
Ivan Vecera2b7bceb2011-02-02 08:05:12 +0000148 mem->va = dma_alloc_coherent(&adapter->pdev->dev, mem->size, &mem->dma,
Joe Perches1f9061d22013-03-15 07:23:58 +0000149 GFP_KERNEL | __GFP_ZERO);
Sathya Perla6b7c5b92009-03-11 23:32:03 -0700150 if (!mem->va)
Sathya Perla10ef9ab2012-02-09 18:05:27 +0000151 return -ENOMEM;
Sathya Perla6b7c5b92009-03-11 23:32:03 -0700152 return 0;
153}
154
Somnath Kotur68c45a22013-03-14 02:42:07 +0000155static void be_reg_intr_set(struct be_adapter *adapter, bool enable)
Sathya Perla6b7c5b92009-03-11 23:32:03 -0700156{
Sathya Perladb3ea782011-08-22 19:41:52 +0000157 u32 reg, enabled;
Sathya Perla5f0b8492009-07-27 22:52:56 +0000158
Sathya Perladb3ea782011-08-22 19:41:52 +0000159 pci_read_config_dword(adapter->pdev, PCICFG_MEMBAR_CTRL_INT_CTRL_OFFSET,
160 &reg);
161 enabled = reg & MEMBAR_CTRL_INT_CTRL_HOSTINTR_MASK;
162
Sathya Perla5f0b8492009-07-27 22:52:56 +0000163 if (!enabled && enable)
Sathya Perla6b7c5b92009-03-11 23:32:03 -0700164 reg |= MEMBAR_CTRL_INT_CTRL_HOSTINTR_MASK;
Sathya Perla5f0b8492009-07-27 22:52:56 +0000165 else if (enabled && !enable)
Sathya Perla6b7c5b92009-03-11 23:32:03 -0700166 reg &= ~MEMBAR_CTRL_INT_CTRL_HOSTINTR_MASK;
Sathya Perla5f0b8492009-07-27 22:52:56 +0000167 else
Sathya Perla6b7c5b92009-03-11 23:32:03 -0700168 return;
Sathya Perla5f0b8492009-07-27 22:52:56 +0000169
Sathya Perladb3ea782011-08-22 19:41:52 +0000170 pci_write_config_dword(adapter->pdev,
171 PCICFG_MEMBAR_CTRL_INT_CTRL_OFFSET, reg);
Sathya Perla6b7c5b92009-03-11 23:32:03 -0700172}
173
Somnath Kotur68c45a22013-03-14 02:42:07 +0000174static void be_intr_set(struct be_adapter *adapter, bool enable)
175{
176 int status = 0;
177
178 /* On lancer interrupts can't be controlled via this register */
179 if (lancer_chip(adapter))
180 return;
181
182 if (adapter->eeh_error)
183 return;
184
185 status = be_cmd_intr_set(adapter, enable);
186 if (status)
187 be_reg_intr_set(adapter, enable);
188}
189
Sathya Perla8788fdc2009-07-27 22:52:03 +0000190static void be_rxq_notify(struct be_adapter *adapter, u16 qid, u16 posted)
Sathya Perla6b7c5b92009-03-11 23:32:03 -0700191{
192 u32 val = 0;
193 val |= qid & DB_RQ_RING_ID_MASK;
194 val |= posted << DB_RQ_NUM_POSTED_SHIFT;
Sathya Perlaf3eb62d2010-06-29 00:11:17 +0000195
196 wmb();
Sathya Perla8788fdc2009-07-27 22:52:03 +0000197 iowrite32(val, adapter->db + DB_RQ_OFFSET);
Sathya Perla6b7c5b92009-03-11 23:32:03 -0700198}
199
Vasundhara Volam94d73aa2013-04-21 23:28:14 +0000200static void be_txq_notify(struct be_adapter *adapter, struct be_tx_obj *txo,
201 u16 posted)
Sathya Perla6b7c5b92009-03-11 23:32:03 -0700202{
203 u32 val = 0;
Vasundhara Volam94d73aa2013-04-21 23:28:14 +0000204 val |= txo->q.id & DB_TXULP_RING_ID_MASK;
Sathya Perla6b7c5b92009-03-11 23:32:03 -0700205 val |= (posted & DB_TXULP_NUM_POSTED_MASK) << DB_TXULP_NUM_POSTED_SHIFT;
Sathya Perlaf3eb62d2010-06-29 00:11:17 +0000206
207 wmb();
Vasundhara Volam94d73aa2013-04-21 23:28:14 +0000208 iowrite32(val, adapter->db + txo->db_offset);
Sathya Perla6b7c5b92009-03-11 23:32:03 -0700209}
210
Sathya Perla8788fdc2009-07-27 22:52:03 +0000211static void be_eq_notify(struct be_adapter *adapter, u16 qid,
Sathya Perla6b7c5b92009-03-11 23:32:03 -0700212 bool arm, bool clear_int, u16 num_popped)
213{
214 u32 val = 0;
215 val |= qid & DB_EQ_RING_ID_MASK;
Sathya Perlafe6d2a32010-11-21 23:25:50 +0000216 val |= ((qid & DB_EQ_RING_ID_EXT_MASK) <<
217 DB_EQ_RING_ID_EXT_MASK_SHIFT);
Sathya Perlacf588472010-02-14 21:22:01 +0000218
Padmanabh Ratnakarf67ef7b2012-07-12 03:57:09 +0000219 if (adapter->eeh_error)
Sathya Perlacf588472010-02-14 21:22:01 +0000220 return;
221
Sathya Perla6b7c5b92009-03-11 23:32:03 -0700222 if (arm)
223 val |= 1 << DB_EQ_REARM_SHIFT;
224 if (clear_int)
225 val |= 1 << DB_EQ_CLR_SHIFT;
226 val |= 1 << DB_EQ_EVNT_SHIFT;
227 val |= num_popped << DB_EQ_NUM_POPPED_SHIFT;
Sathya Perla8788fdc2009-07-27 22:52:03 +0000228 iowrite32(val, adapter->db + DB_EQ_OFFSET);
Sathya Perla6b7c5b92009-03-11 23:32:03 -0700229}
230
Sathya Perla8788fdc2009-07-27 22:52:03 +0000231void be_cq_notify(struct be_adapter *adapter, u16 qid, bool arm, u16 num_popped)
Sathya Perla6b7c5b92009-03-11 23:32:03 -0700232{
233 u32 val = 0;
234 val |= qid & DB_CQ_RING_ID_MASK;
Sathya Perlafe6d2a32010-11-21 23:25:50 +0000235 val |= ((qid & DB_CQ_RING_ID_EXT_MASK) <<
236 DB_CQ_RING_ID_EXT_MASK_SHIFT);
Sathya Perlacf588472010-02-14 21:22:01 +0000237
Padmanabh Ratnakarf67ef7b2012-07-12 03:57:09 +0000238 if (adapter->eeh_error)
Sathya Perlacf588472010-02-14 21:22:01 +0000239 return;
240
Sathya Perla6b7c5b92009-03-11 23:32:03 -0700241 if (arm)
242 val |= 1 << DB_CQ_REARM_SHIFT;
243 val |= num_popped << DB_CQ_NUM_POPPED_SHIFT;
Sathya Perla8788fdc2009-07-27 22:52:03 +0000244 iowrite32(val, adapter->db + DB_CQ_OFFSET);
Sathya Perla6b7c5b92009-03-11 23:32:03 -0700245}
246
Sathya Perla6b7c5b92009-03-11 23:32:03 -0700247static int be_mac_addr_set(struct net_device *netdev, void *p)
248{
249 struct be_adapter *adapter = netdev_priv(netdev);
Sathya Perla5a712c12013-07-23 15:24:59 +0530250 struct device *dev = &adapter->pdev->dev;
Sathya Perla6b7c5b92009-03-11 23:32:03 -0700251 struct sockaddr *addr = p;
Sathya Perla5a712c12013-07-23 15:24:59 +0530252 int status;
253 u8 mac[ETH_ALEN];
254 u32 old_pmac_id = adapter->pmac_id[0], curr_pmac_id = 0;
Sathya Perla6b7c5b92009-03-11 23:32:03 -0700255
Ajit Khapardeca9e4982009-11-29 17:56:26 +0000256 if (!is_valid_ether_addr(addr->sa_data))
257 return -EADDRNOTAVAIL;
258
Sathya Perla5a712c12013-07-23 15:24:59 +0530259 /* The PMAC_ADD cmd may fail if the VF doesn't have FILTMGMT
260 * privilege or if PF did not provision the new MAC address.
261 * On BE3, this cmd will always fail if the VF doesn't have the
262 * FILTMGMT privilege. This failure is OK, only if the PF programmed
263 * the MAC for the VF.
Padmanabh Ratnakar704e4c82012-10-20 06:02:13 +0000264 */
Sathya Perla5a712c12013-07-23 15:24:59 +0530265 status = be_cmd_pmac_add(adapter, (u8 *)addr->sa_data,
266 adapter->if_handle, &adapter->pmac_id[0], 0);
267 if (!status) {
268 curr_pmac_id = adapter->pmac_id[0];
269
270 /* Delete the old programmed MAC. This call may fail if the
271 * old MAC was already deleted by the PF driver.
272 */
273 if (adapter->pmac_id[0] != old_pmac_id)
274 be_cmd_pmac_del(adapter, adapter->if_handle,
275 old_pmac_id, 0);
Padmanabh Ratnakar704e4c82012-10-20 06:02:13 +0000276 }
277
Sathya Perla5a712c12013-07-23 15:24:59 +0530278 /* Decide if the new MAC is successfully activated only after
279 * querying the FW
Padmanabh Ratnakar704e4c82012-10-20 06:02:13 +0000280 */
Sathya Perla5a712c12013-07-23 15:24:59 +0530281 status = be_cmd_get_active_mac(adapter, curr_pmac_id, mac);
Sathya Perlaa65027e2009-08-17 00:58:04 +0000282 if (status)
Somnath Koture3a7ae22011-10-27 07:14:05 +0000283 goto err;
Sathya Perla6b7c5b92009-03-11 23:32:03 -0700284
Sathya Perla5a712c12013-07-23 15:24:59 +0530285 /* The MAC change did not happen, either due to lack of privilege
286 * or PF didn't pre-provision.
287 */
288 if (memcmp(addr->sa_data, mac, ETH_ALEN)) {
289 status = -EPERM;
290 goto err;
291 }
292
Somnath Koture3a7ae22011-10-27 07:14:05 +0000293 memcpy(netdev->dev_addr, addr->sa_data, netdev->addr_len);
Sathya Perla5a712c12013-07-23 15:24:59 +0530294 dev_info(dev, "MAC address changed to %pM\n", mac);
Somnath Koture3a7ae22011-10-27 07:14:05 +0000295 return 0;
296err:
Sathya Perla5a712c12013-07-23 15:24:59 +0530297 dev_warn(dev, "MAC address change to %pM failed\n", addr->sa_data);
Sathya Perla6b7c5b92009-03-11 23:32:03 -0700298 return status;
299}
300
Sathya Perlaca34fe32012-11-06 17:48:56 +0000301/* BE2 supports only v0 cmd */
302static void *hw_stats_from_cmd(struct be_adapter *adapter)
303{
304 if (BE2_chip(adapter)) {
305 struct be_cmd_resp_get_stats_v0 *cmd = adapter->stats_cmd.va;
306
307 return &cmd->hw_stats;
308 } else {
309 struct be_cmd_resp_get_stats_v1 *cmd = adapter->stats_cmd.va;
310
311 return &cmd->hw_stats;
312 }
313}
314
315/* BE2 supports only v0 cmd */
316static void *be_erx_stats_from_cmd(struct be_adapter *adapter)
317{
318 if (BE2_chip(adapter)) {
319 struct be_hw_stats_v0 *hw_stats = hw_stats_from_cmd(adapter);
320
321 return &hw_stats->erx;
322 } else {
323 struct be_hw_stats_v1 *hw_stats = hw_stats_from_cmd(adapter);
324
325 return &hw_stats->erx;
326 }
327}
328
329static void populate_be_v0_stats(struct be_adapter *adapter)
Ajit Khaparde89a88ab2011-05-16 07:36:18 +0000330{
Sathya Perlaac124ff2011-07-25 19:10:14 +0000331 struct be_hw_stats_v0 *hw_stats = hw_stats_from_cmd(adapter);
332 struct be_pmem_stats *pmem_sts = &hw_stats->pmem;
333 struct be_rxf_stats_v0 *rxf_stats = &hw_stats->rxf;
Ajit Khaparde89a88ab2011-05-16 07:36:18 +0000334 struct be_port_rxf_stats_v0 *port_stats =
Sathya Perlaac124ff2011-07-25 19:10:14 +0000335 &rxf_stats->port[adapter->port_num];
336 struct be_drv_stats *drvs = &adapter->drv_stats;
Ajit Khaparde89a88ab2011-05-16 07:36:18 +0000337
Sathya Perlaac124ff2011-07-25 19:10:14 +0000338 be_dws_le_to_cpu(hw_stats, sizeof(*hw_stats));
Ajit Khaparde89a88ab2011-05-16 07:36:18 +0000339 drvs->rx_pause_frames = port_stats->rx_pause_frames;
340 drvs->rx_crc_errors = port_stats->rx_crc_errors;
341 drvs->rx_control_frames = port_stats->rx_control_frames;
342 drvs->rx_in_range_errors = port_stats->rx_in_range_errors;
343 drvs->rx_frame_too_long = port_stats->rx_frame_too_long;
344 drvs->rx_dropped_runt = port_stats->rx_dropped_runt;
345 drvs->rx_ip_checksum_errs = port_stats->rx_ip_checksum_errs;
346 drvs->rx_tcp_checksum_errs = port_stats->rx_tcp_checksum_errs;
347 drvs->rx_udp_checksum_errs = port_stats->rx_udp_checksum_errs;
348 drvs->rxpp_fifo_overflow_drop = port_stats->rx_fifo_overflow;
349 drvs->rx_dropped_tcp_length = port_stats->rx_dropped_tcp_length;
350 drvs->rx_dropped_too_small = port_stats->rx_dropped_too_small;
351 drvs->rx_dropped_too_short = port_stats->rx_dropped_too_short;
352 drvs->rx_out_range_errors = port_stats->rx_out_range_errors;
Sathya Perlaac124ff2011-07-25 19:10:14 +0000353 drvs->rx_input_fifo_overflow_drop = port_stats->rx_input_fifo_overflow;
Ajit Khaparde89a88ab2011-05-16 07:36:18 +0000354 drvs->rx_dropped_header_too_small =
355 port_stats->rx_dropped_header_too_small;
Suresh Reddy18fb06a2013-04-25 23:03:21 +0000356 drvs->rx_address_filtered =
357 port_stats->rx_address_filtered +
358 port_stats->rx_vlan_filtered;
Ajit Khaparde89a88ab2011-05-16 07:36:18 +0000359 drvs->rx_alignment_symbol_errors =
360 port_stats->rx_alignment_symbol_errors;
361
362 drvs->tx_pauseframes = port_stats->tx_pauseframes;
363 drvs->tx_controlframes = port_stats->tx_controlframes;
364
365 if (adapter->port_num)
Sathya Perlaac124ff2011-07-25 19:10:14 +0000366 drvs->jabber_events = rxf_stats->port1_jabber_events;
Ajit Khaparde89a88ab2011-05-16 07:36:18 +0000367 else
Sathya Perlaac124ff2011-07-25 19:10:14 +0000368 drvs->jabber_events = rxf_stats->port0_jabber_events;
Ajit Khaparde89a88ab2011-05-16 07:36:18 +0000369 drvs->rx_drops_no_pbuf = rxf_stats->rx_drops_no_pbuf;
Ajit Khaparde89a88ab2011-05-16 07:36:18 +0000370 drvs->rx_drops_no_erx_descr = rxf_stats->rx_drops_no_erx_descr;
Ajit Khaparde89a88ab2011-05-16 07:36:18 +0000371 drvs->forwarded_packets = rxf_stats->forwarded_packets;
372 drvs->rx_drops_mtu = rxf_stats->rx_drops_mtu;
Sathya Perlaac124ff2011-07-25 19:10:14 +0000373 drvs->rx_drops_no_tpre_descr = rxf_stats->rx_drops_no_tpre_descr;
374 drvs->rx_drops_too_many_frags = rxf_stats->rx_drops_too_many_frags;
Ajit Khaparde89a88ab2011-05-16 07:36:18 +0000375 adapter->drv_stats.eth_red_drops = pmem_sts->eth_red_drops;
376}
377
Sathya Perlaca34fe32012-11-06 17:48:56 +0000378static void populate_be_v1_stats(struct be_adapter *adapter)
Ajit Khaparde89a88ab2011-05-16 07:36:18 +0000379{
Sathya Perlaac124ff2011-07-25 19:10:14 +0000380 struct be_hw_stats_v1 *hw_stats = hw_stats_from_cmd(adapter);
381 struct be_pmem_stats *pmem_sts = &hw_stats->pmem;
382 struct be_rxf_stats_v1 *rxf_stats = &hw_stats->rxf;
Ajit Khaparde89a88ab2011-05-16 07:36:18 +0000383 struct be_port_rxf_stats_v1 *port_stats =
Sathya Perlaac124ff2011-07-25 19:10:14 +0000384 &rxf_stats->port[adapter->port_num];
385 struct be_drv_stats *drvs = &adapter->drv_stats;
Ajit Khaparde89a88ab2011-05-16 07:36:18 +0000386
Sathya Perlaac124ff2011-07-25 19:10:14 +0000387 be_dws_le_to_cpu(hw_stats, sizeof(*hw_stats));
Ajit Khaparde02fe7022011-12-09 13:53:09 +0000388 drvs->pmem_fifo_overflow_drop = port_stats->pmem_fifo_overflow_drop;
389 drvs->rx_priority_pause_frames = port_stats->rx_priority_pause_frames;
Ajit Khaparde89a88ab2011-05-16 07:36:18 +0000390 drvs->rx_pause_frames = port_stats->rx_pause_frames;
391 drvs->rx_crc_errors = port_stats->rx_crc_errors;
392 drvs->rx_control_frames = port_stats->rx_control_frames;
393 drvs->rx_in_range_errors = port_stats->rx_in_range_errors;
394 drvs->rx_frame_too_long = port_stats->rx_frame_too_long;
395 drvs->rx_dropped_runt = port_stats->rx_dropped_runt;
396 drvs->rx_ip_checksum_errs = port_stats->rx_ip_checksum_errs;
397 drvs->rx_tcp_checksum_errs = port_stats->rx_tcp_checksum_errs;
398 drvs->rx_udp_checksum_errs = port_stats->rx_udp_checksum_errs;
399 drvs->rx_dropped_tcp_length = port_stats->rx_dropped_tcp_length;
400 drvs->rx_dropped_too_small = port_stats->rx_dropped_too_small;
401 drvs->rx_dropped_too_short = port_stats->rx_dropped_too_short;
402 drvs->rx_out_range_errors = port_stats->rx_out_range_errors;
403 drvs->rx_dropped_header_too_small =
404 port_stats->rx_dropped_header_too_small;
405 drvs->rx_input_fifo_overflow_drop =
406 port_stats->rx_input_fifo_overflow_drop;
Suresh Reddy18fb06a2013-04-25 23:03:21 +0000407 drvs->rx_address_filtered = port_stats->rx_address_filtered;
Ajit Khaparde89a88ab2011-05-16 07:36:18 +0000408 drvs->rx_alignment_symbol_errors =
409 port_stats->rx_alignment_symbol_errors;
Sathya Perlaac124ff2011-07-25 19:10:14 +0000410 drvs->rxpp_fifo_overflow_drop = port_stats->rxpp_fifo_overflow_drop;
Ajit Khaparde89a88ab2011-05-16 07:36:18 +0000411 drvs->tx_pauseframes = port_stats->tx_pauseframes;
412 drvs->tx_controlframes = port_stats->tx_controlframes;
Ajit Khapardeb5adffc42013-05-01 09:38:00 +0000413 drvs->tx_priority_pauseframes = port_stats->tx_priority_pauseframes;
Ajit Khaparde89a88ab2011-05-16 07:36:18 +0000414 drvs->jabber_events = port_stats->jabber_events;
415 drvs->rx_drops_no_pbuf = rxf_stats->rx_drops_no_pbuf;
Ajit Khaparde89a88ab2011-05-16 07:36:18 +0000416 drvs->rx_drops_no_erx_descr = rxf_stats->rx_drops_no_erx_descr;
Ajit Khaparde89a88ab2011-05-16 07:36:18 +0000417 drvs->forwarded_packets = rxf_stats->forwarded_packets;
418 drvs->rx_drops_mtu = rxf_stats->rx_drops_mtu;
Sathya Perlaac124ff2011-07-25 19:10:14 +0000419 drvs->rx_drops_no_tpre_descr = rxf_stats->rx_drops_no_tpre_descr;
420 drvs->rx_drops_too_many_frags = rxf_stats->rx_drops_too_many_frags;
Ajit Khaparde89a88ab2011-05-16 07:36:18 +0000421 adapter->drv_stats.eth_red_drops = pmem_sts->eth_red_drops;
422}
423
Selvin Xavier005d5692011-05-16 07:36:35 +0000424static void populate_lancer_stats(struct be_adapter *adapter)
425{
Ajit Khaparde89a88ab2011-05-16 07:36:18 +0000426
Selvin Xavier005d5692011-05-16 07:36:35 +0000427 struct be_drv_stats *drvs = &adapter->drv_stats;
Sathya Perlaac124ff2011-07-25 19:10:14 +0000428 struct lancer_pport_stats *pport_stats =
429 pport_stats_from_cmd(adapter);
430
431 be_dws_le_to_cpu(pport_stats, sizeof(*pport_stats));
432 drvs->rx_pause_frames = pport_stats->rx_pause_frames_lo;
433 drvs->rx_crc_errors = pport_stats->rx_crc_errors_lo;
434 drvs->rx_control_frames = pport_stats->rx_control_frames_lo;
Selvin Xavier005d5692011-05-16 07:36:35 +0000435 drvs->rx_in_range_errors = pport_stats->rx_in_range_errors;
Sathya Perlaac124ff2011-07-25 19:10:14 +0000436 drvs->rx_frame_too_long = pport_stats->rx_frames_too_long_lo;
Selvin Xavier005d5692011-05-16 07:36:35 +0000437 drvs->rx_dropped_runt = pport_stats->rx_dropped_runt;
438 drvs->rx_ip_checksum_errs = pport_stats->rx_ip_checksum_errors;
439 drvs->rx_tcp_checksum_errs = pport_stats->rx_tcp_checksum_errors;
440 drvs->rx_udp_checksum_errs = pport_stats->rx_udp_checksum_errors;
441 drvs->rx_dropped_tcp_length =
442 pport_stats->rx_dropped_invalid_tcp_length;
443 drvs->rx_dropped_too_small = pport_stats->rx_dropped_too_small;
444 drvs->rx_dropped_too_short = pport_stats->rx_dropped_too_short;
445 drvs->rx_out_range_errors = pport_stats->rx_out_of_range_errors;
446 drvs->rx_dropped_header_too_small =
447 pport_stats->rx_dropped_header_too_small;
448 drvs->rx_input_fifo_overflow_drop = pport_stats->rx_fifo_overflow;
Suresh Reddy18fb06a2013-04-25 23:03:21 +0000449 drvs->rx_address_filtered =
450 pport_stats->rx_address_filtered +
451 pport_stats->rx_vlan_filtered;
Sathya Perlaac124ff2011-07-25 19:10:14 +0000452 drvs->rx_alignment_symbol_errors = pport_stats->rx_symbol_errors_lo;
Selvin Xavier005d5692011-05-16 07:36:35 +0000453 drvs->rxpp_fifo_overflow_drop = pport_stats->rx_fifo_overflow;
Sathya Perlaac124ff2011-07-25 19:10:14 +0000454 drvs->tx_pauseframes = pport_stats->tx_pause_frames_lo;
455 drvs->tx_controlframes = pport_stats->tx_control_frames_lo;
Selvin Xavier005d5692011-05-16 07:36:35 +0000456 drvs->jabber_events = pport_stats->rx_jabbers;
Sathya Perlaac124ff2011-07-25 19:10:14 +0000457 drvs->forwarded_packets = pport_stats->num_forwards_lo;
458 drvs->rx_drops_mtu = pport_stats->rx_drops_mtu_lo;
Selvin Xavier005d5692011-05-16 07:36:35 +0000459 drvs->rx_drops_too_many_frags =
Sathya Perlaac124ff2011-07-25 19:10:14 +0000460 pport_stats->rx_drops_too_many_frags_lo;
Selvin Xavier005d5692011-05-16 07:36:35 +0000461}
Ajit Khaparde89a88ab2011-05-16 07:36:18 +0000462
Sathya Perla09c1c682011-08-22 19:41:53 +0000463static void accumulate_16bit_val(u32 *acc, u16 val)
464{
465#define lo(x) (x & 0xFFFF)
466#define hi(x) (x & 0xFFFF0000)
467 bool wrapped = val < lo(*acc);
468 u32 newacc = hi(*acc) + val;
469
470 if (wrapped)
471 newacc += 65536;
472 ACCESS_ONCE(*acc) = newacc;
473}
474
Jingoo Han4188e7d2013-08-05 18:02:02 +0900475static void populate_erx_stats(struct be_adapter *adapter,
Ajit Khapardea6c578e2013-05-01 09:37:27 +0000476 struct be_rx_obj *rxo,
477 u32 erx_stat)
478{
479 if (!BEx_chip(adapter))
480 rx_stats(rxo)->rx_drops_no_frags = erx_stat;
481 else
482 /* below erx HW counter can actually wrap around after
483 * 65535. Driver accumulates a 32-bit value
484 */
485 accumulate_16bit_val(&rx_stats(rxo)->rx_drops_no_frags,
486 (u16)erx_stat);
487}
488
Ajit Khaparde89a88ab2011-05-16 07:36:18 +0000489void be_parse_stats(struct be_adapter *adapter)
490{
Sathya Perlaac124ff2011-07-25 19:10:14 +0000491 struct be_erx_stats_v1 *erx = be_erx_stats_from_cmd(adapter);
492 struct be_rx_obj *rxo;
493 int i;
Ajit Khapardea6c578e2013-05-01 09:37:27 +0000494 u32 erx_stat;
Sathya Perlaac124ff2011-07-25 19:10:14 +0000495
Sathya Perlaca34fe32012-11-06 17:48:56 +0000496 if (lancer_chip(adapter)) {
497 populate_lancer_stats(adapter);
Selvin Xavier005d5692011-05-16 07:36:35 +0000498 } else {
Sathya Perlaca34fe32012-11-06 17:48:56 +0000499 if (BE2_chip(adapter))
500 populate_be_v0_stats(adapter);
501 else
502 /* for BE3 and Skyhawk */
503 populate_be_v1_stats(adapter);
Sathya Perlaac124ff2011-07-25 19:10:14 +0000504
Sathya Perlaca34fe32012-11-06 17:48:56 +0000505 /* as erx_v1 is longer than v0, ok to use v1 for v0 access */
506 for_all_rx_queues(adapter, rxo, i) {
Ajit Khapardea6c578e2013-05-01 09:37:27 +0000507 erx_stat = erx->rx_drops_no_fragments[rxo->q.id];
508 populate_erx_stats(adapter, rxo, erx_stat);
Sathya Perlaca34fe32012-11-06 17:48:56 +0000509 }
Sathya Perla09c1c682011-08-22 19:41:53 +0000510 }
Ajit Khaparde89a88ab2011-05-16 07:36:18 +0000511}
512
Sathya Perlaab1594e2011-07-25 19:10:15 +0000513static struct rtnl_link_stats64 *be_get_stats64(struct net_device *netdev,
514 struct rtnl_link_stats64 *stats)
Sathya Perla6b7c5b92009-03-11 23:32:03 -0700515{
Sathya Perlaab1594e2011-07-25 19:10:15 +0000516 struct be_adapter *adapter = netdev_priv(netdev);
Ajit Khaparde89a88ab2011-05-16 07:36:18 +0000517 struct be_drv_stats *drvs = &adapter->drv_stats;
Sathya Perla3abcded2010-10-03 22:12:27 -0700518 struct be_rx_obj *rxo;
Sathya Perla3c8def92011-06-12 20:01:58 +0000519 struct be_tx_obj *txo;
Sathya Perlaab1594e2011-07-25 19:10:15 +0000520 u64 pkts, bytes;
521 unsigned int start;
Sathya Perla3abcded2010-10-03 22:12:27 -0700522 int i;
Sathya Perla6b7c5b92009-03-11 23:32:03 -0700523
Sathya Perla3abcded2010-10-03 22:12:27 -0700524 for_all_rx_queues(adapter, rxo, i) {
Sathya Perlaab1594e2011-07-25 19:10:15 +0000525 const struct be_rx_stats *rx_stats = rx_stats(rxo);
526 do {
527 start = u64_stats_fetch_begin_bh(&rx_stats->sync);
528 pkts = rx_stats(rxo)->rx_pkts;
529 bytes = rx_stats(rxo)->rx_bytes;
530 } while (u64_stats_fetch_retry_bh(&rx_stats->sync, start));
531 stats->rx_packets += pkts;
532 stats->rx_bytes += bytes;
533 stats->multicast += rx_stats(rxo)->rx_mcast_pkts;
534 stats->rx_dropped += rx_stats(rxo)->rx_drops_no_skbs +
535 rx_stats(rxo)->rx_drops_no_frags;
Sathya Perla3abcded2010-10-03 22:12:27 -0700536 }
537
Sathya Perla3c8def92011-06-12 20:01:58 +0000538 for_all_tx_queues(adapter, txo, i) {
Sathya Perlaab1594e2011-07-25 19:10:15 +0000539 const struct be_tx_stats *tx_stats = tx_stats(txo);
540 do {
541 start = u64_stats_fetch_begin_bh(&tx_stats->sync);
542 pkts = tx_stats(txo)->tx_pkts;
543 bytes = tx_stats(txo)->tx_bytes;
544 } while (u64_stats_fetch_retry_bh(&tx_stats->sync, start));
545 stats->tx_packets += pkts;
546 stats->tx_bytes += bytes;
Sathya Perla3c8def92011-06-12 20:01:58 +0000547 }
Sathya Perla6b7c5b92009-03-11 23:32:03 -0700548
549 /* bad pkts received */
Sathya Perlaab1594e2011-07-25 19:10:15 +0000550 stats->rx_errors = drvs->rx_crc_errors +
Ajit Khaparde89a88ab2011-05-16 07:36:18 +0000551 drvs->rx_alignment_symbol_errors +
552 drvs->rx_in_range_errors +
553 drvs->rx_out_range_errors +
554 drvs->rx_frame_too_long +
555 drvs->rx_dropped_too_small +
556 drvs->rx_dropped_too_short +
557 drvs->rx_dropped_header_too_small +
558 drvs->rx_dropped_tcp_length +
Sathya Perlaab1594e2011-07-25 19:10:15 +0000559 drvs->rx_dropped_runt;
Sathya Perla6b7c5b92009-03-11 23:32:03 -0700560
Sathya Perla6b7c5b92009-03-11 23:32:03 -0700561 /* detailed rx errors */
Sathya Perlaab1594e2011-07-25 19:10:15 +0000562 stats->rx_length_errors = drvs->rx_in_range_errors +
Ajit Khaparde89a88ab2011-05-16 07:36:18 +0000563 drvs->rx_out_range_errors +
564 drvs->rx_frame_too_long;
Sathya Perla68110862009-06-10 02:21:16 +0000565
Sathya Perlaab1594e2011-07-25 19:10:15 +0000566 stats->rx_crc_errors = drvs->rx_crc_errors;
Sathya Perla6b7c5b92009-03-11 23:32:03 -0700567
568 /* frame alignment errors */
Sathya Perlaab1594e2011-07-25 19:10:15 +0000569 stats->rx_frame_errors = drvs->rx_alignment_symbol_errors;
Sathya Perla68110862009-06-10 02:21:16 +0000570
Sathya Perla6b7c5b92009-03-11 23:32:03 -0700571 /* receiver fifo overrun */
572 /* drops_no_pbuf is no per i/f, it's per BE card */
Sathya Perlaab1594e2011-07-25 19:10:15 +0000573 stats->rx_fifo_errors = drvs->rxpp_fifo_overflow_drop +
Ajit Khaparde89a88ab2011-05-16 07:36:18 +0000574 drvs->rx_input_fifo_overflow_drop +
575 drvs->rx_drops_no_pbuf;
Sathya Perlaab1594e2011-07-25 19:10:15 +0000576 return stats;
Sathya Perla6b7c5b92009-03-11 23:32:03 -0700577}
578
Ajit Khapardeb236916a2011-12-30 12:15:40 +0000579void be_link_status_update(struct be_adapter *adapter, u8 link_status)
Sathya Perla6b7c5b92009-03-11 23:32:03 -0700580{
Sathya Perla6b7c5b92009-03-11 23:32:03 -0700581 struct net_device *netdev = adapter->netdev;
582
Ajit Khapardeb236916a2011-12-30 12:15:40 +0000583 if (!(adapter->flags & BE_FLAGS_LINK_STATUS_INIT)) {
Sathya Perlaea172a02011-08-02 19:57:42 +0000584 netif_carrier_off(netdev);
Ajit Khapardeb236916a2011-12-30 12:15:40 +0000585 adapter->flags |= BE_FLAGS_LINK_STATUS_INIT;
Sathya Perla6b7c5b92009-03-11 23:32:03 -0700586 }
Ajit Khapardeb236916a2011-12-30 12:15:40 +0000587
588 if ((link_status & LINK_STATUS_MASK) == LINK_UP)
589 netif_carrier_on(netdev);
590 else
591 netif_carrier_off(netdev);
Sathya Perla6b7c5b92009-03-11 23:32:03 -0700592}
593
Sathya Perla3c8def92011-06-12 20:01:58 +0000594static void be_tx_stats_update(struct be_tx_obj *txo,
Ajit Khaparde91992e42010-02-19 13:57:12 +0000595 u32 wrb_cnt, u32 copied, u32 gso_segs, bool stopped)
Sathya Perla6b7c5b92009-03-11 23:32:03 -0700596{
Sathya Perla3c8def92011-06-12 20:01:58 +0000597 struct be_tx_stats *stats = tx_stats(txo);
598
Sathya Perlaab1594e2011-07-25 19:10:15 +0000599 u64_stats_update_begin(&stats->sync);
Sathya Perlaac124ff2011-07-25 19:10:14 +0000600 stats->tx_reqs++;
601 stats->tx_wrbs += wrb_cnt;
602 stats->tx_bytes += copied;
603 stats->tx_pkts += (gso_segs ? gso_segs : 1);
Sathya Perla6b7c5b92009-03-11 23:32:03 -0700604 if (stopped)
Sathya Perlaac124ff2011-07-25 19:10:14 +0000605 stats->tx_stops++;
Sathya Perlaab1594e2011-07-25 19:10:15 +0000606 u64_stats_update_end(&stats->sync);
Sathya Perla6b7c5b92009-03-11 23:32:03 -0700607}
608
609/* Determine number of WRB entries needed to xmit data in an skb */
Sathya Perlafe6d2a32010-11-21 23:25:50 +0000610static u32 wrb_cnt_for_skb(struct be_adapter *adapter, struct sk_buff *skb,
611 bool *dummy)
Sathya Perla6b7c5b92009-03-11 23:32:03 -0700612{
David S. Millerebc8d2a2009-06-09 01:01:31 -0700613 int cnt = (skb->len > skb->data_len);
614
615 cnt += skb_shinfo(skb)->nr_frags;
616
Sathya Perla6b7c5b92009-03-11 23:32:03 -0700617 /* to account for hdr wrb */
618 cnt++;
Sathya Perlafe6d2a32010-11-21 23:25:50 +0000619 if (lancer_chip(adapter) || !(cnt & 1)) {
620 *dummy = false;
621 } else {
Sathya Perla6b7c5b92009-03-11 23:32:03 -0700622 /* add a dummy to make it an even num */
623 cnt++;
624 *dummy = true;
Sathya Perlafe6d2a32010-11-21 23:25:50 +0000625 }
Sathya Perla6b7c5b92009-03-11 23:32:03 -0700626 BUG_ON(cnt > BE_MAX_TX_FRAG_COUNT);
627 return cnt;
628}
629
630static inline void wrb_fill(struct be_eth_wrb *wrb, u64 addr, int len)
631{
632 wrb->frag_pa_hi = upper_32_bits(addr);
633 wrb->frag_pa_lo = addr & 0xFFFFFFFF;
634 wrb->frag_len = len & ETH_WRB_FRAG_LEN_MASK;
Somnath Kotur89b1f492012-06-24 19:40:55 +0000635 wrb->rsvd0 = 0;
Sathya Perla6b7c5b92009-03-11 23:32:03 -0700636}
637
Ajit Khaparde1ded1322011-12-09 13:53:17 +0000638static inline u16 be_get_tx_vlan_tag(struct be_adapter *adapter,
639 struct sk_buff *skb)
640{
641 u8 vlan_prio;
642 u16 vlan_tag;
643
644 vlan_tag = vlan_tx_tag_get(skb);
645 vlan_prio = (vlan_tag & VLAN_PRIO_MASK) >> VLAN_PRIO_SHIFT;
646 /* If vlan priority provided by OS is NOT in available bmap */
647 if (!(adapter->vlan_prio_bmap & (1 << vlan_prio)))
648 vlan_tag = (vlan_tag & ~VLAN_PRIO_MASK) |
649 adapter->recommended_prio;
650
651 return vlan_tag;
652}
653
Somnath Koturcc4ce022010-10-21 07:11:14 -0700654static void wrb_fill_hdr(struct be_adapter *adapter, struct be_eth_hdr_wrb *hdr,
Ajit Khapardebc0c3402013-04-24 11:52:50 +0000655 struct sk_buff *skb, u32 wrb_cnt, u32 len, bool skip_hw_vlan)
Sathya Perla6b7c5b92009-03-11 23:32:03 -0700656{
Ajit Khaparde1ded1322011-12-09 13:53:17 +0000657 u16 vlan_tag;
Somnath Koturcc4ce022010-10-21 07:11:14 -0700658
Sathya Perla6b7c5b92009-03-11 23:32:03 -0700659 memset(hdr, 0, sizeof(*hdr));
660
661 AMAP_SET_BITS(struct amap_eth_hdr_wrb, crc, hdr, 1);
662
Ajit Khaparde49e4b8472010-06-14 04:56:07 +0000663 if (skb_is_gso(skb)) {
Sathya Perla6b7c5b92009-03-11 23:32:03 -0700664 AMAP_SET_BITS(struct amap_eth_hdr_wrb, lso, hdr, 1);
665 AMAP_SET_BITS(struct amap_eth_hdr_wrb, lso_mss,
666 hdr, skb_shinfo(skb)->gso_size);
Sathya Perlafe6d2a32010-11-21 23:25:50 +0000667 if (skb_is_gso_v6(skb) && !lancer_chip(adapter))
Ajit Khaparde49e4b8472010-06-14 04:56:07 +0000668 AMAP_SET_BITS(struct amap_eth_hdr_wrb, lso6, hdr, 1);
Sathya Perla6b7c5b92009-03-11 23:32:03 -0700669 } else if (skb->ip_summed == CHECKSUM_PARTIAL) {
670 if (is_tcp_pkt(skb))
671 AMAP_SET_BITS(struct amap_eth_hdr_wrb, tcpcs, hdr, 1);
672 else if (is_udp_pkt(skb))
673 AMAP_SET_BITS(struct amap_eth_hdr_wrb, udpcs, hdr, 1);
674 }
675
Ajit Khaparde4c5102f2011-07-12 22:10:01 -0700676 if (vlan_tx_tag_present(skb)) {
Sathya Perla6b7c5b92009-03-11 23:32:03 -0700677 AMAP_SET_BITS(struct amap_eth_hdr_wrb, vlan, hdr, 1);
Ajit Khaparde1ded1322011-12-09 13:53:17 +0000678 vlan_tag = be_get_tx_vlan_tag(adapter, skb);
Somnath Koturcc4ce022010-10-21 07:11:14 -0700679 AMAP_SET_BITS(struct amap_eth_hdr_wrb, vlan_tag, hdr, vlan_tag);
Sathya Perla6b7c5b92009-03-11 23:32:03 -0700680 }
681
Ajit Khapardebc0c3402013-04-24 11:52:50 +0000682 /* To skip HW VLAN tagging: evt = 1, compl = 0 */
683 AMAP_SET_BITS(struct amap_eth_hdr_wrb, complete, hdr, !skip_hw_vlan);
Sathya Perla6b7c5b92009-03-11 23:32:03 -0700684 AMAP_SET_BITS(struct amap_eth_hdr_wrb, event, hdr, 1);
Sathya Perla6b7c5b92009-03-11 23:32:03 -0700685 AMAP_SET_BITS(struct amap_eth_hdr_wrb, num_wrb, hdr, wrb_cnt);
686 AMAP_SET_BITS(struct amap_eth_hdr_wrb, len, hdr, len);
687}
688
Ivan Vecera2b7bceb2011-02-02 08:05:12 +0000689static void unmap_tx_frag(struct device *dev, struct be_eth_wrb *wrb,
Sathya Perla7101e112010-03-22 20:41:12 +0000690 bool unmap_single)
691{
692 dma_addr_t dma;
693
694 be_dws_le_to_cpu(wrb, sizeof(*wrb));
695
696 dma = (u64)wrb->frag_pa_hi << 32 | (u64)wrb->frag_pa_lo;
FUJITA Tomonorib681ee72010-04-04 21:40:18 +0000697 if (wrb->frag_len) {
Sathya Perla7101e112010-03-22 20:41:12 +0000698 if (unmap_single)
Ivan Vecera2b7bceb2011-02-02 08:05:12 +0000699 dma_unmap_single(dev, dma, wrb->frag_len,
700 DMA_TO_DEVICE);
Sathya Perla7101e112010-03-22 20:41:12 +0000701 else
Ivan Vecera2b7bceb2011-02-02 08:05:12 +0000702 dma_unmap_page(dev, dma, wrb->frag_len, DMA_TO_DEVICE);
Sathya Perla7101e112010-03-22 20:41:12 +0000703 }
704}
Sathya Perla6b7c5b92009-03-11 23:32:03 -0700705
Sathya Perla3c8def92011-06-12 20:01:58 +0000706static int make_tx_wrbs(struct be_adapter *adapter, struct be_queue_info *txq,
Ajit Khapardebc0c3402013-04-24 11:52:50 +0000707 struct sk_buff *skb, u32 wrb_cnt, bool dummy_wrb,
708 bool skip_hw_vlan)
Sathya Perla6b7c5b92009-03-11 23:32:03 -0700709{
Sathya Perla7101e112010-03-22 20:41:12 +0000710 dma_addr_t busaddr;
711 int i, copied = 0;
Ivan Vecera2b7bceb2011-02-02 08:05:12 +0000712 struct device *dev = &adapter->pdev->dev;
Sathya Perla6b7c5b92009-03-11 23:32:03 -0700713 struct sk_buff *first_skb = skb;
Sathya Perla6b7c5b92009-03-11 23:32:03 -0700714 struct be_eth_wrb *wrb;
715 struct be_eth_hdr_wrb *hdr;
Sathya Perla7101e112010-03-22 20:41:12 +0000716 bool map_single = false;
717 u16 map_head;
Sathya Perla6b7c5b92009-03-11 23:32:03 -0700718
Sathya Perla6b7c5b92009-03-11 23:32:03 -0700719 hdr = queue_head_node(txq);
720 queue_head_inc(txq);
Sathya Perla7101e112010-03-22 20:41:12 +0000721 map_head = txq->head;
Sathya Perla6b7c5b92009-03-11 23:32:03 -0700722
David S. Millerebc8d2a2009-06-09 01:01:31 -0700723 if (skb->len > skb->data_len) {
Eric Dumazete743d312010-04-14 15:59:40 -0700724 int len = skb_headlen(skb);
Ivan Vecera2b7bceb2011-02-02 08:05:12 +0000725 busaddr = dma_map_single(dev, skb->data, len, DMA_TO_DEVICE);
726 if (dma_mapping_error(dev, busaddr))
Sathya Perla7101e112010-03-22 20:41:12 +0000727 goto dma_err;
728 map_single = true;
David S. Millerebc8d2a2009-06-09 01:01:31 -0700729 wrb = queue_head_node(txq);
730 wrb_fill(wrb, busaddr, len);
731 be_dws_cpu_to_le(wrb, sizeof(*wrb));
732 queue_head_inc(txq);
733 copied += len;
734 }
Sathya Perla6b7c5b92009-03-11 23:32:03 -0700735
David S. Millerebc8d2a2009-06-09 01:01:31 -0700736 for (i = 0; i < skb_shinfo(skb)->nr_frags; i++) {
Eric Dumazet9e903e02011-10-18 21:00:24 +0000737 const struct skb_frag_struct *frag =
David S. Millerebc8d2a2009-06-09 01:01:31 -0700738 &skb_shinfo(skb)->frags[i];
Ian Campbellb061b392011-08-29 23:18:23 +0000739 busaddr = skb_frag_dma_map(dev, frag, 0,
Eric Dumazet9e903e02011-10-18 21:00:24 +0000740 skb_frag_size(frag), DMA_TO_DEVICE);
Ivan Vecera2b7bceb2011-02-02 08:05:12 +0000741 if (dma_mapping_error(dev, busaddr))
Sathya Perla7101e112010-03-22 20:41:12 +0000742 goto dma_err;
David S. Millerebc8d2a2009-06-09 01:01:31 -0700743 wrb = queue_head_node(txq);
Eric Dumazet9e903e02011-10-18 21:00:24 +0000744 wrb_fill(wrb, busaddr, skb_frag_size(frag));
David S. Millerebc8d2a2009-06-09 01:01:31 -0700745 be_dws_cpu_to_le(wrb, sizeof(*wrb));
746 queue_head_inc(txq);
Eric Dumazet9e903e02011-10-18 21:00:24 +0000747 copied += skb_frag_size(frag);
Sathya Perla6b7c5b92009-03-11 23:32:03 -0700748 }
749
750 if (dummy_wrb) {
751 wrb = queue_head_node(txq);
752 wrb_fill(wrb, 0, 0);
753 be_dws_cpu_to_le(wrb, sizeof(*wrb));
754 queue_head_inc(txq);
755 }
756
Ajit Khapardebc0c3402013-04-24 11:52:50 +0000757 wrb_fill_hdr(adapter, hdr, first_skb, wrb_cnt, copied, skip_hw_vlan);
Sathya Perla6b7c5b92009-03-11 23:32:03 -0700758 be_dws_cpu_to_le(hdr, sizeof(*hdr));
759
760 return copied;
Sathya Perla7101e112010-03-22 20:41:12 +0000761dma_err:
762 txq->head = map_head;
763 while (copied) {
764 wrb = queue_head_node(txq);
Ivan Vecera2b7bceb2011-02-02 08:05:12 +0000765 unmap_tx_frag(dev, wrb, map_single);
Sathya Perla7101e112010-03-22 20:41:12 +0000766 map_single = false;
767 copied -= wrb->frag_len;
768 queue_head_inc(txq);
769 }
770 return 0;
Sathya Perla6b7c5b92009-03-11 23:32:03 -0700771}
772
Somnath Kotur93040ae2012-06-26 22:32:10 +0000773static struct sk_buff *be_insert_vlan_in_pkt(struct be_adapter *adapter,
Ajit Khapardebc0c3402013-04-24 11:52:50 +0000774 struct sk_buff *skb,
775 bool *skip_hw_vlan)
Somnath Kotur93040ae2012-06-26 22:32:10 +0000776{
777 u16 vlan_tag = 0;
778
779 skb = skb_share_check(skb, GFP_ATOMIC);
780 if (unlikely(!skb))
781 return skb;
782
Sarveshwar Bandiefee8e82013-05-13 20:28:20 +0000783 if (vlan_tx_tag_present(skb))
Somnath Kotur93040ae2012-06-26 22:32:10 +0000784 vlan_tag = be_get_tx_vlan_tag(adapter, skb);
Sarveshwar Bandi52fe29e2013-07-16 12:44:02 +0530785
786 if (qnq_async_evt_rcvd(adapter) && adapter->pvid) {
787 if (!vlan_tag)
788 vlan_tag = adapter->pvid;
789 /* f/w workaround to set skip_hw_vlan = 1, informs the F/W to
790 * skip VLAN insertion
791 */
792 if (skip_hw_vlan)
793 *skip_hw_vlan = true;
794 }
Ajit Khapardebc0c3402013-04-24 11:52:50 +0000795
796 if (vlan_tag) {
David S. Miller58717682013-04-30 03:50:54 -0400797 skb = __vlan_put_tag(skb, htons(ETH_P_8021Q), vlan_tag);
Ajit Khapardebc0c3402013-04-24 11:52:50 +0000798 if (unlikely(!skb))
799 return skb;
Ajit Khapardebc0c3402013-04-24 11:52:50 +0000800 skb->vlan_tci = 0;
801 }
802
803 /* Insert the outer VLAN, if any */
804 if (adapter->qnq_vid) {
805 vlan_tag = adapter->qnq_vid;
David S. Miller58717682013-04-30 03:50:54 -0400806 skb = __vlan_put_tag(skb, htons(ETH_P_8021Q), vlan_tag);
Ajit Khapardebc0c3402013-04-24 11:52:50 +0000807 if (unlikely(!skb))
808 return skb;
809 if (skip_hw_vlan)
810 *skip_hw_vlan = true;
811 }
812
Somnath Kotur93040ae2012-06-26 22:32:10 +0000813 return skb;
814}
815
Ajit Khapardebc0c3402013-04-24 11:52:50 +0000816static bool be_ipv6_exthdr_check(struct sk_buff *skb)
817{
818 struct ethhdr *eh = (struct ethhdr *)skb->data;
819 u16 offset = ETH_HLEN;
820
821 if (eh->h_proto == htons(ETH_P_IPV6)) {
822 struct ipv6hdr *ip6h = (struct ipv6hdr *)(skb->data + offset);
823
824 offset += sizeof(struct ipv6hdr);
825 if (ip6h->nexthdr != NEXTHDR_TCP &&
826 ip6h->nexthdr != NEXTHDR_UDP) {
827 struct ipv6_opt_hdr *ehdr =
828 (struct ipv6_opt_hdr *) (skb->data + offset);
829
830 /* offending pkt: 2nd byte following IPv6 hdr is 0xff */
831 if (ehdr->hdrlen == 0xff)
832 return true;
833 }
834 }
835 return false;
836}
837
838static int be_vlan_tag_tx_chk(struct be_adapter *adapter, struct sk_buff *skb)
839{
840 return vlan_tx_tag_present(skb) || adapter->pvid || adapter->qnq_vid;
841}
842
Sathya Perlaee9c7992013-05-22 23:04:55 +0000843static int be_ipv6_tx_stall_chk(struct be_adapter *adapter,
844 struct sk_buff *skb)
Ajit Khapardebc0c3402013-04-24 11:52:50 +0000845{
Sathya Perlaee9c7992013-05-22 23:04:55 +0000846 return BE3_chip(adapter) && be_ipv6_exthdr_check(skb);
Ajit Khapardebc0c3402013-04-24 11:52:50 +0000847}
848
Sathya Perlaee9c7992013-05-22 23:04:55 +0000849static struct sk_buff *be_xmit_workarounds(struct be_adapter *adapter,
850 struct sk_buff *skb,
851 bool *skip_hw_vlan)
Sathya Perla6b7c5b92009-03-11 23:32:03 -0700852{
Ajit Khaparded2cb6ce2013-04-24 11:53:08 +0000853 struct vlan_ethhdr *veh = (struct vlan_ethhdr *)skb->data;
Sathya Perlaee9c7992013-05-22 23:04:55 +0000854 unsigned int eth_hdr_len;
855 struct iphdr *ip;
Somnath Kotur93040ae2012-06-26 22:32:10 +0000856
Somnath Kotur48265662013-05-26 21:08:47 +0000857 /* Lancer ASIC has a bug wherein packets that are 32 bytes or less
858 * may cause a transmit stall on that port. So the work-around is to
859 * pad such packets to a 36-byte length.
860 */
861 if (unlikely(lancer_chip(adapter) && skb->len <= 32)) {
862 if (skb_padto(skb, 36))
863 goto tx_drop;
864 skb->len = 36;
865 }
866
Ajit Khaparde1297f9d2013-04-24 11:52:28 +0000867 /* For padded packets, BE HW modifies tot_len field in IP header
868 * incorrecly when VLAN tag is inserted by HW.
Somnath Kotur3904dcc2013-05-26 21:09:06 +0000869 * For padded packets, Lancer computes incorrect checksum.
Ajit Khaparde1ded1322011-12-09 13:53:17 +0000870 */
Sathya Perlaee9c7992013-05-22 23:04:55 +0000871 eth_hdr_len = ntohs(skb->protocol) == ETH_P_8021Q ?
872 VLAN_ETH_HLEN : ETH_HLEN;
Somnath Kotur3904dcc2013-05-26 21:09:06 +0000873 if (skb->len <= 60 &&
874 (lancer_chip(adapter) || vlan_tx_tag_present(skb)) &&
Sathya Perlaee9c7992013-05-22 23:04:55 +0000875 is_ipv4_pkt(skb)) {
Somnath Kotur93040ae2012-06-26 22:32:10 +0000876 ip = (struct iphdr *)ip_hdr(skb);
877 pskb_trim(skb, eth_hdr_len + ntohs(ip->tot_len));
878 }
879
Ajit Khaparded2cb6ce2013-04-24 11:53:08 +0000880 /* If vlan tag is already inlined in the packet, skip HW VLAN
881 * tagging in UMC mode
882 */
883 if ((adapter->function_mode & UMC_ENABLED) &&
884 veh->h_vlan_proto == htons(ETH_P_8021Q))
Sathya Perlaee9c7992013-05-22 23:04:55 +0000885 *skip_hw_vlan = true;
Ajit Khaparded2cb6ce2013-04-24 11:53:08 +0000886
Somnath Kotur93040ae2012-06-26 22:32:10 +0000887 /* HW has a bug wherein it will calculate CSUM for VLAN
888 * pkts even though it is disabled.
889 * Manually insert VLAN in pkt.
890 */
891 if (skb->ip_summed != CHECKSUM_PARTIAL &&
Sathya Perlaee9c7992013-05-22 23:04:55 +0000892 vlan_tx_tag_present(skb)) {
893 skb = be_insert_vlan_in_pkt(adapter, skb, skip_hw_vlan);
Ajit Khapardebc0c3402013-04-24 11:52:50 +0000894 if (unlikely(!skb))
895 goto tx_drop;
896 }
897
898 /* HW may lockup when VLAN HW tagging is requested on
899 * certain ipv6 packets. Drop such pkts if the HW workaround to
900 * skip HW tagging is not enabled by FW.
901 */
902 if (unlikely(be_ipv6_tx_stall_chk(adapter, skb) &&
Sathya Perlaee9c7992013-05-22 23:04:55 +0000903 (adapter->pvid || adapter->qnq_vid) &&
904 !qnq_async_evt_rcvd(adapter)))
Ajit Khapardebc0c3402013-04-24 11:52:50 +0000905 goto tx_drop;
906
907 /* Manual VLAN tag insertion to prevent:
908 * ASIC lockup when the ASIC inserts VLAN tag into
909 * certain ipv6 packets. Insert VLAN tags in driver,
910 * and set event, completion, vlan bits accordingly
911 * in the Tx WRB.
912 */
913 if (be_ipv6_tx_stall_chk(adapter, skb) &&
914 be_vlan_tag_tx_chk(adapter, skb)) {
Sathya Perlaee9c7992013-05-22 23:04:55 +0000915 skb = be_insert_vlan_in_pkt(adapter, skb, skip_hw_vlan);
Ajit Khaparde1ded1322011-12-09 13:53:17 +0000916 if (unlikely(!skb))
917 goto tx_drop;
Ajit Khaparde1ded1322011-12-09 13:53:17 +0000918 }
919
Sathya Perlaee9c7992013-05-22 23:04:55 +0000920 return skb;
921tx_drop:
922 dev_kfree_skb_any(skb);
923 return NULL;
924}
925
926static netdev_tx_t be_xmit(struct sk_buff *skb, struct net_device *netdev)
927{
928 struct be_adapter *adapter = netdev_priv(netdev);
929 struct be_tx_obj *txo = &adapter->tx_obj[skb_get_queue_mapping(skb)];
930 struct be_queue_info *txq = &txo->q;
931 bool dummy_wrb, stopped = false;
932 u32 wrb_cnt = 0, copied = 0;
933 bool skip_hw_vlan = false;
934 u32 start = txq->head;
935
936 skb = be_xmit_workarounds(adapter, skb, &skip_hw_vlan);
937 if (!skb)
938 return NETDEV_TX_OK;
939
Sathya Perlafe6d2a32010-11-21 23:25:50 +0000940 wrb_cnt = wrb_cnt_for_skb(adapter, skb, &dummy_wrb);
Sathya Perla6b7c5b92009-03-11 23:32:03 -0700941
Ajit Khapardebc0c3402013-04-24 11:52:50 +0000942 copied = make_tx_wrbs(adapter, txq, skb, wrb_cnt, dummy_wrb,
943 skip_hw_vlan);
Ajit Khapardec190e3c2009-09-04 03:12:29 +0000944 if (copied) {
Eric Dumazetcd8f76c2012-06-07 22:59:59 +0000945 int gso_segs = skb_shinfo(skb)->gso_segs;
946
Ajit Khapardec190e3c2009-09-04 03:12:29 +0000947 /* record the sent skb in the sent_skb table */
Sathya Perla3c8def92011-06-12 20:01:58 +0000948 BUG_ON(txo->sent_skb_list[start]);
949 txo->sent_skb_list[start] = skb;
Sathya Perla6b7c5b92009-03-11 23:32:03 -0700950
Ajit Khapardec190e3c2009-09-04 03:12:29 +0000951 /* Ensure txq has space for the next skb; Else stop the queue
952 * *BEFORE* ringing the tx doorbell, so that we serialze the
953 * tx compls of the current transmit which'll wake up the queue
954 */
Sathya Perla7101e112010-03-22 20:41:12 +0000955 atomic_add(wrb_cnt, &txq->used);
Ajit Khapardec190e3c2009-09-04 03:12:29 +0000956 if ((BE_MAX_TX_FRAG_COUNT + atomic_read(&txq->used)) >=
957 txq->len) {
Sathya Perla3c8def92011-06-12 20:01:58 +0000958 netif_stop_subqueue(netdev, skb_get_queue_mapping(skb));
Ajit Khapardec190e3c2009-09-04 03:12:29 +0000959 stopped = true;
960 }
Sathya Perla6b7c5b92009-03-11 23:32:03 -0700961
Vasundhara Volam94d73aa2013-04-21 23:28:14 +0000962 be_txq_notify(adapter, txo, wrb_cnt);
Ajit Khapardec190e3c2009-09-04 03:12:29 +0000963
Eric Dumazetcd8f76c2012-06-07 22:59:59 +0000964 be_tx_stats_update(txo, wrb_cnt, copied, gso_segs, stopped);
Ajit Khapardec190e3c2009-09-04 03:12:29 +0000965 } else {
966 txq->head = start;
967 dev_kfree_skb_any(skb);
Sathya Perla6b7c5b92009-03-11 23:32:03 -0700968 }
Sathya Perla6b7c5b92009-03-11 23:32:03 -0700969 return NETDEV_TX_OK;
970}
971
972static int be_change_mtu(struct net_device *netdev, int new_mtu)
973{
974 struct be_adapter *adapter = netdev_priv(netdev);
975 if (new_mtu < BE_MIN_MTU ||
Ajit Khaparde34a89b82010-02-09 01:32:43 +0000976 new_mtu > (BE_MAX_JUMBO_FRAME_SIZE -
977 (ETH_HLEN + ETH_FCS_LEN))) {
Sathya Perla6b7c5b92009-03-11 23:32:03 -0700978 dev_info(&adapter->pdev->dev,
979 "MTU must be between %d and %d bytes\n",
Ajit Khaparde34a89b82010-02-09 01:32:43 +0000980 BE_MIN_MTU,
981 (BE_MAX_JUMBO_FRAME_SIZE - (ETH_HLEN + ETH_FCS_LEN)));
Sathya Perla6b7c5b92009-03-11 23:32:03 -0700982 return -EINVAL;
983 }
984 dev_info(&adapter->pdev->dev, "MTU changed from %d to %d bytes\n",
985 netdev->mtu, new_mtu);
986 netdev->mtu = new_mtu;
987 return 0;
988}
989
990/*
Ajit Khaparde82903e42010-02-09 01:34:57 +0000991 * A max of 64 (BE_NUM_VLANS_SUPPORTED) vlans can be configured in BE.
992 * If the user configures more, place BE in vlan promiscuous mode.
Sathya Perla6b7c5b92009-03-11 23:32:03 -0700993 */
Sathya Perla10329df2012-06-05 19:37:18 +0000994static int be_vid_config(struct be_adapter *adapter)
Sathya Perla6b7c5b92009-03-11 23:32:03 -0700995{
Sathya Perla10329df2012-06-05 19:37:18 +0000996 u16 vids[BE_NUM_VLANS_SUPPORTED];
997 u16 num = 0, i;
Ajit Khaparde82903e42010-02-09 01:34:57 +0000998 int status = 0;
Ajit Khaparde1da87b72010-07-23 01:51:22 +0000999
Sathya Perlac0e64ef2011-08-02 19:57:43 +00001000 /* No need to further configure vids if in promiscuous mode */
1001 if (adapter->promiscuous)
1002 return 0;
1003
Sathya Perla92bf14a2013-08-27 16:57:32 +05301004 if (adapter->vlans_added > be_max_vlans(adapter))
Padmanabh Ratnakar0fc16eb2012-04-25 01:46:06 +00001005 goto set_vlan_promisc;
1006
1007 /* Construct VLAN Table to give to HW */
1008 for (i = 0; i < VLAN_N_VID; i++)
1009 if (adapter->vlan_tag[i])
Sathya Perla10329df2012-06-05 19:37:18 +00001010 vids[num++] = cpu_to_le16(i);
Padmanabh Ratnakar0fc16eb2012-04-25 01:46:06 +00001011
1012 status = be_cmd_vlan_config(adapter, adapter->if_handle,
Sathya Perla10329df2012-06-05 19:37:18 +00001013 vids, num, 1, 0);
Padmanabh Ratnakar0fc16eb2012-04-25 01:46:06 +00001014
1015 /* Set to VLAN promisc mode as setting VLAN filter failed */
1016 if (status) {
1017 dev_info(&adapter->pdev->dev, "Exhausted VLAN HW filters.\n");
1018 dev_info(&adapter->pdev->dev, "Disabling HW VLAN filtering.\n");
1019 goto set_vlan_promisc;
Sathya Perla6b7c5b92009-03-11 23:32:03 -07001020 }
Ajit Khaparde1da87b72010-07-23 01:51:22 +00001021
Sathya Perlab31c50a2009-09-17 10:30:13 -07001022 return status;
Padmanabh Ratnakar0fc16eb2012-04-25 01:46:06 +00001023
1024set_vlan_promisc:
1025 status = be_cmd_vlan_config(adapter, adapter->if_handle,
1026 NULL, 0, 1, 1);
1027 return status;
Sathya Perla6b7c5b92009-03-11 23:32:03 -07001028}
1029
Patrick McHardy80d5c362013-04-19 02:04:28 +00001030static int be_vlan_add_vid(struct net_device *netdev, __be16 proto, u16 vid)
Sathya Perla6b7c5b92009-03-11 23:32:03 -07001031{
1032 struct be_adapter *adapter = netdev_priv(netdev);
Ajit Khaparde80817cb2011-12-30 12:15:12 +00001033 int status = 0;
Sathya Perla6b7c5b92009-03-11 23:32:03 -07001034
Padmanabh Ratnakara85e9982012-10-20 06:02:40 +00001035 if (!lancer_chip(adapter) && !be_physfn(adapter)) {
Ajit Khaparde80817cb2011-12-30 12:15:12 +00001036 status = -EINVAL;
1037 goto ret;
1038 }
Sarveshwar Bandiba343c72010-03-31 02:56:12 +00001039
Padmanabh Ratnakara85e9982012-10-20 06:02:40 +00001040 /* Packets with VID 0 are always received by Lancer by default */
1041 if (lancer_chip(adapter) && vid == 0)
1042 goto ret;
1043
Sathya Perla6b7c5b92009-03-11 23:32:03 -07001044 adapter->vlan_tag[vid] = 1;
Sathya Perla92bf14a2013-08-27 16:57:32 +05301045 if (adapter->vlans_added <= (be_max_vlans(adapter) + 1))
Sathya Perla10329df2012-06-05 19:37:18 +00001046 status = be_vid_config(adapter);
Jiri Pirko8e586132011-12-08 19:52:37 -05001047
Ajit Khaparde80817cb2011-12-30 12:15:12 +00001048 if (!status)
1049 adapter->vlans_added++;
1050 else
1051 adapter->vlan_tag[vid] = 0;
1052ret:
1053 return status;
Sathya Perla6b7c5b92009-03-11 23:32:03 -07001054}
1055
Patrick McHardy80d5c362013-04-19 02:04:28 +00001056static int be_vlan_rem_vid(struct net_device *netdev, __be16 proto, u16 vid)
Sathya Perla6b7c5b92009-03-11 23:32:03 -07001057{
1058 struct be_adapter *adapter = netdev_priv(netdev);
Ajit Khaparde80817cb2011-12-30 12:15:12 +00001059 int status = 0;
Sathya Perla6b7c5b92009-03-11 23:32:03 -07001060
Padmanabh Ratnakara85e9982012-10-20 06:02:40 +00001061 if (!lancer_chip(adapter) && !be_physfn(adapter)) {
Ajit Khaparde80817cb2011-12-30 12:15:12 +00001062 status = -EINVAL;
1063 goto ret;
1064 }
Sarveshwar Bandiba343c72010-03-31 02:56:12 +00001065
Padmanabh Ratnakara85e9982012-10-20 06:02:40 +00001066 /* Packets with VID 0 are always received by Lancer by default */
1067 if (lancer_chip(adapter) && vid == 0)
1068 goto ret;
1069
Sathya Perla6b7c5b92009-03-11 23:32:03 -07001070 adapter->vlan_tag[vid] = 0;
Sathya Perla92bf14a2013-08-27 16:57:32 +05301071 if (adapter->vlans_added <= be_max_vlans(adapter))
Sathya Perla10329df2012-06-05 19:37:18 +00001072 status = be_vid_config(adapter);
Jiri Pirko8e586132011-12-08 19:52:37 -05001073
Ajit Khaparde80817cb2011-12-30 12:15:12 +00001074 if (!status)
1075 adapter->vlans_added--;
1076 else
1077 adapter->vlan_tag[vid] = 1;
1078ret:
1079 return status;
Sathya Perla6b7c5b92009-03-11 23:32:03 -07001080}
1081
Sathya Perlaa54769f2011-10-24 02:45:00 +00001082static void be_set_rx_mode(struct net_device *netdev)
Sathya Perla6b7c5b92009-03-11 23:32:03 -07001083{
1084 struct be_adapter *adapter = netdev_priv(netdev);
Padmanabh Ratnakar0fc16eb2012-04-25 01:46:06 +00001085 int status;
Sathya Perla6b7c5b92009-03-11 23:32:03 -07001086
1087 if (netdev->flags & IFF_PROMISC) {
Sathya Perla5b8821b2011-08-02 19:57:44 +00001088 be_cmd_rx_filter(adapter, IFF_PROMISC, ON);
Sathya Perla24307ee2009-06-18 00:09:25 +00001089 adapter->promiscuous = true;
1090 goto done;
Sathya Perla6b7c5b92009-03-11 23:32:03 -07001091 }
Sathya Perla24307ee2009-06-18 00:09:25 +00001092
Lucas De Marchi25985ed2011-03-30 22:57:33 -03001093 /* BE was previously in promiscuous mode; disable it */
Sathya Perla24307ee2009-06-18 00:09:25 +00001094 if (adapter->promiscuous) {
1095 adapter->promiscuous = false;
Sathya Perla5b8821b2011-08-02 19:57:44 +00001096 be_cmd_rx_filter(adapter, IFF_PROMISC, OFF);
Sathya Perlac0e64ef2011-08-02 19:57:43 +00001097
1098 if (adapter->vlans_added)
Sathya Perla10329df2012-06-05 19:37:18 +00001099 be_vid_config(adapter);
Sathya Perla24307ee2009-06-18 00:09:25 +00001100 }
1101
Sathya Perlae7b909a2009-11-22 22:01:10 +00001102 /* Enable multicast promisc if num configured exceeds what we support */
Jiri Pirko4cd24ea2010-02-08 04:30:35 +00001103 if (netdev->flags & IFF_ALLMULTI ||
Sathya Perla92bf14a2013-08-27 16:57:32 +05301104 netdev_mc_count(netdev) > be_max_mc(adapter)) {
Sathya Perla5b8821b2011-08-02 19:57:44 +00001105 be_cmd_rx_filter(adapter, IFF_ALLMULTI, ON);
Sathya Perla24307ee2009-06-18 00:09:25 +00001106 goto done;
1107 }
1108
Ajit Khapardefbc13f02012-03-18 06:23:21 +00001109 if (netdev_uc_count(netdev) != adapter->uc_macs) {
1110 struct netdev_hw_addr *ha;
1111 int i = 1; /* First slot is claimed by the Primary MAC */
1112
1113 for (; adapter->uc_macs > 0; adapter->uc_macs--, i++) {
1114 be_cmd_pmac_del(adapter, adapter->if_handle,
1115 adapter->pmac_id[i], 0);
1116 }
1117
Sathya Perla92bf14a2013-08-27 16:57:32 +05301118 if (netdev_uc_count(netdev) > be_max_uc(adapter)) {
Ajit Khapardefbc13f02012-03-18 06:23:21 +00001119 be_cmd_rx_filter(adapter, IFF_PROMISC, ON);
1120 adapter->promiscuous = true;
1121 goto done;
1122 }
1123
1124 netdev_for_each_uc_addr(ha, adapter->netdev) {
1125 adapter->uc_macs++; /* First slot is for Primary MAC */
1126 be_cmd_pmac_add(adapter, (u8 *)ha->addr,
1127 adapter->if_handle,
1128 &adapter->pmac_id[adapter->uc_macs], 0);
1129 }
1130 }
1131
Padmanabh Ratnakar0fc16eb2012-04-25 01:46:06 +00001132 status = be_cmd_rx_filter(adapter, IFF_MULTICAST, ON);
1133
1134 /* Set to MCAST promisc mode if setting MULTICAST address fails */
1135 if (status) {
1136 dev_info(&adapter->pdev->dev, "Exhausted multicast HW filters.\n");
1137 dev_info(&adapter->pdev->dev, "Disabling HW multicast filtering.\n");
1138 be_cmd_rx_filter(adapter, IFF_ALLMULTI, ON);
1139 }
Sathya Perla24307ee2009-06-18 00:09:25 +00001140done:
1141 return;
Sathya Perla6b7c5b92009-03-11 23:32:03 -07001142}
1143
Sarveshwar Bandiba343c72010-03-31 02:56:12 +00001144static int be_set_vf_mac(struct net_device *netdev, int vf, u8 *mac)
1145{
1146 struct be_adapter *adapter = netdev_priv(netdev);
Sathya Perla11ac75e2011-12-13 00:58:50 +00001147 struct be_vf_cfg *vf_cfg = &adapter->vf_cfg[vf];
Sarveshwar Bandiba343c72010-03-31 02:56:12 +00001148 int status;
1149
Sathya Perla11ac75e2011-12-13 00:58:50 +00001150 if (!sriov_enabled(adapter))
Sarveshwar Bandiba343c72010-03-31 02:56:12 +00001151 return -EPERM;
1152
Sathya Perla11ac75e2011-12-13 00:58:50 +00001153 if (!is_valid_ether_addr(mac) || vf >= adapter->num_vfs)
Sarveshwar Bandiba343c72010-03-31 02:56:12 +00001154 return -EINVAL;
1155
Sathya Perla3175d8c2013-07-23 15:25:03 +05301156 if (BEx_chip(adapter)) {
1157 be_cmd_pmac_del(adapter, vf_cfg->if_handle, vf_cfg->pmac_id,
1158 vf + 1);
Sarveshwar Bandiba343c72010-03-31 02:56:12 +00001159
Sathya Perla11ac75e2011-12-13 00:58:50 +00001160 status = be_cmd_pmac_add(adapter, mac, vf_cfg->if_handle,
1161 &vf_cfg->pmac_id, vf + 1);
Sathya Perla3175d8c2013-07-23 15:25:03 +05301162 } else {
1163 status = be_cmd_set_mac(adapter, mac, vf_cfg->if_handle,
1164 vf + 1);
Padmanabh Ratnakar590c3912011-11-25 05:47:26 +00001165 }
1166
Ajit Khaparde64600ea2010-07-23 01:50:34 +00001167 if (status)
Sarveshwar Bandiba343c72010-03-31 02:56:12 +00001168 dev_err(&adapter->pdev->dev, "MAC %pM set on VF %d Failed\n",
1169 mac, vf);
Ajit Khaparde64600ea2010-07-23 01:50:34 +00001170 else
Sathya Perla11ac75e2011-12-13 00:58:50 +00001171 memcpy(vf_cfg->mac_addr, mac, ETH_ALEN);
Ajit Khaparde64600ea2010-07-23 01:50:34 +00001172
Sarveshwar Bandiba343c72010-03-31 02:56:12 +00001173 return status;
1174}
1175
Ajit Khaparde64600ea2010-07-23 01:50:34 +00001176static int be_get_vf_config(struct net_device *netdev, int vf,
1177 struct ifla_vf_info *vi)
1178{
1179 struct be_adapter *adapter = netdev_priv(netdev);
Sathya Perla11ac75e2011-12-13 00:58:50 +00001180 struct be_vf_cfg *vf_cfg = &adapter->vf_cfg[vf];
Ajit Khaparde64600ea2010-07-23 01:50:34 +00001181
Sathya Perla11ac75e2011-12-13 00:58:50 +00001182 if (!sriov_enabled(adapter))
Ajit Khaparde64600ea2010-07-23 01:50:34 +00001183 return -EPERM;
1184
Sathya Perla11ac75e2011-12-13 00:58:50 +00001185 if (vf >= adapter->num_vfs)
Ajit Khaparde64600ea2010-07-23 01:50:34 +00001186 return -EINVAL;
1187
1188 vi->vf = vf;
Sathya Perla11ac75e2011-12-13 00:58:50 +00001189 vi->tx_rate = vf_cfg->tx_rate;
1190 vi->vlan = vf_cfg->vlan_tag;
Ajit Khaparde64600ea2010-07-23 01:50:34 +00001191 vi->qos = 0;
Sathya Perla11ac75e2011-12-13 00:58:50 +00001192 memcpy(&vi->mac, vf_cfg->mac_addr, ETH_ALEN);
Ajit Khaparde64600ea2010-07-23 01:50:34 +00001193
1194 return 0;
1195}
1196
Ajit Khaparde1da87b72010-07-23 01:51:22 +00001197static int be_set_vf_vlan(struct net_device *netdev,
1198 int vf, u16 vlan, u8 qos)
1199{
1200 struct be_adapter *adapter = netdev_priv(netdev);
1201 int status = 0;
1202
Sathya Perla11ac75e2011-12-13 00:58:50 +00001203 if (!sriov_enabled(adapter))
Ajit Khaparde1da87b72010-07-23 01:51:22 +00001204 return -EPERM;
1205
Sathya Perla11ac75e2011-12-13 00:58:50 +00001206 if (vf >= adapter->num_vfs || vlan > 4095)
Ajit Khaparde1da87b72010-07-23 01:51:22 +00001207 return -EINVAL;
1208
1209 if (vlan) {
Ajit Khapardef1f3ee12012-03-18 06:23:41 +00001210 if (adapter->vf_cfg[vf].vlan_tag != vlan) {
1211 /* If this is new value, program it. Else skip. */
1212 adapter->vf_cfg[vf].vlan_tag = vlan;
1213
1214 status = be_cmd_set_hsw_config(adapter, vlan,
1215 vf + 1, adapter->vf_cfg[vf].if_handle);
1216 }
Ajit Khaparde1da87b72010-07-23 01:51:22 +00001217 } else {
Ajit Khapardef1f3ee12012-03-18 06:23:41 +00001218 /* Reset Transparent Vlan Tagging. */
Sathya Perla11ac75e2011-12-13 00:58:50 +00001219 adapter->vf_cfg[vf].vlan_tag = 0;
Ajit Khapardef1f3ee12012-03-18 06:23:41 +00001220 vlan = adapter->vf_cfg[vf].def_vid;
1221 status = be_cmd_set_hsw_config(adapter, vlan, vf + 1,
1222 adapter->vf_cfg[vf].if_handle);
Ajit Khaparde1da87b72010-07-23 01:51:22 +00001223 }
1224
Ajit Khaparde1da87b72010-07-23 01:51:22 +00001225
1226 if (status)
1227 dev_info(&adapter->pdev->dev,
1228 "VLAN %d config on VF %d failed\n", vlan, vf);
1229 return status;
1230}
1231
Ajit Khapardee1d18732010-07-23 01:52:13 +00001232static int be_set_vf_tx_rate(struct net_device *netdev,
1233 int vf, int rate)
1234{
1235 struct be_adapter *adapter = netdev_priv(netdev);
1236 int status = 0;
1237
Sathya Perla11ac75e2011-12-13 00:58:50 +00001238 if (!sriov_enabled(adapter))
Ajit Khapardee1d18732010-07-23 01:52:13 +00001239 return -EPERM;
1240
Ajit Khaparde94f434c2011-12-30 12:15:30 +00001241 if (vf >= adapter->num_vfs)
Ajit Khapardee1d18732010-07-23 01:52:13 +00001242 return -EINVAL;
1243
Ajit Khaparde94f434c2011-12-30 12:15:30 +00001244 if (rate < 100 || rate > 10000) {
1245 dev_err(&adapter->pdev->dev,
1246 "tx rate must be between 100 and 10000 Mbps\n");
1247 return -EINVAL;
1248 }
Ajit Khapardee1d18732010-07-23 01:52:13 +00001249
Padmanabh Ratnakard5c18472012-10-20 06:01:53 +00001250 if (lancer_chip(adapter))
1251 status = be_cmd_set_profile_config(adapter, rate / 10, vf + 1);
1252 else
1253 status = be_cmd_set_qos(adapter, rate / 10, vf + 1);
Ajit Khapardee1d18732010-07-23 01:52:13 +00001254
1255 if (status)
Ajit Khaparde94f434c2011-12-30 12:15:30 +00001256 dev_err(&adapter->pdev->dev,
Ajit Khapardee1d18732010-07-23 01:52:13 +00001257 "tx rate %d on VF %d failed\n", rate, vf);
Ajit Khaparde94f434c2011-12-30 12:15:30 +00001258 else
1259 adapter->vf_cfg[vf].tx_rate = rate;
Ajit Khapardee1d18732010-07-23 01:52:13 +00001260 return status;
1261}
1262
Sathya Perla10ef9ab2012-02-09 18:05:27 +00001263static void be_eqd_update(struct be_adapter *adapter, struct be_eq_obj *eqo)
Sathya Perla6b7c5b92009-03-11 23:32:03 -07001264{
Sathya Perla10ef9ab2012-02-09 18:05:27 +00001265 struct be_rx_stats *stats = rx_stats(&adapter->rx_obj[eqo->idx]);
Sathya Perla4097f662009-03-24 16:40:13 -07001266 ulong now = jiffies;
Sathya Perlaac124ff2011-07-25 19:10:14 +00001267 ulong delta = now - stats->rx_jiffies;
Sathya Perlaab1594e2011-07-25 19:10:15 +00001268 u64 pkts;
1269 unsigned int start, eqd;
Sathya Perlaac124ff2011-07-25 19:10:14 +00001270
Sathya Perla10ef9ab2012-02-09 18:05:27 +00001271 if (!eqo->enable_aic) {
1272 eqd = eqo->eqd;
1273 goto modify_eqd;
1274 }
1275
1276 if (eqo->idx >= adapter->num_rx_qs)
Sathya Perlaac124ff2011-07-25 19:10:14 +00001277 return;
Sathya Perla6b7c5b92009-03-11 23:32:03 -07001278
Sathya Perla10ef9ab2012-02-09 18:05:27 +00001279 stats = rx_stats(&adapter->rx_obj[eqo->idx]);
1280
Sathya Perla4097f662009-03-24 16:40:13 -07001281 /* Wrapped around */
Sathya Perla3abcded2010-10-03 22:12:27 -07001282 if (time_before(now, stats->rx_jiffies)) {
1283 stats->rx_jiffies = now;
Sathya Perla4097f662009-03-24 16:40:13 -07001284 return;
1285 }
1286
Sathya Perlaac124ff2011-07-25 19:10:14 +00001287 /* Update once a second */
1288 if (delta < HZ)
Sathya Perla4097f662009-03-24 16:40:13 -07001289 return;
1290
Sathya Perlaab1594e2011-07-25 19:10:15 +00001291 do {
1292 start = u64_stats_fetch_begin_bh(&stats->sync);
1293 pkts = stats->rx_pkts;
1294 } while (u64_stats_fetch_retry_bh(&stats->sync, start));
1295
Eric Dumazet68c3e5a2011-08-09 06:23:07 +00001296 stats->rx_pps = (unsigned long)(pkts - stats->rx_pkts_prev) / (delta / HZ);
Sathya Perlaab1594e2011-07-25 19:10:15 +00001297 stats->rx_pkts_prev = pkts;
Sathya Perla3abcded2010-10-03 22:12:27 -07001298 stats->rx_jiffies = now;
Sathya Perla10ef9ab2012-02-09 18:05:27 +00001299 eqd = (stats->rx_pps / 110000) << 3;
1300 eqd = min(eqd, eqo->max_eqd);
1301 eqd = max(eqd, eqo->min_eqd);
Sathya Perlaac124ff2011-07-25 19:10:14 +00001302 if (eqd < 10)
1303 eqd = 0;
Sathya Perla10ef9ab2012-02-09 18:05:27 +00001304
1305modify_eqd:
1306 if (eqd != eqo->cur_eqd) {
1307 be_cmd_modify_eqd(adapter, eqo->q.id, eqd);
1308 eqo->cur_eqd = eqd;
Sathya Perlaac124ff2011-07-25 19:10:14 +00001309 }
Sathya Perla4097f662009-03-24 16:40:13 -07001310}
1311
Sathya Perla3abcded2010-10-03 22:12:27 -07001312static void be_rx_stats_update(struct be_rx_obj *rxo,
Sathya Perla2e588f82011-03-11 02:49:26 +00001313 struct be_rx_compl_info *rxcp)
Sathya Perla4097f662009-03-24 16:40:13 -07001314{
Sathya Perlaac124ff2011-07-25 19:10:14 +00001315 struct be_rx_stats *stats = rx_stats(rxo);
Sathya Perla4097f662009-03-24 16:40:13 -07001316
Sathya Perlaab1594e2011-07-25 19:10:15 +00001317 u64_stats_update_begin(&stats->sync);
Sathya Perla3abcded2010-10-03 22:12:27 -07001318 stats->rx_compl++;
Sathya Perla2e588f82011-03-11 02:49:26 +00001319 stats->rx_bytes += rxcp->pkt_size;
Sathya Perla3abcded2010-10-03 22:12:27 -07001320 stats->rx_pkts++;
Sathya Perla2e588f82011-03-11 02:49:26 +00001321 if (rxcp->pkt_type == BE_MULTICAST_PACKET)
Sathya Perla3abcded2010-10-03 22:12:27 -07001322 stats->rx_mcast_pkts++;
Sathya Perla2e588f82011-03-11 02:49:26 +00001323 if (rxcp->err)
Sathya Perlaac124ff2011-07-25 19:10:14 +00001324 stats->rx_compl_err++;
Sathya Perlaab1594e2011-07-25 19:10:15 +00001325 u64_stats_update_end(&stats->sync);
Sathya Perla6b7c5b92009-03-11 23:32:03 -07001326}
1327
Sathya Perla2e588f82011-03-11 02:49:26 +00001328static inline bool csum_passed(struct be_rx_compl_info *rxcp)
Ajit Khaparde728a9972009-04-13 15:41:22 -07001329{
Padmanabh Ratnakar19fad862011-03-07 03:08:16 +00001330 /* L4 checksum is not reliable for non TCP/UDP packets.
1331 * Also ignore ipcksm for ipv6 pkts */
Sathya Perla2e588f82011-03-11 02:49:26 +00001332 return (rxcp->tcpf || rxcp->udpf) && rxcp->l4_csum &&
1333 (rxcp->ip_csum || rxcp->ipv6);
Ajit Khaparde728a9972009-04-13 15:41:22 -07001334}
1335
Sathya Perla10ef9ab2012-02-09 18:05:27 +00001336static struct be_rx_page_info *get_rx_page_info(struct be_rx_obj *rxo,
1337 u16 frag_idx)
Sathya Perla6b7c5b92009-03-11 23:32:03 -07001338{
Sathya Perla10ef9ab2012-02-09 18:05:27 +00001339 struct be_adapter *adapter = rxo->adapter;
Sathya Perla6b7c5b92009-03-11 23:32:03 -07001340 struct be_rx_page_info *rx_page_info;
Sathya Perla3abcded2010-10-03 22:12:27 -07001341 struct be_queue_info *rxq = &rxo->q;
Sathya Perla6b7c5b92009-03-11 23:32:03 -07001342
Sathya Perla3abcded2010-10-03 22:12:27 -07001343 rx_page_info = &rxo->page_info_tbl[frag_idx];
Sathya Perla6b7c5b92009-03-11 23:32:03 -07001344 BUG_ON(!rx_page_info->page);
1345
Ajit Khaparde205859a2010-02-09 01:34:21 +00001346 if (rx_page_info->last_page_user) {
Ivan Vecera2b7bceb2011-02-02 08:05:12 +00001347 dma_unmap_page(&adapter->pdev->dev,
1348 dma_unmap_addr(rx_page_info, bus),
1349 adapter->big_page_size, DMA_FROM_DEVICE);
Ajit Khaparde205859a2010-02-09 01:34:21 +00001350 rx_page_info->last_page_user = false;
1351 }
Sathya Perla6b7c5b92009-03-11 23:32:03 -07001352
1353 atomic_dec(&rxq->used);
1354 return rx_page_info;
1355}
1356
1357/* Throwaway the data in the Rx completion */
Sathya Perla10ef9ab2012-02-09 18:05:27 +00001358static void be_rx_compl_discard(struct be_rx_obj *rxo,
1359 struct be_rx_compl_info *rxcp)
Sathya Perla6b7c5b92009-03-11 23:32:03 -07001360{
Sathya Perla3abcded2010-10-03 22:12:27 -07001361 struct be_queue_info *rxq = &rxo->q;
Sathya Perla6b7c5b92009-03-11 23:32:03 -07001362 struct be_rx_page_info *page_info;
Sathya Perla2e588f82011-03-11 02:49:26 +00001363 u16 i, num_rcvd = rxcp->num_rcvd;
Sathya Perla6b7c5b92009-03-11 23:32:03 -07001364
Padmanabh Ratnakare80d9da2011-03-07 03:07:58 +00001365 for (i = 0; i < num_rcvd; i++) {
Sathya Perla10ef9ab2012-02-09 18:05:27 +00001366 page_info = get_rx_page_info(rxo, rxcp->rxq_idx);
Padmanabh Ratnakare80d9da2011-03-07 03:07:58 +00001367 put_page(page_info->page);
1368 memset(page_info, 0, sizeof(*page_info));
Sathya Perla2e588f82011-03-11 02:49:26 +00001369 index_inc(&rxcp->rxq_idx, rxq->len);
Sathya Perla6b7c5b92009-03-11 23:32:03 -07001370 }
1371}
1372
1373/*
1374 * skb_fill_rx_data forms a complete skb for an ether frame
1375 * indicated by rxcp.
1376 */
Sathya Perla10ef9ab2012-02-09 18:05:27 +00001377static void skb_fill_rx_data(struct be_rx_obj *rxo, struct sk_buff *skb,
1378 struct be_rx_compl_info *rxcp)
Sathya Perla6b7c5b92009-03-11 23:32:03 -07001379{
Sathya Perla3abcded2010-10-03 22:12:27 -07001380 struct be_queue_info *rxq = &rxo->q;
Sathya Perla6b7c5b92009-03-11 23:32:03 -07001381 struct be_rx_page_info *page_info;
Sathya Perla2e588f82011-03-11 02:49:26 +00001382 u16 i, j;
1383 u16 hdr_len, curr_frag_len, remaining;
Sathya Perla6b7c5b92009-03-11 23:32:03 -07001384 u8 *start;
1385
Sathya Perla10ef9ab2012-02-09 18:05:27 +00001386 page_info = get_rx_page_info(rxo, rxcp->rxq_idx);
Sathya Perla6b7c5b92009-03-11 23:32:03 -07001387 start = page_address(page_info->page) + page_info->page_offset;
1388 prefetch(start);
1389
1390 /* Copy data in the first descriptor of this completion */
Sathya Perla2e588f82011-03-11 02:49:26 +00001391 curr_frag_len = min(rxcp->pkt_size, rx_frag_size);
Sathya Perla6b7c5b92009-03-11 23:32:03 -07001392
Sathya Perla6b7c5b92009-03-11 23:32:03 -07001393 skb->len = curr_frag_len;
1394 if (curr_frag_len <= BE_HDR_LEN) { /* tiny packet */
Eric Dumazetac1ae5f2012-07-13 03:19:41 +00001395 memcpy(skb->data, start, curr_frag_len);
Sathya Perla6b7c5b92009-03-11 23:32:03 -07001396 /* Complete packet has now been moved to data */
1397 put_page(page_info->page);
1398 skb->data_len = 0;
1399 skb->tail += curr_frag_len;
1400 } else {
Eric Dumazetac1ae5f2012-07-13 03:19:41 +00001401 hdr_len = ETH_HLEN;
1402 memcpy(skb->data, start, hdr_len);
Sathya Perla6b7c5b92009-03-11 23:32:03 -07001403 skb_shinfo(skb)->nr_frags = 1;
Ian Campbellb061b392011-08-29 23:18:23 +00001404 skb_frag_set_page(skb, 0, page_info->page);
Sathya Perla6b7c5b92009-03-11 23:32:03 -07001405 skb_shinfo(skb)->frags[0].page_offset =
1406 page_info->page_offset + hdr_len;
Eric Dumazet9e903e02011-10-18 21:00:24 +00001407 skb_frag_size_set(&skb_shinfo(skb)->frags[0], curr_frag_len - hdr_len);
Sathya Perla6b7c5b92009-03-11 23:32:03 -07001408 skb->data_len = curr_frag_len - hdr_len;
Eric Dumazetbdb28a92011-10-13 06:31:02 +00001409 skb->truesize += rx_frag_size;
Sathya Perla6b7c5b92009-03-11 23:32:03 -07001410 skb->tail += hdr_len;
1411 }
Ajit Khaparde205859a2010-02-09 01:34:21 +00001412 page_info->page = NULL;
Sathya Perla6b7c5b92009-03-11 23:32:03 -07001413
Sathya Perla2e588f82011-03-11 02:49:26 +00001414 if (rxcp->pkt_size <= rx_frag_size) {
1415 BUG_ON(rxcp->num_rcvd != 1);
1416 return;
Sathya Perla6b7c5b92009-03-11 23:32:03 -07001417 }
1418
1419 /* More frags present for this completion */
Sathya Perla2e588f82011-03-11 02:49:26 +00001420 index_inc(&rxcp->rxq_idx, rxq->len);
1421 remaining = rxcp->pkt_size - curr_frag_len;
1422 for (i = 1, j = 0; i < rxcp->num_rcvd; i++) {
Sathya Perla10ef9ab2012-02-09 18:05:27 +00001423 page_info = get_rx_page_info(rxo, rxcp->rxq_idx);
Sathya Perla2e588f82011-03-11 02:49:26 +00001424 curr_frag_len = min(remaining, rx_frag_size);
Sathya Perla6b7c5b92009-03-11 23:32:03 -07001425
Ajit Khapardebd46cb62009-06-26 02:51:07 +00001426 /* Coalesce all frags from the same physical page in one slot */
1427 if (page_info->page_offset == 0) {
1428 /* Fresh page */
1429 j++;
Ian Campbellb061b392011-08-29 23:18:23 +00001430 skb_frag_set_page(skb, j, page_info->page);
Ajit Khapardebd46cb62009-06-26 02:51:07 +00001431 skb_shinfo(skb)->frags[j].page_offset =
1432 page_info->page_offset;
Eric Dumazet9e903e02011-10-18 21:00:24 +00001433 skb_frag_size_set(&skb_shinfo(skb)->frags[j], 0);
Ajit Khapardebd46cb62009-06-26 02:51:07 +00001434 skb_shinfo(skb)->nr_frags++;
1435 } else {
1436 put_page(page_info->page);
1437 }
1438
Eric Dumazet9e903e02011-10-18 21:00:24 +00001439 skb_frag_size_add(&skb_shinfo(skb)->frags[j], curr_frag_len);
Sathya Perla6b7c5b92009-03-11 23:32:03 -07001440 skb->len += curr_frag_len;
1441 skb->data_len += curr_frag_len;
Eric Dumazetbdb28a92011-10-13 06:31:02 +00001442 skb->truesize += rx_frag_size;
Sathya Perla2e588f82011-03-11 02:49:26 +00001443 remaining -= curr_frag_len;
1444 index_inc(&rxcp->rxq_idx, rxq->len);
Ajit Khaparde205859a2010-02-09 01:34:21 +00001445 page_info->page = NULL;
Sathya Perla6b7c5b92009-03-11 23:32:03 -07001446 }
Ajit Khapardebd46cb62009-06-26 02:51:07 +00001447 BUG_ON(j > MAX_SKB_FRAGS);
Sathya Perla6b7c5b92009-03-11 23:32:03 -07001448}
1449
Ajit Khaparde5be93b92009-07-21 12:36:19 -07001450/* Process the RX completion indicated by rxcp when GRO is disabled */
Sathya Perla10ef9ab2012-02-09 18:05:27 +00001451static void be_rx_compl_process(struct be_rx_obj *rxo,
1452 struct be_rx_compl_info *rxcp)
Sathya Perla6b7c5b92009-03-11 23:32:03 -07001453{
Sathya Perla10ef9ab2012-02-09 18:05:27 +00001454 struct be_adapter *adapter = rxo->adapter;
Michał Mirosław6332c8d2011-04-07 02:43:48 +00001455 struct net_device *netdev = adapter->netdev;
Sathya Perla6b7c5b92009-03-11 23:32:03 -07001456 struct sk_buff *skb;
Sathya Perla89420422010-02-17 01:35:26 +00001457
Eric Dumazetbb349bb2012-01-25 03:56:30 +00001458 skb = netdev_alloc_skb_ip_align(netdev, BE_RX_SKB_ALLOC_SIZE);
Sathya Perlaa058a632010-02-17 01:34:22 +00001459 if (unlikely(!skb)) {
Sathya Perlaac124ff2011-07-25 19:10:14 +00001460 rx_stats(rxo)->rx_drops_no_skbs++;
Sathya Perla10ef9ab2012-02-09 18:05:27 +00001461 be_rx_compl_discard(rxo, rxcp);
Sathya Perla6b7c5b92009-03-11 23:32:03 -07001462 return;
1463 }
1464
Sathya Perla10ef9ab2012-02-09 18:05:27 +00001465 skb_fill_rx_data(rxo, skb, rxcp);
Sathya Perla6b7c5b92009-03-11 23:32:03 -07001466
Michał Mirosław6332c8d2011-04-07 02:43:48 +00001467 if (likely((netdev->features & NETIF_F_RXCSUM) && csum_passed(rxcp)))
Ajit Khaparde728a9972009-04-13 15:41:22 -07001468 skb->ip_summed = CHECKSUM_UNNECESSARY;
Somnath Koturc6ce2f42010-10-25 01:11:58 +00001469 else
1470 skb_checksum_none_assert(skb);
Sathya Perla6b7c5b92009-03-11 23:32:03 -07001471
Michał Mirosław6332c8d2011-04-07 02:43:48 +00001472 skb->protocol = eth_type_trans(skb, netdev);
Somnath Koturaaa6dae2012-05-02 03:40:49 +00001473 skb_record_rx_queue(skb, rxo - &adapter->rx_obj[0]);
Sathya Perla10ef9ab2012-02-09 18:05:27 +00001474 if (netdev->features & NETIF_F_RXHASH)
Ajit Khaparde4b972912011-04-06 18:07:43 +00001475 skb->rxhash = rxcp->rss_hash;
1476
Sathya Perla6b7c5b92009-03-11 23:32:03 -07001477
Jiri Pirko343e43c2011-08-25 02:50:51 +00001478 if (rxcp->vlanf)
Patrick McHardy86a9bad2013-04-19 02:04:30 +00001479 __vlan_hwaccel_put_tag(skb, htons(ETH_P_8021Q), rxcp->vlan_tag);
Ajit Khaparde4c5102f2011-07-12 22:10:01 -07001480
1481 netif_receive_skb(skb);
Sathya Perla6b7c5b92009-03-11 23:32:03 -07001482}
1483
Ajit Khaparde5be93b92009-07-21 12:36:19 -07001484/* Process the RX completion indicated by rxcp when GRO is enabled */
Jingoo Han4188e7d2013-08-05 18:02:02 +09001485static void be_rx_compl_process_gro(struct be_rx_obj *rxo,
1486 struct napi_struct *napi,
1487 struct be_rx_compl_info *rxcp)
Sathya Perla6b7c5b92009-03-11 23:32:03 -07001488{
Sathya Perla10ef9ab2012-02-09 18:05:27 +00001489 struct be_adapter *adapter = rxo->adapter;
Sathya Perla6b7c5b92009-03-11 23:32:03 -07001490 struct be_rx_page_info *page_info;
Ajit Khaparde5be93b92009-07-21 12:36:19 -07001491 struct sk_buff *skb = NULL;
Sathya Perla3abcded2010-10-03 22:12:27 -07001492 struct be_queue_info *rxq = &rxo->q;
Sathya Perla2e588f82011-03-11 02:49:26 +00001493 u16 remaining, curr_frag_len;
1494 u16 i, j;
Ajit Khaparde3968fa12011-02-20 11:41:53 +00001495
Sathya Perla10ef9ab2012-02-09 18:05:27 +00001496 skb = napi_get_frags(napi);
Ajit Khaparde5be93b92009-07-21 12:36:19 -07001497 if (!skb) {
Sathya Perla10ef9ab2012-02-09 18:05:27 +00001498 be_rx_compl_discard(rxo, rxcp);
Ajit Khaparde5be93b92009-07-21 12:36:19 -07001499 return;
1500 }
1501
Sathya Perla2e588f82011-03-11 02:49:26 +00001502 remaining = rxcp->pkt_size;
1503 for (i = 0, j = -1; i < rxcp->num_rcvd; i++) {
Sathya Perla10ef9ab2012-02-09 18:05:27 +00001504 page_info = get_rx_page_info(rxo, rxcp->rxq_idx);
Sathya Perla6b7c5b92009-03-11 23:32:03 -07001505
1506 curr_frag_len = min(remaining, rx_frag_size);
1507
Ajit Khapardebd46cb62009-06-26 02:51:07 +00001508 /* Coalesce all frags from the same physical page in one slot */
1509 if (i == 0 || page_info->page_offset == 0) {
1510 /* First frag or Fresh page */
1511 j++;
Ian Campbellb061b392011-08-29 23:18:23 +00001512 skb_frag_set_page(skb, j, page_info->page);
Ajit Khaparde5be93b92009-07-21 12:36:19 -07001513 skb_shinfo(skb)->frags[j].page_offset =
1514 page_info->page_offset;
Eric Dumazet9e903e02011-10-18 21:00:24 +00001515 skb_frag_size_set(&skb_shinfo(skb)->frags[j], 0);
Ajit Khapardebd46cb62009-06-26 02:51:07 +00001516 } else {
1517 put_page(page_info->page);
1518 }
Eric Dumazet9e903e02011-10-18 21:00:24 +00001519 skb_frag_size_add(&skb_shinfo(skb)->frags[j], curr_frag_len);
Eric Dumazetbdb28a92011-10-13 06:31:02 +00001520 skb->truesize += rx_frag_size;
Sathya Perla6b7c5b92009-03-11 23:32:03 -07001521 remaining -= curr_frag_len;
Sathya Perla2e588f82011-03-11 02:49:26 +00001522 index_inc(&rxcp->rxq_idx, rxq->len);
Sathya Perla6b7c5b92009-03-11 23:32:03 -07001523 memset(page_info, 0, sizeof(*page_info));
1524 }
Ajit Khapardebd46cb62009-06-26 02:51:07 +00001525 BUG_ON(j > MAX_SKB_FRAGS);
Sathya Perla6b7c5b92009-03-11 23:32:03 -07001526
Ajit Khaparde5be93b92009-07-21 12:36:19 -07001527 skb_shinfo(skb)->nr_frags = j + 1;
Sathya Perla2e588f82011-03-11 02:49:26 +00001528 skb->len = rxcp->pkt_size;
1529 skb->data_len = rxcp->pkt_size;
Ajit Khaparde5be93b92009-07-21 12:36:19 -07001530 skb->ip_summed = CHECKSUM_UNNECESSARY;
Somnath Koturaaa6dae2012-05-02 03:40:49 +00001531 skb_record_rx_queue(skb, rxo - &adapter->rx_obj[0]);
Ajit Khaparde4b972912011-04-06 18:07:43 +00001532 if (adapter->netdev->features & NETIF_F_RXHASH)
1533 skb->rxhash = rxcp->rss_hash;
Ajit Khaparde5be93b92009-07-21 12:36:19 -07001534
Jiri Pirko343e43c2011-08-25 02:50:51 +00001535 if (rxcp->vlanf)
Patrick McHardy86a9bad2013-04-19 02:04:30 +00001536 __vlan_hwaccel_put_tag(skb, htons(ETH_P_8021Q), rxcp->vlan_tag);
Ajit Khaparde4c5102f2011-07-12 22:10:01 -07001537
Sathya Perla10ef9ab2012-02-09 18:05:27 +00001538 napi_gro_frags(napi);
Sathya Perla6b7c5b92009-03-11 23:32:03 -07001539}
1540
Sathya Perla10ef9ab2012-02-09 18:05:27 +00001541static void be_parse_rx_compl_v1(struct be_eth_rx_compl *compl,
1542 struct be_rx_compl_info *rxcp)
Sathya Perla6b7c5b92009-03-11 23:32:03 -07001543{
Sathya Perla2e588f82011-03-11 02:49:26 +00001544 rxcp->pkt_size =
1545 AMAP_GET_BITS(struct amap_eth_rx_compl_v1, pktsize, compl);
1546 rxcp->vlanf = AMAP_GET_BITS(struct amap_eth_rx_compl_v1, vtp, compl);
1547 rxcp->err = AMAP_GET_BITS(struct amap_eth_rx_compl_v1, err, compl);
1548 rxcp->tcpf = AMAP_GET_BITS(struct amap_eth_rx_compl_v1, tcpf, compl);
Padmanabh Ratnakar9ecb42f2011-03-15 14:57:09 -07001549 rxcp->udpf = AMAP_GET_BITS(struct amap_eth_rx_compl_v1, udpf, compl);
Sathya Perla2e588f82011-03-11 02:49:26 +00001550 rxcp->ip_csum =
1551 AMAP_GET_BITS(struct amap_eth_rx_compl_v1, ipcksm, compl);
1552 rxcp->l4_csum =
1553 AMAP_GET_BITS(struct amap_eth_rx_compl_v1, l4_cksm, compl);
1554 rxcp->ipv6 =
1555 AMAP_GET_BITS(struct amap_eth_rx_compl_v1, ip_version, compl);
1556 rxcp->rxq_idx =
1557 AMAP_GET_BITS(struct amap_eth_rx_compl_v1, fragndx, compl);
1558 rxcp->num_rcvd =
1559 AMAP_GET_BITS(struct amap_eth_rx_compl_v1, numfrags, compl);
1560 rxcp->pkt_type =
1561 AMAP_GET_BITS(struct amap_eth_rx_compl_v1, cast_enc, compl);
Ajit Khaparde4b972912011-04-06 18:07:43 +00001562 rxcp->rss_hash =
Sarveshwar Bandic2979772012-07-25 21:29:50 +00001563 AMAP_GET_BITS(struct amap_eth_rx_compl_v1, rsshash, compl);
Sathya Perla15d72182011-03-21 20:49:26 +00001564 if (rxcp->vlanf) {
1565 rxcp->vtm = AMAP_GET_BITS(struct amap_eth_rx_compl_v1, vtm,
David S. Miller3c709f82011-05-11 14:26:15 -04001566 compl);
1567 rxcp->vlan_tag = AMAP_GET_BITS(struct amap_eth_rx_compl_v1, vlan_tag,
1568 compl);
Sathya Perla15d72182011-03-21 20:49:26 +00001569 }
Sathya Perla12004ae2011-08-02 19:57:46 +00001570 rxcp->port = AMAP_GET_BITS(struct amap_eth_rx_compl_v1, port, compl);
Sathya Perla2e588f82011-03-11 02:49:26 +00001571}
Sathya Perla6b7c5b92009-03-11 23:32:03 -07001572
Sathya Perla10ef9ab2012-02-09 18:05:27 +00001573static void be_parse_rx_compl_v0(struct be_eth_rx_compl *compl,
1574 struct be_rx_compl_info *rxcp)
Sathya Perla2e588f82011-03-11 02:49:26 +00001575{
1576 rxcp->pkt_size =
1577 AMAP_GET_BITS(struct amap_eth_rx_compl_v0, pktsize, compl);
1578 rxcp->vlanf = AMAP_GET_BITS(struct amap_eth_rx_compl_v0, vtp, compl);
1579 rxcp->err = AMAP_GET_BITS(struct amap_eth_rx_compl_v0, err, compl);
1580 rxcp->tcpf = AMAP_GET_BITS(struct amap_eth_rx_compl_v0, tcpf, compl);
Padmanabh Ratnakar9ecb42f2011-03-15 14:57:09 -07001581 rxcp->udpf = AMAP_GET_BITS(struct amap_eth_rx_compl_v0, udpf, compl);
Sathya Perla2e588f82011-03-11 02:49:26 +00001582 rxcp->ip_csum =
1583 AMAP_GET_BITS(struct amap_eth_rx_compl_v0, ipcksm, compl);
1584 rxcp->l4_csum =
1585 AMAP_GET_BITS(struct amap_eth_rx_compl_v0, l4_cksm, compl);
1586 rxcp->ipv6 =
1587 AMAP_GET_BITS(struct amap_eth_rx_compl_v0, ip_version, compl);
1588 rxcp->rxq_idx =
1589 AMAP_GET_BITS(struct amap_eth_rx_compl_v0, fragndx, compl);
1590 rxcp->num_rcvd =
1591 AMAP_GET_BITS(struct amap_eth_rx_compl_v0, numfrags, compl);
1592 rxcp->pkt_type =
1593 AMAP_GET_BITS(struct amap_eth_rx_compl_v0, cast_enc, compl);
Ajit Khaparde4b972912011-04-06 18:07:43 +00001594 rxcp->rss_hash =
Sarveshwar Bandic2979772012-07-25 21:29:50 +00001595 AMAP_GET_BITS(struct amap_eth_rx_compl_v0, rsshash, compl);
Sathya Perla15d72182011-03-21 20:49:26 +00001596 if (rxcp->vlanf) {
1597 rxcp->vtm = AMAP_GET_BITS(struct amap_eth_rx_compl_v0, vtm,
David S. Miller3c709f82011-05-11 14:26:15 -04001598 compl);
1599 rxcp->vlan_tag = AMAP_GET_BITS(struct amap_eth_rx_compl_v0, vlan_tag,
1600 compl);
Sathya Perla15d72182011-03-21 20:49:26 +00001601 }
Sathya Perla12004ae2011-08-02 19:57:46 +00001602 rxcp->port = AMAP_GET_BITS(struct amap_eth_rx_compl_v0, port, compl);
Somnath Koture38b1702013-05-29 22:55:56 +00001603 rxcp->ip_frag = AMAP_GET_BITS(struct amap_eth_rx_compl_v0,
1604 ip_frag, compl);
Sathya Perla2e588f82011-03-11 02:49:26 +00001605}
1606
1607static struct be_rx_compl_info *be_rx_compl_get(struct be_rx_obj *rxo)
1608{
1609 struct be_eth_rx_compl *compl = queue_tail_node(&rxo->cq);
1610 struct be_rx_compl_info *rxcp = &rxo->rxcp;
1611 struct be_adapter *adapter = rxo->adapter;
1612
1613 /* For checking the valid bit it is Ok to use either definition as the
1614 * valid bit is at the same position in both v0 and v1 Rx compl */
1615 if (compl->dw[offsetof(struct amap_eth_rx_compl_v1, valid) / 32] == 0)
Sathya Perla6b7c5b92009-03-11 23:32:03 -07001616 return NULL;
1617
Sathya Perlaf3eb62d2010-06-29 00:11:17 +00001618 rmb();
Sathya Perla2e588f82011-03-11 02:49:26 +00001619 be_dws_le_to_cpu(compl, sizeof(*compl));
1620
1621 if (adapter->be3_native)
Sathya Perla10ef9ab2012-02-09 18:05:27 +00001622 be_parse_rx_compl_v1(compl, rxcp);
Sathya Perla2e588f82011-03-11 02:49:26 +00001623 else
Sathya Perla10ef9ab2012-02-09 18:05:27 +00001624 be_parse_rx_compl_v0(compl, rxcp);
Sathya Perla2e588f82011-03-11 02:49:26 +00001625
Somnath Koture38b1702013-05-29 22:55:56 +00001626 if (rxcp->ip_frag)
1627 rxcp->l4_csum = 0;
1628
Sathya Perla15d72182011-03-21 20:49:26 +00001629 if (rxcp->vlanf) {
1630 /* vlanf could be wrongly set in some cards.
1631 * ignore if vtm is not set */
Sathya Perla752961a2011-10-24 02:45:03 +00001632 if ((adapter->function_mode & FLEX10_MODE) && !rxcp->vtm)
Sathya Perla15d72182011-03-21 20:49:26 +00001633 rxcp->vlanf = 0;
Sathya Perla2e588f82011-03-11 02:49:26 +00001634
Sathya Perla15d72182011-03-21 20:49:26 +00001635 if (!lancer_chip(adapter))
David S. Miller3c709f82011-05-11 14:26:15 -04001636 rxcp->vlan_tag = swab16(rxcp->vlan_tag);
Sathya Perla2e588f82011-03-11 02:49:26 +00001637
Somnath Kotur939cf302011-08-18 21:51:49 -07001638 if (adapter->pvid == (rxcp->vlan_tag & VLAN_VID_MASK) &&
David S. Miller3c709f82011-05-11 14:26:15 -04001639 !adapter->vlan_tag[rxcp->vlan_tag])
Sathya Perla15d72182011-03-21 20:49:26 +00001640 rxcp->vlanf = 0;
1641 }
Sathya Perla2e588f82011-03-11 02:49:26 +00001642
1643 /* As the compl has been parsed, reset it; we wont touch it again */
1644 compl->dw[offsetof(struct amap_eth_rx_compl_v1, valid) / 32] = 0;
Sathya Perla6b7c5b92009-03-11 23:32:03 -07001645
Sathya Perla3abcded2010-10-03 22:12:27 -07001646 queue_tail_inc(&rxo->cq);
Sathya Perla6b7c5b92009-03-11 23:32:03 -07001647 return rxcp;
1648}
1649
Eric Dumazet1829b082011-03-01 05:48:12 +00001650static inline struct page *be_alloc_pages(u32 size, gfp_t gfp)
Sathya Perla6b7c5b92009-03-11 23:32:03 -07001651{
Sathya Perla6b7c5b92009-03-11 23:32:03 -07001652 u32 order = get_order(size);
Eric Dumazet1829b082011-03-01 05:48:12 +00001653
Sathya Perla6b7c5b92009-03-11 23:32:03 -07001654 if (order > 0)
Eric Dumazet1829b082011-03-01 05:48:12 +00001655 gfp |= __GFP_COMP;
1656 return alloc_pages(gfp, order);
Sathya Perla6b7c5b92009-03-11 23:32:03 -07001657}
1658
1659/*
1660 * Allocate a page, split it to fragments of size rx_frag_size and post as
1661 * receive buffers to BE
1662 */
Eric Dumazet1829b082011-03-01 05:48:12 +00001663static void be_post_rx_frags(struct be_rx_obj *rxo, gfp_t gfp)
Sathya Perla6b7c5b92009-03-11 23:32:03 -07001664{
Sathya Perla3abcded2010-10-03 22:12:27 -07001665 struct be_adapter *adapter = rxo->adapter;
Sathya Perla26d92f92010-01-21 22:52:08 -08001666 struct be_rx_page_info *page_info = NULL, *prev_page_info = NULL;
Sathya Perla3abcded2010-10-03 22:12:27 -07001667 struct be_queue_info *rxq = &rxo->q;
Sathya Perla6b7c5b92009-03-11 23:32:03 -07001668 struct page *pagep = NULL;
1669 struct be_eth_rx_d *rxd;
1670 u64 page_dmaaddr = 0, frag_dmaaddr;
1671 u32 posted, page_offset = 0;
1672
Sathya Perla3abcded2010-10-03 22:12:27 -07001673 page_info = &rxo->page_info_tbl[rxq->head];
Sathya Perla6b7c5b92009-03-11 23:32:03 -07001674 for (posted = 0; posted < MAX_RX_POST && !page_info->page; posted++) {
1675 if (!pagep) {
Eric Dumazet1829b082011-03-01 05:48:12 +00001676 pagep = be_alloc_pages(adapter->big_page_size, gfp);
Sathya Perla6b7c5b92009-03-11 23:32:03 -07001677 if (unlikely(!pagep)) {
Sathya Perlaac124ff2011-07-25 19:10:14 +00001678 rx_stats(rxo)->rx_post_fail++;
Sathya Perla6b7c5b92009-03-11 23:32:03 -07001679 break;
1680 }
Ivan Vecera2b7bceb2011-02-02 08:05:12 +00001681 page_dmaaddr = dma_map_page(&adapter->pdev->dev, pagep,
1682 0, adapter->big_page_size,
1683 DMA_FROM_DEVICE);
Sathya Perla6b7c5b92009-03-11 23:32:03 -07001684 page_info->page_offset = 0;
1685 } else {
1686 get_page(pagep);
1687 page_info->page_offset = page_offset + rx_frag_size;
1688 }
1689 page_offset = page_info->page_offset;
1690 page_info->page = pagep;
FUJITA Tomonorifac6da52010-04-01 16:53:22 +00001691 dma_unmap_addr_set(page_info, bus, page_dmaaddr);
Sathya Perla6b7c5b92009-03-11 23:32:03 -07001692 frag_dmaaddr = page_dmaaddr + page_info->page_offset;
1693
1694 rxd = queue_head_node(rxq);
1695 rxd->fragpa_lo = cpu_to_le32(frag_dmaaddr & 0xFFFFFFFF);
1696 rxd->fragpa_hi = cpu_to_le32(upper_32_bits(frag_dmaaddr));
Sathya Perla6b7c5b92009-03-11 23:32:03 -07001697
1698 /* Any space left in the current big page for another frag? */
1699 if ((page_offset + rx_frag_size + rx_frag_size) >
1700 adapter->big_page_size) {
1701 pagep = NULL;
1702 page_info->last_page_user = true;
1703 }
Sathya Perla26d92f92010-01-21 22:52:08 -08001704
1705 prev_page_info = page_info;
1706 queue_head_inc(rxq);
Sathya Perla10ef9ab2012-02-09 18:05:27 +00001707 page_info = &rxo->page_info_tbl[rxq->head];
Sathya Perla6b7c5b92009-03-11 23:32:03 -07001708 }
1709 if (pagep)
Sathya Perla26d92f92010-01-21 22:52:08 -08001710 prev_page_info->last_page_user = true;
Sathya Perla6b7c5b92009-03-11 23:32:03 -07001711
1712 if (posted) {
Sathya Perla6b7c5b92009-03-11 23:32:03 -07001713 atomic_add(posted, &rxq->used);
Sathya Perla8788fdc2009-07-27 22:52:03 +00001714 be_rxq_notify(adapter, rxq->id, posted);
Sathya Perlaea1dae12009-03-19 23:56:20 -07001715 } else if (atomic_read(&rxq->used) == 0) {
1716 /* Let be_worker replenish when memory is available */
Sathya Perla3abcded2010-10-03 22:12:27 -07001717 rxo->rx_post_starved = true;
Sathya Perla6b7c5b92009-03-11 23:32:03 -07001718 }
Sathya Perla6b7c5b92009-03-11 23:32:03 -07001719}
1720
Sathya Perla5fb379e2009-06-18 00:02:59 +00001721static struct be_eth_tx_compl *be_tx_compl_get(struct be_queue_info *tx_cq)
Sathya Perla6b7c5b92009-03-11 23:32:03 -07001722{
Sathya Perla6b7c5b92009-03-11 23:32:03 -07001723 struct be_eth_tx_compl *txcp = queue_tail_node(tx_cq);
1724
1725 if (txcp->dw[offsetof(struct amap_eth_tx_compl, valid) / 32] == 0)
1726 return NULL;
1727
Sathya Perlaf3eb62d2010-06-29 00:11:17 +00001728 rmb();
Sathya Perla6b7c5b92009-03-11 23:32:03 -07001729 be_dws_le_to_cpu(txcp, sizeof(*txcp));
1730
1731 txcp->dw[offsetof(struct amap_eth_tx_compl, valid) / 32] = 0;
1732
1733 queue_tail_inc(tx_cq);
1734 return txcp;
1735}
1736
Sathya Perla3c8def92011-06-12 20:01:58 +00001737static u16 be_tx_compl_process(struct be_adapter *adapter,
1738 struct be_tx_obj *txo, u16 last_index)
Sathya Perla6b7c5b92009-03-11 23:32:03 -07001739{
Sathya Perla3c8def92011-06-12 20:01:58 +00001740 struct be_queue_info *txq = &txo->q;
Alexander Duycka73b7962009-12-02 16:48:18 +00001741 struct be_eth_wrb *wrb;
Sathya Perla3c8def92011-06-12 20:01:58 +00001742 struct sk_buff **sent_skbs = txo->sent_skb_list;
Sathya Perla6b7c5b92009-03-11 23:32:03 -07001743 struct sk_buff *sent_skb;
Sathya Perlaec43b1a2010-03-22 20:41:34 +00001744 u16 cur_index, num_wrbs = 1; /* account for hdr wrb */
1745 bool unmap_skb_hdr = true;
Sathya Perla6b7c5b92009-03-11 23:32:03 -07001746
Sathya Perlaec43b1a2010-03-22 20:41:34 +00001747 sent_skb = sent_skbs[txq->tail];
Sathya Perla6b7c5b92009-03-11 23:32:03 -07001748 BUG_ON(!sent_skb);
Sathya Perlaec43b1a2010-03-22 20:41:34 +00001749 sent_skbs[txq->tail] = NULL;
1750
1751 /* skip header wrb */
Alexander Duycka73b7962009-12-02 16:48:18 +00001752 queue_tail_inc(txq);
Sathya Perla6b7c5b92009-03-11 23:32:03 -07001753
Sathya Perlaec43b1a2010-03-22 20:41:34 +00001754 do {
Sathya Perla6b7c5b92009-03-11 23:32:03 -07001755 cur_index = txq->tail;
Alexander Duycka73b7962009-12-02 16:48:18 +00001756 wrb = queue_tail_node(txq);
Ivan Vecera2b7bceb2011-02-02 08:05:12 +00001757 unmap_tx_frag(&adapter->pdev->dev, wrb,
1758 (unmap_skb_hdr && skb_headlen(sent_skb)));
Sathya Perlaec43b1a2010-03-22 20:41:34 +00001759 unmap_skb_hdr = false;
1760
Sathya Perla6b7c5b92009-03-11 23:32:03 -07001761 num_wrbs++;
1762 queue_tail_inc(txq);
Sathya Perlaec43b1a2010-03-22 20:41:34 +00001763 } while (cur_index != last_index);
Sathya Perla6b7c5b92009-03-11 23:32:03 -07001764
Sathya Perla6b7c5b92009-03-11 23:32:03 -07001765 kfree_skb(sent_skb);
Padmanabh Ratnakar4d586b82011-05-10 05:13:57 +00001766 return num_wrbs;
Sathya Perla6b7c5b92009-03-11 23:32:03 -07001767}
1768
Sathya Perla10ef9ab2012-02-09 18:05:27 +00001769/* Return the number of events in the event queue */
1770static inline int events_get(struct be_eq_obj *eqo)
Sathya Perla859b1e42009-08-10 03:43:51 +00001771{
1772 struct be_eq_entry *eqe;
Sathya Perla10ef9ab2012-02-09 18:05:27 +00001773 int num = 0;
Sathya Perla859b1e42009-08-10 03:43:51 +00001774
Sathya Perla10ef9ab2012-02-09 18:05:27 +00001775 do {
1776 eqe = queue_tail_node(&eqo->q);
1777 if (eqe->evt == 0)
1778 break;
1779
1780 rmb();
Sathya Perla859b1e42009-08-10 03:43:51 +00001781 eqe->evt = 0;
1782 num++;
Sathya Perla10ef9ab2012-02-09 18:05:27 +00001783 queue_tail_inc(&eqo->q);
1784 } while (true);
Sathya Perla859b1e42009-08-10 03:43:51 +00001785
1786 return num;
1787}
1788
Sathya Perla10ef9ab2012-02-09 18:05:27 +00001789/* Leaves the EQ is disarmed state */
1790static void be_eq_clean(struct be_eq_obj *eqo)
1791{
1792 int num = events_get(eqo);
1793
1794 be_eq_notify(eqo->adapter, eqo->q.id, false, true, num);
1795}
1796
1797static void be_rx_cq_clean(struct be_rx_obj *rxo)
Sathya Perla6b7c5b92009-03-11 23:32:03 -07001798{
1799 struct be_rx_page_info *page_info;
Sathya Perla3abcded2010-10-03 22:12:27 -07001800 struct be_queue_info *rxq = &rxo->q;
1801 struct be_queue_info *rx_cq = &rxo->cq;
Sathya Perla2e588f82011-03-11 02:49:26 +00001802 struct be_rx_compl_info *rxcp;
Sathya Perlad23e9462012-12-17 19:38:51 +00001803 struct be_adapter *adapter = rxo->adapter;
1804 int flush_wait = 0;
Sathya Perla6b7c5b92009-03-11 23:32:03 -07001805 u16 tail;
1806
Sathya Perlad23e9462012-12-17 19:38:51 +00001807 /* Consume pending rx completions.
1808 * Wait for the flush completion (identified by zero num_rcvd)
1809 * to arrive. Notify CQ even when there are no more CQ entries
1810 * for HW to flush partially coalesced CQ entries.
1811 * In Lancer, there is no need to wait for flush compl.
1812 */
1813 for (;;) {
1814 rxcp = be_rx_compl_get(rxo);
1815 if (rxcp == NULL) {
1816 if (lancer_chip(adapter))
1817 break;
1818
1819 if (flush_wait++ > 10 || be_hw_error(adapter)) {
1820 dev_warn(&adapter->pdev->dev,
1821 "did not receive flush compl\n");
1822 break;
1823 }
1824 be_cq_notify(adapter, rx_cq->id, true, 0);
1825 mdelay(1);
1826 } else {
1827 be_rx_compl_discard(rxo, rxcp);
Sathya Perla3f5dffe2013-05-08 02:05:49 +00001828 be_cq_notify(adapter, rx_cq->id, false, 1);
Sathya Perlad23e9462012-12-17 19:38:51 +00001829 if (rxcp->num_rcvd == 0)
1830 break;
1831 }
Sathya Perla6b7c5b92009-03-11 23:32:03 -07001832 }
1833
Sathya Perlad23e9462012-12-17 19:38:51 +00001834 /* After cleanup, leave the CQ in unarmed state */
1835 be_cq_notify(adapter, rx_cq->id, false, 0);
1836
1837 /* Then free posted rx buffers that were not used */
Sathya Perla6b7c5b92009-03-11 23:32:03 -07001838 tail = (rxq->head + rxq->len - atomic_read(&rxq->used)) % rxq->len;
Sathya Perlacdab23b2009-08-10 03:43:23 +00001839 for (; atomic_read(&rxq->used) > 0; index_inc(&tail, rxq->len)) {
Sathya Perla10ef9ab2012-02-09 18:05:27 +00001840 page_info = get_rx_page_info(rxo, tail);
Sathya Perla6b7c5b92009-03-11 23:32:03 -07001841 put_page(page_info->page);
1842 memset(page_info, 0, sizeof(*page_info));
1843 }
1844 BUG_ON(atomic_read(&rxq->used));
Sathya Perla482c9e72011-06-29 23:33:17 +00001845 rxq->tail = rxq->head = 0;
Sathya Perla6b7c5b92009-03-11 23:32:03 -07001846}
1847
Sathya Perla0ae57bb2012-02-23 18:50:14 +00001848static void be_tx_compl_clean(struct be_adapter *adapter)
Sathya Perla6b7c5b92009-03-11 23:32:03 -07001849{
Sathya Perla0ae57bb2012-02-23 18:50:14 +00001850 struct be_tx_obj *txo;
1851 struct be_queue_info *txq;
Sathya Perlaa8e91792009-08-10 03:42:43 +00001852 struct be_eth_tx_compl *txcp;
Padmanabh Ratnakar4d586b82011-05-10 05:13:57 +00001853 u16 end_idx, cmpl = 0, timeo = 0, num_wrbs = 0;
Sathya Perlab03388d2010-02-18 00:37:17 +00001854 struct sk_buff *sent_skb;
1855 bool dummy_wrb;
Sathya Perla0ae57bb2012-02-23 18:50:14 +00001856 int i, pending_txqs;
Sathya Perla6b7c5b92009-03-11 23:32:03 -07001857
Sathya Perlaa8e91792009-08-10 03:42:43 +00001858 /* Wait for a max of 200ms for all the tx-completions to arrive. */
1859 do {
Sathya Perla0ae57bb2012-02-23 18:50:14 +00001860 pending_txqs = adapter->num_tx_qs;
1861
1862 for_all_tx_queues(adapter, txo, i) {
1863 txq = &txo->q;
1864 while ((txcp = be_tx_compl_get(&txo->cq))) {
1865 end_idx =
1866 AMAP_GET_BITS(struct amap_eth_tx_compl,
1867 wrb_index, txcp);
1868 num_wrbs += be_tx_compl_process(adapter, txo,
1869 end_idx);
1870 cmpl++;
1871 }
1872 if (cmpl) {
1873 be_cq_notify(adapter, txo->cq.id, false, cmpl);
1874 atomic_sub(num_wrbs, &txq->used);
1875 cmpl = 0;
1876 num_wrbs = 0;
1877 }
1878 if (atomic_read(&txq->used) == 0)
1879 pending_txqs--;
Sathya Perlaa8e91792009-08-10 03:42:43 +00001880 }
1881
Sathya Perla0ae57bb2012-02-23 18:50:14 +00001882 if (pending_txqs == 0 || ++timeo > 200)
Sathya Perlaa8e91792009-08-10 03:42:43 +00001883 break;
1884
1885 mdelay(1);
1886 } while (true);
1887
Sathya Perla0ae57bb2012-02-23 18:50:14 +00001888 for_all_tx_queues(adapter, txo, i) {
1889 txq = &txo->q;
1890 if (atomic_read(&txq->used))
1891 dev_err(&adapter->pdev->dev, "%d pending tx-compls\n",
1892 atomic_read(&txq->used));
Sathya Perlab03388d2010-02-18 00:37:17 +00001893
Sathya Perla0ae57bb2012-02-23 18:50:14 +00001894 /* free posted tx for which compls will never arrive */
1895 while (atomic_read(&txq->used)) {
1896 sent_skb = txo->sent_skb_list[txq->tail];
1897 end_idx = txq->tail;
1898 num_wrbs = wrb_cnt_for_skb(adapter, sent_skb,
1899 &dummy_wrb);
1900 index_adv(&end_idx, num_wrbs - 1, txq->len);
1901 num_wrbs = be_tx_compl_process(adapter, txo, end_idx);
1902 atomic_sub(num_wrbs, &txq->used);
1903 }
Sathya Perlab03388d2010-02-18 00:37:17 +00001904 }
Sathya Perla6b7c5b92009-03-11 23:32:03 -07001905}
1906
Sathya Perla10ef9ab2012-02-09 18:05:27 +00001907static void be_evt_queues_destroy(struct be_adapter *adapter)
1908{
1909 struct be_eq_obj *eqo;
1910 int i;
1911
1912 for_all_evt_queues(adapter, eqo, i) {
Padmanabh Ratnakar19d59aa2012-07-12 03:57:21 +00001913 if (eqo->q.created) {
1914 be_eq_clean(eqo);
Sathya Perla10ef9ab2012-02-09 18:05:27 +00001915 be_cmd_q_destroy(adapter, &eqo->q, QTYPE_EQ);
Padmanabh Ratnakar19d59aa2012-07-12 03:57:21 +00001916 }
Sathya Perla10ef9ab2012-02-09 18:05:27 +00001917 be_queue_free(adapter, &eqo->q);
1918 }
1919}
1920
1921static int be_evt_queues_create(struct be_adapter *adapter)
1922{
1923 struct be_queue_info *eq;
1924 struct be_eq_obj *eqo;
1925 int i, rc;
1926
Sathya Perla92bf14a2013-08-27 16:57:32 +05301927 adapter->num_evt_qs = min_t(u16, num_irqs(adapter),
1928 adapter->cfg_num_qs);
Sathya Perla10ef9ab2012-02-09 18:05:27 +00001929
1930 for_all_evt_queues(adapter, eqo, i) {
1931 eqo->adapter = adapter;
1932 eqo->tx_budget = BE_TX_BUDGET;
1933 eqo->idx = i;
1934 eqo->max_eqd = BE_MAX_EQD;
1935 eqo->enable_aic = true;
1936
1937 eq = &eqo->q;
1938 rc = be_queue_alloc(adapter, eq, EVNT_Q_LEN,
1939 sizeof(struct be_eq_entry));
1940 if (rc)
1941 return rc;
1942
Sathya Perlaf2f781a2013-08-27 16:57:30 +05301943 rc = be_cmd_eq_create(adapter, eqo);
Sathya Perla10ef9ab2012-02-09 18:05:27 +00001944 if (rc)
1945 return rc;
1946 }
Sathya Perla1cfafab2012-02-23 18:50:15 +00001947 return 0;
Sathya Perla10ef9ab2012-02-09 18:05:27 +00001948}
1949
Sathya Perla5fb379e2009-06-18 00:02:59 +00001950static void be_mcc_queues_destroy(struct be_adapter *adapter)
1951{
1952 struct be_queue_info *q;
Sathya Perla5fb379e2009-06-18 00:02:59 +00001953
Sathya Perla8788fdc2009-07-27 22:52:03 +00001954 q = &adapter->mcc_obj.q;
Sathya Perla5fb379e2009-06-18 00:02:59 +00001955 if (q->created)
Sathya Perla8788fdc2009-07-27 22:52:03 +00001956 be_cmd_q_destroy(adapter, q, QTYPE_MCCQ);
Sathya Perla5fb379e2009-06-18 00:02:59 +00001957 be_queue_free(adapter, q);
1958
Sathya Perla8788fdc2009-07-27 22:52:03 +00001959 q = &adapter->mcc_obj.cq;
Sathya Perla5fb379e2009-06-18 00:02:59 +00001960 if (q->created)
Sathya Perla8788fdc2009-07-27 22:52:03 +00001961 be_cmd_q_destroy(adapter, q, QTYPE_CQ);
Sathya Perla5fb379e2009-06-18 00:02:59 +00001962 be_queue_free(adapter, q);
1963}
1964
1965/* Must be called only after TX qs are created as MCC shares TX EQ */
1966static int be_mcc_queues_create(struct be_adapter *adapter)
1967{
1968 struct be_queue_info *q, *cq;
Sathya Perla5fb379e2009-06-18 00:02:59 +00001969
Sathya Perla8788fdc2009-07-27 22:52:03 +00001970 cq = &adapter->mcc_obj.cq;
Sathya Perla5fb379e2009-06-18 00:02:59 +00001971 if (be_queue_alloc(adapter, cq, MCC_CQ_LEN,
Sathya Perlaefd2e402009-07-27 22:53:10 +00001972 sizeof(struct be_mcc_compl)))
Sathya Perla5fb379e2009-06-18 00:02:59 +00001973 goto err;
1974
Sathya Perla10ef9ab2012-02-09 18:05:27 +00001975 /* Use the default EQ for MCC completions */
1976 if (be_cmd_cq_create(adapter, cq, &mcc_eqo(adapter)->q, true, 0))
Sathya Perla5fb379e2009-06-18 00:02:59 +00001977 goto mcc_cq_free;
1978
Sathya Perla8788fdc2009-07-27 22:52:03 +00001979 q = &adapter->mcc_obj.q;
Sathya Perla5fb379e2009-06-18 00:02:59 +00001980 if (be_queue_alloc(adapter, q, MCC_Q_LEN, sizeof(struct be_mcc_wrb)))
1981 goto mcc_cq_destroy;
1982
Sathya Perla8788fdc2009-07-27 22:52:03 +00001983 if (be_cmd_mccq_create(adapter, q, cq))
Sathya Perla5fb379e2009-06-18 00:02:59 +00001984 goto mcc_q_free;
1985
1986 return 0;
1987
1988mcc_q_free:
1989 be_queue_free(adapter, q);
1990mcc_cq_destroy:
Sathya Perla8788fdc2009-07-27 22:52:03 +00001991 be_cmd_q_destroy(adapter, cq, QTYPE_CQ);
Sathya Perla5fb379e2009-06-18 00:02:59 +00001992mcc_cq_free:
1993 be_queue_free(adapter, cq);
1994err:
1995 return -1;
1996}
1997
Sathya Perla6b7c5b92009-03-11 23:32:03 -07001998static void be_tx_queues_destroy(struct be_adapter *adapter)
1999{
2000 struct be_queue_info *q;
Sathya Perla3c8def92011-06-12 20:01:58 +00002001 struct be_tx_obj *txo;
2002 u8 i;
Sathya Perla6b7c5b92009-03-11 23:32:03 -07002003
Sathya Perla3c8def92011-06-12 20:01:58 +00002004 for_all_tx_queues(adapter, txo, i) {
2005 q = &txo->q;
2006 if (q->created)
2007 be_cmd_q_destroy(adapter, q, QTYPE_TXQ);
2008 be_queue_free(adapter, q);
Sathya Perla6b7c5b92009-03-11 23:32:03 -07002009
Sathya Perla3c8def92011-06-12 20:01:58 +00002010 q = &txo->cq;
2011 if (q->created)
2012 be_cmd_q_destroy(adapter, q, QTYPE_CQ);
2013 be_queue_free(adapter, q);
2014 }
Sathya Perla6b7c5b92009-03-11 23:32:03 -07002015}
2016
Sathya Perla77071332013-08-27 16:57:34 +05302017static int be_tx_qs_create(struct be_adapter *adapter)
Sathya Perla6b7c5b92009-03-11 23:32:03 -07002018{
Sathya Perla10ef9ab2012-02-09 18:05:27 +00002019 struct be_queue_info *cq, *eq;
Sathya Perla3c8def92011-06-12 20:01:58 +00002020 struct be_tx_obj *txo;
Sathya Perla92bf14a2013-08-27 16:57:32 +05302021 int status, i;
Sathya Perla6b7c5b92009-03-11 23:32:03 -07002022
Sathya Perla92bf14a2013-08-27 16:57:32 +05302023 adapter->num_tx_qs = min(adapter->num_evt_qs, be_max_txqs(adapter));
Padmanabh Ratnakar3bb62f42011-11-25 05:48:06 +00002024 if (adapter->num_tx_qs != MAX_TX_QS) {
2025 rtnl_lock();
Sathya Perladafc0fe2011-10-24 02:45:02 +00002026 netif_set_real_num_tx_queues(adapter->netdev,
2027 adapter->num_tx_qs);
Padmanabh Ratnakar3bb62f42011-11-25 05:48:06 +00002028 rtnl_unlock();
2029 }
Sathya Perladafc0fe2011-10-24 02:45:02 +00002030
Sathya Perla3c8def92011-06-12 20:01:58 +00002031 for_all_tx_queues(adapter, txo, i) {
2032 cq = &txo->cq;
Sathya Perla10ef9ab2012-02-09 18:05:27 +00002033 status = be_queue_alloc(adapter, cq, TX_CQ_LEN,
2034 sizeof(struct be_eth_tx_compl));
2035 if (status)
2036 return status;
Sathya Perla6b7c5b92009-03-11 23:32:03 -07002037
Sathya Perla10ef9ab2012-02-09 18:05:27 +00002038 /* If num_evt_qs is less than num_tx_qs, then more than
2039 * one txq share an eq
2040 */
2041 eq = &adapter->eq_obj[i % adapter->num_evt_qs].q;
2042 status = be_cmd_cq_create(adapter, cq, eq, false, 3);
2043 if (status)
2044 return status;
Sathya Perla6b7c5b92009-03-11 23:32:03 -07002045
Sathya Perla10ef9ab2012-02-09 18:05:27 +00002046 status = be_queue_alloc(adapter, &txo->q, TX_Q_LEN,
2047 sizeof(struct be_eth_wrb));
2048 if (status)
2049 return status;
2050
Vasundhara Volam94d73aa2013-04-21 23:28:14 +00002051 status = be_cmd_txq_create(adapter, txo);
Sathya Perla10ef9ab2012-02-09 18:05:27 +00002052 if (status)
2053 return status;
2054 }
2055
Sathya Perlad3791422012-09-28 04:39:44 +00002056 dev_info(&adapter->pdev->dev, "created %d TX queue(s)\n",
2057 adapter->num_tx_qs);
Sathya Perla10ef9ab2012-02-09 18:05:27 +00002058 return 0;
2059}
2060
2061static void be_rx_cqs_destroy(struct be_adapter *adapter)
Sathya Perla6b7c5b92009-03-11 23:32:03 -07002062{
2063 struct be_queue_info *q;
Sathya Perla3abcded2010-10-03 22:12:27 -07002064 struct be_rx_obj *rxo;
2065 int i;
Sathya Perla6b7c5b92009-03-11 23:32:03 -07002066
Sathya Perla3abcded2010-10-03 22:12:27 -07002067 for_all_rx_queues(adapter, rxo, i) {
Sathya Perla3abcded2010-10-03 22:12:27 -07002068 q = &rxo->cq;
2069 if (q->created)
2070 be_cmd_q_destroy(adapter, q, QTYPE_CQ);
2071 be_queue_free(adapter, q);
Sathya Perla6b7c5b92009-03-11 23:32:03 -07002072 }
Sathya Perla6b7c5b92009-03-11 23:32:03 -07002073}
2074
Sathya Perla10ef9ab2012-02-09 18:05:27 +00002075static int be_rx_cqs_create(struct be_adapter *adapter)
Sathya Perlaac6a0c42011-03-21 20:49:25 +00002076{
Sathya Perla10ef9ab2012-02-09 18:05:27 +00002077 struct be_queue_info *eq, *cq;
Sathya Perla3abcded2010-10-03 22:12:27 -07002078 struct be_rx_obj *rxo;
2079 int rc, i;
Sathya Perla6b7c5b92009-03-11 23:32:03 -07002080
Sathya Perla92bf14a2013-08-27 16:57:32 +05302081 /* We can create as many RSS rings as there are EQs. */
2082 adapter->num_rx_qs = adapter->num_evt_qs;
2083
2084 /* We'll use RSS only if atleast 2 RSS rings are supported.
2085 * When RSS is used, we'll need a default RXQ for non-IP traffic.
Sathya Perla10ef9ab2012-02-09 18:05:27 +00002086 */
Sathya Perla92bf14a2013-08-27 16:57:32 +05302087 if (adapter->num_rx_qs > 1)
2088 adapter->num_rx_qs++;
2089
Sathya Perla7f640062012-06-05 19:37:20 +00002090 if (adapter->num_rx_qs != MAX_RX_QS) {
2091 rtnl_lock();
2092 netif_set_real_num_rx_queues(adapter->netdev,
2093 adapter->num_rx_qs);
2094 rtnl_unlock();
2095 }
Sathya Perlaac6a0c42011-03-21 20:49:25 +00002096
Sathya Perla6b7c5b92009-03-11 23:32:03 -07002097 adapter->big_page_size = (1 << get_order(rx_frag_size)) * PAGE_SIZE;
Sathya Perla3abcded2010-10-03 22:12:27 -07002098 for_all_rx_queues(adapter, rxo, i) {
2099 rxo->adapter = adapter;
Sathya Perla3abcded2010-10-03 22:12:27 -07002100 cq = &rxo->cq;
2101 rc = be_queue_alloc(adapter, cq, RX_CQ_LEN,
2102 sizeof(struct be_eth_rx_compl));
2103 if (rc)
Sathya Perla10ef9ab2012-02-09 18:05:27 +00002104 return rc;
Sathya Perla6b7c5b92009-03-11 23:32:03 -07002105
Sathya Perla10ef9ab2012-02-09 18:05:27 +00002106 eq = &adapter->eq_obj[i % adapter->num_evt_qs].q;
2107 rc = be_cmd_cq_create(adapter, cq, eq, false, 3);
Sathya Perla3abcded2010-10-03 22:12:27 -07002108 if (rc)
Sathya Perla10ef9ab2012-02-09 18:05:27 +00002109 return rc;
Sathya Perla3abcded2010-10-03 22:12:27 -07002110 }
Sathya Perla6b7c5b92009-03-11 23:32:03 -07002111
Sathya Perlad3791422012-09-28 04:39:44 +00002112 dev_info(&adapter->pdev->dev,
2113 "created %d RSS queue(s) and 1 default RX queue\n",
2114 adapter->num_rx_qs - 1);
Sathya Perla10ef9ab2012-02-09 18:05:27 +00002115 return 0;
Sathya Perlab628bde2009-08-17 00:58:26 +00002116}
2117
Sathya Perla6b7c5b92009-03-11 23:32:03 -07002118static irqreturn_t be_intx(int irq, void *dev)
2119{
Sathya Perlae49cc342012-11-27 19:50:02 +00002120 struct be_eq_obj *eqo = dev;
2121 struct be_adapter *adapter = eqo->adapter;
2122 int num_evts = 0;
Sathya Perla6b7c5b92009-03-11 23:32:03 -07002123
Sathya Perlad0b9cec2013-01-11 22:47:02 +00002124 /* IRQ is not expected when NAPI is scheduled as the EQ
2125 * will not be armed.
2126 * But, this can happen on Lancer INTx where it takes
2127 * a while to de-assert INTx or in BE2 where occasionaly
2128 * an interrupt may be raised even when EQ is unarmed.
2129 * If NAPI is already scheduled, then counting & notifying
2130 * events will orphan them.
Sathya Perlae49cc342012-11-27 19:50:02 +00002131 */
Sathya Perlad0b9cec2013-01-11 22:47:02 +00002132 if (napi_schedule_prep(&eqo->napi)) {
Sathya Perlae49cc342012-11-27 19:50:02 +00002133 num_evts = events_get(eqo);
Sathya Perlad0b9cec2013-01-11 22:47:02 +00002134 __napi_schedule(&eqo->napi);
2135 if (num_evts)
2136 eqo->spurious_intr = 0;
2137 }
Sathya Perlae49cc342012-11-27 19:50:02 +00002138 be_eq_notify(adapter, eqo->q.id, false, true, num_evts);
Sathya Perlad0b9cec2013-01-11 22:47:02 +00002139
2140 /* Return IRQ_HANDLED only for the the first spurious intr
2141 * after a valid intr to stop the kernel from branding
2142 * this irq as a bad one!
2143 */
2144 if (num_evts || eqo->spurious_intr++ == 0)
2145 return IRQ_HANDLED;
2146 else
2147 return IRQ_NONE;
Sathya Perla6b7c5b92009-03-11 23:32:03 -07002148}
2149
Sathya Perla10ef9ab2012-02-09 18:05:27 +00002150static irqreturn_t be_msix(int irq, void *dev)
Sathya Perla6b7c5b92009-03-11 23:32:03 -07002151{
Sathya Perla10ef9ab2012-02-09 18:05:27 +00002152 struct be_eq_obj *eqo = dev;
Sathya Perla6b7c5b92009-03-11 23:32:03 -07002153
Sathya Perla0b545a62012-11-23 00:27:18 +00002154 be_eq_notify(eqo->adapter, eqo->q.id, false, true, 0);
2155 napi_schedule(&eqo->napi);
Sathya Perla6b7c5b92009-03-11 23:32:03 -07002156 return IRQ_HANDLED;
2157}
2158
Sathya Perla2e588f82011-03-11 02:49:26 +00002159static inline bool do_gro(struct be_rx_compl_info *rxcp)
Sathya Perla6b7c5b92009-03-11 23:32:03 -07002160{
Somnath Koture38b1702013-05-29 22:55:56 +00002161 return (rxcp->tcpf && !rxcp->err && rxcp->l4_csum) ? true : false;
Sathya Perla6b7c5b92009-03-11 23:32:03 -07002162}
2163
Sathya Perla10ef9ab2012-02-09 18:05:27 +00002164static int be_process_rx(struct be_rx_obj *rxo, struct napi_struct *napi,
2165 int budget)
Sathya Perla6b7c5b92009-03-11 23:32:03 -07002166{
Sathya Perla3abcded2010-10-03 22:12:27 -07002167 struct be_adapter *adapter = rxo->adapter;
2168 struct be_queue_info *rx_cq = &rxo->cq;
Sathya Perla2e588f82011-03-11 02:49:26 +00002169 struct be_rx_compl_info *rxcp;
Sathya Perla6b7c5b92009-03-11 23:32:03 -07002170 u32 work_done;
2171
2172 for (work_done = 0; work_done < budget; work_done++) {
Sathya Perla3abcded2010-10-03 22:12:27 -07002173 rxcp = be_rx_compl_get(rxo);
Sathya Perla6b7c5b92009-03-11 23:32:03 -07002174 if (!rxcp)
2175 break;
2176
Sathya Perla12004ae2011-08-02 19:57:46 +00002177 /* Is it a flush compl that has no data */
2178 if (unlikely(rxcp->num_rcvd == 0))
2179 goto loop_continue;
2180
2181 /* Discard compl with partial DMA Lancer B0 */
2182 if (unlikely(!rxcp->pkt_size)) {
Sathya Perla10ef9ab2012-02-09 18:05:27 +00002183 be_rx_compl_discard(rxo, rxcp);
Sathya Perla12004ae2011-08-02 19:57:46 +00002184 goto loop_continue;
Sathya Perla64642812010-12-01 01:04:17 +00002185 }
Padmanabh Ratnakar009dd872011-05-10 05:12:17 +00002186
Sathya Perla12004ae2011-08-02 19:57:46 +00002187 /* On BE drop pkts that arrive due to imperfect filtering in
2188 * promiscuous mode on some skews
2189 */
2190 if (unlikely(rxcp->port != adapter->port_num &&
2191 !lancer_chip(adapter))) {
Sathya Perla10ef9ab2012-02-09 18:05:27 +00002192 be_rx_compl_discard(rxo, rxcp);
Sathya Perla12004ae2011-08-02 19:57:46 +00002193 goto loop_continue;
2194 }
2195
2196 if (do_gro(rxcp))
Sathya Perla10ef9ab2012-02-09 18:05:27 +00002197 be_rx_compl_process_gro(rxo, napi, rxcp);
Sathya Perla12004ae2011-08-02 19:57:46 +00002198 else
Sathya Perla10ef9ab2012-02-09 18:05:27 +00002199 be_rx_compl_process(rxo, rxcp);
Sathya Perla12004ae2011-08-02 19:57:46 +00002200loop_continue:
Sathya Perla2e588f82011-03-11 02:49:26 +00002201 be_rx_stats_update(rxo, rxcp);
Sathya Perla6b7c5b92009-03-11 23:32:03 -07002202 }
2203
Sathya Perla10ef9ab2012-02-09 18:05:27 +00002204 if (work_done) {
2205 be_cq_notify(adapter, rx_cq->id, true, work_done);
Padmanabh Ratnakar9372cac2011-11-03 01:49:55 +00002206
Sathya Perla10ef9ab2012-02-09 18:05:27 +00002207 if (atomic_read(&rxo->q.used) < RX_FRAGS_REFILL_WM)
2208 be_post_rx_frags(rxo, GFP_ATOMIC);
Sathya Perla6b7c5b92009-03-11 23:32:03 -07002209 }
Sathya Perla10ef9ab2012-02-09 18:05:27 +00002210
Sathya Perla6b7c5b92009-03-11 23:32:03 -07002211 return work_done;
2212}
2213
Sathya Perla10ef9ab2012-02-09 18:05:27 +00002214static bool be_process_tx(struct be_adapter *adapter, struct be_tx_obj *txo,
2215 int budget, int idx)
Sathya Perla6b7c5b92009-03-11 23:32:03 -07002216{
Sathya Perla6b7c5b92009-03-11 23:32:03 -07002217 struct be_eth_tx_compl *txcp;
Sathya Perla10ef9ab2012-02-09 18:05:27 +00002218 int num_wrbs = 0, work_done;
Sathya Perla6b7c5b92009-03-11 23:32:03 -07002219
Sathya Perla10ef9ab2012-02-09 18:05:27 +00002220 for (work_done = 0; work_done < budget; work_done++) {
2221 txcp = be_tx_compl_get(&txo->cq);
2222 if (!txcp)
2223 break;
2224 num_wrbs += be_tx_compl_process(adapter, txo,
Sathya Perla3c8def92011-06-12 20:01:58 +00002225 AMAP_GET_BITS(struct amap_eth_tx_compl,
2226 wrb_index, txcp));
Sathya Perla10ef9ab2012-02-09 18:05:27 +00002227 }
2228
2229 if (work_done) {
2230 be_cq_notify(adapter, txo->cq.id, true, work_done);
2231 atomic_sub(num_wrbs, &txo->q.used);
2232
2233 /* As Tx wrbs have been freed up, wake up netdev queue
2234 * if it was stopped due to lack of tx wrbs. */
2235 if (__netif_subqueue_stopped(adapter->netdev, idx) &&
2236 atomic_read(&txo->q.used) < txo->q.len / 2) {
2237 netif_wake_subqueue(adapter->netdev, idx);
Sathya Perla3c8def92011-06-12 20:01:58 +00002238 }
Sathya Perla3c8def92011-06-12 20:01:58 +00002239
Sathya Perla10ef9ab2012-02-09 18:05:27 +00002240 u64_stats_update_begin(&tx_stats(txo)->sync_compl);
2241 tx_stats(txo)->tx_compl += work_done;
2242 u64_stats_update_end(&tx_stats(txo)->sync_compl);
2243 }
2244 return (work_done < budget); /* Done */
2245}
Sathya Perla3c8def92011-06-12 20:01:58 +00002246
Jingoo Han4188e7d2013-08-05 18:02:02 +09002247static int be_poll(struct napi_struct *napi, int budget)
Sathya Perla10ef9ab2012-02-09 18:05:27 +00002248{
2249 struct be_eq_obj *eqo = container_of(napi, struct be_eq_obj, napi);
2250 struct be_adapter *adapter = eqo->adapter;
Sathya Perla0b545a62012-11-23 00:27:18 +00002251 int max_work = 0, work, i, num_evts;
Sathya Perla10ef9ab2012-02-09 18:05:27 +00002252 bool tx_done;
Sathya Perla3c8def92011-06-12 20:01:58 +00002253
Sathya Perla0b545a62012-11-23 00:27:18 +00002254 num_evts = events_get(eqo);
2255
Sathya Perla10ef9ab2012-02-09 18:05:27 +00002256 /* Process all TXQs serviced by this EQ */
2257 for (i = eqo->idx; i < adapter->num_tx_qs; i += adapter->num_evt_qs) {
2258 tx_done = be_process_tx(adapter, &adapter->tx_obj[i],
2259 eqo->tx_budget, i);
2260 if (!tx_done)
2261 max_work = budget;
Sathya Perla6b7c5b92009-03-11 23:32:03 -07002262 }
2263
Sathya Perla10ef9ab2012-02-09 18:05:27 +00002264 /* This loop will iterate twice for EQ0 in which
2265 * completions of the last RXQ (default one) are also processed
2266 * For other EQs the loop iterates only once
2267 */
2268 for (i = eqo->idx; i < adapter->num_rx_qs; i += adapter->num_evt_qs) {
2269 work = be_process_rx(&adapter->rx_obj[i], napi, budget);
2270 max_work = max(work, max_work);
Sathya Perlaf31e50a2010-03-02 03:56:39 -08002271 }
2272
Sathya Perla10ef9ab2012-02-09 18:05:27 +00002273 if (is_mcc_eqo(eqo))
2274 be_process_mcc(adapter);
Sathya Perla5fb379e2009-06-18 00:02:59 +00002275
Sathya Perla10ef9ab2012-02-09 18:05:27 +00002276 if (max_work < budget) {
2277 napi_complete(napi);
Sathya Perla0b545a62012-11-23 00:27:18 +00002278 be_eq_notify(adapter, eqo->q.id, true, false, num_evts);
Sathya Perla10ef9ab2012-02-09 18:05:27 +00002279 } else {
2280 /* As we'll continue in polling mode, count and clear events */
Sathya Perla0b545a62012-11-23 00:27:18 +00002281 be_eq_notify(adapter, eqo->q.id, false, false, num_evts);
Padmanabh Ratnakar93c86702011-12-19 01:53:35 +00002282 }
Sathya Perla10ef9ab2012-02-09 18:05:27 +00002283 return max_work;
Sathya Perla6b7c5b92009-03-11 23:32:03 -07002284}
2285
Padmanabh Ratnakarf67ef7b2012-07-12 03:57:09 +00002286void be_detect_error(struct be_adapter *adapter)
Ajit Khaparde7c185272010-07-29 06:16:33 +00002287{
Padmanabh Ratnakare1cfb672011-11-03 01:50:08 +00002288 u32 ue_lo = 0, ue_hi = 0, ue_lo_mask = 0, ue_hi_mask = 0;
2289 u32 sliport_status = 0, sliport_err1 = 0, sliport_err2 = 0;
Ajit Khaparde7c185272010-07-29 06:16:33 +00002290 u32 i;
2291
Sathya Perlad23e9462012-12-17 19:38:51 +00002292 if (be_hw_error(adapter))
Sathya Perla72f02482011-11-10 19:17:58 +00002293 return;
2294
Padmanabh Ratnakare1cfb672011-11-03 01:50:08 +00002295 if (lancer_chip(adapter)) {
2296 sliport_status = ioread32(adapter->db + SLIPORT_STATUS_OFFSET);
2297 if (sliport_status & SLIPORT_STATUS_ERR_MASK) {
2298 sliport_err1 = ioread32(adapter->db +
2299 SLIPORT_ERROR1_OFFSET);
2300 sliport_err2 = ioread32(adapter->db +
2301 SLIPORT_ERROR2_OFFSET);
2302 }
2303 } else {
2304 pci_read_config_dword(adapter->pdev,
2305 PCICFG_UE_STATUS_LOW, &ue_lo);
2306 pci_read_config_dword(adapter->pdev,
2307 PCICFG_UE_STATUS_HIGH, &ue_hi);
2308 pci_read_config_dword(adapter->pdev,
2309 PCICFG_UE_STATUS_LOW_MASK, &ue_lo_mask);
2310 pci_read_config_dword(adapter->pdev,
2311 PCICFG_UE_STATUS_HI_MASK, &ue_hi_mask);
Ajit Khaparde7c185272010-07-29 06:16:33 +00002312
Padmanabh Ratnakarf67ef7b2012-07-12 03:57:09 +00002313 ue_lo = (ue_lo & ~ue_lo_mask);
2314 ue_hi = (ue_hi & ~ue_hi_mask);
Padmanabh Ratnakare1cfb672011-11-03 01:50:08 +00002315 }
Ajit Khaparde7c185272010-07-29 06:16:33 +00002316
Ajit Khaparde1451ae62012-10-08 18:18:21 +00002317 /* On certain platforms BE hardware can indicate spurious UEs.
2318 * Allow the h/w to stop working completely in case of a real UE.
2319 * Hence not setting the hw_error for UE detection.
2320 */
2321 if (sliport_status & SLIPORT_STATUS_ERR_MASK) {
Padmanabh Ratnakarf67ef7b2012-07-12 03:57:09 +00002322 adapter->hw_error = true;
Sathya Perla434b3642011-11-10 19:17:59 +00002323 dev_err(&adapter->pdev->dev,
Padmanabh Ratnakarf67ef7b2012-07-12 03:57:09 +00002324 "Error detected in the card\n");
2325 }
2326
2327 if (sliport_status & SLIPORT_STATUS_ERR_MASK) {
2328 dev_err(&adapter->pdev->dev,
2329 "ERR: sliport status 0x%x\n", sliport_status);
2330 dev_err(&adapter->pdev->dev,
2331 "ERR: sliport error1 0x%x\n", sliport_err1);
2332 dev_err(&adapter->pdev->dev,
2333 "ERR: sliport error2 0x%x\n", sliport_err2);
Ajit Khaparded053de92010-09-03 06:23:30 +00002334 }
2335
Padmanabh Ratnakare1cfb672011-11-03 01:50:08 +00002336 if (ue_lo) {
2337 for (i = 0; ue_lo; ue_lo >>= 1, i++) {
2338 if (ue_lo & 1)
Ajit Khaparde7c185272010-07-29 06:16:33 +00002339 dev_err(&adapter->pdev->dev,
2340 "UE: %s bit set\n", ue_status_low_desc[i]);
2341 }
2342 }
Padmanabh Ratnakarf67ef7b2012-07-12 03:57:09 +00002343
Padmanabh Ratnakare1cfb672011-11-03 01:50:08 +00002344 if (ue_hi) {
2345 for (i = 0; ue_hi; ue_hi >>= 1, i++) {
2346 if (ue_hi & 1)
Ajit Khaparde7c185272010-07-29 06:16:33 +00002347 dev_err(&adapter->pdev->dev,
2348 "UE: %s bit set\n", ue_status_hi_desc[i]);
2349 }
2350 }
2351
2352}
2353
Sathya Perla8d56ff12009-11-22 22:02:26 +00002354static void be_msix_disable(struct be_adapter *adapter)
2355{
Sathya Perlaac6a0c42011-03-21 20:49:25 +00002356 if (msix_enabled(adapter)) {
Sathya Perla8d56ff12009-11-22 22:02:26 +00002357 pci_disable_msix(adapter->pdev);
Sathya Perlaac6a0c42011-03-21 20:49:25 +00002358 adapter->num_msix_vec = 0;
Sathya Perla3abcded2010-10-03 22:12:27 -07002359 }
2360}
2361
Somnath Koturc2bba3d2013-05-02 03:37:08 +00002362static int be_msix_enable(struct be_adapter *adapter)
Sathya Perla6b7c5b92009-03-11 23:32:03 -07002363{
Sathya Perla92bf14a2013-08-27 16:57:32 +05302364 int i, status, num_vec;
Sathya Perlad3791422012-09-28 04:39:44 +00002365 struct device *dev = &adapter->pdev->dev;
Sathya Perla6b7c5b92009-03-11 23:32:03 -07002366
Sathya Perla92bf14a2013-08-27 16:57:32 +05302367 /* If RoCE is supported, program the max number of NIC vectors that
2368 * may be configured via set-channels, along with vectors needed for
2369 * RoCe. Else, just program the number we'll use initially.
2370 */
2371 if (be_roce_supported(adapter))
2372 num_vec = min_t(int, 2 * be_max_eqs(adapter),
2373 2 * num_online_cpus());
2374 else
2375 num_vec = adapter->cfg_num_qs;
Sathya Perla3abcded2010-10-03 22:12:27 -07002376
Sathya Perlaac6a0c42011-03-21 20:49:25 +00002377 for (i = 0; i < num_vec; i++)
Sathya Perla6b7c5b92009-03-11 23:32:03 -07002378 adapter->msix_entries[i].entry = i;
2379
Sathya Perlaac6a0c42011-03-21 20:49:25 +00002380 status = pci_enable_msix(adapter->pdev, adapter->msix_entries, num_vec);
Sathya Perla3abcded2010-10-03 22:12:27 -07002381 if (status == 0) {
2382 goto done;
Sathya Perla92bf14a2013-08-27 16:57:32 +05302383 } else if (status >= MIN_MSIX_VECTORS) {
Sathya Perlaac6a0c42011-03-21 20:49:25 +00002384 num_vec = status;
Somnath Koturc2bba3d2013-05-02 03:37:08 +00002385 status = pci_enable_msix(adapter->pdev, adapter->msix_entries,
2386 num_vec);
2387 if (!status)
Sathya Perla3abcded2010-10-03 22:12:27 -07002388 goto done;
Sathya Perla3abcded2010-10-03 22:12:27 -07002389 }
Sathya Perlad3791422012-09-28 04:39:44 +00002390
2391 dev_warn(dev, "MSIx enable failed\n");
Sathya Perla92bf14a2013-08-27 16:57:32 +05302392
Somnath Koturc2bba3d2013-05-02 03:37:08 +00002393 /* INTx is not supported in VFs, so fail probe if enable_msix fails */
2394 if (!be_physfn(adapter))
2395 return status;
2396 return 0;
Sathya Perla3abcded2010-10-03 22:12:27 -07002397done:
Sathya Perla92bf14a2013-08-27 16:57:32 +05302398 if (be_roce_supported(adapter) && num_vec > MIN_MSIX_VECTORS) {
2399 adapter->num_msix_roce_vec = num_vec / 2;
2400 dev_info(dev, "enabled %d MSI-x vector(s) for RoCE\n",
2401 adapter->num_msix_roce_vec);
2402 }
2403
2404 adapter->num_msix_vec = num_vec - adapter->num_msix_roce_vec;
2405
2406 dev_info(dev, "enabled %d MSI-x vector(s) for NIC\n",
2407 adapter->num_msix_vec);
Somnath Koturc2bba3d2013-05-02 03:37:08 +00002408 return 0;
Sathya Perla6b7c5b92009-03-11 23:32:03 -07002409}
2410
Sathya Perlafe6d2a32010-11-21 23:25:50 +00002411static inline int be_msix_vec_get(struct be_adapter *adapter,
Sathya Perla10ef9ab2012-02-09 18:05:27 +00002412 struct be_eq_obj *eqo)
Sathya Perla6b7c5b92009-03-11 23:32:03 -07002413{
Sathya Perlaf2f781a2013-08-27 16:57:30 +05302414 return adapter->msix_entries[eqo->msix_idx].vector;
Sathya Perla6b7c5b92009-03-11 23:32:03 -07002415}
2416
2417static int be_msix_register(struct be_adapter *adapter)
2418{
Sathya Perla10ef9ab2012-02-09 18:05:27 +00002419 struct net_device *netdev = adapter->netdev;
2420 struct be_eq_obj *eqo;
2421 int status, i, vec;
Sathya Perla6b7c5b92009-03-11 23:32:03 -07002422
Sathya Perla10ef9ab2012-02-09 18:05:27 +00002423 for_all_evt_queues(adapter, eqo, i) {
2424 sprintf(eqo->desc, "%s-q%d", netdev->name, i);
2425 vec = be_msix_vec_get(adapter, eqo);
2426 status = request_irq(vec, be_msix, 0, eqo->desc, eqo);
Sathya Perla3abcded2010-10-03 22:12:27 -07002427 if (status)
2428 goto err_msix;
2429 }
Sathya Perlab628bde2009-08-17 00:58:26 +00002430
Sathya Perla6b7c5b92009-03-11 23:32:03 -07002431 return 0;
Sathya Perla3abcded2010-10-03 22:12:27 -07002432err_msix:
Sathya Perla10ef9ab2012-02-09 18:05:27 +00002433 for (i--, eqo = &adapter->eq_obj[i]; i >= 0; i--, eqo--)
2434 free_irq(be_msix_vec_get(adapter, eqo), eqo);
2435 dev_warn(&adapter->pdev->dev, "MSIX Request IRQ failed - err %d\n",
2436 status);
Sathya Perlaac6a0c42011-03-21 20:49:25 +00002437 be_msix_disable(adapter);
Sathya Perla6b7c5b92009-03-11 23:32:03 -07002438 return status;
2439}
2440
2441static int be_irq_register(struct be_adapter *adapter)
2442{
2443 struct net_device *netdev = adapter->netdev;
2444 int status;
2445
Sathya Perlaac6a0c42011-03-21 20:49:25 +00002446 if (msix_enabled(adapter)) {
Sathya Perla6b7c5b92009-03-11 23:32:03 -07002447 status = be_msix_register(adapter);
2448 if (status == 0)
2449 goto done;
Sarveshwar Bandiba343c72010-03-31 02:56:12 +00002450 /* INTx is not supported for VF */
2451 if (!be_physfn(adapter))
2452 return status;
Sathya Perla6b7c5b92009-03-11 23:32:03 -07002453 }
2454
Sathya Perlae49cc342012-11-27 19:50:02 +00002455 /* INTx: only the first EQ is used */
Sathya Perla6b7c5b92009-03-11 23:32:03 -07002456 netdev->irq = adapter->pdev->irq;
2457 status = request_irq(netdev->irq, be_intx, IRQF_SHARED, netdev->name,
Sathya Perlae49cc342012-11-27 19:50:02 +00002458 &adapter->eq_obj[0]);
Sathya Perla6b7c5b92009-03-11 23:32:03 -07002459 if (status) {
2460 dev_err(&adapter->pdev->dev,
2461 "INTx request IRQ failed - err %d\n", status);
2462 return status;
2463 }
2464done:
2465 adapter->isr_registered = true;
2466 return 0;
2467}
2468
2469static void be_irq_unregister(struct be_adapter *adapter)
2470{
2471 struct net_device *netdev = adapter->netdev;
Sathya Perla10ef9ab2012-02-09 18:05:27 +00002472 struct be_eq_obj *eqo;
Sathya Perla3abcded2010-10-03 22:12:27 -07002473 int i;
Sathya Perla6b7c5b92009-03-11 23:32:03 -07002474
2475 if (!adapter->isr_registered)
2476 return;
2477
2478 /* INTx */
Sathya Perlaac6a0c42011-03-21 20:49:25 +00002479 if (!msix_enabled(adapter)) {
Sathya Perlae49cc342012-11-27 19:50:02 +00002480 free_irq(netdev->irq, &adapter->eq_obj[0]);
Sathya Perla6b7c5b92009-03-11 23:32:03 -07002481 goto done;
2482 }
2483
2484 /* MSIx */
Sathya Perla10ef9ab2012-02-09 18:05:27 +00002485 for_all_evt_queues(adapter, eqo, i)
2486 free_irq(be_msix_vec_get(adapter, eqo), eqo);
Sathya Perla3abcded2010-10-03 22:12:27 -07002487
Sathya Perla6b7c5b92009-03-11 23:32:03 -07002488done:
2489 adapter->isr_registered = false;
Sathya Perla6b7c5b92009-03-11 23:32:03 -07002490}
2491
Sathya Perla10ef9ab2012-02-09 18:05:27 +00002492static void be_rx_qs_destroy(struct be_adapter *adapter)
Sathya Perla482c9e72011-06-29 23:33:17 +00002493{
2494 struct be_queue_info *q;
2495 struct be_rx_obj *rxo;
2496 int i;
2497
2498 for_all_rx_queues(adapter, rxo, i) {
2499 q = &rxo->q;
2500 if (q->created) {
2501 be_cmd_rxq_destroy(adapter, q);
Sathya Perla10ef9ab2012-02-09 18:05:27 +00002502 be_rx_cq_clean(rxo);
Sathya Perla482c9e72011-06-29 23:33:17 +00002503 }
Sathya Perla10ef9ab2012-02-09 18:05:27 +00002504 be_queue_free(adapter, q);
Sathya Perla482c9e72011-06-29 23:33:17 +00002505 }
2506}
2507
Sathya Perla889cd4b2010-05-30 23:33:45 +00002508static int be_close(struct net_device *netdev)
2509{
2510 struct be_adapter *adapter = netdev_priv(netdev);
Sathya Perla10ef9ab2012-02-09 18:05:27 +00002511 struct be_eq_obj *eqo;
2512 int i;
Sathya Perla889cd4b2010-05-30 23:33:45 +00002513
Parav Pandit045508a2012-03-26 14:27:13 +00002514 be_roce_dev_close(adapter);
2515
Somnath Kotur04d3d622013-05-02 03:36:55 +00002516 if (adapter->flags & BE_FLAGS_NAPI_ENABLED) {
2517 for_all_evt_queues(adapter, eqo, i)
2518 napi_disable(&eqo->napi);
2519 adapter->flags &= ~BE_FLAGS_NAPI_ENABLED;
2520 }
Sathya Perlaa323d9b2012-12-17 19:38:50 +00002521
2522 be_async_mcc_disable(adapter);
2523
2524 /* Wait for all pending tx completions to arrive so that
2525 * all tx skbs are freed.
2526 */
Sathya Perlafba87552013-05-08 02:05:50 +00002527 netif_tx_disable(netdev);
Sathya Perla6e1f9972013-08-22 12:23:41 +05302528 be_tx_compl_clean(adapter);
Sathya Perlaa323d9b2012-12-17 19:38:50 +00002529
2530 be_rx_qs_destroy(adapter);
2531
2532 for_all_evt_queues(adapter, eqo, i) {
Sathya Perla10ef9ab2012-02-09 18:05:27 +00002533 if (msix_enabled(adapter))
2534 synchronize_irq(be_msix_vec_get(adapter, eqo));
2535 else
2536 synchronize_irq(netdev->irq);
2537 be_eq_clean(eqo);
Padmanabh Ratnakar63fcb272011-03-07 03:09:17 +00002538 }
2539
Sathya Perla889cd4b2010-05-30 23:33:45 +00002540 be_irq_unregister(adapter);
2541
Sathya Perla482c9e72011-06-29 23:33:17 +00002542 return 0;
2543}
2544
Sathya Perla10ef9ab2012-02-09 18:05:27 +00002545static int be_rx_qs_create(struct be_adapter *adapter)
Sathya Perla482c9e72011-06-29 23:33:17 +00002546{
2547 struct be_rx_obj *rxo;
Padmanabh Ratnakare9008ee2011-11-25 05:48:53 +00002548 int rc, i, j;
2549 u8 rsstable[128];
Sathya Perla482c9e72011-06-29 23:33:17 +00002550
2551 for_all_rx_queues(adapter, rxo, i) {
Sathya Perla10ef9ab2012-02-09 18:05:27 +00002552 rc = be_queue_alloc(adapter, &rxo->q, RX_Q_LEN,
2553 sizeof(struct be_eth_rx_d));
2554 if (rc)
2555 return rc;
2556 }
2557
2558 /* The FW would like the default RXQ to be created first */
2559 rxo = default_rxo(adapter);
2560 rc = be_cmd_rxq_create(adapter, &rxo->q, rxo->cq.id, rx_frag_size,
2561 adapter->if_handle, false, &rxo->rss_id);
2562 if (rc)
2563 return rc;
2564
2565 for_all_rss_queues(adapter, rxo, i) {
Sathya Perla482c9e72011-06-29 23:33:17 +00002566 rc = be_cmd_rxq_create(adapter, &rxo->q, rxo->cq.id,
Sathya Perla10ef9ab2012-02-09 18:05:27 +00002567 rx_frag_size, adapter->if_handle,
2568 true, &rxo->rss_id);
Sathya Perla482c9e72011-06-29 23:33:17 +00002569 if (rc)
2570 return rc;
2571 }
2572
2573 if (be_multi_rxq(adapter)) {
Padmanabh Ratnakare9008ee2011-11-25 05:48:53 +00002574 for (j = 0; j < 128; j += adapter->num_rx_qs - 1) {
2575 for_all_rss_queues(adapter, rxo, i) {
2576 if ((j + i) >= 128)
2577 break;
2578 rsstable[j + i] = rxo->rss_id;
2579 }
2580 }
Suresh Reddy594ad542013-04-25 23:03:20 +00002581 adapter->rss_flags = RSS_ENABLE_TCP_IPV4 | RSS_ENABLE_IPV4 |
2582 RSS_ENABLE_TCP_IPV6 | RSS_ENABLE_IPV6;
2583
2584 if (!BEx_chip(adapter))
2585 adapter->rss_flags |= RSS_ENABLE_UDP_IPV4 |
2586 RSS_ENABLE_UDP_IPV6;
2587
2588 rc = be_cmd_rss_config(adapter, rsstable, adapter->rss_flags,
2589 128);
2590 if (rc) {
2591 adapter->rss_flags = 0;
Sathya Perla482c9e72011-06-29 23:33:17 +00002592 return rc;
Suresh Reddy594ad542013-04-25 23:03:20 +00002593 }
Sathya Perla482c9e72011-06-29 23:33:17 +00002594 }
2595
2596 /* First time posting */
Sathya Perla10ef9ab2012-02-09 18:05:27 +00002597 for_all_rx_queues(adapter, rxo, i)
Sathya Perla482c9e72011-06-29 23:33:17 +00002598 be_post_rx_frags(rxo, GFP_KERNEL);
Sathya Perla889cd4b2010-05-30 23:33:45 +00002599 return 0;
2600}
2601
Sathya Perla6b7c5b92009-03-11 23:32:03 -07002602static int be_open(struct net_device *netdev)
2603{
2604 struct be_adapter *adapter = netdev_priv(netdev);
Sathya Perla10ef9ab2012-02-09 18:05:27 +00002605 struct be_eq_obj *eqo;
Sathya Perla3abcded2010-10-03 22:12:27 -07002606 struct be_rx_obj *rxo;
Sathya Perla10ef9ab2012-02-09 18:05:27 +00002607 struct be_tx_obj *txo;
Ajit Khapardeb236916a2011-12-30 12:15:40 +00002608 u8 link_status;
Sathya Perla3abcded2010-10-03 22:12:27 -07002609 int status, i;
Sathya Perla5fb379e2009-06-18 00:02:59 +00002610
Sathya Perla10ef9ab2012-02-09 18:05:27 +00002611 status = be_rx_qs_create(adapter);
Sathya Perla482c9e72011-06-29 23:33:17 +00002612 if (status)
2613 goto err;
2614
Somnath Koturc2bba3d2013-05-02 03:37:08 +00002615 status = be_irq_register(adapter);
2616 if (status)
2617 goto err;
Sathya Perla5fb379e2009-06-18 00:02:59 +00002618
Sathya Perla10ef9ab2012-02-09 18:05:27 +00002619 for_all_rx_queues(adapter, rxo, i)
Sathya Perla3abcded2010-10-03 22:12:27 -07002620 be_cq_notify(adapter, rxo->cq.id, true, 0);
Sathya Perla5fb379e2009-06-18 00:02:59 +00002621
Sathya Perla10ef9ab2012-02-09 18:05:27 +00002622 for_all_tx_queues(adapter, txo, i)
2623 be_cq_notify(adapter, txo->cq.id, true, 0);
2624
Sathya Perla7a1e9b22010-02-17 01:35:11 +00002625 be_async_mcc_enable(adapter);
2626
Sathya Perla10ef9ab2012-02-09 18:05:27 +00002627 for_all_evt_queues(adapter, eqo, i) {
2628 napi_enable(&eqo->napi);
2629 be_eq_notify(adapter, eqo->q.id, true, false, 0);
2630 }
Somnath Kotur04d3d622013-05-02 03:36:55 +00002631 adapter->flags |= BE_FLAGS_NAPI_ENABLED;
Sathya Perla10ef9ab2012-02-09 18:05:27 +00002632
Sathya Perla323ff712012-09-28 04:39:43 +00002633 status = be_cmd_link_status_query(adapter, NULL, &link_status, 0);
Ajit Khapardeb236916a2011-12-30 12:15:40 +00002634 if (!status)
2635 be_link_status_update(adapter, link_status);
2636
Sathya Perlafba87552013-05-08 02:05:50 +00002637 netif_tx_start_all_queues(netdev);
Parav Pandit045508a2012-03-26 14:27:13 +00002638 be_roce_dev_open(adapter);
Sathya Perla889cd4b2010-05-30 23:33:45 +00002639 return 0;
2640err:
2641 be_close(adapter->netdev);
2642 return -EIO;
Sathya Perla5fb379e2009-06-18 00:02:59 +00002643}
2644
Ajit Khaparde71d8d1b2009-12-03 06:16:59 +00002645static int be_setup_wol(struct be_adapter *adapter, bool enable)
2646{
2647 struct be_dma_mem cmd;
2648 int status = 0;
2649 u8 mac[ETH_ALEN];
2650
2651 memset(mac, 0, ETH_ALEN);
2652
2653 cmd.size = sizeof(struct be_cmd_req_acpi_wol_magic_config);
Ivan Vecera2b7bceb2011-02-02 08:05:12 +00002654 cmd.va = dma_alloc_coherent(&adapter->pdev->dev, cmd.size, &cmd.dma,
Joe Perches1f9061d22013-03-15 07:23:58 +00002655 GFP_KERNEL | __GFP_ZERO);
Ajit Khaparde71d8d1b2009-12-03 06:16:59 +00002656 if (cmd.va == NULL)
2657 return -1;
Ajit Khaparde71d8d1b2009-12-03 06:16:59 +00002658
2659 if (enable) {
2660 status = pci_write_config_dword(adapter->pdev,
2661 PCICFG_PM_CONTROL_OFFSET, PCICFG_PM_CONTROL_MASK);
2662 if (status) {
2663 dev_err(&adapter->pdev->dev,
Frans Pop2381a552010-03-24 07:57:36 +00002664 "Could not enable Wake-on-lan\n");
Ivan Vecera2b7bceb2011-02-02 08:05:12 +00002665 dma_free_coherent(&adapter->pdev->dev, cmd.size, cmd.va,
2666 cmd.dma);
Ajit Khaparde71d8d1b2009-12-03 06:16:59 +00002667 return status;
2668 }
2669 status = be_cmd_enable_magic_wol(adapter,
2670 adapter->netdev->dev_addr, &cmd);
2671 pci_enable_wake(adapter->pdev, PCI_D3hot, 1);
2672 pci_enable_wake(adapter->pdev, PCI_D3cold, 1);
2673 } else {
2674 status = be_cmd_enable_magic_wol(adapter, mac, &cmd);
2675 pci_enable_wake(adapter->pdev, PCI_D3hot, 0);
2676 pci_enable_wake(adapter->pdev, PCI_D3cold, 0);
2677 }
2678
Ivan Vecera2b7bceb2011-02-02 08:05:12 +00002679 dma_free_coherent(&adapter->pdev->dev, cmd.size, cmd.va, cmd.dma);
Ajit Khaparde71d8d1b2009-12-03 06:16:59 +00002680 return status;
2681}
2682
Ajit Khaparde6d87f5c2010-08-25 00:32:33 +00002683/*
2684 * Generate a seed MAC address from the PF MAC Address using jhash.
2685 * MAC Address for VFs are assigned incrementally starting from the seed.
2686 * These addresses are programmed in the ASIC by the PF and the VF driver
2687 * queries for the MAC address during its probe.
2688 */
Sathya Perla4c876612013-02-03 20:30:11 +00002689static int be_vf_eth_addr_config(struct be_adapter *adapter)
Ajit Khaparde6d87f5c2010-08-25 00:32:33 +00002690{
Sathya Perlaf9449ab2011-10-24 02:45:01 +00002691 u32 vf;
Sathya Perla3abcded2010-10-03 22:12:27 -07002692 int status = 0;
Ajit Khaparde6d87f5c2010-08-25 00:32:33 +00002693 u8 mac[ETH_ALEN];
Sathya Perla11ac75e2011-12-13 00:58:50 +00002694 struct be_vf_cfg *vf_cfg;
Ajit Khaparde6d87f5c2010-08-25 00:32:33 +00002695
2696 be_vf_eth_addr_generate(adapter, mac);
2697
Sathya Perla11ac75e2011-12-13 00:58:50 +00002698 for_all_vfs(adapter, vf_cfg, vf) {
Sathya Perla3175d8c2013-07-23 15:25:03 +05302699 if (BEx_chip(adapter))
Padmanabh Ratnakar590c3912011-11-25 05:47:26 +00002700 status = be_cmd_pmac_add(adapter, mac,
Sathya Perla11ac75e2011-12-13 00:58:50 +00002701 vf_cfg->if_handle,
2702 &vf_cfg->pmac_id, vf + 1);
Sathya Perla3175d8c2013-07-23 15:25:03 +05302703 else
2704 status = be_cmd_set_mac(adapter, mac, vf_cfg->if_handle,
2705 vf + 1);
Padmanabh Ratnakar590c3912011-11-25 05:47:26 +00002706
Ajit Khaparde6d87f5c2010-08-25 00:32:33 +00002707 if (status)
2708 dev_err(&adapter->pdev->dev,
Padmanabh Ratnakar590c3912011-11-25 05:47:26 +00002709 "Mac address assignment failed for VF %d\n", vf);
Ajit Khaparde6d87f5c2010-08-25 00:32:33 +00002710 else
Sathya Perla11ac75e2011-12-13 00:58:50 +00002711 memcpy(vf_cfg->mac_addr, mac, ETH_ALEN);
Ajit Khaparde6d87f5c2010-08-25 00:32:33 +00002712
2713 mac[5] += 1;
2714 }
2715 return status;
2716}
2717
Sathya Perla4c876612013-02-03 20:30:11 +00002718static int be_vfs_mac_query(struct be_adapter *adapter)
2719{
2720 int status, vf;
2721 u8 mac[ETH_ALEN];
2722 struct be_vf_cfg *vf_cfg;
Sathya Perla95046b92013-07-23 15:25:02 +05302723 bool active = false;
Sathya Perla4c876612013-02-03 20:30:11 +00002724
2725 for_all_vfs(adapter, vf_cfg, vf) {
2726 be_cmd_get_mac_from_list(adapter, mac, &active,
2727 &vf_cfg->pmac_id, 0);
2728
2729 status = be_cmd_mac_addr_query(adapter, mac, false,
2730 vf_cfg->if_handle, 0);
2731 if (status)
2732 return status;
2733 memcpy(vf_cfg->mac_addr, mac, ETH_ALEN);
2734 }
2735 return 0;
2736}
2737
Sathya Perlaf9449ab2011-10-24 02:45:01 +00002738static void be_vf_clear(struct be_adapter *adapter)
Ajit Khaparde6d87f5c2010-08-25 00:32:33 +00002739{
Sathya Perla11ac75e2011-12-13 00:58:50 +00002740 struct be_vf_cfg *vf_cfg;
Ajit Khaparde6d87f5c2010-08-25 00:32:33 +00002741 u32 vf;
2742
Sathya Perla257a3fe2013-06-14 15:54:51 +05302743 if (pci_vfs_assigned(adapter->pdev)) {
Sathya Perla4c876612013-02-03 20:30:11 +00002744 dev_warn(&adapter->pdev->dev,
2745 "VFs are assigned to VMs: not disabling VFs\n");
Sathya Perla39f1d942012-05-08 19:41:24 +00002746 goto done;
2747 }
2748
Sathya Perlab4c1df92013-05-08 02:05:47 +00002749 pci_disable_sriov(adapter->pdev);
2750
Sathya Perla11ac75e2011-12-13 00:58:50 +00002751 for_all_vfs(adapter, vf_cfg, vf) {
Sathya Perla3175d8c2013-07-23 15:25:03 +05302752 if (BEx_chip(adapter))
Sathya Perla11ac75e2011-12-13 00:58:50 +00002753 be_cmd_pmac_del(adapter, vf_cfg->if_handle,
2754 vf_cfg->pmac_id, vf + 1);
Sathya Perla3175d8c2013-07-23 15:25:03 +05302755 else
2756 be_cmd_set_mac(adapter, NULL, vf_cfg->if_handle,
2757 vf + 1);
Sathya Perlaf9449ab2011-10-24 02:45:01 +00002758
Sathya Perla11ac75e2011-12-13 00:58:50 +00002759 be_cmd_if_destroy(adapter, vf_cfg->if_handle, vf + 1);
2760 }
Sathya Perla39f1d942012-05-08 19:41:24 +00002761done:
2762 kfree(adapter->vf_cfg);
2763 adapter->num_vfs = 0;
Ajit Khaparde6d87f5c2010-08-25 00:32:33 +00002764}
2765
Sathya Perla77071332013-08-27 16:57:34 +05302766static void be_clear_queues(struct be_adapter *adapter)
2767{
2768 be_mcc_queues_destroy(adapter);
2769 be_rx_cqs_destroy(adapter);
2770 be_tx_queues_destroy(adapter);
2771 be_evt_queues_destroy(adapter);
2772}
2773
Sathya Perlaa54769f2011-10-24 02:45:00 +00002774static int be_clear(struct be_adapter *adapter)
2775{
Sathya Perla2d17f402013-07-23 15:25:04 +05302776 int i;
Ajit Khapardefbc13f02012-03-18 06:23:21 +00002777
Sathya Perla191eb752012-02-23 18:50:13 +00002778 if (adapter->flags & BE_FLAGS_WORKER_SCHEDULED) {
2779 cancel_delayed_work_sync(&adapter->work);
2780 adapter->flags &= ~BE_FLAGS_WORKER_SCHEDULED;
2781 }
2782
Sathya Perla11ac75e2011-12-13 00:58:50 +00002783 if (sriov_enabled(adapter))
Sathya Perlaf9449ab2011-10-24 02:45:01 +00002784 be_vf_clear(adapter);
2785
Sathya Perla2d17f402013-07-23 15:25:04 +05302786 /* delete the primary mac along with the uc-mac list */
2787 for (i = 0; i < (adapter->uc_macs + 1); i++)
Ajit Khapardefbc13f02012-03-18 06:23:21 +00002788 be_cmd_pmac_del(adapter, adapter->if_handle,
Sathya Perla2d17f402013-07-23 15:25:04 +05302789 adapter->pmac_id[i], 0);
2790 adapter->uc_macs = 0;
Ajit Khapardefbc13f02012-03-18 06:23:21 +00002791
Sathya Perlaf9449ab2011-10-24 02:45:01 +00002792 be_cmd_if_destroy(adapter, adapter->if_handle, 0);
Sathya Perlaa54769f2011-10-24 02:45:00 +00002793
Sathya Perla77071332013-08-27 16:57:34 +05302794 be_clear_queues(adapter);
Sathya Perlaa54769f2011-10-24 02:45:00 +00002795
Padmanabh Ratnakarabb93952012-10-20 06:01:41 +00002796 kfree(adapter->pmac_id);
2797 adapter->pmac_id = NULL;
2798
Sathya Perla10ef9ab2012-02-09 18:05:27 +00002799 be_msix_disable(adapter);
Sathya Perlaa54769f2011-10-24 02:45:00 +00002800 return 0;
2801}
2802
Sathya Perla4c876612013-02-03 20:30:11 +00002803static int be_vfs_if_create(struct be_adapter *adapter)
Padmanabh Ratnakarabb93952012-10-20 06:01:41 +00002804{
Sathya Perla92bf14a2013-08-27 16:57:32 +05302805 struct be_resources res = {0};
Sathya Perla4c876612013-02-03 20:30:11 +00002806 struct be_vf_cfg *vf_cfg;
2807 u32 cap_flags, en_flags, vf;
Padmanabh Ratnakarabb93952012-10-20 06:01:41 +00002808 int status;
2809
Sathya Perla4c876612013-02-03 20:30:11 +00002810 cap_flags = BE_IF_FLAGS_UNTAGGED | BE_IF_FLAGS_BROADCAST |
2811 BE_IF_FLAGS_MULTICAST;
Padmanabh Ratnakarabb93952012-10-20 06:01:41 +00002812
Sathya Perla4c876612013-02-03 20:30:11 +00002813 for_all_vfs(adapter, vf_cfg, vf) {
Sathya Perla92bf14a2013-08-27 16:57:32 +05302814 if (!BE3_chip(adapter)) {
2815 status = be_cmd_get_profile_config(adapter, &res,
2816 vf + 1);
2817 if (!status)
2818 cap_flags = res.if_cap_flags;
2819 }
Sathya Perla4c876612013-02-03 20:30:11 +00002820
2821 /* If a FW profile exists, then cap_flags are updated */
2822 en_flags = cap_flags & (BE_IF_FLAGS_UNTAGGED |
2823 BE_IF_FLAGS_BROADCAST | BE_IF_FLAGS_MULTICAST);
2824 status = be_cmd_if_create(adapter, cap_flags, en_flags,
2825 &vf_cfg->if_handle, vf + 1);
2826 if (status)
2827 goto err;
2828 }
2829err:
2830 return status;
Padmanabh Ratnakarabb93952012-10-20 06:01:41 +00002831}
2832
Sathya Perla39f1d942012-05-08 19:41:24 +00002833static int be_vf_setup_init(struct be_adapter *adapter)
Sathya Perla30128032011-11-10 19:17:57 +00002834{
Sathya Perla11ac75e2011-12-13 00:58:50 +00002835 struct be_vf_cfg *vf_cfg;
Sathya Perla30128032011-11-10 19:17:57 +00002836 int vf;
2837
Sathya Perla39f1d942012-05-08 19:41:24 +00002838 adapter->vf_cfg = kcalloc(adapter->num_vfs, sizeof(*vf_cfg),
2839 GFP_KERNEL);
2840 if (!adapter->vf_cfg)
2841 return -ENOMEM;
2842
Sathya Perla11ac75e2011-12-13 00:58:50 +00002843 for_all_vfs(adapter, vf_cfg, vf) {
2844 vf_cfg->if_handle = -1;
2845 vf_cfg->pmac_id = -1;
Sathya Perla30128032011-11-10 19:17:57 +00002846 }
Sathya Perla39f1d942012-05-08 19:41:24 +00002847 return 0;
Sathya Perla30128032011-11-10 19:17:57 +00002848}
2849
Sathya Perlaf9449ab2011-10-24 02:45:01 +00002850static int be_vf_setup(struct be_adapter *adapter)
2851{
Sathya Perla11ac75e2011-12-13 00:58:50 +00002852 struct be_vf_cfg *vf_cfg;
Ajit Khapardef1f3ee12012-03-18 06:23:41 +00002853 u16 def_vlan, lnk_speed;
Sathya Perla4c876612013-02-03 20:30:11 +00002854 int status, old_vfs, vf;
2855 struct device *dev = &adapter->pdev->dev;
Sathya Perla04a06022013-07-23 15:25:00 +05302856 u32 privileges;
Sathya Perlaf9449ab2011-10-24 02:45:01 +00002857
Sathya Perla257a3fe2013-06-14 15:54:51 +05302858 old_vfs = pci_num_vf(adapter->pdev);
Sathya Perla4c876612013-02-03 20:30:11 +00002859 if (old_vfs) {
2860 dev_info(dev, "%d VFs are already enabled\n", old_vfs);
2861 if (old_vfs != num_vfs)
2862 dev_warn(dev, "Ignoring num_vfs=%d setting\n", num_vfs);
2863 adapter->num_vfs = old_vfs;
Sathya Perla39f1d942012-05-08 19:41:24 +00002864 } else {
Sathya Perla92bf14a2013-08-27 16:57:32 +05302865 if (num_vfs > be_max_vfs(adapter))
Sathya Perla4c876612013-02-03 20:30:11 +00002866 dev_info(dev, "Device supports %d VFs and not %d\n",
Sathya Perla92bf14a2013-08-27 16:57:32 +05302867 be_max_vfs(adapter), num_vfs);
2868 adapter->num_vfs = min_t(u16, num_vfs, be_max_vfs(adapter));
Sathya Perlab4c1df92013-05-08 02:05:47 +00002869 if (!adapter->num_vfs)
Sathya Perla4c876612013-02-03 20:30:11 +00002870 return 0;
Sathya Perla39f1d942012-05-08 19:41:24 +00002871 }
2872
2873 status = be_vf_setup_init(adapter);
2874 if (status)
2875 goto err;
Sathya Perla30128032011-11-10 19:17:57 +00002876
Sathya Perla4c876612013-02-03 20:30:11 +00002877 if (old_vfs) {
2878 for_all_vfs(adapter, vf_cfg, vf) {
2879 status = be_cmd_get_if_id(adapter, vf_cfg, vf);
2880 if (status)
2881 goto err;
2882 }
2883 } else {
2884 status = be_vfs_if_create(adapter);
Sathya Perlaf9449ab2011-10-24 02:45:01 +00002885 if (status)
2886 goto err;
Sathya Perlaf9449ab2011-10-24 02:45:01 +00002887 }
2888
Sathya Perla4c876612013-02-03 20:30:11 +00002889 if (old_vfs) {
2890 status = be_vfs_mac_query(adapter);
2891 if (status)
2892 goto err;
2893 } else {
Sathya Perla39f1d942012-05-08 19:41:24 +00002894 status = be_vf_eth_addr_config(adapter);
2895 if (status)
2896 goto err;
2897 }
Sathya Perlaf9449ab2011-10-24 02:45:01 +00002898
Sathya Perla11ac75e2011-12-13 00:58:50 +00002899 for_all_vfs(adapter, vf_cfg, vf) {
Sathya Perla04a06022013-07-23 15:25:00 +05302900 /* Allow VFs to programs MAC/VLAN filters */
2901 status = be_cmd_get_fn_privileges(adapter, &privileges, vf + 1);
2902 if (!status && !(privileges & BE_PRIV_FILTMGMT)) {
2903 status = be_cmd_set_fn_privileges(adapter,
2904 privileges |
2905 BE_PRIV_FILTMGMT,
2906 vf + 1);
2907 if (!status)
2908 dev_info(dev, "VF%d has FILTMGMT privilege\n",
2909 vf);
2910 }
2911
Sathya Perla4c876612013-02-03 20:30:11 +00002912 /* BE3 FW, by default, caps VF TX-rate to 100mbps.
2913 * Allow full available bandwidth
2914 */
2915 if (BE3_chip(adapter) && !old_vfs)
2916 be_cmd_set_qos(adapter, 1000, vf+1);
2917
2918 status = be_cmd_link_status_query(adapter, &lnk_speed,
2919 NULL, vf + 1);
2920 if (!status)
2921 vf_cfg->tx_rate = lnk_speed;
Ajit Khapardef1f3ee12012-03-18 06:23:41 +00002922
2923 status = be_cmd_get_hsw_config(adapter, &def_vlan,
Sathya Perla4c876612013-02-03 20:30:11 +00002924 vf + 1, vf_cfg->if_handle);
Ajit Khapardef1f3ee12012-03-18 06:23:41 +00002925 if (status)
2926 goto err;
2927 vf_cfg->def_vid = def_vlan;
Padmanabh Ratnakardcf7ebb2012-10-20 06:03:49 +00002928
2929 be_cmd_enable_vf(adapter, vf + 1);
Sathya Perlaf9449ab2011-10-24 02:45:01 +00002930 }
Sathya Perlab4c1df92013-05-08 02:05:47 +00002931
2932 if (!old_vfs) {
2933 status = pci_enable_sriov(adapter->pdev, adapter->num_vfs);
2934 if (status) {
2935 dev_err(dev, "SRIOV enable failed\n");
2936 adapter->num_vfs = 0;
2937 goto err;
2938 }
2939 }
Sathya Perlaf9449ab2011-10-24 02:45:01 +00002940 return 0;
2941err:
Sathya Perla4c876612013-02-03 20:30:11 +00002942 dev_err(dev, "VF setup failed\n");
2943 be_vf_clear(adapter);
Sathya Perlaf9449ab2011-10-24 02:45:01 +00002944 return status;
2945}
2946
Sathya Perla92bf14a2013-08-27 16:57:32 +05302947/* On BE2/BE3 FW does not suggest the supported limits */
2948static void BEx_get_resources(struct be_adapter *adapter,
2949 struct be_resources *res)
2950{
2951 struct pci_dev *pdev = adapter->pdev;
2952 bool use_sriov = false;
2953
2954 if (BE3_chip(adapter) && be_physfn(adapter)) {
2955 int max_vfs;
2956
2957 max_vfs = pci_sriov_get_totalvfs(pdev);
2958 res->max_vfs = max_vfs > 0 ? min(MAX_VFS, max_vfs) : 0;
2959 use_sriov = res->max_vfs && num_vfs;
2960 }
2961
2962 if (be_physfn(adapter))
2963 res->max_uc_mac = BE_UC_PMAC_COUNT;
2964 else
2965 res->max_uc_mac = BE_VF_UC_PMAC_COUNT;
2966
2967 if (adapter->function_mode & FLEX10_MODE)
2968 res->max_vlans = BE_NUM_VLANS_SUPPORTED/8;
2969 else
2970 res->max_vlans = BE_NUM_VLANS_SUPPORTED;
2971 res->max_mcast_mac = BE_MAX_MC;
2972
2973 if (BE2_chip(adapter) || use_sriov || be_is_mc(adapter) ||
2974 !be_physfn(adapter))
2975 res->max_tx_qs = 1;
2976 else
2977 res->max_tx_qs = BE3_MAX_TX_QS;
2978
2979 if ((adapter->function_caps & BE_FUNCTION_CAPS_RSS) &&
2980 !use_sriov && be_physfn(adapter))
2981 res->max_rss_qs = (adapter->be3_native) ?
2982 BE3_MAX_RSS_QS : BE2_MAX_RSS_QS;
2983 res->max_rx_qs = res->max_rss_qs + 1;
2984
2985 res->max_evt_qs = be_physfn(adapter) ? MAX_EVT_QS : 1;
2986
2987 res->if_cap_flags = BE_IF_CAP_FLAGS_WANT;
2988 if (!(adapter->function_caps & BE_FUNCTION_CAPS_RSS))
2989 res->if_cap_flags &= ~BE_IF_FLAGS_RSS;
2990}
2991
Sathya Perla30128032011-11-10 19:17:57 +00002992static void be_setup_init(struct be_adapter *adapter)
2993{
2994 adapter->vlan_prio_bmap = 0xff;
Ajit Khaparde42f11cf2012-04-21 18:53:22 +00002995 adapter->phy.link_speed = -1;
Sathya Perla30128032011-11-10 19:17:57 +00002996 adapter->if_handle = -1;
2997 adapter->be3_native = false;
2998 adapter->promiscuous = false;
Padmanabh Ratnakarf25b1192012-10-20 06:02:52 +00002999 if (be_physfn(adapter))
3000 adapter->cmd_privileges = MAX_PRIVILEGES;
3001 else
3002 adapter->cmd_privileges = MIN_PRIVILEGES;
Sathya Perla30128032011-11-10 19:17:57 +00003003}
3004
Sathya Perla92bf14a2013-08-27 16:57:32 +05303005static int be_get_resources(struct be_adapter *adapter)
Padmanabh Ratnakarabb93952012-10-20 06:01:41 +00003006{
Sathya Perla92bf14a2013-08-27 16:57:32 +05303007 struct device *dev = &adapter->pdev->dev;
3008 struct be_resources res = {0};
3009 int status;
Padmanabh Ratnakarabb93952012-10-20 06:01:41 +00003010
Sathya Perla92bf14a2013-08-27 16:57:32 +05303011 if (BEx_chip(adapter)) {
3012 BEx_get_resources(adapter, &res);
3013 adapter->res = res;
3014 }
3015
3016 /* For BE3 only check if FW suggests a different max-txqs value */
3017 if (BE3_chip(adapter)) {
3018 status = be_cmd_get_profile_config(adapter, &res, 0);
3019 if (!status && res.max_tx_qs)
3020 adapter->res.max_tx_qs =
3021 min(adapter->res.max_tx_qs, res.max_tx_qs);
3022 }
3023
3024 /* For Lancer, SH etc read per-function resource limits from FW.
3025 * GET_FUNC_CONFIG returns per function guaranteed limits.
3026 * GET_PROFILE_CONFIG returns PCI-E related limits PF-pool limits
3027 */
Sathya Perla4c876612013-02-03 20:30:11 +00003028 if (!BEx_chip(adapter)) {
Sathya Perla92bf14a2013-08-27 16:57:32 +05303029 status = be_cmd_get_func_config(adapter, &res);
3030 if (status)
3031 return status;
3032
3033 /* If RoCE may be enabled stash away half the EQs for RoCE */
3034 if (be_roce_supported(adapter))
3035 res.max_evt_qs /= 2;
3036 adapter->res = res;
3037
3038 if (be_physfn(adapter)) {
3039 status = be_cmd_get_profile_config(adapter, &res, 0);
3040 if (status)
3041 return status;
3042 adapter->res.max_vfs = res.max_vfs;
3043 }
3044
3045 dev_info(dev, "Max: txqs %d, rxqs %d, rss %d, eqs %d, vfs %d\n",
3046 be_max_txqs(adapter), be_max_rxqs(adapter),
3047 be_max_rss(adapter), be_max_eqs(adapter),
3048 be_max_vfs(adapter));
3049 dev_info(dev, "Max: uc-macs %d, mc-macs %d, vlans %d\n",
3050 be_max_uc(adapter), be_max_mc(adapter),
3051 be_max_vlans(adapter));
Padmanabh Ratnakarabb93952012-10-20 06:01:41 +00003052 }
3053
Sathya Perla92bf14a2013-08-27 16:57:32 +05303054 return 0;
Padmanabh Ratnakarabb93952012-10-20 06:01:41 +00003055}
3056
Sathya Perla39f1d942012-05-08 19:41:24 +00003057/* Routine to query per function resource limits */
3058static int be_get_config(struct be_adapter *adapter)
3059{
Sathya Perla4c876612013-02-03 20:30:11 +00003060 int status;
Sathya Perla39f1d942012-05-08 19:41:24 +00003061
Padmanabh Ratnakarabb93952012-10-20 06:01:41 +00003062 status = be_cmd_query_fw_cfg(adapter, &adapter->port_num,
3063 &adapter->function_mode,
Vasundhara Volam0ad31572013-04-21 23:28:16 +00003064 &adapter->function_caps,
3065 &adapter->asic_rev);
Padmanabh Ratnakarabb93952012-10-20 06:01:41 +00003066 if (status)
Sathya Perla92bf14a2013-08-27 16:57:32 +05303067 return status;
Padmanabh Ratnakarabb93952012-10-20 06:01:41 +00003068
Sathya Perla92bf14a2013-08-27 16:57:32 +05303069 status = be_get_resources(adapter);
3070 if (status)
3071 return status;
Padmanabh Ratnakarabb93952012-10-20 06:01:41 +00003072
3073 /* primary mac needs 1 pmac entry */
Sathya Perla92bf14a2013-08-27 16:57:32 +05303074 adapter->pmac_id = kcalloc(be_max_uc(adapter) + 1, sizeof(u32),
3075 GFP_KERNEL);
3076 if (!adapter->pmac_id)
3077 return -ENOMEM;
Padmanabh Ratnakarabb93952012-10-20 06:01:41 +00003078
Sathya Perla92bf14a2013-08-27 16:57:32 +05303079 /* Sanitize cfg_num_qs based on HW and platform limits */
3080 adapter->cfg_num_qs = min(adapter->cfg_num_qs, be_max_qs(adapter));
3081
3082 return 0;
Sathya Perla39f1d942012-05-08 19:41:24 +00003083}
3084
Sathya Perla95046b92013-07-23 15:25:02 +05303085static int be_mac_setup(struct be_adapter *adapter)
3086{
3087 u8 mac[ETH_ALEN];
3088 int status;
3089
3090 if (is_zero_ether_addr(adapter->netdev->dev_addr)) {
3091 status = be_cmd_get_perm_mac(adapter, mac);
3092 if (status)
3093 return status;
3094
3095 memcpy(adapter->netdev->dev_addr, mac, ETH_ALEN);
3096 memcpy(adapter->netdev->perm_addr, mac, ETH_ALEN);
3097 } else {
3098 /* Maybe the HW was reset; dev_addr must be re-programmed */
3099 memcpy(mac, adapter->netdev->dev_addr, ETH_ALEN);
3100 }
3101
3102 /* On BE3 VFs this cmd may fail due to lack of privilege.
3103 * Ignore the failure as in this case pmac_id is fetched
3104 * in the IFACE_CREATE cmd.
3105 */
3106 be_cmd_pmac_add(adapter, mac, adapter->if_handle,
3107 &adapter->pmac_id[0], 0);
3108 return 0;
3109}
3110
Sathya Perla77071332013-08-27 16:57:34 +05303111static int be_setup_queues(struct be_adapter *adapter)
3112{
3113 int status;
3114
3115 status = be_evt_queues_create(adapter);
3116 if (status)
3117 goto err;
3118
3119 status = be_tx_qs_create(adapter);
3120 if (status)
3121 goto err;
3122
3123 status = be_rx_cqs_create(adapter);
3124 if (status)
3125 goto err;
3126
3127 status = be_mcc_queues_create(adapter);
3128 if (status)
3129 goto err;
3130
3131 return 0;
3132err:
3133 dev_err(&adapter->pdev->dev, "queue_setup failed\n");
3134 return status;
3135}
3136
Sathya Perla5fb379e2009-06-18 00:02:59 +00003137static int be_setup(struct be_adapter *adapter)
3138{
Sathya Perla39f1d942012-05-08 19:41:24 +00003139 struct device *dev = &adapter->pdev->dev;
Sathya Perla77071332013-08-27 16:57:34 +05303140 u32 tx_fc, rx_fc, en_flags;
Sathya Perla10ef9ab2012-02-09 18:05:27 +00003141 int status;
Sathya Perla6b7c5b92009-03-11 23:32:03 -07003142
Sathya Perla30128032011-11-10 19:17:57 +00003143 be_setup_init(adapter);
Sathya Perlaf9449ab2011-10-24 02:45:01 +00003144
Padmanabh Ratnakarabb93952012-10-20 06:01:41 +00003145 if (!lancer_chip(adapter))
3146 be_cmd_req_native_mode(adapter);
Sathya Perla39f1d942012-05-08 19:41:24 +00003147
Padmanabh Ratnakarabb93952012-10-20 06:01:41 +00003148 status = be_get_config(adapter);
3149 if (status)
3150 goto err;
Sathya Perla2dc1deb2011-07-19 19:52:33 +00003151
Somnath Koturc2bba3d2013-05-02 03:37:08 +00003152 status = be_msix_enable(adapter);
3153 if (status)
3154 goto err;
Sathya Perla10ef9ab2012-02-09 18:05:27 +00003155
Sathya Perla77071332013-08-27 16:57:34 +05303156 en_flags = BE_IF_FLAGS_UNTAGGED | BE_IF_FLAGS_BROADCAST |
3157 BE_IF_FLAGS_MULTICAST | BE_IF_FLAGS_PASS_L3L4_ERRORS;
3158 if (adapter->function_caps & BE_FUNCTION_CAPS_RSS)
3159 en_flags |= BE_IF_FLAGS_RSS;
3160 en_flags = en_flags & be_if_cap_flags(adapter);
3161 status = be_cmd_if_create(adapter, be_if_cap_flags(adapter), en_flags,
3162 &adapter->if_handle, 0);
Sathya Perla10ef9ab2012-02-09 18:05:27 +00003163 if (status)
Sathya Perlaa54769f2011-10-24 02:45:00 +00003164 goto err;
Sathya Perla6b7c5b92009-03-11 23:32:03 -07003165
Sathya Perla77071332013-08-27 16:57:34 +05303166 status = be_setup_queues(adapter);
Sathya Perla10ef9ab2012-02-09 18:05:27 +00003167 if (status)
Sathya Perlaa54769f2011-10-24 02:45:00 +00003168 goto err;
Sathya Perla6b7c5b92009-03-11 23:32:03 -07003169
Padmanabh Ratnakarf25b1192012-10-20 06:02:52 +00003170 be_cmd_get_fn_privileges(adapter, &adapter->cmd_privileges, 0);
3171 /* In UMC mode FW does not return right privileges.
3172 * Override with correct privilege equivalent to PF.
3173 */
3174 if (be_is_mc(adapter))
3175 adapter->cmd_privileges = MAX_PRIVILEGES;
3176
Sathya Perla95046b92013-07-23 15:25:02 +05303177 status = be_mac_setup(adapter);
3178 if (status)
Padmanabh Ratnakar1578e772012-06-07 04:37:08 +00003179 goto err;
3180
Somnath Kotureeb65ce2013-05-26 21:08:36 +00003181 be_cmd_get_fw_ver(adapter, adapter->fw_ver, adapter->fw_on_flash);
Somnath Kotur5a56eb12011-09-30 07:24:28 +00003182
Sathya Perla1d1e9a42012-06-05 19:37:17 +00003183 if (adapter->vlans_added)
Sathya Perla10329df2012-06-05 19:37:18 +00003184 be_vid_config(adapter);
Sathya Perlaa54769f2011-10-24 02:45:00 +00003185
3186 be_set_rx_mode(adapter->netdev);
3187
Ajit Khapardeddc3f5c2012-04-26 15:42:31 +00003188 be_cmd_get_flow_control(adapter, &tx_fc, &rx_fc);
Padmanabh Ratnakar590c3912011-11-25 05:47:26 +00003189
Ajit Khapardeddc3f5c2012-04-26 15:42:31 +00003190 if (rx_fc != adapter->rx_fc || tx_fc != adapter->tx_fc)
3191 be_cmd_set_flow_control(adapter, adapter->tx_fc,
Sathya Perlaa54769f2011-10-24 02:45:00 +00003192 adapter->rx_fc);
Sathya Perlaa54769f2011-10-24 02:45:00 +00003193
Sathya Perla92bf14a2013-08-27 16:57:32 +05303194 if (be_physfn(adapter) && num_vfs) {
3195 if (be_max_vfs(adapter))
Sathya Perla39f1d942012-05-08 19:41:24 +00003196 be_vf_setup(adapter);
3197 else
3198 dev_warn(dev, "device doesn't support SRIOV\n");
Sathya Perlaf9449ab2011-10-24 02:45:01 +00003199 }
3200
Padmanabh Ratnakarf25b1192012-10-20 06:02:52 +00003201 status = be_cmd_get_phy_info(adapter);
3202 if (!status && be_pause_supported(adapter))
Ajit Khaparde42f11cf2012-04-21 18:53:22 +00003203 adapter->phy.fc_autoneg = 1;
3204
Sathya Perla191eb752012-02-23 18:50:13 +00003205 schedule_delayed_work(&adapter->work, msecs_to_jiffies(1000));
3206 adapter->flags |= BE_FLAGS_WORKER_SCHEDULED;
Sathya Perlaf9449ab2011-10-24 02:45:01 +00003207 return 0;
Sathya Perlaa54769f2011-10-24 02:45:00 +00003208err:
3209 be_clear(adapter);
Sathya Perla6b7c5b92009-03-11 23:32:03 -07003210 return status;
3211}
3212
Ivan Vecera66268732011-12-08 01:31:21 +00003213#ifdef CONFIG_NET_POLL_CONTROLLER
3214static void be_netpoll(struct net_device *netdev)
3215{
3216 struct be_adapter *adapter = netdev_priv(netdev);
Sathya Perla10ef9ab2012-02-09 18:05:27 +00003217 struct be_eq_obj *eqo;
Ivan Vecera66268732011-12-08 01:31:21 +00003218 int i;
3219
Sathya Perlae49cc342012-11-27 19:50:02 +00003220 for_all_evt_queues(adapter, eqo, i) {
3221 be_eq_notify(eqo->adapter, eqo->q.id, false, true, 0);
3222 napi_schedule(&eqo->napi);
3223 }
Sathya Perla10ef9ab2012-02-09 18:05:27 +00003224
3225 return;
Ivan Vecera66268732011-12-08 01:31:21 +00003226}
3227#endif
3228
Ajit Khaparde84517482009-09-04 03:12:16 +00003229#define FW_FILE_HDR_SIGN "ServerEngines Corp. "
Jingoo Han4188e7d2013-08-05 18:02:02 +09003230static char flash_cookie[2][16] = {"*** SE FLAS", "H DIRECTORY *** "};
Padmanabh Ratnakarc165541e2012-04-25 01:47:15 +00003231
Sarveshwar Bandifa9a6fe2009-11-20 14:23:47 -08003232static bool be_flash_redboot(struct be_adapter *adapter,
Ajit Khaparde3f0d4562010-02-09 01:30:35 +00003233 const u8 *p, u32 img_start, int image_size,
3234 int hdr_size)
Sarveshwar Bandifa9a6fe2009-11-20 14:23:47 -08003235{
3236 u32 crc_offset;
3237 u8 flashed_crc[4];
3238 int status;
Ajit Khaparde3f0d4562010-02-09 01:30:35 +00003239
3240 crc_offset = hdr_size + img_start + image_size - 4;
3241
Sarveshwar Bandifa9a6fe2009-11-20 14:23:47 -08003242 p += crc_offset;
Ajit Khaparde3f0d4562010-02-09 01:30:35 +00003243
3244 status = be_cmd_get_flash_crc(adapter, flashed_crc,
Ajit Khapardef510fc62010-03-31 01:47:45 +00003245 (image_size - 4));
Sarveshwar Bandifa9a6fe2009-11-20 14:23:47 -08003246 if (status) {
3247 dev_err(&adapter->pdev->dev,
3248 "could not get crc from flash, not flashing redboot\n");
3249 return false;
3250 }
3251
3252 /*update redboot only if crc does not match*/
3253 if (!memcmp(flashed_crc, p, 4))
3254 return false;
3255 else
3256 return true;
Sarveshwar Bandifa9a6fe2009-11-20 14:23:47 -08003257}
3258
Sathya Perla306f1342011-08-02 19:57:45 +00003259static bool phy_flashing_required(struct be_adapter *adapter)
3260{
Ajit Khaparde42f11cf2012-04-21 18:53:22 +00003261 return (adapter->phy.phy_type == TN_8022 &&
3262 adapter->phy.interface_type == PHY_TYPE_BASET_10GB);
Sathya Perla306f1342011-08-02 19:57:45 +00003263}
3264
Padmanabh Ratnakarc165541e2012-04-25 01:47:15 +00003265static bool is_comp_in_ufi(struct be_adapter *adapter,
3266 struct flash_section_info *fsec, int type)
3267{
3268 int i = 0, img_type = 0;
3269 struct flash_section_info_g2 *fsec_g2 = NULL;
3270
Sathya Perlaca34fe32012-11-06 17:48:56 +00003271 if (BE2_chip(adapter))
Padmanabh Ratnakarc165541e2012-04-25 01:47:15 +00003272 fsec_g2 = (struct flash_section_info_g2 *)fsec;
3273
3274 for (i = 0; i < MAX_FLASH_COMP; i++) {
3275 if (fsec_g2)
3276 img_type = le32_to_cpu(fsec_g2->fsec_entry[i].type);
3277 else
3278 img_type = le32_to_cpu(fsec->fsec_entry[i].type);
3279
3280 if (img_type == type)
3281 return true;
3282 }
3283 return false;
3284
3285}
3286
Jingoo Han4188e7d2013-08-05 18:02:02 +09003287static struct flash_section_info *get_fsec_info(struct be_adapter *adapter,
Padmanabh Ratnakarc165541e2012-04-25 01:47:15 +00003288 int header_size,
3289 const struct firmware *fw)
3290{
3291 struct flash_section_info *fsec = NULL;
3292 const u8 *p = fw->data;
3293
3294 p += header_size;
3295 while (p < (fw->data + fw->size)) {
3296 fsec = (struct flash_section_info *)p;
3297 if (!memcmp(flash_cookie, fsec->cookie, sizeof(flash_cookie)))
3298 return fsec;
3299 p += 32;
3300 }
3301 return NULL;
3302}
3303
Padmanabh Ratnakar773a2d72012-10-20 06:04:16 +00003304static int be_flash(struct be_adapter *adapter, const u8 *img,
3305 struct be_dma_mem *flash_cmd, int optype, int img_size)
3306{
3307 u32 total_bytes = 0, flash_op, num_bytes = 0;
3308 int status = 0;
3309 struct be_cmd_write_flashrom *req = flash_cmd->va;
3310
3311 total_bytes = img_size;
3312 while (total_bytes) {
3313 num_bytes = min_t(u32, 32*1024, total_bytes);
3314
3315 total_bytes -= num_bytes;
3316
3317 if (!total_bytes) {
3318 if (optype == OPTYPE_PHY_FW)
3319 flash_op = FLASHROM_OPER_PHY_FLASH;
3320 else
3321 flash_op = FLASHROM_OPER_FLASH;
3322 } else {
3323 if (optype == OPTYPE_PHY_FW)
3324 flash_op = FLASHROM_OPER_PHY_SAVE;
3325 else
3326 flash_op = FLASHROM_OPER_SAVE;
3327 }
3328
Padmanabh Ratnakarbe716442012-10-22 23:02:44 +00003329 memcpy(req->data_buf, img, num_bytes);
Padmanabh Ratnakar773a2d72012-10-20 06:04:16 +00003330 img += num_bytes;
3331 status = be_cmd_write_flashrom(adapter, flash_cmd, optype,
3332 flash_op, num_bytes);
3333 if (status) {
3334 if (status == ILLEGAL_IOCTL_REQ &&
3335 optype == OPTYPE_PHY_FW)
3336 break;
3337 dev_err(&adapter->pdev->dev,
3338 "cmd to write to flash rom failed.\n");
3339 return status;
3340 }
3341 }
3342 return 0;
3343}
3344
Vasundhara Volam0ad31572013-04-21 23:28:16 +00003345/* For BE2, BE3 and BE3-R */
Sathya Perlaca34fe32012-11-06 17:48:56 +00003346static int be_flash_BEx(struct be_adapter *adapter,
Padmanabh Ratnakarc165541e2012-04-25 01:47:15 +00003347 const struct firmware *fw,
3348 struct be_dma_mem *flash_cmd,
3349 int num_of_images)
Ajit Khaparde3f0d4562010-02-09 01:30:35 +00003350
Ajit Khaparde84517482009-09-04 03:12:16 +00003351{
Ajit Khaparde3f0d4562010-02-09 01:30:35 +00003352 int status = 0, i, filehdr_size = 0;
Padmanabh Ratnakarc165541e2012-04-25 01:47:15 +00003353 int img_hdrs_size = (num_of_images * sizeof(struct image_hdr));
Ajit Khaparde84517482009-09-04 03:12:16 +00003354 const u8 *p = fw->data;
Joe Perches215faf92010-12-21 02:16:10 -08003355 const struct flash_comp *pflashcomp;
Padmanabh Ratnakar773a2d72012-10-20 06:04:16 +00003356 int num_comp, redboot;
Padmanabh Ratnakarc165541e2012-04-25 01:47:15 +00003357 struct flash_section_info *fsec = NULL;
Ajit Khaparde84517482009-09-04 03:12:16 +00003358
Padmanabh Ratnakarc165541e2012-04-25 01:47:15 +00003359 struct flash_comp gen3_flash_types[] = {
3360 { FLASH_iSCSI_PRIMARY_IMAGE_START_g3, OPTYPE_ISCSI_ACTIVE,
3361 FLASH_IMAGE_MAX_SIZE_g3, IMAGE_FIRMWARE_iSCSI},
3362 { FLASH_REDBOOT_START_g3, OPTYPE_REDBOOT,
3363 FLASH_REDBOOT_IMAGE_MAX_SIZE_g3, IMAGE_BOOT_CODE},
3364 { FLASH_iSCSI_BIOS_START_g3, OPTYPE_BIOS,
3365 FLASH_BIOS_IMAGE_MAX_SIZE_g3, IMAGE_OPTION_ROM_ISCSI},
3366 { FLASH_PXE_BIOS_START_g3, OPTYPE_PXE_BIOS,
3367 FLASH_BIOS_IMAGE_MAX_SIZE_g3, IMAGE_OPTION_ROM_PXE},
3368 { FLASH_FCoE_BIOS_START_g3, OPTYPE_FCOE_BIOS,
3369 FLASH_BIOS_IMAGE_MAX_SIZE_g3, IMAGE_OPTION_ROM_FCoE},
3370 { FLASH_iSCSI_BACKUP_IMAGE_START_g3, OPTYPE_ISCSI_BACKUP,
3371 FLASH_IMAGE_MAX_SIZE_g3, IMAGE_FIRMWARE_BACKUP_iSCSI},
3372 { FLASH_FCoE_PRIMARY_IMAGE_START_g3, OPTYPE_FCOE_FW_ACTIVE,
3373 FLASH_IMAGE_MAX_SIZE_g3, IMAGE_FIRMWARE_FCoE},
3374 { FLASH_FCoE_BACKUP_IMAGE_START_g3, OPTYPE_FCOE_FW_BACKUP,
3375 FLASH_IMAGE_MAX_SIZE_g3, IMAGE_FIRMWARE_BACKUP_FCoE},
3376 { FLASH_NCSI_START_g3, OPTYPE_NCSI_FW,
3377 FLASH_NCSI_IMAGE_MAX_SIZE_g3, IMAGE_NCSI},
3378 { FLASH_PHY_FW_START_g3, OPTYPE_PHY_FW,
3379 FLASH_PHY_FW_IMAGE_MAX_SIZE_g3, IMAGE_FIRMWARE_PHY}
Ajit Khaparde3f0d4562010-02-09 01:30:35 +00003380 };
Padmanabh Ratnakarc165541e2012-04-25 01:47:15 +00003381
3382 struct flash_comp gen2_flash_types[] = {
3383 { FLASH_iSCSI_PRIMARY_IMAGE_START_g2, OPTYPE_ISCSI_ACTIVE,
3384 FLASH_IMAGE_MAX_SIZE_g2, IMAGE_FIRMWARE_iSCSI},
3385 { FLASH_REDBOOT_START_g2, OPTYPE_REDBOOT,
3386 FLASH_REDBOOT_IMAGE_MAX_SIZE_g2, IMAGE_BOOT_CODE},
3387 { FLASH_iSCSI_BIOS_START_g2, OPTYPE_BIOS,
3388 FLASH_BIOS_IMAGE_MAX_SIZE_g2, IMAGE_OPTION_ROM_ISCSI},
3389 { FLASH_PXE_BIOS_START_g2, OPTYPE_PXE_BIOS,
3390 FLASH_BIOS_IMAGE_MAX_SIZE_g2, IMAGE_OPTION_ROM_PXE},
3391 { FLASH_FCoE_BIOS_START_g2, OPTYPE_FCOE_BIOS,
3392 FLASH_BIOS_IMAGE_MAX_SIZE_g2, IMAGE_OPTION_ROM_FCoE},
3393 { FLASH_iSCSI_BACKUP_IMAGE_START_g2, OPTYPE_ISCSI_BACKUP,
3394 FLASH_IMAGE_MAX_SIZE_g2, IMAGE_FIRMWARE_BACKUP_iSCSI},
3395 { FLASH_FCoE_PRIMARY_IMAGE_START_g2, OPTYPE_FCOE_FW_ACTIVE,
3396 FLASH_IMAGE_MAX_SIZE_g2, IMAGE_FIRMWARE_FCoE},
3397 { FLASH_FCoE_BACKUP_IMAGE_START_g2, OPTYPE_FCOE_FW_BACKUP,
3398 FLASH_IMAGE_MAX_SIZE_g2, IMAGE_FIRMWARE_BACKUP_FCoE}
Ajit Khaparde3f0d4562010-02-09 01:30:35 +00003399 };
3400
Sathya Perlaca34fe32012-11-06 17:48:56 +00003401 if (BE3_chip(adapter)) {
Ajit Khaparde3f0d4562010-02-09 01:30:35 +00003402 pflashcomp = gen3_flash_types;
3403 filehdr_size = sizeof(struct flash_file_hdr_g3);
Joe Perches215faf92010-12-21 02:16:10 -08003404 num_comp = ARRAY_SIZE(gen3_flash_types);
Ajit Khaparde3f0d4562010-02-09 01:30:35 +00003405 } else {
3406 pflashcomp = gen2_flash_types;
3407 filehdr_size = sizeof(struct flash_file_hdr_g2);
Joe Perches215faf92010-12-21 02:16:10 -08003408 num_comp = ARRAY_SIZE(gen2_flash_types);
Ajit Khaparde84517482009-09-04 03:12:16 +00003409 }
Sathya Perlaca34fe32012-11-06 17:48:56 +00003410
Padmanabh Ratnakarc165541e2012-04-25 01:47:15 +00003411 /* Get flash section info*/
3412 fsec = get_fsec_info(adapter, filehdr_size + img_hdrs_size, fw);
3413 if (!fsec) {
3414 dev_err(&adapter->pdev->dev,
3415 "Invalid Cookie. UFI corrupted ?\n");
3416 return -1;
3417 }
Sarveshwar Bandi9fe96932010-03-02 22:37:28 +00003418 for (i = 0; i < num_comp; i++) {
Padmanabh Ratnakarc165541e2012-04-25 01:47:15 +00003419 if (!is_comp_in_ufi(adapter, fsec, pflashcomp[i].img_type))
Sarveshwar Bandi9fe96932010-03-02 22:37:28 +00003420 continue;
Padmanabh Ratnakarc165541e2012-04-25 01:47:15 +00003421
3422 if ((pflashcomp[i].optype == OPTYPE_NCSI_FW) &&
3423 memcmp(adapter->fw_ver, "3.102.148.0", 11) < 0)
3424 continue;
3425
Padmanabh Ratnakar773a2d72012-10-20 06:04:16 +00003426 if (pflashcomp[i].optype == OPTYPE_PHY_FW &&
3427 !phy_flashing_required(adapter))
3428 continue;
3429
3430 if (pflashcomp[i].optype == OPTYPE_REDBOOT) {
3431 redboot = be_flash_redboot(adapter, fw->data,
3432 pflashcomp[i].offset, pflashcomp[i].size,
3433 filehdr_size + img_hdrs_size);
3434 if (!redboot)
Sathya Perla306f1342011-08-02 19:57:45 +00003435 continue;
3436 }
Padmanabh Ratnakarc165541e2012-04-25 01:47:15 +00003437
Ajit Khaparde3f0d4562010-02-09 01:30:35 +00003438 p = fw->data;
Padmanabh Ratnakarc165541e2012-04-25 01:47:15 +00003439 p += filehdr_size + pflashcomp[i].offset + img_hdrs_size;
Sathya Perla306f1342011-08-02 19:57:45 +00003440 if (p + pflashcomp[i].size > fw->data + fw->size)
3441 return -1;
Padmanabh Ratnakar773a2d72012-10-20 06:04:16 +00003442
3443 status = be_flash(adapter, p, flash_cmd, pflashcomp[i].optype,
3444 pflashcomp[i].size);
3445 if (status) {
3446 dev_err(&adapter->pdev->dev,
3447 "Flashing section type %d failed.\n",
3448 pflashcomp[i].img_type);
3449 return status;
Ajit Khaparde84517482009-09-04 03:12:16 +00003450 }
Ajit Khaparde84517482009-09-04 03:12:16 +00003451 }
Ajit Khaparde84517482009-09-04 03:12:16 +00003452 return 0;
3453}
3454
Padmanabh Ratnakar773a2d72012-10-20 06:04:16 +00003455static int be_flash_skyhawk(struct be_adapter *adapter,
3456 const struct firmware *fw,
3457 struct be_dma_mem *flash_cmd, int num_of_images)
Ajit Khaparde3f0d4562010-02-09 01:30:35 +00003458{
Padmanabh Ratnakar773a2d72012-10-20 06:04:16 +00003459 int status = 0, i, filehdr_size = 0;
3460 int img_offset, img_size, img_optype, redboot;
3461 int img_hdrs_size = num_of_images * sizeof(struct image_hdr);
3462 const u8 *p = fw->data;
3463 struct flash_section_info *fsec = NULL;
3464
3465 filehdr_size = sizeof(struct flash_file_hdr_g3);
3466 fsec = get_fsec_info(adapter, filehdr_size + img_hdrs_size, fw);
3467 if (!fsec) {
3468 dev_err(&adapter->pdev->dev,
3469 "Invalid Cookie. UFI corrupted ?\n");
3470 return -1;
3471 }
3472
3473 for (i = 0; i < le32_to_cpu(fsec->fsec_hdr.num_images); i++) {
3474 img_offset = le32_to_cpu(fsec->fsec_entry[i].offset);
3475 img_size = le32_to_cpu(fsec->fsec_entry[i].pad_size);
3476
3477 switch (le32_to_cpu(fsec->fsec_entry[i].type)) {
3478 case IMAGE_FIRMWARE_iSCSI:
3479 img_optype = OPTYPE_ISCSI_ACTIVE;
3480 break;
3481 case IMAGE_BOOT_CODE:
3482 img_optype = OPTYPE_REDBOOT;
3483 break;
3484 case IMAGE_OPTION_ROM_ISCSI:
3485 img_optype = OPTYPE_BIOS;
3486 break;
3487 case IMAGE_OPTION_ROM_PXE:
3488 img_optype = OPTYPE_PXE_BIOS;
3489 break;
3490 case IMAGE_OPTION_ROM_FCoE:
3491 img_optype = OPTYPE_FCOE_BIOS;
3492 break;
3493 case IMAGE_FIRMWARE_BACKUP_iSCSI:
3494 img_optype = OPTYPE_ISCSI_BACKUP;
3495 break;
3496 case IMAGE_NCSI:
3497 img_optype = OPTYPE_NCSI_FW;
3498 break;
3499 default:
3500 continue;
3501 }
3502
3503 if (img_optype == OPTYPE_REDBOOT) {
3504 redboot = be_flash_redboot(adapter, fw->data,
3505 img_offset, img_size,
3506 filehdr_size + img_hdrs_size);
3507 if (!redboot)
3508 continue;
3509 }
3510
3511 p = fw->data;
3512 p += filehdr_size + img_offset + img_hdrs_size;
3513 if (p + img_size > fw->data + fw->size)
3514 return -1;
3515
3516 status = be_flash(adapter, p, flash_cmd, img_optype, img_size);
3517 if (status) {
3518 dev_err(&adapter->pdev->dev,
3519 "Flashing section type %d failed.\n",
3520 fsec->fsec_entry[i].type);
3521 return status;
3522 }
3523 }
3524 return 0;
Ajit Khaparde3f0d4562010-02-09 01:30:35 +00003525}
3526
Shripad Nunjundarao485bf562011-05-16 07:36:59 +00003527static int lancer_fw_download(struct be_adapter *adapter,
3528 const struct firmware *fw)
Ajit Khaparde84517482009-09-04 03:12:16 +00003529{
Shripad Nunjundarao485bf562011-05-16 07:36:59 +00003530#define LANCER_FW_DOWNLOAD_CHUNK (32 * 1024)
3531#define LANCER_FW_DOWNLOAD_LOCATION "/prg"
3532 struct be_dma_mem flash_cmd;
Shripad Nunjundarao485bf562011-05-16 07:36:59 +00003533 const u8 *data_ptr = NULL;
3534 u8 *dest_image_ptr = NULL;
3535 size_t image_size = 0;
3536 u32 chunk_size = 0;
3537 u32 data_written = 0;
3538 u32 offset = 0;
3539 int status = 0;
3540 u8 add_status = 0;
Padmanabh Ratnakarf67ef7b2012-07-12 03:57:09 +00003541 u8 change_status;
Shripad Nunjundarao485bf562011-05-16 07:36:59 +00003542
3543 if (!IS_ALIGNED(fw->size, sizeof(u32))) {
3544 dev_err(&adapter->pdev->dev,
3545 "FW Image not properly aligned. "
3546 "Length must be 4 byte aligned.\n");
3547 status = -EINVAL;
3548 goto lancer_fw_exit;
3549 }
3550
3551 flash_cmd.size = sizeof(struct lancer_cmd_req_write_object)
3552 + LANCER_FW_DOWNLOAD_CHUNK;
3553 flash_cmd.va = dma_alloc_coherent(&adapter->pdev->dev, flash_cmd.size,
Joe Perchesd0320f72013-03-14 13:07:21 +00003554 &flash_cmd.dma, GFP_KERNEL);
Shripad Nunjundarao485bf562011-05-16 07:36:59 +00003555 if (!flash_cmd.va) {
3556 status = -ENOMEM;
Shripad Nunjundarao485bf562011-05-16 07:36:59 +00003557 goto lancer_fw_exit;
3558 }
3559
Shripad Nunjundarao485bf562011-05-16 07:36:59 +00003560 dest_image_ptr = flash_cmd.va +
3561 sizeof(struct lancer_cmd_req_write_object);
3562 image_size = fw->size;
3563 data_ptr = fw->data;
3564
3565 while (image_size) {
3566 chunk_size = min_t(u32, image_size, LANCER_FW_DOWNLOAD_CHUNK);
3567
3568 /* Copy the image chunk content. */
3569 memcpy(dest_image_ptr, data_ptr, chunk_size);
3570
3571 status = lancer_cmd_write_object(adapter, &flash_cmd,
Padmanabh Ratnakarf67ef7b2012-07-12 03:57:09 +00003572 chunk_size, offset,
3573 LANCER_FW_DOWNLOAD_LOCATION,
3574 &data_written, &change_status,
3575 &add_status);
Shripad Nunjundarao485bf562011-05-16 07:36:59 +00003576 if (status)
3577 break;
3578
3579 offset += data_written;
3580 data_ptr += data_written;
3581 image_size -= data_written;
3582 }
3583
3584 if (!status) {
3585 /* Commit the FW written */
3586 status = lancer_cmd_write_object(adapter, &flash_cmd,
Padmanabh Ratnakarf67ef7b2012-07-12 03:57:09 +00003587 0, offset,
3588 LANCER_FW_DOWNLOAD_LOCATION,
3589 &data_written, &change_status,
3590 &add_status);
Shripad Nunjundarao485bf562011-05-16 07:36:59 +00003591 }
3592
3593 dma_free_coherent(&adapter->pdev->dev, flash_cmd.size, flash_cmd.va,
3594 flash_cmd.dma);
3595 if (status) {
3596 dev_err(&adapter->pdev->dev,
3597 "Firmware load error. "
3598 "Status code: 0x%x Additional Status: 0x%x\n",
3599 status, add_status);
3600 goto lancer_fw_exit;
3601 }
3602
Padmanabh Ratnakarf67ef7b2012-07-12 03:57:09 +00003603 if (change_status == LANCER_FW_RESET_NEEDED) {
Somnath Kotur5c510812013-05-30 02:52:23 +00003604 status = lancer_physdev_ctrl(adapter,
3605 PHYSDEV_CONTROL_FW_RESET_MASK);
Padmanabh Ratnakarf67ef7b2012-07-12 03:57:09 +00003606 if (status) {
3607 dev_err(&adapter->pdev->dev,
3608 "Adapter busy for FW reset.\n"
3609 "New FW will not be active.\n");
3610 goto lancer_fw_exit;
3611 }
3612 } else if (change_status != LANCER_NO_RESET_NEEDED) {
3613 dev_err(&adapter->pdev->dev,
3614 "System reboot required for new FW"
3615 " to be active\n");
3616 }
3617
Shripad Nunjundarao485bf562011-05-16 07:36:59 +00003618 dev_info(&adapter->pdev->dev, "Firmware flashed successfully\n");
3619lancer_fw_exit:
3620 return status;
3621}
3622
Sathya Perlaca34fe32012-11-06 17:48:56 +00003623#define UFI_TYPE2 2
3624#define UFI_TYPE3 3
Vasundhara Volam0ad31572013-04-21 23:28:16 +00003625#define UFI_TYPE3R 10
Sathya Perlaca34fe32012-11-06 17:48:56 +00003626#define UFI_TYPE4 4
3627static int be_get_ufi_type(struct be_adapter *adapter,
Vasundhara Volam0ad31572013-04-21 23:28:16 +00003628 struct flash_file_hdr_g3 *fhdr)
Padmanabh Ratnakar773a2d72012-10-20 06:04:16 +00003629{
3630 if (fhdr == NULL)
3631 goto be_get_ufi_exit;
3632
Sathya Perlaca34fe32012-11-06 17:48:56 +00003633 if (skyhawk_chip(adapter) && fhdr->build[0] == '4')
3634 return UFI_TYPE4;
Vasundhara Volam0ad31572013-04-21 23:28:16 +00003635 else if (BE3_chip(adapter) && fhdr->build[0] == '3') {
3636 if (fhdr->asic_type_rev == 0x10)
3637 return UFI_TYPE3R;
3638 else
3639 return UFI_TYPE3;
3640 } else if (BE2_chip(adapter) && fhdr->build[0] == '2')
Sathya Perlaca34fe32012-11-06 17:48:56 +00003641 return UFI_TYPE2;
Padmanabh Ratnakar773a2d72012-10-20 06:04:16 +00003642
3643be_get_ufi_exit:
3644 dev_err(&adapter->pdev->dev,
3645 "UFI and Interface are not compatible for flashing\n");
3646 return -1;
3647}
3648
Shripad Nunjundarao485bf562011-05-16 07:36:59 +00003649static int be_fw_download(struct be_adapter *adapter, const struct firmware* fw)
3650{
Ajit Khaparde3f0d4562010-02-09 01:30:35 +00003651 struct flash_file_hdr_g3 *fhdr3;
3652 struct image_hdr *img_hdr_ptr = NULL;
Ajit Khaparde84517482009-09-04 03:12:16 +00003653 struct be_dma_mem flash_cmd;
Ajit Khaparde84517482009-09-04 03:12:16 +00003654 const u8 *p;
Padmanabh Ratnakar773a2d72012-10-20 06:04:16 +00003655 int status = 0, i = 0, num_imgs = 0, ufi_type = 0;
Ajit Khaparde84517482009-09-04 03:12:16 +00003656
Padmanabh Ratnakarbe716442012-10-22 23:02:44 +00003657 flash_cmd.size = sizeof(struct be_cmd_write_flashrom);
Ivan Vecera2b7bceb2011-02-02 08:05:12 +00003658 flash_cmd.va = dma_alloc_coherent(&adapter->pdev->dev, flash_cmd.size,
3659 &flash_cmd.dma, GFP_KERNEL);
Ajit Khaparde84517482009-09-04 03:12:16 +00003660 if (!flash_cmd.va) {
3661 status = -ENOMEM;
Shripad Nunjundarao485bf562011-05-16 07:36:59 +00003662 goto be_fw_exit;
Ajit Khaparde84517482009-09-04 03:12:16 +00003663 }
3664
Padmanabh Ratnakar773a2d72012-10-20 06:04:16 +00003665 p = fw->data;
Vasundhara Volam0ad31572013-04-21 23:28:16 +00003666 fhdr3 = (struct flash_file_hdr_g3 *)p;
Padmanabh Ratnakar773a2d72012-10-20 06:04:16 +00003667
Vasundhara Volam0ad31572013-04-21 23:28:16 +00003668 ufi_type = be_get_ufi_type(adapter, fhdr3);
Padmanabh Ratnakar773a2d72012-10-20 06:04:16 +00003669
Padmanabh Ratnakar773a2d72012-10-20 06:04:16 +00003670 num_imgs = le32_to_cpu(fhdr3->num_imgs);
3671 for (i = 0; i < num_imgs; i++) {
3672 img_hdr_ptr = (struct image_hdr *)(fw->data +
3673 (sizeof(struct flash_file_hdr_g3) +
3674 i * sizeof(struct image_hdr)));
3675 if (le32_to_cpu(img_hdr_ptr->imageid) == 1) {
Vasundhara Volam0ad31572013-04-21 23:28:16 +00003676 switch (ufi_type) {
3677 case UFI_TYPE4:
Padmanabh Ratnakar773a2d72012-10-20 06:04:16 +00003678 status = be_flash_skyhawk(adapter, fw,
3679 &flash_cmd, num_imgs);
Vasundhara Volam0ad31572013-04-21 23:28:16 +00003680 break;
3681 case UFI_TYPE3R:
Sathya Perlaca34fe32012-11-06 17:48:56 +00003682 status = be_flash_BEx(adapter, fw, &flash_cmd,
3683 num_imgs);
Vasundhara Volam0ad31572013-04-21 23:28:16 +00003684 break;
3685 case UFI_TYPE3:
3686 /* Do not flash this ufi on BE3-R cards */
3687 if (adapter->asic_rev < 0x10)
3688 status = be_flash_BEx(adapter, fw,
3689 &flash_cmd,
3690 num_imgs);
3691 else {
3692 status = -1;
3693 dev_err(&adapter->pdev->dev,
3694 "Can't load BE3 UFI on BE3R\n");
3695 }
3696 }
Ajit Khaparde3f0d4562010-02-09 01:30:35 +00003697 }
Ajit Khaparde84517482009-09-04 03:12:16 +00003698 }
3699
Sathya Perlaca34fe32012-11-06 17:48:56 +00003700 if (ufi_type == UFI_TYPE2)
3701 status = be_flash_BEx(adapter, fw, &flash_cmd, 0);
Padmanabh Ratnakar773a2d72012-10-20 06:04:16 +00003702 else if (ufi_type == -1)
3703 status = -1;
3704
Ivan Vecera2b7bceb2011-02-02 08:05:12 +00003705 dma_free_coherent(&adapter->pdev->dev, flash_cmd.size, flash_cmd.va,
3706 flash_cmd.dma);
Ajit Khaparde84517482009-09-04 03:12:16 +00003707 if (status) {
3708 dev_err(&adapter->pdev->dev, "Firmware load error\n");
Shripad Nunjundarao485bf562011-05-16 07:36:59 +00003709 goto be_fw_exit;
Ajit Khaparde84517482009-09-04 03:12:16 +00003710 }
3711
André Goddard Rosaaf901ca2009-11-14 13:09:05 -02003712 dev_info(&adapter->pdev->dev, "Firmware flashed successfully\n");
Ajit Khaparde84517482009-09-04 03:12:16 +00003713
Shripad Nunjundarao485bf562011-05-16 07:36:59 +00003714be_fw_exit:
3715 return status;
3716}
3717
3718int be_load_fw(struct be_adapter *adapter, u8 *fw_file)
3719{
3720 const struct firmware *fw;
3721 int status;
3722
3723 if (!netif_running(adapter->netdev)) {
3724 dev_err(&adapter->pdev->dev,
3725 "Firmware load not allowed (interface is down)\n");
3726 return -1;
3727 }
3728
3729 status = request_firmware(&fw, fw_file, &adapter->pdev->dev);
3730 if (status)
3731 goto fw_exit;
3732
3733 dev_info(&adapter->pdev->dev, "Flashing firmware file %s\n", fw_file);
3734
3735 if (lancer_chip(adapter))
3736 status = lancer_fw_download(adapter, fw);
3737 else
3738 status = be_fw_download(adapter, fw);
3739
Somnath Kotureeb65ce2013-05-26 21:08:36 +00003740 if (!status)
3741 be_cmd_get_fw_ver(adapter, adapter->fw_ver,
3742 adapter->fw_on_flash);
3743
Ajit Khaparde84517482009-09-04 03:12:16 +00003744fw_exit:
3745 release_firmware(fw);
3746 return status;
3747}
3748
stephen hemmingere5686ad2012-01-05 19:10:25 +00003749static const struct net_device_ops be_netdev_ops = {
Sathya Perla6b7c5b92009-03-11 23:32:03 -07003750 .ndo_open = be_open,
3751 .ndo_stop = be_close,
3752 .ndo_start_xmit = be_xmit,
Sathya Perlaa54769f2011-10-24 02:45:00 +00003753 .ndo_set_rx_mode = be_set_rx_mode,
Sathya Perla6b7c5b92009-03-11 23:32:03 -07003754 .ndo_set_mac_address = be_mac_addr_set,
3755 .ndo_change_mtu = be_change_mtu,
Sathya Perlaab1594e2011-07-25 19:10:15 +00003756 .ndo_get_stats64 = be_get_stats64,
Sathya Perla6b7c5b92009-03-11 23:32:03 -07003757 .ndo_validate_addr = eth_validate_addr,
Sathya Perla6b7c5b92009-03-11 23:32:03 -07003758 .ndo_vlan_rx_add_vid = be_vlan_add_vid,
3759 .ndo_vlan_rx_kill_vid = be_vlan_rem_vid,
Ajit Khaparde64600ea2010-07-23 01:50:34 +00003760 .ndo_set_vf_mac = be_set_vf_mac,
Ajit Khaparde1da87b72010-07-23 01:51:22 +00003761 .ndo_set_vf_vlan = be_set_vf_vlan,
Ajit Khapardee1d18732010-07-23 01:52:13 +00003762 .ndo_set_vf_tx_rate = be_set_vf_tx_rate,
Ivan Vecera66268732011-12-08 01:31:21 +00003763 .ndo_get_vf_config = be_get_vf_config,
3764#ifdef CONFIG_NET_POLL_CONTROLLER
3765 .ndo_poll_controller = be_netpoll,
3766#endif
Sathya Perla6b7c5b92009-03-11 23:32:03 -07003767};
3768
3769static void be_netdev_init(struct net_device *netdev)
3770{
3771 struct be_adapter *adapter = netdev_priv(netdev);
Sathya Perla10ef9ab2012-02-09 18:05:27 +00003772 struct be_eq_obj *eqo;
Sathya Perla3abcded2010-10-03 22:12:27 -07003773 int i;
Sathya Perla6b7c5b92009-03-11 23:32:03 -07003774
Michał Mirosław6332c8d2011-04-07 02:43:48 +00003775 netdev->hw_features |= NETIF_F_SG | NETIF_F_TSO | NETIF_F_TSO6 |
Michał Mirosław8b8ddc62011-04-08 02:38:47 +00003776 NETIF_F_IP_CSUM | NETIF_F_IPV6_CSUM | NETIF_F_RXCSUM |
Patrick McHardyf6469682013-04-19 02:04:27 +00003777 NETIF_F_HW_VLAN_CTAG_TX;
Michał Mirosław8b8ddc62011-04-08 02:38:47 +00003778 if (be_multi_rxq(adapter))
3779 netdev->hw_features |= NETIF_F_RXHASH;
Michał Mirosław6332c8d2011-04-07 02:43:48 +00003780
3781 netdev->features |= netdev->hw_features |
Patrick McHardyf6469682013-04-19 02:04:27 +00003782 NETIF_F_HW_VLAN_CTAG_RX | NETIF_F_HW_VLAN_CTAG_FILTER;
Ajit Khaparde4b972912011-04-06 18:07:43 +00003783
Padmanabh Ratnakareb8a50d2011-06-11 15:58:46 -07003784 netdev->vlan_features |= NETIF_F_SG | NETIF_F_TSO | NETIF_F_TSO6 |
Michał Mirosław79032642010-11-30 06:38:00 +00003785 NETIF_F_IP_CSUM | NETIF_F_IPV6_CSUM;
Ajit Khaparde51c59872009-11-29 17:54:54 +00003786
Ajit Khapardefbc13f02012-03-18 06:23:21 +00003787 netdev->priv_flags |= IFF_UNICAST_FLT;
3788
Sathya Perla6b7c5b92009-03-11 23:32:03 -07003789 netdev->flags |= IFF_MULTICAST;
3790
Sarveshwar Bandib7e58872012-06-13 19:51:43 +00003791 netif_set_gso_max_size(netdev, 65535 - ETH_HLEN);
Ajit Khapardec190e3c2009-09-04 03:12:29 +00003792
Sathya Perla10ef9ab2012-02-09 18:05:27 +00003793 netdev->netdev_ops = &be_netdev_ops;
Sathya Perla6b7c5b92009-03-11 23:32:03 -07003794
3795 SET_ETHTOOL_OPS(netdev, &be_ethtool_ops);
3796
Sathya Perla10ef9ab2012-02-09 18:05:27 +00003797 for_all_evt_queues(adapter, eqo, i)
3798 netif_napi_add(netdev, &eqo->napi, be_poll, BE_NAPI_WEIGHT);
Sathya Perla6b7c5b92009-03-11 23:32:03 -07003799}
3800
3801static void be_unmap_pci_bars(struct be_adapter *adapter)
3802{
Sathya Perlac5b3ad42013-03-05 22:23:20 +00003803 if (adapter->csr)
3804 pci_iounmap(adapter->pdev, adapter->csr);
Sathya Perla8788fdc2009-07-27 22:52:03 +00003805 if (adapter->db)
Sathya Perlace66f782012-11-06 17:48:58 +00003806 pci_iounmap(adapter->pdev, adapter->db);
Parav Pandit045508a2012-03-26 14:27:13 +00003807}
3808
Sathya Perlace66f782012-11-06 17:48:58 +00003809static int db_bar(struct be_adapter *adapter)
3810{
3811 if (lancer_chip(adapter) || !be_physfn(adapter))
3812 return 0;
3813 else
3814 return 4;
3815}
3816
3817static int be_roce_map_pci_bars(struct be_adapter *adapter)
Parav Pandit045508a2012-03-26 14:27:13 +00003818{
Sathya Perladbf0f2a2012-11-06 17:49:00 +00003819 if (skyhawk_chip(adapter)) {
Sathya Perlace66f782012-11-06 17:48:58 +00003820 adapter->roce_db.size = 4096;
3821 adapter->roce_db.io_addr = pci_resource_start(adapter->pdev,
3822 db_bar(adapter));
3823 adapter->roce_db.total_size = pci_resource_len(adapter->pdev,
3824 db_bar(adapter));
3825 }
Parav Pandit045508a2012-03-26 14:27:13 +00003826 return 0;
Sathya Perla6b7c5b92009-03-11 23:32:03 -07003827}
3828
3829static int be_map_pci_bars(struct be_adapter *adapter)
3830{
3831 u8 __iomem *addr;
Sathya Perlace66f782012-11-06 17:48:58 +00003832 u32 sli_intf;
Sathya Perla6b7c5b92009-03-11 23:32:03 -07003833
Sathya Perlace66f782012-11-06 17:48:58 +00003834 pci_read_config_dword(adapter->pdev, SLI_INTF_REG_OFFSET, &sli_intf);
3835 adapter->if_type = (sli_intf & SLI_INTF_IF_TYPE_MASK) >>
3836 SLI_INTF_IF_TYPE_SHIFT;
Sathya Perlafe6d2a32010-11-21 23:25:50 +00003837
Sathya Perlac5b3ad42013-03-05 22:23:20 +00003838 if (BEx_chip(adapter) && be_physfn(adapter)) {
3839 adapter->csr = pci_iomap(adapter->pdev, 2, 0);
3840 if (adapter->csr == NULL)
3841 return -ENOMEM;
3842 }
3843
Sathya Perlace66f782012-11-06 17:48:58 +00003844 addr = pci_iomap(adapter->pdev, db_bar(adapter), 0);
Sathya Perla6b7c5b92009-03-11 23:32:03 -07003845 if (addr == NULL)
3846 goto pci_map_err;
Sathya Perla8788fdc2009-07-27 22:52:03 +00003847 adapter->db = addr;
Sathya Perlace66f782012-11-06 17:48:58 +00003848
3849 be_roce_map_pci_bars(adapter);
Sathya Perla6b7c5b92009-03-11 23:32:03 -07003850 return 0;
Sathya Perlace66f782012-11-06 17:48:58 +00003851
Sathya Perla6b7c5b92009-03-11 23:32:03 -07003852pci_map_err:
3853 be_unmap_pci_bars(adapter);
3854 return -ENOMEM;
3855}
3856
Sathya Perla6b7c5b92009-03-11 23:32:03 -07003857static void be_ctrl_cleanup(struct be_adapter *adapter)
3858{
Sathya Perla8788fdc2009-07-27 22:52:03 +00003859 struct be_dma_mem *mem = &adapter->mbox_mem_alloced;
Sathya Perla6b7c5b92009-03-11 23:32:03 -07003860
3861 be_unmap_pci_bars(adapter);
3862
3863 if (mem->va)
Ivan Vecera2b7bceb2011-02-02 08:05:12 +00003864 dma_free_coherent(&adapter->pdev->dev, mem->size, mem->va,
3865 mem->dma);
Sathya Perlae7b909a2009-11-22 22:01:10 +00003866
Sathya Perla5b8821b2011-08-02 19:57:44 +00003867 mem = &adapter->rx_filter;
Sathya Perlae7b909a2009-11-22 22:01:10 +00003868 if (mem->va)
Ivan Vecera2b7bceb2011-02-02 08:05:12 +00003869 dma_free_coherent(&adapter->pdev->dev, mem->size, mem->va,
3870 mem->dma);
Sathya Perla6b7c5b92009-03-11 23:32:03 -07003871}
3872
Sathya Perla6b7c5b92009-03-11 23:32:03 -07003873static int be_ctrl_init(struct be_adapter *adapter)
3874{
Sathya Perla8788fdc2009-07-27 22:52:03 +00003875 struct be_dma_mem *mbox_mem_alloc = &adapter->mbox_mem_alloced;
3876 struct be_dma_mem *mbox_mem_align = &adapter->mbox_mem;
Sathya Perla5b8821b2011-08-02 19:57:44 +00003877 struct be_dma_mem *rx_filter = &adapter->rx_filter;
Sathya Perlace66f782012-11-06 17:48:58 +00003878 u32 sli_intf;
Sathya Perla6b7c5b92009-03-11 23:32:03 -07003879 int status;
Sathya Perla6b7c5b92009-03-11 23:32:03 -07003880
Sathya Perlace66f782012-11-06 17:48:58 +00003881 pci_read_config_dword(adapter->pdev, SLI_INTF_REG_OFFSET, &sli_intf);
3882 adapter->sli_family = (sli_intf & SLI_INTF_FAMILY_MASK) >>
3883 SLI_INTF_FAMILY_SHIFT;
3884 adapter->virtfn = (sli_intf & SLI_INTF_FT_MASK) ? 1 : 0;
3885
Sathya Perla6b7c5b92009-03-11 23:32:03 -07003886 status = be_map_pci_bars(adapter);
3887 if (status)
Sathya Perlae7b909a2009-11-22 22:01:10 +00003888 goto done;
Sathya Perla6b7c5b92009-03-11 23:32:03 -07003889
3890 mbox_mem_alloc->size = sizeof(struct be_mcc_mailbox) + 16;
Ivan Vecera2b7bceb2011-02-02 08:05:12 +00003891 mbox_mem_alloc->va = dma_alloc_coherent(&adapter->pdev->dev,
3892 mbox_mem_alloc->size,
3893 &mbox_mem_alloc->dma,
3894 GFP_KERNEL);
Sathya Perla6b7c5b92009-03-11 23:32:03 -07003895 if (!mbox_mem_alloc->va) {
Sathya Perlae7b909a2009-11-22 22:01:10 +00003896 status = -ENOMEM;
3897 goto unmap_pci_bars;
Sathya Perla6b7c5b92009-03-11 23:32:03 -07003898 }
3899 mbox_mem_align->size = sizeof(struct be_mcc_mailbox);
3900 mbox_mem_align->va = PTR_ALIGN(mbox_mem_alloc->va, 16);
3901 mbox_mem_align->dma = PTR_ALIGN(mbox_mem_alloc->dma, 16);
3902 memset(mbox_mem_align->va, 0, sizeof(struct be_mcc_mailbox));
Sathya Perlae7b909a2009-11-22 22:01:10 +00003903
Sathya Perla5b8821b2011-08-02 19:57:44 +00003904 rx_filter->size = sizeof(struct be_cmd_req_rx_filter);
3905 rx_filter->va = dma_alloc_coherent(&adapter->pdev->dev, rx_filter->size,
Joe Perches1f9061d22013-03-15 07:23:58 +00003906 &rx_filter->dma,
3907 GFP_KERNEL | __GFP_ZERO);
Sathya Perla5b8821b2011-08-02 19:57:44 +00003908 if (rx_filter->va == NULL) {
Sathya Perlae7b909a2009-11-22 22:01:10 +00003909 status = -ENOMEM;
3910 goto free_mbox;
3911 }
Joe Perches1f9061d22013-03-15 07:23:58 +00003912
Ivan Vecera29849612010-12-14 05:43:19 +00003913 mutex_init(&adapter->mbox_lock);
Sathya Perla8788fdc2009-07-27 22:52:03 +00003914 spin_lock_init(&adapter->mcc_lock);
3915 spin_lock_init(&adapter->mcc_cq_lock);
Sathya Perla6b7c5b92009-03-11 23:32:03 -07003916
Sarveshwar Bandidd131e72010-05-25 16:16:32 -07003917 init_completion(&adapter->flash_compl);
Sathya Perlacf588472010-02-14 21:22:01 +00003918 pci_save_state(adapter->pdev);
Sathya Perla6b7c5b92009-03-11 23:32:03 -07003919 return 0;
Sathya Perlae7b909a2009-11-22 22:01:10 +00003920
3921free_mbox:
Ivan Vecera2b7bceb2011-02-02 08:05:12 +00003922 dma_free_coherent(&adapter->pdev->dev, mbox_mem_alloc->size,
3923 mbox_mem_alloc->va, mbox_mem_alloc->dma);
Sathya Perlae7b909a2009-11-22 22:01:10 +00003924
3925unmap_pci_bars:
3926 be_unmap_pci_bars(adapter);
3927
3928done:
3929 return status;
Sathya Perla6b7c5b92009-03-11 23:32:03 -07003930}
3931
3932static void be_stats_cleanup(struct be_adapter *adapter)
3933{
Sathya Perla3abcded2010-10-03 22:12:27 -07003934 struct be_dma_mem *cmd = &adapter->stats_cmd;
Sathya Perla6b7c5b92009-03-11 23:32:03 -07003935
3936 if (cmd->va)
Ivan Vecera2b7bceb2011-02-02 08:05:12 +00003937 dma_free_coherent(&adapter->pdev->dev, cmd->size,
3938 cmd->va, cmd->dma);
Sathya Perla6b7c5b92009-03-11 23:32:03 -07003939}
3940
3941static int be_stats_init(struct be_adapter *adapter)
3942{
Sathya Perla3abcded2010-10-03 22:12:27 -07003943 struct be_dma_mem *cmd = &adapter->stats_cmd;
Sathya Perla6b7c5b92009-03-11 23:32:03 -07003944
Sathya Perlaca34fe32012-11-06 17:48:56 +00003945 if (lancer_chip(adapter))
3946 cmd->size = sizeof(struct lancer_cmd_req_pport_stats);
3947 else if (BE2_chip(adapter))
Ajit Khaparde89a88ab2011-05-16 07:36:18 +00003948 cmd->size = sizeof(struct be_cmd_req_get_stats_v0);
Sathya Perlaca34fe32012-11-06 17:48:56 +00003949 else
3950 /* BE3 and Skyhawk */
3951 cmd->size = sizeof(struct be_cmd_req_get_stats_v1);
3952
Ivan Vecera2b7bceb2011-02-02 08:05:12 +00003953 cmd->va = dma_alloc_coherent(&adapter->pdev->dev, cmd->size, &cmd->dma,
Joe Perches1f9061d22013-03-15 07:23:58 +00003954 GFP_KERNEL | __GFP_ZERO);
Sathya Perla6b7c5b92009-03-11 23:32:03 -07003955 if (cmd->va == NULL)
3956 return -1;
3957 return 0;
3958}
3959
Bill Pemberton3bc6b062012-12-03 09:23:09 -05003960static void be_remove(struct pci_dev *pdev)
Sathya Perla6b7c5b92009-03-11 23:32:03 -07003961{
3962 struct be_adapter *adapter = pci_get_drvdata(pdev);
Sathya Perla8d56ff12009-11-22 22:02:26 +00003963
Sathya Perla6b7c5b92009-03-11 23:32:03 -07003964 if (!adapter)
3965 return;
3966
Parav Pandit045508a2012-03-26 14:27:13 +00003967 be_roce_dev_remove(adapter);
Somnath Kotur8cef7a72013-03-14 02:41:51 +00003968 be_intr_set(adapter, false);
Parav Pandit045508a2012-03-26 14:27:13 +00003969
Padmanabh Ratnakarf67ef7b2012-07-12 03:57:09 +00003970 cancel_delayed_work_sync(&adapter->func_recovery_work);
3971
Sathya Perla6b7c5b92009-03-11 23:32:03 -07003972 unregister_netdev(adapter->netdev);
3973
Sathya Perla5fb379e2009-06-18 00:02:59 +00003974 be_clear(adapter);
3975
Padmanabh Ratnakarbf99e502012-07-12 03:56:58 +00003976 /* tell fw we're done with firing cmds */
3977 be_cmd_fw_clean(adapter);
3978
Sathya Perla6b7c5b92009-03-11 23:32:03 -07003979 be_stats_cleanup(adapter);
3980
3981 be_ctrl_cleanup(adapter);
3982
Sathya Perlad6b6d982012-09-05 01:56:48 +00003983 pci_disable_pcie_error_reporting(pdev);
3984
Sathya Perla6b7c5b92009-03-11 23:32:03 -07003985 pci_set_drvdata(pdev, NULL);
3986 pci_release_regions(pdev);
3987 pci_disable_device(pdev);
3988
3989 free_netdev(adapter->netdev);
3990}
3991
Ajit Khaparde4762f6c2012-03-18 06:23:11 +00003992bool be_is_wol_supported(struct be_adapter *adapter)
3993{
3994 return ((adapter->wol_cap & BE_WOL_CAP) &&
3995 !be_is_wol_excluded(adapter)) ? true : false;
3996}
3997
Somnath Kotur941a77d2012-05-17 22:59:03 +00003998u32 be_get_fw_log_level(struct be_adapter *adapter)
3999{
4000 struct be_dma_mem extfat_cmd;
4001 struct be_fat_conf_params *cfgs;
4002 int status;
4003 u32 level = 0;
4004 int j;
4005
Padmanabh Ratnakarf25b1192012-10-20 06:02:52 +00004006 if (lancer_chip(adapter))
4007 return 0;
4008
Somnath Kotur941a77d2012-05-17 22:59:03 +00004009 memset(&extfat_cmd, 0, sizeof(struct be_dma_mem));
4010 extfat_cmd.size = sizeof(struct be_cmd_resp_get_ext_fat_caps);
4011 extfat_cmd.va = pci_alloc_consistent(adapter->pdev, extfat_cmd.size,
4012 &extfat_cmd.dma);
4013
4014 if (!extfat_cmd.va) {
4015 dev_err(&adapter->pdev->dev, "%s: Memory allocation failure\n",
4016 __func__);
4017 goto err;
4018 }
4019
4020 status = be_cmd_get_ext_fat_capabilites(adapter, &extfat_cmd);
4021 if (!status) {
4022 cfgs = (struct be_fat_conf_params *)(extfat_cmd.va +
4023 sizeof(struct be_cmd_resp_hdr));
Anton Blanchardac46a462012-07-24 15:05:25 +00004024 for (j = 0; j < le32_to_cpu(cfgs->module[0].num_modes); j++) {
Somnath Kotur941a77d2012-05-17 22:59:03 +00004025 if (cfgs->module[0].trace_lvl[j].mode == MODE_UART)
4026 level = cfgs->module[0].trace_lvl[j].dbg_lvl;
4027 }
4028 }
4029 pci_free_consistent(adapter->pdev, extfat_cmd.size, extfat_cmd.va,
4030 extfat_cmd.dma);
4031err:
4032 return level;
4033}
Padmanabh Ratnakarabb93952012-10-20 06:01:41 +00004034
Sathya Perla39f1d942012-05-08 19:41:24 +00004035static int be_get_initial_config(struct be_adapter *adapter)
Sathya Perla6b7c5b92009-03-11 23:32:03 -07004036{
Sathya Perla6b7c5b92009-03-11 23:32:03 -07004037 int status;
Somnath Kotur941a77d2012-05-17 22:59:03 +00004038 u32 level;
Sathya Perla43a04fdc2009-10-14 20:21:17 +00004039
Ajit Khaparde9e1453c2011-02-20 11:42:22 +00004040 status = be_cmd_get_cntl_attributes(adapter);
4041 if (status)
4042 return status;
4043
Ajit Khaparde4762f6c2012-03-18 06:23:11 +00004044 status = be_cmd_get_acpi_wol_cap(adapter);
4045 if (status) {
4046 /* in case of a failure to get wol capabillities
4047 * check the exclusion list to determine WOL capability */
4048 if (!be_is_wol_excluded(adapter))
4049 adapter->wol_cap |= BE_WOL_CAP;
4050 }
4051
4052 if (be_is_wol_supported(adapter))
4053 adapter->wol = true;
4054
Padmanabh Ratnakar7aeb2152012-07-12 03:56:46 +00004055 /* Must be a power of 2 or else MODULO will BUG_ON */
4056 adapter->be_get_temp_freq = 64;
4057
Somnath Kotur941a77d2012-05-17 22:59:03 +00004058 level = be_get_fw_log_level(adapter);
4059 adapter->msg_enable = level <= FW_LOG_LEVEL_DEFAULT ? NETIF_MSG_HW : 0;
4060
Sathya Perla92bf14a2013-08-27 16:57:32 +05304061 adapter->cfg_num_qs = netif_get_num_default_rss_queues();
Sathya Perla2243e2e2009-11-22 22:02:03 +00004062 return 0;
Sathya Perla6b7c5b92009-03-11 23:32:03 -07004063}
4064
Padmanabh Ratnakarf67ef7b2012-07-12 03:57:09 +00004065static int lancer_recover_func(struct be_adapter *adapter)
Padmanabh Ratnakard8110f62011-11-25 05:48:23 +00004066{
Somnath Kotur01e5b2c2013-05-29 22:56:17 +00004067 struct device *dev = &adapter->pdev->dev;
Padmanabh Ratnakard8110f62011-11-25 05:48:23 +00004068 int status;
Padmanabh Ratnakard8110f62011-11-25 05:48:23 +00004069
Padmanabh Ratnakarf67ef7b2012-07-12 03:57:09 +00004070 status = lancer_test_and_set_rdy_state(adapter);
4071 if (status)
4072 goto err;
Padmanabh Ratnakard8110f62011-11-25 05:48:23 +00004073
Padmanabh Ratnakarf67ef7b2012-07-12 03:57:09 +00004074 if (netif_running(adapter->netdev))
4075 be_close(adapter->netdev);
Padmanabh Ratnakard8110f62011-11-25 05:48:23 +00004076
Padmanabh Ratnakarf67ef7b2012-07-12 03:57:09 +00004077 be_clear(adapter);
Padmanabh Ratnakard8110f62011-11-25 05:48:23 +00004078
Somnath Kotur01e5b2c2013-05-29 22:56:17 +00004079 be_clear_all_error(adapter);
Padmanabh Ratnakarf67ef7b2012-07-12 03:57:09 +00004080
4081 status = be_setup(adapter);
4082 if (status)
4083 goto err;
4084
4085 if (netif_running(adapter->netdev)) {
4086 status = be_open(adapter->netdev);
Padmanabh Ratnakard8110f62011-11-25 05:48:23 +00004087 if (status)
4088 goto err;
Padmanabh Ratnakard8110f62011-11-25 05:48:23 +00004089 }
Padmanabh Ratnakarf67ef7b2012-07-12 03:57:09 +00004090
Somnath Kotur01e5b2c2013-05-29 22:56:17 +00004091 dev_err(dev, "Error recovery successful\n");
Padmanabh Ratnakarf67ef7b2012-07-12 03:57:09 +00004092 return 0;
Padmanabh Ratnakard8110f62011-11-25 05:48:23 +00004093err:
Somnath Kotur01e5b2c2013-05-29 22:56:17 +00004094 if (status == -EAGAIN)
4095 dev_err(dev, "Waiting for resource provisioning\n");
4096 else
4097 dev_err(dev, "Error recovery failed\n");
Padmanabh Ratnakarf67ef7b2012-07-12 03:57:09 +00004098
4099 return status;
4100}
4101
4102static void be_func_recovery_task(struct work_struct *work)
4103{
4104 struct be_adapter *adapter =
4105 container_of(work, struct be_adapter, func_recovery_work.work);
Somnath Kotur01e5b2c2013-05-29 22:56:17 +00004106 int status = 0;
Padmanabh Ratnakarf67ef7b2012-07-12 03:57:09 +00004107
4108 be_detect_error(adapter);
4109
4110 if (adapter->hw_error && lancer_chip(adapter)) {
4111
Padmanabh Ratnakarf67ef7b2012-07-12 03:57:09 +00004112 rtnl_lock();
4113 netif_device_detach(adapter->netdev);
4114 rtnl_unlock();
4115
4116 status = lancer_recover_func(adapter);
Padmanabh Ratnakarf67ef7b2012-07-12 03:57:09 +00004117 if (!status)
4118 netif_device_attach(adapter->netdev);
4119 }
4120
Somnath Kotur01e5b2c2013-05-29 22:56:17 +00004121 /* In Lancer, for all errors other than provisioning error (-EAGAIN),
4122 * no need to attempt further recovery.
4123 */
4124 if (!status || status == -EAGAIN)
4125 schedule_delayed_work(&adapter->func_recovery_work,
4126 msecs_to_jiffies(1000));
Padmanabh Ratnakard8110f62011-11-25 05:48:23 +00004127}
4128
4129static void be_worker(struct work_struct *work)
4130{
4131 struct be_adapter *adapter =
4132 container_of(work, struct be_adapter, work.work);
4133 struct be_rx_obj *rxo;
Sathya Perla10ef9ab2012-02-09 18:05:27 +00004134 struct be_eq_obj *eqo;
Padmanabh Ratnakard8110f62011-11-25 05:48:23 +00004135 int i;
4136
Padmanabh Ratnakard8110f62011-11-25 05:48:23 +00004137 /* when interrupts are not yet enabled, just reap any pending
4138 * mcc completions */
4139 if (!netif_running(adapter->netdev)) {
Amerigo Wang072a9c42012-08-24 21:41:11 +00004140 local_bh_disable();
Sathya Perla10ef9ab2012-02-09 18:05:27 +00004141 be_process_mcc(adapter);
Amerigo Wang072a9c42012-08-24 21:41:11 +00004142 local_bh_enable();
Padmanabh Ratnakard8110f62011-11-25 05:48:23 +00004143 goto reschedule;
4144 }
4145
4146 if (!adapter->stats_cmd_sent) {
4147 if (lancer_chip(adapter))
4148 lancer_cmd_get_pport_stats(adapter,
4149 &adapter->stats_cmd);
4150 else
4151 be_cmd_get_stats(adapter, &adapter->stats_cmd);
4152 }
4153
Vasundhara Volamd696b5e2013-08-06 09:27:16 +05304154 if (be_physfn(adapter) &&
4155 MODULO(adapter->work_counter, adapter->be_get_temp_freq) == 0)
Padmanabh Ratnakar7aeb2152012-07-12 03:56:46 +00004156 be_cmd_get_die_temperature(adapter);
4157
Padmanabh Ratnakard8110f62011-11-25 05:48:23 +00004158 for_all_rx_queues(adapter, rxo, i) {
Padmanabh Ratnakard8110f62011-11-25 05:48:23 +00004159 if (rxo->rx_post_starved) {
4160 rxo->rx_post_starved = false;
4161 be_post_rx_frags(rxo, GFP_KERNEL);
4162 }
4163 }
4164
Sathya Perla10ef9ab2012-02-09 18:05:27 +00004165 for_all_evt_queues(adapter, eqo, i)
4166 be_eqd_update(adapter, eqo);
4167
Padmanabh Ratnakard8110f62011-11-25 05:48:23 +00004168reschedule:
4169 adapter->work_counter++;
4170 schedule_delayed_work(&adapter->work, msecs_to_jiffies(1000));
4171}
4172
Sathya Perla257a3fe2013-06-14 15:54:51 +05304173/* If any VFs are already enabled don't FLR the PF */
Sathya Perla39f1d942012-05-08 19:41:24 +00004174static bool be_reset_required(struct be_adapter *adapter)
4175{
Sathya Perla257a3fe2013-06-14 15:54:51 +05304176 return pci_num_vf(adapter->pdev) ? false : true;
Sathya Perla39f1d942012-05-08 19:41:24 +00004177}
4178
Sathya Perlad3791422012-09-28 04:39:44 +00004179static char *mc_name(struct be_adapter *adapter)
4180{
4181 if (adapter->function_mode & FLEX10_MODE)
4182 return "FLEX10";
4183 else if (adapter->function_mode & VNIC_MODE)
4184 return "vNIC";
4185 else if (adapter->function_mode & UMC_ENABLED)
4186 return "UMC";
4187 else
4188 return "";
4189}
4190
4191static inline char *func_name(struct be_adapter *adapter)
4192{
4193 return be_physfn(adapter) ? "PF" : "VF";
4194}
4195
Greg Kroah-Hartman1dd06ae2012-12-06 14:30:56 +00004196static int be_probe(struct pci_dev *pdev, const struct pci_device_id *pdev_id)
Sathya Perla6b7c5b92009-03-11 23:32:03 -07004197{
4198 int status = 0;
4199 struct be_adapter *adapter;
4200 struct net_device *netdev;
Padmanabh Ratnakarb4e32a72012-07-12 03:57:35 +00004201 char port_name;
Sathya Perla6b7c5b92009-03-11 23:32:03 -07004202
4203 status = pci_enable_device(pdev);
4204 if (status)
4205 goto do_none;
4206
4207 status = pci_request_regions(pdev, DRV_NAME);
4208 if (status)
4209 goto disable_dev;
4210 pci_set_master(pdev);
4211
Sathya Perla7f640062012-06-05 19:37:20 +00004212 netdev = alloc_etherdev_mqs(sizeof(*adapter), MAX_TX_QS, MAX_RX_QS);
Sathya Perla6b7c5b92009-03-11 23:32:03 -07004213 if (netdev == NULL) {
4214 status = -ENOMEM;
4215 goto rel_reg;
4216 }
4217 adapter = netdev_priv(netdev);
4218 adapter->pdev = pdev;
4219 pci_set_drvdata(pdev, adapter);
4220 adapter->netdev = netdev;
Sathya Perla2243e2e2009-11-22 22:02:03 +00004221 SET_NETDEV_DEV(netdev, &pdev->dev);
Sathya Perla6b7c5b92009-03-11 23:32:03 -07004222
Ivan Vecera2b7bceb2011-02-02 08:05:12 +00004223 status = dma_set_mask(&pdev->dev, DMA_BIT_MASK(64));
Sathya Perla6b7c5b92009-03-11 23:32:03 -07004224 if (!status) {
Craig Hada2bd92cd2013-04-21 23:28:18 +00004225 status = dma_set_coherent_mask(&pdev->dev, DMA_BIT_MASK(64));
4226 if (status < 0) {
4227 dev_err(&pdev->dev, "dma_set_coherent_mask failed\n");
4228 goto free_netdev;
4229 }
Sathya Perla6b7c5b92009-03-11 23:32:03 -07004230 netdev->features |= NETIF_F_HIGHDMA;
4231 } else {
Ivan Vecera2b7bceb2011-02-02 08:05:12 +00004232 status = dma_set_mask(&pdev->dev, DMA_BIT_MASK(32));
Somnath Kotur0c5fed02013-06-11 17:18:22 +05304233 if (!status)
4234 status = dma_set_coherent_mask(&pdev->dev,
4235 DMA_BIT_MASK(32));
Sathya Perla6b7c5b92009-03-11 23:32:03 -07004236 if (status) {
4237 dev_err(&pdev->dev, "Could not set PCI DMA Mask\n");
4238 goto free_netdev;
4239 }
4240 }
4241
Sathya Perlad6b6d982012-09-05 01:56:48 +00004242 status = pci_enable_pcie_error_reporting(pdev);
4243 if (status)
Ivan Vecera4ce1fd62013-07-25 16:10:55 +02004244 dev_info(&pdev->dev, "Could not use PCIe error reporting\n");
Sathya Perlad6b6d982012-09-05 01:56:48 +00004245
Sathya Perla6b7c5b92009-03-11 23:32:03 -07004246 status = be_ctrl_init(adapter);
4247 if (status)
Sathya Perla39f1d942012-05-08 19:41:24 +00004248 goto free_netdev;
Sathya Perla6b7c5b92009-03-11 23:32:03 -07004249
Sathya Perla2243e2e2009-11-22 22:02:03 +00004250 /* sync up with fw's ready state */
Sarveshwar Bandiba343c72010-03-31 02:56:12 +00004251 if (be_physfn(adapter)) {
Padmanabh Ratnakarbf99e502012-07-12 03:56:58 +00004252 status = be_fw_wait_ready(adapter);
Sarveshwar Bandiba343c72010-03-31 02:56:12 +00004253 if (status)
4254 goto ctrl_clean;
Sarveshwar Bandiba343c72010-03-31 02:56:12 +00004255 }
Sathya Perla2243e2e2009-11-22 22:02:03 +00004256
Sathya Perla39f1d942012-05-08 19:41:24 +00004257 if (be_reset_required(adapter)) {
4258 status = be_cmd_reset_function(adapter);
4259 if (status)
4260 goto ctrl_clean;
Sarveshwar Bandi556ae192010-05-24 18:38:25 -07004261
Kalesh AP2d177be2013-04-28 22:22:29 +00004262 /* Wait for interrupts to quiesce after an FLR */
4263 msleep(100);
4264 }
Somnath Kotur8cef7a72013-03-14 02:41:51 +00004265
4266 /* Allow interrupts for other ULPs running on NIC function */
4267 be_intr_set(adapter, true);
Sathya Perla10ef9ab2012-02-09 18:05:27 +00004268
Kalesh AP2d177be2013-04-28 22:22:29 +00004269 /* tell fw we're ready to fire cmds */
4270 status = be_cmd_fw_init(adapter);
4271 if (status)
4272 goto ctrl_clean;
4273
Sathya Perla6b7c5b92009-03-11 23:32:03 -07004274 status = be_stats_init(adapter);
4275 if (status)
4276 goto ctrl_clean;
4277
Sathya Perla39f1d942012-05-08 19:41:24 +00004278 status = be_get_initial_config(adapter);
Sathya Perla6b7c5b92009-03-11 23:32:03 -07004279 if (status)
4280 goto stats_clean;
4281
Sathya Perla6b7c5b92009-03-11 23:32:03 -07004282 INIT_DELAYED_WORK(&adapter->work, be_worker);
Padmanabh Ratnakarf67ef7b2012-07-12 03:57:09 +00004283 INIT_DELAYED_WORK(&adapter->func_recovery_work, be_func_recovery_task);
Sathya Perlaa54769f2011-10-24 02:45:00 +00004284 adapter->rx_fc = adapter->tx_fc = true;
Sathya Perla6b7c5b92009-03-11 23:32:03 -07004285
Sathya Perla5fb379e2009-06-18 00:02:59 +00004286 status = be_setup(adapter);
4287 if (status)
Sathya Perla55f5c3c2012-09-28 04:39:42 +00004288 goto stats_clean;
Sathya Perla2243e2e2009-11-22 22:02:03 +00004289
Sathya Perla3abcded2010-10-03 22:12:27 -07004290 be_netdev_init(netdev);
Sathya Perla6b7c5b92009-03-11 23:32:03 -07004291 status = register_netdev(netdev);
4292 if (status != 0)
Sathya Perla5fb379e2009-06-18 00:02:59 +00004293 goto unsetup;
Sathya Perla6b7c5b92009-03-11 23:32:03 -07004294
Parav Pandit045508a2012-03-26 14:27:13 +00004295 be_roce_dev_add(adapter);
4296
Padmanabh Ratnakarf67ef7b2012-07-12 03:57:09 +00004297 schedule_delayed_work(&adapter->func_recovery_work,
4298 msecs_to_jiffies(1000));
Padmanabh Ratnakarb4e32a72012-07-12 03:57:35 +00004299
4300 be_cmd_query_port_name(adapter, &port_name);
4301
Sathya Perlad3791422012-09-28 04:39:44 +00004302 dev_info(&pdev->dev, "%s: %s %s port %c\n", nic_name(pdev),
4303 func_name(adapter), mc_name(adapter), port_name);
Somnath Kotur34b1ef02011-06-01 00:33:22 +00004304
Sathya Perla6b7c5b92009-03-11 23:32:03 -07004305 return 0;
4306
Sathya Perla5fb379e2009-06-18 00:02:59 +00004307unsetup:
4308 be_clear(adapter);
Sathya Perla6b7c5b92009-03-11 23:32:03 -07004309stats_clean:
4310 be_stats_cleanup(adapter);
4311ctrl_clean:
4312 be_ctrl_cleanup(adapter);
Sathya Perlaf9449ab2011-10-24 02:45:01 +00004313free_netdev:
Sathya Perlafe6d2a32010-11-21 23:25:50 +00004314 free_netdev(netdev);
Sathya Perla8d56ff12009-11-22 22:02:26 +00004315 pci_set_drvdata(pdev, NULL);
Sathya Perla6b7c5b92009-03-11 23:32:03 -07004316rel_reg:
4317 pci_release_regions(pdev);
4318disable_dev:
4319 pci_disable_device(pdev);
4320do_none:
Ajit Khapardec4ca2372009-05-18 15:38:55 -07004321 dev_err(&pdev->dev, "%s initialization failed\n", nic_name(pdev));
Sathya Perla6b7c5b92009-03-11 23:32:03 -07004322 return status;
4323}
4324
4325static int be_suspend(struct pci_dev *pdev, pm_message_t state)
4326{
4327 struct be_adapter *adapter = pci_get_drvdata(pdev);
4328 struct net_device *netdev = adapter->netdev;
4329
Ajit Khaparde71d8d1b2009-12-03 06:16:59 +00004330 if (adapter->wol)
4331 be_setup_wol(adapter, true);
4332
Padmanabh Ratnakarf67ef7b2012-07-12 03:57:09 +00004333 cancel_delayed_work_sync(&adapter->func_recovery_work);
4334
Sathya Perla6b7c5b92009-03-11 23:32:03 -07004335 netif_device_detach(netdev);
4336 if (netif_running(netdev)) {
4337 rtnl_lock();
4338 be_close(netdev);
4339 rtnl_unlock();
4340 }
Sarveshwar Bandi9b0365f2009-08-12 21:01:29 +00004341 be_clear(adapter);
Sathya Perla6b7c5b92009-03-11 23:32:03 -07004342
4343 pci_save_state(pdev);
4344 pci_disable_device(pdev);
4345 pci_set_power_state(pdev, pci_choose_state(pdev, state));
4346 return 0;
4347}
4348
4349static int be_resume(struct pci_dev *pdev)
4350{
4351 int status = 0;
4352 struct be_adapter *adapter = pci_get_drvdata(pdev);
4353 struct net_device *netdev = adapter->netdev;
4354
4355 netif_device_detach(netdev);
4356
4357 status = pci_enable_device(pdev);
4358 if (status)
4359 return status;
4360
Yijing Wang1ca01512013-06-27 20:53:42 +08004361 pci_set_power_state(pdev, PCI_D0);
Sathya Perla6b7c5b92009-03-11 23:32:03 -07004362 pci_restore_state(pdev);
4363
Sathya Perla2243e2e2009-11-22 22:02:03 +00004364 /* tell fw we're ready to fire cmds */
4365 status = be_cmd_fw_init(adapter);
4366 if (status)
4367 return status;
4368
Sarveshwar Bandi9b0365f2009-08-12 21:01:29 +00004369 be_setup(adapter);
Sathya Perla6b7c5b92009-03-11 23:32:03 -07004370 if (netif_running(netdev)) {
4371 rtnl_lock();
Sathya Perla6b7c5b92009-03-11 23:32:03 -07004372 be_open(netdev);
4373 rtnl_unlock();
4374 }
Padmanabh Ratnakarf67ef7b2012-07-12 03:57:09 +00004375
4376 schedule_delayed_work(&adapter->func_recovery_work,
4377 msecs_to_jiffies(1000));
Sathya Perla6b7c5b92009-03-11 23:32:03 -07004378 netif_device_attach(netdev);
Ajit Khaparde71d8d1b2009-12-03 06:16:59 +00004379
4380 if (adapter->wol)
4381 be_setup_wol(adapter, false);
Ajit Khapardea4ca0552011-02-11 13:38:03 +00004382
Sathya Perla6b7c5b92009-03-11 23:32:03 -07004383 return 0;
4384}
4385
Sathya Perla82456b02010-02-17 01:35:37 +00004386/*
4387 * An FLR will stop BE from DMAing any data.
4388 */
4389static void be_shutdown(struct pci_dev *pdev)
4390{
4391 struct be_adapter *adapter = pci_get_drvdata(pdev);
Sathya Perla82456b02010-02-17 01:35:37 +00004392
Ajit Khaparde2d5d4152011-04-06 05:53:13 +00004393 if (!adapter)
4394 return;
Sathya Perla82456b02010-02-17 01:35:37 +00004395
Sathya Perla0f4a6822011-03-21 20:49:28 +00004396 cancel_delayed_work_sync(&adapter->work);
Padmanabh Ratnakarf67ef7b2012-07-12 03:57:09 +00004397 cancel_delayed_work_sync(&adapter->func_recovery_work);
Ajit Khapardea4ca0552011-02-11 13:38:03 +00004398
Ajit Khaparde2d5d4152011-04-06 05:53:13 +00004399 netif_device_detach(adapter->netdev);
Sathya Perla82456b02010-02-17 01:35:37 +00004400
Ajit Khaparde57841862011-04-06 18:08:43 +00004401 be_cmd_reset_function(adapter);
4402
Sathya Perla82456b02010-02-17 01:35:37 +00004403 pci_disable_device(pdev);
Sathya Perla82456b02010-02-17 01:35:37 +00004404}
4405
Sathya Perlacf588472010-02-14 21:22:01 +00004406static pci_ers_result_t be_eeh_err_detected(struct pci_dev *pdev,
4407 pci_channel_state_t state)
4408{
4409 struct be_adapter *adapter = pci_get_drvdata(pdev);
4410 struct net_device *netdev = adapter->netdev;
4411
4412 dev_err(&adapter->pdev->dev, "EEH error detected\n");
4413
Somnath Kotur01e5b2c2013-05-29 22:56:17 +00004414 if (!adapter->eeh_error) {
4415 adapter->eeh_error = true;
Sathya Perlacf588472010-02-14 21:22:01 +00004416
Somnath Kotur01e5b2c2013-05-29 22:56:17 +00004417 cancel_delayed_work_sync(&adapter->func_recovery_work);
Padmanabh Ratnakarf67ef7b2012-07-12 03:57:09 +00004418
Sathya Perlacf588472010-02-14 21:22:01 +00004419 rtnl_lock();
Somnath Kotur01e5b2c2013-05-29 22:56:17 +00004420 netif_device_detach(netdev);
4421 if (netif_running(netdev))
4422 be_close(netdev);
Sathya Perlacf588472010-02-14 21:22:01 +00004423 rtnl_unlock();
Somnath Kotur01e5b2c2013-05-29 22:56:17 +00004424
4425 be_clear(adapter);
Sathya Perlacf588472010-02-14 21:22:01 +00004426 }
Sathya Perlacf588472010-02-14 21:22:01 +00004427
4428 if (state == pci_channel_io_perm_failure)
4429 return PCI_ERS_RESULT_DISCONNECT;
4430
4431 pci_disable_device(pdev);
4432
Somnath Kotureeb7fc72012-05-02 03:41:01 +00004433 /* The error could cause the FW to trigger a flash debug dump.
4434 * Resetting the card while flash dump is in progress
Padmanabh Ratnakarc8a54162012-10-20 06:03:37 +00004435 * can cause it not to recover; wait for it to finish.
4436 * Wait only for first function as it is needed only once per
4437 * adapter.
Somnath Kotureeb7fc72012-05-02 03:41:01 +00004438 */
Padmanabh Ratnakarc8a54162012-10-20 06:03:37 +00004439 if (pdev->devfn == 0)
4440 ssleep(30);
4441
Sathya Perlacf588472010-02-14 21:22:01 +00004442 return PCI_ERS_RESULT_NEED_RESET;
4443}
4444
4445static pci_ers_result_t be_eeh_reset(struct pci_dev *pdev)
4446{
4447 struct be_adapter *adapter = pci_get_drvdata(pdev);
4448 int status;
4449
4450 dev_info(&adapter->pdev->dev, "EEH reset\n");
Sathya Perlacf588472010-02-14 21:22:01 +00004451
4452 status = pci_enable_device(pdev);
4453 if (status)
4454 return PCI_ERS_RESULT_DISCONNECT;
4455
4456 pci_set_master(pdev);
Yijing Wang1ca01512013-06-27 20:53:42 +08004457 pci_set_power_state(pdev, PCI_D0);
Sathya Perlacf588472010-02-14 21:22:01 +00004458 pci_restore_state(pdev);
4459
4460 /* Check if card is ok and fw is ready */
Sathya Perlac5b3ad42013-03-05 22:23:20 +00004461 dev_info(&adapter->pdev->dev,
4462 "Waiting for FW to be ready after EEH reset\n");
Padmanabh Ratnakarbf99e502012-07-12 03:56:58 +00004463 status = be_fw_wait_ready(adapter);
Sathya Perlacf588472010-02-14 21:22:01 +00004464 if (status)
4465 return PCI_ERS_RESULT_DISCONNECT;
4466
Sathya Perlad6b6d982012-09-05 01:56:48 +00004467 pci_cleanup_aer_uncorrect_error_status(pdev);
Somnath Kotur01e5b2c2013-05-29 22:56:17 +00004468 be_clear_all_error(adapter);
Sathya Perlacf588472010-02-14 21:22:01 +00004469 return PCI_ERS_RESULT_RECOVERED;
4470}
4471
4472static void be_eeh_resume(struct pci_dev *pdev)
4473{
4474 int status = 0;
4475 struct be_adapter *adapter = pci_get_drvdata(pdev);
4476 struct net_device *netdev = adapter->netdev;
4477
4478 dev_info(&adapter->pdev->dev, "EEH resume\n");
4479
4480 pci_save_state(pdev);
4481
Kalesh AP2d177be2013-04-28 22:22:29 +00004482 status = be_cmd_reset_function(adapter);
Sathya Perlacf588472010-02-14 21:22:01 +00004483 if (status)
4484 goto err;
4485
Kalesh AP2d177be2013-04-28 22:22:29 +00004486 /* tell fw we're ready to fire cmds */
4487 status = be_cmd_fw_init(adapter);
Padmanabh Ratnakarbf99e502012-07-12 03:56:58 +00004488 if (status)
4489 goto err;
4490
Sathya Perlacf588472010-02-14 21:22:01 +00004491 status = be_setup(adapter);
4492 if (status)
4493 goto err;
4494
4495 if (netif_running(netdev)) {
4496 status = be_open(netdev);
4497 if (status)
4498 goto err;
4499 }
Padmanabh Ratnakarf67ef7b2012-07-12 03:57:09 +00004500
4501 schedule_delayed_work(&adapter->func_recovery_work,
4502 msecs_to_jiffies(1000));
Sathya Perlacf588472010-02-14 21:22:01 +00004503 netif_device_attach(netdev);
4504 return;
4505err:
4506 dev_err(&adapter->pdev->dev, "EEH resume failed\n");
Sathya Perlacf588472010-02-14 21:22:01 +00004507}
4508
Stephen Hemminger3646f0e2012-09-07 09:33:15 -07004509static const struct pci_error_handlers be_eeh_handlers = {
Sathya Perlacf588472010-02-14 21:22:01 +00004510 .error_detected = be_eeh_err_detected,
4511 .slot_reset = be_eeh_reset,
4512 .resume = be_eeh_resume,
4513};
4514
Sathya Perla6b7c5b92009-03-11 23:32:03 -07004515static struct pci_driver be_driver = {
4516 .name = DRV_NAME,
4517 .id_table = be_dev_ids,
4518 .probe = be_probe,
4519 .remove = be_remove,
4520 .suspend = be_suspend,
Sathya Perlacf588472010-02-14 21:22:01 +00004521 .resume = be_resume,
Sathya Perla82456b02010-02-17 01:35:37 +00004522 .shutdown = be_shutdown,
Sathya Perlacf588472010-02-14 21:22:01 +00004523 .err_handler = &be_eeh_handlers
Sathya Perla6b7c5b92009-03-11 23:32:03 -07004524};
4525
4526static int __init be_init_module(void)
4527{
Joe Perches8e95a202009-12-03 07:58:21 +00004528 if (rx_frag_size != 8192 && rx_frag_size != 4096 &&
4529 rx_frag_size != 2048) {
Sathya Perla6b7c5b92009-03-11 23:32:03 -07004530 printk(KERN_WARNING DRV_NAME
4531 " : Module param rx_frag_size must be 2048/4096/8192."
4532 " Using 2048\n");
4533 rx_frag_size = 2048;
4534 }
Sathya Perla6b7c5b92009-03-11 23:32:03 -07004535
Sathya Perla6b7c5b92009-03-11 23:32:03 -07004536 return pci_register_driver(&be_driver);
4537}
4538module_init(be_init_module);
4539
4540static void __exit be_exit_module(void)
4541{
4542 pci_unregister_driver(&be_driver);
4543}
4544module_exit(be_exit_module);