blob: bf344347b5a650bc7678c57049775b878d9ccaac [file] [log] [blame]
Sathya Perla6b7c5b92009-03-11 23:32:03 -07001/*
Ajit Khaparde294aedc2010-02-19 13:54:58 +00002 * Copyright (C) 2005 - 2010 ServerEngines
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:
11 * linux-drivers@serverengines.com
12 *
13 * ServerEngines
14 * 209 N. Fair Oaks Ave
15 * Sunnyvale, CA 94085
16 */
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
28static unsigned int rx_frag_size = 2048;
Sarveshwar Bandiba343c72010-03-31 02:56:12 +000029static unsigned int num_vfs;
Sathya Perla6b7c5b92009-03-11 23:32:03 -070030module_param(rx_frag_size, uint, 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 Perlaa8f447bd2009-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 Perlaa8f447bd2009-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 Perlaa8f447bd2009-06-18 00:10:27 +0000319 } else {
Sathya Perlaa8f447bd2009-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 Perlaa8f447bd2009-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 Khaparde49e4b8472010-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 Khaparde49e4b8472010-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
711 /* BE was previously in promiscous mode; disable it */
712 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,
Ajit Khaparde1ef78ab2010-09-03 06:17:10 +0000854 u32 pktsize, u16 numfrags, u8 pkt_type)
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++;
859 stats->rx_frags += numfrags;
860 stats->rx_bytes += pktsize;
861 stats->rx_pkts++;
Ajit Khaparde1ef78ab2010-09-03 06:17:10 +0000862 if (pkt_type == BE_MULTICAST_PACKET)
Sathya Perla3abcded2010-10-03 22:12:27 -0700863 stats->rx_mcast_pkts++;
Sathya Perla6b7c5b92009-03-11 23:32:03 -0700864}
865
Somnath Koturc6ce2f42010-10-25 01:11:58 +0000866static inline bool csum_passed(struct be_eth_rx_compl *rxcp)
Ajit Khaparde728a9972009-04-13 15:41:22 -0700867{
Somnath Koturc6ce2f42010-10-25 01:11:58 +0000868 u8 l4_cksm, ipv6, ipcksm;
Ajit Khaparde728a9972009-04-13 15:41:22 -0700869
870 l4_cksm = AMAP_GET_BITS(struct amap_eth_rx_compl, l4_cksm, rxcp);
871 ipcksm = AMAP_GET_BITS(struct amap_eth_rx_compl, ipcksm, rxcp);
Somnath Koturc6ce2f42010-10-25 01:11:58 +0000872 ipv6 = AMAP_GET_BITS(struct amap_eth_rx_compl, ip_version, rxcp);
Ajit Khaparde728a9972009-04-13 15:41:22 -0700873
Somnath Koturc6ce2f42010-10-25 01:11:58 +0000874 /* Ignore ipcksm for ipv6 pkts */
875 return l4_cksm && (ipcksm || ipv6);
Ajit Khaparde728a9972009-04-13 15:41:22 -0700876}
877
Sathya Perla6b7c5b92009-03-11 23:32:03 -0700878static struct be_rx_page_info *
Sathya Perla3abcded2010-10-03 22:12:27 -0700879get_rx_page_info(struct be_adapter *adapter,
880 struct be_rx_obj *rxo,
881 u16 frag_idx)
Sathya Perla6b7c5b92009-03-11 23:32:03 -0700882{
883 struct be_rx_page_info *rx_page_info;
Sathya Perla3abcded2010-10-03 22:12:27 -0700884 struct be_queue_info *rxq = &rxo->q;
Sathya Perla6b7c5b92009-03-11 23:32:03 -0700885
Sathya Perla3abcded2010-10-03 22:12:27 -0700886 rx_page_info = &rxo->page_info_tbl[frag_idx];
Sathya Perla6b7c5b92009-03-11 23:32:03 -0700887 BUG_ON(!rx_page_info->page);
888
Ajit Khaparde205859a2010-02-09 01:34:21 +0000889 if (rx_page_info->last_page_user) {
Ivan Vecera2b7bceb2011-02-02 08:05:12 +0000890 dma_unmap_page(&adapter->pdev->dev,
891 dma_unmap_addr(rx_page_info, bus),
892 adapter->big_page_size, DMA_FROM_DEVICE);
Ajit Khaparde205859a2010-02-09 01:34:21 +0000893 rx_page_info->last_page_user = false;
894 }
Sathya Perla6b7c5b92009-03-11 23:32:03 -0700895
896 atomic_dec(&rxq->used);
897 return rx_page_info;
898}
899
900/* Throwaway the data in the Rx completion */
901static void be_rx_compl_discard(struct be_adapter *adapter,
Sathya Perla3abcded2010-10-03 22:12:27 -0700902 struct be_rx_obj *rxo,
903 struct be_eth_rx_compl *rxcp)
Sathya Perla6b7c5b92009-03-11 23:32:03 -0700904{
Sathya Perla3abcded2010-10-03 22:12:27 -0700905 struct be_queue_info *rxq = &rxo->q;
Sathya Perla6b7c5b92009-03-11 23:32:03 -0700906 struct be_rx_page_info *page_info;
907 u16 rxq_idx, i, num_rcvd;
908
909 rxq_idx = AMAP_GET_BITS(struct amap_eth_rx_compl, fragndx, rxcp);
910 num_rcvd = AMAP_GET_BITS(struct amap_eth_rx_compl, numfrags, rxcp);
911
Padmanabh Ratnakare80d9da2011-03-07 03:07:58 +0000912 for (i = 0; i < num_rcvd; i++) {
913 page_info = get_rx_page_info(adapter, rxo, rxq_idx);
914 put_page(page_info->page);
915 memset(page_info, 0, sizeof(*page_info));
916 index_inc(&rxq_idx, rxq->len);
Sathya Perla6b7c5b92009-03-11 23:32:03 -0700917 }
918}
919
920/*
921 * skb_fill_rx_data forms a complete skb for an ether frame
922 * indicated by rxcp.
923 */
Sathya Perla3abcded2010-10-03 22:12:27 -0700924static void skb_fill_rx_data(struct be_adapter *adapter, struct be_rx_obj *rxo,
Sathya Perla89420422010-02-17 01:35:26 +0000925 struct sk_buff *skb, struct be_eth_rx_compl *rxcp,
926 u16 num_rcvd)
Sathya Perla6b7c5b92009-03-11 23:32:03 -0700927{
Sathya Perla3abcded2010-10-03 22:12:27 -0700928 struct be_queue_info *rxq = &rxo->q;
Sathya Perla6b7c5b92009-03-11 23:32:03 -0700929 struct be_rx_page_info *page_info;
Sathya Perla89420422010-02-17 01:35:26 +0000930 u16 rxq_idx, i, j;
Ajit Khapardefa774062009-07-22 09:28:55 -0700931 u32 pktsize, hdr_len, curr_frag_len, size;
Sathya Perla6b7c5b92009-03-11 23:32:03 -0700932 u8 *start;
Ajit Khaparde1ef78ab2010-09-03 06:17:10 +0000933 u8 pkt_type;
Sathya Perla6b7c5b92009-03-11 23:32:03 -0700934
935 rxq_idx = AMAP_GET_BITS(struct amap_eth_rx_compl, fragndx, rxcp);
936 pktsize = AMAP_GET_BITS(struct amap_eth_rx_compl, pktsize, rxcp);
Ajit Khaparde1ef78ab2010-09-03 06:17:10 +0000937 pkt_type = AMAP_GET_BITS(struct amap_eth_rx_compl, cast_enc, rxcp);
Sathya Perla6b7c5b92009-03-11 23:32:03 -0700938
Sathya Perla3abcded2010-10-03 22:12:27 -0700939 page_info = get_rx_page_info(adapter, rxo, rxq_idx);
Sathya Perla6b7c5b92009-03-11 23:32:03 -0700940
941 start = page_address(page_info->page) + page_info->page_offset;
942 prefetch(start);
943
944 /* Copy data in the first descriptor of this completion */
945 curr_frag_len = min(pktsize, rx_frag_size);
946
947 /* Copy the header portion into skb_data */
948 hdr_len = min((u32)BE_HDR_LEN, curr_frag_len);
949 memcpy(skb->data, start, hdr_len);
950 skb->len = curr_frag_len;
951 if (curr_frag_len <= BE_HDR_LEN) { /* tiny packet */
952 /* Complete packet has now been moved to data */
953 put_page(page_info->page);
954 skb->data_len = 0;
955 skb->tail += curr_frag_len;
956 } else {
957 skb_shinfo(skb)->nr_frags = 1;
958 skb_shinfo(skb)->frags[0].page = page_info->page;
959 skb_shinfo(skb)->frags[0].page_offset =
960 page_info->page_offset + hdr_len;
961 skb_shinfo(skb)->frags[0].size = curr_frag_len - hdr_len;
962 skb->data_len = curr_frag_len - hdr_len;
963 skb->tail += hdr_len;
964 }
Ajit Khaparde205859a2010-02-09 01:34:21 +0000965 page_info->page = NULL;
Sathya Perla6b7c5b92009-03-11 23:32:03 -0700966
967 if (pktsize <= rx_frag_size) {
968 BUG_ON(num_rcvd != 1);
Sathya Perla76fbb422009-06-10 02:21:56 +0000969 goto done;
Sathya Perla6b7c5b92009-03-11 23:32:03 -0700970 }
971
972 /* More frags present for this completion */
Ajit Khapardefa774062009-07-22 09:28:55 -0700973 size = pktsize;
Ajit Khapardebd46cb62009-06-26 02:51:07 +0000974 for (i = 1, j = 0; i < num_rcvd; i++) {
Ajit Khapardefa774062009-07-22 09:28:55 -0700975 size -= curr_frag_len;
Sathya Perla6b7c5b92009-03-11 23:32:03 -0700976 index_inc(&rxq_idx, rxq->len);
Sathya Perla3abcded2010-10-03 22:12:27 -0700977 page_info = get_rx_page_info(adapter, rxo, rxq_idx);
Sathya Perla6b7c5b92009-03-11 23:32:03 -0700978
Ajit Khapardefa774062009-07-22 09:28:55 -0700979 curr_frag_len = min(size, rx_frag_size);
Sathya Perla6b7c5b92009-03-11 23:32:03 -0700980
Ajit Khapardebd46cb62009-06-26 02:51:07 +0000981 /* Coalesce all frags from the same physical page in one slot */
982 if (page_info->page_offset == 0) {
983 /* Fresh page */
984 j++;
985 skb_shinfo(skb)->frags[j].page = page_info->page;
986 skb_shinfo(skb)->frags[j].page_offset =
987 page_info->page_offset;
988 skb_shinfo(skb)->frags[j].size = 0;
989 skb_shinfo(skb)->nr_frags++;
990 } else {
991 put_page(page_info->page);
992 }
993
994 skb_shinfo(skb)->frags[j].size += curr_frag_len;
Sathya Perla6b7c5b92009-03-11 23:32:03 -0700995 skb->len += curr_frag_len;
996 skb->data_len += curr_frag_len;
Sathya Perla6b7c5b92009-03-11 23:32:03 -0700997
Ajit Khaparde205859a2010-02-09 01:34:21 +0000998 page_info->page = NULL;
Sathya Perla6b7c5b92009-03-11 23:32:03 -0700999 }
Ajit Khapardebd46cb62009-06-26 02:51:07 +00001000 BUG_ON(j > MAX_SKB_FRAGS);
Sathya Perla6b7c5b92009-03-11 23:32:03 -07001001
Sathya Perla76fbb422009-06-10 02:21:56 +00001002done:
Sathya Perla3abcded2010-10-03 22:12:27 -07001003 be_rx_stats_update(rxo, pktsize, num_rcvd, pkt_type);
Sathya Perla6b7c5b92009-03-11 23:32:03 -07001004}
1005
Ajit Khaparde5be93b92009-07-21 12:36:19 -07001006/* Process the RX completion indicated by rxcp when GRO is disabled */
Sathya Perla6b7c5b92009-03-11 23:32:03 -07001007static void be_rx_compl_process(struct be_adapter *adapter,
Sathya Perla3abcded2010-10-03 22:12:27 -07001008 struct be_rx_obj *rxo,
Sathya Perla6b7c5b92009-03-11 23:32:03 -07001009 struct be_eth_rx_compl *rxcp)
1010{
1011 struct sk_buff *skb;
Ajit Khapardedcb9b562009-09-30 21:58:22 -07001012 u32 vlanf, vid;
Sathya Perla89420422010-02-17 01:35:26 +00001013 u16 num_rcvd;
Ajit Khapardedcb9b562009-09-30 21:58:22 -07001014 u8 vtm;
Sathya Perla6b7c5b92009-03-11 23:32:03 -07001015
Sathya Perla89420422010-02-17 01:35:26 +00001016 num_rcvd = AMAP_GET_BITS(struct amap_eth_rx_compl, numfrags, rxcp);
Sathya Perla89420422010-02-17 01:35:26 +00001017
Eric Dumazet89d71a62009-10-13 05:34:20 +00001018 skb = netdev_alloc_skb_ip_align(adapter->netdev, BE_HDR_LEN);
Sathya Perlaa058a632010-02-17 01:34:22 +00001019 if (unlikely(!skb)) {
Sathya Perla6b7c5b92009-03-11 23:32:03 -07001020 if (net_ratelimit())
1021 dev_warn(&adapter->pdev->dev, "skb alloc failed\n");
Sathya Perla3abcded2010-10-03 22:12:27 -07001022 be_rx_compl_discard(adapter, rxo, rxcp);
Sathya Perla6b7c5b92009-03-11 23:32:03 -07001023 return;
1024 }
1025
Sathya Perla3abcded2010-10-03 22:12:27 -07001026 skb_fill_rx_data(adapter, rxo, skb, rxcp, num_rcvd);
Sathya Perla6b7c5b92009-03-11 23:32:03 -07001027
Somnath Koturc6ce2f42010-10-25 01:11:58 +00001028 if (likely(adapter->rx_csum && csum_passed(rxcp)))
Ajit Khaparde728a9972009-04-13 15:41:22 -07001029 skb->ip_summed = CHECKSUM_UNNECESSARY;
Somnath Koturc6ce2f42010-10-25 01:11:58 +00001030 else
1031 skb_checksum_none_assert(skb);
Sathya Perla6b7c5b92009-03-11 23:32:03 -07001032
1033 skb->truesize = skb->len + sizeof(struct sk_buff);
1034 skb->protocol = eth_type_trans(skb, adapter->netdev);
Sathya Perla6b7c5b92009-03-11 23:32:03 -07001035
Sathya Perlaa058a632010-02-17 01:34:22 +00001036 vlanf = AMAP_GET_BITS(struct amap_eth_rx_compl, vtp, rxcp);
1037 vtm = AMAP_GET_BITS(struct amap_eth_rx_compl, vtm, rxcp);
1038
1039 /* vlanf could be wrongly set in some cards.
1040 * ignore if vtm is not set */
Ajit Khaparde3486be22010-07-23 02:04:54 +00001041 if ((adapter->function_mode & 0x400) && !vtm)
Sathya Perlaa058a632010-02-17 01:34:22 +00001042 vlanf = 0;
1043
Ajit Khaparde3968fa12011-02-20 11:41:53 +00001044 if ((adapter->pvid == vlanf) && !adapter->vlan_tag[vlanf])
1045 vlanf = 0;
1046
Sathya Perlaa058a632010-02-17 01:34:22 +00001047 if (unlikely(vlanf)) {
Ajit Khaparde82903e42010-02-09 01:34:57 +00001048 if (!adapter->vlan_grp || adapter->vlans_added == 0) {
Sathya Perla6b7c5b92009-03-11 23:32:03 -07001049 kfree_skb(skb);
1050 return;
1051 }
1052 vid = AMAP_GET_BITS(struct amap_eth_rx_compl, vlan_tag, rxcp);
Sathya Perlafe6d2a32010-11-21 23:25:50 +00001053 if (!lancer_chip(adapter))
1054 vid = swab16(vid);
Sathya Perla6b7c5b92009-03-11 23:32:03 -07001055 vlan_hwaccel_receive_skb(skb, adapter->vlan_grp, vid);
1056 } else {
1057 netif_receive_skb(skb);
1058 }
Sathya Perla6b7c5b92009-03-11 23:32:03 -07001059}
1060
Ajit Khaparde5be93b92009-07-21 12:36:19 -07001061/* Process the RX completion indicated by rxcp when GRO is enabled */
1062static void be_rx_compl_process_gro(struct be_adapter *adapter,
Sathya Perla3abcded2010-10-03 22:12:27 -07001063 struct be_rx_obj *rxo,
1064 struct be_eth_rx_compl *rxcp)
Sathya Perla6b7c5b92009-03-11 23:32:03 -07001065{
1066 struct be_rx_page_info *page_info;
Ajit Khaparde5be93b92009-07-21 12:36:19 -07001067 struct sk_buff *skb = NULL;
Sathya Perla3abcded2010-10-03 22:12:27 -07001068 struct be_queue_info *rxq = &rxo->q;
1069 struct be_eq_obj *eq_obj = &rxo->rx_eq;
Sathya Perla6b7c5b92009-03-11 23:32:03 -07001070 u32 num_rcvd, pkt_size, remaining, vlanf, curr_frag_len;
Ajit Khapardebd46cb62009-06-26 02:51:07 +00001071 u16 i, rxq_idx = 0, vid, j;
Ajit Khapardedcb9b562009-09-30 21:58:22 -07001072 u8 vtm;
Ajit Khaparde1ef78ab2010-09-03 06:17:10 +00001073 u8 pkt_type;
Sathya Perla6b7c5b92009-03-11 23:32:03 -07001074
1075 num_rcvd = AMAP_GET_BITS(struct amap_eth_rx_compl, numfrags, rxcp);
1076 pkt_size = AMAP_GET_BITS(struct amap_eth_rx_compl, pktsize, rxcp);
1077 vlanf = AMAP_GET_BITS(struct amap_eth_rx_compl, vtp, rxcp);
1078 rxq_idx = AMAP_GET_BITS(struct amap_eth_rx_compl, fragndx, rxcp);
Ajit Khapardedcb9b562009-09-30 21:58:22 -07001079 vtm = AMAP_GET_BITS(struct amap_eth_rx_compl, vtm, rxcp);
Ajit Khaparde1ef78ab2010-09-03 06:17:10 +00001080 pkt_type = AMAP_GET_BITS(struct amap_eth_rx_compl, cast_enc, rxcp);
Ajit Khapardedcb9b562009-09-30 21:58:22 -07001081
1082 /* vlanf could be wrongly set in some cards.
1083 * ignore if vtm is not set */
Ajit Khaparde3486be22010-07-23 02:04:54 +00001084 if ((adapter->function_mode & 0x400) && !vtm)
Ajit Khapardedcb9b562009-09-30 21:58:22 -07001085 vlanf = 0;
Sathya Perla6b7c5b92009-03-11 23:32:03 -07001086
Ajit Khaparde3968fa12011-02-20 11:41:53 +00001087 if ((adapter->pvid == vlanf) && !adapter->vlan_tag[vlanf])
1088 vlanf = 0;
1089
Ajit Khaparde5be93b92009-07-21 12:36:19 -07001090 skb = napi_get_frags(&eq_obj->napi);
1091 if (!skb) {
Sathya Perla3abcded2010-10-03 22:12:27 -07001092 be_rx_compl_discard(adapter, rxo, rxcp);
Ajit Khaparde5be93b92009-07-21 12:36:19 -07001093 return;
1094 }
1095
Sathya Perla6b7c5b92009-03-11 23:32:03 -07001096 remaining = pkt_size;
Ajit Khapardebd46cb62009-06-26 02:51:07 +00001097 for (i = 0, j = -1; i < num_rcvd; i++) {
Sathya Perla3abcded2010-10-03 22:12:27 -07001098 page_info = get_rx_page_info(adapter, rxo, rxq_idx);
Sathya Perla6b7c5b92009-03-11 23:32:03 -07001099
1100 curr_frag_len = min(remaining, rx_frag_size);
1101
Ajit Khapardebd46cb62009-06-26 02:51:07 +00001102 /* Coalesce all frags from the same physical page in one slot */
1103 if (i == 0 || page_info->page_offset == 0) {
1104 /* First frag or Fresh page */
1105 j++;
Ajit Khaparde5be93b92009-07-21 12:36:19 -07001106 skb_shinfo(skb)->frags[j].page = page_info->page;
1107 skb_shinfo(skb)->frags[j].page_offset =
1108 page_info->page_offset;
1109 skb_shinfo(skb)->frags[j].size = 0;
Ajit Khapardebd46cb62009-06-26 02:51:07 +00001110 } else {
1111 put_page(page_info->page);
1112 }
Ajit Khaparde5be93b92009-07-21 12:36:19 -07001113 skb_shinfo(skb)->frags[j].size += curr_frag_len;
Ajit Khapardebd46cb62009-06-26 02:51:07 +00001114
Sathya Perla6b7c5b92009-03-11 23:32:03 -07001115 remaining -= curr_frag_len;
Sathya Perla6b7c5b92009-03-11 23:32:03 -07001116 index_inc(&rxq_idx, rxq->len);
Sathya Perla6b7c5b92009-03-11 23:32:03 -07001117 memset(page_info, 0, sizeof(*page_info));
1118 }
Ajit Khapardebd46cb62009-06-26 02:51:07 +00001119 BUG_ON(j > MAX_SKB_FRAGS);
Sathya Perla6b7c5b92009-03-11 23:32:03 -07001120
Ajit Khaparde5be93b92009-07-21 12:36:19 -07001121 skb_shinfo(skb)->nr_frags = j + 1;
1122 skb->len = pkt_size;
1123 skb->data_len = pkt_size;
1124 skb->truesize += pkt_size;
1125 skb->ip_summed = CHECKSUM_UNNECESSARY;
1126
Sathya Perla6b7c5b92009-03-11 23:32:03 -07001127 if (likely(!vlanf)) {
Ajit Khaparde5be93b92009-07-21 12:36:19 -07001128 napi_gro_frags(&eq_obj->napi);
Sathya Perla6b7c5b92009-03-11 23:32:03 -07001129 } else {
1130 vid = AMAP_GET_BITS(struct amap_eth_rx_compl, vlan_tag, rxcp);
Sathya Perlafe6d2a32010-11-21 23:25:50 +00001131 if (!lancer_chip(adapter))
1132 vid = swab16(vid);
Sathya Perla6b7c5b92009-03-11 23:32:03 -07001133
Ajit Khaparde82903e42010-02-09 01:34:57 +00001134 if (!adapter->vlan_grp || adapter->vlans_added == 0)
Sathya Perla6b7c5b92009-03-11 23:32:03 -07001135 return;
1136
Ajit Khaparde5be93b92009-07-21 12:36:19 -07001137 vlan_gro_frags(&eq_obj->napi, adapter->vlan_grp, vid);
Sathya Perla6b7c5b92009-03-11 23:32:03 -07001138 }
1139
Sathya Perla3abcded2010-10-03 22:12:27 -07001140 be_rx_stats_update(rxo, pkt_size, num_rcvd, pkt_type);
Sathya Perla6b7c5b92009-03-11 23:32:03 -07001141}
1142
Sathya Perla3abcded2010-10-03 22:12:27 -07001143static struct be_eth_rx_compl *be_rx_compl_get(struct be_rx_obj *rxo)
Sathya Perla6b7c5b92009-03-11 23:32:03 -07001144{
Sathya Perla3abcded2010-10-03 22:12:27 -07001145 struct be_eth_rx_compl *rxcp = queue_tail_node(&rxo->cq);
Sathya Perla6b7c5b92009-03-11 23:32:03 -07001146
1147 if (rxcp->dw[offsetof(struct amap_eth_rx_compl, valid) / 32] == 0)
1148 return NULL;
1149
Sathya Perlaf3eb62d2010-06-29 00:11:17 +00001150 rmb();
Sathya Perla6b7c5b92009-03-11 23:32:03 -07001151 be_dws_le_to_cpu(rxcp, sizeof(*rxcp));
1152
Sathya Perla3abcded2010-10-03 22:12:27 -07001153 queue_tail_inc(&rxo->cq);
Sathya Perla6b7c5b92009-03-11 23:32:03 -07001154 return rxcp;
1155}
1156
Sathya Perlaa7a0ef32009-06-10 02:23:28 +00001157/* To reset the valid bit, we need to reset the whole word as
1158 * when walking the queue the valid entries are little-endian
1159 * and invalid entries are host endian
1160 */
1161static inline void be_rx_compl_reset(struct be_eth_rx_compl *rxcp)
1162{
1163 rxcp->dw[offsetof(struct amap_eth_rx_compl, valid) / 32] = 0;
1164}
1165
Eric Dumazet1829b082011-03-01 05:48:12 +00001166static inline struct page *be_alloc_pages(u32 size, gfp_t gfp)
Sathya Perla6b7c5b92009-03-11 23:32:03 -07001167{
Sathya Perla6b7c5b92009-03-11 23:32:03 -07001168 u32 order = get_order(size);
Eric Dumazet1829b082011-03-01 05:48:12 +00001169
Sathya Perla6b7c5b92009-03-11 23:32:03 -07001170 if (order > 0)
Eric Dumazet1829b082011-03-01 05:48:12 +00001171 gfp |= __GFP_COMP;
1172 return alloc_pages(gfp, order);
Sathya Perla6b7c5b92009-03-11 23:32:03 -07001173}
1174
1175/*
1176 * Allocate a page, split it to fragments of size rx_frag_size and post as
1177 * receive buffers to BE
1178 */
Eric Dumazet1829b082011-03-01 05:48:12 +00001179static void be_post_rx_frags(struct be_rx_obj *rxo, gfp_t gfp)
Sathya Perla6b7c5b92009-03-11 23:32:03 -07001180{
Sathya Perla3abcded2010-10-03 22:12:27 -07001181 struct be_adapter *adapter = rxo->adapter;
1182 struct be_rx_page_info *page_info_tbl = rxo->page_info_tbl;
Sathya Perla26d92f92010-01-21 22:52:08 -08001183 struct be_rx_page_info *page_info = NULL, *prev_page_info = NULL;
Sathya Perla3abcded2010-10-03 22:12:27 -07001184 struct be_queue_info *rxq = &rxo->q;
Sathya Perla6b7c5b92009-03-11 23:32:03 -07001185 struct page *pagep = NULL;
1186 struct be_eth_rx_d *rxd;
1187 u64 page_dmaaddr = 0, frag_dmaaddr;
1188 u32 posted, page_offset = 0;
1189
Sathya Perla3abcded2010-10-03 22:12:27 -07001190 page_info = &rxo->page_info_tbl[rxq->head];
Sathya Perla6b7c5b92009-03-11 23:32:03 -07001191 for (posted = 0; posted < MAX_RX_POST && !page_info->page; posted++) {
1192 if (!pagep) {
Eric Dumazet1829b082011-03-01 05:48:12 +00001193 pagep = be_alloc_pages(adapter->big_page_size, gfp);
Sathya Perla6b7c5b92009-03-11 23:32:03 -07001194 if (unlikely(!pagep)) {
Sathya Perla3abcded2010-10-03 22:12:27 -07001195 rxo->stats.rx_post_fail++;
Sathya Perla6b7c5b92009-03-11 23:32:03 -07001196 break;
1197 }
Ivan Vecera2b7bceb2011-02-02 08:05:12 +00001198 page_dmaaddr = dma_map_page(&adapter->pdev->dev, pagep,
1199 0, adapter->big_page_size,
1200 DMA_FROM_DEVICE);
Sathya Perla6b7c5b92009-03-11 23:32:03 -07001201 page_info->page_offset = 0;
1202 } else {
1203 get_page(pagep);
1204 page_info->page_offset = page_offset + rx_frag_size;
1205 }
1206 page_offset = page_info->page_offset;
1207 page_info->page = pagep;
FUJITA Tomonorifac6da52010-04-01 16:53:22 +00001208 dma_unmap_addr_set(page_info, bus, page_dmaaddr);
Sathya Perla6b7c5b92009-03-11 23:32:03 -07001209 frag_dmaaddr = page_dmaaddr + page_info->page_offset;
1210
1211 rxd = queue_head_node(rxq);
1212 rxd->fragpa_lo = cpu_to_le32(frag_dmaaddr & 0xFFFFFFFF);
1213 rxd->fragpa_hi = cpu_to_le32(upper_32_bits(frag_dmaaddr));
Sathya Perla6b7c5b92009-03-11 23:32:03 -07001214
1215 /* Any space left in the current big page for another frag? */
1216 if ((page_offset + rx_frag_size + rx_frag_size) >
1217 adapter->big_page_size) {
1218 pagep = NULL;
1219 page_info->last_page_user = true;
1220 }
Sathya Perla26d92f92010-01-21 22:52:08 -08001221
1222 prev_page_info = page_info;
1223 queue_head_inc(rxq);
Sathya Perla6b7c5b92009-03-11 23:32:03 -07001224 page_info = &page_info_tbl[rxq->head];
1225 }
1226 if (pagep)
Sathya Perla26d92f92010-01-21 22:52:08 -08001227 prev_page_info->last_page_user = true;
Sathya Perla6b7c5b92009-03-11 23:32:03 -07001228
1229 if (posted) {
Sathya Perla6b7c5b92009-03-11 23:32:03 -07001230 atomic_add(posted, &rxq->used);
Sathya Perla8788fdc2009-07-27 22:52:03 +00001231 be_rxq_notify(adapter, rxq->id, posted);
Sathya Perlaea1dae12009-03-19 23:56:20 -07001232 } else if (atomic_read(&rxq->used) == 0) {
1233 /* Let be_worker replenish when memory is available */
Sathya Perla3abcded2010-10-03 22:12:27 -07001234 rxo->rx_post_starved = true;
Sathya Perla6b7c5b92009-03-11 23:32:03 -07001235 }
Sathya Perla6b7c5b92009-03-11 23:32:03 -07001236}
1237
Sathya Perla5fb379e2009-06-18 00:02:59 +00001238static struct be_eth_tx_compl *be_tx_compl_get(struct be_queue_info *tx_cq)
Sathya Perla6b7c5b92009-03-11 23:32:03 -07001239{
Sathya Perla6b7c5b92009-03-11 23:32:03 -07001240 struct be_eth_tx_compl *txcp = queue_tail_node(tx_cq);
1241
1242 if (txcp->dw[offsetof(struct amap_eth_tx_compl, valid) / 32] == 0)
1243 return NULL;
1244
Sathya Perlaf3eb62d2010-06-29 00:11:17 +00001245 rmb();
Sathya Perla6b7c5b92009-03-11 23:32:03 -07001246 be_dws_le_to_cpu(txcp, sizeof(*txcp));
1247
1248 txcp->dw[offsetof(struct amap_eth_tx_compl, valid) / 32] = 0;
1249
1250 queue_tail_inc(tx_cq);
1251 return txcp;
1252}
1253
1254static void be_tx_compl_process(struct be_adapter *adapter, u16 last_index)
1255{
1256 struct be_queue_info *txq = &adapter->tx_obj.q;
Alexander Duycka73b7962009-12-02 16:48:18 +00001257 struct be_eth_wrb *wrb;
Sathya Perla6b7c5b92009-03-11 23:32:03 -07001258 struct sk_buff **sent_skbs = adapter->tx_obj.sent_skb_list;
1259 struct sk_buff *sent_skb;
Sathya Perlaec43b1a2010-03-22 20:41:34 +00001260 u16 cur_index, num_wrbs = 1; /* account for hdr wrb */
1261 bool unmap_skb_hdr = true;
Sathya Perla6b7c5b92009-03-11 23:32:03 -07001262
Sathya Perlaec43b1a2010-03-22 20:41:34 +00001263 sent_skb = sent_skbs[txq->tail];
Sathya Perla6b7c5b92009-03-11 23:32:03 -07001264 BUG_ON(!sent_skb);
Sathya Perlaec43b1a2010-03-22 20:41:34 +00001265 sent_skbs[txq->tail] = NULL;
1266
1267 /* skip header wrb */
Alexander Duycka73b7962009-12-02 16:48:18 +00001268 queue_tail_inc(txq);
Sathya Perla6b7c5b92009-03-11 23:32:03 -07001269
Sathya Perlaec43b1a2010-03-22 20:41:34 +00001270 do {
Sathya Perla6b7c5b92009-03-11 23:32:03 -07001271 cur_index = txq->tail;
Alexander Duycka73b7962009-12-02 16:48:18 +00001272 wrb = queue_tail_node(txq);
Ivan Vecera2b7bceb2011-02-02 08:05:12 +00001273 unmap_tx_frag(&adapter->pdev->dev, wrb,
1274 (unmap_skb_hdr && skb_headlen(sent_skb)));
Sathya Perlaec43b1a2010-03-22 20:41:34 +00001275 unmap_skb_hdr = false;
1276
Sathya Perla6b7c5b92009-03-11 23:32:03 -07001277 num_wrbs++;
1278 queue_tail_inc(txq);
Sathya Perlaec43b1a2010-03-22 20:41:34 +00001279 } while (cur_index != last_index);
Sathya Perla6b7c5b92009-03-11 23:32:03 -07001280
1281 atomic_sub(num_wrbs, &txq->used);
Alexander Duycka73b7962009-12-02 16:48:18 +00001282
Sathya Perla6b7c5b92009-03-11 23:32:03 -07001283 kfree_skb(sent_skb);
1284}
1285
Sathya Perla859b1e42009-08-10 03:43:51 +00001286static inline struct be_eq_entry *event_get(struct be_eq_obj *eq_obj)
1287{
1288 struct be_eq_entry *eqe = queue_tail_node(&eq_obj->q);
1289
1290 if (!eqe->evt)
1291 return NULL;
1292
Sathya Perlaf3eb62d2010-06-29 00:11:17 +00001293 rmb();
Sathya Perla859b1e42009-08-10 03:43:51 +00001294 eqe->evt = le32_to_cpu(eqe->evt);
1295 queue_tail_inc(&eq_obj->q);
1296 return eqe;
1297}
1298
1299static int event_handle(struct be_adapter *adapter,
1300 struct be_eq_obj *eq_obj)
1301{
1302 struct be_eq_entry *eqe;
1303 u16 num = 0;
1304
1305 while ((eqe = event_get(eq_obj)) != NULL) {
1306 eqe->evt = 0;
1307 num++;
1308 }
1309
1310 /* Deal with any spurious interrupts that come
1311 * without events
1312 */
1313 be_eq_notify(adapter, eq_obj->q.id, true, true, num);
1314 if (num)
1315 napi_schedule(&eq_obj->napi);
1316
1317 return num;
1318}
1319
1320/* Just read and notify events without processing them.
1321 * Used at the time of destroying event queues */
1322static void be_eq_clean(struct be_adapter *adapter,
1323 struct be_eq_obj *eq_obj)
1324{
1325 struct be_eq_entry *eqe;
1326 u16 num = 0;
1327
1328 while ((eqe = event_get(eq_obj)) != NULL) {
1329 eqe->evt = 0;
1330 num++;
1331 }
1332
1333 if (num)
1334 be_eq_notify(adapter, eq_obj->q.id, false, true, num);
1335}
1336
Sathya Perla3abcded2010-10-03 22:12:27 -07001337static void be_rx_q_clean(struct be_adapter *adapter, struct be_rx_obj *rxo)
Sathya Perla6b7c5b92009-03-11 23:32:03 -07001338{
1339 struct be_rx_page_info *page_info;
Sathya Perla3abcded2010-10-03 22:12:27 -07001340 struct be_queue_info *rxq = &rxo->q;
1341 struct be_queue_info *rx_cq = &rxo->cq;
Sathya Perla6b7c5b92009-03-11 23:32:03 -07001342 struct be_eth_rx_compl *rxcp;
1343 u16 tail;
1344
1345 /* First cleanup pending rx completions */
Sathya Perla3abcded2010-10-03 22:12:27 -07001346 while ((rxcp = be_rx_compl_get(rxo)) != NULL) {
1347 be_rx_compl_discard(adapter, rxo, rxcp);
Sathya Perlaa7a0ef32009-06-10 02:23:28 +00001348 be_rx_compl_reset(rxcp);
Sathya Perla64642812010-12-01 01:04:17 +00001349 be_cq_notify(adapter, rx_cq->id, false, 1);
Sathya Perla6b7c5b92009-03-11 23:32:03 -07001350 }
1351
1352 /* Then free posted rx buffer that were not used */
1353 tail = (rxq->head + rxq->len - atomic_read(&rxq->used)) % rxq->len;
Sathya Perlacdab23b2009-08-10 03:43:23 +00001354 for (; atomic_read(&rxq->used) > 0; index_inc(&tail, rxq->len)) {
Sathya Perla3abcded2010-10-03 22:12:27 -07001355 page_info = get_rx_page_info(adapter, rxo, tail);
Sathya Perla6b7c5b92009-03-11 23:32:03 -07001356 put_page(page_info->page);
1357 memset(page_info, 0, sizeof(*page_info));
1358 }
1359 BUG_ON(atomic_read(&rxq->used));
1360}
1361
Sathya Perlaa8e91792009-08-10 03:42:43 +00001362static void be_tx_compl_clean(struct be_adapter *adapter)
Sathya Perla6b7c5b92009-03-11 23:32:03 -07001363{
Sathya Perlaa8e91792009-08-10 03:42:43 +00001364 struct be_queue_info *tx_cq = &adapter->tx_obj.cq;
Sathya Perla6b7c5b92009-03-11 23:32:03 -07001365 struct be_queue_info *txq = &adapter->tx_obj.q;
Sathya Perlaa8e91792009-08-10 03:42:43 +00001366 struct be_eth_tx_compl *txcp;
1367 u16 end_idx, cmpl = 0, timeo = 0;
Sathya Perlab03388d2010-02-18 00:37:17 +00001368 struct sk_buff **sent_skbs = adapter->tx_obj.sent_skb_list;
1369 struct sk_buff *sent_skb;
1370 bool dummy_wrb;
Sathya Perla6b7c5b92009-03-11 23:32:03 -07001371
Sathya Perlaa8e91792009-08-10 03:42:43 +00001372 /* Wait for a max of 200ms for all the tx-completions to arrive. */
1373 do {
1374 while ((txcp = be_tx_compl_get(tx_cq))) {
1375 end_idx = AMAP_GET_BITS(struct amap_eth_tx_compl,
1376 wrb_index, txcp);
1377 be_tx_compl_process(adapter, end_idx);
1378 cmpl++;
1379 }
1380 if (cmpl) {
1381 be_cq_notify(adapter, tx_cq->id, false, cmpl);
1382 cmpl = 0;
1383 }
1384
1385 if (atomic_read(&txq->used) == 0 || ++timeo > 200)
1386 break;
1387
1388 mdelay(1);
1389 } while (true);
1390
1391 if (atomic_read(&txq->used))
1392 dev_err(&adapter->pdev->dev, "%d pending tx-completions\n",
1393 atomic_read(&txq->used));
Sathya Perlab03388d2010-02-18 00:37:17 +00001394
1395 /* free posted tx for which compls will never arrive */
1396 while (atomic_read(&txq->used)) {
1397 sent_skb = sent_skbs[txq->tail];
1398 end_idx = txq->tail;
1399 index_adv(&end_idx,
Sathya Perlafe6d2a32010-11-21 23:25:50 +00001400 wrb_cnt_for_skb(adapter, sent_skb, &dummy_wrb) - 1,
1401 txq->len);
Sathya Perlab03388d2010-02-18 00:37:17 +00001402 be_tx_compl_process(adapter, end_idx);
1403 }
Sathya Perla6b7c5b92009-03-11 23:32:03 -07001404}
1405
Sathya Perla5fb379e2009-06-18 00:02:59 +00001406static void be_mcc_queues_destroy(struct be_adapter *adapter)
1407{
1408 struct be_queue_info *q;
Sathya Perla5fb379e2009-06-18 00:02:59 +00001409
Sathya Perla8788fdc2009-07-27 22:52:03 +00001410 q = &adapter->mcc_obj.q;
Sathya Perla5fb379e2009-06-18 00:02:59 +00001411 if (q->created)
Sathya Perla8788fdc2009-07-27 22:52:03 +00001412 be_cmd_q_destroy(adapter, q, QTYPE_MCCQ);
Sathya Perla5fb379e2009-06-18 00:02:59 +00001413 be_queue_free(adapter, q);
1414
Sathya Perla8788fdc2009-07-27 22:52:03 +00001415 q = &adapter->mcc_obj.cq;
Sathya Perla5fb379e2009-06-18 00:02:59 +00001416 if (q->created)
Sathya Perla8788fdc2009-07-27 22:52:03 +00001417 be_cmd_q_destroy(adapter, q, QTYPE_CQ);
Sathya Perla5fb379e2009-06-18 00:02:59 +00001418 be_queue_free(adapter, q);
1419}
1420
1421/* Must be called only after TX qs are created as MCC shares TX EQ */
1422static int be_mcc_queues_create(struct be_adapter *adapter)
1423{
1424 struct be_queue_info *q, *cq;
Sathya Perla5fb379e2009-06-18 00:02:59 +00001425
1426 /* Alloc MCC compl queue */
Sathya Perla8788fdc2009-07-27 22:52:03 +00001427 cq = &adapter->mcc_obj.cq;
Sathya Perla5fb379e2009-06-18 00:02:59 +00001428 if (be_queue_alloc(adapter, cq, MCC_CQ_LEN,
Sathya Perlaefd2e402009-07-27 22:53:10 +00001429 sizeof(struct be_mcc_compl)))
Sathya Perla5fb379e2009-06-18 00:02:59 +00001430 goto err;
1431
1432 /* Ask BE to create MCC compl queue; share TX's eq */
Sathya Perla8788fdc2009-07-27 22:52:03 +00001433 if (be_cmd_cq_create(adapter, cq, &adapter->tx_eq.q, false, true, 0))
Sathya Perla5fb379e2009-06-18 00:02:59 +00001434 goto mcc_cq_free;
1435
1436 /* Alloc MCC queue */
Sathya Perla8788fdc2009-07-27 22:52:03 +00001437 q = &adapter->mcc_obj.q;
Sathya Perla5fb379e2009-06-18 00:02:59 +00001438 if (be_queue_alloc(adapter, q, MCC_Q_LEN, sizeof(struct be_mcc_wrb)))
1439 goto mcc_cq_destroy;
1440
1441 /* Ask BE to create MCC queue */
Sathya Perla8788fdc2009-07-27 22:52:03 +00001442 if (be_cmd_mccq_create(adapter, q, cq))
Sathya Perla5fb379e2009-06-18 00:02:59 +00001443 goto mcc_q_free;
1444
1445 return 0;
1446
1447mcc_q_free:
1448 be_queue_free(adapter, q);
1449mcc_cq_destroy:
Sathya Perla8788fdc2009-07-27 22:52:03 +00001450 be_cmd_q_destroy(adapter, cq, QTYPE_CQ);
Sathya Perla5fb379e2009-06-18 00:02:59 +00001451mcc_cq_free:
1452 be_queue_free(adapter, cq);
1453err:
1454 return -1;
1455}
1456
Sathya Perla6b7c5b92009-03-11 23:32:03 -07001457static void be_tx_queues_destroy(struct be_adapter *adapter)
1458{
1459 struct be_queue_info *q;
1460
1461 q = &adapter->tx_obj.q;
Sathya Perlaa8e91792009-08-10 03:42:43 +00001462 if (q->created)
Sathya Perla8788fdc2009-07-27 22:52:03 +00001463 be_cmd_q_destroy(adapter, q, QTYPE_TXQ);
Sathya Perla6b7c5b92009-03-11 23:32:03 -07001464 be_queue_free(adapter, q);
1465
1466 q = &adapter->tx_obj.cq;
1467 if (q->created)
Sathya Perla8788fdc2009-07-27 22:52:03 +00001468 be_cmd_q_destroy(adapter, q, QTYPE_CQ);
Sathya Perla6b7c5b92009-03-11 23:32:03 -07001469 be_queue_free(adapter, q);
1470
Sathya Perla859b1e42009-08-10 03:43:51 +00001471 /* Clear any residual events */
1472 be_eq_clean(adapter, &adapter->tx_eq);
1473
Sathya Perla6b7c5b92009-03-11 23:32:03 -07001474 q = &adapter->tx_eq.q;
1475 if (q->created)
Sathya Perla8788fdc2009-07-27 22:52:03 +00001476 be_cmd_q_destroy(adapter, q, QTYPE_EQ);
Sathya Perla6b7c5b92009-03-11 23:32:03 -07001477 be_queue_free(adapter, q);
1478}
1479
1480static int be_tx_queues_create(struct be_adapter *adapter)
1481{
1482 struct be_queue_info *eq, *q, *cq;
1483
1484 adapter->tx_eq.max_eqd = 0;
1485 adapter->tx_eq.min_eqd = 0;
1486 adapter->tx_eq.cur_eqd = 96;
1487 adapter->tx_eq.enable_aic = false;
1488 /* Alloc Tx Event queue */
1489 eq = &adapter->tx_eq.q;
1490 if (be_queue_alloc(adapter, eq, EVNT_Q_LEN, sizeof(struct be_eq_entry)))
1491 return -1;
1492
1493 /* Ask BE to create Tx Event queue */
Sathya Perla8788fdc2009-07-27 22:52:03 +00001494 if (be_cmd_eq_create(adapter, eq, adapter->tx_eq.cur_eqd))
Sathya Perla6b7c5b92009-03-11 23:32:03 -07001495 goto tx_eq_free;
Sathya Perlafe6d2a32010-11-21 23:25:50 +00001496
1497 adapter->tx_eq.msix_vec_idx = adapter->msix_vec_next_idx++;
1498
Sarveshwar Bandiba343c72010-03-31 02:56:12 +00001499
Sathya Perla6b7c5b92009-03-11 23:32:03 -07001500 /* Alloc TX eth compl queue */
1501 cq = &adapter->tx_obj.cq;
1502 if (be_queue_alloc(adapter, cq, TX_CQ_LEN,
1503 sizeof(struct be_eth_tx_compl)))
1504 goto tx_eq_destroy;
1505
1506 /* Ask BE to create Tx eth compl queue */
Sathya Perla8788fdc2009-07-27 22:52:03 +00001507 if (be_cmd_cq_create(adapter, cq, eq, false, false, 3))
Sathya Perla6b7c5b92009-03-11 23:32:03 -07001508 goto tx_cq_free;
1509
1510 /* Alloc TX eth queue */
1511 q = &adapter->tx_obj.q;
1512 if (be_queue_alloc(adapter, q, TX_Q_LEN, sizeof(struct be_eth_wrb)))
1513 goto tx_cq_destroy;
1514
1515 /* Ask BE to create Tx eth queue */
Sathya Perla8788fdc2009-07-27 22:52:03 +00001516 if (be_cmd_txq_create(adapter, q, cq))
Sathya Perla6b7c5b92009-03-11 23:32:03 -07001517 goto tx_q_free;
1518 return 0;
1519
1520tx_q_free:
1521 be_queue_free(adapter, q);
1522tx_cq_destroy:
Sathya Perla8788fdc2009-07-27 22:52:03 +00001523 be_cmd_q_destroy(adapter, cq, QTYPE_CQ);
Sathya Perla6b7c5b92009-03-11 23:32:03 -07001524tx_cq_free:
1525 be_queue_free(adapter, cq);
1526tx_eq_destroy:
Sathya Perla8788fdc2009-07-27 22:52:03 +00001527 be_cmd_q_destroy(adapter, eq, QTYPE_EQ);
Sathya Perla6b7c5b92009-03-11 23:32:03 -07001528tx_eq_free:
1529 be_queue_free(adapter, eq);
1530 return -1;
1531}
1532
1533static void be_rx_queues_destroy(struct be_adapter *adapter)
1534{
1535 struct be_queue_info *q;
Sathya Perla3abcded2010-10-03 22:12:27 -07001536 struct be_rx_obj *rxo;
1537 int i;
Sathya Perla6b7c5b92009-03-11 23:32:03 -07001538
Sathya Perla3abcded2010-10-03 22:12:27 -07001539 for_all_rx_queues(adapter, rxo, i) {
1540 q = &rxo->q;
1541 if (q->created) {
1542 be_cmd_q_destroy(adapter, q, QTYPE_RXQ);
1543 /* After the rxq is invalidated, wait for a grace time
1544 * of 1ms for all dma to end and the flush compl to
1545 * arrive
1546 */
1547 mdelay(1);
1548 be_rx_q_clean(adapter, rxo);
1549 }
1550 be_queue_free(adapter, q);
Sathya Perla89420422010-02-17 01:35:26 +00001551
Sathya Perla3abcded2010-10-03 22:12:27 -07001552 q = &rxo->cq;
1553 if (q->created)
1554 be_cmd_q_destroy(adapter, q, QTYPE_CQ);
1555 be_queue_free(adapter, q);
1556
1557 /* Clear any residual events */
1558 q = &rxo->rx_eq.q;
1559 if (q->created) {
1560 be_eq_clean(adapter, &rxo->rx_eq);
1561 be_cmd_q_destroy(adapter, q, QTYPE_EQ);
1562 }
1563 be_queue_free(adapter, q);
Sathya Perla6b7c5b92009-03-11 23:32:03 -07001564 }
Sathya Perla6b7c5b92009-03-11 23:32:03 -07001565}
1566
1567static int be_rx_queues_create(struct be_adapter *adapter)
1568{
1569 struct be_queue_info *eq, *q, *cq;
Sathya Perla3abcded2010-10-03 22:12:27 -07001570 struct be_rx_obj *rxo;
1571 int rc, i;
Sathya Perla6b7c5b92009-03-11 23:32:03 -07001572
Sathya Perla6b7c5b92009-03-11 23:32:03 -07001573 adapter->big_page_size = (1 << get_order(rx_frag_size)) * PAGE_SIZE;
Sathya Perla3abcded2010-10-03 22:12:27 -07001574 for_all_rx_queues(adapter, rxo, i) {
1575 rxo->adapter = adapter;
1576 rxo->rx_eq.max_eqd = BE_MAX_EQD;
1577 rxo->rx_eq.enable_aic = true;
Sathya Perla6b7c5b92009-03-11 23:32:03 -07001578
Sathya Perla3abcded2010-10-03 22:12:27 -07001579 /* EQ */
1580 eq = &rxo->rx_eq.q;
1581 rc = be_queue_alloc(adapter, eq, EVNT_Q_LEN,
1582 sizeof(struct be_eq_entry));
1583 if (rc)
1584 goto err;
Sathya Perla6b7c5b92009-03-11 23:32:03 -07001585
Sathya Perla3abcded2010-10-03 22:12:27 -07001586 rc = be_cmd_eq_create(adapter, eq, rxo->rx_eq.cur_eqd);
1587 if (rc)
1588 goto err;
Sathya Perla6b7c5b92009-03-11 23:32:03 -07001589
Sathya Perlafe6d2a32010-11-21 23:25:50 +00001590 rxo->rx_eq.msix_vec_idx = adapter->msix_vec_next_idx++;
1591
Sathya Perla3abcded2010-10-03 22:12:27 -07001592 /* CQ */
1593 cq = &rxo->cq;
1594 rc = be_queue_alloc(adapter, cq, RX_CQ_LEN,
1595 sizeof(struct be_eth_rx_compl));
1596 if (rc)
1597 goto err;
Sathya Perla6b7c5b92009-03-11 23:32:03 -07001598
Sathya Perla3abcded2010-10-03 22:12:27 -07001599 rc = be_cmd_cq_create(adapter, cq, eq, false, false, 3);
1600 if (rc)
1601 goto err;
Sathya Perla3abcded2010-10-03 22:12:27 -07001602 /* Rx Q */
1603 q = &rxo->q;
1604 rc = be_queue_alloc(adapter, q, RX_Q_LEN,
1605 sizeof(struct be_eth_rx_d));
1606 if (rc)
1607 goto err;
Sathya Perla6b7c5b92009-03-11 23:32:03 -07001608
Sathya Perla3abcded2010-10-03 22:12:27 -07001609 rc = be_cmd_rxq_create(adapter, q, cq->id, rx_frag_size,
1610 BE_MAX_JUMBO_FRAME_SIZE, adapter->if_handle,
1611 (i > 0) ? 1 : 0/* rss enable */, &rxo->rss_id);
1612 if (rc)
1613 goto err;
1614 }
1615
1616 if (be_multi_rxq(adapter)) {
1617 u8 rsstable[MAX_RSS_QS];
1618
1619 for_all_rss_queues(adapter, rxo, i)
1620 rsstable[i] = rxo->rss_id;
1621
1622 rc = be_cmd_rss_config(adapter, rsstable,
1623 adapter->num_rx_qs - 1);
1624 if (rc)
1625 goto err;
1626 }
Sathya Perla6b7c5b92009-03-11 23:32:03 -07001627
1628 return 0;
Sathya Perla3abcded2010-10-03 22:12:27 -07001629err:
1630 be_rx_queues_destroy(adapter);
1631 return -1;
Sathya Perla6b7c5b92009-03-11 23:32:03 -07001632}
Sathya Perla6b7c5b92009-03-11 23:32:03 -07001633
Sathya Perlafe6d2a32010-11-21 23:25:50 +00001634static bool event_peek(struct be_eq_obj *eq_obj)
Sathya Perlab628bde2009-08-17 00:58:26 +00001635{
Sathya Perlafe6d2a32010-11-21 23:25:50 +00001636 struct be_eq_entry *eqe = queue_tail_node(&eq_obj->q);
1637 if (!eqe->evt)
1638 return false;
1639 else
1640 return true;
Sathya Perlab628bde2009-08-17 00:58:26 +00001641}
1642
Sathya Perla6b7c5b92009-03-11 23:32:03 -07001643static irqreturn_t be_intx(int irq, void *dev)
1644{
1645 struct be_adapter *adapter = dev;
Sathya Perla3abcded2010-10-03 22:12:27 -07001646 struct be_rx_obj *rxo;
Sathya Perlafe6d2a32010-11-21 23:25:50 +00001647 int isr, i, tx = 0 , rx = 0;
Sathya Perla6b7c5b92009-03-11 23:32:03 -07001648
Sathya Perlafe6d2a32010-11-21 23:25:50 +00001649 if (lancer_chip(adapter)) {
1650 if (event_peek(&adapter->tx_eq))
1651 tx = event_handle(adapter, &adapter->tx_eq);
1652 for_all_rx_queues(adapter, rxo, i) {
1653 if (event_peek(&rxo->rx_eq))
1654 rx |= event_handle(adapter, &rxo->rx_eq);
1655 }
Sathya Perla6b7c5b92009-03-11 23:32:03 -07001656
Sathya Perlafe6d2a32010-11-21 23:25:50 +00001657 if (!(tx || rx))
1658 return IRQ_NONE;
Sathya Perla3abcded2010-10-03 22:12:27 -07001659
Sathya Perlafe6d2a32010-11-21 23:25:50 +00001660 } else {
1661 isr = ioread32(adapter->csr + CEV_ISR0_OFFSET +
1662 (adapter->tx_eq.q.id / 8) * CEV_ISR_SIZE);
1663 if (!isr)
1664 return IRQ_NONE;
1665
1666 if ((1 << adapter->tx_eq.msix_vec_idx & isr))
1667 event_handle(adapter, &adapter->tx_eq);
1668
1669 for_all_rx_queues(adapter, rxo, i) {
1670 if ((1 << rxo->rx_eq.msix_vec_idx & isr))
1671 event_handle(adapter, &rxo->rx_eq);
1672 }
Sathya Perla3abcded2010-10-03 22:12:27 -07001673 }
Sathya Perlac001c212009-07-01 01:06:07 +00001674
Sathya Perla8788fdc2009-07-27 22:52:03 +00001675 return IRQ_HANDLED;
Sathya Perla6b7c5b92009-03-11 23:32:03 -07001676}
1677
1678static irqreturn_t be_msix_rx(int irq, void *dev)
1679{
Sathya Perla3abcded2010-10-03 22:12:27 -07001680 struct be_rx_obj *rxo = dev;
1681 struct be_adapter *adapter = rxo->adapter;
Sathya Perla6b7c5b92009-03-11 23:32:03 -07001682
Sathya Perla3abcded2010-10-03 22:12:27 -07001683 event_handle(adapter, &rxo->rx_eq);
Sathya Perla6b7c5b92009-03-11 23:32:03 -07001684
1685 return IRQ_HANDLED;
1686}
1687
Sathya Perla5fb379e2009-06-18 00:02:59 +00001688static irqreturn_t be_msix_tx_mcc(int irq, void *dev)
Sathya Perla6b7c5b92009-03-11 23:32:03 -07001689{
1690 struct be_adapter *adapter = dev;
1691
Sathya Perla8788fdc2009-07-27 22:52:03 +00001692 event_handle(adapter, &adapter->tx_eq);
Sathya Perla6b7c5b92009-03-11 23:32:03 -07001693
1694 return IRQ_HANDLED;
1695}
1696
Sathya Perla64642812010-12-01 01:04:17 +00001697static inline bool do_gro(struct be_rx_obj *rxo,
1698 struct be_eth_rx_compl *rxcp, u8 err)
Sathya Perla6b7c5b92009-03-11 23:32:03 -07001699{
Sathya Perla6b7c5b92009-03-11 23:32:03 -07001700 int tcp_frame = AMAP_GET_BITS(struct amap_eth_rx_compl, tcpf, rxcp);
1701
1702 if (err)
Sathya Perla3abcded2010-10-03 22:12:27 -07001703 rxo->stats.rxcp_err++;
Sathya Perla6b7c5b92009-03-11 23:32:03 -07001704
Ajit Khaparde5be93b92009-07-21 12:36:19 -07001705 return (tcp_frame && !err) ? true : false;
Sathya Perla6b7c5b92009-03-11 23:32:03 -07001706}
1707
stephen hemminger49b05222010-10-21 07:50:48 +00001708static int be_poll_rx(struct napi_struct *napi, int budget)
Sathya Perla6b7c5b92009-03-11 23:32:03 -07001709{
1710 struct be_eq_obj *rx_eq = container_of(napi, struct be_eq_obj, napi);
Sathya Perla3abcded2010-10-03 22:12:27 -07001711 struct be_rx_obj *rxo = container_of(rx_eq, struct be_rx_obj, rx_eq);
1712 struct be_adapter *adapter = rxo->adapter;
1713 struct be_queue_info *rx_cq = &rxo->cq;
Sathya Perla6b7c5b92009-03-11 23:32:03 -07001714 struct be_eth_rx_compl *rxcp;
1715 u32 work_done;
Padmanabh Ratnakare80d9da2011-03-07 03:07:58 +00001716 u16 num_rcvd;
Sathya Perla64642812010-12-01 01:04:17 +00001717 u8 err;
Sathya Perla6b7c5b92009-03-11 23:32:03 -07001718
Sathya Perla3abcded2010-10-03 22:12:27 -07001719 rxo->stats.rx_polls++;
Sathya Perla6b7c5b92009-03-11 23:32:03 -07001720 for (work_done = 0; work_done < budget; work_done++) {
Sathya Perla3abcded2010-10-03 22:12:27 -07001721 rxcp = be_rx_compl_get(rxo);
Sathya Perla6b7c5b92009-03-11 23:32:03 -07001722 if (!rxcp)
1723 break;
1724
Sathya Perla64642812010-12-01 01:04:17 +00001725 err = AMAP_GET_BITS(struct amap_eth_rx_compl, err, rxcp);
Sathya Perla64642812010-12-01 01:04:17 +00001726 num_rcvd = AMAP_GET_BITS(struct amap_eth_rx_compl, numfrags,
1727 rxcp);
Padmanabh Ratnakare80d9da2011-03-07 03:07:58 +00001728 /* Ignore flush completions */
1729 if (num_rcvd) {
Sathya Perla64642812010-12-01 01:04:17 +00001730 if (do_gro(rxo, rxcp, err))
1731 be_rx_compl_process_gro(adapter, rxo, rxcp);
1732 else
1733 be_rx_compl_process(adapter, rxo, rxcp);
1734 }
Sathya Perlaa7a0ef32009-06-10 02:23:28 +00001735
1736 be_rx_compl_reset(rxcp);
Sathya Perla6b7c5b92009-03-11 23:32:03 -07001737 }
1738
Sathya Perla6b7c5b92009-03-11 23:32:03 -07001739 /* Refill the queue */
Sathya Perla3abcded2010-10-03 22:12:27 -07001740 if (atomic_read(&rxo->q.used) < RX_FRAGS_REFILL_WM)
Eric Dumazet1829b082011-03-01 05:48:12 +00001741 be_post_rx_frags(rxo, GFP_ATOMIC);
Sathya Perla6b7c5b92009-03-11 23:32:03 -07001742
1743 /* All consumed */
1744 if (work_done < budget) {
1745 napi_complete(napi);
Sathya Perla8788fdc2009-07-27 22:52:03 +00001746 be_cq_notify(adapter, rx_cq->id, true, work_done);
Sathya Perla6b7c5b92009-03-11 23:32:03 -07001747 } else {
1748 /* More to be consumed; continue with interrupts disabled */
Sathya Perla8788fdc2009-07-27 22:52:03 +00001749 be_cq_notify(adapter, rx_cq->id, false, work_done);
Sathya Perla6b7c5b92009-03-11 23:32:03 -07001750 }
1751 return work_done;
1752}
1753
Sathya Perlaf31e50a2010-03-02 03:56:39 -08001754/* As TX and MCC share the same EQ check for both TX and MCC completions.
1755 * For TX/MCC we don't honour budget; consume everything
1756 */
1757static int be_poll_tx_mcc(struct napi_struct *napi, int budget)
Sathya Perla6b7c5b92009-03-11 23:32:03 -07001758{
Sathya Perlaf31e50a2010-03-02 03:56:39 -08001759 struct be_eq_obj *tx_eq = container_of(napi, struct be_eq_obj, napi);
1760 struct be_adapter *adapter =
1761 container_of(tx_eq, struct be_adapter, tx_eq);
Sathya Perla5fb379e2009-06-18 00:02:59 +00001762 struct be_queue_info *txq = &adapter->tx_obj.q;
1763 struct be_queue_info *tx_cq = &adapter->tx_obj.cq;
Sathya Perla6b7c5b92009-03-11 23:32:03 -07001764 struct be_eth_tx_compl *txcp;
Sathya Perlaf31e50a2010-03-02 03:56:39 -08001765 int tx_compl = 0, mcc_compl, status = 0;
Sathya Perla6b7c5b92009-03-11 23:32:03 -07001766 u16 end_idx;
1767
Sathya Perla5fb379e2009-06-18 00:02:59 +00001768 while ((txcp = be_tx_compl_get(tx_cq))) {
Sathya Perla6b7c5b92009-03-11 23:32:03 -07001769 end_idx = AMAP_GET_BITS(struct amap_eth_tx_compl,
Sathya Perlaf31e50a2010-03-02 03:56:39 -08001770 wrb_index, txcp);
Sathya Perla6b7c5b92009-03-11 23:32:03 -07001771 be_tx_compl_process(adapter, end_idx);
Sathya Perlaf31e50a2010-03-02 03:56:39 -08001772 tx_compl++;
Sathya Perla6b7c5b92009-03-11 23:32:03 -07001773 }
1774
Sathya Perlaf31e50a2010-03-02 03:56:39 -08001775 mcc_compl = be_process_mcc(adapter, &status);
1776
1777 napi_complete(napi);
1778
1779 if (mcc_compl) {
1780 struct be_mcc_obj *mcc_obj = &adapter->mcc_obj;
1781 be_cq_notify(adapter, mcc_obj->cq.id, true, mcc_compl);
1782 }
1783
1784 if (tx_compl) {
1785 be_cq_notify(adapter, adapter->tx_obj.cq.id, true, tx_compl);
Sathya Perla5fb379e2009-06-18 00:02:59 +00001786
1787 /* As Tx wrbs have been freed up, wake up netdev queue if
1788 * it was stopped due to lack of tx wrbs.
1789 */
1790 if (netif_queue_stopped(adapter->netdev) &&
Sathya Perla6b7c5b92009-03-11 23:32:03 -07001791 atomic_read(&txq->used) < txq->len / 2) {
Sathya Perla5fb379e2009-06-18 00:02:59 +00001792 netif_wake_queue(adapter->netdev);
1793 }
1794
Sathya Perla3abcded2010-10-03 22:12:27 -07001795 tx_stats(adapter)->be_tx_events++;
1796 tx_stats(adapter)->be_tx_compl += tx_compl;
Sathya Perla6b7c5b92009-03-11 23:32:03 -07001797 }
Sathya Perla6b7c5b92009-03-11 23:32:03 -07001798
1799 return 1;
1800}
1801
Ajit Khaparded053de92010-09-03 06:23:30 +00001802void be_detect_dump_ue(struct be_adapter *adapter)
Ajit Khaparde7c185272010-07-29 06:16:33 +00001803{
1804 u32 ue_status_lo, ue_status_hi, ue_status_lo_mask, ue_status_hi_mask;
1805 u32 i;
1806
1807 pci_read_config_dword(adapter->pdev,
1808 PCICFG_UE_STATUS_LOW, &ue_status_lo);
1809 pci_read_config_dword(adapter->pdev,
1810 PCICFG_UE_STATUS_HIGH, &ue_status_hi);
1811 pci_read_config_dword(adapter->pdev,
1812 PCICFG_UE_STATUS_LOW_MASK, &ue_status_lo_mask);
1813 pci_read_config_dword(adapter->pdev,
1814 PCICFG_UE_STATUS_HI_MASK, &ue_status_hi_mask);
1815
1816 ue_status_lo = (ue_status_lo & (~ue_status_lo_mask));
1817 ue_status_hi = (ue_status_hi & (~ue_status_hi_mask));
1818
Ajit Khaparded053de92010-09-03 06:23:30 +00001819 if (ue_status_lo || ue_status_hi) {
1820 adapter->ue_detected = true;
Ajit Khaparde7acc2082011-02-11 13:38:17 +00001821 adapter->eeh_err = true;
Ajit Khaparded053de92010-09-03 06:23:30 +00001822 dev_err(&adapter->pdev->dev, "UE Detected!!\n");
1823 }
1824
Ajit Khaparde7c185272010-07-29 06:16:33 +00001825 if (ue_status_lo) {
1826 for (i = 0; ue_status_lo; ue_status_lo >>= 1, i++) {
1827 if (ue_status_lo & 1)
1828 dev_err(&adapter->pdev->dev,
1829 "UE: %s bit set\n", ue_status_low_desc[i]);
1830 }
1831 }
1832 if (ue_status_hi) {
1833 for (i = 0; ue_status_hi; ue_status_hi >>= 1, i++) {
1834 if (ue_status_hi & 1)
1835 dev_err(&adapter->pdev->dev,
1836 "UE: %s bit set\n", ue_status_hi_desc[i]);
1837 }
1838 }
1839
1840}
1841
Sathya Perlaea1dae12009-03-19 23:56:20 -07001842static void be_worker(struct work_struct *work)
1843{
1844 struct be_adapter *adapter =
1845 container_of(work, struct be_adapter, work.work);
Sathya Perla3abcded2010-10-03 22:12:27 -07001846 struct be_rx_obj *rxo;
1847 int i;
Sathya Perlaea1dae12009-03-19 23:56:20 -07001848
Somnath Koturf203af72010-10-25 23:01:03 +00001849 /* when interrupts are not yet enabled, just reap any pending
1850 * mcc completions */
1851 if (!netif_running(adapter->netdev)) {
1852 int mcc_compl, status = 0;
1853
1854 mcc_compl = be_process_mcc(adapter, &status);
1855
1856 if (mcc_compl) {
1857 struct be_mcc_obj *mcc_obj = &adapter->mcc_obj;
1858 be_cq_notify(adapter, mcc_obj->cq.id, false, mcc_compl);
1859 }
Ajit Khaparde9b037f32011-02-11 13:38:29 +00001860
1861 if (!adapter->ue_detected && !lancer_chip(adapter))
1862 be_detect_dump_ue(adapter);
1863
Somnath Koturf203af72010-10-25 23:01:03 +00001864 goto reschedule;
1865 }
1866
Ajit Khapardeb2aebe62011-02-20 11:41:39 +00001867 if (!adapter->stats_cmd_sent)
Sathya Perla3abcded2010-10-03 22:12:27 -07001868 be_cmd_get_stats(adapter, &adapter->stats_cmd);
Sathya Perlaea1dae12009-03-19 23:56:20 -07001869
Sathya Perla4097f662009-03-24 16:40:13 -07001870 be_tx_rate_update(adapter);
Sathya Perla4097f662009-03-24 16:40:13 -07001871
Sathya Perla3abcded2010-10-03 22:12:27 -07001872 for_all_rx_queues(adapter, rxo, i) {
1873 be_rx_rate_update(rxo);
1874 be_rx_eqd_update(adapter, rxo);
1875
1876 if (rxo->rx_post_starved) {
1877 rxo->rx_post_starved = false;
Eric Dumazet1829b082011-03-01 05:48:12 +00001878 be_post_rx_frags(rxo, GFP_KERNEL);
Sathya Perla3abcded2010-10-03 22:12:27 -07001879 }
Sathya Perlaea1dae12009-03-19 23:56:20 -07001880 }
Sathya Perlafe6d2a32010-11-21 23:25:50 +00001881 if (!adapter->ue_detected && !lancer_chip(adapter))
Ajit Khaparded053de92010-09-03 06:23:30 +00001882 be_detect_dump_ue(adapter);
Sathya Perlaea1dae12009-03-19 23:56:20 -07001883
Somnath Koturf203af72010-10-25 23:01:03 +00001884reschedule:
Sathya Perlaea1dae12009-03-19 23:56:20 -07001885 schedule_delayed_work(&adapter->work, msecs_to_jiffies(1000));
1886}
1887
Sathya Perla8d56ff12009-11-22 22:02:26 +00001888static void be_msix_disable(struct be_adapter *adapter)
1889{
1890 if (adapter->msix_enabled) {
1891 pci_disable_msix(adapter->pdev);
1892 adapter->msix_enabled = false;
1893 }
1894}
1895
Sathya Perla3abcded2010-10-03 22:12:27 -07001896static int be_num_rxqs_get(struct be_adapter *adapter)
1897{
1898 if (multi_rxq && (adapter->function_caps & BE_FUNCTION_CAPS_RSS) &&
1899 !adapter->sriov_enabled && !(adapter->function_mode & 0x400)) {
1900 return 1 + MAX_RSS_QS; /* one default non-RSS queue */
1901 } else {
1902 dev_warn(&adapter->pdev->dev,
1903 "No support for multiple RX queues\n");
1904 return 1;
1905 }
1906}
1907
Sathya Perla6b7c5b92009-03-11 23:32:03 -07001908static void be_msix_enable(struct be_adapter *adapter)
1909{
Sathya Perla3abcded2010-10-03 22:12:27 -07001910#define BE_MIN_MSIX_VECTORS (1 + 1) /* Rx + Tx */
Sathya Perla6b7c5b92009-03-11 23:32:03 -07001911 int i, status;
1912
Sathya Perla3abcded2010-10-03 22:12:27 -07001913 adapter->num_rx_qs = be_num_rxqs_get(adapter);
1914
1915 for (i = 0; i < (adapter->num_rx_qs + 1); i++)
Sathya Perla6b7c5b92009-03-11 23:32:03 -07001916 adapter->msix_entries[i].entry = i;
1917
1918 status = pci_enable_msix(adapter->pdev, adapter->msix_entries,
Sathya Perla3abcded2010-10-03 22:12:27 -07001919 adapter->num_rx_qs + 1);
1920 if (status == 0) {
1921 goto done;
1922 } else if (status >= BE_MIN_MSIX_VECTORS) {
1923 if (pci_enable_msix(adapter->pdev, adapter->msix_entries,
1924 status) == 0) {
1925 adapter->num_rx_qs = status - 1;
1926 dev_warn(&adapter->pdev->dev,
1927 "Could alloc only %d MSIx vectors. "
1928 "Using %d RX Qs\n", status, adapter->num_rx_qs);
1929 goto done;
1930 }
1931 }
1932 return;
1933done:
1934 adapter->msix_enabled = true;
Sathya Perla6b7c5b92009-03-11 23:32:03 -07001935}
1936
Sarveshwar Bandiba343c72010-03-31 02:56:12 +00001937static void be_sriov_enable(struct be_adapter *adapter)
1938{
Sarveshwar Bandi344dbf12010-07-09 01:43:55 +00001939 be_check_sriov_fn_type(adapter);
Ajit Khaparde6dedec82010-07-29 06:15:32 +00001940#ifdef CONFIG_PCI_IOV
Sarveshwar Bandiba343c72010-03-31 02:56:12 +00001941 if (be_physfn(adapter) && num_vfs) {
Ajit Khaparde6dedec82010-07-29 06:15:32 +00001942 int status;
1943
Sarveshwar Bandiba343c72010-03-31 02:56:12 +00001944 status = pci_enable_sriov(adapter->pdev, num_vfs);
1945 adapter->sriov_enabled = status ? false : true;
1946 }
1947#endif
Sarveshwar Bandiba343c72010-03-31 02:56:12 +00001948}
1949
1950static void be_sriov_disable(struct be_adapter *adapter)
1951{
1952#ifdef CONFIG_PCI_IOV
1953 if (adapter->sriov_enabled) {
1954 pci_disable_sriov(adapter->pdev);
1955 adapter->sriov_enabled = false;
1956 }
1957#endif
1958}
1959
Sathya Perlafe6d2a32010-11-21 23:25:50 +00001960static inline int be_msix_vec_get(struct be_adapter *adapter,
1961 struct be_eq_obj *eq_obj)
Sathya Perla6b7c5b92009-03-11 23:32:03 -07001962{
Sathya Perlafe6d2a32010-11-21 23:25:50 +00001963 return adapter->msix_entries[eq_obj->msix_vec_idx].vector;
Sathya Perlab628bde2009-08-17 00:58:26 +00001964}
1965
1966static int be_request_irq(struct be_adapter *adapter,
1967 struct be_eq_obj *eq_obj,
Sathya Perla3abcded2010-10-03 22:12:27 -07001968 void *handler, char *desc, void *context)
Sathya Perlab628bde2009-08-17 00:58:26 +00001969{
1970 struct net_device *netdev = adapter->netdev;
1971 int vec;
1972
1973 sprintf(eq_obj->desc, "%s-%s", netdev->name, desc);
Sathya Perlafe6d2a32010-11-21 23:25:50 +00001974 vec = be_msix_vec_get(adapter, eq_obj);
Sathya Perla3abcded2010-10-03 22:12:27 -07001975 return request_irq(vec, handler, 0, eq_obj->desc, context);
Sathya Perlab628bde2009-08-17 00:58:26 +00001976}
1977
Sathya Perla3abcded2010-10-03 22:12:27 -07001978static void be_free_irq(struct be_adapter *adapter, struct be_eq_obj *eq_obj,
1979 void *context)
Sathya Perlab628bde2009-08-17 00:58:26 +00001980{
Sathya Perlafe6d2a32010-11-21 23:25:50 +00001981 int vec = be_msix_vec_get(adapter, eq_obj);
Sathya Perla3abcded2010-10-03 22:12:27 -07001982 free_irq(vec, context);
Sathya Perla6b7c5b92009-03-11 23:32:03 -07001983}
1984
1985static int be_msix_register(struct be_adapter *adapter)
1986{
Sathya Perla3abcded2010-10-03 22:12:27 -07001987 struct be_rx_obj *rxo;
1988 int status, i;
1989 char qname[10];
Sathya Perla6b7c5b92009-03-11 23:32:03 -07001990
Sathya Perla3abcded2010-10-03 22:12:27 -07001991 status = be_request_irq(adapter, &adapter->tx_eq, be_msix_tx_mcc, "tx",
1992 adapter);
Sathya Perla6b7c5b92009-03-11 23:32:03 -07001993 if (status)
1994 goto err;
1995
Sathya Perla3abcded2010-10-03 22:12:27 -07001996 for_all_rx_queues(adapter, rxo, i) {
1997 sprintf(qname, "rxq%d", i);
1998 status = be_request_irq(adapter, &rxo->rx_eq, be_msix_rx,
1999 qname, rxo);
2000 if (status)
2001 goto err_msix;
2002 }
Sathya Perlab628bde2009-08-17 00:58:26 +00002003
Sathya Perla6b7c5b92009-03-11 23:32:03 -07002004 return 0;
Sathya Perlab628bde2009-08-17 00:58:26 +00002005
Sathya Perla3abcded2010-10-03 22:12:27 -07002006err_msix:
2007 be_free_irq(adapter, &adapter->tx_eq, adapter);
2008
2009 for (i--, rxo = &adapter->rx_obj[i]; i >= 0; i--, rxo--)
2010 be_free_irq(adapter, &rxo->rx_eq, rxo);
2011
Sathya Perla6b7c5b92009-03-11 23:32:03 -07002012err:
2013 dev_warn(&adapter->pdev->dev,
2014 "MSIX Request IRQ failed - err %d\n", status);
2015 pci_disable_msix(adapter->pdev);
2016 adapter->msix_enabled = false;
2017 return status;
2018}
2019
2020static int be_irq_register(struct be_adapter *adapter)
2021{
2022 struct net_device *netdev = adapter->netdev;
2023 int status;
2024
2025 if (adapter->msix_enabled) {
2026 status = be_msix_register(adapter);
2027 if (status == 0)
2028 goto done;
Sarveshwar Bandiba343c72010-03-31 02:56:12 +00002029 /* INTx is not supported for VF */
2030 if (!be_physfn(adapter))
2031 return status;
Sathya Perla6b7c5b92009-03-11 23:32:03 -07002032 }
2033
2034 /* INTx */
2035 netdev->irq = adapter->pdev->irq;
2036 status = request_irq(netdev->irq, be_intx, IRQF_SHARED, netdev->name,
2037 adapter);
2038 if (status) {
2039 dev_err(&adapter->pdev->dev,
2040 "INTx request IRQ failed - err %d\n", status);
2041 return status;
2042 }
2043done:
2044 adapter->isr_registered = true;
2045 return 0;
2046}
2047
2048static void be_irq_unregister(struct be_adapter *adapter)
2049{
2050 struct net_device *netdev = adapter->netdev;
Sathya Perla3abcded2010-10-03 22:12:27 -07002051 struct be_rx_obj *rxo;
2052 int i;
Sathya Perla6b7c5b92009-03-11 23:32:03 -07002053
2054 if (!adapter->isr_registered)
2055 return;
2056
2057 /* INTx */
2058 if (!adapter->msix_enabled) {
2059 free_irq(netdev->irq, adapter);
2060 goto done;
2061 }
2062
2063 /* MSIx */
Sathya Perla3abcded2010-10-03 22:12:27 -07002064 be_free_irq(adapter, &adapter->tx_eq, adapter);
2065
2066 for_all_rx_queues(adapter, rxo, i)
2067 be_free_irq(adapter, &rxo->rx_eq, rxo);
2068
Sathya Perla6b7c5b92009-03-11 23:32:03 -07002069done:
2070 adapter->isr_registered = false;
Sathya Perla6b7c5b92009-03-11 23:32:03 -07002071}
2072
Sathya Perla889cd4b2010-05-30 23:33:45 +00002073static int be_close(struct net_device *netdev)
2074{
2075 struct be_adapter *adapter = netdev_priv(netdev);
Sathya Perla3abcded2010-10-03 22:12:27 -07002076 struct be_rx_obj *rxo;
Sathya Perla889cd4b2010-05-30 23:33:45 +00002077 struct be_eq_obj *tx_eq = &adapter->tx_eq;
Sathya Perla3abcded2010-10-03 22:12:27 -07002078 int vec, i;
Sathya Perla889cd4b2010-05-30 23:33:45 +00002079
Sathya Perla889cd4b2010-05-30 23:33:45 +00002080 be_async_mcc_disable(adapter);
2081
2082 netif_stop_queue(netdev);
2083 netif_carrier_off(netdev);
2084 adapter->link_up = false;
2085
Sathya Perlafe6d2a32010-11-21 23:25:50 +00002086 if (!lancer_chip(adapter))
2087 be_intr_set(adapter, false);
Sathya Perla889cd4b2010-05-30 23:33:45 +00002088
2089 if (adapter->msix_enabled) {
Sathya Perlafe6d2a32010-11-21 23:25:50 +00002090 vec = be_msix_vec_get(adapter, tx_eq);
Sathya Perla889cd4b2010-05-30 23:33:45 +00002091 synchronize_irq(vec);
Sathya Perla3abcded2010-10-03 22:12:27 -07002092
2093 for_all_rx_queues(adapter, rxo, i) {
Sathya Perlafe6d2a32010-11-21 23:25:50 +00002094 vec = be_msix_vec_get(adapter, &rxo->rx_eq);
Sathya Perla3abcded2010-10-03 22:12:27 -07002095 synchronize_irq(vec);
2096 }
Sathya Perla889cd4b2010-05-30 23:33:45 +00002097 } else {
2098 synchronize_irq(netdev->irq);
2099 }
2100 be_irq_unregister(adapter);
2101
Sathya Perla3abcded2010-10-03 22:12:27 -07002102 for_all_rx_queues(adapter, rxo, i)
2103 napi_disable(&rxo->rx_eq.napi);
2104
Sathya Perla889cd4b2010-05-30 23:33:45 +00002105 napi_disable(&tx_eq->napi);
2106
2107 /* Wait for all pending tx completions to arrive so that
2108 * all tx skbs are freed.
2109 */
2110 be_tx_compl_clean(adapter);
2111
2112 return 0;
2113}
2114
Sathya Perla6b7c5b92009-03-11 23:32:03 -07002115static int be_open(struct net_device *netdev)
2116{
2117 struct be_adapter *adapter = netdev_priv(netdev);
Sathya Perla6b7c5b92009-03-11 23:32:03 -07002118 struct be_eq_obj *tx_eq = &adapter->tx_eq;
Sathya Perla3abcded2010-10-03 22:12:27 -07002119 struct be_rx_obj *rxo;
Sathya Perlaa8f447bd2009-06-18 00:10:27 +00002120 bool link_up;
Sathya Perla3abcded2010-10-03 22:12:27 -07002121 int status, i;
Sarveshwar Bandi0388f252009-10-28 04:15:20 -07002122 u8 mac_speed;
2123 u16 link_speed;
Sathya Perla5fb379e2009-06-18 00:02:59 +00002124
Sathya Perla3abcded2010-10-03 22:12:27 -07002125 for_all_rx_queues(adapter, rxo, i) {
Eric Dumazet1829b082011-03-01 05:48:12 +00002126 be_post_rx_frags(rxo, GFP_KERNEL);
Sathya Perla3abcded2010-10-03 22:12:27 -07002127 napi_enable(&rxo->rx_eq.napi);
2128 }
Sathya Perla5fb379e2009-06-18 00:02:59 +00002129 napi_enable(&tx_eq->napi);
2130
2131 be_irq_register(adapter);
2132
Sathya Perlafe6d2a32010-11-21 23:25:50 +00002133 if (!lancer_chip(adapter))
2134 be_intr_set(adapter, true);
Sathya Perla5fb379e2009-06-18 00:02:59 +00002135
2136 /* The evt queues are created in unarmed state; arm them */
Sathya Perla3abcded2010-10-03 22:12:27 -07002137 for_all_rx_queues(adapter, rxo, i) {
2138 be_eq_notify(adapter, rxo->rx_eq.q.id, true, false, 0);
2139 be_cq_notify(adapter, rxo->cq.id, true, 0);
2140 }
Sathya Perla8788fdc2009-07-27 22:52:03 +00002141 be_eq_notify(adapter, tx_eq->q.id, true, false, 0);
Sathya Perla5fb379e2009-06-18 00:02:59 +00002142
Sathya Perla7a1e9b22010-02-17 01:35:11 +00002143 /* Now that interrupts are on we can process async mcc */
2144 be_async_mcc_enable(adapter);
2145
Sarveshwar Bandi0388f252009-10-28 04:15:20 -07002146 status = be_cmd_link_status_query(adapter, &link_up, &mac_speed,
2147 &link_speed);
Sathya Perlaa8f447bd2009-06-18 00:10:27 +00002148 if (status)
Sathya Perla889cd4b2010-05-30 23:33:45 +00002149 goto err;
Sathya Perlaa8f447bd2009-06-18 00:10:27 +00002150 be_link_status_update(adapter, link_up);
Sathya Perla5fb379e2009-06-18 00:02:59 +00002151
Sarveshwar Bandiba343c72010-03-31 02:56:12 +00002152 if (be_physfn(adapter)) {
Ajit Khaparde1da87b72010-07-23 01:51:22 +00002153 status = be_vid_config(adapter, false, 0);
Sathya Perla889cd4b2010-05-30 23:33:45 +00002154 if (status)
2155 goto err;
2156
Sarveshwar Bandiba343c72010-03-31 02:56:12 +00002157 status = be_cmd_set_flow_control(adapter,
2158 adapter->tx_fc, adapter->rx_fc);
2159 if (status)
Sathya Perla889cd4b2010-05-30 23:33:45 +00002160 goto err;
Sarveshwar Bandiba343c72010-03-31 02:56:12 +00002161 }
Ajit Khaparde4f2aa892009-11-06 02:07:32 +00002162
Sathya Perla889cd4b2010-05-30 23:33:45 +00002163 return 0;
2164err:
2165 be_close(adapter->netdev);
2166 return -EIO;
Sathya Perla5fb379e2009-06-18 00:02:59 +00002167}
2168
Ajit Khaparde71d8d1b2009-12-03 06:16:59 +00002169static int be_setup_wol(struct be_adapter *adapter, bool enable)
2170{
2171 struct be_dma_mem cmd;
2172 int status = 0;
2173 u8 mac[ETH_ALEN];
2174
2175 memset(mac, 0, ETH_ALEN);
2176
2177 cmd.size = sizeof(struct be_cmd_req_acpi_wol_magic_config);
Ivan Vecera2b7bceb2011-02-02 08:05:12 +00002178 cmd.va = dma_alloc_coherent(&adapter->pdev->dev, cmd.size, &cmd.dma,
2179 GFP_KERNEL);
Ajit Khaparde71d8d1b2009-12-03 06:16:59 +00002180 if (cmd.va == NULL)
2181 return -1;
2182 memset(cmd.va, 0, cmd.size);
2183
2184 if (enable) {
2185 status = pci_write_config_dword(adapter->pdev,
2186 PCICFG_PM_CONTROL_OFFSET, PCICFG_PM_CONTROL_MASK);
2187 if (status) {
2188 dev_err(&adapter->pdev->dev,
Frans Pop2381a552010-03-24 07:57:36 +00002189 "Could not enable Wake-on-lan\n");
Ivan Vecera2b7bceb2011-02-02 08:05:12 +00002190 dma_free_coherent(&adapter->pdev->dev, cmd.size, cmd.va,
2191 cmd.dma);
Ajit Khaparde71d8d1b2009-12-03 06:16:59 +00002192 return status;
2193 }
2194 status = be_cmd_enable_magic_wol(adapter,
2195 adapter->netdev->dev_addr, &cmd);
2196 pci_enable_wake(adapter->pdev, PCI_D3hot, 1);
2197 pci_enable_wake(adapter->pdev, PCI_D3cold, 1);
2198 } else {
2199 status = be_cmd_enable_magic_wol(adapter, mac, &cmd);
2200 pci_enable_wake(adapter->pdev, PCI_D3hot, 0);
2201 pci_enable_wake(adapter->pdev, PCI_D3cold, 0);
2202 }
2203
Ivan Vecera2b7bceb2011-02-02 08:05:12 +00002204 dma_free_coherent(&adapter->pdev->dev, cmd.size, cmd.va, cmd.dma);
Ajit Khaparde71d8d1b2009-12-03 06:16:59 +00002205 return status;
2206}
2207
Ajit Khaparde6d87f5c2010-08-25 00:32:33 +00002208/*
2209 * Generate a seed MAC address from the PF MAC Address using jhash.
2210 * MAC Address for VFs are assigned incrementally starting from the seed.
2211 * These addresses are programmed in the ASIC by the PF and the VF driver
2212 * queries for the MAC address during its probe.
2213 */
2214static inline int be_vf_eth_addr_config(struct be_adapter *adapter)
2215{
2216 u32 vf = 0;
Sathya Perla3abcded2010-10-03 22:12:27 -07002217 int status = 0;
Ajit Khaparde6d87f5c2010-08-25 00:32:33 +00002218 u8 mac[ETH_ALEN];
2219
2220 be_vf_eth_addr_generate(adapter, mac);
2221
2222 for (vf = 0; vf < num_vfs; vf++) {
2223 status = be_cmd_pmac_add(adapter, mac,
2224 adapter->vf_cfg[vf].vf_if_handle,
Ajit Khapardef8617e02011-02-11 13:36:37 +00002225 &adapter->vf_cfg[vf].vf_pmac_id,
2226 vf + 1);
Ajit Khaparde6d87f5c2010-08-25 00:32:33 +00002227 if (status)
2228 dev_err(&adapter->pdev->dev,
2229 "Mac address add failed for VF %d\n", vf);
2230 else
2231 memcpy(adapter->vf_cfg[vf].vf_mac_addr, mac, ETH_ALEN);
2232
2233 mac[5] += 1;
2234 }
2235 return status;
2236}
2237
2238static inline void be_vf_eth_addr_rem(struct be_adapter *adapter)
2239{
2240 u32 vf;
2241
2242 for (vf = 0; vf < num_vfs; vf++) {
2243 if (adapter->vf_cfg[vf].vf_pmac_id != BE_INVALID_PMAC_ID)
2244 be_cmd_pmac_del(adapter,
2245 adapter->vf_cfg[vf].vf_if_handle,
Ajit Khapardef8617e02011-02-11 13:36:37 +00002246 adapter->vf_cfg[vf].vf_pmac_id, vf + 1);
Ajit Khaparde6d87f5c2010-08-25 00:32:33 +00002247 }
2248}
2249
Sathya Perla5fb379e2009-06-18 00:02:59 +00002250static int be_setup(struct be_adapter *adapter)
2251{
Sathya Perla5fb379e2009-06-18 00:02:59 +00002252 struct net_device *netdev = adapter->netdev;
Sarveshwar Bandiba343c72010-03-31 02:56:12 +00002253 u32 cap_flags, en_flags, vf = 0;
Sathya Perla6b7c5b92009-03-11 23:32:03 -07002254 int status;
Sarveshwar Bandiba343c72010-03-31 02:56:12 +00002255 u8 mac[ETH_ALEN];
Sathya Perla6b7c5b92009-03-11 23:32:03 -07002256
Sarveshwar Bandiba343c72010-03-31 02:56:12 +00002257 cap_flags = en_flags = BE_IF_FLAGS_UNTAGGED | BE_IF_FLAGS_BROADCAST;
2258
2259 if (be_physfn(adapter)) {
2260 cap_flags |= BE_IF_FLAGS_MCAST_PROMISCUOUS |
2261 BE_IF_FLAGS_PROMISCUOUS |
2262 BE_IF_FLAGS_PASS_L3L4_ERRORS;
2263 en_flags |= BE_IF_FLAGS_PASS_L3L4_ERRORS;
Sathya Perla3abcded2010-10-03 22:12:27 -07002264
2265 if (be_multi_rxq(adapter)) {
2266 cap_flags |= BE_IF_FLAGS_RSS;
2267 en_flags |= BE_IF_FLAGS_RSS;
2268 }
Sarveshwar Bandiba343c72010-03-31 02:56:12 +00002269 }
Sathya Perla73d540f2009-10-14 20:20:42 +00002270
2271 status = be_cmd_if_create(adapter, cap_flags, en_flags,
2272 netdev->dev_addr, false/* pmac_invalid */,
Sarveshwar Bandiba343c72010-03-31 02:56:12 +00002273 &adapter->if_handle, &adapter->pmac_id, 0);
Sathya Perla6b7c5b92009-03-11 23:32:03 -07002274 if (status != 0)
2275 goto do_none;
2276
Sarveshwar Bandiba343c72010-03-31 02:56:12 +00002277 if (be_physfn(adapter)) {
Ajit Khapardec99ac3e2011-02-11 13:35:02 +00002278 if (adapter->sriov_enabled) {
2279 while (vf < num_vfs) {
2280 cap_flags = en_flags = BE_IF_FLAGS_UNTAGGED |
2281 BE_IF_FLAGS_BROADCAST;
2282 status = be_cmd_if_create(adapter, cap_flags,
2283 en_flags, mac, true,
Ajit Khaparde64600ea2010-07-23 01:50:34 +00002284 &adapter->vf_cfg[vf].vf_if_handle,
Sarveshwar Bandiba343c72010-03-31 02:56:12 +00002285 NULL, vf+1);
Ajit Khapardec99ac3e2011-02-11 13:35:02 +00002286 if (status) {
2287 dev_err(&adapter->pdev->dev,
2288 "Interface Create failed for VF %d\n",
2289 vf);
2290 goto if_destroy;
2291 }
2292 adapter->vf_cfg[vf].vf_pmac_id =
2293 BE_INVALID_PMAC_ID;
2294 vf++;
Sarveshwar Bandiba343c72010-03-31 02:56:12 +00002295 }
Sarveshwar Bandi84e5b9f2010-05-27 16:28:15 -07002296 }
Ajit Khapardec99ac3e2011-02-11 13:35:02 +00002297 } else {
Sarveshwar Bandiba343c72010-03-31 02:56:12 +00002298 status = be_cmd_mac_addr_query(adapter, mac,
2299 MAC_ADDRESS_TYPE_NETWORK, false, adapter->if_handle);
2300 if (!status) {
2301 memcpy(adapter->netdev->dev_addr, mac, ETH_ALEN);
2302 memcpy(adapter->netdev->perm_addr, mac, ETH_ALEN);
2303 }
2304 }
2305
Sathya Perla6b7c5b92009-03-11 23:32:03 -07002306 status = be_tx_queues_create(adapter);
2307 if (status != 0)
2308 goto if_destroy;
2309
2310 status = be_rx_queues_create(adapter);
2311 if (status != 0)
2312 goto tx_qs_destroy;
2313
Sathya Perla5fb379e2009-06-18 00:02:59 +00002314 status = be_mcc_queues_create(adapter);
2315 if (status != 0)
2316 goto rx_qs_destroy;
Sathya Perla6b7c5b92009-03-11 23:32:03 -07002317
Ajit Khaparde0dffc832009-11-29 17:57:46 +00002318 adapter->link_speed = -1;
2319
Sathya Perla6b7c5b92009-03-11 23:32:03 -07002320 return 0;
2321
Ajit Khaparde6d87f5c2010-08-25 00:32:33 +00002322 be_mcc_queues_destroy(adapter);
Sathya Perla5fb379e2009-06-18 00:02:59 +00002323rx_qs_destroy:
2324 be_rx_queues_destroy(adapter);
Sathya Perla6b7c5b92009-03-11 23:32:03 -07002325tx_qs_destroy:
2326 be_tx_queues_destroy(adapter);
2327if_destroy:
Ajit Khapardec99ac3e2011-02-11 13:35:02 +00002328 if (be_physfn(adapter) && adapter->sriov_enabled)
2329 for (vf = 0; vf < num_vfs; vf++)
2330 if (adapter->vf_cfg[vf].vf_if_handle)
2331 be_cmd_if_destroy(adapter,
Ajit Khaparde658681f2011-02-11 13:34:46 +00002332 adapter->vf_cfg[vf].vf_if_handle,
2333 vf + 1);
2334 be_cmd_if_destroy(adapter, adapter->if_handle, 0);
Sathya Perla6b7c5b92009-03-11 23:32:03 -07002335do_none:
2336 return status;
2337}
2338
Sathya Perla5fb379e2009-06-18 00:02:59 +00002339static int be_clear(struct be_adapter *adapter)
2340{
Ajit Khaparde7ab8b0b2011-02-11 13:35:56 +00002341 int vf;
2342
Ajit Khapardec99ac3e2011-02-11 13:35:02 +00002343 if (be_physfn(adapter) && adapter->sriov_enabled)
Ajit Khaparde6d87f5c2010-08-25 00:32:33 +00002344 be_vf_eth_addr_rem(adapter);
2345
Sathya Perla1a8887d2009-08-17 00:58:41 +00002346 be_mcc_queues_destroy(adapter);
Sathya Perla5fb379e2009-06-18 00:02:59 +00002347 be_rx_queues_destroy(adapter);
2348 be_tx_queues_destroy(adapter);
2349
Ajit Khaparde7ab8b0b2011-02-11 13:35:56 +00002350 if (be_physfn(adapter) && adapter->sriov_enabled)
2351 for (vf = 0; vf < num_vfs; vf++)
2352 if (adapter->vf_cfg[vf].vf_if_handle)
2353 be_cmd_if_destroy(adapter,
2354 adapter->vf_cfg[vf].vf_if_handle,
2355 vf + 1);
2356
Ajit Khaparde658681f2011-02-11 13:34:46 +00002357 be_cmd_if_destroy(adapter, adapter->if_handle, 0);
Sathya Perla5fb379e2009-06-18 00:02:59 +00002358
Sathya Perla2243e2e2009-11-22 22:02:03 +00002359 /* tell fw we're done with firing cmds */
2360 be_cmd_fw_clean(adapter);
Sathya Perla5fb379e2009-06-18 00:02:59 +00002361 return 0;
2362}
2363
Sathya Perla6b7c5b92009-03-11 23:32:03 -07002364
Ajit Khaparde84517482009-09-04 03:12:16 +00002365#define FW_FILE_HDR_SIGN "ServerEngines Corp. "
Sarveshwar Bandifa9a6fe2009-11-20 14:23:47 -08002366static bool be_flash_redboot(struct be_adapter *adapter,
Ajit Khaparde3f0d4562010-02-09 01:30:35 +00002367 const u8 *p, u32 img_start, int image_size,
2368 int hdr_size)
Sarveshwar Bandifa9a6fe2009-11-20 14:23:47 -08002369{
2370 u32 crc_offset;
2371 u8 flashed_crc[4];
2372 int status;
Ajit Khaparde3f0d4562010-02-09 01:30:35 +00002373
2374 crc_offset = hdr_size + img_start + image_size - 4;
2375
Sarveshwar Bandifa9a6fe2009-11-20 14:23:47 -08002376 p += crc_offset;
Ajit Khaparde3f0d4562010-02-09 01:30:35 +00002377
2378 status = be_cmd_get_flash_crc(adapter, flashed_crc,
Ajit Khapardef510fc62010-03-31 01:47:45 +00002379 (image_size - 4));
Sarveshwar Bandifa9a6fe2009-11-20 14:23:47 -08002380 if (status) {
2381 dev_err(&adapter->pdev->dev,
2382 "could not get crc from flash, not flashing redboot\n");
2383 return false;
2384 }
2385
2386 /*update redboot only if crc does not match*/
2387 if (!memcmp(flashed_crc, p, 4))
2388 return false;
2389 else
2390 return true;
Sarveshwar Bandifa9a6fe2009-11-20 14:23:47 -08002391}
2392
Ajit Khaparde3f0d4562010-02-09 01:30:35 +00002393static int be_flash_data(struct be_adapter *adapter,
Ajit Khaparde84517482009-09-04 03:12:16 +00002394 const struct firmware *fw,
Ajit Khaparde3f0d4562010-02-09 01:30:35 +00002395 struct be_dma_mem *flash_cmd, int num_of_images)
2396
Ajit Khaparde84517482009-09-04 03:12:16 +00002397{
Ajit Khaparde3f0d4562010-02-09 01:30:35 +00002398 int status = 0, i, filehdr_size = 0;
2399 u32 total_bytes = 0, flash_op;
Ajit Khaparde84517482009-09-04 03:12:16 +00002400 int num_bytes;
2401 const u8 *p = fw->data;
2402 struct be_cmd_write_flashrom *req = flash_cmd->va;
Joe Perches215faf92010-12-21 02:16:10 -08002403 const struct flash_comp *pflashcomp;
Sarveshwar Bandi9fe96932010-03-02 22:37:28 +00002404 int num_comp;
Ajit Khaparde84517482009-09-04 03:12:16 +00002405
Joe Perches215faf92010-12-21 02:16:10 -08002406 static const struct flash_comp gen3_flash_types[9] = {
Ajit Khaparde3f0d4562010-02-09 01:30:35 +00002407 { FLASH_iSCSI_PRIMARY_IMAGE_START_g3, IMG_TYPE_ISCSI_ACTIVE,
2408 FLASH_IMAGE_MAX_SIZE_g3},
2409 { FLASH_REDBOOT_START_g3, IMG_TYPE_REDBOOT,
2410 FLASH_REDBOOT_IMAGE_MAX_SIZE_g3},
2411 { FLASH_iSCSI_BIOS_START_g3, IMG_TYPE_BIOS,
2412 FLASH_BIOS_IMAGE_MAX_SIZE_g3},
2413 { FLASH_PXE_BIOS_START_g3, IMG_TYPE_PXE_BIOS,
2414 FLASH_BIOS_IMAGE_MAX_SIZE_g3},
2415 { FLASH_FCoE_BIOS_START_g3, IMG_TYPE_FCOE_BIOS,
2416 FLASH_BIOS_IMAGE_MAX_SIZE_g3},
2417 { FLASH_iSCSI_BACKUP_IMAGE_START_g3, IMG_TYPE_ISCSI_BACKUP,
2418 FLASH_IMAGE_MAX_SIZE_g3},
2419 { FLASH_FCoE_PRIMARY_IMAGE_START_g3, IMG_TYPE_FCOE_FW_ACTIVE,
2420 FLASH_IMAGE_MAX_SIZE_g3},
2421 { FLASH_FCoE_BACKUP_IMAGE_START_g3, IMG_TYPE_FCOE_FW_BACKUP,
Sarveshwar Bandi9fe96932010-03-02 22:37:28 +00002422 FLASH_IMAGE_MAX_SIZE_g3},
2423 { FLASH_NCSI_START_g3, IMG_TYPE_NCSI_FW,
2424 FLASH_NCSI_IMAGE_MAX_SIZE_g3}
Ajit Khaparde3f0d4562010-02-09 01:30:35 +00002425 };
Joe Perches215faf92010-12-21 02:16:10 -08002426 static const struct flash_comp gen2_flash_types[8] = {
Ajit Khaparde3f0d4562010-02-09 01:30:35 +00002427 { FLASH_iSCSI_PRIMARY_IMAGE_START_g2, IMG_TYPE_ISCSI_ACTIVE,
2428 FLASH_IMAGE_MAX_SIZE_g2},
2429 { FLASH_REDBOOT_START_g2, IMG_TYPE_REDBOOT,
2430 FLASH_REDBOOT_IMAGE_MAX_SIZE_g2},
2431 { FLASH_iSCSI_BIOS_START_g2, IMG_TYPE_BIOS,
2432 FLASH_BIOS_IMAGE_MAX_SIZE_g2},
2433 { FLASH_PXE_BIOS_START_g2, IMG_TYPE_PXE_BIOS,
2434 FLASH_BIOS_IMAGE_MAX_SIZE_g2},
2435 { FLASH_FCoE_BIOS_START_g2, IMG_TYPE_FCOE_BIOS,
2436 FLASH_BIOS_IMAGE_MAX_SIZE_g2},
2437 { FLASH_iSCSI_BACKUP_IMAGE_START_g2, IMG_TYPE_ISCSI_BACKUP,
2438 FLASH_IMAGE_MAX_SIZE_g2},
2439 { FLASH_FCoE_PRIMARY_IMAGE_START_g2, IMG_TYPE_FCOE_FW_ACTIVE,
2440 FLASH_IMAGE_MAX_SIZE_g2},
2441 { FLASH_FCoE_BACKUP_IMAGE_START_g2, IMG_TYPE_FCOE_FW_BACKUP,
2442 FLASH_IMAGE_MAX_SIZE_g2}
2443 };
2444
2445 if (adapter->generation == BE_GEN3) {
2446 pflashcomp = gen3_flash_types;
2447 filehdr_size = sizeof(struct flash_file_hdr_g3);
Joe Perches215faf92010-12-21 02:16:10 -08002448 num_comp = ARRAY_SIZE(gen3_flash_types);
Ajit Khaparde3f0d4562010-02-09 01:30:35 +00002449 } else {
2450 pflashcomp = gen2_flash_types;
2451 filehdr_size = sizeof(struct flash_file_hdr_g2);
Joe Perches215faf92010-12-21 02:16:10 -08002452 num_comp = ARRAY_SIZE(gen2_flash_types);
Ajit Khaparde84517482009-09-04 03:12:16 +00002453 }
Sarveshwar Bandi9fe96932010-03-02 22:37:28 +00002454 for (i = 0; i < num_comp; i++) {
2455 if ((pflashcomp[i].optype == IMG_TYPE_NCSI_FW) &&
2456 memcmp(adapter->fw_ver, "3.102.148.0", 11) < 0)
2457 continue;
Ajit Khaparde3f0d4562010-02-09 01:30:35 +00002458 if ((pflashcomp[i].optype == IMG_TYPE_REDBOOT) &&
2459 (!be_flash_redboot(adapter, fw->data,
Ajit Khapardefae21a42011-02-11 13:37:42 +00002460 pflashcomp[i].offset, pflashcomp[i].size, filehdr_size +
2461 (num_of_images * sizeof(struct image_hdr)))))
Ajit Khaparde3f0d4562010-02-09 01:30:35 +00002462 continue;
2463 p = fw->data;
2464 p += filehdr_size + pflashcomp[i].offset
2465 + (num_of_images * sizeof(struct image_hdr));
2466 if (p + pflashcomp[i].size > fw->data + fw->size)
Ajit Khaparde84517482009-09-04 03:12:16 +00002467 return -1;
Ajit Khaparde3f0d4562010-02-09 01:30:35 +00002468 total_bytes = pflashcomp[i].size;
2469 while (total_bytes) {
2470 if (total_bytes > 32*1024)
2471 num_bytes = 32*1024;
2472 else
2473 num_bytes = total_bytes;
2474 total_bytes -= num_bytes;
Ajit Khaparde84517482009-09-04 03:12:16 +00002475
Ajit Khaparde3f0d4562010-02-09 01:30:35 +00002476 if (!total_bytes)
2477 flash_op = FLASHROM_OPER_FLASH;
2478 else
2479 flash_op = FLASHROM_OPER_SAVE;
2480 memcpy(req->params.data_buf, p, num_bytes);
2481 p += num_bytes;
2482 status = be_cmd_write_flashrom(adapter, flash_cmd,
2483 pflashcomp[i].optype, flash_op, num_bytes);
2484 if (status) {
2485 dev_err(&adapter->pdev->dev,
2486 "cmd to write to flash rom failed.\n");
2487 return -1;
2488 }
2489 yield();
Ajit Khaparde84517482009-09-04 03:12:16 +00002490 }
Ajit Khaparde84517482009-09-04 03:12:16 +00002491 }
Ajit Khaparde84517482009-09-04 03:12:16 +00002492 return 0;
2493}
2494
Ajit Khaparde3f0d4562010-02-09 01:30:35 +00002495static int get_ufigen_type(struct flash_file_hdr_g2 *fhdr)
2496{
2497 if (fhdr == NULL)
2498 return 0;
2499 if (fhdr->build[0] == '3')
2500 return BE_GEN3;
2501 else if (fhdr->build[0] == '2')
2502 return BE_GEN2;
2503 else
2504 return 0;
2505}
2506
Ajit Khaparde84517482009-09-04 03:12:16 +00002507int be_load_fw(struct be_adapter *adapter, u8 *func)
2508{
2509 char fw_file[ETHTOOL_FLASH_MAX_FILENAME];
2510 const struct firmware *fw;
Ajit Khaparde3f0d4562010-02-09 01:30:35 +00002511 struct flash_file_hdr_g2 *fhdr;
2512 struct flash_file_hdr_g3 *fhdr3;
2513 struct image_hdr *img_hdr_ptr = NULL;
Ajit Khaparde84517482009-09-04 03:12:16 +00002514 struct be_dma_mem flash_cmd;
Ajit Khaparde8b93b712010-03-31 01:57:10 +00002515 int status, i = 0, num_imgs = 0;
Ajit Khaparde84517482009-09-04 03:12:16 +00002516 const u8 *p;
Ajit Khaparde84517482009-09-04 03:12:16 +00002517
Sarveshwar Bandid9efd2a2010-11-18 23:44:45 +00002518 if (!netif_running(adapter->netdev)) {
2519 dev_err(&adapter->pdev->dev,
2520 "Firmware load not allowed (interface is down)\n");
2521 return -EPERM;
2522 }
2523
Ajit Khaparde84517482009-09-04 03:12:16 +00002524 strcpy(fw_file, func);
2525
2526 status = request_firmware(&fw, fw_file, &adapter->pdev->dev);
2527 if (status)
2528 goto fw_exit;
2529
2530 p = fw->data;
Ajit Khaparde3f0d4562010-02-09 01:30:35 +00002531 fhdr = (struct flash_file_hdr_g2 *) p;
Ajit Khaparde84517482009-09-04 03:12:16 +00002532 dev_info(&adapter->pdev->dev, "Flashing firmware file %s\n", fw_file);
2533
Ajit Khaparde84517482009-09-04 03:12:16 +00002534 flash_cmd.size = sizeof(struct be_cmd_write_flashrom) + 32*1024;
Ivan Vecera2b7bceb2011-02-02 08:05:12 +00002535 flash_cmd.va = dma_alloc_coherent(&adapter->pdev->dev, flash_cmd.size,
2536 &flash_cmd.dma, GFP_KERNEL);
Ajit Khaparde84517482009-09-04 03:12:16 +00002537 if (!flash_cmd.va) {
2538 status = -ENOMEM;
2539 dev_err(&adapter->pdev->dev,
2540 "Memory allocation failure while flashing\n");
2541 goto fw_exit;
2542 }
2543
Ajit Khaparde3f0d4562010-02-09 01:30:35 +00002544 if ((adapter->generation == BE_GEN3) &&
2545 (get_ufigen_type(fhdr) == BE_GEN3)) {
2546 fhdr3 = (struct flash_file_hdr_g3 *) fw->data;
Ajit Khaparde8b93b712010-03-31 01:57:10 +00002547 num_imgs = le32_to_cpu(fhdr3->num_imgs);
2548 for (i = 0; i < num_imgs; i++) {
Ajit Khaparde3f0d4562010-02-09 01:30:35 +00002549 img_hdr_ptr = (struct image_hdr *) (fw->data +
2550 (sizeof(struct flash_file_hdr_g3) +
Ajit Khaparde8b93b712010-03-31 01:57:10 +00002551 i * sizeof(struct image_hdr)));
2552 if (le32_to_cpu(img_hdr_ptr->imageid) == 1)
2553 status = be_flash_data(adapter, fw, &flash_cmd,
2554 num_imgs);
Ajit Khaparde3f0d4562010-02-09 01:30:35 +00002555 }
2556 } else if ((adapter->generation == BE_GEN2) &&
2557 (get_ufigen_type(fhdr) == BE_GEN2)) {
2558 status = be_flash_data(adapter, fw, &flash_cmd, 0);
2559 } else {
2560 dev_err(&adapter->pdev->dev,
2561 "UFI and Interface are not compatible for flashing\n");
2562 status = -1;
Ajit Khaparde84517482009-09-04 03:12:16 +00002563 }
2564
Ivan Vecera2b7bceb2011-02-02 08:05:12 +00002565 dma_free_coherent(&adapter->pdev->dev, flash_cmd.size, flash_cmd.va,
2566 flash_cmd.dma);
Ajit Khaparde84517482009-09-04 03:12:16 +00002567 if (status) {
2568 dev_err(&adapter->pdev->dev, "Firmware load error\n");
2569 goto fw_exit;
2570 }
2571
André Goddard Rosaaf901ca2009-11-14 13:09:05 -02002572 dev_info(&adapter->pdev->dev, "Firmware flashed successfully\n");
Ajit Khaparde84517482009-09-04 03:12:16 +00002573
2574fw_exit:
2575 release_firmware(fw);
2576 return status;
2577}
2578
Sathya Perla6b7c5b92009-03-11 23:32:03 -07002579static struct net_device_ops be_netdev_ops = {
2580 .ndo_open = be_open,
2581 .ndo_stop = be_close,
2582 .ndo_start_xmit = be_xmit,
Sathya Perla6b7c5b92009-03-11 23:32:03 -07002583 .ndo_set_rx_mode = be_set_multicast_list,
2584 .ndo_set_mac_address = be_mac_addr_set,
2585 .ndo_change_mtu = be_change_mtu,
2586 .ndo_validate_addr = eth_validate_addr,
2587 .ndo_vlan_rx_register = be_vlan_register,
2588 .ndo_vlan_rx_add_vid = be_vlan_add_vid,
2589 .ndo_vlan_rx_kill_vid = be_vlan_rem_vid,
Ajit Khaparde64600ea2010-07-23 01:50:34 +00002590 .ndo_set_vf_mac = be_set_vf_mac,
Ajit Khaparde1da87b72010-07-23 01:51:22 +00002591 .ndo_set_vf_vlan = be_set_vf_vlan,
Ajit Khapardee1d18732010-07-23 01:52:13 +00002592 .ndo_set_vf_tx_rate = be_set_vf_tx_rate,
Ajit Khaparde64600ea2010-07-23 01:50:34 +00002593 .ndo_get_vf_config = be_get_vf_config
Sathya Perla6b7c5b92009-03-11 23:32:03 -07002594};
2595
2596static void be_netdev_init(struct net_device *netdev)
2597{
2598 struct be_adapter *adapter = netdev_priv(netdev);
Sathya Perla3abcded2010-10-03 22:12:27 -07002599 struct be_rx_obj *rxo;
2600 int i;
Sathya Perla6b7c5b92009-03-11 23:32:03 -07002601
2602 netdev->features |= NETIF_F_SG | NETIF_F_HW_VLAN_RX | NETIF_F_TSO |
Michał Mirosław79032642010-11-30 06:38:00 +00002603 NETIF_F_HW_VLAN_TX | NETIF_F_HW_VLAN_FILTER |
2604 NETIF_F_IP_CSUM | NETIF_F_IPV6_CSUM |
Ajit Khaparde49e4b8472010-06-14 04:56:07 +00002605 NETIF_F_GRO | NETIF_F_TSO6;
Sathya Perla6b7c5b92009-03-11 23:32:03 -07002606
Michał Mirosław79032642010-11-30 06:38:00 +00002607 netdev->vlan_features |= NETIF_F_SG | NETIF_F_TSO |
2608 NETIF_F_IP_CSUM | NETIF_F_IPV6_CSUM;
Ajit Khaparde51c59872009-11-29 17:54:54 +00002609
Sathya Perlafe6d2a32010-11-21 23:25:50 +00002610 if (lancer_chip(adapter))
2611 netdev->vlan_features |= NETIF_F_TSO6;
2612
Sathya Perla6b7c5b92009-03-11 23:32:03 -07002613 netdev->flags |= IFF_MULTICAST;
2614
Ajit Khaparde728a9972009-04-13 15:41:22 -07002615 adapter->rx_csum = true;
2616
Ajit Khaparde9e90c962009-11-06 02:06:59 +00002617 /* Default settings for Rx and Tx flow control */
2618 adapter->rx_fc = true;
2619 adapter->tx_fc = true;
2620
Ajit Khapardec190e3c2009-09-04 03:12:29 +00002621 netif_set_gso_max_size(netdev, 65535);
2622
Sathya Perla6b7c5b92009-03-11 23:32:03 -07002623 BE_SET_NETDEV_OPS(netdev, &be_netdev_ops);
2624
2625 SET_ETHTOOL_OPS(netdev, &be_ethtool_ops);
2626
Sathya Perla3abcded2010-10-03 22:12:27 -07002627 for_all_rx_queues(adapter, rxo, i)
2628 netif_napi_add(netdev, &rxo->rx_eq.napi, be_poll_rx,
2629 BE_NAPI_WEIGHT);
2630
Sathya Perla5fb379e2009-06-18 00:02:59 +00002631 netif_napi_add(netdev, &adapter->tx_eq.napi, be_poll_tx_mcc,
Sathya Perla6b7c5b92009-03-11 23:32:03 -07002632 BE_NAPI_WEIGHT);
Sathya Perla6b7c5b92009-03-11 23:32:03 -07002633}
2634
2635static void be_unmap_pci_bars(struct be_adapter *adapter)
2636{
Sathya Perla8788fdc2009-07-27 22:52:03 +00002637 if (adapter->csr)
2638 iounmap(adapter->csr);
2639 if (adapter->db)
2640 iounmap(adapter->db);
Sarveshwar Bandiba343c72010-03-31 02:56:12 +00002641 if (adapter->pcicfg && be_physfn(adapter))
Sathya Perla8788fdc2009-07-27 22:52:03 +00002642 iounmap(adapter->pcicfg);
Sathya Perla6b7c5b92009-03-11 23:32:03 -07002643}
2644
2645static int be_map_pci_bars(struct be_adapter *adapter)
2646{
2647 u8 __iomem *addr;
Sarveshwar Bandiba343c72010-03-31 02:56:12 +00002648 int pcicfg_reg, db_reg;
Sathya Perla6b7c5b92009-03-11 23:32:03 -07002649
Sathya Perlafe6d2a32010-11-21 23:25:50 +00002650 if (lancer_chip(adapter)) {
2651 addr = ioremap_nocache(pci_resource_start(adapter->pdev, 0),
2652 pci_resource_len(adapter->pdev, 0));
2653 if (addr == NULL)
2654 return -ENOMEM;
2655 adapter->db = addr;
2656 return 0;
2657 }
2658
Sarveshwar Bandiba343c72010-03-31 02:56:12 +00002659 if (be_physfn(adapter)) {
2660 addr = ioremap_nocache(pci_resource_start(adapter->pdev, 2),
2661 pci_resource_len(adapter->pdev, 2));
2662 if (addr == NULL)
2663 return -ENOMEM;
2664 adapter->csr = addr;
2665 }
Sathya Perla6b7c5b92009-03-11 23:32:03 -07002666
Sarveshwar Bandiba343c72010-03-31 02:56:12 +00002667 if (adapter->generation == BE_GEN2) {
2668 pcicfg_reg = 1;
2669 db_reg = 4;
2670 } else {
2671 pcicfg_reg = 0;
2672 if (be_physfn(adapter))
2673 db_reg = 4;
2674 else
2675 db_reg = 0;
2676 }
2677 addr = ioremap_nocache(pci_resource_start(adapter->pdev, db_reg),
2678 pci_resource_len(adapter->pdev, db_reg));
Sathya Perla6b7c5b92009-03-11 23:32:03 -07002679 if (addr == NULL)
2680 goto pci_map_err;
Sathya Perla8788fdc2009-07-27 22:52:03 +00002681 adapter->db = addr;
Sathya Perla6b7c5b92009-03-11 23:32:03 -07002682
Sarveshwar Bandiba343c72010-03-31 02:56:12 +00002683 if (be_physfn(adapter)) {
2684 addr = ioremap_nocache(
2685 pci_resource_start(adapter->pdev, pcicfg_reg),
2686 pci_resource_len(adapter->pdev, pcicfg_reg));
2687 if (addr == NULL)
2688 goto pci_map_err;
2689 adapter->pcicfg = addr;
2690 } else
2691 adapter->pcicfg = adapter->db + SRIOV_VF_PCICFG_OFFSET;
Sathya Perla6b7c5b92009-03-11 23:32:03 -07002692
2693 return 0;
2694pci_map_err:
2695 be_unmap_pci_bars(adapter);
2696 return -ENOMEM;
2697}
2698
2699
2700static void be_ctrl_cleanup(struct be_adapter *adapter)
2701{
Sathya Perla8788fdc2009-07-27 22:52:03 +00002702 struct be_dma_mem *mem = &adapter->mbox_mem_alloced;
Sathya Perla6b7c5b92009-03-11 23:32:03 -07002703
2704 be_unmap_pci_bars(adapter);
2705
2706 if (mem->va)
Ivan Vecera2b7bceb2011-02-02 08:05:12 +00002707 dma_free_coherent(&adapter->pdev->dev, mem->size, mem->va,
2708 mem->dma);
Sathya Perlae7b909a2009-11-22 22:01:10 +00002709
2710 mem = &adapter->mc_cmd_mem;
2711 if (mem->va)
Ivan Vecera2b7bceb2011-02-02 08:05:12 +00002712 dma_free_coherent(&adapter->pdev->dev, mem->size, mem->va,
2713 mem->dma);
Sathya Perla6b7c5b92009-03-11 23:32:03 -07002714}
2715
Sathya Perla6b7c5b92009-03-11 23:32:03 -07002716static int be_ctrl_init(struct be_adapter *adapter)
2717{
Sathya Perla8788fdc2009-07-27 22:52:03 +00002718 struct be_dma_mem *mbox_mem_alloc = &adapter->mbox_mem_alloced;
2719 struct be_dma_mem *mbox_mem_align = &adapter->mbox_mem;
Sathya Perlae7b909a2009-11-22 22:01:10 +00002720 struct be_dma_mem *mc_cmd_mem = &adapter->mc_cmd_mem;
Sathya Perla6b7c5b92009-03-11 23:32:03 -07002721 int status;
Sathya Perla6b7c5b92009-03-11 23:32:03 -07002722
2723 status = be_map_pci_bars(adapter);
2724 if (status)
Sathya Perlae7b909a2009-11-22 22:01:10 +00002725 goto done;
Sathya Perla6b7c5b92009-03-11 23:32:03 -07002726
2727 mbox_mem_alloc->size = sizeof(struct be_mcc_mailbox) + 16;
Ivan Vecera2b7bceb2011-02-02 08:05:12 +00002728 mbox_mem_alloc->va = dma_alloc_coherent(&adapter->pdev->dev,
2729 mbox_mem_alloc->size,
2730 &mbox_mem_alloc->dma,
2731 GFP_KERNEL);
Sathya Perla6b7c5b92009-03-11 23:32:03 -07002732 if (!mbox_mem_alloc->va) {
Sathya Perlae7b909a2009-11-22 22:01:10 +00002733 status = -ENOMEM;
2734 goto unmap_pci_bars;
Sathya Perla6b7c5b92009-03-11 23:32:03 -07002735 }
Sathya Perlae7b909a2009-11-22 22:01:10 +00002736
Sathya Perla6b7c5b92009-03-11 23:32:03 -07002737 mbox_mem_align->size = sizeof(struct be_mcc_mailbox);
2738 mbox_mem_align->va = PTR_ALIGN(mbox_mem_alloc->va, 16);
2739 mbox_mem_align->dma = PTR_ALIGN(mbox_mem_alloc->dma, 16);
2740 memset(mbox_mem_align->va, 0, sizeof(struct be_mcc_mailbox));
Sathya Perlae7b909a2009-11-22 22:01:10 +00002741
2742 mc_cmd_mem->size = sizeof(struct be_cmd_req_mcast_mac_config);
Ivan Vecera2b7bceb2011-02-02 08:05:12 +00002743 mc_cmd_mem->va = dma_alloc_coherent(&adapter->pdev->dev,
2744 mc_cmd_mem->size, &mc_cmd_mem->dma,
2745 GFP_KERNEL);
Sathya Perlae7b909a2009-11-22 22:01:10 +00002746 if (mc_cmd_mem->va == NULL) {
2747 status = -ENOMEM;
2748 goto free_mbox;
2749 }
2750 memset(mc_cmd_mem->va, 0, mc_cmd_mem->size);
2751
Ivan Vecera29849612010-12-14 05:43:19 +00002752 mutex_init(&adapter->mbox_lock);
Sathya Perla8788fdc2009-07-27 22:52:03 +00002753 spin_lock_init(&adapter->mcc_lock);
2754 spin_lock_init(&adapter->mcc_cq_lock);
Sathya Perla6b7c5b92009-03-11 23:32:03 -07002755
Sarveshwar Bandidd131e72010-05-25 16:16:32 -07002756 init_completion(&adapter->flash_compl);
Sathya Perlacf588472010-02-14 21:22:01 +00002757 pci_save_state(adapter->pdev);
Sathya Perla6b7c5b92009-03-11 23:32:03 -07002758 return 0;
Sathya Perlae7b909a2009-11-22 22:01:10 +00002759
2760free_mbox:
Ivan Vecera2b7bceb2011-02-02 08:05:12 +00002761 dma_free_coherent(&adapter->pdev->dev, mbox_mem_alloc->size,
2762 mbox_mem_alloc->va, mbox_mem_alloc->dma);
Sathya Perlae7b909a2009-11-22 22:01:10 +00002763
2764unmap_pci_bars:
2765 be_unmap_pci_bars(adapter);
2766
2767done:
2768 return status;
Sathya Perla6b7c5b92009-03-11 23:32:03 -07002769}
2770
2771static void be_stats_cleanup(struct be_adapter *adapter)
2772{
Sathya Perla3abcded2010-10-03 22:12:27 -07002773 struct be_dma_mem *cmd = &adapter->stats_cmd;
Sathya Perla6b7c5b92009-03-11 23:32:03 -07002774
2775 if (cmd->va)
Ivan Vecera2b7bceb2011-02-02 08:05:12 +00002776 dma_free_coherent(&adapter->pdev->dev, cmd->size,
2777 cmd->va, cmd->dma);
Sathya Perla6b7c5b92009-03-11 23:32:03 -07002778}
2779
2780static int be_stats_init(struct be_adapter *adapter)
2781{
Sathya Perla3abcded2010-10-03 22:12:27 -07002782 struct be_dma_mem *cmd = &adapter->stats_cmd;
Sathya Perla6b7c5b92009-03-11 23:32:03 -07002783
2784 cmd->size = sizeof(struct be_cmd_req_get_stats);
Ivan Vecera2b7bceb2011-02-02 08:05:12 +00002785 cmd->va = dma_alloc_coherent(&adapter->pdev->dev, cmd->size, &cmd->dma,
2786 GFP_KERNEL);
Sathya Perla6b7c5b92009-03-11 23:32:03 -07002787 if (cmd->va == NULL)
2788 return -1;
David S. Millerd291b9a2010-01-28 21:36:21 -08002789 memset(cmd->va, 0, cmd->size);
Sathya Perla6b7c5b92009-03-11 23:32:03 -07002790 return 0;
2791}
2792
2793static void __devexit be_remove(struct pci_dev *pdev)
2794{
2795 struct be_adapter *adapter = pci_get_drvdata(pdev);
Sathya Perla8d56ff12009-11-22 22:02:26 +00002796
Sathya Perla6b7c5b92009-03-11 23:32:03 -07002797 if (!adapter)
2798 return;
2799
Somnath Koturf203af72010-10-25 23:01:03 +00002800 cancel_delayed_work_sync(&adapter->work);
2801
Sathya Perla6b7c5b92009-03-11 23:32:03 -07002802 unregister_netdev(adapter->netdev);
2803
Sathya Perla5fb379e2009-06-18 00:02:59 +00002804 be_clear(adapter);
2805
Sathya Perla6b7c5b92009-03-11 23:32:03 -07002806 be_stats_cleanup(adapter);
2807
2808 be_ctrl_cleanup(adapter);
2809
Sarveshwar Bandiba343c72010-03-31 02:56:12 +00002810 be_sriov_disable(adapter);
2811
Sathya Perla8d56ff12009-11-22 22:02:26 +00002812 be_msix_disable(adapter);
Sathya Perla6b7c5b92009-03-11 23:32:03 -07002813
2814 pci_set_drvdata(pdev, NULL);
2815 pci_release_regions(pdev);
2816 pci_disable_device(pdev);
2817
2818 free_netdev(adapter->netdev);
2819}
2820
Sathya Perla2243e2e2009-11-22 22:02:03 +00002821static int be_get_config(struct be_adapter *adapter)
Sathya Perla6b7c5b92009-03-11 23:32:03 -07002822{
Sathya Perla6b7c5b92009-03-11 23:32:03 -07002823 int status;
Sathya Perla2243e2e2009-11-22 22:02:03 +00002824 u8 mac[ETH_ALEN];
Sathya Perla43a04fdc2009-10-14 20:21:17 +00002825
Sathya Perla8788fdc2009-07-27 22:52:03 +00002826 status = be_cmd_get_fw_ver(adapter, adapter->fw_ver);
Sathya Perla6b7c5b92009-03-11 23:32:03 -07002827 if (status)
2828 return status;
2829
Sathya Perla3abcded2010-10-03 22:12:27 -07002830 status = be_cmd_query_fw_cfg(adapter, &adapter->port_num,
2831 &adapter->function_mode, &adapter->function_caps);
Sathya Perla2243e2e2009-11-22 22:02:03 +00002832 if (status)
2833 return status;
2834
2835 memset(mac, 0, ETH_ALEN);
Sarveshwar Bandiba343c72010-03-31 02:56:12 +00002836
2837 if (be_physfn(adapter)) {
2838 status = be_cmd_mac_addr_query(adapter, mac,
Sathya Perla2243e2e2009-11-22 22:02:03 +00002839 MAC_ADDRESS_TYPE_NETWORK, true /*permanent */, 0);
Ajit Khapardeca9e4982009-11-29 17:56:26 +00002840
Sarveshwar Bandiba343c72010-03-31 02:56:12 +00002841 if (status)
2842 return status;
Ajit Khapardeca9e4982009-11-29 17:56:26 +00002843
Sarveshwar Bandiba343c72010-03-31 02:56:12 +00002844 if (!is_valid_ether_addr(mac))
2845 return -EADDRNOTAVAIL;
2846
2847 memcpy(adapter->netdev->dev_addr, mac, ETH_ALEN);
2848 memcpy(adapter->netdev->perm_addr, mac, ETH_ALEN);
2849 }
Sathya Perla2243e2e2009-11-22 22:02:03 +00002850
Ajit Khaparde3486be22010-07-23 02:04:54 +00002851 if (adapter->function_mode & 0x400)
Ajit Khaparde82903e42010-02-09 01:34:57 +00002852 adapter->max_vlans = BE_NUM_VLANS_SUPPORTED/4;
2853 else
2854 adapter->max_vlans = BE_NUM_VLANS_SUPPORTED;
2855
Ajit Khaparde9e1453c2011-02-20 11:42:22 +00002856 status = be_cmd_get_cntl_attributes(adapter);
2857 if (status)
2858 return status;
2859
Sathya Perla2243e2e2009-11-22 22:02:03 +00002860 return 0;
Sathya Perla6b7c5b92009-03-11 23:32:03 -07002861}
2862
Sathya Perlafe6d2a32010-11-21 23:25:50 +00002863static int be_dev_family_check(struct be_adapter *adapter)
2864{
2865 struct pci_dev *pdev = adapter->pdev;
2866 u32 sli_intf = 0, if_type;
2867
2868 switch (pdev->device) {
2869 case BE_DEVICE_ID1:
2870 case OC_DEVICE_ID1:
2871 adapter->generation = BE_GEN2;
2872 break;
2873 case BE_DEVICE_ID2:
2874 case OC_DEVICE_ID2:
2875 adapter->generation = BE_GEN3;
2876 break;
2877 case OC_DEVICE_ID3:
2878 pci_read_config_dword(pdev, SLI_INTF_REG_OFFSET, &sli_intf);
2879 if_type = (sli_intf & SLI_INTF_IF_TYPE_MASK) >>
2880 SLI_INTF_IF_TYPE_SHIFT;
2881
2882 if (((sli_intf & SLI_INTF_VALID_MASK) != SLI_INTF_VALID) ||
2883 if_type != 0x02) {
2884 dev_err(&pdev->dev, "SLI_INTF reg val is not valid\n");
2885 return -EINVAL;
2886 }
2887 if (num_vfs > 0) {
2888 dev_err(&pdev->dev, "VFs not supported\n");
2889 return -EINVAL;
2890 }
2891 adapter->sli_family = ((sli_intf & SLI_INTF_FAMILY_MASK) >>
2892 SLI_INTF_FAMILY_SHIFT);
2893 adapter->generation = BE_GEN3;
2894 break;
2895 default:
2896 adapter->generation = 0;
2897 }
2898 return 0;
2899}
2900
Sathya Perla6b7c5b92009-03-11 23:32:03 -07002901static int __devinit be_probe(struct pci_dev *pdev,
2902 const struct pci_device_id *pdev_id)
2903{
2904 int status = 0;
2905 struct be_adapter *adapter;
2906 struct net_device *netdev;
Sathya Perla6b7c5b92009-03-11 23:32:03 -07002907
2908 status = pci_enable_device(pdev);
2909 if (status)
2910 goto do_none;
2911
2912 status = pci_request_regions(pdev, DRV_NAME);
2913 if (status)
2914 goto disable_dev;
2915 pci_set_master(pdev);
2916
2917 netdev = alloc_etherdev(sizeof(struct be_adapter));
2918 if (netdev == NULL) {
2919 status = -ENOMEM;
2920 goto rel_reg;
2921 }
2922 adapter = netdev_priv(netdev);
2923 adapter->pdev = pdev;
2924 pci_set_drvdata(pdev, adapter);
Sathya Perlafe6d2a32010-11-21 23:25:50 +00002925
2926 status = be_dev_family_check(adapter);
Sathya Perla63657b92010-12-01 01:02:28 +00002927 if (status)
Sathya Perlafe6d2a32010-11-21 23:25:50 +00002928 goto free_netdev;
2929
Sathya Perla6b7c5b92009-03-11 23:32:03 -07002930 adapter->netdev = netdev;
Sathya Perla2243e2e2009-11-22 22:02:03 +00002931 SET_NETDEV_DEV(netdev, &pdev->dev);
Sathya Perla6b7c5b92009-03-11 23:32:03 -07002932
Ivan Vecera2b7bceb2011-02-02 08:05:12 +00002933 status = dma_set_mask(&pdev->dev, DMA_BIT_MASK(64));
Sathya Perla6b7c5b92009-03-11 23:32:03 -07002934 if (!status) {
2935 netdev->features |= NETIF_F_HIGHDMA;
2936 } else {
Ivan Vecera2b7bceb2011-02-02 08:05:12 +00002937 status = dma_set_mask(&pdev->dev, DMA_BIT_MASK(32));
Sathya Perla6b7c5b92009-03-11 23:32:03 -07002938 if (status) {
2939 dev_err(&pdev->dev, "Could not set PCI DMA Mask\n");
2940 goto free_netdev;
2941 }
2942 }
2943
Sarveshwar Bandiba343c72010-03-31 02:56:12 +00002944 be_sriov_enable(adapter);
2945
Sathya Perla6b7c5b92009-03-11 23:32:03 -07002946 status = be_ctrl_init(adapter);
2947 if (status)
2948 goto free_netdev;
2949
Sathya Perla2243e2e2009-11-22 22:02:03 +00002950 /* sync up with fw's ready state */
Sarveshwar Bandiba343c72010-03-31 02:56:12 +00002951 if (be_physfn(adapter)) {
2952 status = be_cmd_POST(adapter);
2953 if (status)
2954 goto ctrl_clean;
Sarveshwar Bandiba343c72010-03-31 02:56:12 +00002955 }
Sathya Perla2243e2e2009-11-22 22:02:03 +00002956
2957 /* tell fw we're ready to fire cmds */
2958 status = be_cmd_fw_init(adapter);
2959 if (status)
2960 goto ctrl_clean;
2961
Ajit Khapardea4b4dfa2011-02-11 13:36:57 +00002962 status = be_cmd_reset_function(adapter);
2963 if (status)
2964 goto ctrl_clean;
Sarveshwar Bandi556ae192010-05-24 18:38:25 -07002965
Sathya Perla6b7c5b92009-03-11 23:32:03 -07002966 status = be_stats_init(adapter);
2967 if (status)
2968 goto ctrl_clean;
2969
Sathya Perla2243e2e2009-11-22 22:02:03 +00002970 status = be_get_config(adapter);
Sathya Perla6b7c5b92009-03-11 23:32:03 -07002971 if (status)
2972 goto stats_clean;
2973
Sathya Perla3abcded2010-10-03 22:12:27 -07002974 be_msix_enable(adapter);
2975
Sathya Perla6b7c5b92009-03-11 23:32:03 -07002976 INIT_DELAYED_WORK(&adapter->work, be_worker);
Sathya Perla6b7c5b92009-03-11 23:32:03 -07002977
Sathya Perla5fb379e2009-06-18 00:02:59 +00002978 status = be_setup(adapter);
2979 if (status)
Sathya Perla3abcded2010-10-03 22:12:27 -07002980 goto msix_disable;
Sathya Perla2243e2e2009-11-22 22:02:03 +00002981
Sathya Perla3abcded2010-10-03 22:12:27 -07002982 be_netdev_init(netdev);
Sathya Perla6b7c5b92009-03-11 23:32:03 -07002983 status = register_netdev(netdev);
2984 if (status != 0)
Sathya Perla5fb379e2009-06-18 00:02:59 +00002985 goto unsetup;
Somnath Kotur63a76942010-10-25 01:11:10 +00002986 netif_carrier_off(netdev);
Sathya Perla6b7c5b92009-03-11 23:32:03 -07002987
Ajit Khapardee6319362011-02-11 13:35:41 +00002988 if (be_physfn(adapter) && adapter->sriov_enabled) {
2989 status = be_vf_eth_addr_config(adapter);
2990 if (status)
2991 goto unreg_netdev;
2992 }
2993
Ajit Khapardec4ca2372009-05-18 15:38:55 -07002994 dev_info(&pdev->dev, "%s port %d\n", nic_name(pdev), adapter->port_num);
Somnath Koturf203af72010-10-25 23:01:03 +00002995 schedule_delayed_work(&adapter->work, msecs_to_jiffies(100));
Sathya Perla6b7c5b92009-03-11 23:32:03 -07002996 return 0;
2997
Ajit Khapardee6319362011-02-11 13:35:41 +00002998unreg_netdev:
2999 unregister_netdev(netdev);
Sathya Perla5fb379e2009-06-18 00:02:59 +00003000unsetup:
3001 be_clear(adapter);
Sathya Perla3abcded2010-10-03 22:12:27 -07003002msix_disable:
3003 be_msix_disable(adapter);
Sathya Perla6b7c5b92009-03-11 23:32:03 -07003004stats_clean:
3005 be_stats_cleanup(adapter);
3006ctrl_clean:
3007 be_ctrl_cleanup(adapter);
3008free_netdev:
Sarveshwar Bandiba343c72010-03-31 02:56:12 +00003009 be_sriov_disable(adapter);
Sathya Perlafe6d2a32010-11-21 23:25:50 +00003010 free_netdev(netdev);
Sathya Perla8d56ff12009-11-22 22:02:26 +00003011 pci_set_drvdata(pdev, NULL);
Sathya Perla6b7c5b92009-03-11 23:32:03 -07003012rel_reg:
3013 pci_release_regions(pdev);
3014disable_dev:
3015 pci_disable_device(pdev);
3016do_none:
Ajit Khapardec4ca2372009-05-18 15:38:55 -07003017 dev_err(&pdev->dev, "%s initialization failed\n", nic_name(pdev));
Sathya Perla6b7c5b92009-03-11 23:32:03 -07003018 return status;
3019}
3020
3021static int be_suspend(struct pci_dev *pdev, pm_message_t state)
3022{
3023 struct be_adapter *adapter = pci_get_drvdata(pdev);
3024 struct net_device *netdev = adapter->netdev;
3025
Ajit Khapardea4ca0552011-02-11 13:38:03 +00003026 cancel_delayed_work_sync(&adapter->work);
Ajit Khaparde71d8d1b2009-12-03 06:16:59 +00003027 if (adapter->wol)
3028 be_setup_wol(adapter, true);
3029
Sathya Perla6b7c5b92009-03-11 23:32:03 -07003030 netif_device_detach(netdev);
3031 if (netif_running(netdev)) {
3032 rtnl_lock();
3033 be_close(netdev);
3034 rtnl_unlock();
3035 }
Ajit Khaparde9e90c962009-11-06 02:06:59 +00003036 be_cmd_get_flow_control(adapter, &adapter->tx_fc, &adapter->rx_fc);
Sarveshwar Bandi9b0365f2009-08-12 21:01:29 +00003037 be_clear(adapter);
Sathya Perla6b7c5b92009-03-11 23:32:03 -07003038
Ajit Khapardea4ca0552011-02-11 13:38:03 +00003039 be_msix_disable(adapter);
Sathya Perla6b7c5b92009-03-11 23:32:03 -07003040 pci_save_state(pdev);
3041 pci_disable_device(pdev);
3042 pci_set_power_state(pdev, pci_choose_state(pdev, state));
3043 return 0;
3044}
3045
3046static int be_resume(struct pci_dev *pdev)
3047{
3048 int status = 0;
3049 struct be_adapter *adapter = pci_get_drvdata(pdev);
3050 struct net_device *netdev = adapter->netdev;
3051
3052 netif_device_detach(netdev);
3053
3054 status = pci_enable_device(pdev);
3055 if (status)
3056 return status;
3057
3058 pci_set_power_state(pdev, 0);
3059 pci_restore_state(pdev);
3060
Ajit Khapardea4ca0552011-02-11 13:38:03 +00003061 be_msix_enable(adapter);
Sathya Perla2243e2e2009-11-22 22:02:03 +00003062 /* tell fw we're ready to fire cmds */
3063 status = be_cmd_fw_init(adapter);
3064 if (status)
3065 return status;
3066
Sarveshwar Bandi9b0365f2009-08-12 21:01:29 +00003067 be_setup(adapter);
Sathya Perla6b7c5b92009-03-11 23:32:03 -07003068 if (netif_running(netdev)) {
3069 rtnl_lock();
Sathya Perla6b7c5b92009-03-11 23:32:03 -07003070 be_open(netdev);
3071 rtnl_unlock();
3072 }
3073 netif_device_attach(netdev);
Ajit Khaparde71d8d1b2009-12-03 06:16:59 +00003074
3075 if (adapter->wol)
3076 be_setup_wol(adapter, false);
Ajit Khapardea4ca0552011-02-11 13:38:03 +00003077
3078 schedule_delayed_work(&adapter->work, msecs_to_jiffies(100));
Sathya Perla6b7c5b92009-03-11 23:32:03 -07003079 return 0;
3080}
3081
Sathya Perla82456b02010-02-17 01:35:37 +00003082/*
3083 * An FLR will stop BE from DMAing any data.
3084 */
3085static void be_shutdown(struct pci_dev *pdev)
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 if (netif_running(netdev))
3091 cancel_delayed_work_sync(&adapter->work);
3092
Sathya Perla82456b02010-02-17 01:35:37 +00003093 netif_device_detach(netdev);
3094
3095 be_cmd_reset_function(adapter);
3096
3097 if (adapter->wol)
3098 be_setup_wol(adapter, true);
3099
3100 pci_disable_device(pdev);
Sathya Perla82456b02010-02-17 01:35:37 +00003101}
3102
Sathya Perlacf588472010-02-14 21:22:01 +00003103static pci_ers_result_t be_eeh_err_detected(struct pci_dev *pdev,
3104 pci_channel_state_t state)
3105{
3106 struct be_adapter *adapter = pci_get_drvdata(pdev);
3107 struct net_device *netdev = adapter->netdev;
3108
3109 dev_err(&adapter->pdev->dev, "EEH error detected\n");
3110
3111 adapter->eeh_err = true;
3112
3113 netif_device_detach(netdev);
3114
3115 if (netif_running(netdev)) {
3116 rtnl_lock();
3117 be_close(netdev);
3118 rtnl_unlock();
3119 }
3120 be_clear(adapter);
3121
3122 if (state == pci_channel_io_perm_failure)
3123 return PCI_ERS_RESULT_DISCONNECT;
3124
3125 pci_disable_device(pdev);
3126
3127 return PCI_ERS_RESULT_NEED_RESET;
3128}
3129
3130static pci_ers_result_t be_eeh_reset(struct pci_dev *pdev)
3131{
3132 struct be_adapter *adapter = pci_get_drvdata(pdev);
3133 int status;
3134
3135 dev_info(&adapter->pdev->dev, "EEH reset\n");
3136 adapter->eeh_err = false;
3137
3138 status = pci_enable_device(pdev);
3139 if (status)
3140 return PCI_ERS_RESULT_DISCONNECT;
3141
3142 pci_set_master(pdev);
3143 pci_set_power_state(pdev, 0);
3144 pci_restore_state(pdev);
3145
3146 /* Check if card is ok and fw is ready */
3147 status = be_cmd_POST(adapter);
3148 if (status)
3149 return PCI_ERS_RESULT_DISCONNECT;
3150
3151 return PCI_ERS_RESULT_RECOVERED;
3152}
3153
3154static void be_eeh_resume(struct pci_dev *pdev)
3155{
3156 int status = 0;
3157 struct be_adapter *adapter = pci_get_drvdata(pdev);
3158 struct net_device *netdev = adapter->netdev;
3159
3160 dev_info(&adapter->pdev->dev, "EEH resume\n");
3161
3162 pci_save_state(pdev);
3163
3164 /* tell fw we're ready to fire cmds */
3165 status = be_cmd_fw_init(adapter);
3166 if (status)
3167 goto err;
3168
3169 status = be_setup(adapter);
3170 if (status)
3171 goto err;
3172
3173 if (netif_running(netdev)) {
3174 status = be_open(netdev);
3175 if (status)
3176 goto err;
3177 }
3178 netif_device_attach(netdev);
3179 return;
3180err:
3181 dev_err(&adapter->pdev->dev, "EEH resume failed\n");
Sathya Perlacf588472010-02-14 21:22:01 +00003182}
3183
3184static struct pci_error_handlers be_eeh_handlers = {
3185 .error_detected = be_eeh_err_detected,
3186 .slot_reset = be_eeh_reset,
3187 .resume = be_eeh_resume,
3188};
3189
Sathya Perla6b7c5b92009-03-11 23:32:03 -07003190static struct pci_driver be_driver = {
3191 .name = DRV_NAME,
3192 .id_table = be_dev_ids,
3193 .probe = be_probe,
3194 .remove = be_remove,
3195 .suspend = be_suspend,
Sathya Perlacf588472010-02-14 21:22:01 +00003196 .resume = be_resume,
Sathya Perla82456b02010-02-17 01:35:37 +00003197 .shutdown = be_shutdown,
Sathya Perlacf588472010-02-14 21:22:01 +00003198 .err_handler = &be_eeh_handlers
Sathya Perla6b7c5b92009-03-11 23:32:03 -07003199};
3200
3201static int __init be_init_module(void)
3202{
Joe Perches8e95a202009-12-03 07:58:21 +00003203 if (rx_frag_size != 8192 && rx_frag_size != 4096 &&
3204 rx_frag_size != 2048) {
Sathya Perla6b7c5b92009-03-11 23:32:03 -07003205 printk(KERN_WARNING DRV_NAME
3206 " : Module param rx_frag_size must be 2048/4096/8192."
3207 " Using 2048\n");
3208 rx_frag_size = 2048;
3209 }
Sathya Perla6b7c5b92009-03-11 23:32:03 -07003210
Sarveshwar Bandiba343c72010-03-31 02:56:12 +00003211 if (num_vfs > 32) {
3212 printk(KERN_WARNING DRV_NAME
3213 " : Module param num_vfs must not be greater than 32."
3214 "Using 32\n");
3215 num_vfs = 32;
3216 }
3217
Sathya Perla6b7c5b92009-03-11 23:32:03 -07003218 return pci_register_driver(&be_driver);
3219}
3220module_init(be_init_module);
3221
3222static void __exit be_exit_module(void)
3223{
3224 pci_unregister_driver(&be_driver);
3225}
3226module_exit(be_exit_module);