blob: 9187fb4e08f1169baaec2c6974944d924d7d07d5 [file] [log] [blame]
Sathya Perla6b7c5b92009-03-11 23:32:03 -07001/*
Ajit Khaparded2145cd2011-03-16 08:20:46 +00002 * Copyright (C) 2005 - 2011 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
18#include "be.h"
Sathya Perla8788fdc2009-07-27 22:52:03 +000019#include "be_cmds.h"
Stephen Hemminger65f71b82009-03-27 00:25:24 -070020#include <asm/div64.h>
Sathya Perla6b7c5b92009-03-11 23:32:03 -070021
22MODULE_VERSION(DRV_VER);
23MODULE_DEVICE_TABLE(pci, be_dev_ids);
24MODULE_DESCRIPTION(DRV_DESC " " DRV_VER);
25MODULE_AUTHOR("ServerEngines Corporation");
26MODULE_LICENSE("GPL");
27
Sathya Perla2e588f82011-03-11 02:49:26 +000028static ushort rx_frag_size = 2048;
Sarveshwar Bandiba343c72010-03-31 02:56:12 +000029static unsigned int num_vfs;
Sathya Perla2e588f82011-03-11 02:49:26 +000030module_param(rx_frag_size, ushort, S_IRUGO);
Sarveshwar Bandiba343c72010-03-31 02:56:12 +000031module_param(num_vfs, uint, S_IRUGO);
Sathya Perla6b7c5b92009-03-11 23:32:03 -070032MODULE_PARM_DESC(rx_frag_size, "Size of a fragment that holds rcvd data.");
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 Perla3abcded2010-10-03 22:12:27 -070035static bool multi_rxq = true;
36module_param(multi_rxq, bool, S_IRUGO | S_IWUSR);
37MODULE_PARM_DESC(multi_rxq, "Multi Rx Queue support. Enabled by default");
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)},
Sathya Perla6b7c5b92009-03-11 23:32:03 -070045 { 0 }
46};
47MODULE_DEVICE_TABLE(pci, be_dev_ids);
Ajit Khaparde7c185272010-07-29 06:16:33 +000048/* UE Status Low CSR */
49static char *ue_status_low_desc[] = {
50 "CEV",
51 "CTX",
52 "DBUF",
53 "ERX",
54 "Host",
55 "MPU",
56 "NDMA",
57 "PTC ",
58 "RDMA ",
59 "RXF ",
60 "RXIPS ",
61 "RXULP0 ",
62 "RXULP1 ",
63 "RXULP2 ",
64 "TIM ",
65 "TPOST ",
66 "TPRE ",
67 "TXIPS ",
68 "TXULP0 ",
69 "TXULP1 ",
70 "UC ",
71 "WDMA ",
72 "TXULP2 ",
73 "HOST1 ",
74 "P0_OB_LINK ",
75 "P1_OB_LINK ",
76 "HOST_GPIO ",
77 "MBOX ",
78 "AXGMAC0",
79 "AXGMAC1",
80 "JTAG",
81 "MPU_INTPEND"
82};
83/* UE Status High CSR */
84static char *ue_status_hi_desc[] = {
85 "LPCMEMHOST",
86 "MGMT_MAC",
87 "PCS0ONLINE",
88 "MPU_IRAM",
89 "PCS1ONLINE",
90 "PCTL0",
91 "PCTL1",
92 "PMEM",
93 "RR",
94 "TXPB",
95 "RXPP",
96 "XAUI",
97 "TXP",
98 "ARM",
99 "IPC",
100 "HOST2",
101 "HOST3",
102 "HOST4",
103 "HOST5",
104 "HOST6",
105 "HOST7",
106 "HOST8",
107 "HOST9",
108 "NETC"
109 "Unknown",
110 "Unknown",
111 "Unknown",
112 "Unknown",
113 "Unknown",
114 "Unknown",
115 "Unknown",
116 "Unknown"
117};
Sathya Perla6b7c5b92009-03-11 23:32:03 -0700118
Sathya Perla3abcded2010-10-03 22:12:27 -0700119static inline bool be_multi_rxq(struct be_adapter *adapter)
120{
121 return (adapter->num_rx_qs > 1);
122}
123
Sathya Perla6b7c5b92009-03-11 23:32:03 -0700124static void be_queue_free(struct be_adapter *adapter, struct be_queue_info *q)
125{
126 struct be_dma_mem *mem = &q->dma_mem;
127 if (mem->va)
Ivan Vecera2b7bceb2011-02-02 08:05:12 +0000128 dma_free_coherent(&adapter->pdev->dev, mem->size, mem->va,
129 mem->dma);
Sathya Perla6b7c5b92009-03-11 23:32:03 -0700130}
131
132static int be_queue_alloc(struct be_adapter *adapter, struct be_queue_info *q,
133 u16 len, u16 entry_size)
134{
135 struct be_dma_mem *mem = &q->dma_mem;
136
137 memset(q, 0, sizeof(*q));
138 q->len = len;
139 q->entry_size = entry_size;
140 mem->size = len * entry_size;
Ivan Vecera2b7bceb2011-02-02 08:05:12 +0000141 mem->va = dma_alloc_coherent(&adapter->pdev->dev, mem->size, &mem->dma,
142 GFP_KERNEL);
Sathya Perla6b7c5b92009-03-11 23:32:03 -0700143 if (!mem->va)
144 return -1;
145 memset(mem->va, 0, mem->size);
146 return 0;
147}
148
Sathya Perla8788fdc2009-07-27 22:52:03 +0000149static void be_intr_set(struct be_adapter *adapter, bool enable)
Sathya Perla6b7c5b92009-03-11 23:32:03 -0700150{
Sathya Perla8788fdc2009-07-27 22:52:03 +0000151 u8 __iomem *addr = adapter->pcicfg + PCICFG_MEMBAR_CTRL_INT_CTRL_OFFSET;
Sathya Perla6b7c5b92009-03-11 23:32:03 -0700152 u32 reg = ioread32(addr);
153 u32 enabled = reg & MEMBAR_CTRL_INT_CTRL_HOSTINTR_MASK;
Sathya Perla5f0b8492009-07-27 22:52:56 +0000154
Sathya Perlacf588472010-02-14 21:22:01 +0000155 if (adapter->eeh_err)
156 return;
157
Sathya Perla5f0b8492009-07-27 22:52:56 +0000158 if (!enabled && enable)
Sathya Perla6b7c5b92009-03-11 23:32:03 -0700159 reg |= MEMBAR_CTRL_INT_CTRL_HOSTINTR_MASK;
Sathya Perla5f0b8492009-07-27 22:52:56 +0000160 else if (enabled && !enable)
Sathya Perla6b7c5b92009-03-11 23:32:03 -0700161 reg &= ~MEMBAR_CTRL_INT_CTRL_HOSTINTR_MASK;
Sathya Perla5f0b8492009-07-27 22:52:56 +0000162 else
Sathya Perla6b7c5b92009-03-11 23:32:03 -0700163 return;
Sathya Perla5f0b8492009-07-27 22:52:56 +0000164
Sathya Perla6b7c5b92009-03-11 23:32:03 -0700165 iowrite32(reg, addr);
166}
167
Sathya Perla8788fdc2009-07-27 22:52:03 +0000168static void be_rxq_notify(struct be_adapter *adapter, u16 qid, u16 posted)
Sathya Perla6b7c5b92009-03-11 23:32:03 -0700169{
170 u32 val = 0;
171 val |= qid & DB_RQ_RING_ID_MASK;
172 val |= posted << DB_RQ_NUM_POSTED_SHIFT;
Sathya Perlaf3eb62d2010-06-29 00:11:17 +0000173
174 wmb();
Sathya Perla8788fdc2009-07-27 22:52:03 +0000175 iowrite32(val, adapter->db + DB_RQ_OFFSET);
Sathya Perla6b7c5b92009-03-11 23:32:03 -0700176}
177
Sathya Perla8788fdc2009-07-27 22:52:03 +0000178static void be_txq_notify(struct be_adapter *adapter, u16 qid, u16 posted)
Sathya Perla6b7c5b92009-03-11 23:32:03 -0700179{
180 u32 val = 0;
181 val |= qid & DB_TXULP_RING_ID_MASK;
182 val |= (posted & DB_TXULP_NUM_POSTED_MASK) << DB_TXULP_NUM_POSTED_SHIFT;
Sathya Perlaf3eb62d2010-06-29 00:11:17 +0000183
184 wmb();
Sathya Perla8788fdc2009-07-27 22:52:03 +0000185 iowrite32(val, adapter->db + DB_TXULP1_OFFSET);
Sathya Perla6b7c5b92009-03-11 23:32:03 -0700186}
187
Sathya Perla8788fdc2009-07-27 22:52:03 +0000188static void be_eq_notify(struct be_adapter *adapter, u16 qid,
Sathya Perla6b7c5b92009-03-11 23:32:03 -0700189 bool arm, bool clear_int, u16 num_popped)
190{
191 u32 val = 0;
192 val |= qid & DB_EQ_RING_ID_MASK;
Sathya Perlafe6d2a32010-11-21 23:25:50 +0000193 val |= ((qid & DB_EQ_RING_ID_EXT_MASK) <<
194 DB_EQ_RING_ID_EXT_MASK_SHIFT);
Sathya Perlacf588472010-02-14 21:22:01 +0000195
196 if (adapter->eeh_err)
197 return;
198
Sathya Perla6b7c5b92009-03-11 23:32:03 -0700199 if (arm)
200 val |= 1 << DB_EQ_REARM_SHIFT;
201 if (clear_int)
202 val |= 1 << DB_EQ_CLR_SHIFT;
203 val |= 1 << DB_EQ_EVNT_SHIFT;
204 val |= num_popped << DB_EQ_NUM_POPPED_SHIFT;
Sathya Perla8788fdc2009-07-27 22:52:03 +0000205 iowrite32(val, adapter->db + DB_EQ_OFFSET);
Sathya Perla6b7c5b92009-03-11 23:32:03 -0700206}
207
Sathya Perla8788fdc2009-07-27 22:52:03 +0000208void be_cq_notify(struct be_adapter *adapter, u16 qid, bool arm, u16 num_popped)
Sathya Perla6b7c5b92009-03-11 23:32:03 -0700209{
210 u32 val = 0;
211 val |= qid & DB_CQ_RING_ID_MASK;
Sathya Perlafe6d2a32010-11-21 23:25:50 +0000212 val |= ((qid & DB_CQ_RING_ID_EXT_MASK) <<
213 DB_CQ_RING_ID_EXT_MASK_SHIFT);
Sathya Perlacf588472010-02-14 21:22:01 +0000214
215 if (adapter->eeh_err)
216 return;
217
Sathya Perla6b7c5b92009-03-11 23:32:03 -0700218 if (arm)
219 val |= 1 << DB_CQ_REARM_SHIFT;
220 val |= num_popped << DB_CQ_NUM_POPPED_SHIFT;
Sathya Perla8788fdc2009-07-27 22:52:03 +0000221 iowrite32(val, adapter->db + DB_CQ_OFFSET);
Sathya Perla6b7c5b92009-03-11 23:32:03 -0700222}
223
Sathya Perla6b7c5b92009-03-11 23:32:03 -0700224static int be_mac_addr_set(struct net_device *netdev, void *p)
225{
226 struct be_adapter *adapter = netdev_priv(netdev);
227 struct sockaddr *addr = p;
228 int status = 0;
229
Ajit Khapardeca9e4982009-11-29 17:56:26 +0000230 if (!is_valid_ether_addr(addr->sa_data))
231 return -EADDRNOTAVAIL;
232
Sarveshwar Bandiba343c72010-03-31 02:56:12 +0000233 /* MAC addr configuration will be done in hardware for VFs
234 * by their corresponding PFs. Just copy to netdev addr here
235 */
236 if (!be_physfn(adapter))
237 goto netdev_addr;
238
Ajit Khapardef8617e02011-02-11 13:36:37 +0000239 status = be_cmd_pmac_del(adapter, adapter->if_handle,
240 adapter->pmac_id, 0);
Sathya Perlaa65027e2009-08-17 00:58:04 +0000241 if (status)
242 return status;
Sathya Perla6b7c5b92009-03-11 23:32:03 -0700243
Sathya Perlaa65027e2009-08-17 00:58:04 +0000244 status = be_cmd_pmac_add(adapter, (u8 *)addr->sa_data,
Ajit Khapardef8617e02011-02-11 13:36:37 +0000245 adapter->if_handle, &adapter->pmac_id, 0);
Sarveshwar Bandiba343c72010-03-31 02:56:12 +0000246netdev_addr:
Sathya Perla6b7c5b92009-03-11 23:32:03 -0700247 if (!status)
248 memcpy(netdev->dev_addr, addr->sa_data, netdev->addr_len);
249
250 return status;
251}
252
Sathya Perlab31c50a2009-09-17 10:30:13 -0700253void netdev_stats_update(struct be_adapter *adapter)
Sathya Perla6b7c5b92009-03-11 23:32:03 -0700254{
Sathya Perla3abcded2010-10-03 22:12:27 -0700255 struct be_hw_stats *hw_stats = hw_stats_from_cmd(adapter->stats_cmd.va);
Sathya Perla6b7c5b92009-03-11 23:32:03 -0700256 struct be_rxf_stats *rxf_stats = &hw_stats->rxf;
257 struct be_port_rxf_stats *port_stats =
258 &rxf_stats->port[adapter->port_num];
Ajit Khaparde78122a52009-10-07 03:11:20 -0700259 struct net_device_stats *dev_stats = &adapter->netdev->stats;
Sathya Perla68110862009-06-10 02:21:16 +0000260 struct be_erx_stats *erx_stats = &hw_stats->erx;
Sathya Perla3abcded2010-10-03 22:12:27 -0700261 struct be_rx_obj *rxo;
262 int i;
Sathya Perla6b7c5b92009-03-11 23:32:03 -0700263
Sathya Perla3abcded2010-10-03 22:12:27 -0700264 memset(dev_stats, 0, sizeof(*dev_stats));
265 for_all_rx_queues(adapter, rxo, i) {
266 dev_stats->rx_packets += rx_stats(rxo)->rx_pkts;
267 dev_stats->rx_bytes += rx_stats(rxo)->rx_bytes;
268 dev_stats->multicast += rx_stats(rxo)->rx_mcast_pkts;
269 /* no space in linux buffers: best possible approximation */
270 dev_stats->rx_dropped +=
271 erx_stats->rx_drops_no_fragments[rxo->q.id];
272 }
273
274 dev_stats->tx_packets = tx_stats(adapter)->be_tx_pkts;
275 dev_stats->tx_bytes = tx_stats(adapter)->be_tx_bytes;
Sathya Perla6b7c5b92009-03-11 23:32:03 -0700276
277 /* bad pkts received */
278 dev_stats->rx_errors = port_stats->rx_crc_errors +
279 port_stats->rx_alignment_symbol_errors +
280 port_stats->rx_in_range_errors +
Sathya Perla68110862009-06-10 02:21:16 +0000281 port_stats->rx_out_range_errors +
282 port_stats->rx_frame_too_long +
283 port_stats->rx_dropped_too_small +
284 port_stats->rx_dropped_too_short +
285 port_stats->rx_dropped_header_too_small +
286 port_stats->rx_dropped_tcp_length +
287 port_stats->rx_dropped_runt +
288 port_stats->rx_tcp_checksum_errs +
289 port_stats->rx_ip_checksum_errs +
290 port_stats->rx_udp_checksum_errs;
Sathya Perla6b7c5b92009-03-11 23:32:03 -0700291
Sathya Perla6b7c5b92009-03-11 23:32:03 -0700292 /* detailed rx errors */
293 dev_stats->rx_length_errors = port_stats->rx_in_range_errors +
Sathya Perla68110862009-06-10 02:21:16 +0000294 port_stats->rx_out_range_errors +
295 port_stats->rx_frame_too_long;
296
Sathya Perla6b7c5b92009-03-11 23:32:03 -0700297 dev_stats->rx_crc_errors = port_stats->rx_crc_errors;
298
299 /* frame alignment errors */
300 dev_stats->rx_frame_errors = port_stats->rx_alignment_symbol_errors;
Sathya Perla68110862009-06-10 02:21:16 +0000301
Sathya Perla6b7c5b92009-03-11 23:32:03 -0700302 /* receiver fifo overrun */
303 /* drops_no_pbuf is no per i/f, it's per BE card */
304 dev_stats->rx_fifo_errors = port_stats->rx_fifo_overflow +
305 port_stats->rx_input_fifo_overflow +
306 rxf_stats->rx_drops_no_pbuf;
Sathya Perla6b7c5b92009-03-11 23:32:03 -0700307}
308
Sathya Perla8788fdc2009-07-27 22:52:03 +0000309void be_link_status_update(struct be_adapter *adapter, bool link_up)
Sathya Perla6b7c5b92009-03-11 23:32:03 -0700310{
Sathya Perla6b7c5b92009-03-11 23:32:03 -0700311 struct net_device *netdev = adapter->netdev;
312
Sathya Perla6b7c5b92009-03-11 23:32:03 -0700313 /* If link came up or went down */
Sathya Perlaa8f447b2009-06-18 00:10:27 +0000314 if (adapter->link_up != link_up) {
Ajit Khaparde0dffc832009-11-29 17:57:46 +0000315 adapter->link_speed = -1;
Sathya Perlaa8f447b2009-06-18 00:10:27 +0000316 if (link_up) {
Sathya Perla6b7c5b92009-03-11 23:32:03 -0700317 netif_carrier_on(netdev);
318 printk(KERN_INFO "%s: Link up\n", netdev->name);
Sathya Perlaa8f447b2009-06-18 00:10:27 +0000319 } else {
Sathya Perlaa8f447b2009-06-18 00:10:27 +0000320 netif_carrier_off(netdev);
321 printk(KERN_INFO "%s: Link down\n", netdev->name);
Sathya Perla6b7c5b92009-03-11 23:32:03 -0700322 }
Sathya Perlaa8f447b2009-06-18 00:10:27 +0000323 adapter->link_up = link_up;
Sathya Perla6b7c5b92009-03-11 23:32:03 -0700324 }
Sathya Perla6b7c5b92009-03-11 23:32:03 -0700325}
326
327/* Update the EQ delay n BE based on the RX frags consumed / sec */
Sathya Perla3abcded2010-10-03 22:12:27 -0700328static void be_rx_eqd_update(struct be_adapter *adapter, struct be_rx_obj *rxo)
Sathya Perla6b7c5b92009-03-11 23:32:03 -0700329{
Sathya Perla3abcded2010-10-03 22:12:27 -0700330 struct be_eq_obj *rx_eq = &rxo->rx_eq;
331 struct be_rx_stats *stats = &rxo->stats;
Sathya Perla4097f662009-03-24 16:40:13 -0700332 ulong now = jiffies;
333 u32 eqd;
334
335 if (!rx_eq->enable_aic)
336 return;
337
338 /* Wrapped around */
339 if (time_before(now, stats->rx_fps_jiffies)) {
340 stats->rx_fps_jiffies = now;
341 return;
342 }
Sathya Perla6b7c5b92009-03-11 23:32:03 -0700343
344 /* Update once a second */
Sathya Perla4097f662009-03-24 16:40:13 -0700345 if ((now - stats->rx_fps_jiffies) < HZ)
Sathya Perla6b7c5b92009-03-11 23:32:03 -0700346 return;
347
Sathya Perla3abcded2010-10-03 22:12:27 -0700348 stats->rx_fps = (stats->rx_frags - stats->prev_rx_frags) /
Sathya Perla4097f662009-03-24 16:40:13 -0700349 ((now - stats->rx_fps_jiffies) / HZ);
Sathya Perla6b7c5b92009-03-11 23:32:03 -0700350
Sathya Perla4097f662009-03-24 16:40:13 -0700351 stats->rx_fps_jiffies = now;
Sathya Perla3abcded2010-10-03 22:12:27 -0700352 stats->prev_rx_frags = stats->rx_frags;
353 eqd = stats->rx_fps / 110000;
Sathya Perla6b7c5b92009-03-11 23:32:03 -0700354 eqd = eqd << 3;
355 if (eqd > rx_eq->max_eqd)
356 eqd = rx_eq->max_eqd;
357 if (eqd < rx_eq->min_eqd)
358 eqd = rx_eq->min_eqd;
359 if (eqd < 10)
360 eqd = 0;
361 if (eqd != rx_eq->cur_eqd)
Sathya Perla8788fdc2009-07-27 22:52:03 +0000362 be_cmd_modify_eqd(adapter, rx_eq->q.id, eqd);
Sathya Perla6b7c5b92009-03-11 23:32:03 -0700363
364 rx_eq->cur_eqd = eqd;
365}
366
Stephen Hemminger65f71b82009-03-27 00:25:24 -0700367static u32 be_calc_rate(u64 bytes, unsigned long ticks)
368{
369 u64 rate = bytes;
370
371 do_div(rate, ticks / HZ);
372 rate <<= 3; /* bytes/sec -> bits/sec */
373 do_div(rate, 1000000ul); /* MB/Sec */
374
375 return rate;
376}
377
Sathya Perla4097f662009-03-24 16:40:13 -0700378static void be_tx_rate_update(struct be_adapter *adapter)
379{
Sathya Perla3abcded2010-10-03 22:12:27 -0700380 struct be_tx_stats *stats = tx_stats(adapter);
Sathya Perla4097f662009-03-24 16:40:13 -0700381 ulong now = jiffies;
382
383 /* Wrapped around? */
384 if (time_before(now, stats->be_tx_jiffies)) {
385 stats->be_tx_jiffies = now;
386 return;
387 }
388
389 /* Update tx rate once in two seconds */
390 if ((now - stats->be_tx_jiffies) > 2 * HZ) {
Stephen Hemminger65f71b82009-03-27 00:25:24 -0700391 stats->be_tx_rate = be_calc_rate(stats->be_tx_bytes
392 - stats->be_tx_bytes_prev,
393 now - stats->be_tx_jiffies);
Sathya Perla4097f662009-03-24 16:40:13 -0700394 stats->be_tx_jiffies = now;
395 stats->be_tx_bytes_prev = stats->be_tx_bytes;
396 }
397}
398
Sathya Perla6b7c5b92009-03-11 23:32:03 -0700399static void be_tx_stats_update(struct be_adapter *adapter,
Ajit Khaparde91992e42010-02-19 13:57:12 +0000400 u32 wrb_cnt, u32 copied, u32 gso_segs, bool stopped)
Sathya Perla6b7c5b92009-03-11 23:32:03 -0700401{
Sathya Perla3abcded2010-10-03 22:12:27 -0700402 struct be_tx_stats *stats = tx_stats(adapter);
Sathya Perla6b7c5b92009-03-11 23:32:03 -0700403 stats->be_tx_reqs++;
404 stats->be_tx_wrbs += wrb_cnt;
405 stats->be_tx_bytes += copied;
Ajit Khaparde91992e42010-02-19 13:57:12 +0000406 stats->be_tx_pkts += (gso_segs ? gso_segs : 1);
Sathya Perla6b7c5b92009-03-11 23:32:03 -0700407 if (stopped)
408 stats->be_tx_stops++;
Sathya Perla6b7c5b92009-03-11 23:32:03 -0700409}
410
411/* Determine number of WRB entries needed to xmit data in an skb */
Sathya Perlafe6d2a32010-11-21 23:25:50 +0000412static u32 wrb_cnt_for_skb(struct be_adapter *adapter, struct sk_buff *skb,
413 bool *dummy)
Sathya Perla6b7c5b92009-03-11 23:32:03 -0700414{
David S. Millerebc8d2a2009-06-09 01:01:31 -0700415 int cnt = (skb->len > skb->data_len);
416
417 cnt += skb_shinfo(skb)->nr_frags;
418
Sathya Perla6b7c5b92009-03-11 23:32:03 -0700419 /* to account for hdr wrb */
420 cnt++;
Sathya Perlafe6d2a32010-11-21 23:25:50 +0000421 if (lancer_chip(adapter) || !(cnt & 1)) {
422 *dummy = false;
423 } else {
Sathya Perla6b7c5b92009-03-11 23:32:03 -0700424 /* add a dummy to make it an even num */
425 cnt++;
426 *dummy = true;
Sathya Perlafe6d2a32010-11-21 23:25:50 +0000427 }
Sathya Perla6b7c5b92009-03-11 23:32:03 -0700428 BUG_ON(cnt > BE_MAX_TX_FRAG_COUNT);
429 return cnt;
430}
431
432static inline void wrb_fill(struct be_eth_wrb *wrb, u64 addr, int len)
433{
434 wrb->frag_pa_hi = upper_32_bits(addr);
435 wrb->frag_pa_lo = addr & 0xFFFFFFFF;
436 wrb->frag_len = len & ETH_WRB_FRAG_LEN_MASK;
437}
438
Somnath Koturcc4ce022010-10-21 07:11:14 -0700439static void wrb_fill_hdr(struct be_adapter *adapter, struct be_eth_hdr_wrb *hdr,
440 struct sk_buff *skb, u32 wrb_cnt, u32 len)
Sathya Perla6b7c5b92009-03-11 23:32:03 -0700441{
Somnath Koturcc4ce022010-10-21 07:11:14 -0700442 u8 vlan_prio = 0;
443 u16 vlan_tag = 0;
444
Sathya Perla6b7c5b92009-03-11 23:32:03 -0700445 memset(hdr, 0, sizeof(*hdr));
446
447 AMAP_SET_BITS(struct amap_eth_hdr_wrb, crc, hdr, 1);
448
Ajit Khaparde49e4b842010-06-14 04:56:07 +0000449 if (skb_is_gso(skb)) {
Sathya Perla6b7c5b92009-03-11 23:32:03 -0700450 AMAP_SET_BITS(struct amap_eth_hdr_wrb, lso, hdr, 1);
451 AMAP_SET_BITS(struct amap_eth_hdr_wrb, lso_mss,
452 hdr, skb_shinfo(skb)->gso_size);
Sathya Perlafe6d2a32010-11-21 23:25:50 +0000453 if (skb_is_gso_v6(skb) && !lancer_chip(adapter))
Ajit Khaparde49e4b842010-06-14 04:56:07 +0000454 AMAP_SET_BITS(struct amap_eth_hdr_wrb, lso6, hdr, 1);
Sathya Perlafe6d2a32010-11-21 23:25:50 +0000455 if (lancer_chip(adapter) && adapter->sli_family ==
456 LANCER_A0_SLI_FAMILY) {
457 AMAP_SET_BITS(struct amap_eth_hdr_wrb, ipcs, hdr, 1);
458 if (is_tcp_pkt(skb))
459 AMAP_SET_BITS(struct amap_eth_hdr_wrb,
460 tcpcs, hdr, 1);
461 else if (is_udp_pkt(skb))
462 AMAP_SET_BITS(struct amap_eth_hdr_wrb,
463 udpcs, hdr, 1);
464 }
Sathya Perla6b7c5b92009-03-11 23:32:03 -0700465 } else if (skb->ip_summed == CHECKSUM_PARTIAL) {
466 if (is_tcp_pkt(skb))
467 AMAP_SET_BITS(struct amap_eth_hdr_wrb, tcpcs, hdr, 1);
468 else if (is_udp_pkt(skb))
469 AMAP_SET_BITS(struct amap_eth_hdr_wrb, udpcs, hdr, 1);
470 }
471
Somnath Koturcc4ce022010-10-21 07:11:14 -0700472 if (adapter->vlan_grp && vlan_tx_tag_present(skb)) {
Sathya Perla6b7c5b92009-03-11 23:32:03 -0700473 AMAP_SET_BITS(struct amap_eth_hdr_wrb, vlan, hdr, 1);
Somnath Koturcc4ce022010-10-21 07:11:14 -0700474 vlan_tag = vlan_tx_tag_get(skb);
475 vlan_prio = (vlan_tag & VLAN_PRIO_MASK) >> VLAN_PRIO_SHIFT;
476 /* If vlan priority provided by OS is NOT in available bmap */
477 if (!(adapter->vlan_prio_bmap & (1 << vlan_prio)))
478 vlan_tag = (vlan_tag & ~VLAN_PRIO_MASK) |
479 adapter->recommended_prio;
480 AMAP_SET_BITS(struct amap_eth_hdr_wrb, vlan_tag, hdr, vlan_tag);
Sathya Perla6b7c5b92009-03-11 23:32:03 -0700481 }
482
483 AMAP_SET_BITS(struct amap_eth_hdr_wrb, event, hdr, 1);
484 AMAP_SET_BITS(struct amap_eth_hdr_wrb, complete, hdr, 1);
485 AMAP_SET_BITS(struct amap_eth_hdr_wrb, num_wrb, hdr, wrb_cnt);
486 AMAP_SET_BITS(struct amap_eth_hdr_wrb, len, hdr, len);
487}
488
Ivan Vecera2b7bceb2011-02-02 08:05:12 +0000489static void unmap_tx_frag(struct device *dev, struct be_eth_wrb *wrb,
Sathya Perla7101e112010-03-22 20:41:12 +0000490 bool unmap_single)
491{
492 dma_addr_t dma;
493
494 be_dws_le_to_cpu(wrb, sizeof(*wrb));
495
496 dma = (u64)wrb->frag_pa_hi << 32 | (u64)wrb->frag_pa_lo;
FUJITA Tomonorib681ee72010-04-04 21:40:18 +0000497 if (wrb->frag_len) {
Sathya Perla7101e112010-03-22 20:41:12 +0000498 if (unmap_single)
Ivan Vecera2b7bceb2011-02-02 08:05:12 +0000499 dma_unmap_single(dev, dma, wrb->frag_len,
500 DMA_TO_DEVICE);
Sathya Perla7101e112010-03-22 20:41:12 +0000501 else
Ivan Vecera2b7bceb2011-02-02 08:05:12 +0000502 dma_unmap_page(dev, dma, wrb->frag_len, DMA_TO_DEVICE);
Sathya Perla7101e112010-03-22 20:41:12 +0000503 }
504}
Sathya Perla6b7c5b92009-03-11 23:32:03 -0700505
506static int make_tx_wrbs(struct be_adapter *adapter,
507 struct sk_buff *skb, u32 wrb_cnt, bool dummy_wrb)
508{
Sathya Perla7101e112010-03-22 20:41:12 +0000509 dma_addr_t busaddr;
510 int i, copied = 0;
Ivan Vecera2b7bceb2011-02-02 08:05:12 +0000511 struct device *dev = &adapter->pdev->dev;
Sathya Perla6b7c5b92009-03-11 23:32:03 -0700512 struct sk_buff *first_skb = skb;
513 struct be_queue_info *txq = &adapter->tx_obj.q;
514 struct be_eth_wrb *wrb;
515 struct be_eth_hdr_wrb *hdr;
Sathya Perla7101e112010-03-22 20:41:12 +0000516 bool map_single = false;
517 u16 map_head;
Sathya Perla6b7c5b92009-03-11 23:32:03 -0700518
Sathya Perla6b7c5b92009-03-11 23:32:03 -0700519 hdr = queue_head_node(txq);
520 queue_head_inc(txq);
Sathya Perla7101e112010-03-22 20:41:12 +0000521 map_head = txq->head;
Sathya Perla6b7c5b92009-03-11 23:32:03 -0700522
David S. Millerebc8d2a2009-06-09 01:01:31 -0700523 if (skb->len > skb->data_len) {
Eric Dumazete743d312010-04-14 15:59:40 -0700524 int len = skb_headlen(skb);
Ivan Vecera2b7bceb2011-02-02 08:05:12 +0000525 busaddr = dma_map_single(dev, skb->data, len, DMA_TO_DEVICE);
526 if (dma_mapping_error(dev, busaddr))
Sathya Perla7101e112010-03-22 20:41:12 +0000527 goto dma_err;
528 map_single = true;
David S. Millerebc8d2a2009-06-09 01:01:31 -0700529 wrb = queue_head_node(txq);
530 wrb_fill(wrb, busaddr, len);
531 be_dws_cpu_to_le(wrb, sizeof(*wrb));
532 queue_head_inc(txq);
533 copied += len;
534 }
Sathya Perla6b7c5b92009-03-11 23:32:03 -0700535
David S. Millerebc8d2a2009-06-09 01:01:31 -0700536 for (i = 0; i < skb_shinfo(skb)->nr_frags; i++) {
537 struct skb_frag_struct *frag =
538 &skb_shinfo(skb)->frags[i];
Ivan Vecera2b7bceb2011-02-02 08:05:12 +0000539 busaddr = dma_map_page(dev, frag->page, frag->page_offset,
540 frag->size, DMA_TO_DEVICE);
541 if (dma_mapping_error(dev, busaddr))
Sathya Perla7101e112010-03-22 20:41:12 +0000542 goto dma_err;
David S. Millerebc8d2a2009-06-09 01:01:31 -0700543 wrb = queue_head_node(txq);
544 wrb_fill(wrb, busaddr, frag->size);
545 be_dws_cpu_to_le(wrb, sizeof(*wrb));
546 queue_head_inc(txq);
547 copied += frag->size;
Sathya Perla6b7c5b92009-03-11 23:32:03 -0700548 }
549
550 if (dummy_wrb) {
551 wrb = queue_head_node(txq);
552 wrb_fill(wrb, 0, 0);
553 be_dws_cpu_to_le(wrb, sizeof(*wrb));
554 queue_head_inc(txq);
555 }
556
Somnath Koturcc4ce022010-10-21 07:11:14 -0700557 wrb_fill_hdr(adapter, hdr, first_skb, wrb_cnt, copied);
Sathya Perla6b7c5b92009-03-11 23:32:03 -0700558 be_dws_cpu_to_le(hdr, sizeof(*hdr));
559
560 return copied;
Sathya Perla7101e112010-03-22 20:41:12 +0000561dma_err:
562 txq->head = map_head;
563 while (copied) {
564 wrb = queue_head_node(txq);
Ivan Vecera2b7bceb2011-02-02 08:05:12 +0000565 unmap_tx_frag(dev, wrb, map_single);
Sathya Perla7101e112010-03-22 20:41:12 +0000566 map_single = false;
567 copied -= wrb->frag_len;
568 queue_head_inc(txq);
569 }
570 return 0;
Sathya Perla6b7c5b92009-03-11 23:32:03 -0700571}
572
Stephen Hemminger613573252009-08-31 19:50:58 +0000573static netdev_tx_t be_xmit(struct sk_buff *skb,
Sathya Perlab31c50a2009-09-17 10:30:13 -0700574 struct net_device *netdev)
Sathya Perla6b7c5b92009-03-11 23:32:03 -0700575{
576 struct be_adapter *adapter = netdev_priv(netdev);
577 struct be_tx_obj *tx_obj = &adapter->tx_obj;
578 struct be_queue_info *txq = &tx_obj->q;
579 u32 wrb_cnt = 0, copied = 0;
580 u32 start = txq->head;
581 bool dummy_wrb, stopped = false;
582
Sathya Perlafe6d2a32010-11-21 23:25:50 +0000583 wrb_cnt = wrb_cnt_for_skb(adapter, skb, &dummy_wrb);
Sathya Perla6b7c5b92009-03-11 23:32:03 -0700584
585 copied = make_tx_wrbs(adapter, skb, wrb_cnt, dummy_wrb);
Ajit Khapardec190e3c2009-09-04 03:12:29 +0000586 if (copied) {
587 /* record the sent skb in the sent_skb table */
588 BUG_ON(tx_obj->sent_skb_list[start]);
589 tx_obj->sent_skb_list[start] = skb;
Sathya Perla6b7c5b92009-03-11 23:32:03 -0700590
Ajit Khapardec190e3c2009-09-04 03:12:29 +0000591 /* Ensure txq has space for the next skb; Else stop the queue
592 * *BEFORE* ringing the tx doorbell, so that we serialze the
593 * tx compls of the current transmit which'll wake up the queue
594 */
Sathya Perla7101e112010-03-22 20:41:12 +0000595 atomic_add(wrb_cnt, &txq->used);
Ajit Khapardec190e3c2009-09-04 03:12:29 +0000596 if ((BE_MAX_TX_FRAG_COUNT + atomic_read(&txq->used)) >=
597 txq->len) {
598 netif_stop_queue(netdev);
599 stopped = true;
600 }
Sathya Perla6b7c5b92009-03-11 23:32:03 -0700601
Ajit Khapardec190e3c2009-09-04 03:12:29 +0000602 be_txq_notify(adapter, txq->id, wrb_cnt);
603
Ajit Khaparde91992e42010-02-19 13:57:12 +0000604 be_tx_stats_update(adapter, wrb_cnt, copied,
605 skb_shinfo(skb)->gso_segs, stopped);
Ajit Khapardec190e3c2009-09-04 03:12:29 +0000606 } else {
607 txq->head = start;
608 dev_kfree_skb_any(skb);
Sathya Perla6b7c5b92009-03-11 23:32:03 -0700609 }
Sathya Perla6b7c5b92009-03-11 23:32:03 -0700610 return NETDEV_TX_OK;
611}
612
613static int be_change_mtu(struct net_device *netdev, int new_mtu)
614{
615 struct be_adapter *adapter = netdev_priv(netdev);
616 if (new_mtu < BE_MIN_MTU ||
Ajit Khaparde34a89b82010-02-09 01:32:43 +0000617 new_mtu > (BE_MAX_JUMBO_FRAME_SIZE -
618 (ETH_HLEN + ETH_FCS_LEN))) {
Sathya Perla6b7c5b92009-03-11 23:32:03 -0700619 dev_info(&adapter->pdev->dev,
620 "MTU must be between %d and %d bytes\n",
Ajit Khaparde34a89b82010-02-09 01:32:43 +0000621 BE_MIN_MTU,
622 (BE_MAX_JUMBO_FRAME_SIZE - (ETH_HLEN + ETH_FCS_LEN)));
Sathya Perla6b7c5b92009-03-11 23:32:03 -0700623 return -EINVAL;
624 }
625 dev_info(&adapter->pdev->dev, "MTU changed from %d to %d bytes\n",
626 netdev->mtu, new_mtu);
627 netdev->mtu = new_mtu;
628 return 0;
629}
630
631/*
Ajit Khaparde82903e42010-02-09 01:34:57 +0000632 * A max of 64 (BE_NUM_VLANS_SUPPORTED) vlans can be configured in BE.
633 * If the user configures more, place BE in vlan promiscuous mode.
Sathya Perla6b7c5b92009-03-11 23:32:03 -0700634 */
Ajit Khaparde1da87b72010-07-23 01:51:22 +0000635static int be_vid_config(struct be_adapter *adapter, bool vf, u32 vf_num)
Sathya Perla6b7c5b92009-03-11 23:32:03 -0700636{
Sathya Perla6b7c5b92009-03-11 23:32:03 -0700637 u16 vtag[BE_NUM_VLANS_SUPPORTED];
638 u16 ntags = 0, i;
Ajit Khaparde82903e42010-02-09 01:34:57 +0000639 int status = 0;
Ajit Khaparde1da87b72010-07-23 01:51:22 +0000640 u32 if_handle;
641
642 if (vf) {
643 if_handle = adapter->vf_cfg[vf_num].vf_if_handle;
644 vtag[0] = cpu_to_le16(adapter->vf_cfg[vf_num].vf_vlan_tag);
645 status = be_cmd_vlan_config(adapter, if_handle, vtag, 1, 1, 0);
646 }
Sathya Perla6b7c5b92009-03-11 23:32:03 -0700647
Ajit Khaparde82903e42010-02-09 01:34:57 +0000648 if (adapter->vlans_added <= adapter->max_vlans) {
Sathya Perla6b7c5b92009-03-11 23:32:03 -0700649 /* Construct VLAN Table to give to HW */
Jesse Grossb7381272010-10-20 13:56:02 +0000650 for (i = 0; i < VLAN_N_VID; i++) {
Sathya Perla6b7c5b92009-03-11 23:32:03 -0700651 if (adapter->vlan_tag[i]) {
652 vtag[ntags] = cpu_to_le16(i);
653 ntags++;
654 }
655 }
Sathya Perlab31c50a2009-09-17 10:30:13 -0700656 status = be_cmd_vlan_config(adapter, adapter->if_handle,
657 vtag, ntags, 1, 0);
Sathya Perla6b7c5b92009-03-11 23:32:03 -0700658 } else {
Sathya Perlab31c50a2009-09-17 10:30:13 -0700659 status = be_cmd_vlan_config(adapter, adapter->if_handle,
660 NULL, 0, 1, 1);
Sathya Perla6b7c5b92009-03-11 23:32:03 -0700661 }
Ajit Khaparde1da87b72010-07-23 01:51:22 +0000662
Sathya Perlab31c50a2009-09-17 10:30:13 -0700663 return status;
Sathya Perla6b7c5b92009-03-11 23:32:03 -0700664}
665
666static void be_vlan_register(struct net_device *netdev, struct vlan_group *grp)
667{
668 struct be_adapter *adapter = netdev_priv(netdev);
Sathya Perla6b7c5b92009-03-11 23:32:03 -0700669
Sathya Perla6b7c5b92009-03-11 23:32:03 -0700670 adapter->vlan_grp = grp;
Sathya Perla6b7c5b92009-03-11 23:32:03 -0700671}
672
673static void be_vlan_add_vid(struct net_device *netdev, u16 vid)
674{
675 struct be_adapter *adapter = netdev_priv(netdev);
676
Ajit Khaparde1da87b72010-07-23 01:51:22 +0000677 adapter->vlans_added++;
Sarveshwar Bandiba343c72010-03-31 02:56:12 +0000678 if (!be_physfn(adapter))
679 return;
680
Sathya Perla6b7c5b92009-03-11 23:32:03 -0700681 adapter->vlan_tag[vid] = 1;
Ajit Khaparde82903e42010-02-09 01:34:57 +0000682 if (adapter->vlans_added <= (adapter->max_vlans + 1))
Ajit Khaparde1da87b72010-07-23 01:51:22 +0000683 be_vid_config(adapter, false, 0);
Sathya Perla6b7c5b92009-03-11 23:32:03 -0700684}
685
686static void be_vlan_rem_vid(struct net_device *netdev, u16 vid)
687{
688 struct be_adapter *adapter = netdev_priv(netdev);
689
Ajit Khaparde1da87b72010-07-23 01:51:22 +0000690 adapter->vlans_added--;
691 vlan_group_set_device(adapter->vlan_grp, vid, NULL);
692
Sarveshwar Bandiba343c72010-03-31 02:56:12 +0000693 if (!be_physfn(adapter))
694 return;
695
Sathya Perla6b7c5b92009-03-11 23:32:03 -0700696 adapter->vlan_tag[vid] = 0;
Ajit Khaparde82903e42010-02-09 01:34:57 +0000697 if (adapter->vlans_added <= adapter->max_vlans)
Ajit Khaparde1da87b72010-07-23 01:51:22 +0000698 be_vid_config(adapter, false, 0);
Sathya Perla6b7c5b92009-03-11 23:32:03 -0700699}
700
Sathya Perla6b7c5b92009-03-11 23:32:03 -0700701static void be_set_multicast_list(struct net_device *netdev)
702{
703 struct be_adapter *adapter = netdev_priv(netdev);
704
705 if (netdev->flags & IFF_PROMISC) {
Sathya Perla8788fdc2009-07-27 22:52:03 +0000706 be_cmd_promiscuous_config(adapter, adapter->port_num, 1);
Sathya Perla24307ee2009-06-18 00:09:25 +0000707 adapter->promiscuous = true;
708 goto done;
Sathya Perla6b7c5b92009-03-11 23:32:03 -0700709 }
Sathya Perla24307ee2009-06-18 00:09:25 +0000710
Lucas De Marchi25985ed2011-03-30 22:57:33 -0300711 /* BE was previously in promiscuous mode; disable it */
Sathya Perla24307ee2009-06-18 00:09:25 +0000712 if (adapter->promiscuous) {
713 adapter->promiscuous = false;
Sathya Perla8788fdc2009-07-27 22:52:03 +0000714 be_cmd_promiscuous_config(adapter, adapter->port_num, 0);
Sathya Perla24307ee2009-06-18 00:09:25 +0000715 }
716
Sathya Perlae7b909a2009-11-22 22:01:10 +0000717 /* Enable multicast promisc if num configured exceeds what we support */
Jiri Pirko4cd24ea2010-02-08 04:30:35 +0000718 if (netdev->flags & IFF_ALLMULTI ||
719 netdev_mc_count(netdev) > BE_MAX_MC) {
Jiri Pirko0ddf4772010-02-20 00:13:58 +0000720 be_cmd_multicast_set(adapter, adapter->if_handle, NULL,
Sathya Perlae7b909a2009-11-22 22:01:10 +0000721 &adapter->mc_cmd_mem);
Sathya Perla24307ee2009-06-18 00:09:25 +0000722 goto done;
723 }
724
Jiri Pirko0ddf4772010-02-20 00:13:58 +0000725 be_cmd_multicast_set(adapter, adapter->if_handle, netdev,
Sathya Perlaf31e50a2010-03-02 03:56:39 -0800726 &adapter->mc_cmd_mem);
Sathya Perla24307ee2009-06-18 00:09:25 +0000727done:
728 return;
Sathya Perla6b7c5b92009-03-11 23:32:03 -0700729}
730
Sarveshwar Bandiba343c72010-03-31 02:56:12 +0000731static int be_set_vf_mac(struct net_device *netdev, int vf, u8 *mac)
732{
733 struct be_adapter *adapter = netdev_priv(netdev);
734 int status;
735
736 if (!adapter->sriov_enabled)
737 return -EPERM;
738
739 if (!is_valid_ether_addr(mac) || (vf >= num_vfs))
740 return -EINVAL;
741
Ajit Khaparde64600ea2010-07-23 01:50:34 +0000742 if (adapter->vf_cfg[vf].vf_pmac_id != BE_INVALID_PMAC_ID)
743 status = be_cmd_pmac_del(adapter,
744 adapter->vf_cfg[vf].vf_if_handle,
Ajit Khapardef8617e02011-02-11 13:36:37 +0000745 adapter->vf_cfg[vf].vf_pmac_id, vf + 1);
Sarveshwar Bandiba343c72010-03-31 02:56:12 +0000746
Ajit Khaparde64600ea2010-07-23 01:50:34 +0000747 status = be_cmd_pmac_add(adapter, mac,
748 adapter->vf_cfg[vf].vf_if_handle,
Ajit Khapardef8617e02011-02-11 13:36:37 +0000749 &adapter->vf_cfg[vf].vf_pmac_id, vf + 1);
Ajit Khaparde64600ea2010-07-23 01:50:34 +0000750
751 if (status)
Sarveshwar Bandiba343c72010-03-31 02:56:12 +0000752 dev_err(&adapter->pdev->dev, "MAC %pM set on VF %d Failed\n",
753 mac, vf);
Ajit Khaparde64600ea2010-07-23 01:50:34 +0000754 else
755 memcpy(adapter->vf_cfg[vf].vf_mac_addr, mac, ETH_ALEN);
756
Sarveshwar Bandiba343c72010-03-31 02:56:12 +0000757 return status;
758}
759
Ajit Khaparde64600ea2010-07-23 01:50:34 +0000760static int be_get_vf_config(struct net_device *netdev, int vf,
761 struct ifla_vf_info *vi)
762{
763 struct be_adapter *adapter = netdev_priv(netdev);
764
765 if (!adapter->sriov_enabled)
766 return -EPERM;
767
768 if (vf >= num_vfs)
769 return -EINVAL;
770
771 vi->vf = vf;
Ajit Khapardee1d18732010-07-23 01:52:13 +0000772 vi->tx_rate = adapter->vf_cfg[vf].vf_tx_rate;
Ajit Khaparde1da87b72010-07-23 01:51:22 +0000773 vi->vlan = adapter->vf_cfg[vf].vf_vlan_tag;
Ajit Khaparde64600ea2010-07-23 01:50:34 +0000774 vi->qos = 0;
775 memcpy(&vi->mac, adapter->vf_cfg[vf].vf_mac_addr, ETH_ALEN);
776
777 return 0;
778}
779
Ajit Khaparde1da87b72010-07-23 01:51:22 +0000780static int be_set_vf_vlan(struct net_device *netdev,
781 int vf, u16 vlan, u8 qos)
782{
783 struct be_adapter *adapter = netdev_priv(netdev);
784 int status = 0;
785
786 if (!adapter->sriov_enabled)
787 return -EPERM;
788
789 if ((vf >= num_vfs) || (vlan > 4095))
790 return -EINVAL;
791
792 if (vlan) {
793 adapter->vf_cfg[vf].vf_vlan_tag = vlan;
794 adapter->vlans_added++;
795 } else {
796 adapter->vf_cfg[vf].vf_vlan_tag = 0;
797 adapter->vlans_added--;
798 }
799
800 status = be_vid_config(adapter, true, vf);
801
802 if (status)
803 dev_info(&adapter->pdev->dev,
804 "VLAN %d config on VF %d failed\n", vlan, vf);
805 return status;
806}
807
Ajit Khapardee1d18732010-07-23 01:52:13 +0000808static int be_set_vf_tx_rate(struct net_device *netdev,
809 int vf, int rate)
810{
811 struct be_adapter *adapter = netdev_priv(netdev);
812 int status = 0;
813
814 if (!adapter->sriov_enabled)
815 return -EPERM;
816
817 if ((vf >= num_vfs) || (rate < 0))
818 return -EINVAL;
819
820 if (rate > 10000)
821 rate = 10000;
822
823 adapter->vf_cfg[vf].vf_tx_rate = rate;
Ajit Khaparde856c4012011-02-11 13:32:32 +0000824 status = be_cmd_set_qos(adapter, rate / 10, vf + 1);
Ajit Khapardee1d18732010-07-23 01:52:13 +0000825
826 if (status)
827 dev_info(&adapter->pdev->dev,
828 "tx rate %d on VF %d failed\n", rate, vf);
829 return status;
830}
831
Sathya Perla3abcded2010-10-03 22:12:27 -0700832static void be_rx_rate_update(struct be_rx_obj *rxo)
Sathya Perla6b7c5b92009-03-11 23:32:03 -0700833{
Sathya Perla3abcded2010-10-03 22:12:27 -0700834 struct be_rx_stats *stats = &rxo->stats;
Sathya Perla4097f662009-03-24 16:40:13 -0700835 ulong now = jiffies;
Sathya Perla6b7c5b92009-03-11 23:32:03 -0700836
Sathya Perla4097f662009-03-24 16:40:13 -0700837 /* Wrapped around */
Sathya Perla3abcded2010-10-03 22:12:27 -0700838 if (time_before(now, stats->rx_jiffies)) {
839 stats->rx_jiffies = now;
Sathya Perla4097f662009-03-24 16:40:13 -0700840 return;
841 }
842
843 /* Update the rate once in two seconds */
Sathya Perla3abcded2010-10-03 22:12:27 -0700844 if ((now - stats->rx_jiffies) < 2 * HZ)
Sathya Perla4097f662009-03-24 16:40:13 -0700845 return;
846
Sathya Perla3abcded2010-10-03 22:12:27 -0700847 stats->rx_rate = be_calc_rate(stats->rx_bytes - stats->rx_bytes_prev,
848 now - stats->rx_jiffies);
849 stats->rx_jiffies = now;
850 stats->rx_bytes_prev = stats->rx_bytes;
Sathya Perla4097f662009-03-24 16:40:13 -0700851}
852
Sathya Perla3abcded2010-10-03 22:12:27 -0700853static void be_rx_stats_update(struct be_rx_obj *rxo,
Sathya Perla2e588f82011-03-11 02:49:26 +0000854 struct be_rx_compl_info *rxcp)
Sathya Perla4097f662009-03-24 16:40:13 -0700855{
Sathya Perla3abcded2010-10-03 22:12:27 -0700856 struct be_rx_stats *stats = &rxo->stats;
Sathya Perla4097f662009-03-24 16:40:13 -0700857
Sathya Perla3abcded2010-10-03 22:12:27 -0700858 stats->rx_compl++;
Sathya Perla2e588f82011-03-11 02:49:26 +0000859 stats->rx_frags += rxcp->num_rcvd;
860 stats->rx_bytes += rxcp->pkt_size;
Sathya Perla3abcded2010-10-03 22:12:27 -0700861 stats->rx_pkts++;
Sathya Perla2e588f82011-03-11 02:49:26 +0000862 if (rxcp->pkt_type == BE_MULTICAST_PACKET)
Sathya Perla3abcded2010-10-03 22:12:27 -0700863 stats->rx_mcast_pkts++;
Sathya Perla2e588f82011-03-11 02:49:26 +0000864 if (rxcp->err)
865 stats->rxcp_err++;
Sathya Perla6b7c5b92009-03-11 23:32:03 -0700866}
867
Sathya Perla2e588f82011-03-11 02:49:26 +0000868static inline bool csum_passed(struct be_rx_compl_info *rxcp)
Ajit Khaparde728a9972009-04-13 15:41:22 -0700869{
Padmanabh Ratnakar19fad862011-03-07 03:08:16 +0000870 /* L4 checksum is not reliable for non TCP/UDP packets.
871 * Also ignore ipcksm for ipv6 pkts */
Sathya Perla2e588f82011-03-11 02:49:26 +0000872 return (rxcp->tcpf || rxcp->udpf) && rxcp->l4_csum &&
873 (rxcp->ip_csum || rxcp->ipv6);
Ajit Khaparde728a9972009-04-13 15:41:22 -0700874}
875
Sathya Perla6b7c5b92009-03-11 23:32:03 -0700876static struct be_rx_page_info *
Sathya Perla3abcded2010-10-03 22:12:27 -0700877get_rx_page_info(struct be_adapter *adapter,
878 struct be_rx_obj *rxo,
879 u16 frag_idx)
Sathya Perla6b7c5b92009-03-11 23:32:03 -0700880{
881 struct be_rx_page_info *rx_page_info;
Sathya Perla3abcded2010-10-03 22:12:27 -0700882 struct be_queue_info *rxq = &rxo->q;
Sathya Perla6b7c5b92009-03-11 23:32:03 -0700883
Sathya Perla3abcded2010-10-03 22:12:27 -0700884 rx_page_info = &rxo->page_info_tbl[frag_idx];
Sathya Perla6b7c5b92009-03-11 23:32:03 -0700885 BUG_ON(!rx_page_info->page);
886
Ajit Khaparde205859a2010-02-09 01:34:21 +0000887 if (rx_page_info->last_page_user) {
Ivan Vecera2b7bceb2011-02-02 08:05:12 +0000888 dma_unmap_page(&adapter->pdev->dev,
889 dma_unmap_addr(rx_page_info, bus),
890 adapter->big_page_size, DMA_FROM_DEVICE);
Ajit Khaparde205859a2010-02-09 01:34:21 +0000891 rx_page_info->last_page_user = false;
892 }
Sathya Perla6b7c5b92009-03-11 23:32:03 -0700893
894 atomic_dec(&rxq->used);
895 return rx_page_info;
896}
897
898/* Throwaway the data in the Rx completion */
899static void be_rx_compl_discard(struct be_adapter *adapter,
Sathya Perla3abcded2010-10-03 22:12:27 -0700900 struct be_rx_obj *rxo,
Sathya Perla2e588f82011-03-11 02:49:26 +0000901 struct be_rx_compl_info *rxcp)
Sathya Perla6b7c5b92009-03-11 23:32:03 -0700902{
Sathya Perla3abcded2010-10-03 22:12:27 -0700903 struct be_queue_info *rxq = &rxo->q;
Sathya Perla6b7c5b92009-03-11 23:32:03 -0700904 struct be_rx_page_info *page_info;
Sathya Perla2e588f82011-03-11 02:49:26 +0000905 u16 i, num_rcvd = rxcp->num_rcvd;
Sathya Perla6b7c5b92009-03-11 23:32:03 -0700906
Padmanabh Ratnakare80d9da2011-03-07 03:07:58 +0000907 for (i = 0; i < num_rcvd; i++) {
Sathya Perla2e588f82011-03-11 02:49:26 +0000908 page_info = get_rx_page_info(adapter, rxo, rxcp->rxq_idx);
Padmanabh Ratnakare80d9da2011-03-07 03:07:58 +0000909 put_page(page_info->page);
910 memset(page_info, 0, sizeof(*page_info));
Sathya Perla2e588f82011-03-11 02:49:26 +0000911 index_inc(&rxcp->rxq_idx, rxq->len);
Sathya Perla6b7c5b92009-03-11 23:32:03 -0700912 }
913}
914
915/*
916 * skb_fill_rx_data forms a complete skb for an ether frame
917 * indicated by rxcp.
918 */
Sathya Perla3abcded2010-10-03 22:12:27 -0700919static void skb_fill_rx_data(struct be_adapter *adapter, struct be_rx_obj *rxo,
Sathya Perla2e588f82011-03-11 02:49:26 +0000920 struct sk_buff *skb, struct be_rx_compl_info *rxcp)
Sathya Perla6b7c5b92009-03-11 23:32:03 -0700921{
Sathya Perla3abcded2010-10-03 22:12:27 -0700922 struct be_queue_info *rxq = &rxo->q;
Sathya Perla6b7c5b92009-03-11 23:32:03 -0700923 struct be_rx_page_info *page_info;
Sathya Perla2e588f82011-03-11 02:49:26 +0000924 u16 i, j;
925 u16 hdr_len, curr_frag_len, remaining;
Sathya Perla6b7c5b92009-03-11 23:32:03 -0700926 u8 *start;
927
Sathya Perla2e588f82011-03-11 02:49:26 +0000928 page_info = get_rx_page_info(adapter, rxo, rxcp->rxq_idx);
Sathya Perla6b7c5b92009-03-11 23:32:03 -0700929 start = page_address(page_info->page) + page_info->page_offset;
930 prefetch(start);
931
932 /* Copy data in the first descriptor of this completion */
Sathya Perla2e588f82011-03-11 02:49:26 +0000933 curr_frag_len = min(rxcp->pkt_size, rx_frag_size);
Sathya Perla6b7c5b92009-03-11 23:32:03 -0700934
935 /* Copy the header portion into skb_data */
Sathya Perla2e588f82011-03-11 02:49:26 +0000936 hdr_len = min(BE_HDR_LEN, curr_frag_len);
Sathya Perla6b7c5b92009-03-11 23:32:03 -0700937 memcpy(skb->data, start, hdr_len);
938 skb->len = curr_frag_len;
939 if (curr_frag_len <= BE_HDR_LEN) { /* tiny packet */
940 /* Complete packet has now been moved to data */
941 put_page(page_info->page);
942 skb->data_len = 0;
943 skb->tail += curr_frag_len;
944 } else {
945 skb_shinfo(skb)->nr_frags = 1;
946 skb_shinfo(skb)->frags[0].page = page_info->page;
947 skb_shinfo(skb)->frags[0].page_offset =
948 page_info->page_offset + hdr_len;
949 skb_shinfo(skb)->frags[0].size = curr_frag_len - hdr_len;
950 skb->data_len = curr_frag_len - hdr_len;
951 skb->tail += hdr_len;
952 }
Ajit Khaparde205859a2010-02-09 01:34:21 +0000953 page_info->page = NULL;
Sathya Perla6b7c5b92009-03-11 23:32:03 -0700954
Sathya Perla2e588f82011-03-11 02:49:26 +0000955 if (rxcp->pkt_size <= rx_frag_size) {
956 BUG_ON(rxcp->num_rcvd != 1);
957 return;
Sathya Perla6b7c5b92009-03-11 23:32:03 -0700958 }
959
960 /* More frags present for this completion */
Sathya Perla2e588f82011-03-11 02:49:26 +0000961 index_inc(&rxcp->rxq_idx, rxq->len);
962 remaining = rxcp->pkt_size - curr_frag_len;
963 for (i = 1, j = 0; i < rxcp->num_rcvd; i++) {
964 page_info = get_rx_page_info(adapter, rxo, rxcp->rxq_idx);
965 curr_frag_len = min(remaining, rx_frag_size);
Sathya Perla6b7c5b92009-03-11 23:32:03 -0700966
Ajit Khapardebd46cb62009-06-26 02:51:07 +0000967 /* Coalesce all frags from the same physical page in one slot */
968 if (page_info->page_offset == 0) {
969 /* Fresh page */
970 j++;
971 skb_shinfo(skb)->frags[j].page = page_info->page;
972 skb_shinfo(skb)->frags[j].page_offset =
973 page_info->page_offset;
974 skb_shinfo(skb)->frags[j].size = 0;
975 skb_shinfo(skb)->nr_frags++;
976 } else {
977 put_page(page_info->page);
978 }
979
980 skb_shinfo(skb)->frags[j].size += curr_frag_len;
Sathya Perla6b7c5b92009-03-11 23:32:03 -0700981 skb->len += curr_frag_len;
982 skb->data_len += curr_frag_len;
Sathya Perla6b7c5b92009-03-11 23:32:03 -0700983
Sathya Perla2e588f82011-03-11 02:49:26 +0000984 remaining -= curr_frag_len;
985 index_inc(&rxcp->rxq_idx, rxq->len);
Ajit Khaparde205859a2010-02-09 01:34:21 +0000986 page_info->page = NULL;
Sathya Perla6b7c5b92009-03-11 23:32:03 -0700987 }
Ajit Khapardebd46cb62009-06-26 02:51:07 +0000988 BUG_ON(j > MAX_SKB_FRAGS);
Sathya Perla6b7c5b92009-03-11 23:32:03 -0700989}
990
Ajit Khaparde5be93b92009-07-21 12:36:19 -0700991/* Process the RX completion indicated by rxcp when GRO is disabled */
Sathya Perla6b7c5b92009-03-11 23:32:03 -0700992static void be_rx_compl_process(struct be_adapter *adapter,
Sathya Perla3abcded2010-10-03 22:12:27 -0700993 struct be_rx_obj *rxo,
Sathya Perla2e588f82011-03-11 02:49:26 +0000994 struct be_rx_compl_info *rxcp)
Sathya Perla6b7c5b92009-03-11 23:32:03 -0700995{
996 struct sk_buff *skb;
Sathya Perla89420422010-02-17 01:35:26 +0000997
Eric Dumazet89d71a62009-10-13 05:34:20 +0000998 skb = netdev_alloc_skb_ip_align(adapter->netdev, BE_HDR_LEN);
Sathya Perlaa058a632010-02-17 01:34:22 +0000999 if (unlikely(!skb)) {
Sathya Perla6b7c5b92009-03-11 23:32:03 -07001000 if (net_ratelimit())
1001 dev_warn(&adapter->pdev->dev, "skb alloc failed\n");
Sathya Perla3abcded2010-10-03 22:12:27 -07001002 be_rx_compl_discard(adapter, rxo, rxcp);
Sathya Perla6b7c5b92009-03-11 23:32:03 -07001003 return;
1004 }
1005
Sathya Perla2e588f82011-03-11 02:49:26 +00001006 skb_fill_rx_data(adapter, rxo, skb, rxcp);
Sathya Perla6b7c5b92009-03-11 23:32:03 -07001007
Somnath Koturc6ce2f42010-10-25 01:11:58 +00001008 if (likely(adapter->rx_csum && csum_passed(rxcp)))
Ajit Khaparde728a9972009-04-13 15:41:22 -07001009 skb->ip_summed = CHECKSUM_UNNECESSARY;
Somnath Koturc6ce2f42010-10-25 01:11:58 +00001010 else
1011 skb_checksum_none_assert(skb);
Sathya Perla6b7c5b92009-03-11 23:32:03 -07001012
1013 skb->truesize = skb->len + sizeof(struct sk_buff);
1014 skb->protocol = eth_type_trans(skb, adapter->netdev);
Sathya Perla6b7c5b92009-03-11 23:32:03 -07001015
Sathya Perla2e588f82011-03-11 02:49:26 +00001016 if (unlikely(rxcp->vlanf)) {
Ajit Khaparde82903e42010-02-09 01:34:57 +00001017 if (!adapter->vlan_grp || adapter->vlans_added == 0) {
Sathya Perla6b7c5b92009-03-11 23:32:03 -07001018 kfree_skb(skb);
1019 return;
1020 }
Somnath Kotur6709d952011-05-04 22:40:46 +00001021 vlan_hwaccel_receive_skb(skb, adapter->vlan_grp,
1022 rxcp->vlan_tag);
Sathya Perla6b7c5b92009-03-11 23:32:03 -07001023 } else {
1024 netif_receive_skb(skb);
1025 }
Sathya Perla6b7c5b92009-03-11 23:32:03 -07001026}
1027
Ajit Khaparde5be93b92009-07-21 12:36:19 -07001028/* Process the RX completion indicated by rxcp when GRO is enabled */
1029static void be_rx_compl_process_gro(struct be_adapter *adapter,
Sathya Perla3abcded2010-10-03 22:12:27 -07001030 struct be_rx_obj *rxo,
Sathya Perla2e588f82011-03-11 02:49:26 +00001031 struct be_rx_compl_info *rxcp)
Sathya Perla6b7c5b92009-03-11 23:32:03 -07001032{
1033 struct be_rx_page_info *page_info;
Ajit Khaparde5be93b92009-07-21 12:36:19 -07001034 struct sk_buff *skb = NULL;
Sathya Perla3abcded2010-10-03 22:12:27 -07001035 struct be_queue_info *rxq = &rxo->q;
1036 struct be_eq_obj *eq_obj = &rxo->rx_eq;
Sathya Perla2e588f82011-03-11 02:49:26 +00001037 u16 remaining, curr_frag_len;
1038 u16 i, j;
Ajit Khaparde3968fa12011-02-20 11:41:53 +00001039
Ajit Khaparde5be93b92009-07-21 12:36:19 -07001040 skb = napi_get_frags(&eq_obj->napi);
1041 if (!skb) {
Sathya Perla3abcded2010-10-03 22:12:27 -07001042 be_rx_compl_discard(adapter, rxo, rxcp);
Ajit Khaparde5be93b92009-07-21 12:36:19 -07001043 return;
1044 }
1045
Sathya Perla2e588f82011-03-11 02:49:26 +00001046 remaining = rxcp->pkt_size;
1047 for (i = 0, j = -1; i < rxcp->num_rcvd; i++) {
1048 page_info = get_rx_page_info(adapter, rxo, rxcp->rxq_idx);
Sathya Perla6b7c5b92009-03-11 23:32:03 -07001049
1050 curr_frag_len = min(remaining, rx_frag_size);
1051
Ajit Khapardebd46cb62009-06-26 02:51:07 +00001052 /* Coalesce all frags from the same physical page in one slot */
1053 if (i == 0 || page_info->page_offset == 0) {
1054 /* First frag or Fresh page */
1055 j++;
Ajit Khaparde5be93b92009-07-21 12:36:19 -07001056 skb_shinfo(skb)->frags[j].page = page_info->page;
1057 skb_shinfo(skb)->frags[j].page_offset =
1058 page_info->page_offset;
1059 skb_shinfo(skb)->frags[j].size = 0;
Ajit Khapardebd46cb62009-06-26 02:51:07 +00001060 } else {
1061 put_page(page_info->page);
1062 }
Ajit Khaparde5be93b92009-07-21 12:36:19 -07001063 skb_shinfo(skb)->frags[j].size += curr_frag_len;
Ajit Khapardebd46cb62009-06-26 02:51:07 +00001064
Sathya Perla6b7c5b92009-03-11 23:32:03 -07001065 remaining -= curr_frag_len;
Sathya Perla2e588f82011-03-11 02:49:26 +00001066 index_inc(&rxcp->rxq_idx, rxq->len);
Sathya Perla6b7c5b92009-03-11 23:32:03 -07001067 memset(page_info, 0, sizeof(*page_info));
1068 }
Ajit Khapardebd46cb62009-06-26 02:51:07 +00001069 BUG_ON(j > MAX_SKB_FRAGS);
Sathya Perla6b7c5b92009-03-11 23:32:03 -07001070
Ajit Khaparde5be93b92009-07-21 12:36:19 -07001071 skb_shinfo(skb)->nr_frags = j + 1;
Sathya Perla2e588f82011-03-11 02:49:26 +00001072 skb->len = rxcp->pkt_size;
1073 skb->data_len = rxcp->pkt_size;
1074 skb->truesize += rxcp->pkt_size;
Ajit Khaparde5be93b92009-07-21 12:36:19 -07001075 skb->ip_summed = CHECKSUM_UNNECESSARY;
1076
Sathya Perla2e588f82011-03-11 02:49:26 +00001077 if (likely(!rxcp->vlanf))
Ajit Khaparde5be93b92009-07-21 12:36:19 -07001078 napi_gro_frags(&eq_obj->napi);
Sathya Perla2e588f82011-03-11 02:49:26 +00001079 else
Somnath Kotur6709d952011-05-04 22:40:46 +00001080 vlan_gro_frags(&eq_obj->napi, adapter->vlan_grp,
1081 rxcp->vlan_tag);
Sathya Perla6b7c5b92009-03-11 23:32:03 -07001082}
1083
Sathya Perla2e588f82011-03-11 02:49:26 +00001084static void be_parse_rx_compl_v1(struct be_adapter *adapter,
1085 struct be_eth_rx_compl *compl,
1086 struct be_rx_compl_info *rxcp)
Sathya Perla6b7c5b92009-03-11 23:32:03 -07001087{
Sathya Perla2e588f82011-03-11 02:49:26 +00001088 rxcp->pkt_size =
1089 AMAP_GET_BITS(struct amap_eth_rx_compl_v1, pktsize, compl);
1090 rxcp->vlanf = AMAP_GET_BITS(struct amap_eth_rx_compl_v1, vtp, compl);
1091 rxcp->err = AMAP_GET_BITS(struct amap_eth_rx_compl_v1, err, compl);
1092 rxcp->tcpf = AMAP_GET_BITS(struct amap_eth_rx_compl_v1, tcpf, compl);
Padmanabh Ratnakar9ecb42f2011-03-15 14:57:09 -07001093 rxcp->udpf = AMAP_GET_BITS(struct amap_eth_rx_compl_v1, udpf, compl);
Sathya Perla2e588f82011-03-11 02:49:26 +00001094 rxcp->ip_csum =
1095 AMAP_GET_BITS(struct amap_eth_rx_compl_v1, ipcksm, compl);
1096 rxcp->l4_csum =
1097 AMAP_GET_BITS(struct amap_eth_rx_compl_v1, l4_cksm, compl);
1098 rxcp->ipv6 =
1099 AMAP_GET_BITS(struct amap_eth_rx_compl_v1, ip_version, compl);
1100 rxcp->rxq_idx =
1101 AMAP_GET_BITS(struct amap_eth_rx_compl_v1, fragndx, compl);
1102 rxcp->num_rcvd =
1103 AMAP_GET_BITS(struct amap_eth_rx_compl_v1, numfrags, compl);
1104 rxcp->pkt_type =
1105 AMAP_GET_BITS(struct amap_eth_rx_compl_v1, cast_enc, compl);
1106 rxcp->vtm = AMAP_GET_BITS(struct amap_eth_rx_compl_v1, vtm, compl);
Somnath Kotur6709d952011-05-04 22:40:46 +00001107 rxcp->vlan_tag = AMAP_GET_BITS(struct amap_eth_rx_compl_v1, vlan_tag,
1108 compl);
Sathya Perla2e588f82011-03-11 02:49:26 +00001109}
Sathya Perla6b7c5b92009-03-11 23:32:03 -07001110
Sathya Perla2e588f82011-03-11 02:49:26 +00001111static void be_parse_rx_compl_v0(struct be_adapter *adapter,
1112 struct be_eth_rx_compl *compl,
1113 struct be_rx_compl_info *rxcp)
1114{
1115 rxcp->pkt_size =
1116 AMAP_GET_BITS(struct amap_eth_rx_compl_v0, pktsize, compl);
1117 rxcp->vlanf = AMAP_GET_BITS(struct amap_eth_rx_compl_v0, vtp, compl);
1118 rxcp->err = AMAP_GET_BITS(struct amap_eth_rx_compl_v0, err, compl);
1119 rxcp->tcpf = AMAP_GET_BITS(struct amap_eth_rx_compl_v0, tcpf, compl);
Padmanabh Ratnakar9ecb42f2011-03-15 14:57:09 -07001120 rxcp->udpf = AMAP_GET_BITS(struct amap_eth_rx_compl_v0, udpf, compl);
Sathya Perla2e588f82011-03-11 02:49:26 +00001121 rxcp->ip_csum =
1122 AMAP_GET_BITS(struct amap_eth_rx_compl_v0, ipcksm, compl);
1123 rxcp->l4_csum =
1124 AMAP_GET_BITS(struct amap_eth_rx_compl_v0, l4_cksm, compl);
1125 rxcp->ipv6 =
1126 AMAP_GET_BITS(struct amap_eth_rx_compl_v0, ip_version, compl);
1127 rxcp->rxq_idx =
1128 AMAP_GET_BITS(struct amap_eth_rx_compl_v0, fragndx, compl);
1129 rxcp->num_rcvd =
1130 AMAP_GET_BITS(struct amap_eth_rx_compl_v0, numfrags, compl);
1131 rxcp->pkt_type =
1132 AMAP_GET_BITS(struct amap_eth_rx_compl_v0, cast_enc, compl);
1133 rxcp->vtm = AMAP_GET_BITS(struct amap_eth_rx_compl_v0, vtm, compl);
Somnath Kotur6709d952011-05-04 22:40:46 +00001134 rxcp->vlan_tag = AMAP_GET_BITS(struct amap_eth_rx_compl_v0, vlan_tag,
1135 compl);
Sathya Perla2e588f82011-03-11 02:49:26 +00001136}
1137
1138static struct be_rx_compl_info *be_rx_compl_get(struct be_rx_obj *rxo)
1139{
1140 struct be_eth_rx_compl *compl = queue_tail_node(&rxo->cq);
1141 struct be_rx_compl_info *rxcp = &rxo->rxcp;
1142 struct be_adapter *adapter = rxo->adapter;
1143
1144 /* For checking the valid bit it is Ok to use either definition as the
1145 * valid bit is at the same position in both v0 and v1 Rx compl */
1146 if (compl->dw[offsetof(struct amap_eth_rx_compl_v1, valid) / 32] == 0)
Sathya Perla6b7c5b92009-03-11 23:32:03 -07001147 return NULL;
1148
Sathya Perlaf3eb62d2010-06-29 00:11:17 +00001149 rmb();
Sathya Perla2e588f82011-03-11 02:49:26 +00001150 be_dws_le_to_cpu(compl, sizeof(*compl));
1151
1152 if (adapter->be3_native)
1153 be_parse_rx_compl_v1(adapter, compl, rxcp);
1154 else
1155 be_parse_rx_compl_v0(adapter, compl, rxcp);
1156
1157 /* vlanf could be wrongly set in some cards. ignore if vtm is not set */
1158 if ((adapter->function_mode & 0x400) && !rxcp->vtm)
1159 rxcp->vlanf = 0;
1160
1161 if (!lancer_chip(adapter))
Somnath Kotur6709d952011-05-04 22:40:46 +00001162 rxcp->vlan_tag = swab16(rxcp->vlan_tag);
Sathya Perla2e588f82011-03-11 02:49:26 +00001163
Somnath Kotur6709d952011-05-04 22:40:46 +00001164 if (((adapter->pvid & VLAN_VID_MASK) ==
1165 (rxcp->vlan_tag & VLAN_VID_MASK)) &&
1166 !adapter->vlan_tag[rxcp->vlan_tag])
Sathya Perla2e588f82011-03-11 02:49:26 +00001167 rxcp->vlanf = 0;
1168
1169 /* As the compl has been parsed, reset it; we wont touch it again */
1170 compl->dw[offsetof(struct amap_eth_rx_compl_v1, valid) / 32] = 0;
Sathya Perla6b7c5b92009-03-11 23:32:03 -07001171
Sathya Perla3abcded2010-10-03 22:12:27 -07001172 queue_tail_inc(&rxo->cq);
Sathya Perla6b7c5b92009-03-11 23:32:03 -07001173 return rxcp;
1174}
1175
Eric Dumazet1829b082011-03-01 05:48:12 +00001176static inline struct page *be_alloc_pages(u32 size, gfp_t gfp)
Sathya Perla6b7c5b92009-03-11 23:32:03 -07001177{
Sathya Perla6b7c5b92009-03-11 23:32:03 -07001178 u32 order = get_order(size);
Eric Dumazet1829b082011-03-01 05:48:12 +00001179
Sathya Perla6b7c5b92009-03-11 23:32:03 -07001180 if (order > 0)
Eric Dumazet1829b082011-03-01 05:48:12 +00001181 gfp |= __GFP_COMP;
1182 return alloc_pages(gfp, order);
Sathya Perla6b7c5b92009-03-11 23:32:03 -07001183}
1184
1185/*
1186 * Allocate a page, split it to fragments of size rx_frag_size and post as
1187 * receive buffers to BE
1188 */
Eric Dumazet1829b082011-03-01 05:48:12 +00001189static void be_post_rx_frags(struct be_rx_obj *rxo, gfp_t gfp)
Sathya Perla6b7c5b92009-03-11 23:32:03 -07001190{
Sathya Perla3abcded2010-10-03 22:12:27 -07001191 struct be_adapter *adapter = rxo->adapter;
1192 struct be_rx_page_info *page_info_tbl = rxo->page_info_tbl;
Sathya Perla26d92f92010-01-21 22:52:08 -08001193 struct be_rx_page_info *page_info = NULL, *prev_page_info = NULL;
Sathya Perla3abcded2010-10-03 22:12:27 -07001194 struct be_queue_info *rxq = &rxo->q;
Sathya Perla6b7c5b92009-03-11 23:32:03 -07001195 struct page *pagep = NULL;
1196 struct be_eth_rx_d *rxd;
1197 u64 page_dmaaddr = 0, frag_dmaaddr;
1198 u32 posted, page_offset = 0;
1199
Sathya Perla3abcded2010-10-03 22:12:27 -07001200 page_info = &rxo->page_info_tbl[rxq->head];
Sathya Perla6b7c5b92009-03-11 23:32:03 -07001201 for (posted = 0; posted < MAX_RX_POST && !page_info->page; posted++) {
1202 if (!pagep) {
Eric Dumazet1829b082011-03-01 05:48:12 +00001203 pagep = be_alloc_pages(adapter->big_page_size, gfp);
Sathya Perla6b7c5b92009-03-11 23:32:03 -07001204 if (unlikely(!pagep)) {
Sathya Perla3abcded2010-10-03 22:12:27 -07001205 rxo->stats.rx_post_fail++;
Sathya Perla6b7c5b92009-03-11 23:32:03 -07001206 break;
1207 }
Ivan Vecera2b7bceb2011-02-02 08:05:12 +00001208 page_dmaaddr = dma_map_page(&adapter->pdev->dev, pagep,
1209 0, adapter->big_page_size,
1210 DMA_FROM_DEVICE);
Sathya Perla6b7c5b92009-03-11 23:32:03 -07001211 page_info->page_offset = 0;
1212 } else {
1213 get_page(pagep);
1214 page_info->page_offset = page_offset + rx_frag_size;
1215 }
1216 page_offset = page_info->page_offset;
1217 page_info->page = pagep;
FUJITA Tomonorifac6da52010-04-01 16:53:22 +00001218 dma_unmap_addr_set(page_info, bus, page_dmaaddr);
Sathya Perla6b7c5b92009-03-11 23:32:03 -07001219 frag_dmaaddr = page_dmaaddr + page_info->page_offset;
1220
1221 rxd = queue_head_node(rxq);
1222 rxd->fragpa_lo = cpu_to_le32(frag_dmaaddr & 0xFFFFFFFF);
1223 rxd->fragpa_hi = cpu_to_le32(upper_32_bits(frag_dmaaddr));
Sathya Perla6b7c5b92009-03-11 23:32:03 -07001224
1225 /* Any space left in the current big page for another frag? */
1226 if ((page_offset + rx_frag_size + rx_frag_size) >
1227 adapter->big_page_size) {
1228 pagep = NULL;
1229 page_info->last_page_user = true;
1230 }
Sathya Perla26d92f92010-01-21 22:52:08 -08001231
1232 prev_page_info = page_info;
1233 queue_head_inc(rxq);
Sathya Perla6b7c5b92009-03-11 23:32:03 -07001234 page_info = &page_info_tbl[rxq->head];
1235 }
1236 if (pagep)
Sathya Perla26d92f92010-01-21 22:52:08 -08001237 prev_page_info->last_page_user = true;
Sathya Perla6b7c5b92009-03-11 23:32:03 -07001238
1239 if (posted) {
Sathya Perla6b7c5b92009-03-11 23:32:03 -07001240 atomic_add(posted, &rxq->used);
Sathya Perla8788fdc2009-07-27 22:52:03 +00001241 be_rxq_notify(adapter, rxq->id, posted);
Sathya Perlaea1dae12009-03-19 23:56:20 -07001242 } else if (atomic_read(&rxq->used) == 0) {
1243 /* Let be_worker replenish when memory is available */
Sathya Perla3abcded2010-10-03 22:12:27 -07001244 rxo->rx_post_starved = true;
Sathya Perla6b7c5b92009-03-11 23:32:03 -07001245 }
Sathya Perla6b7c5b92009-03-11 23:32:03 -07001246}
1247
Sathya Perla5fb379e2009-06-18 00:02:59 +00001248static struct be_eth_tx_compl *be_tx_compl_get(struct be_queue_info *tx_cq)
Sathya Perla6b7c5b92009-03-11 23:32:03 -07001249{
Sathya Perla6b7c5b92009-03-11 23:32:03 -07001250 struct be_eth_tx_compl *txcp = queue_tail_node(tx_cq);
1251
1252 if (txcp->dw[offsetof(struct amap_eth_tx_compl, valid) / 32] == 0)
1253 return NULL;
1254
Sathya Perlaf3eb62d2010-06-29 00:11:17 +00001255 rmb();
Sathya Perla6b7c5b92009-03-11 23:32:03 -07001256 be_dws_le_to_cpu(txcp, sizeof(*txcp));
1257
1258 txcp->dw[offsetof(struct amap_eth_tx_compl, valid) / 32] = 0;
1259
1260 queue_tail_inc(tx_cq);
1261 return txcp;
1262}
1263
1264static void be_tx_compl_process(struct be_adapter *adapter, u16 last_index)
1265{
1266 struct be_queue_info *txq = &adapter->tx_obj.q;
Alexander Duycka73b7962009-12-02 16:48:18 +00001267 struct be_eth_wrb *wrb;
Sathya Perla6b7c5b92009-03-11 23:32:03 -07001268 struct sk_buff **sent_skbs = adapter->tx_obj.sent_skb_list;
1269 struct sk_buff *sent_skb;
Sathya Perlaec43b1a2010-03-22 20:41:34 +00001270 u16 cur_index, num_wrbs = 1; /* account for hdr wrb */
1271 bool unmap_skb_hdr = true;
Sathya Perla6b7c5b92009-03-11 23:32:03 -07001272
Sathya Perlaec43b1a2010-03-22 20:41:34 +00001273 sent_skb = sent_skbs[txq->tail];
Sathya Perla6b7c5b92009-03-11 23:32:03 -07001274 BUG_ON(!sent_skb);
Sathya Perlaec43b1a2010-03-22 20:41:34 +00001275 sent_skbs[txq->tail] = NULL;
1276
1277 /* skip header wrb */
Alexander Duycka73b7962009-12-02 16:48:18 +00001278 queue_tail_inc(txq);
Sathya Perla6b7c5b92009-03-11 23:32:03 -07001279
Sathya Perlaec43b1a2010-03-22 20:41:34 +00001280 do {
Sathya Perla6b7c5b92009-03-11 23:32:03 -07001281 cur_index = txq->tail;
Alexander Duycka73b7962009-12-02 16:48:18 +00001282 wrb = queue_tail_node(txq);
Ivan Vecera2b7bceb2011-02-02 08:05:12 +00001283 unmap_tx_frag(&adapter->pdev->dev, wrb,
1284 (unmap_skb_hdr && skb_headlen(sent_skb)));
Sathya Perlaec43b1a2010-03-22 20:41:34 +00001285 unmap_skb_hdr = false;
1286
Sathya Perla6b7c5b92009-03-11 23:32:03 -07001287 num_wrbs++;
1288 queue_tail_inc(txq);
Sathya Perlaec43b1a2010-03-22 20:41:34 +00001289 } while (cur_index != last_index);
Sathya Perla6b7c5b92009-03-11 23:32:03 -07001290
1291 atomic_sub(num_wrbs, &txq->used);
Alexander Duycka73b7962009-12-02 16:48:18 +00001292
Sathya Perla6b7c5b92009-03-11 23:32:03 -07001293 kfree_skb(sent_skb);
1294}
1295
Sathya Perla859b1e42009-08-10 03:43:51 +00001296static inline struct be_eq_entry *event_get(struct be_eq_obj *eq_obj)
1297{
1298 struct be_eq_entry *eqe = queue_tail_node(&eq_obj->q);
1299
1300 if (!eqe->evt)
1301 return NULL;
1302
Sathya Perlaf3eb62d2010-06-29 00:11:17 +00001303 rmb();
Sathya Perla859b1e42009-08-10 03:43:51 +00001304 eqe->evt = le32_to_cpu(eqe->evt);
1305 queue_tail_inc(&eq_obj->q);
1306 return eqe;
1307}
1308
1309static int event_handle(struct be_adapter *adapter,
1310 struct be_eq_obj *eq_obj)
1311{
1312 struct be_eq_entry *eqe;
1313 u16 num = 0;
1314
1315 while ((eqe = event_get(eq_obj)) != NULL) {
1316 eqe->evt = 0;
1317 num++;
1318 }
1319
1320 /* Deal with any spurious interrupts that come
1321 * without events
1322 */
1323 be_eq_notify(adapter, eq_obj->q.id, true, true, num);
1324 if (num)
1325 napi_schedule(&eq_obj->napi);
1326
1327 return num;
1328}
1329
1330/* Just read and notify events without processing them.
1331 * Used at the time of destroying event queues */
1332static void be_eq_clean(struct be_adapter *adapter,
1333 struct be_eq_obj *eq_obj)
1334{
1335 struct be_eq_entry *eqe;
1336 u16 num = 0;
1337
1338 while ((eqe = event_get(eq_obj)) != NULL) {
1339 eqe->evt = 0;
1340 num++;
1341 }
1342
1343 if (num)
1344 be_eq_notify(adapter, eq_obj->q.id, false, true, num);
1345}
1346
Sathya Perla3abcded2010-10-03 22:12:27 -07001347static void be_rx_q_clean(struct be_adapter *adapter, struct be_rx_obj *rxo)
Sathya Perla6b7c5b92009-03-11 23:32:03 -07001348{
1349 struct be_rx_page_info *page_info;
Sathya Perla3abcded2010-10-03 22:12:27 -07001350 struct be_queue_info *rxq = &rxo->q;
1351 struct be_queue_info *rx_cq = &rxo->cq;
Sathya Perla2e588f82011-03-11 02:49:26 +00001352 struct be_rx_compl_info *rxcp;
Sathya Perla6b7c5b92009-03-11 23:32:03 -07001353 u16 tail;
1354
1355 /* First cleanup pending rx completions */
Sathya Perla3abcded2010-10-03 22:12:27 -07001356 while ((rxcp = be_rx_compl_get(rxo)) != NULL) {
1357 be_rx_compl_discard(adapter, rxo, rxcp);
Sathya Perla64642812010-12-01 01:04:17 +00001358 be_cq_notify(adapter, rx_cq->id, false, 1);
Sathya Perla6b7c5b92009-03-11 23:32:03 -07001359 }
1360
1361 /* Then free posted rx buffer that were not used */
1362 tail = (rxq->head + rxq->len - atomic_read(&rxq->used)) % rxq->len;
Sathya Perlacdab23b2009-08-10 03:43:23 +00001363 for (; atomic_read(&rxq->used) > 0; index_inc(&tail, rxq->len)) {
Sathya Perla3abcded2010-10-03 22:12:27 -07001364 page_info = get_rx_page_info(adapter, rxo, tail);
Sathya Perla6b7c5b92009-03-11 23:32:03 -07001365 put_page(page_info->page);
1366 memset(page_info, 0, sizeof(*page_info));
1367 }
1368 BUG_ON(atomic_read(&rxq->used));
1369}
1370
Sathya Perlaa8e91792009-08-10 03:42:43 +00001371static void be_tx_compl_clean(struct be_adapter *adapter)
Sathya Perla6b7c5b92009-03-11 23:32:03 -07001372{
Sathya Perlaa8e91792009-08-10 03:42:43 +00001373 struct be_queue_info *tx_cq = &adapter->tx_obj.cq;
Sathya Perla6b7c5b92009-03-11 23:32:03 -07001374 struct be_queue_info *txq = &adapter->tx_obj.q;
Sathya Perlaa8e91792009-08-10 03:42:43 +00001375 struct be_eth_tx_compl *txcp;
1376 u16 end_idx, cmpl = 0, timeo = 0;
Sathya Perlab03388d2010-02-18 00:37:17 +00001377 struct sk_buff **sent_skbs = adapter->tx_obj.sent_skb_list;
1378 struct sk_buff *sent_skb;
1379 bool dummy_wrb;
Sathya Perla6b7c5b92009-03-11 23:32:03 -07001380
Sathya Perlaa8e91792009-08-10 03:42:43 +00001381 /* Wait for a max of 200ms for all the tx-completions to arrive. */
1382 do {
1383 while ((txcp = be_tx_compl_get(tx_cq))) {
1384 end_idx = AMAP_GET_BITS(struct amap_eth_tx_compl,
1385 wrb_index, txcp);
1386 be_tx_compl_process(adapter, end_idx);
1387 cmpl++;
1388 }
1389 if (cmpl) {
1390 be_cq_notify(adapter, tx_cq->id, false, cmpl);
1391 cmpl = 0;
1392 }
1393
1394 if (atomic_read(&txq->used) == 0 || ++timeo > 200)
1395 break;
1396
1397 mdelay(1);
1398 } while (true);
1399
1400 if (atomic_read(&txq->used))
1401 dev_err(&adapter->pdev->dev, "%d pending tx-completions\n",
1402 atomic_read(&txq->used));
Sathya Perlab03388d2010-02-18 00:37:17 +00001403
1404 /* free posted tx for which compls will never arrive */
1405 while (atomic_read(&txq->used)) {
1406 sent_skb = sent_skbs[txq->tail];
1407 end_idx = txq->tail;
1408 index_adv(&end_idx,
Sathya Perlafe6d2a32010-11-21 23:25:50 +00001409 wrb_cnt_for_skb(adapter, sent_skb, &dummy_wrb) - 1,
1410 txq->len);
Sathya Perlab03388d2010-02-18 00:37:17 +00001411 be_tx_compl_process(adapter, end_idx);
1412 }
Sathya Perla6b7c5b92009-03-11 23:32:03 -07001413}
1414
Sathya Perla5fb379e2009-06-18 00:02:59 +00001415static void be_mcc_queues_destroy(struct be_adapter *adapter)
1416{
1417 struct be_queue_info *q;
Sathya Perla5fb379e2009-06-18 00:02:59 +00001418
Sathya Perla8788fdc2009-07-27 22:52:03 +00001419 q = &adapter->mcc_obj.q;
Sathya Perla5fb379e2009-06-18 00:02:59 +00001420 if (q->created)
Sathya Perla8788fdc2009-07-27 22:52:03 +00001421 be_cmd_q_destroy(adapter, q, QTYPE_MCCQ);
Sathya Perla5fb379e2009-06-18 00:02:59 +00001422 be_queue_free(adapter, q);
1423
Sathya Perla8788fdc2009-07-27 22:52:03 +00001424 q = &adapter->mcc_obj.cq;
Sathya Perla5fb379e2009-06-18 00:02:59 +00001425 if (q->created)
Sathya Perla8788fdc2009-07-27 22:52:03 +00001426 be_cmd_q_destroy(adapter, q, QTYPE_CQ);
Sathya Perla5fb379e2009-06-18 00:02:59 +00001427 be_queue_free(adapter, q);
1428}
1429
1430/* Must be called only after TX qs are created as MCC shares TX EQ */
1431static int be_mcc_queues_create(struct be_adapter *adapter)
1432{
1433 struct be_queue_info *q, *cq;
Sathya Perla5fb379e2009-06-18 00:02:59 +00001434
1435 /* Alloc MCC compl queue */
Sathya Perla8788fdc2009-07-27 22:52:03 +00001436 cq = &adapter->mcc_obj.cq;
Sathya Perla5fb379e2009-06-18 00:02:59 +00001437 if (be_queue_alloc(adapter, cq, MCC_CQ_LEN,
Sathya Perlaefd2e402009-07-27 22:53:10 +00001438 sizeof(struct be_mcc_compl)))
Sathya Perla5fb379e2009-06-18 00:02:59 +00001439 goto err;
1440
1441 /* Ask BE to create MCC compl queue; share TX's eq */
Sathya Perla8788fdc2009-07-27 22:52:03 +00001442 if (be_cmd_cq_create(adapter, cq, &adapter->tx_eq.q, false, true, 0))
Sathya Perla5fb379e2009-06-18 00:02:59 +00001443 goto mcc_cq_free;
1444
1445 /* Alloc MCC queue */
Sathya Perla8788fdc2009-07-27 22:52:03 +00001446 q = &adapter->mcc_obj.q;
Sathya Perla5fb379e2009-06-18 00:02:59 +00001447 if (be_queue_alloc(adapter, q, MCC_Q_LEN, sizeof(struct be_mcc_wrb)))
1448 goto mcc_cq_destroy;
1449
1450 /* Ask BE to create MCC queue */
Sathya Perla8788fdc2009-07-27 22:52:03 +00001451 if (be_cmd_mccq_create(adapter, q, cq))
Sathya Perla5fb379e2009-06-18 00:02:59 +00001452 goto mcc_q_free;
1453
1454 return 0;
1455
1456mcc_q_free:
1457 be_queue_free(adapter, q);
1458mcc_cq_destroy:
Sathya Perla8788fdc2009-07-27 22:52:03 +00001459 be_cmd_q_destroy(adapter, cq, QTYPE_CQ);
Sathya Perla5fb379e2009-06-18 00:02:59 +00001460mcc_cq_free:
1461 be_queue_free(adapter, cq);
1462err:
1463 return -1;
1464}
1465
Sathya Perla6b7c5b92009-03-11 23:32:03 -07001466static void be_tx_queues_destroy(struct be_adapter *adapter)
1467{
1468 struct be_queue_info *q;
1469
1470 q = &adapter->tx_obj.q;
Sathya Perlaa8e91792009-08-10 03:42:43 +00001471 if (q->created)
Sathya Perla8788fdc2009-07-27 22:52:03 +00001472 be_cmd_q_destroy(adapter, q, QTYPE_TXQ);
Sathya Perla6b7c5b92009-03-11 23:32:03 -07001473 be_queue_free(adapter, q);
1474
1475 q = &adapter->tx_obj.cq;
1476 if (q->created)
Sathya Perla8788fdc2009-07-27 22:52:03 +00001477 be_cmd_q_destroy(adapter, q, QTYPE_CQ);
Sathya Perla6b7c5b92009-03-11 23:32:03 -07001478 be_queue_free(adapter, q);
1479
Sathya Perla859b1e42009-08-10 03:43:51 +00001480 /* Clear any residual events */
1481 be_eq_clean(adapter, &adapter->tx_eq);
1482
Sathya Perla6b7c5b92009-03-11 23:32:03 -07001483 q = &adapter->tx_eq.q;
1484 if (q->created)
Sathya Perla8788fdc2009-07-27 22:52:03 +00001485 be_cmd_q_destroy(adapter, q, QTYPE_EQ);
Sathya Perla6b7c5b92009-03-11 23:32:03 -07001486 be_queue_free(adapter, q);
1487}
1488
1489static int be_tx_queues_create(struct be_adapter *adapter)
1490{
1491 struct be_queue_info *eq, *q, *cq;
1492
1493 adapter->tx_eq.max_eqd = 0;
1494 adapter->tx_eq.min_eqd = 0;
1495 adapter->tx_eq.cur_eqd = 96;
1496 adapter->tx_eq.enable_aic = false;
1497 /* Alloc Tx Event queue */
1498 eq = &adapter->tx_eq.q;
1499 if (be_queue_alloc(adapter, eq, EVNT_Q_LEN, sizeof(struct be_eq_entry)))
1500 return -1;
1501
1502 /* Ask BE to create Tx Event queue */
Sathya Perla8788fdc2009-07-27 22:52:03 +00001503 if (be_cmd_eq_create(adapter, eq, adapter->tx_eq.cur_eqd))
Sathya Perla6b7c5b92009-03-11 23:32:03 -07001504 goto tx_eq_free;
Sathya Perlafe6d2a32010-11-21 23:25:50 +00001505
Padmanabh Ratnakarecd62102011-04-03 01:54:11 +00001506 adapter->tx_eq.eq_idx = adapter->eq_next_idx++;
Sathya Perlafe6d2a32010-11-21 23:25:50 +00001507
Sarveshwar Bandiba343c72010-03-31 02:56:12 +00001508
Sathya Perla6b7c5b92009-03-11 23:32:03 -07001509 /* Alloc TX eth compl queue */
1510 cq = &adapter->tx_obj.cq;
1511 if (be_queue_alloc(adapter, cq, TX_CQ_LEN,
1512 sizeof(struct be_eth_tx_compl)))
1513 goto tx_eq_destroy;
1514
1515 /* Ask BE to create Tx eth compl queue */
Sathya Perla8788fdc2009-07-27 22:52:03 +00001516 if (be_cmd_cq_create(adapter, cq, eq, false, false, 3))
Sathya Perla6b7c5b92009-03-11 23:32:03 -07001517 goto tx_cq_free;
1518
1519 /* Alloc TX eth queue */
1520 q = &adapter->tx_obj.q;
1521 if (be_queue_alloc(adapter, q, TX_Q_LEN, sizeof(struct be_eth_wrb)))
1522 goto tx_cq_destroy;
1523
1524 /* Ask BE to create Tx eth queue */
Sathya Perla8788fdc2009-07-27 22:52:03 +00001525 if (be_cmd_txq_create(adapter, q, cq))
Sathya Perla6b7c5b92009-03-11 23:32:03 -07001526 goto tx_q_free;
1527 return 0;
1528
1529tx_q_free:
1530 be_queue_free(adapter, q);
1531tx_cq_destroy:
Sathya Perla8788fdc2009-07-27 22:52:03 +00001532 be_cmd_q_destroy(adapter, cq, QTYPE_CQ);
Sathya Perla6b7c5b92009-03-11 23:32:03 -07001533tx_cq_free:
1534 be_queue_free(adapter, cq);
1535tx_eq_destroy:
Sathya Perla8788fdc2009-07-27 22:52:03 +00001536 be_cmd_q_destroy(adapter, eq, QTYPE_EQ);
Sathya Perla6b7c5b92009-03-11 23:32:03 -07001537tx_eq_free:
1538 be_queue_free(adapter, eq);
1539 return -1;
1540}
1541
1542static void be_rx_queues_destroy(struct be_adapter *adapter)
1543{
1544 struct be_queue_info *q;
Sathya Perla3abcded2010-10-03 22:12:27 -07001545 struct be_rx_obj *rxo;
1546 int i;
Sathya Perla6b7c5b92009-03-11 23:32:03 -07001547
Sathya Perla3abcded2010-10-03 22:12:27 -07001548 for_all_rx_queues(adapter, rxo, i) {
1549 q = &rxo->q;
1550 if (q->created) {
1551 be_cmd_q_destroy(adapter, q, QTYPE_RXQ);
1552 /* After the rxq is invalidated, wait for a grace time
1553 * of 1ms for all dma to end and the flush compl to
1554 * arrive
1555 */
1556 mdelay(1);
1557 be_rx_q_clean(adapter, rxo);
1558 }
1559 be_queue_free(adapter, q);
Sathya Perla89420422010-02-17 01:35:26 +00001560
Sathya Perla3abcded2010-10-03 22:12:27 -07001561 q = &rxo->cq;
1562 if (q->created)
1563 be_cmd_q_destroy(adapter, q, QTYPE_CQ);
1564 be_queue_free(adapter, q);
1565
1566 /* Clear any residual events */
1567 q = &rxo->rx_eq.q;
1568 if (q->created) {
1569 be_eq_clean(adapter, &rxo->rx_eq);
1570 be_cmd_q_destroy(adapter, q, QTYPE_EQ);
1571 }
1572 be_queue_free(adapter, q);
Sathya Perla6b7c5b92009-03-11 23:32:03 -07001573 }
Sathya Perla6b7c5b92009-03-11 23:32:03 -07001574}
1575
1576static int be_rx_queues_create(struct be_adapter *adapter)
1577{
1578 struct be_queue_info *eq, *q, *cq;
Sathya Perla3abcded2010-10-03 22:12:27 -07001579 struct be_rx_obj *rxo;
1580 int rc, i;
Sathya Perla6b7c5b92009-03-11 23:32:03 -07001581
Sathya Perla6b7c5b92009-03-11 23:32:03 -07001582 adapter->big_page_size = (1 << get_order(rx_frag_size)) * PAGE_SIZE;
Sathya Perla3abcded2010-10-03 22:12:27 -07001583 for_all_rx_queues(adapter, rxo, i) {
1584 rxo->adapter = adapter;
1585 rxo->rx_eq.max_eqd = BE_MAX_EQD;
1586 rxo->rx_eq.enable_aic = true;
Sathya Perla6b7c5b92009-03-11 23:32:03 -07001587
Sathya Perla3abcded2010-10-03 22:12:27 -07001588 /* EQ */
1589 eq = &rxo->rx_eq.q;
1590 rc = be_queue_alloc(adapter, eq, EVNT_Q_LEN,
1591 sizeof(struct be_eq_entry));
1592 if (rc)
1593 goto err;
Sathya Perla6b7c5b92009-03-11 23:32:03 -07001594
Sathya Perla3abcded2010-10-03 22:12:27 -07001595 rc = be_cmd_eq_create(adapter, eq, rxo->rx_eq.cur_eqd);
1596 if (rc)
1597 goto err;
Sathya Perla6b7c5b92009-03-11 23:32:03 -07001598
Padmanabh Ratnakarecd62102011-04-03 01:54:11 +00001599 rxo->rx_eq.eq_idx = adapter->eq_next_idx++;
Sathya Perlafe6d2a32010-11-21 23:25:50 +00001600
Sathya Perla3abcded2010-10-03 22:12:27 -07001601 /* CQ */
1602 cq = &rxo->cq;
1603 rc = be_queue_alloc(adapter, cq, RX_CQ_LEN,
1604 sizeof(struct be_eth_rx_compl));
1605 if (rc)
1606 goto err;
Sathya Perla6b7c5b92009-03-11 23:32:03 -07001607
Sathya Perla3abcded2010-10-03 22:12:27 -07001608 rc = be_cmd_cq_create(adapter, cq, eq, false, false, 3);
1609 if (rc)
1610 goto err;
Sathya Perla3abcded2010-10-03 22:12:27 -07001611 /* Rx Q */
1612 q = &rxo->q;
1613 rc = be_queue_alloc(adapter, q, RX_Q_LEN,
1614 sizeof(struct be_eth_rx_d));
1615 if (rc)
1616 goto err;
Sathya Perla6b7c5b92009-03-11 23:32:03 -07001617
Sathya Perla3abcded2010-10-03 22:12:27 -07001618 rc = be_cmd_rxq_create(adapter, q, cq->id, rx_frag_size,
1619 BE_MAX_JUMBO_FRAME_SIZE, adapter->if_handle,
1620 (i > 0) ? 1 : 0/* rss enable */, &rxo->rss_id);
1621 if (rc)
1622 goto err;
1623 }
1624
1625 if (be_multi_rxq(adapter)) {
1626 u8 rsstable[MAX_RSS_QS];
1627
1628 for_all_rss_queues(adapter, rxo, i)
1629 rsstable[i] = rxo->rss_id;
1630
1631 rc = be_cmd_rss_config(adapter, rsstable,
1632 adapter->num_rx_qs - 1);
1633 if (rc)
1634 goto err;
1635 }
Sathya Perla6b7c5b92009-03-11 23:32:03 -07001636
1637 return 0;
Sathya Perla3abcded2010-10-03 22:12:27 -07001638err:
1639 be_rx_queues_destroy(adapter);
1640 return -1;
Sathya Perla6b7c5b92009-03-11 23:32:03 -07001641}
Sathya Perla6b7c5b92009-03-11 23:32:03 -07001642
Sathya Perlafe6d2a32010-11-21 23:25:50 +00001643static bool event_peek(struct be_eq_obj *eq_obj)
Sathya Perlab628bde2009-08-17 00:58:26 +00001644{
Sathya Perlafe6d2a32010-11-21 23:25:50 +00001645 struct be_eq_entry *eqe = queue_tail_node(&eq_obj->q);
1646 if (!eqe->evt)
1647 return false;
1648 else
1649 return true;
Sathya Perlab628bde2009-08-17 00:58:26 +00001650}
1651
Sathya Perla6b7c5b92009-03-11 23:32:03 -07001652static irqreturn_t be_intx(int irq, void *dev)
1653{
1654 struct be_adapter *adapter = dev;
Sathya Perla3abcded2010-10-03 22:12:27 -07001655 struct be_rx_obj *rxo;
Sathya Perlafe6d2a32010-11-21 23:25:50 +00001656 int isr, i, tx = 0 , rx = 0;
Sathya Perla6b7c5b92009-03-11 23:32:03 -07001657
Sathya Perlafe6d2a32010-11-21 23:25:50 +00001658 if (lancer_chip(adapter)) {
1659 if (event_peek(&adapter->tx_eq))
1660 tx = event_handle(adapter, &adapter->tx_eq);
1661 for_all_rx_queues(adapter, rxo, i) {
1662 if (event_peek(&rxo->rx_eq))
1663 rx |= event_handle(adapter, &rxo->rx_eq);
1664 }
Sathya Perla6b7c5b92009-03-11 23:32:03 -07001665
Sathya Perlafe6d2a32010-11-21 23:25:50 +00001666 if (!(tx || rx))
1667 return IRQ_NONE;
Sathya Perla3abcded2010-10-03 22:12:27 -07001668
Sathya Perlafe6d2a32010-11-21 23:25:50 +00001669 } else {
1670 isr = ioread32(adapter->csr + CEV_ISR0_OFFSET +
1671 (adapter->tx_eq.q.id / 8) * CEV_ISR_SIZE);
1672 if (!isr)
1673 return IRQ_NONE;
1674
Padmanabh Ratnakarecd62102011-04-03 01:54:11 +00001675 if ((1 << adapter->tx_eq.eq_idx & isr))
Sathya Perlafe6d2a32010-11-21 23:25:50 +00001676 event_handle(adapter, &adapter->tx_eq);
1677
1678 for_all_rx_queues(adapter, rxo, i) {
Padmanabh Ratnakarecd62102011-04-03 01:54:11 +00001679 if ((1 << rxo->rx_eq.eq_idx & isr))
Sathya Perlafe6d2a32010-11-21 23:25:50 +00001680 event_handle(adapter, &rxo->rx_eq);
1681 }
Sathya Perla3abcded2010-10-03 22:12:27 -07001682 }
Sathya Perlac001c212009-07-01 01:06:07 +00001683
Sathya Perla8788fdc2009-07-27 22:52:03 +00001684 return IRQ_HANDLED;
Sathya Perla6b7c5b92009-03-11 23:32:03 -07001685}
1686
1687static irqreturn_t be_msix_rx(int irq, void *dev)
1688{
Sathya Perla3abcded2010-10-03 22:12:27 -07001689 struct be_rx_obj *rxo = dev;
1690 struct be_adapter *adapter = rxo->adapter;
Sathya Perla6b7c5b92009-03-11 23:32:03 -07001691
Sathya Perla3abcded2010-10-03 22:12:27 -07001692 event_handle(adapter, &rxo->rx_eq);
Sathya Perla6b7c5b92009-03-11 23:32:03 -07001693
1694 return IRQ_HANDLED;
1695}
1696
Sathya Perla5fb379e2009-06-18 00:02:59 +00001697static irqreturn_t be_msix_tx_mcc(int irq, void *dev)
Sathya Perla6b7c5b92009-03-11 23:32:03 -07001698{
1699 struct be_adapter *adapter = dev;
1700
Sathya Perla8788fdc2009-07-27 22:52:03 +00001701 event_handle(adapter, &adapter->tx_eq);
Sathya Perla6b7c5b92009-03-11 23:32:03 -07001702
1703 return IRQ_HANDLED;
1704}
1705
Sathya Perla2e588f82011-03-11 02:49:26 +00001706static inline bool do_gro(struct be_rx_compl_info *rxcp)
Sathya Perla6b7c5b92009-03-11 23:32:03 -07001707{
Sathya Perla2e588f82011-03-11 02:49:26 +00001708 return (rxcp->tcpf && !rxcp->err) ? true : false;
Sathya Perla6b7c5b92009-03-11 23:32:03 -07001709}
1710
stephen hemminger49b05222010-10-21 07:50:48 +00001711static int be_poll_rx(struct napi_struct *napi, int budget)
Sathya Perla6b7c5b92009-03-11 23:32:03 -07001712{
1713 struct be_eq_obj *rx_eq = container_of(napi, struct be_eq_obj, napi);
Sathya Perla3abcded2010-10-03 22:12:27 -07001714 struct be_rx_obj *rxo = container_of(rx_eq, struct be_rx_obj, rx_eq);
1715 struct be_adapter *adapter = rxo->adapter;
1716 struct be_queue_info *rx_cq = &rxo->cq;
Sathya Perla2e588f82011-03-11 02:49:26 +00001717 struct be_rx_compl_info *rxcp;
Sathya Perla6b7c5b92009-03-11 23:32:03 -07001718 u32 work_done;
1719
Sathya Perla3abcded2010-10-03 22:12:27 -07001720 rxo->stats.rx_polls++;
Sathya Perla6b7c5b92009-03-11 23:32:03 -07001721 for (work_done = 0; work_done < budget; work_done++) {
Sathya Perla3abcded2010-10-03 22:12:27 -07001722 rxcp = be_rx_compl_get(rxo);
Sathya Perla6b7c5b92009-03-11 23:32:03 -07001723 if (!rxcp)
1724 break;
1725
Padmanabh Ratnakare80d9da2011-03-07 03:07:58 +00001726 /* Ignore flush completions */
Sathya Perla2e588f82011-03-11 02:49:26 +00001727 if (rxcp->num_rcvd) {
1728 if (do_gro(rxcp))
Sathya Perla64642812010-12-01 01:04:17 +00001729 be_rx_compl_process_gro(adapter, rxo, rxcp);
1730 else
1731 be_rx_compl_process(adapter, rxo, rxcp);
1732 }
Sathya Perla2e588f82011-03-11 02:49:26 +00001733 be_rx_stats_update(rxo, rxcp);
Sathya Perla6b7c5b92009-03-11 23:32:03 -07001734 }
1735
Sathya Perla6b7c5b92009-03-11 23:32:03 -07001736 /* Refill the queue */
Sathya Perla3abcded2010-10-03 22:12:27 -07001737 if (atomic_read(&rxo->q.used) < RX_FRAGS_REFILL_WM)
Eric Dumazet1829b082011-03-01 05:48:12 +00001738 be_post_rx_frags(rxo, GFP_ATOMIC);
Sathya Perla6b7c5b92009-03-11 23:32:03 -07001739
1740 /* All consumed */
1741 if (work_done < budget) {
1742 napi_complete(napi);
Sathya Perla8788fdc2009-07-27 22:52:03 +00001743 be_cq_notify(adapter, rx_cq->id, true, work_done);
Sathya Perla6b7c5b92009-03-11 23:32:03 -07001744 } else {
1745 /* More to be consumed; continue with interrupts disabled */
Sathya Perla8788fdc2009-07-27 22:52:03 +00001746 be_cq_notify(adapter, rx_cq->id, false, work_done);
Sathya Perla6b7c5b92009-03-11 23:32:03 -07001747 }
1748 return work_done;
1749}
1750
Sathya Perlaf31e50a2010-03-02 03:56:39 -08001751/* As TX and MCC share the same EQ check for both TX and MCC completions.
1752 * For TX/MCC we don't honour budget; consume everything
1753 */
1754static int be_poll_tx_mcc(struct napi_struct *napi, int budget)
Sathya Perla6b7c5b92009-03-11 23:32:03 -07001755{
Sathya Perlaf31e50a2010-03-02 03:56:39 -08001756 struct be_eq_obj *tx_eq = container_of(napi, struct be_eq_obj, napi);
1757 struct be_adapter *adapter =
1758 container_of(tx_eq, struct be_adapter, tx_eq);
Sathya Perla5fb379e2009-06-18 00:02:59 +00001759 struct be_queue_info *txq = &adapter->tx_obj.q;
1760 struct be_queue_info *tx_cq = &adapter->tx_obj.cq;
Sathya Perla6b7c5b92009-03-11 23:32:03 -07001761 struct be_eth_tx_compl *txcp;
Sathya Perlaf31e50a2010-03-02 03:56:39 -08001762 int tx_compl = 0, mcc_compl, status = 0;
Sathya Perla6b7c5b92009-03-11 23:32:03 -07001763 u16 end_idx;
1764
Sathya Perla5fb379e2009-06-18 00:02:59 +00001765 while ((txcp = be_tx_compl_get(tx_cq))) {
Sathya Perla6b7c5b92009-03-11 23:32:03 -07001766 end_idx = AMAP_GET_BITS(struct amap_eth_tx_compl,
Sathya Perlaf31e50a2010-03-02 03:56:39 -08001767 wrb_index, txcp);
Sathya Perla6b7c5b92009-03-11 23:32:03 -07001768 be_tx_compl_process(adapter, end_idx);
Sathya Perlaf31e50a2010-03-02 03:56:39 -08001769 tx_compl++;
Sathya Perla6b7c5b92009-03-11 23:32:03 -07001770 }
1771
Sathya Perlaf31e50a2010-03-02 03:56:39 -08001772 mcc_compl = be_process_mcc(adapter, &status);
1773
1774 napi_complete(napi);
1775
1776 if (mcc_compl) {
1777 struct be_mcc_obj *mcc_obj = &adapter->mcc_obj;
1778 be_cq_notify(adapter, mcc_obj->cq.id, true, mcc_compl);
1779 }
1780
1781 if (tx_compl) {
1782 be_cq_notify(adapter, adapter->tx_obj.cq.id, true, tx_compl);
Sathya Perla5fb379e2009-06-18 00:02:59 +00001783
1784 /* As Tx wrbs have been freed up, wake up netdev queue if
1785 * it was stopped due to lack of tx wrbs.
1786 */
1787 if (netif_queue_stopped(adapter->netdev) &&
Sathya Perla6b7c5b92009-03-11 23:32:03 -07001788 atomic_read(&txq->used) < txq->len / 2) {
Sathya Perla5fb379e2009-06-18 00:02:59 +00001789 netif_wake_queue(adapter->netdev);
1790 }
1791
Sathya Perla3abcded2010-10-03 22:12:27 -07001792 tx_stats(adapter)->be_tx_events++;
1793 tx_stats(adapter)->be_tx_compl += tx_compl;
Sathya Perla6b7c5b92009-03-11 23:32:03 -07001794 }
Sathya Perla6b7c5b92009-03-11 23:32:03 -07001795
1796 return 1;
1797}
1798
Ajit Khaparded053de92010-09-03 06:23:30 +00001799void be_detect_dump_ue(struct be_adapter *adapter)
Ajit Khaparde7c185272010-07-29 06:16:33 +00001800{
1801 u32 ue_status_lo, ue_status_hi, ue_status_lo_mask, ue_status_hi_mask;
1802 u32 i;
1803
1804 pci_read_config_dword(adapter->pdev,
1805 PCICFG_UE_STATUS_LOW, &ue_status_lo);
1806 pci_read_config_dword(adapter->pdev,
1807 PCICFG_UE_STATUS_HIGH, &ue_status_hi);
1808 pci_read_config_dword(adapter->pdev,
1809 PCICFG_UE_STATUS_LOW_MASK, &ue_status_lo_mask);
1810 pci_read_config_dword(adapter->pdev,
1811 PCICFG_UE_STATUS_HI_MASK, &ue_status_hi_mask);
1812
1813 ue_status_lo = (ue_status_lo & (~ue_status_lo_mask));
1814 ue_status_hi = (ue_status_hi & (~ue_status_hi_mask));
1815
Ajit Khaparded053de92010-09-03 06:23:30 +00001816 if (ue_status_lo || ue_status_hi) {
1817 adapter->ue_detected = true;
Ajit Khaparde7acc2082011-02-11 13:38:17 +00001818 adapter->eeh_err = true;
Ajit Khaparded053de92010-09-03 06:23:30 +00001819 dev_err(&adapter->pdev->dev, "UE Detected!!\n");
1820 }
1821
Ajit Khaparde7c185272010-07-29 06:16:33 +00001822 if (ue_status_lo) {
1823 for (i = 0; ue_status_lo; ue_status_lo >>= 1, i++) {
1824 if (ue_status_lo & 1)
1825 dev_err(&adapter->pdev->dev,
1826 "UE: %s bit set\n", ue_status_low_desc[i]);
1827 }
1828 }
1829 if (ue_status_hi) {
1830 for (i = 0; ue_status_hi; ue_status_hi >>= 1, i++) {
1831 if (ue_status_hi & 1)
1832 dev_err(&adapter->pdev->dev,
1833 "UE: %s bit set\n", ue_status_hi_desc[i]);
1834 }
1835 }
1836
1837}
1838
Sathya Perlaea1dae12009-03-19 23:56:20 -07001839static void be_worker(struct work_struct *work)
1840{
1841 struct be_adapter *adapter =
1842 container_of(work, struct be_adapter, work.work);
Sathya Perla3abcded2010-10-03 22:12:27 -07001843 struct be_rx_obj *rxo;
1844 int i;
Sathya Perlaea1dae12009-03-19 23:56:20 -07001845
Somnath Koturf203af72010-10-25 23:01:03 +00001846 /* when interrupts are not yet enabled, just reap any pending
1847 * mcc completions */
1848 if (!netif_running(adapter->netdev)) {
1849 int mcc_compl, status = 0;
1850
1851 mcc_compl = be_process_mcc(adapter, &status);
1852
1853 if (mcc_compl) {
1854 struct be_mcc_obj *mcc_obj = &adapter->mcc_obj;
1855 be_cq_notify(adapter, mcc_obj->cq.id, false, mcc_compl);
1856 }
Ajit Khaparde9b037f32011-02-11 13:38:29 +00001857
1858 if (!adapter->ue_detected && !lancer_chip(adapter))
1859 be_detect_dump_ue(adapter);
1860
Somnath Koturf203af72010-10-25 23:01:03 +00001861 goto reschedule;
1862 }
1863
Ajit Khapardeb2aebe62011-02-20 11:41:39 +00001864 if (!adapter->stats_cmd_sent)
Sathya Perla3abcded2010-10-03 22:12:27 -07001865 be_cmd_get_stats(adapter, &adapter->stats_cmd);
Sathya Perlaea1dae12009-03-19 23:56:20 -07001866
Sathya Perla4097f662009-03-24 16:40:13 -07001867 be_tx_rate_update(adapter);
Sathya Perla4097f662009-03-24 16:40:13 -07001868
Sathya Perla3abcded2010-10-03 22:12:27 -07001869 for_all_rx_queues(adapter, rxo, i) {
1870 be_rx_rate_update(rxo);
1871 be_rx_eqd_update(adapter, rxo);
1872
1873 if (rxo->rx_post_starved) {
1874 rxo->rx_post_starved = false;
Eric Dumazet1829b082011-03-01 05:48:12 +00001875 be_post_rx_frags(rxo, GFP_KERNEL);
Sathya Perla3abcded2010-10-03 22:12:27 -07001876 }
Sathya Perlaea1dae12009-03-19 23:56:20 -07001877 }
Sathya Perlafe6d2a32010-11-21 23:25:50 +00001878 if (!adapter->ue_detected && !lancer_chip(adapter))
Ajit Khaparded053de92010-09-03 06:23:30 +00001879 be_detect_dump_ue(adapter);
Sathya Perlaea1dae12009-03-19 23:56:20 -07001880
Somnath Koturf203af72010-10-25 23:01:03 +00001881reschedule:
Ivan Vecerae74fbd032011-04-21 00:20:04 +00001882 adapter->work_counter++;
Sathya Perlaea1dae12009-03-19 23:56:20 -07001883 schedule_delayed_work(&adapter->work, msecs_to_jiffies(1000));
1884}
1885
Sathya Perla8d56ff12009-11-22 22:02:26 +00001886static void be_msix_disable(struct be_adapter *adapter)
1887{
1888 if (adapter->msix_enabled) {
1889 pci_disable_msix(adapter->pdev);
1890 adapter->msix_enabled = false;
1891 }
1892}
1893
Sathya Perla3abcded2010-10-03 22:12:27 -07001894static int be_num_rxqs_get(struct be_adapter *adapter)
1895{
1896 if (multi_rxq && (adapter->function_caps & BE_FUNCTION_CAPS_RSS) &&
1897 !adapter->sriov_enabled && !(adapter->function_mode & 0x400)) {
1898 return 1 + MAX_RSS_QS; /* one default non-RSS queue */
1899 } else {
1900 dev_warn(&adapter->pdev->dev,
1901 "No support for multiple RX queues\n");
1902 return 1;
1903 }
1904}
1905
Sathya Perla6b7c5b92009-03-11 23:32:03 -07001906static void be_msix_enable(struct be_adapter *adapter)
1907{
Sathya Perla3abcded2010-10-03 22:12:27 -07001908#define BE_MIN_MSIX_VECTORS (1 + 1) /* Rx + Tx */
Sathya Perla6b7c5b92009-03-11 23:32:03 -07001909 int i, status;
1910
Sathya Perla3abcded2010-10-03 22:12:27 -07001911 adapter->num_rx_qs = be_num_rxqs_get(adapter);
1912
1913 for (i = 0; i < (adapter->num_rx_qs + 1); i++)
Sathya Perla6b7c5b92009-03-11 23:32:03 -07001914 adapter->msix_entries[i].entry = i;
1915
1916 status = pci_enable_msix(adapter->pdev, adapter->msix_entries,
Sathya Perla3abcded2010-10-03 22:12:27 -07001917 adapter->num_rx_qs + 1);
1918 if (status == 0) {
1919 goto done;
1920 } else if (status >= BE_MIN_MSIX_VECTORS) {
1921 if (pci_enable_msix(adapter->pdev, adapter->msix_entries,
1922 status) == 0) {
1923 adapter->num_rx_qs = status - 1;
1924 dev_warn(&adapter->pdev->dev,
1925 "Could alloc only %d MSIx vectors. "
1926 "Using %d RX Qs\n", status, adapter->num_rx_qs);
1927 goto done;
1928 }
1929 }
1930 return;
1931done:
1932 adapter->msix_enabled = true;
Sathya Perla6b7c5b92009-03-11 23:32:03 -07001933}
1934
Sarveshwar Bandiba343c72010-03-31 02:56:12 +00001935static void be_sriov_enable(struct be_adapter *adapter)
1936{
Sarveshwar Bandi344dbf12010-07-09 01:43:55 +00001937 be_check_sriov_fn_type(adapter);
Ajit Khaparde6dedec82010-07-29 06:15:32 +00001938#ifdef CONFIG_PCI_IOV
Sarveshwar Bandiba343c72010-03-31 02:56:12 +00001939 if (be_physfn(adapter) && num_vfs) {
Ajit Khaparde6dedec82010-07-29 06:15:32 +00001940 int status;
1941
Sarveshwar Bandiba343c72010-03-31 02:56:12 +00001942 status = pci_enable_sriov(adapter->pdev, num_vfs);
1943 adapter->sriov_enabled = status ? false : true;
1944 }
1945#endif
Sarveshwar Bandiba343c72010-03-31 02:56:12 +00001946}
1947
1948static void be_sriov_disable(struct be_adapter *adapter)
1949{
1950#ifdef CONFIG_PCI_IOV
1951 if (adapter->sriov_enabled) {
1952 pci_disable_sriov(adapter->pdev);
1953 adapter->sriov_enabled = false;
1954 }
1955#endif
1956}
1957
Sathya Perlafe6d2a32010-11-21 23:25:50 +00001958static inline int be_msix_vec_get(struct be_adapter *adapter,
1959 struct be_eq_obj *eq_obj)
Sathya Perla6b7c5b92009-03-11 23:32:03 -07001960{
Padmanabh Ratnakarecd62102011-04-03 01:54:11 +00001961 return adapter->msix_entries[eq_obj->eq_idx].vector;
Sathya Perlab628bde2009-08-17 00:58:26 +00001962}
1963
1964static int be_request_irq(struct be_adapter *adapter,
1965 struct be_eq_obj *eq_obj,
Sathya Perla3abcded2010-10-03 22:12:27 -07001966 void *handler, char *desc, void *context)
Sathya Perlab628bde2009-08-17 00:58:26 +00001967{
1968 struct net_device *netdev = adapter->netdev;
1969 int vec;
1970
1971 sprintf(eq_obj->desc, "%s-%s", netdev->name, desc);
Sathya Perlafe6d2a32010-11-21 23:25:50 +00001972 vec = be_msix_vec_get(adapter, eq_obj);
Sathya Perla3abcded2010-10-03 22:12:27 -07001973 return request_irq(vec, handler, 0, eq_obj->desc, context);
Sathya Perlab628bde2009-08-17 00:58:26 +00001974}
1975
Sathya Perla3abcded2010-10-03 22:12:27 -07001976static void be_free_irq(struct be_adapter *adapter, struct be_eq_obj *eq_obj,
1977 void *context)
Sathya Perlab628bde2009-08-17 00:58:26 +00001978{
Sathya Perlafe6d2a32010-11-21 23:25:50 +00001979 int vec = be_msix_vec_get(adapter, eq_obj);
Sathya Perla3abcded2010-10-03 22:12:27 -07001980 free_irq(vec, context);
Sathya Perla6b7c5b92009-03-11 23:32:03 -07001981}
1982
1983static int be_msix_register(struct be_adapter *adapter)
1984{
Sathya Perla3abcded2010-10-03 22:12:27 -07001985 struct be_rx_obj *rxo;
1986 int status, i;
1987 char qname[10];
Sathya Perla6b7c5b92009-03-11 23:32:03 -07001988
Sathya Perla3abcded2010-10-03 22:12:27 -07001989 status = be_request_irq(adapter, &adapter->tx_eq, be_msix_tx_mcc, "tx",
1990 adapter);
Sathya Perla6b7c5b92009-03-11 23:32:03 -07001991 if (status)
1992 goto err;
1993
Sathya Perla3abcded2010-10-03 22:12:27 -07001994 for_all_rx_queues(adapter, rxo, i) {
1995 sprintf(qname, "rxq%d", i);
1996 status = be_request_irq(adapter, &rxo->rx_eq, be_msix_rx,
1997 qname, rxo);
1998 if (status)
1999 goto err_msix;
2000 }
Sathya Perlab628bde2009-08-17 00:58:26 +00002001
Sathya Perla6b7c5b92009-03-11 23:32:03 -07002002 return 0;
Sathya Perlab628bde2009-08-17 00:58:26 +00002003
Sathya Perla3abcded2010-10-03 22:12:27 -07002004err_msix:
2005 be_free_irq(adapter, &adapter->tx_eq, adapter);
2006
2007 for (i--, rxo = &adapter->rx_obj[i]; i >= 0; i--, rxo--)
2008 be_free_irq(adapter, &rxo->rx_eq, rxo);
2009
Sathya Perla6b7c5b92009-03-11 23:32:03 -07002010err:
2011 dev_warn(&adapter->pdev->dev,
2012 "MSIX Request IRQ failed - err %d\n", status);
2013 pci_disable_msix(adapter->pdev);
2014 adapter->msix_enabled = false;
2015 return status;
2016}
2017
2018static int be_irq_register(struct be_adapter *adapter)
2019{
2020 struct net_device *netdev = adapter->netdev;
2021 int status;
2022
2023 if (adapter->msix_enabled) {
2024 status = be_msix_register(adapter);
2025 if (status == 0)
2026 goto done;
Sarveshwar Bandiba343c72010-03-31 02:56:12 +00002027 /* INTx is not supported for VF */
2028 if (!be_physfn(adapter))
2029 return status;
Sathya Perla6b7c5b92009-03-11 23:32:03 -07002030 }
2031
2032 /* INTx */
2033 netdev->irq = adapter->pdev->irq;
2034 status = request_irq(netdev->irq, be_intx, IRQF_SHARED, netdev->name,
2035 adapter);
2036 if (status) {
2037 dev_err(&adapter->pdev->dev,
2038 "INTx request IRQ failed - err %d\n", status);
2039 return status;
2040 }
2041done:
2042 adapter->isr_registered = true;
2043 return 0;
2044}
2045
2046static void be_irq_unregister(struct be_adapter *adapter)
2047{
2048 struct net_device *netdev = adapter->netdev;
Sathya Perla3abcded2010-10-03 22:12:27 -07002049 struct be_rx_obj *rxo;
2050 int i;
Sathya Perla6b7c5b92009-03-11 23:32:03 -07002051
2052 if (!adapter->isr_registered)
2053 return;
2054
2055 /* INTx */
2056 if (!adapter->msix_enabled) {
2057 free_irq(netdev->irq, adapter);
2058 goto done;
2059 }
2060
2061 /* MSIx */
Sathya Perla3abcded2010-10-03 22:12:27 -07002062 be_free_irq(adapter, &adapter->tx_eq, adapter);
2063
2064 for_all_rx_queues(adapter, rxo, i)
2065 be_free_irq(adapter, &rxo->rx_eq, rxo);
2066
Sathya Perla6b7c5b92009-03-11 23:32:03 -07002067done:
2068 adapter->isr_registered = false;
Sathya Perla6b7c5b92009-03-11 23:32:03 -07002069}
2070
Sathya Perla889cd4b2010-05-30 23:33:45 +00002071static int be_close(struct net_device *netdev)
2072{
2073 struct be_adapter *adapter = netdev_priv(netdev);
Sathya Perla3abcded2010-10-03 22:12:27 -07002074 struct be_rx_obj *rxo;
Sathya Perla889cd4b2010-05-30 23:33:45 +00002075 struct be_eq_obj *tx_eq = &adapter->tx_eq;
Sathya Perla3abcded2010-10-03 22:12:27 -07002076 int vec, i;
Sathya Perla889cd4b2010-05-30 23:33:45 +00002077
Sathya Perla889cd4b2010-05-30 23:33:45 +00002078 be_async_mcc_disable(adapter);
2079
Sathya Perla889cd4b2010-05-30 23:33:45 +00002080 netif_carrier_off(netdev);
2081 adapter->link_up = false;
2082
Sathya Perlafe6d2a32010-11-21 23:25:50 +00002083 if (!lancer_chip(adapter))
2084 be_intr_set(adapter, false);
Sathya Perla889cd4b2010-05-30 23:33:45 +00002085
Padmanabh Ratnakar63fcb272011-03-07 03:09:17 +00002086 for_all_rx_queues(adapter, rxo, i)
2087 napi_disable(&rxo->rx_eq.napi);
2088
2089 napi_disable(&tx_eq->napi);
2090
2091 if (lancer_chip(adapter)) {
2092 be_cq_notify(adapter, adapter->tx_obj.cq.id, false, 0);
2093 be_cq_notify(adapter, adapter->mcc_obj.cq.id, false, 0);
2094 for_all_rx_queues(adapter, rxo, i)
2095 be_cq_notify(adapter, rxo->cq.id, false, 0);
2096 }
2097
Sathya Perla889cd4b2010-05-30 23:33:45 +00002098 if (adapter->msix_enabled) {
Sathya Perlafe6d2a32010-11-21 23:25:50 +00002099 vec = be_msix_vec_get(adapter, tx_eq);
Sathya Perla889cd4b2010-05-30 23:33:45 +00002100 synchronize_irq(vec);
Sathya Perla3abcded2010-10-03 22:12:27 -07002101
2102 for_all_rx_queues(adapter, rxo, i) {
Sathya Perlafe6d2a32010-11-21 23:25:50 +00002103 vec = be_msix_vec_get(adapter, &rxo->rx_eq);
Sathya Perla3abcded2010-10-03 22:12:27 -07002104 synchronize_irq(vec);
2105 }
Sathya Perla889cd4b2010-05-30 23:33:45 +00002106 } else {
2107 synchronize_irq(netdev->irq);
2108 }
2109 be_irq_unregister(adapter);
2110
Sathya Perla889cd4b2010-05-30 23:33:45 +00002111 /* Wait for all pending tx completions to arrive so that
2112 * all tx skbs are freed.
2113 */
2114 be_tx_compl_clean(adapter);
2115
2116 return 0;
2117}
2118
Sathya Perla6b7c5b92009-03-11 23:32:03 -07002119static int be_open(struct net_device *netdev)
2120{
2121 struct be_adapter *adapter = netdev_priv(netdev);
Sathya Perla6b7c5b92009-03-11 23:32:03 -07002122 struct be_eq_obj *tx_eq = &adapter->tx_eq;
Sathya Perla3abcded2010-10-03 22:12:27 -07002123 struct be_rx_obj *rxo;
Sathya Perlaa8f447b2009-06-18 00:10:27 +00002124 bool link_up;
Sathya Perla3abcded2010-10-03 22:12:27 -07002125 int status, i;
Sarveshwar Bandi0388f252009-10-28 04:15:20 -07002126 u8 mac_speed;
2127 u16 link_speed;
Sathya Perla5fb379e2009-06-18 00:02:59 +00002128
Sathya Perla3abcded2010-10-03 22:12:27 -07002129 for_all_rx_queues(adapter, rxo, i) {
Eric Dumazet1829b082011-03-01 05:48:12 +00002130 be_post_rx_frags(rxo, GFP_KERNEL);
Sathya Perla3abcded2010-10-03 22:12:27 -07002131 napi_enable(&rxo->rx_eq.napi);
2132 }
Sathya Perla5fb379e2009-06-18 00:02:59 +00002133 napi_enable(&tx_eq->napi);
2134
2135 be_irq_register(adapter);
2136
Sathya Perlafe6d2a32010-11-21 23:25:50 +00002137 if (!lancer_chip(adapter))
2138 be_intr_set(adapter, true);
Sathya Perla5fb379e2009-06-18 00:02:59 +00002139
2140 /* The evt queues are created in unarmed state; arm them */
Sathya Perla3abcded2010-10-03 22:12:27 -07002141 for_all_rx_queues(adapter, rxo, i) {
2142 be_eq_notify(adapter, rxo->rx_eq.q.id, true, false, 0);
2143 be_cq_notify(adapter, rxo->cq.id, true, 0);
2144 }
Sathya Perla8788fdc2009-07-27 22:52:03 +00002145 be_eq_notify(adapter, tx_eq->q.id, true, false, 0);
Sathya Perla5fb379e2009-06-18 00:02:59 +00002146
Sathya Perla7a1e9b22010-02-17 01:35:11 +00002147 /* Now that interrupts are on we can process async mcc */
2148 be_async_mcc_enable(adapter);
2149
Sarveshwar Bandi0388f252009-10-28 04:15:20 -07002150 status = be_cmd_link_status_query(adapter, &link_up, &mac_speed,
2151 &link_speed);
Sathya Perlaa8f447b2009-06-18 00:10:27 +00002152 if (status)
Sathya Perla889cd4b2010-05-30 23:33:45 +00002153 goto err;
Sathya Perlaa8f447b2009-06-18 00:10:27 +00002154 be_link_status_update(adapter, link_up);
Sathya Perla5fb379e2009-06-18 00:02:59 +00002155
Sarveshwar Bandiba343c72010-03-31 02:56:12 +00002156 if (be_physfn(adapter)) {
Ajit Khaparde1da87b72010-07-23 01:51:22 +00002157 status = be_vid_config(adapter, false, 0);
Sathya Perla889cd4b2010-05-30 23:33:45 +00002158 if (status)
2159 goto err;
2160
Sarveshwar Bandiba343c72010-03-31 02:56:12 +00002161 status = be_cmd_set_flow_control(adapter,
2162 adapter->tx_fc, adapter->rx_fc);
2163 if (status)
Sathya Perla889cd4b2010-05-30 23:33:45 +00002164 goto err;
Sarveshwar Bandiba343c72010-03-31 02:56:12 +00002165 }
Ajit Khaparde4f2aa892009-11-06 02:07:32 +00002166
Sathya Perla889cd4b2010-05-30 23:33:45 +00002167 return 0;
2168err:
2169 be_close(adapter->netdev);
2170 return -EIO;
Sathya Perla5fb379e2009-06-18 00:02:59 +00002171}
2172
Ajit Khaparde71d8d1b2009-12-03 06:16:59 +00002173static int be_setup_wol(struct be_adapter *adapter, bool enable)
2174{
2175 struct be_dma_mem cmd;
2176 int status = 0;
2177 u8 mac[ETH_ALEN];
2178
2179 memset(mac, 0, ETH_ALEN);
2180
2181 cmd.size = sizeof(struct be_cmd_req_acpi_wol_magic_config);
Ivan Vecera2b7bceb2011-02-02 08:05:12 +00002182 cmd.va = dma_alloc_coherent(&adapter->pdev->dev, cmd.size, &cmd.dma,
2183 GFP_KERNEL);
Ajit Khaparde71d8d1b2009-12-03 06:16:59 +00002184 if (cmd.va == NULL)
2185 return -1;
2186 memset(cmd.va, 0, cmd.size);
2187
2188 if (enable) {
2189 status = pci_write_config_dword(adapter->pdev,
2190 PCICFG_PM_CONTROL_OFFSET, PCICFG_PM_CONTROL_MASK);
2191 if (status) {
2192 dev_err(&adapter->pdev->dev,
Frans Pop2381a552010-03-24 07:57:36 +00002193 "Could not enable Wake-on-lan\n");
Ivan Vecera2b7bceb2011-02-02 08:05:12 +00002194 dma_free_coherent(&adapter->pdev->dev, cmd.size, cmd.va,
2195 cmd.dma);
Ajit Khaparde71d8d1b2009-12-03 06:16:59 +00002196 return status;
2197 }
2198 status = be_cmd_enable_magic_wol(adapter,
2199 adapter->netdev->dev_addr, &cmd);
2200 pci_enable_wake(adapter->pdev, PCI_D3hot, 1);
2201 pci_enable_wake(adapter->pdev, PCI_D3cold, 1);
2202 } else {
2203 status = be_cmd_enable_magic_wol(adapter, mac, &cmd);
2204 pci_enable_wake(adapter->pdev, PCI_D3hot, 0);
2205 pci_enable_wake(adapter->pdev, PCI_D3cold, 0);
2206 }
2207
Ivan Vecera2b7bceb2011-02-02 08:05:12 +00002208 dma_free_coherent(&adapter->pdev->dev, cmd.size, cmd.va, cmd.dma);
Ajit Khaparde71d8d1b2009-12-03 06:16:59 +00002209 return status;
2210}
2211
Ajit Khaparde6d87f5c2010-08-25 00:32:33 +00002212/*
2213 * Generate a seed MAC address from the PF MAC Address using jhash.
2214 * MAC Address for VFs are assigned incrementally starting from the seed.
2215 * These addresses are programmed in the ASIC by the PF and the VF driver
2216 * queries for the MAC address during its probe.
2217 */
2218static inline int be_vf_eth_addr_config(struct be_adapter *adapter)
2219{
2220 u32 vf = 0;
Sathya Perla3abcded2010-10-03 22:12:27 -07002221 int status = 0;
Ajit Khaparde6d87f5c2010-08-25 00:32:33 +00002222 u8 mac[ETH_ALEN];
2223
2224 be_vf_eth_addr_generate(adapter, mac);
2225
2226 for (vf = 0; vf < num_vfs; vf++) {
2227 status = be_cmd_pmac_add(adapter, mac,
2228 adapter->vf_cfg[vf].vf_if_handle,
Ajit Khapardef8617e02011-02-11 13:36:37 +00002229 &adapter->vf_cfg[vf].vf_pmac_id,
2230 vf + 1);
Ajit Khaparde6d87f5c2010-08-25 00:32:33 +00002231 if (status)
2232 dev_err(&adapter->pdev->dev,
2233 "Mac address add failed for VF %d\n", vf);
2234 else
2235 memcpy(adapter->vf_cfg[vf].vf_mac_addr, mac, ETH_ALEN);
2236
2237 mac[5] += 1;
2238 }
2239 return status;
2240}
2241
2242static inline void be_vf_eth_addr_rem(struct be_adapter *adapter)
2243{
2244 u32 vf;
2245
2246 for (vf = 0; vf < num_vfs; vf++) {
2247 if (adapter->vf_cfg[vf].vf_pmac_id != BE_INVALID_PMAC_ID)
2248 be_cmd_pmac_del(adapter,
2249 adapter->vf_cfg[vf].vf_if_handle,
Ajit Khapardef8617e02011-02-11 13:36:37 +00002250 adapter->vf_cfg[vf].vf_pmac_id, vf + 1);
Ajit Khaparde6d87f5c2010-08-25 00:32:33 +00002251 }
2252}
2253
Sathya Perla5fb379e2009-06-18 00:02:59 +00002254static int be_setup(struct be_adapter *adapter)
2255{
Sathya Perla5fb379e2009-06-18 00:02:59 +00002256 struct net_device *netdev = adapter->netdev;
Sarveshwar Bandiba343c72010-03-31 02:56:12 +00002257 u32 cap_flags, en_flags, vf = 0;
Sathya Perla6b7c5b92009-03-11 23:32:03 -07002258 int status;
Sarveshwar Bandiba343c72010-03-31 02:56:12 +00002259 u8 mac[ETH_ALEN];
Sathya Perla6b7c5b92009-03-11 23:32:03 -07002260
Padmanabh Ratnakarf21b5382011-03-07 03:09:36 +00002261 cap_flags = en_flags = BE_IF_FLAGS_UNTAGGED |
2262 BE_IF_FLAGS_BROADCAST |
2263 BE_IF_FLAGS_MULTICAST;
Sarveshwar Bandiba343c72010-03-31 02:56:12 +00002264
2265 if (be_physfn(adapter)) {
2266 cap_flags |= BE_IF_FLAGS_MCAST_PROMISCUOUS |
2267 BE_IF_FLAGS_PROMISCUOUS |
2268 BE_IF_FLAGS_PASS_L3L4_ERRORS;
2269 en_flags |= BE_IF_FLAGS_PASS_L3L4_ERRORS;
Sathya Perla3abcded2010-10-03 22:12:27 -07002270
2271 if (be_multi_rxq(adapter)) {
2272 cap_flags |= BE_IF_FLAGS_RSS;
2273 en_flags |= BE_IF_FLAGS_RSS;
2274 }
Sarveshwar Bandiba343c72010-03-31 02:56:12 +00002275 }
Sathya Perla73d540f2009-10-14 20:20:42 +00002276
2277 status = be_cmd_if_create(adapter, cap_flags, en_flags,
2278 netdev->dev_addr, false/* pmac_invalid */,
Sarveshwar Bandiba343c72010-03-31 02:56:12 +00002279 &adapter->if_handle, &adapter->pmac_id, 0);
Sathya Perla6b7c5b92009-03-11 23:32:03 -07002280 if (status != 0)
2281 goto do_none;
2282
Sarveshwar Bandiba343c72010-03-31 02:56:12 +00002283 if (be_physfn(adapter)) {
Ajit Khapardec99ac3e2011-02-11 13:35:02 +00002284 if (adapter->sriov_enabled) {
2285 while (vf < num_vfs) {
2286 cap_flags = en_flags = BE_IF_FLAGS_UNTAGGED |
2287 BE_IF_FLAGS_BROADCAST;
2288 status = be_cmd_if_create(adapter, cap_flags,
2289 en_flags, mac, true,
Ajit Khaparde64600ea2010-07-23 01:50:34 +00002290 &adapter->vf_cfg[vf].vf_if_handle,
Sarveshwar Bandiba343c72010-03-31 02:56:12 +00002291 NULL, vf+1);
Ajit Khapardec99ac3e2011-02-11 13:35:02 +00002292 if (status) {
2293 dev_err(&adapter->pdev->dev,
2294 "Interface Create failed for VF %d\n",
2295 vf);
2296 goto if_destroy;
2297 }
2298 adapter->vf_cfg[vf].vf_pmac_id =
2299 BE_INVALID_PMAC_ID;
2300 vf++;
Sarveshwar Bandiba343c72010-03-31 02:56:12 +00002301 }
Sarveshwar Bandi84e5b9f2010-05-27 16:28:15 -07002302 }
Ajit Khapardec99ac3e2011-02-11 13:35:02 +00002303 } else {
Sarveshwar Bandiba343c72010-03-31 02:56:12 +00002304 status = be_cmd_mac_addr_query(adapter, mac,
2305 MAC_ADDRESS_TYPE_NETWORK, false, adapter->if_handle);
2306 if (!status) {
2307 memcpy(adapter->netdev->dev_addr, mac, ETH_ALEN);
2308 memcpy(adapter->netdev->perm_addr, mac, ETH_ALEN);
2309 }
2310 }
2311
Sathya Perla6b7c5b92009-03-11 23:32:03 -07002312 status = be_tx_queues_create(adapter);
2313 if (status != 0)
2314 goto if_destroy;
2315
2316 status = be_rx_queues_create(adapter);
2317 if (status != 0)
2318 goto tx_qs_destroy;
2319
Sathya Perla5fb379e2009-06-18 00:02:59 +00002320 status = be_mcc_queues_create(adapter);
2321 if (status != 0)
2322 goto rx_qs_destroy;
Sathya Perla6b7c5b92009-03-11 23:32:03 -07002323
Ajit Khaparde0dffc832009-11-29 17:57:46 +00002324 adapter->link_speed = -1;
2325
Sathya Perla6b7c5b92009-03-11 23:32:03 -07002326 return 0;
2327
Ajit Khaparde6d87f5c2010-08-25 00:32:33 +00002328 be_mcc_queues_destroy(adapter);
Sathya Perla5fb379e2009-06-18 00:02:59 +00002329rx_qs_destroy:
2330 be_rx_queues_destroy(adapter);
Sathya Perla6b7c5b92009-03-11 23:32:03 -07002331tx_qs_destroy:
2332 be_tx_queues_destroy(adapter);
2333if_destroy:
Ajit Khapardec99ac3e2011-02-11 13:35:02 +00002334 if (be_physfn(adapter) && adapter->sriov_enabled)
2335 for (vf = 0; vf < num_vfs; vf++)
2336 if (adapter->vf_cfg[vf].vf_if_handle)
2337 be_cmd_if_destroy(adapter,
Ajit Khaparde658681f2011-02-11 13:34:46 +00002338 adapter->vf_cfg[vf].vf_if_handle,
2339 vf + 1);
2340 be_cmd_if_destroy(adapter, adapter->if_handle, 0);
Sathya Perla6b7c5b92009-03-11 23:32:03 -07002341do_none:
2342 return status;
2343}
2344
Sathya Perla5fb379e2009-06-18 00:02:59 +00002345static int be_clear(struct be_adapter *adapter)
2346{
Ajit Khaparde7ab8b0b2011-02-11 13:35:56 +00002347 int vf;
2348
Ajit Khapardec99ac3e2011-02-11 13:35:02 +00002349 if (be_physfn(adapter) && adapter->sriov_enabled)
Ajit Khaparde6d87f5c2010-08-25 00:32:33 +00002350 be_vf_eth_addr_rem(adapter);
2351
Sathya Perla1a8887d2009-08-17 00:58:41 +00002352 be_mcc_queues_destroy(adapter);
Sathya Perla5fb379e2009-06-18 00:02:59 +00002353 be_rx_queues_destroy(adapter);
2354 be_tx_queues_destroy(adapter);
Padmanabh Ratnakar1f5db832011-04-03 01:54:39 +00002355 adapter->eq_next_idx = 0;
Sathya Perla5fb379e2009-06-18 00:02:59 +00002356
Ajit Khaparde7ab8b0b2011-02-11 13:35:56 +00002357 if (be_physfn(adapter) && adapter->sriov_enabled)
2358 for (vf = 0; vf < num_vfs; vf++)
2359 if (adapter->vf_cfg[vf].vf_if_handle)
2360 be_cmd_if_destroy(adapter,
2361 adapter->vf_cfg[vf].vf_if_handle,
2362 vf + 1);
2363
Ajit Khaparde658681f2011-02-11 13:34:46 +00002364 be_cmd_if_destroy(adapter, adapter->if_handle, 0);
Sathya Perla5fb379e2009-06-18 00:02:59 +00002365
Sathya Perla2243e2e2009-11-22 22:02:03 +00002366 /* tell fw we're done with firing cmds */
2367 be_cmd_fw_clean(adapter);
Sathya Perla5fb379e2009-06-18 00:02:59 +00002368 return 0;
2369}
2370
Sathya Perla6b7c5b92009-03-11 23:32:03 -07002371
Ajit Khaparde84517482009-09-04 03:12:16 +00002372#define FW_FILE_HDR_SIGN "ServerEngines Corp. "
Sarveshwar Bandifa9a6fe2009-11-20 14:23:47 -08002373static bool be_flash_redboot(struct be_adapter *adapter,
Ajit Khaparde3f0d4562010-02-09 01:30:35 +00002374 const u8 *p, u32 img_start, int image_size,
2375 int hdr_size)
Sarveshwar Bandifa9a6fe2009-11-20 14:23:47 -08002376{
2377 u32 crc_offset;
2378 u8 flashed_crc[4];
2379 int status;
Ajit Khaparde3f0d4562010-02-09 01:30:35 +00002380
2381 crc_offset = hdr_size + img_start + image_size - 4;
2382
Sarveshwar Bandifa9a6fe2009-11-20 14:23:47 -08002383 p += crc_offset;
Ajit Khaparde3f0d4562010-02-09 01:30:35 +00002384
2385 status = be_cmd_get_flash_crc(adapter, flashed_crc,
Ajit Khapardef510fc62010-03-31 01:47:45 +00002386 (image_size - 4));
Sarveshwar Bandifa9a6fe2009-11-20 14:23:47 -08002387 if (status) {
2388 dev_err(&adapter->pdev->dev,
2389 "could not get crc from flash, not flashing redboot\n");
2390 return false;
2391 }
2392
2393 /*update redboot only if crc does not match*/
2394 if (!memcmp(flashed_crc, p, 4))
2395 return false;
2396 else
2397 return true;
Sarveshwar Bandifa9a6fe2009-11-20 14:23:47 -08002398}
2399
Ajit Khaparde3f0d4562010-02-09 01:30:35 +00002400static int be_flash_data(struct be_adapter *adapter,
Ajit Khaparde84517482009-09-04 03:12:16 +00002401 const struct firmware *fw,
Ajit Khaparde3f0d4562010-02-09 01:30:35 +00002402 struct be_dma_mem *flash_cmd, int num_of_images)
2403
Ajit Khaparde84517482009-09-04 03:12:16 +00002404{
Ajit Khaparde3f0d4562010-02-09 01:30:35 +00002405 int status = 0, i, filehdr_size = 0;
2406 u32 total_bytes = 0, flash_op;
Ajit Khaparde84517482009-09-04 03:12:16 +00002407 int num_bytes;
2408 const u8 *p = fw->data;
2409 struct be_cmd_write_flashrom *req = flash_cmd->va;
Joe Perches215faf92010-12-21 02:16:10 -08002410 const struct flash_comp *pflashcomp;
Sarveshwar Bandi9fe96932010-03-02 22:37:28 +00002411 int num_comp;
Ajit Khaparde84517482009-09-04 03:12:16 +00002412
Joe Perches215faf92010-12-21 02:16:10 -08002413 static const struct flash_comp gen3_flash_types[9] = {
Ajit Khaparde3f0d4562010-02-09 01:30:35 +00002414 { FLASH_iSCSI_PRIMARY_IMAGE_START_g3, IMG_TYPE_ISCSI_ACTIVE,
2415 FLASH_IMAGE_MAX_SIZE_g3},
2416 { FLASH_REDBOOT_START_g3, IMG_TYPE_REDBOOT,
2417 FLASH_REDBOOT_IMAGE_MAX_SIZE_g3},
2418 { FLASH_iSCSI_BIOS_START_g3, IMG_TYPE_BIOS,
2419 FLASH_BIOS_IMAGE_MAX_SIZE_g3},
2420 { FLASH_PXE_BIOS_START_g3, IMG_TYPE_PXE_BIOS,
2421 FLASH_BIOS_IMAGE_MAX_SIZE_g3},
2422 { FLASH_FCoE_BIOS_START_g3, IMG_TYPE_FCOE_BIOS,
2423 FLASH_BIOS_IMAGE_MAX_SIZE_g3},
2424 { FLASH_iSCSI_BACKUP_IMAGE_START_g3, IMG_TYPE_ISCSI_BACKUP,
2425 FLASH_IMAGE_MAX_SIZE_g3},
2426 { FLASH_FCoE_PRIMARY_IMAGE_START_g3, IMG_TYPE_FCOE_FW_ACTIVE,
2427 FLASH_IMAGE_MAX_SIZE_g3},
2428 { FLASH_FCoE_BACKUP_IMAGE_START_g3, IMG_TYPE_FCOE_FW_BACKUP,
Sarveshwar Bandi9fe96932010-03-02 22:37:28 +00002429 FLASH_IMAGE_MAX_SIZE_g3},
2430 { FLASH_NCSI_START_g3, IMG_TYPE_NCSI_FW,
2431 FLASH_NCSI_IMAGE_MAX_SIZE_g3}
Ajit Khaparde3f0d4562010-02-09 01:30:35 +00002432 };
Joe Perches215faf92010-12-21 02:16:10 -08002433 static const struct flash_comp gen2_flash_types[8] = {
Ajit Khaparde3f0d4562010-02-09 01:30:35 +00002434 { FLASH_iSCSI_PRIMARY_IMAGE_START_g2, IMG_TYPE_ISCSI_ACTIVE,
2435 FLASH_IMAGE_MAX_SIZE_g2},
2436 { FLASH_REDBOOT_START_g2, IMG_TYPE_REDBOOT,
2437 FLASH_REDBOOT_IMAGE_MAX_SIZE_g2},
2438 { FLASH_iSCSI_BIOS_START_g2, IMG_TYPE_BIOS,
2439 FLASH_BIOS_IMAGE_MAX_SIZE_g2},
2440 { FLASH_PXE_BIOS_START_g2, IMG_TYPE_PXE_BIOS,
2441 FLASH_BIOS_IMAGE_MAX_SIZE_g2},
2442 { FLASH_FCoE_BIOS_START_g2, IMG_TYPE_FCOE_BIOS,
2443 FLASH_BIOS_IMAGE_MAX_SIZE_g2},
2444 { FLASH_iSCSI_BACKUP_IMAGE_START_g2, IMG_TYPE_ISCSI_BACKUP,
2445 FLASH_IMAGE_MAX_SIZE_g2},
2446 { FLASH_FCoE_PRIMARY_IMAGE_START_g2, IMG_TYPE_FCOE_FW_ACTIVE,
2447 FLASH_IMAGE_MAX_SIZE_g2},
2448 { FLASH_FCoE_BACKUP_IMAGE_START_g2, IMG_TYPE_FCOE_FW_BACKUP,
2449 FLASH_IMAGE_MAX_SIZE_g2}
2450 };
2451
2452 if (adapter->generation == BE_GEN3) {
2453 pflashcomp = gen3_flash_types;
2454 filehdr_size = sizeof(struct flash_file_hdr_g3);
Joe Perches215faf92010-12-21 02:16:10 -08002455 num_comp = ARRAY_SIZE(gen3_flash_types);
Ajit Khaparde3f0d4562010-02-09 01:30:35 +00002456 } else {
2457 pflashcomp = gen2_flash_types;
2458 filehdr_size = sizeof(struct flash_file_hdr_g2);
Joe Perches215faf92010-12-21 02:16:10 -08002459 num_comp = ARRAY_SIZE(gen2_flash_types);
Ajit Khaparde84517482009-09-04 03:12:16 +00002460 }
Sarveshwar Bandi9fe96932010-03-02 22:37:28 +00002461 for (i = 0; i < num_comp; i++) {
2462 if ((pflashcomp[i].optype == IMG_TYPE_NCSI_FW) &&
2463 memcmp(adapter->fw_ver, "3.102.148.0", 11) < 0)
2464 continue;
Ajit Khaparde3f0d4562010-02-09 01:30:35 +00002465 if ((pflashcomp[i].optype == IMG_TYPE_REDBOOT) &&
2466 (!be_flash_redboot(adapter, fw->data,
Ajit Khapardefae21a42011-02-11 13:37:42 +00002467 pflashcomp[i].offset, pflashcomp[i].size, filehdr_size +
2468 (num_of_images * sizeof(struct image_hdr)))))
Ajit Khaparde3f0d4562010-02-09 01:30:35 +00002469 continue;
2470 p = fw->data;
2471 p += filehdr_size + pflashcomp[i].offset
2472 + (num_of_images * sizeof(struct image_hdr));
2473 if (p + pflashcomp[i].size > fw->data + fw->size)
Ajit Khaparde84517482009-09-04 03:12:16 +00002474 return -1;
Ajit Khaparde3f0d4562010-02-09 01:30:35 +00002475 total_bytes = pflashcomp[i].size;
2476 while (total_bytes) {
2477 if (total_bytes > 32*1024)
2478 num_bytes = 32*1024;
2479 else
2480 num_bytes = total_bytes;
2481 total_bytes -= num_bytes;
Ajit Khaparde84517482009-09-04 03:12:16 +00002482
Ajit Khaparde3f0d4562010-02-09 01:30:35 +00002483 if (!total_bytes)
2484 flash_op = FLASHROM_OPER_FLASH;
2485 else
2486 flash_op = FLASHROM_OPER_SAVE;
2487 memcpy(req->params.data_buf, p, num_bytes);
2488 p += num_bytes;
2489 status = be_cmd_write_flashrom(adapter, flash_cmd,
2490 pflashcomp[i].optype, flash_op, num_bytes);
2491 if (status) {
2492 dev_err(&adapter->pdev->dev,
2493 "cmd to write to flash rom failed.\n");
2494 return -1;
2495 }
2496 yield();
Ajit Khaparde84517482009-09-04 03:12:16 +00002497 }
Ajit Khaparde84517482009-09-04 03:12:16 +00002498 }
Ajit Khaparde84517482009-09-04 03:12:16 +00002499 return 0;
2500}
2501
Ajit Khaparde3f0d4562010-02-09 01:30:35 +00002502static int get_ufigen_type(struct flash_file_hdr_g2 *fhdr)
2503{
2504 if (fhdr == NULL)
2505 return 0;
2506 if (fhdr->build[0] == '3')
2507 return BE_GEN3;
2508 else if (fhdr->build[0] == '2')
2509 return BE_GEN2;
2510 else
2511 return 0;
2512}
2513
Ajit Khaparde84517482009-09-04 03:12:16 +00002514int be_load_fw(struct be_adapter *adapter, u8 *func)
2515{
2516 char fw_file[ETHTOOL_FLASH_MAX_FILENAME];
2517 const struct firmware *fw;
Ajit Khaparde3f0d4562010-02-09 01:30:35 +00002518 struct flash_file_hdr_g2 *fhdr;
2519 struct flash_file_hdr_g3 *fhdr3;
2520 struct image_hdr *img_hdr_ptr = NULL;
Ajit Khaparde84517482009-09-04 03:12:16 +00002521 struct be_dma_mem flash_cmd;
Ajit Khaparde8b93b712010-03-31 01:57:10 +00002522 int status, i = 0, num_imgs = 0;
Ajit Khaparde84517482009-09-04 03:12:16 +00002523 const u8 *p;
Ajit Khaparde84517482009-09-04 03:12:16 +00002524
Sarveshwar Bandid9efd2a2010-11-18 23:44:45 +00002525 if (!netif_running(adapter->netdev)) {
2526 dev_err(&adapter->pdev->dev,
2527 "Firmware load not allowed (interface is down)\n");
2528 return -EPERM;
2529 }
2530
Ajit Khaparde84517482009-09-04 03:12:16 +00002531 strcpy(fw_file, func);
2532
2533 status = request_firmware(&fw, fw_file, &adapter->pdev->dev);
2534 if (status)
2535 goto fw_exit;
2536
2537 p = fw->data;
Ajit Khaparde3f0d4562010-02-09 01:30:35 +00002538 fhdr = (struct flash_file_hdr_g2 *) p;
Ajit Khaparde84517482009-09-04 03:12:16 +00002539 dev_info(&adapter->pdev->dev, "Flashing firmware file %s\n", fw_file);
2540
Ajit Khaparde84517482009-09-04 03:12:16 +00002541 flash_cmd.size = sizeof(struct be_cmd_write_flashrom) + 32*1024;
Ivan Vecera2b7bceb2011-02-02 08:05:12 +00002542 flash_cmd.va = dma_alloc_coherent(&adapter->pdev->dev, flash_cmd.size,
2543 &flash_cmd.dma, GFP_KERNEL);
Ajit Khaparde84517482009-09-04 03:12:16 +00002544 if (!flash_cmd.va) {
2545 status = -ENOMEM;
2546 dev_err(&adapter->pdev->dev,
2547 "Memory allocation failure while flashing\n");
2548 goto fw_exit;
2549 }
2550
Ajit Khaparde3f0d4562010-02-09 01:30:35 +00002551 if ((adapter->generation == BE_GEN3) &&
2552 (get_ufigen_type(fhdr) == BE_GEN3)) {
2553 fhdr3 = (struct flash_file_hdr_g3 *) fw->data;
Ajit Khaparde8b93b712010-03-31 01:57:10 +00002554 num_imgs = le32_to_cpu(fhdr3->num_imgs);
2555 for (i = 0; i < num_imgs; i++) {
Ajit Khaparde3f0d4562010-02-09 01:30:35 +00002556 img_hdr_ptr = (struct image_hdr *) (fw->data +
2557 (sizeof(struct flash_file_hdr_g3) +
Ajit Khaparde8b93b712010-03-31 01:57:10 +00002558 i * sizeof(struct image_hdr)));
2559 if (le32_to_cpu(img_hdr_ptr->imageid) == 1)
2560 status = be_flash_data(adapter, fw, &flash_cmd,
2561 num_imgs);
Ajit Khaparde3f0d4562010-02-09 01:30:35 +00002562 }
2563 } else if ((adapter->generation == BE_GEN2) &&
2564 (get_ufigen_type(fhdr) == BE_GEN2)) {
2565 status = be_flash_data(adapter, fw, &flash_cmd, 0);
2566 } else {
2567 dev_err(&adapter->pdev->dev,
2568 "UFI and Interface are not compatible for flashing\n");
2569 status = -1;
Ajit Khaparde84517482009-09-04 03:12:16 +00002570 }
2571
Ivan Vecera2b7bceb2011-02-02 08:05:12 +00002572 dma_free_coherent(&adapter->pdev->dev, flash_cmd.size, flash_cmd.va,
2573 flash_cmd.dma);
Ajit Khaparde84517482009-09-04 03:12:16 +00002574 if (status) {
2575 dev_err(&adapter->pdev->dev, "Firmware load error\n");
2576 goto fw_exit;
2577 }
2578
André Goddard Rosaaf901ca2009-11-14 13:09:05 -02002579 dev_info(&adapter->pdev->dev, "Firmware flashed successfully\n");
Ajit Khaparde84517482009-09-04 03:12:16 +00002580
2581fw_exit:
2582 release_firmware(fw);
2583 return status;
2584}
2585
Sathya Perla6b7c5b92009-03-11 23:32:03 -07002586static struct net_device_ops be_netdev_ops = {
2587 .ndo_open = be_open,
2588 .ndo_stop = be_close,
2589 .ndo_start_xmit = be_xmit,
Sathya Perla6b7c5b92009-03-11 23:32:03 -07002590 .ndo_set_rx_mode = be_set_multicast_list,
2591 .ndo_set_mac_address = be_mac_addr_set,
2592 .ndo_change_mtu = be_change_mtu,
2593 .ndo_validate_addr = eth_validate_addr,
2594 .ndo_vlan_rx_register = be_vlan_register,
2595 .ndo_vlan_rx_add_vid = be_vlan_add_vid,
2596 .ndo_vlan_rx_kill_vid = be_vlan_rem_vid,
Ajit Khaparde64600ea2010-07-23 01:50:34 +00002597 .ndo_set_vf_mac = be_set_vf_mac,
Ajit Khaparde1da87b72010-07-23 01:51:22 +00002598 .ndo_set_vf_vlan = be_set_vf_vlan,
Ajit Khapardee1d18732010-07-23 01:52:13 +00002599 .ndo_set_vf_tx_rate = be_set_vf_tx_rate,
Ajit Khaparde64600ea2010-07-23 01:50:34 +00002600 .ndo_get_vf_config = be_get_vf_config
Sathya Perla6b7c5b92009-03-11 23:32:03 -07002601};
2602
2603static void be_netdev_init(struct net_device *netdev)
2604{
2605 struct be_adapter *adapter = netdev_priv(netdev);
Sathya Perla3abcded2010-10-03 22:12:27 -07002606 struct be_rx_obj *rxo;
2607 int i;
Sathya Perla6b7c5b92009-03-11 23:32:03 -07002608
2609 netdev->features |= NETIF_F_SG | NETIF_F_HW_VLAN_RX | NETIF_F_TSO |
Michał Mirosław79032642010-11-30 06:38:00 +00002610 NETIF_F_HW_VLAN_TX | NETIF_F_HW_VLAN_FILTER |
2611 NETIF_F_IP_CSUM | NETIF_F_IPV6_CSUM |
Ajit Khaparde49e4b842010-06-14 04:56:07 +00002612 NETIF_F_GRO | NETIF_F_TSO6;
Sathya Perla6b7c5b92009-03-11 23:32:03 -07002613
Michał Mirosław79032642010-11-30 06:38:00 +00002614 netdev->vlan_features |= NETIF_F_SG | NETIF_F_TSO |
2615 NETIF_F_IP_CSUM | NETIF_F_IPV6_CSUM;
Ajit Khaparde51c59872009-11-29 17:54:54 +00002616
Sathya Perlafe6d2a32010-11-21 23:25:50 +00002617 if (lancer_chip(adapter))
2618 netdev->vlan_features |= NETIF_F_TSO6;
2619
Sathya Perla6b7c5b92009-03-11 23:32:03 -07002620 netdev->flags |= IFF_MULTICAST;
2621
Ajit Khaparde728a9972009-04-13 15:41:22 -07002622 adapter->rx_csum = true;
2623
Ajit Khaparde9e90c962009-11-06 02:06:59 +00002624 /* Default settings for Rx and Tx flow control */
2625 adapter->rx_fc = true;
2626 adapter->tx_fc = true;
2627
Ajit Khapardec190e3c2009-09-04 03:12:29 +00002628 netif_set_gso_max_size(netdev, 65535);
2629
Sathya Perla6b7c5b92009-03-11 23:32:03 -07002630 BE_SET_NETDEV_OPS(netdev, &be_netdev_ops);
2631
2632 SET_ETHTOOL_OPS(netdev, &be_ethtool_ops);
2633
Sathya Perla3abcded2010-10-03 22:12:27 -07002634 for_all_rx_queues(adapter, rxo, i)
2635 netif_napi_add(netdev, &rxo->rx_eq.napi, be_poll_rx,
2636 BE_NAPI_WEIGHT);
2637
Sathya Perla5fb379e2009-06-18 00:02:59 +00002638 netif_napi_add(netdev, &adapter->tx_eq.napi, be_poll_tx_mcc,
Sathya Perla6b7c5b92009-03-11 23:32:03 -07002639 BE_NAPI_WEIGHT);
Sathya Perla6b7c5b92009-03-11 23:32:03 -07002640}
2641
2642static void be_unmap_pci_bars(struct be_adapter *adapter)
2643{
Sathya Perla8788fdc2009-07-27 22:52:03 +00002644 if (adapter->csr)
2645 iounmap(adapter->csr);
2646 if (adapter->db)
2647 iounmap(adapter->db);
Sarveshwar Bandiba343c72010-03-31 02:56:12 +00002648 if (adapter->pcicfg && be_physfn(adapter))
Sathya Perla8788fdc2009-07-27 22:52:03 +00002649 iounmap(adapter->pcicfg);
Sathya Perla6b7c5b92009-03-11 23:32:03 -07002650}
2651
2652static int be_map_pci_bars(struct be_adapter *adapter)
2653{
2654 u8 __iomem *addr;
Sarveshwar Bandiba343c72010-03-31 02:56:12 +00002655 int pcicfg_reg, db_reg;
Sathya Perla6b7c5b92009-03-11 23:32:03 -07002656
Sathya Perlafe6d2a32010-11-21 23:25:50 +00002657 if (lancer_chip(adapter)) {
2658 addr = ioremap_nocache(pci_resource_start(adapter->pdev, 0),
2659 pci_resource_len(adapter->pdev, 0));
2660 if (addr == NULL)
2661 return -ENOMEM;
2662 adapter->db = addr;
2663 return 0;
2664 }
2665
Sarveshwar Bandiba343c72010-03-31 02:56:12 +00002666 if (be_physfn(adapter)) {
2667 addr = ioremap_nocache(pci_resource_start(adapter->pdev, 2),
2668 pci_resource_len(adapter->pdev, 2));
2669 if (addr == NULL)
2670 return -ENOMEM;
2671 adapter->csr = addr;
2672 }
Sathya Perla6b7c5b92009-03-11 23:32:03 -07002673
Sarveshwar Bandiba343c72010-03-31 02:56:12 +00002674 if (adapter->generation == BE_GEN2) {
2675 pcicfg_reg = 1;
2676 db_reg = 4;
2677 } else {
2678 pcicfg_reg = 0;
2679 if (be_physfn(adapter))
2680 db_reg = 4;
2681 else
2682 db_reg = 0;
2683 }
2684 addr = ioremap_nocache(pci_resource_start(adapter->pdev, db_reg),
2685 pci_resource_len(adapter->pdev, db_reg));
Sathya Perla6b7c5b92009-03-11 23:32:03 -07002686 if (addr == NULL)
2687 goto pci_map_err;
Sathya Perla8788fdc2009-07-27 22:52:03 +00002688 adapter->db = addr;
Sathya Perla6b7c5b92009-03-11 23:32:03 -07002689
Sarveshwar Bandiba343c72010-03-31 02:56:12 +00002690 if (be_physfn(adapter)) {
2691 addr = ioremap_nocache(
2692 pci_resource_start(adapter->pdev, pcicfg_reg),
2693 pci_resource_len(adapter->pdev, pcicfg_reg));
2694 if (addr == NULL)
2695 goto pci_map_err;
2696 adapter->pcicfg = addr;
2697 } else
2698 adapter->pcicfg = adapter->db + SRIOV_VF_PCICFG_OFFSET;
Sathya Perla6b7c5b92009-03-11 23:32:03 -07002699
2700 return 0;
2701pci_map_err:
2702 be_unmap_pci_bars(adapter);
2703 return -ENOMEM;
2704}
2705
2706
2707static void be_ctrl_cleanup(struct be_adapter *adapter)
2708{
Sathya Perla8788fdc2009-07-27 22:52:03 +00002709 struct be_dma_mem *mem = &adapter->mbox_mem_alloced;
Sathya Perla6b7c5b92009-03-11 23:32:03 -07002710
2711 be_unmap_pci_bars(adapter);
2712
2713 if (mem->va)
Ivan Vecera2b7bceb2011-02-02 08:05:12 +00002714 dma_free_coherent(&adapter->pdev->dev, mem->size, mem->va,
2715 mem->dma);
Sathya Perlae7b909a2009-11-22 22:01:10 +00002716
2717 mem = &adapter->mc_cmd_mem;
2718 if (mem->va)
Ivan Vecera2b7bceb2011-02-02 08:05:12 +00002719 dma_free_coherent(&adapter->pdev->dev, mem->size, mem->va,
2720 mem->dma);
Sathya Perla6b7c5b92009-03-11 23:32:03 -07002721}
2722
Sathya Perla6b7c5b92009-03-11 23:32:03 -07002723static int be_ctrl_init(struct be_adapter *adapter)
2724{
Sathya Perla8788fdc2009-07-27 22:52:03 +00002725 struct be_dma_mem *mbox_mem_alloc = &adapter->mbox_mem_alloced;
2726 struct be_dma_mem *mbox_mem_align = &adapter->mbox_mem;
Sathya Perlae7b909a2009-11-22 22:01:10 +00002727 struct be_dma_mem *mc_cmd_mem = &adapter->mc_cmd_mem;
Sathya Perla6b7c5b92009-03-11 23:32:03 -07002728 int status;
Sathya Perla6b7c5b92009-03-11 23:32:03 -07002729
2730 status = be_map_pci_bars(adapter);
2731 if (status)
Sathya Perlae7b909a2009-11-22 22:01:10 +00002732 goto done;
Sathya Perla6b7c5b92009-03-11 23:32:03 -07002733
2734 mbox_mem_alloc->size = sizeof(struct be_mcc_mailbox) + 16;
Ivan Vecera2b7bceb2011-02-02 08:05:12 +00002735 mbox_mem_alloc->va = dma_alloc_coherent(&adapter->pdev->dev,
2736 mbox_mem_alloc->size,
2737 &mbox_mem_alloc->dma,
2738 GFP_KERNEL);
Sathya Perla6b7c5b92009-03-11 23:32:03 -07002739 if (!mbox_mem_alloc->va) {
Sathya Perlae7b909a2009-11-22 22:01:10 +00002740 status = -ENOMEM;
2741 goto unmap_pci_bars;
Sathya Perla6b7c5b92009-03-11 23:32:03 -07002742 }
Sathya Perlae7b909a2009-11-22 22:01:10 +00002743
Sathya Perla6b7c5b92009-03-11 23:32:03 -07002744 mbox_mem_align->size = sizeof(struct be_mcc_mailbox);
2745 mbox_mem_align->va = PTR_ALIGN(mbox_mem_alloc->va, 16);
2746 mbox_mem_align->dma = PTR_ALIGN(mbox_mem_alloc->dma, 16);
2747 memset(mbox_mem_align->va, 0, sizeof(struct be_mcc_mailbox));
Sathya Perlae7b909a2009-11-22 22:01:10 +00002748
2749 mc_cmd_mem->size = sizeof(struct be_cmd_req_mcast_mac_config);
Ivan Vecera2b7bceb2011-02-02 08:05:12 +00002750 mc_cmd_mem->va = dma_alloc_coherent(&adapter->pdev->dev,
2751 mc_cmd_mem->size, &mc_cmd_mem->dma,
2752 GFP_KERNEL);
Sathya Perlae7b909a2009-11-22 22:01:10 +00002753 if (mc_cmd_mem->va == NULL) {
2754 status = -ENOMEM;
2755 goto free_mbox;
2756 }
2757 memset(mc_cmd_mem->va, 0, mc_cmd_mem->size);
2758
Ivan Vecera29849612010-12-14 05:43:19 +00002759 mutex_init(&adapter->mbox_lock);
Sathya Perla8788fdc2009-07-27 22:52:03 +00002760 spin_lock_init(&adapter->mcc_lock);
2761 spin_lock_init(&adapter->mcc_cq_lock);
Sathya Perla6b7c5b92009-03-11 23:32:03 -07002762
Sarveshwar Bandidd131e72010-05-25 16:16:32 -07002763 init_completion(&adapter->flash_compl);
Sathya Perlacf588472010-02-14 21:22:01 +00002764 pci_save_state(adapter->pdev);
Sathya Perla6b7c5b92009-03-11 23:32:03 -07002765 return 0;
Sathya Perlae7b909a2009-11-22 22:01:10 +00002766
2767free_mbox:
Ivan Vecera2b7bceb2011-02-02 08:05:12 +00002768 dma_free_coherent(&adapter->pdev->dev, mbox_mem_alloc->size,
2769 mbox_mem_alloc->va, mbox_mem_alloc->dma);
Sathya Perlae7b909a2009-11-22 22:01:10 +00002770
2771unmap_pci_bars:
2772 be_unmap_pci_bars(adapter);
2773
2774done:
2775 return status;
Sathya Perla6b7c5b92009-03-11 23:32:03 -07002776}
2777
2778static void be_stats_cleanup(struct be_adapter *adapter)
2779{
Sathya Perla3abcded2010-10-03 22:12:27 -07002780 struct be_dma_mem *cmd = &adapter->stats_cmd;
Sathya Perla6b7c5b92009-03-11 23:32:03 -07002781
2782 if (cmd->va)
Ivan Vecera2b7bceb2011-02-02 08:05:12 +00002783 dma_free_coherent(&adapter->pdev->dev, cmd->size,
2784 cmd->va, cmd->dma);
Sathya Perla6b7c5b92009-03-11 23:32:03 -07002785}
2786
2787static int be_stats_init(struct be_adapter *adapter)
2788{
Sathya Perla3abcded2010-10-03 22:12:27 -07002789 struct be_dma_mem *cmd = &adapter->stats_cmd;
Sathya Perla6b7c5b92009-03-11 23:32:03 -07002790
2791 cmd->size = sizeof(struct be_cmd_req_get_stats);
Ivan Vecera2b7bceb2011-02-02 08:05:12 +00002792 cmd->va = dma_alloc_coherent(&adapter->pdev->dev, cmd->size, &cmd->dma,
2793 GFP_KERNEL);
Sathya Perla6b7c5b92009-03-11 23:32:03 -07002794 if (cmd->va == NULL)
2795 return -1;
David S. Millerd291b9a2010-01-28 21:36:21 -08002796 memset(cmd->va, 0, cmd->size);
Sathya Perla6b7c5b92009-03-11 23:32:03 -07002797 return 0;
2798}
2799
2800static void __devexit be_remove(struct pci_dev *pdev)
2801{
2802 struct be_adapter *adapter = pci_get_drvdata(pdev);
Sathya Perla8d56ff12009-11-22 22:02:26 +00002803
Sathya Perla6b7c5b92009-03-11 23:32:03 -07002804 if (!adapter)
2805 return;
2806
Somnath Koturf203af72010-10-25 23:01:03 +00002807 cancel_delayed_work_sync(&adapter->work);
2808
Sathya Perla6b7c5b92009-03-11 23:32:03 -07002809 unregister_netdev(adapter->netdev);
2810
Sathya Perla5fb379e2009-06-18 00:02:59 +00002811 be_clear(adapter);
2812
Sathya Perla6b7c5b92009-03-11 23:32:03 -07002813 be_stats_cleanup(adapter);
2814
2815 be_ctrl_cleanup(adapter);
2816
Sarveshwar Bandiba343c72010-03-31 02:56:12 +00002817 be_sriov_disable(adapter);
2818
Sathya Perla8d56ff12009-11-22 22:02:26 +00002819 be_msix_disable(adapter);
Sathya Perla6b7c5b92009-03-11 23:32:03 -07002820
2821 pci_set_drvdata(pdev, NULL);
2822 pci_release_regions(pdev);
2823 pci_disable_device(pdev);
2824
2825 free_netdev(adapter->netdev);
2826}
2827
Sathya Perla2243e2e2009-11-22 22:02:03 +00002828static int be_get_config(struct be_adapter *adapter)
Sathya Perla6b7c5b92009-03-11 23:32:03 -07002829{
Sathya Perla6b7c5b92009-03-11 23:32:03 -07002830 int status;
Sathya Perla2243e2e2009-11-22 22:02:03 +00002831 u8 mac[ETH_ALEN];
Sathya Perla43a04fdc2009-10-14 20:21:17 +00002832
Sathya Perla8788fdc2009-07-27 22:52:03 +00002833 status = be_cmd_get_fw_ver(adapter, adapter->fw_ver);
Sathya Perla6b7c5b92009-03-11 23:32:03 -07002834 if (status)
2835 return status;
2836
Sathya Perla3abcded2010-10-03 22:12:27 -07002837 status = be_cmd_query_fw_cfg(adapter, &adapter->port_num,
2838 &adapter->function_mode, &adapter->function_caps);
Sathya Perla2243e2e2009-11-22 22:02:03 +00002839 if (status)
2840 return status;
2841
2842 memset(mac, 0, ETH_ALEN);
Sarveshwar Bandiba343c72010-03-31 02:56:12 +00002843
2844 if (be_physfn(adapter)) {
2845 status = be_cmd_mac_addr_query(adapter, mac,
Sathya Perla2243e2e2009-11-22 22:02:03 +00002846 MAC_ADDRESS_TYPE_NETWORK, true /*permanent */, 0);
Ajit Khapardeca9e4982009-11-29 17:56:26 +00002847
Sarveshwar Bandiba343c72010-03-31 02:56:12 +00002848 if (status)
2849 return status;
Ajit Khapardeca9e4982009-11-29 17:56:26 +00002850
Sarveshwar Bandiba343c72010-03-31 02:56:12 +00002851 if (!is_valid_ether_addr(mac))
2852 return -EADDRNOTAVAIL;
2853
2854 memcpy(adapter->netdev->dev_addr, mac, ETH_ALEN);
2855 memcpy(adapter->netdev->perm_addr, mac, ETH_ALEN);
2856 }
Sathya Perla2243e2e2009-11-22 22:02:03 +00002857
Ajit Khaparde3486be22010-07-23 02:04:54 +00002858 if (adapter->function_mode & 0x400)
Ajit Khaparde82903e42010-02-09 01:34:57 +00002859 adapter->max_vlans = BE_NUM_VLANS_SUPPORTED/4;
2860 else
2861 adapter->max_vlans = BE_NUM_VLANS_SUPPORTED;
2862
Ajit Khaparde9e1453c2011-02-20 11:42:22 +00002863 status = be_cmd_get_cntl_attributes(adapter);
2864 if (status)
2865 return status;
2866
Sathya Perla2e588f82011-03-11 02:49:26 +00002867 be_cmd_check_native_mode(adapter);
Sathya Perla2243e2e2009-11-22 22:02:03 +00002868 return 0;
Sathya Perla6b7c5b92009-03-11 23:32:03 -07002869}
2870
Sathya Perlafe6d2a32010-11-21 23:25:50 +00002871static int be_dev_family_check(struct be_adapter *adapter)
2872{
2873 struct pci_dev *pdev = adapter->pdev;
2874 u32 sli_intf = 0, if_type;
2875
2876 switch (pdev->device) {
2877 case BE_DEVICE_ID1:
2878 case OC_DEVICE_ID1:
2879 adapter->generation = BE_GEN2;
2880 break;
2881 case BE_DEVICE_ID2:
2882 case OC_DEVICE_ID2:
2883 adapter->generation = BE_GEN3;
2884 break;
2885 case OC_DEVICE_ID3:
2886 pci_read_config_dword(pdev, SLI_INTF_REG_OFFSET, &sli_intf);
2887 if_type = (sli_intf & SLI_INTF_IF_TYPE_MASK) >>
2888 SLI_INTF_IF_TYPE_SHIFT;
2889
2890 if (((sli_intf & SLI_INTF_VALID_MASK) != SLI_INTF_VALID) ||
2891 if_type != 0x02) {
2892 dev_err(&pdev->dev, "SLI_INTF reg val is not valid\n");
2893 return -EINVAL;
2894 }
2895 if (num_vfs > 0) {
2896 dev_err(&pdev->dev, "VFs not supported\n");
2897 return -EINVAL;
2898 }
2899 adapter->sli_family = ((sli_intf & SLI_INTF_FAMILY_MASK) >>
2900 SLI_INTF_FAMILY_SHIFT);
2901 adapter->generation = BE_GEN3;
2902 break;
2903 default:
2904 adapter->generation = 0;
2905 }
2906 return 0;
2907}
2908
Padmanabh Ratnakar37eed1c2011-03-07 03:08:36 +00002909static int lancer_wait_ready(struct be_adapter *adapter)
2910{
2911#define SLIPORT_READY_TIMEOUT 500
2912 u32 sliport_status;
2913 int status = 0, i;
2914
2915 for (i = 0; i < SLIPORT_READY_TIMEOUT; i++) {
2916 sliport_status = ioread32(adapter->db + SLIPORT_STATUS_OFFSET);
2917 if (sliport_status & SLIPORT_STATUS_RDY_MASK)
2918 break;
2919
2920 msleep(20);
2921 }
2922
2923 if (i == SLIPORT_READY_TIMEOUT)
2924 status = -1;
2925
2926 return status;
2927}
2928
2929static int lancer_test_and_set_rdy_state(struct be_adapter *adapter)
2930{
2931 int status;
2932 u32 sliport_status, err, reset_needed;
2933 status = lancer_wait_ready(adapter);
2934 if (!status) {
2935 sliport_status = ioread32(adapter->db + SLIPORT_STATUS_OFFSET);
2936 err = sliport_status & SLIPORT_STATUS_ERR_MASK;
2937 reset_needed = sliport_status & SLIPORT_STATUS_RN_MASK;
2938 if (err && reset_needed) {
2939 iowrite32(SLI_PORT_CONTROL_IP_MASK,
2940 adapter->db + SLIPORT_CONTROL_OFFSET);
2941
2942 /* check adapter has corrected the error */
2943 status = lancer_wait_ready(adapter);
2944 sliport_status = ioread32(adapter->db +
2945 SLIPORT_STATUS_OFFSET);
2946 sliport_status &= (SLIPORT_STATUS_ERR_MASK |
2947 SLIPORT_STATUS_RN_MASK);
2948 if (status || sliport_status)
2949 status = -1;
2950 } else if (err || reset_needed) {
2951 status = -1;
2952 }
2953 }
2954 return status;
2955}
2956
Sathya Perla6b7c5b92009-03-11 23:32:03 -07002957static int __devinit be_probe(struct pci_dev *pdev,
2958 const struct pci_device_id *pdev_id)
2959{
2960 int status = 0;
2961 struct be_adapter *adapter;
2962 struct net_device *netdev;
Sathya Perla6b7c5b92009-03-11 23:32:03 -07002963
2964 status = pci_enable_device(pdev);
2965 if (status)
2966 goto do_none;
2967
2968 status = pci_request_regions(pdev, DRV_NAME);
2969 if (status)
2970 goto disable_dev;
2971 pci_set_master(pdev);
2972
2973 netdev = alloc_etherdev(sizeof(struct be_adapter));
2974 if (netdev == NULL) {
2975 status = -ENOMEM;
2976 goto rel_reg;
2977 }
2978 adapter = netdev_priv(netdev);
2979 adapter->pdev = pdev;
2980 pci_set_drvdata(pdev, adapter);
Sathya Perlafe6d2a32010-11-21 23:25:50 +00002981
2982 status = be_dev_family_check(adapter);
Sathya Perla63657b92010-12-01 01:02:28 +00002983 if (status)
Sathya Perlafe6d2a32010-11-21 23:25:50 +00002984 goto free_netdev;
2985
Sathya Perla6b7c5b92009-03-11 23:32:03 -07002986 adapter->netdev = netdev;
Sathya Perla2243e2e2009-11-22 22:02:03 +00002987 SET_NETDEV_DEV(netdev, &pdev->dev);
Sathya Perla6b7c5b92009-03-11 23:32:03 -07002988
Ivan Vecera2b7bceb2011-02-02 08:05:12 +00002989 status = dma_set_mask(&pdev->dev, DMA_BIT_MASK(64));
Sathya Perla6b7c5b92009-03-11 23:32:03 -07002990 if (!status) {
2991 netdev->features |= NETIF_F_HIGHDMA;
2992 } else {
Ivan Vecera2b7bceb2011-02-02 08:05:12 +00002993 status = dma_set_mask(&pdev->dev, DMA_BIT_MASK(32));
Sathya Perla6b7c5b92009-03-11 23:32:03 -07002994 if (status) {
2995 dev_err(&pdev->dev, "Could not set PCI DMA Mask\n");
2996 goto free_netdev;
2997 }
2998 }
2999
Sarveshwar Bandiba343c72010-03-31 02:56:12 +00003000 be_sriov_enable(adapter);
3001
Sathya Perla6b7c5b92009-03-11 23:32:03 -07003002 status = be_ctrl_init(adapter);
3003 if (status)
3004 goto free_netdev;
3005
Padmanabh Ratnakar37eed1c2011-03-07 03:08:36 +00003006 if (lancer_chip(adapter)) {
3007 status = lancer_test_and_set_rdy_state(adapter);
3008 if (status) {
3009 dev_err(&pdev->dev, "Adapter in non recoverable error\n");
3010 goto free_netdev;
3011 }
3012 }
3013
Sathya Perla2243e2e2009-11-22 22:02:03 +00003014 /* sync up with fw's ready state */
Sarveshwar Bandiba343c72010-03-31 02:56:12 +00003015 if (be_physfn(adapter)) {
3016 status = be_cmd_POST(adapter);
3017 if (status)
3018 goto ctrl_clean;
Sarveshwar Bandiba343c72010-03-31 02:56:12 +00003019 }
Sathya Perla2243e2e2009-11-22 22:02:03 +00003020
3021 /* tell fw we're ready to fire cmds */
3022 status = be_cmd_fw_init(adapter);
3023 if (status)
3024 goto ctrl_clean;
3025
Ajit Khapardea4b4dfa2011-02-11 13:36:57 +00003026 status = be_cmd_reset_function(adapter);
3027 if (status)
3028 goto ctrl_clean;
Sarveshwar Bandi556ae192010-05-24 18:38:25 -07003029
Sathya Perla6b7c5b92009-03-11 23:32:03 -07003030 status = be_stats_init(adapter);
3031 if (status)
3032 goto ctrl_clean;
3033
Sathya Perla2243e2e2009-11-22 22:02:03 +00003034 status = be_get_config(adapter);
Sathya Perla6b7c5b92009-03-11 23:32:03 -07003035 if (status)
3036 goto stats_clean;
3037
Sathya Perla3abcded2010-10-03 22:12:27 -07003038 be_msix_enable(adapter);
3039
Sathya Perla6b7c5b92009-03-11 23:32:03 -07003040 INIT_DELAYED_WORK(&adapter->work, be_worker);
Sathya Perla6b7c5b92009-03-11 23:32:03 -07003041
Sathya Perla5fb379e2009-06-18 00:02:59 +00003042 status = be_setup(adapter);
3043 if (status)
Sathya Perla3abcded2010-10-03 22:12:27 -07003044 goto msix_disable;
Sathya Perla2243e2e2009-11-22 22:02:03 +00003045
Sathya Perla3abcded2010-10-03 22:12:27 -07003046 be_netdev_init(netdev);
Sathya Perla6b7c5b92009-03-11 23:32:03 -07003047 status = register_netdev(netdev);
3048 if (status != 0)
Sathya Perla5fb379e2009-06-18 00:02:59 +00003049 goto unsetup;
Somnath Kotur63a76942010-10-25 01:11:10 +00003050 netif_carrier_off(netdev);
Sathya Perla6b7c5b92009-03-11 23:32:03 -07003051
Ajit Khapardee6319362011-02-11 13:35:41 +00003052 if (be_physfn(adapter) && adapter->sriov_enabled) {
3053 status = be_vf_eth_addr_config(adapter);
3054 if (status)
3055 goto unreg_netdev;
3056 }
3057
Ajit Khapardec4ca2372009-05-18 15:38:55 -07003058 dev_info(&pdev->dev, "%s port %d\n", nic_name(pdev), adapter->port_num);
Somnath Koturf203af72010-10-25 23:01:03 +00003059 schedule_delayed_work(&adapter->work, msecs_to_jiffies(100));
Sathya Perla6b7c5b92009-03-11 23:32:03 -07003060 return 0;
3061
Ajit Khapardee6319362011-02-11 13:35:41 +00003062unreg_netdev:
3063 unregister_netdev(netdev);
Sathya Perla5fb379e2009-06-18 00:02:59 +00003064unsetup:
3065 be_clear(adapter);
Sathya Perla3abcded2010-10-03 22:12:27 -07003066msix_disable:
3067 be_msix_disable(adapter);
Sathya Perla6b7c5b92009-03-11 23:32:03 -07003068stats_clean:
3069 be_stats_cleanup(adapter);
3070ctrl_clean:
3071 be_ctrl_cleanup(adapter);
3072free_netdev:
Sarveshwar Bandiba343c72010-03-31 02:56:12 +00003073 be_sriov_disable(adapter);
Sathya Perlafe6d2a32010-11-21 23:25:50 +00003074 free_netdev(netdev);
Sathya Perla8d56ff12009-11-22 22:02:26 +00003075 pci_set_drvdata(pdev, NULL);
Sathya Perla6b7c5b92009-03-11 23:32:03 -07003076rel_reg:
3077 pci_release_regions(pdev);
3078disable_dev:
3079 pci_disable_device(pdev);
3080do_none:
Ajit Khapardec4ca2372009-05-18 15:38:55 -07003081 dev_err(&pdev->dev, "%s initialization failed\n", nic_name(pdev));
Sathya Perla6b7c5b92009-03-11 23:32:03 -07003082 return status;
3083}
3084
3085static int be_suspend(struct pci_dev *pdev, pm_message_t state)
3086{
3087 struct be_adapter *adapter = pci_get_drvdata(pdev);
3088 struct net_device *netdev = adapter->netdev;
3089
Ajit Khapardea4ca0552011-02-11 13:38:03 +00003090 cancel_delayed_work_sync(&adapter->work);
Ajit Khaparde71d8d1b2009-12-03 06:16:59 +00003091 if (adapter->wol)
3092 be_setup_wol(adapter, true);
3093
Sathya Perla6b7c5b92009-03-11 23:32:03 -07003094 netif_device_detach(netdev);
3095 if (netif_running(netdev)) {
3096 rtnl_lock();
3097 be_close(netdev);
3098 rtnl_unlock();
3099 }
Ajit Khaparde9e90c962009-11-06 02:06:59 +00003100 be_cmd_get_flow_control(adapter, &adapter->tx_fc, &adapter->rx_fc);
Sarveshwar Bandi9b0365f2009-08-12 21:01:29 +00003101 be_clear(adapter);
Sathya Perla6b7c5b92009-03-11 23:32:03 -07003102
Ajit Khapardea4ca0552011-02-11 13:38:03 +00003103 be_msix_disable(adapter);
Sathya Perla6b7c5b92009-03-11 23:32:03 -07003104 pci_save_state(pdev);
3105 pci_disable_device(pdev);
3106 pci_set_power_state(pdev, pci_choose_state(pdev, state));
3107 return 0;
3108}
3109
3110static int be_resume(struct pci_dev *pdev)
3111{
3112 int status = 0;
3113 struct be_adapter *adapter = pci_get_drvdata(pdev);
3114 struct net_device *netdev = adapter->netdev;
3115
3116 netif_device_detach(netdev);
3117
3118 status = pci_enable_device(pdev);
3119 if (status)
3120 return status;
3121
3122 pci_set_power_state(pdev, 0);
3123 pci_restore_state(pdev);
3124
Ajit Khapardea4ca0552011-02-11 13:38:03 +00003125 be_msix_enable(adapter);
Sathya Perla2243e2e2009-11-22 22:02:03 +00003126 /* tell fw we're ready to fire cmds */
3127 status = be_cmd_fw_init(adapter);
3128 if (status)
3129 return status;
3130
Sarveshwar Bandi9b0365f2009-08-12 21:01:29 +00003131 be_setup(adapter);
Sathya Perla6b7c5b92009-03-11 23:32:03 -07003132 if (netif_running(netdev)) {
3133 rtnl_lock();
Sathya Perla6b7c5b92009-03-11 23:32:03 -07003134 be_open(netdev);
3135 rtnl_unlock();
3136 }
3137 netif_device_attach(netdev);
Ajit Khaparde71d8d1b2009-12-03 06:16:59 +00003138
3139 if (adapter->wol)
3140 be_setup_wol(adapter, false);
Ajit Khapardea4ca0552011-02-11 13:38:03 +00003141
3142 schedule_delayed_work(&adapter->work, msecs_to_jiffies(100));
Sathya Perla6b7c5b92009-03-11 23:32:03 -07003143 return 0;
3144}
3145
Sathya Perla82456b02010-02-17 01:35:37 +00003146/*
3147 * An FLR will stop BE from DMAing any data.
3148 */
3149static void be_shutdown(struct pci_dev *pdev)
3150{
3151 struct be_adapter *adapter = pci_get_drvdata(pdev);
Sathya Perla82456b02010-02-17 01:35:37 +00003152
Ajit Khaparde2d5d4152011-04-06 05:53:13 +00003153 if (!adapter)
3154 return;
3155
3156 if (netif_running(adapter->netdev))
Ajit Khapardea4ca0552011-02-11 13:38:03 +00003157 cancel_delayed_work_sync(&adapter->work);
3158
Ajit Khaparde2d5d4152011-04-06 05:53:13 +00003159 netif_device_detach(adapter->netdev);
Sathya Perla82456b02010-02-17 01:35:37 +00003160
3161 be_cmd_reset_function(adapter);
3162
3163 if (adapter->wol)
3164 be_setup_wol(adapter, true);
3165
3166 pci_disable_device(pdev);
Sathya Perla82456b02010-02-17 01:35:37 +00003167}
3168
Sathya Perlacf588472010-02-14 21:22:01 +00003169static pci_ers_result_t be_eeh_err_detected(struct pci_dev *pdev,
3170 pci_channel_state_t state)
3171{
3172 struct be_adapter *adapter = pci_get_drvdata(pdev);
3173 struct net_device *netdev = adapter->netdev;
3174
3175 dev_err(&adapter->pdev->dev, "EEH error detected\n");
3176
3177 adapter->eeh_err = true;
3178
3179 netif_device_detach(netdev);
3180
3181 if (netif_running(netdev)) {
3182 rtnl_lock();
3183 be_close(netdev);
3184 rtnl_unlock();
3185 }
3186 be_clear(adapter);
3187
3188 if (state == pci_channel_io_perm_failure)
3189 return PCI_ERS_RESULT_DISCONNECT;
3190
3191 pci_disable_device(pdev);
3192
3193 return PCI_ERS_RESULT_NEED_RESET;
3194}
3195
3196static pci_ers_result_t be_eeh_reset(struct pci_dev *pdev)
3197{
3198 struct be_adapter *adapter = pci_get_drvdata(pdev);
3199 int status;
3200
3201 dev_info(&adapter->pdev->dev, "EEH reset\n");
3202 adapter->eeh_err = false;
3203
3204 status = pci_enable_device(pdev);
3205 if (status)
3206 return PCI_ERS_RESULT_DISCONNECT;
3207
3208 pci_set_master(pdev);
3209 pci_set_power_state(pdev, 0);
3210 pci_restore_state(pdev);
3211
3212 /* Check if card is ok and fw is ready */
3213 status = be_cmd_POST(adapter);
3214 if (status)
3215 return PCI_ERS_RESULT_DISCONNECT;
3216
3217 return PCI_ERS_RESULT_RECOVERED;
3218}
3219
3220static void be_eeh_resume(struct pci_dev *pdev)
3221{
3222 int status = 0;
3223 struct be_adapter *adapter = pci_get_drvdata(pdev);
3224 struct net_device *netdev = adapter->netdev;
3225
3226 dev_info(&adapter->pdev->dev, "EEH resume\n");
3227
3228 pci_save_state(pdev);
3229
3230 /* tell fw we're ready to fire cmds */
3231 status = be_cmd_fw_init(adapter);
3232 if (status)
3233 goto err;
3234
3235 status = be_setup(adapter);
3236 if (status)
3237 goto err;
3238
3239 if (netif_running(netdev)) {
3240 status = be_open(netdev);
3241 if (status)
3242 goto err;
3243 }
3244 netif_device_attach(netdev);
3245 return;
3246err:
3247 dev_err(&adapter->pdev->dev, "EEH resume failed\n");
Sathya Perlacf588472010-02-14 21:22:01 +00003248}
3249
3250static struct pci_error_handlers be_eeh_handlers = {
3251 .error_detected = be_eeh_err_detected,
3252 .slot_reset = be_eeh_reset,
3253 .resume = be_eeh_resume,
3254};
3255
Sathya Perla6b7c5b92009-03-11 23:32:03 -07003256static struct pci_driver be_driver = {
3257 .name = DRV_NAME,
3258 .id_table = be_dev_ids,
3259 .probe = be_probe,
3260 .remove = be_remove,
3261 .suspend = be_suspend,
Sathya Perlacf588472010-02-14 21:22:01 +00003262 .resume = be_resume,
Sathya Perla82456b02010-02-17 01:35:37 +00003263 .shutdown = be_shutdown,
Sathya Perlacf588472010-02-14 21:22:01 +00003264 .err_handler = &be_eeh_handlers
Sathya Perla6b7c5b92009-03-11 23:32:03 -07003265};
3266
3267static int __init be_init_module(void)
3268{
Joe Perches8e95a202009-12-03 07:58:21 +00003269 if (rx_frag_size != 8192 && rx_frag_size != 4096 &&
3270 rx_frag_size != 2048) {
Sathya Perla6b7c5b92009-03-11 23:32:03 -07003271 printk(KERN_WARNING DRV_NAME
3272 " : Module param rx_frag_size must be 2048/4096/8192."
3273 " Using 2048\n");
3274 rx_frag_size = 2048;
3275 }
Sathya Perla6b7c5b92009-03-11 23:32:03 -07003276
Sarveshwar Bandiba343c72010-03-31 02:56:12 +00003277 if (num_vfs > 32) {
3278 printk(KERN_WARNING DRV_NAME
3279 " : Module param num_vfs must not be greater than 32."
3280 "Using 32\n");
3281 num_vfs = 32;
3282 }
3283
Sathya Perla6b7c5b92009-03-11 23:32:03 -07003284 return pci_register_driver(&be_driver);
3285}
3286module_init(be_init_module);
3287
3288static void __exit be_exit_module(void)
3289{
3290 pci_unregister_driver(&be_driver);
3291}
3292module_exit(be_exit_module);