blob: 275428032ce269dc92f209ed517f5c3c071bc03e [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)
128 pci_free_consistent(adapter->pdev, mem->size,
129 mem->va, mem->dma);
130}
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;
141 mem->va = pci_alloc_consistent(adapter->pdev, mem->size, &mem->dma);
142 if (!mem->va)
143 return -1;
144 memset(mem->va, 0, mem->size);
145 return 0;
146}
147
Sathya Perla8788fdc2009-07-27 22:52:03 +0000148static void be_intr_set(struct be_adapter *adapter, bool enable)
Sathya Perla6b7c5b92009-03-11 23:32:03 -0700149{
Sathya Perla8788fdc2009-07-27 22:52:03 +0000150 u8 __iomem *addr = adapter->pcicfg + PCICFG_MEMBAR_CTRL_INT_CTRL_OFFSET;
Sathya Perla6b7c5b92009-03-11 23:32:03 -0700151 u32 reg = ioread32(addr);
152 u32 enabled = reg & MEMBAR_CTRL_INT_CTRL_HOSTINTR_MASK;
Sathya Perla5f0b8492009-07-27 22:52:56 +0000153
Sathya Perlacf588472010-02-14 21:22:01 +0000154 if (adapter->eeh_err)
155 return;
156
Sathya Perla5f0b8492009-07-27 22:52:56 +0000157 if (!enabled && enable)
Sathya Perla6b7c5b92009-03-11 23:32:03 -0700158 reg |= MEMBAR_CTRL_INT_CTRL_HOSTINTR_MASK;
Sathya Perla5f0b8492009-07-27 22:52:56 +0000159 else if (enabled && !enable)
Sathya Perla6b7c5b92009-03-11 23:32:03 -0700160 reg &= ~MEMBAR_CTRL_INT_CTRL_HOSTINTR_MASK;
Sathya Perla5f0b8492009-07-27 22:52:56 +0000161 else
Sathya Perla6b7c5b92009-03-11 23:32:03 -0700162 return;
Sathya Perla5f0b8492009-07-27 22:52:56 +0000163
Sathya Perla6b7c5b92009-03-11 23:32:03 -0700164 iowrite32(reg, addr);
165}
166
Sathya Perla8788fdc2009-07-27 22:52:03 +0000167static void be_rxq_notify(struct be_adapter *adapter, u16 qid, u16 posted)
Sathya Perla6b7c5b92009-03-11 23:32:03 -0700168{
169 u32 val = 0;
170 val |= qid & DB_RQ_RING_ID_MASK;
171 val |= posted << DB_RQ_NUM_POSTED_SHIFT;
Sathya Perlaf3eb62d2010-06-29 00:11:17 +0000172
173 wmb();
Sathya Perla8788fdc2009-07-27 22:52:03 +0000174 iowrite32(val, adapter->db + DB_RQ_OFFSET);
Sathya Perla6b7c5b92009-03-11 23:32:03 -0700175}
176
Sathya Perla8788fdc2009-07-27 22:52:03 +0000177static void be_txq_notify(struct be_adapter *adapter, u16 qid, u16 posted)
Sathya Perla6b7c5b92009-03-11 23:32:03 -0700178{
179 u32 val = 0;
180 val |= qid & DB_TXULP_RING_ID_MASK;
181 val |= (posted & DB_TXULP_NUM_POSTED_MASK) << DB_TXULP_NUM_POSTED_SHIFT;
Sathya Perlaf3eb62d2010-06-29 00:11:17 +0000182
183 wmb();
Sathya Perla8788fdc2009-07-27 22:52:03 +0000184 iowrite32(val, adapter->db + DB_TXULP1_OFFSET);
Sathya Perla6b7c5b92009-03-11 23:32:03 -0700185}
186
Sathya Perla8788fdc2009-07-27 22:52:03 +0000187static void be_eq_notify(struct be_adapter *adapter, u16 qid,
Sathya Perla6b7c5b92009-03-11 23:32:03 -0700188 bool arm, bool clear_int, u16 num_popped)
189{
190 u32 val = 0;
191 val |= qid & DB_EQ_RING_ID_MASK;
Sathya Perlafe6d2a32010-11-21 23:25:50 +0000192 val |= ((qid & DB_EQ_RING_ID_EXT_MASK) <<
193 DB_EQ_RING_ID_EXT_MASK_SHIFT);
Sathya Perlacf588472010-02-14 21:22:01 +0000194
195 if (adapter->eeh_err)
196 return;
197
Sathya Perla6b7c5b92009-03-11 23:32:03 -0700198 if (arm)
199 val |= 1 << DB_EQ_REARM_SHIFT;
200 if (clear_int)
201 val |= 1 << DB_EQ_CLR_SHIFT;
202 val |= 1 << DB_EQ_EVNT_SHIFT;
203 val |= num_popped << DB_EQ_NUM_POPPED_SHIFT;
Sathya Perla8788fdc2009-07-27 22:52:03 +0000204 iowrite32(val, adapter->db + DB_EQ_OFFSET);
Sathya Perla6b7c5b92009-03-11 23:32:03 -0700205}
206
Sathya Perla8788fdc2009-07-27 22:52:03 +0000207void be_cq_notify(struct be_adapter *adapter, u16 qid, bool arm, u16 num_popped)
Sathya Perla6b7c5b92009-03-11 23:32:03 -0700208{
209 u32 val = 0;
210 val |= qid & DB_CQ_RING_ID_MASK;
Sathya Perlafe6d2a32010-11-21 23:25:50 +0000211 val |= ((qid & DB_CQ_RING_ID_EXT_MASK) <<
212 DB_CQ_RING_ID_EXT_MASK_SHIFT);
Sathya Perlacf588472010-02-14 21:22:01 +0000213
214 if (adapter->eeh_err)
215 return;
216
Sathya Perla6b7c5b92009-03-11 23:32:03 -0700217 if (arm)
218 val |= 1 << DB_CQ_REARM_SHIFT;
219 val |= num_popped << DB_CQ_NUM_POPPED_SHIFT;
Sathya Perla8788fdc2009-07-27 22:52:03 +0000220 iowrite32(val, adapter->db + DB_CQ_OFFSET);
Sathya Perla6b7c5b92009-03-11 23:32:03 -0700221}
222
Sathya Perla6b7c5b92009-03-11 23:32:03 -0700223static int be_mac_addr_set(struct net_device *netdev, void *p)
224{
225 struct be_adapter *adapter = netdev_priv(netdev);
226 struct sockaddr *addr = p;
227 int status = 0;
228
Ajit Khapardeca9e4982009-11-29 17:56:26 +0000229 if (!is_valid_ether_addr(addr->sa_data))
230 return -EADDRNOTAVAIL;
231
Sarveshwar Bandiba343c72010-03-31 02:56:12 +0000232 /* MAC addr configuration will be done in hardware for VFs
233 * by their corresponding PFs. Just copy to netdev addr here
234 */
235 if (!be_physfn(adapter))
236 goto netdev_addr;
237
Sathya Perlaa65027e2009-08-17 00:58:04 +0000238 status = be_cmd_pmac_del(adapter, adapter->if_handle, adapter->pmac_id);
239 if (status)
240 return status;
Sathya Perla6b7c5b92009-03-11 23:32:03 -0700241
Sathya Perlaa65027e2009-08-17 00:58:04 +0000242 status = be_cmd_pmac_add(adapter, (u8 *)addr->sa_data,
243 adapter->if_handle, &adapter->pmac_id);
Sarveshwar Bandiba343c72010-03-31 02:56:12 +0000244netdev_addr:
Sathya Perla6b7c5b92009-03-11 23:32:03 -0700245 if (!status)
246 memcpy(netdev->dev_addr, addr->sa_data, netdev->addr_len);
247
248 return status;
249}
250
Sathya Perlab31c50a2009-09-17 10:30:13 -0700251void netdev_stats_update(struct be_adapter *adapter)
Sathya Perla6b7c5b92009-03-11 23:32:03 -0700252{
Sathya Perla3abcded2010-10-03 22:12:27 -0700253 struct be_hw_stats *hw_stats = hw_stats_from_cmd(adapter->stats_cmd.va);
Sathya Perla6b7c5b92009-03-11 23:32:03 -0700254 struct be_rxf_stats *rxf_stats = &hw_stats->rxf;
255 struct be_port_rxf_stats *port_stats =
256 &rxf_stats->port[adapter->port_num];
Ajit Khaparde78122a52009-10-07 03:11:20 -0700257 struct net_device_stats *dev_stats = &adapter->netdev->stats;
Sathya Perla68110862009-06-10 02:21:16 +0000258 struct be_erx_stats *erx_stats = &hw_stats->erx;
Sathya Perla3abcded2010-10-03 22:12:27 -0700259 struct be_rx_obj *rxo;
260 int i;
Sathya Perla6b7c5b92009-03-11 23:32:03 -0700261
Sathya Perla3abcded2010-10-03 22:12:27 -0700262 memset(dev_stats, 0, sizeof(*dev_stats));
263 for_all_rx_queues(adapter, rxo, i) {
264 dev_stats->rx_packets += rx_stats(rxo)->rx_pkts;
265 dev_stats->rx_bytes += rx_stats(rxo)->rx_bytes;
266 dev_stats->multicast += rx_stats(rxo)->rx_mcast_pkts;
267 /* no space in linux buffers: best possible approximation */
268 dev_stats->rx_dropped +=
269 erx_stats->rx_drops_no_fragments[rxo->q.id];
270 }
271
272 dev_stats->tx_packets = tx_stats(adapter)->be_tx_pkts;
273 dev_stats->tx_bytes = tx_stats(adapter)->be_tx_bytes;
Sathya Perla6b7c5b92009-03-11 23:32:03 -0700274
275 /* bad pkts received */
276 dev_stats->rx_errors = port_stats->rx_crc_errors +
277 port_stats->rx_alignment_symbol_errors +
278 port_stats->rx_in_range_errors +
Sathya Perla68110862009-06-10 02:21:16 +0000279 port_stats->rx_out_range_errors +
280 port_stats->rx_frame_too_long +
281 port_stats->rx_dropped_too_small +
282 port_stats->rx_dropped_too_short +
283 port_stats->rx_dropped_header_too_small +
284 port_stats->rx_dropped_tcp_length +
285 port_stats->rx_dropped_runt +
286 port_stats->rx_tcp_checksum_errs +
287 port_stats->rx_ip_checksum_errs +
288 port_stats->rx_udp_checksum_errs;
Sathya Perla6b7c5b92009-03-11 23:32:03 -0700289
Sathya Perla6b7c5b92009-03-11 23:32:03 -0700290 /* detailed rx errors */
291 dev_stats->rx_length_errors = port_stats->rx_in_range_errors +
Sathya Perla68110862009-06-10 02:21:16 +0000292 port_stats->rx_out_range_errors +
293 port_stats->rx_frame_too_long;
294
Sathya Perla6b7c5b92009-03-11 23:32:03 -0700295 dev_stats->rx_crc_errors = port_stats->rx_crc_errors;
296
297 /* frame alignment errors */
298 dev_stats->rx_frame_errors = port_stats->rx_alignment_symbol_errors;
Sathya Perla68110862009-06-10 02:21:16 +0000299
Sathya Perla6b7c5b92009-03-11 23:32:03 -0700300 /* receiver fifo overrun */
301 /* drops_no_pbuf is no per i/f, it's per BE card */
302 dev_stats->rx_fifo_errors = port_stats->rx_fifo_overflow +
303 port_stats->rx_input_fifo_overflow +
304 rxf_stats->rx_drops_no_pbuf;
Sathya Perla6b7c5b92009-03-11 23:32:03 -0700305}
306
Sathya Perla8788fdc2009-07-27 22:52:03 +0000307void be_link_status_update(struct be_adapter *adapter, bool link_up)
Sathya Perla6b7c5b92009-03-11 23:32:03 -0700308{
Sathya Perla6b7c5b92009-03-11 23:32:03 -0700309 struct net_device *netdev = adapter->netdev;
310
Sathya Perla6b7c5b92009-03-11 23:32:03 -0700311 /* If link came up or went down */
Sathya Perlaa8f447bd2009-06-18 00:10:27 +0000312 if (adapter->link_up != link_up) {
Ajit Khaparde0dffc832009-11-29 17:57:46 +0000313 adapter->link_speed = -1;
Sathya Perlaa8f447bd2009-06-18 00:10:27 +0000314 if (link_up) {
Sathya Perla6b7c5b92009-03-11 23:32:03 -0700315 netif_start_queue(netdev);
316 netif_carrier_on(netdev);
317 printk(KERN_INFO "%s: Link up\n", netdev->name);
Sathya Perlaa8f447bd2009-06-18 00:10:27 +0000318 } else {
319 netif_stop_queue(netdev);
320 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
Sathya Perla7101e112010-03-22 20:41:12 +0000489static void unmap_tx_frag(struct pci_dev *pdev, struct be_eth_wrb *wrb,
490 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)
499 pci_unmap_single(pdev, dma, wrb->frag_len,
500 PCI_DMA_TODEVICE);
501 else
502 pci_unmap_page(pdev, dma, wrb->frag_len,
503 PCI_DMA_TODEVICE);
504 }
505}
Sathya Perla6b7c5b92009-03-11 23:32:03 -0700506
507static int make_tx_wrbs(struct be_adapter *adapter,
508 struct sk_buff *skb, u32 wrb_cnt, bool dummy_wrb)
509{
Sathya Perla7101e112010-03-22 20:41:12 +0000510 dma_addr_t busaddr;
511 int i, copied = 0;
Sathya Perla6b7c5b92009-03-11 23:32:03 -0700512 struct pci_dev *pdev = adapter->pdev;
513 struct sk_buff *first_skb = skb;
514 struct be_queue_info *txq = &adapter->tx_obj.q;
515 struct be_eth_wrb *wrb;
516 struct be_eth_hdr_wrb *hdr;
Sathya Perla7101e112010-03-22 20:41:12 +0000517 bool map_single = false;
518 u16 map_head;
Sathya Perla6b7c5b92009-03-11 23:32:03 -0700519
Sathya Perla6b7c5b92009-03-11 23:32:03 -0700520 hdr = queue_head_node(txq);
521 queue_head_inc(txq);
Sathya Perla7101e112010-03-22 20:41:12 +0000522 map_head = txq->head;
Sathya Perla6b7c5b92009-03-11 23:32:03 -0700523
David S. Millerebc8d2a2009-06-09 01:01:31 -0700524 if (skb->len > skb->data_len) {
Eric Dumazete743d312010-04-14 15:59:40 -0700525 int len = skb_headlen(skb);
Alexander Duycka73b7962009-12-02 16:48:18 +0000526 busaddr = pci_map_single(pdev, skb->data, len,
527 PCI_DMA_TODEVICE);
Sathya Perla7101e112010-03-22 20:41:12 +0000528 if (pci_dma_mapping_error(pdev, busaddr))
529 goto dma_err;
530 map_single = true;
David S. Millerebc8d2a2009-06-09 01:01:31 -0700531 wrb = queue_head_node(txq);
532 wrb_fill(wrb, busaddr, len);
533 be_dws_cpu_to_le(wrb, sizeof(*wrb));
534 queue_head_inc(txq);
535 copied += len;
536 }
Sathya Perla6b7c5b92009-03-11 23:32:03 -0700537
David S. Millerebc8d2a2009-06-09 01:01:31 -0700538 for (i = 0; i < skb_shinfo(skb)->nr_frags; i++) {
539 struct skb_frag_struct *frag =
540 &skb_shinfo(skb)->frags[i];
Alexander Duycka73b7962009-12-02 16:48:18 +0000541 busaddr = pci_map_page(pdev, frag->page,
542 frag->page_offset,
543 frag->size, PCI_DMA_TODEVICE);
Sathya Perla7101e112010-03-22 20:41:12 +0000544 if (pci_dma_mapping_error(pdev, busaddr))
545 goto dma_err;
David S. Millerebc8d2a2009-06-09 01:01:31 -0700546 wrb = queue_head_node(txq);
547 wrb_fill(wrb, busaddr, frag->size);
548 be_dws_cpu_to_le(wrb, sizeof(*wrb));
549 queue_head_inc(txq);
550 copied += frag->size;
Sathya Perla6b7c5b92009-03-11 23:32:03 -0700551 }
552
553 if (dummy_wrb) {
554 wrb = queue_head_node(txq);
555 wrb_fill(wrb, 0, 0);
556 be_dws_cpu_to_le(wrb, sizeof(*wrb));
557 queue_head_inc(txq);
558 }
559
Somnath Koturcc4ce022010-10-21 07:11:14 -0700560 wrb_fill_hdr(adapter, hdr, first_skb, wrb_cnt, copied);
Sathya Perla6b7c5b92009-03-11 23:32:03 -0700561 be_dws_cpu_to_le(hdr, sizeof(*hdr));
562
563 return copied;
Sathya Perla7101e112010-03-22 20:41:12 +0000564dma_err:
565 txq->head = map_head;
566 while (copied) {
567 wrb = queue_head_node(txq);
568 unmap_tx_frag(pdev, wrb, map_single);
569 map_single = false;
570 copied -= wrb->frag_len;
571 queue_head_inc(txq);
572 }
573 return 0;
Sathya Perla6b7c5b92009-03-11 23:32:03 -0700574}
575
Stephen Hemminger613573252009-08-31 19:50:58 +0000576static netdev_tx_t be_xmit(struct sk_buff *skb,
Sathya Perlab31c50a2009-09-17 10:30:13 -0700577 struct net_device *netdev)
Sathya Perla6b7c5b92009-03-11 23:32:03 -0700578{
579 struct be_adapter *adapter = netdev_priv(netdev);
580 struct be_tx_obj *tx_obj = &adapter->tx_obj;
581 struct be_queue_info *txq = &tx_obj->q;
582 u32 wrb_cnt = 0, copied = 0;
583 u32 start = txq->head;
584 bool dummy_wrb, stopped = false;
585
Sathya Perlafe6d2a32010-11-21 23:25:50 +0000586 wrb_cnt = wrb_cnt_for_skb(adapter, skb, &dummy_wrb);
Sathya Perla6b7c5b92009-03-11 23:32:03 -0700587
588 copied = make_tx_wrbs(adapter, skb, wrb_cnt, dummy_wrb);
Ajit Khapardec190e3c2009-09-04 03:12:29 +0000589 if (copied) {
590 /* record the sent skb in the sent_skb table */
591 BUG_ON(tx_obj->sent_skb_list[start]);
592 tx_obj->sent_skb_list[start] = skb;
Sathya Perla6b7c5b92009-03-11 23:32:03 -0700593
Ajit Khapardec190e3c2009-09-04 03:12:29 +0000594 /* Ensure txq has space for the next skb; Else stop the queue
595 * *BEFORE* ringing the tx doorbell, so that we serialze the
596 * tx compls of the current transmit which'll wake up the queue
597 */
Sathya Perla7101e112010-03-22 20:41:12 +0000598 atomic_add(wrb_cnt, &txq->used);
Ajit Khapardec190e3c2009-09-04 03:12:29 +0000599 if ((BE_MAX_TX_FRAG_COUNT + atomic_read(&txq->used)) >=
600 txq->len) {
601 netif_stop_queue(netdev);
602 stopped = true;
603 }
Sathya Perla6b7c5b92009-03-11 23:32:03 -0700604
Ajit Khapardec190e3c2009-09-04 03:12:29 +0000605 be_txq_notify(adapter, txq->id, wrb_cnt);
606
Ajit Khaparde91992e42010-02-19 13:57:12 +0000607 be_tx_stats_update(adapter, wrb_cnt, copied,
608 skb_shinfo(skb)->gso_segs, stopped);
Ajit Khapardec190e3c2009-09-04 03:12:29 +0000609 } else {
610 txq->head = start;
611 dev_kfree_skb_any(skb);
Sathya Perla6b7c5b92009-03-11 23:32:03 -0700612 }
Sathya Perla6b7c5b92009-03-11 23:32:03 -0700613 return NETDEV_TX_OK;
614}
615
616static int be_change_mtu(struct net_device *netdev, int new_mtu)
617{
618 struct be_adapter *adapter = netdev_priv(netdev);
619 if (new_mtu < BE_MIN_MTU ||
Ajit Khaparde34a89b82010-02-09 01:32:43 +0000620 new_mtu > (BE_MAX_JUMBO_FRAME_SIZE -
621 (ETH_HLEN + ETH_FCS_LEN))) {
Sathya Perla6b7c5b92009-03-11 23:32:03 -0700622 dev_info(&adapter->pdev->dev,
623 "MTU must be between %d and %d bytes\n",
Ajit Khaparde34a89b82010-02-09 01:32:43 +0000624 BE_MIN_MTU,
625 (BE_MAX_JUMBO_FRAME_SIZE - (ETH_HLEN + ETH_FCS_LEN)));
Sathya Perla6b7c5b92009-03-11 23:32:03 -0700626 return -EINVAL;
627 }
628 dev_info(&adapter->pdev->dev, "MTU changed from %d to %d bytes\n",
629 netdev->mtu, new_mtu);
630 netdev->mtu = new_mtu;
631 return 0;
632}
633
634/*
Ajit Khaparde82903e42010-02-09 01:34:57 +0000635 * A max of 64 (BE_NUM_VLANS_SUPPORTED) vlans can be configured in BE.
636 * If the user configures more, place BE in vlan promiscuous mode.
Sathya Perla6b7c5b92009-03-11 23:32:03 -0700637 */
Ajit Khaparde1da87b72010-07-23 01:51:22 +0000638static int be_vid_config(struct be_adapter *adapter, bool vf, u32 vf_num)
Sathya Perla6b7c5b92009-03-11 23:32:03 -0700639{
Sathya Perla6b7c5b92009-03-11 23:32:03 -0700640 u16 vtag[BE_NUM_VLANS_SUPPORTED];
641 u16 ntags = 0, i;
Ajit Khaparde82903e42010-02-09 01:34:57 +0000642 int status = 0;
Ajit Khaparde1da87b72010-07-23 01:51:22 +0000643 u32 if_handle;
644
645 if (vf) {
646 if_handle = adapter->vf_cfg[vf_num].vf_if_handle;
647 vtag[0] = cpu_to_le16(adapter->vf_cfg[vf_num].vf_vlan_tag);
648 status = be_cmd_vlan_config(adapter, if_handle, vtag, 1, 1, 0);
649 }
Sathya Perla6b7c5b92009-03-11 23:32:03 -0700650
Ajit Khaparde82903e42010-02-09 01:34:57 +0000651 if (adapter->vlans_added <= adapter->max_vlans) {
Sathya Perla6b7c5b92009-03-11 23:32:03 -0700652 /* Construct VLAN Table to give to HW */
Jesse Grossb7381272010-10-20 13:56:02 +0000653 for (i = 0; i < VLAN_N_VID; i++) {
Sathya Perla6b7c5b92009-03-11 23:32:03 -0700654 if (adapter->vlan_tag[i]) {
655 vtag[ntags] = cpu_to_le16(i);
656 ntags++;
657 }
658 }
Sathya Perlab31c50a2009-09-17 10:30:13 -0700659 status = be_cmd_vlan_config(adapter, adapter->if_handle,
660 vtag, ntags, 1, 0);
Sathya Perla6b7c5b92009-03-11 23:32:03 -0700661 } else {
Sathya Perlab31c50a2009-09-17 10:30:13 -0700662 status = be_cmd_vlan_config(adapter, adapter->if_handle,
663 NULL, 0, 1, 1);
Sathya Perla6b7c5b92009-03-11 23:32:03 -0700664 }
Ajit Khaparde1da87b72010-07-23 01:51:22 +0000665
Sathya Perlab31c50a2009-09-17 10:30:13 -0700666 return status;
Sathya Perla6b7c5b92009-03-11 23:32:03 -0700667}
668
669static void be_vlan_register(struct net_device *netdev, struct vlan_group *grp)
670{
671 struct be_adapter *adapter = netdev_priv(netdev);
Sathya Perla6b7c5b92009-03-11 23:32:03 -0700672
Sathya Perla6b7c5b92009-03-11 23:32:03 -0700673 adapter->vlan_grp = grp;
Sathya Perla6b7c5b92009-03-11 23:32:03 -0700674}
675
676static void be_vlan_add_vid(struct net_device *netdev, u16 vid)
677{
678 struct be_adapter *adapter = netdev_priv(netdev);
679
Ajit Khaparde1da87b72010-07-23 01:51:22 +0000680 adapter->vlans_added++;
Sarveshwar Bandiba343c72010-03-31 02:56:12 +0000681 if (!be_physfn(adapter))
682 return;
683
Sathya Perla6b7c5b92009-03-11 23:32:03 -0700684 adapter->vlan_tag[vid] = 1;
Ajit Khaparde82903e42010-02-09 01:34:57 +0000685 if (adapter->vlans_added <= (adapter->max_vlans + 1))
Ajit Khaparde1da87b72010-07-23 01:51:22 +0000686 be_vid_config(adapter, false, 0);
Sathya Perla6b7c5b92009-03-11 23:32:03 -0700687}
688
689static void be_vlan_rem_vid(struct net_device *netdev, u16 vid)
690{
691 struct be_adapter *adapter = netdev_priv(netdev);
692
Ajit Khaparde1da87b72010-07-23 01:51:22 +0000693 adapter->vlans_added--;
694 vlan_group_set_device(adapter->vlan_grp, vid, NULL);
695
Sarveshwar Bandiba343c72010-03-31 02:56:12 +0000696 if (!be_physfn(adapter))
697 return;
698
Sathya Perla6b7c5b92009-03-11 23:32:03 -0700699 adapter->vlan_tag[vid] = 0;
Ajit Khaparde82903e42010-02-09 01:34:57 +0000700 if (adapter->vlans_added <= adapter->max_vlans)
Ajit Khaparde1da87b72010-07-23 01:51:22 +0000701 be_vid_config(adapter, false, 0);
Sathya Perla6b7c5b92009-03-11 23:32:03 -0700702}
703
Sathya Perla6b7c5b92009-03-11 23:32:03 -0700704static void be_set_multicast_list(struct net_device *netdev)
705{
706 struct be_adapter *adapter = netdev_priv(netdev);
707
708 if (netdev->flags & IFF_PROMISC) {
Sathya Perla8788fdc2009-07-27 22:52:03 +0000709 be_cmd_promiscuous_config(adapter, adapter->port_num, 1);
Sathya Perla24307ee2009-06-18 00:09:25 +0000710 adapter->promiscuous = true;
711 goto done;
Sathya Perla6b7c5b92009-03-11 23:32:03 -0700712 }
Sathya Perla24307ee2009-06-18 00:09:25 +0000713
714 /* BE was previously in promiscous mode; disable it */
715 if (adapter->promiscuous) {
716 adapter->promiscuous = false;
Sathya Perla8788fdc2009-07-27 22:52:03 +0000717 be_cmd_promiscuous_config(adapter, adapter->port_num, 0);
Sathya Perla24307ee2009-06-18 00:09:25 +0000718 }
719
Sathya Perlae7b909a2009-11-22 22:01:10 +0000720 /* Enable multicast promisc if num configured exceeds what we support */
Jiri Pirko4cd24ea2010-02-08 04:30:35 +0000721 if (netdev->flags & IFF_ALLMULTI ||
722 netdev_mc_count(netdev) > BE_MAX_MC) {
Jiri Pirko0ddf4772010-02-20 00:13:58 +0000723 be_cmd_multicast_set(adapter, adapter->if_handle, NULL,
Sathya Perlae7b909a2009-11-22 22:01:10 +0000724 &adapter->mc_cmd_mem);
Sathya Perla24307ee2009-06-18 00:09:25 +0000725 goto done;
726 }
727
Jiri Pirko0ddf4772010-02-20 00:13:58 +0000728 be_cmd_multicast_set(adapter, adapter->if_handle, netdev,
Sathya Perlaf31e50a2010-03-02 03:56:39 -0800729 &adapter->mc_cmd_mem);
Sathya Perla24307ee2009-06-18 00:09:25 +0000730done:
731 return;
Sathya Perla6b7c5b92009-03-11 23:32:03 -0700732}
733
Sarveshwar Bandiba343c72010-03-31 02:56:12 +0000734static int be_set_vf_mac(struct net_device *netdev, int vf, u8 *mac)
735{
736 struct be_adapter *adapter = netdev_priv(netdev);
737 int status;
738
739 if (!adapter->sriov_enabled)
740 return -EPERM;
741
742 if (!is_valid_ether_addr(mac) || (vf >= num_vfs))
743 return -EINVAL;
744
Ajit Khaparde64600ea2010-07-23 01:50:34 +0000745 if (adapter->vf_cfg[vf].vf_pmac_id != BE_INVALID_PMAC_ID)
746 status = be_cmd_pmac_del(adapter,
747 adapter->vf_cfg[vf].vf_if_handle,
748 adapter->vf_cfg[vf].vf_pmac_id);
Sarveshwar Bandiba343c72010-03-31 02:56:12 +0000749
Ajit Khaparde64600ea2010-07-23 01:50:34 +0000750 status = be_cmd_pmac_add(adapter, mac,
751 adapter->vf_cfg[vf].vf_if_handle,
752 &adapter->vf_cfg[vf].vf_pmac_id);
753
754 if (status)
Sarveshwar Bandiba343c72010-03-31 02:56:12 +0000755 dev_err(&adapter->pdev->dev, "MAC %pM set on VF %d Failed\n",
756 mac, vf);
Ajit Khaparde64600ea2010-07-23 01:50:34 +0000757 else
758 memcpy(adapter->vf_cfg[vf].vf_mac_addr, mac, ETH_ALEN);
759
Sarveshwar Bandiba343c72010-03-31 02:56:12 +0000760 return status;
761}
762
Ajit Khaparde64600ea2010-07-23 01:50:34 +0000763static int be_get_vf_config(struct net_device *netdev, int vf,
764 struct ifla_vf_info *vi)
765{
766 struct be_adapter *adapter = netdev_priv(netdev);
767
768 if (!adapter->sriov_enabled)
769 return -EPERM;
770
771 if (vf >= num_vfs)
772 return -EINVAL;
773
774 vi->vf = vf;
Ajit Khapardee1d18732010-07-23 01:52:13 +0000775 vi->tx_rate = adapter->vf_cfg[vf].vf_tx_rate;
Ajit Khaparde1da87b72010-07-23 01:51:22 +0000776 vi->vlan = adapter->vf_cfg[vf].vf_vlan_tag;
Ajit Khaparde64600ea2010-07-23 01:50:34 +0000777 vi->qos = 0;
778 memcpy(&vi->mac, adapter->vf_cfg[vf].vf_mac_addr, ETH_ALEN);
779
780 return 0;
781}
782
Ajit Khaparde1da87b72010-07-23 01:51:22 +0000783static int be_set_vf_vlan(struct net_device *netdev,
784 int vf, u16 vlan, u8 qos)
785{
786 struct be_adapter *adapter = netdev_priv(netdev);
787 int status = 0;
788
789 if (!adapter->sriov_enabled)
790 return -EPERM;
791
792 if ((vf >= num_vfs) || (vlan > 4095))
793 return -EINVAL;
794
795 if (vlan) {
796 adapter->vf_cfg[vf].vf_vlan_tag = vlan;
797 adapter->vlans_added++;
798 } else {
799 adapter->vf_cfg[vf].vf_vlan_tag = 0;
800 adapter->vlans_added--;
801 }
802
803 status = be_vid_config(adapter, true, vf);
804
805 if (status)
806 dev_info(&adapter->pdev->dev,
807 "VLAN %d config on VF %d failed\n", vlan, vf);
808 return status;
809}
810
Ajit Khapardee1d18732010-07-23 01:52:13 +0000811static int be_set_vf_tx_rate(struct net_device *netdev,
812 int vf, int rate)
813{
814 struct be_adapter *adapter = netdev_priv(netdev);
815 int status = 0;
816
817 if (!adapter->sriov_enabled)
818 return -EPERM;
819
820 if ((vf >= num_vfs) || (rate < 0))
821 return -EINVAL;
822
823 if (rate > 10000)
824 rate = 10000;
825
826 adapter->vf_cfg[vf].vf_tx_rate = rate;
827 status = be_cmd_set_qos(adapter, rate / 10, vf);
828
829 if (status)
830 dev_info(&adapter->pdev->dev,
831 "tx rate %d on VF %d failed\n", rate, vf);
832 return status;
833}
834
Sathya Perla3abcded2010-10-03 22:12:27 -0700835static void be_rx_rate_update(struct be_rx_obj *rxo)
Sathya Perla6b7c5b92009-03-11 23:32:03 -0700836{
Sathya Perla3abcded2010-10-03 22:12:27 -0700837 struct be_rx_stats *stats = &rxo->stats;
Sathya Perla4097f662009-03-24 16:40:13 -0700838 ulong now = jiffies;
Sathya Perla6b7c5b92009-03-11 23:32:03 -0700839
Sathya Perla4097f662009-03-24 16:40:13 -0700840 /* Wrapped around */
Sathya Perla3abcded2010-10-03 22:12:27 -0700841 if (time_before(now, stats->rx_jiffies)) {
842 stats->rx_jiffies = now;
Sathya Perla4097f662009-03-24 16:40:13 -0700843 return;
844 }
845
846 /* Update the rate once in two seconds */
Sathya Perla3abcded2010-10-03 22:12:27 -0700847 if ((now - stats->rx_jiffies) < 2 * HZ)
Sathya Perla4097f662009-03-24 16:40:13 -0700848 return;
849
Sathya Perla3abcded2010-10-03 22:12:27 -0700850 stats->rx_rate = be_calc_rate(stats->rx_bytes - stats->rx_bytes_prev,
851 now - stats->rx_jiffies);
852 stats->rx_jiffies = now;
853 stats->rx_bytes_prev = stats->rx_bytes;
Sathya Perla4097f662009-03-24 16:40:13 -0700854}
855
Sathya Perla3abcded2010-10-03 22:12:27 -0700856static void be_rx_stats_update(struct be_rx_obj *rxo,
Ajit Khaparde1ef78ab2010-09-03 06:17:10 +0000857 u32 pktsize, u16 numfrags, u8 pkt_type)
Sathya Perla4097f662009-03-24 16:40:13 -0700858{
Sathya Perla3abcded2010-10-03 22:12:27 -0700859 struct be_rx_stats *stats = &rxo->stats;
Sathya Perla4097f662009-03-24 16:40:13 -0700860
Sathya Perla3abcded2010-10-03 22:12:27 -0700861 stats->rx_compl++;
862 stats->rx_frags += numfrags;
863 stats->rx_bytes += pktsize;
864 stats->rx_pkts++;
Ajit Khaparde1ef78ab2010-09-03 06:17:10 +0000865 if (pkt_type == BE_MULTICAST_PACKET)
Sathya Perla3abcded2010-10-03 22:12:27 -0700866 stats->rx_mcast_pkts++;
Sathya Perla6b7c5b92009-03-11 23:32:03 -0700867}
868
Somnath Koturc6ce2f42010-10-25 01:11:58 +0000869static inline bool csum_passed(struct be_eth_rx_compl *rxcp)
Ajit Khaparde728a9972009-04-13 15:41:22 -0700870{
Somnath Koturc6ce2f42010-10-25 01:11:58 +0000871 u8 l4_cksm, ipv6, ipcksm;
Ajit Khaparde728a9972009-04-13 15:41:22 -0700872
873 l4_cksm = AMAP_GET_BITS(struct amap_eth_rx_compl, l4_cksm, rxcp);
874 ipcksm = AMAP_GET_BITS(struct amap_eth_rx_compl, ipcksm, rxcp);
Somnath Koturc6ce2f42010-10-25 01:11:58 +0000875 ipv6 = AMAP_GET_BITS(struct amap_eth_rx_compl, ip_version, rxcp);
Ajit Khaparde728a9972009-04-13 15:41:22 -0700876
Somnath Koturc6ce2f42010-10-25 01:11:58 +0000877 /* Ignore ipcksm for ipv6 pkts */
878 return l4_cksm && (ipcksm || ipv6);
Ajit Khaparde728a9972009-04-13 15:41:22 -0700879}
880
Sathya Perla6b7c5b92009-03-11 23:32:03 -0700881static struct be_rx_page_info *
Sathya Perla3abcded2010-10-03 22:12:27 -0700882get_rx_page_info(struct be_adapter *adapter,
883 struct be_rx_obj *rxo,
884 u16 frag_idx)
Sathya Perla6b7c5b92009-03-11 23:32:03 -0700885{
886 struct be_rx_page_info *rx_page_info;
Sathya Perla3abcded2010-10-03 22:12:27 -0700887 struct be_queue_info *rxq = &rxo->q;
Sathya Perla6b7c5b92009-03-11 23:32:03 -0700888
Sathya Perla3abcded2010-10-03 22:12:27 -0700889 rx_page_info = &rxo->page_info_tbl[frag_idx];
Sathya Perla6b7c5b92009-03-11 23:32:03 -0700890 BUG_ON(!rx_page_info->page);
891
Ajit Khaparde205859a2010-02-09 01:34:21 +0000892 if (rx_page_info->last_page_user) {
FUJITA Tomonorifac6da52010-04-01 16:53:22 +0000893 pci_unmap_page(adapter->pdev, dma_unmap_addr(rx_page_info, bus),
Sathya Perla6b7c5b92009-03-11 23:32:03 -0700894 adapter->big_page_size, PCI_DMA_FROMDEVICE);
Ajit Khaparde205859a2010-02-09 01:34:21 +0000895 rx_page_info->last_page_user = false;
896 }
Sathya Perla6b7c5b92009-03-11 23:32:03 -0700897
898 atomic_dec(&rxq->used);
899 return rx_page_info;
900}
901
902/* Throwaway the data in the Rx completion */
903static void be_rx_compl_discard(struct be_adapter *adapter,
Sathya Perla3abcded2010-10-03 22:12:27 -0700904 struct be_rx_obj *rxo,
905 struct be_eth_rx_compl *rxcp)
Sathya Perla6b7c5b92009-03-11 23:32:03 -0700906{
Sathya Perla3abcded2010-10-03 22:12:27 -0700907 struct be_queue_info *rxq = &rxo->q;
Sathya Perla6b7c5b92009-03-11 23:32:03 -0700908 struct be_rx_page_info *page_info;
909 u16 rxq_idx, i, num_rcvd;
910
911 rxq_idx = AMAP_GET_BITS(struct amap_eth_rx_compl, fragndx, rxcp);
912 num_rcvd = AMAP_GET_BITS(struct amap_eth_rx_compl, numfrags, rxcp);
913
914 for (i = 0; i < num_rcvd; i++) {
Sathya Perla3abcded2010-10-03 22:12:27 -0700915 page_info = get_rx_page_info(adapter, rxo, rxq_idx);
Sathya Perla6b7c5b92009-03-11 23:32:03 -0700916 put_page(page_info->page);
917 memset(page_info, 0, sizeof(*page_info));
918 index_inc(&rxq_idx, rxq->len);
919 }
920}
921
922/*
923 * skb_fill_rx_data forms a complete skb for an ether frame
924 * indicated by rxcp.
925 */
Sathya Perla3abcded2010-10-03 22:12:27 -0700926static void skb_fill_rx_data(struct be_adapter *adapter, struct be_rx_obj *rxo,
Sathya Perla89420422010-02-17 01:35:26 +0000927 struct sk_buff *skb, struct be_eth_rx_compl *rxcp,
928 u16 num_rcvd)
Sathya Perla6b7c5b92009-03-11 23:32:03 -0700929{
Sathya Perla3abcded2010-10-03 22:12:27 -0700930 struct be_queue_info *rxq = &rxo->q;
Sathya Perla6b7c5b92009-03-11 23:32:03 -0700931 struct be_rx_page_info *page_info;
Sathya Perla89420422010-02-17 01:35:26 +0000932 u16 rxq_idx, i, j;
Ajit Khapardefa774062009-07-22 09:28:55 -0700933 u32 pktsize, hdr_len, curr_frag_len, size;
Sathya Perla6b7c5b92009-03-11 23:32:03 -0700934 u8 *start;
Ajit Khaparde1ef78ab2010-09-03 06:17:10 +0000935 u8 pkt_type;
Sathya Perla6b7c5b92009-03-11 23:32:03 -0700936
937 rxq_idx = AMAP_GET_BITS(struct amap_eth_rx_compl, fragndx, rxcp);
938 pktsize = AMAP_GET_BITS(struct amap_eth_rx_compl, pktsize, rxcp);
Ajit Khaparde1ef78ab2010-09-03 06:17:10 +0000939 pkt_type = AMAP_GET_BITS(struct amap_eth_rx_compl, cast_enc, rxcp);
Sathya Perla6b7c5b92009-03-11 23:32:03 -0700940
Sathya Perla3abcded2010-10-03 22:12:27 -0700941 page_info = get_rx_page_info(adapter, rxo, rxq_idx);
Sathya Perla6b7c5b92009-03-11 23:32:03 -0700942
943 start = page_address(page_info->page) + page_info->page_offset;
944 prefetch(start);
945
946 /* Copy data in the first descriptor of this completion */
947 curr_frag_len = min(pktsize, rx_frag_size);
948
949 /* Copy the header portion into skb_data */
950 hdr_len = min((u32)BE_HDR_LEN, curr_frag_len);
951 memcpy(skb->data, start, hdr_len);
952 skb->len = curr_frag_len;
953 if (curr_frag_len <= BE_HDR_LEN) { /* tiny packet */
954 /* Complete packet has now been moved to data */
955 put_page(page_info->page);
956 skb->data_len = 0;
957 skb->tail += curr_frag_len;
958 } else {
959 skb_shinfo(skb)->nr_frags = 1;
960 skb_shinfo(skb)->frags[0].page = page_info->page;
961 skb_shinfo(skb)->frags[0].page_offset =
962 page_info->page_offset + hdr_len;
963 skb_shinfo(skb)->frags[0].size = curr_frag_len - hdr_len;
964 skb->data_len = curr_frag_len - hdr_len;
965 skb->tail += hdr_len;
966 }
Ajit Khaparde205859a2010-02-09 01:34:21 +0000967 page_info->page = NULL;
Sathya Perla6b7c5b92009-03-11 23:32:03 -0700968
969 if (pktsize <= rx_frag_size) {
970 BUG_ON(num_rcvd != 1);
Sathya Perla76fbb422009-06-10 02:21:56 +0000971 goto done;
Sathya Perla6b7c5b92009-03-11 23:32:03 -0700972 }
973
974 /* More frags present for this completion */
Ajit Khapardefa774062009-07-22 09:28:55 -0700975 size = pktsize;
Ajit Khapardebd46cb62009-06-26 02:51:07 +0000976 for (i = 1, j = 0; i < num_rcvd; i++) {
Ajit Khapardefa774062009-07-22 09:28:55 -0700977 size -= curr_frag_len;
Sathya Perla6b7c5b92009-03-11 23:32:03 -0700978 index_inc(&rxq_idx, rxq->len);
Sathya Perla3abcded2010-10-03 22:12:27 -0700979 page_info = get_rx_page_info(adapter, rxo, rxq_idx);
Sathya Perla6b7c5b92009-03-11 23:32:03 -0700980
Ajit Khapardefa774062009-07-22 09:28:55 -0700981 curr_frag_len = min(size, rx_frag_size);
Sathya Perla6b7c5b92009-03-11 23:32:03 -0700982
Ajit Khapardebd46cb62009-06-26 02:51:07 +0000983 /* Coalesce all frags from the same physical page in one slot */
984 if (page_info->page_offset == 0) {
985 /* Fresh page */
986 j++;
987 skb_shinfo(skb)->frags[j].page = page_info->page;
988 skb_shinfo(skb)->frags[j].page_offset =
989 page_info->page_offset;
990 skb_shinfo(skb)->frags[j].size = 0;
991 skb_shinfo(skb)->nr_frags++;
992 } else {
993 put_page(page_info->page);
994 }
995
996 skb_shinfo(skb)->frags[j].size += curr_frag_len;
Sathya Perla6b7c5b92009-03-11 23:32:03 -0700997 skb->len += curr_frag_len;
998 skb->data_len += curr_frag_len;
Sathya Perla6b7c5b92009-03-11 23:32:03 -0700999
Ajit Khaparde205859a2010-02-09 01:34:21 +00001000 page_info->page = NULL;
Sathya Perla6b7c5b92009-03-11 23:32:03 -07001001 }
Ajit Khapardebd46cb62009-06-26 02:51:07 +00001002 BUG_ON(j > MAX_SKB_FRAGS);
Sathya Perla6b7c5b92009-03-11 23:32:03 -07001003
Sathya Perla76fbb422009-06-10 02:21:56 +00001004done:
Sathya Perla3abcded2010-10-03 22:12:27 -07001005 be_rx_stats_update(rxo, pktsize, num_rcvd, pkt_type);
Sathya Perla6b7c5b92009-03-11 23:32:03 -07001006}
1007
Ajit Khaparde5be93b92009-07-21 12:36:19 -07001008/* Process the RX completion indicated by rxcp when GRO is disabled */
Sathya Perla6b7c5b92009-03-11 23:32:03 -07001009static void be_rx_compl_process(struct be_adapter *adapter,
Sathya Perla3abcded2010-10-03 22:12:27 -07001010 struct be_rx_obj *rxo,
Sathya Perla6b7c5b92009-03-11 23:32:03 -07001011 struct be_eth_rx_compl *rxcp)
1012{
1013 struct sk_buff *skb;
Ajit Khapardedcb9b562009-09-30 21:58:22 -07001014 u32 vlanf, vid;
Sathya Perla89420422010-02-17 01:35:26 +00001015 u16 num_rcvd;
Ajit Khapardedcb9b562009-09-30 21:58:22 -07001016 u8 vtm;
Sathya Perla6b7c5b92009-03-11 23:32:03 -07001017
Sathya Perla89420422010-02-17 01:35:26 +00001018 num_rcvd = AMAP_GET_BITS(struct amap_eth_rx_compl, numfrags, rxcp);
1019 /* Is it a flush compl that has no data */
1020 if (unlikely(num_rcvd == 0))
1021 return;
1022
Eric Dumazet89d71a62009-10-13 05:34:20 +00001023 skb = netdev_alloc_skb_ip_align(adapter->netdev, BE_HDR_LEN);
Sathya Perlaa058a632010-02-17 01:34:22 +00001024 if (unlikely(!skb)) {
Sathya Perla6b7c5b92009-03-11 23:32:03 -07001025 if (net_ratelimit())
1026 dev_warn(&adapter->pdev->dev, "skb alloc failed\n");
Sathya Perla3abcded2010-10-03 22:12:27 -07001027 be_rx_compl_discard(adapter, rxo, rxcp);
Sathya Perla6b7c5b92009-03-11 23:32:03 -07001028 return;
1029 }
1030
Sathya Perla3abcded2010-10-03 22:12:27 -07001031 skb_fill_rx_data(adapter, rxo, skb, rxcp, num_rcvd);
Sathya Perla6b7c5b92009-03-11 23:32:03 -07001032
Somnath Koturc6ce2f42010-10-25 01:11:58 +00001033 if (likely(adapter->rx_csum && csum_passed(rxcp)))
Ajit Khaparde728a9972009-04-13 15:41:22 -07001034 skb->ip_summed = CHECKSUM_UNNECESSARY;
Somnath Koturc6ce2f42010-10-25 01:11:58 +00001035 else
1036 skb_checksum_none_assert(skb);
Sathya Perla6b7c5b92009-03-11 23:32:03 -07001037
1038 skb->truesize = skb->len + sizeof(struct sk_buff);
1039 skb->protocol = eth_type_trans(skb, adapter->netdev);
Sathya Perla6b7c5b92009-03-11 23:32:03 -07001040
Sathya Perlaa058a632010-02-17 01:34:22 +00001041 vlanf = AMAP_GET_BITS(struct amap_eth_rx_compl, vtp, rxcp);
1042 vtm = AMAP_GET_BITS(struct amap_eth_rx_compl, vtm, rxcp);
1043
1044 /* vlanf could be wrongly set in some cards.
1045 * ignore if vtm is not set */
Ajit Khaparde3486be22010-07-23 02:04:54 +00001046 if ((adapter->function_mode & 0x400) && !vtm)
Sathya Perlaa058a632010-02-17 01:34:22 +00001047 vlanf = 0;
1048
1049 if (unlikely(vlanf)) {
Ajit Khaparde82903e42010-02-09 01:34:57 +00001050 if (!adapter->vlan_grp || adapter->vlans_added == 0) {
Sathya Perla6b7c5b92009-03-11 23:32:03 -07001051 kfree_skb(skb);
1052 return;
1053 }
1054 vid = AMAP_GET_BITS(struct amap_eth_rx_compl, vlan_tag, rxcp);
Sathya Perlafe6d2a32010-11-21 23:25:50 +00001055 if (!lancer_chip(adapter))
1056 vid = swab16(vid);
Sathya Perla6b7c5b92009-03-11 23:32:03 -07001057 vlan_hwaccel_receive_skb(skb, adapter->vlan_grp, vid);
1058 } else {
1059 netif_receive_skb(skb);
1060 }
Sathya Perla6b7c5b92009-03-11 23:32:03 -07001061}
1062
Ajit Khaparde5be93b92009-07-21 12:36:19 -07001063/* Process the RX completion indicated by rxcp when GRO is enabled */
1064static void be_rx_compl_process_gro(struct be_adapter *adapter,
Sathya Perla3abcded2010-10-03 22:12:27 -07001065 struct be_rx_obj *rxo,
1066 struct be_eth_rx_compl *rxcp)
Sathya Perla6b7c5b92009-03-11 23:32:03 -07001067{
1068 struct be_rx_page_info *page_info;
Ajit Khaparde5be93b92009-07-21 12:36:19 -07001069 struct sk_buff *skb = NULL;
Sathya Perla3abcded2010-10-03 22:12:27 -07001070 struct be_queue_info *rxq = &rxo->q;
1071 struct be_eq_obj *eq_obj = &rxo->rx_eq;
Sathya Perla6b7c5b92009-03-11 23:32:03 -07001072 u32 num_rcvd, pkt_size, remaining, vlanf, curr_frag_len;
Ajit Khapardebd46cb62009-06-26 02:51:07 +00001073 u16 i, rxq_idx = 0, vid, j;
Ajit Khapardedcb9b562009-09-30 21:58:22 -07001074 u8 vtm;
Ajit Khaparde1ef78ab2010-09-03 06:17:10 +00001075 u8 pkt_type;
Sathya Perla6b7c5b92009-03-11 23:32:03 -07001076
1077 num_rcvd = AMAP_GET_BITS(struct amap_eth_rx_compl, numfrags, rxcp);
Sathya Perla89420422010-02-17 01:35:26 +00001078 /* Is it a flush compl that has no data */
1079 if (unlikely(num_rcvd == 0))
1080 return;
1081
Sathya Perla6b7c5b92009-03-11 23:32:03 -07001082 pkt_size = AMAP_GET_BITS(struct amap_eth_rx_compl, pktsize, rxcp);
1083 vlanf = AMAP_GET_BITS(struct amap_eth_rx_compl, vtp, rxcp);
1084 rxq_idx = AMAP_GET_BITS(struct amap_eth_rx_compl, fragndx, rxcp);
Ajit Khapardedcb9b562009-09-30 21:58:22 -07001085 vtm = AMAP_GET_BITS(struct amap_eth_rx_compl, vtm, rxcp);
Ajit Khaparde1ef78ab2010-09-03 06:17:10 +00001086 pkt_type = AMAP_GET_BITS(struct amap_eth_rx_compl, cast_enc, rxcp);
Ajit Khapardedcb9b562009-09-30 21:58:22 -07001087
1088 /* vlanf could be wrongly set in some cards.
1089 * ignore if vtm is not set */
Ajit Khaparde3486be22010-07-23 02:04:54 +00001090 if ((adapter->function_mode & 0x400) && !vtm)
Ajit Khapardedcb9b562009-09-30 21:58:22 -07001091 vlanf = 0;
Sathya Perla6b7c5b92009-03-11 23:32:03 -07001092
Ajit Khaparde5be93b92009-07-21 12:36:19 -07001093 skb = napi_get_frags(&eq_obj->napi);
1094 if (!skb) {
Sathya Perla3abcded2010-10-03 22:12:27 -07001095 be_rx_compl_discard(adapter, rxo, rxcp);
Ajit Khaparde5be93b92009-07-21 12:36:19 -07001096 return;
1097 }
1098
Sathya Perla6b7c5b92009-03-11 23:32:03 -07001099 remaining = pkt_size;
Ajit Khapardebd46cb62009-06-26 02:51:07 +00001100 for (i = 0, j = -1; i < num_rcvd; i++) {
Sathya Perla3abcded2010-10-03 22:12:27 -07001101 page_info = get_rx_page_info(adapter, rxo, rxq_idx);
Sathya Perla6b7c5b92009-03-11 23:32:03 -07001102
1103 curr_frag_len = min(remaining, rx_frag_size);
1104
Ajit Khapardebd46cb62009-06-26 02:51:07 +00001105 /* Coalesce all frags from the same physical page in one slot */
1106 if (i == 0 || page_info->page_offset == 0) {
1107 /* First frag or Fresh page */
1108 j++;
Ajit Khaparde5be93b92009-07-21 12:36:19 -07001109 skb_shinfo(skb)->frags[j].page = page_info->page;
1110 skb_shinfo(skb)->frags[j].page_offset =
1111 page_info->page_offset;
1112 skb_shinfo(skb)->frags[j].size = 0;
Ajit Khapardebd46cb62009-06-26 02:51:07 +00001113 } else {
1114 put_page(page_info->page);
1115 }
Ajit Khaparde5be93b92009-07-21 12:36:19 -07001116 skb_shinfo(skb)->frags[j].size += curr_frag_len;
Ajit Khapardebd46cb62009-06-26 02:51:07 +00001117
Sathya Perla6b7c5b92009-03-11 23:32:03 -07001118 remaining -= curr_frag_len;
Sathya Perla6b7c5b92009-03-11 23:32:03 -07001119 index_inc(&rxq_idx, rxq->len);
Sathya Perla6b7c5b92009-03-11 23:32:03 -07001120 memset(page_info, 0, sizeof(*page_info));
1121 }
Ajit Khapardebd46cb62009-06-26 02:51:07 +00001122 BUG_ON(j > MAX_SKB_FRAGS);
Sathya Perla6b7c5b92009-03-11 23:32:03 -07001123
Ajit Khaparde5be93b92009-07-21 12:36:19 -07001124 skb_shinfo(skb)->nr_frags = j + 1;
1125 skb->len = pkt_size;
1126 skb->data_len = pkt_size;
1127 skb->truesize += pkt_size;
1128 skb->ip_summed = CHECKSUM_UNNECESSARY;
1129
Sathya Perla6b7c5b92009-03-11 23:32:03 -07001130 if (likely(!vlanf)) {
Ajit Khaparde5be93b92009-07-21 12:36:19 -07001131 napi_gro_frags(&eq_obj->napi);
Sathya Perla6b7c5b92009-03-11 23:32:03 -07001132 } else {
1133 vid = AMAP_GET_BITS(struct amap_eth_rx_compl, vlan_tag, rxcp);
Sathya Perlafe6d2a32010-11-21 23:25:50 +00001134 if (!lancer_chip(adapter))
1135 vid = swab16(vid);
Sathya Perla6b7c5b92009-03-11 23:32:03 -07001136
Ajit Khaparde82903e42010-02-09 01:34:57 +00001137 if (!adapter->vlan_grp || adapter->vlans_added == 0)
Sathya Perla6b7c5b92009-03-11 23:32:03 -07001138 return;
1139
Ajit Khaparde5be93b92009-07-21 12:36:19 -07001140 vlan_gro_frags(&eq_obj->napi, adapter->vlan_grp, vid);
Sathya Perla6b7c5b92009-03-11 23:32:03 -07001141 }
1142
Sathya Perla3abcded2010-10-03 22:12:27 -07001143 be_rx_stats_update(rxo, pkt_size, num_rcvd, pkt_type);
Sathya Perla6b7c5b92009-03-11 23:32:03 -07001144}
1145
Sathya Perla3abcded2010-10-03 22:12:27 -07001146static struct be_eth_rx_compl *be_rx_compl_get(struct be_rx_obj *rxo)
Sathya Perla6b7c5b92009-03-11 23:32:03 -07001147{
Sathya Perla3abcded2010-10-03 22:12:27 -07001148 struct be_eth_rx_compl *rxcp = queue_tail_node(&rxo->cq);
Sathya Perla6b7c5b92009-03-11 23:32:03 -07001149
1150 if (rxcp->dw[offsetof(struct amap_eth_rx_compl, valid) / 32] == 0)
1151 return NULL;
1152
Sathya Perlaf3eb62d2010-06-29 00:11:17 +00001153 rmb();
Sathya Perla6b7c5b92009-03-11 23:32:03 -07001154 be_dws_le_to_cpu(rxcp, sizeof(*rxcp));
1155
Sathya Perla3abcded2010-10-03 22:12:27 -07001156 queue_tail_inc(&rxo->cq);
Sathya Perla6b7c5b92009-03-11 23:32:03 -07001157 return rxcp;
1158}
1159
Sathya Perlaa7a0ef32009-06-10 02:23:28 +00001160/* To reset the valid bit, we need to reset the whole word as
1161 * when walking the queue the valid entries are little-endian
1162 * and invalid entries are host endian
1163 */
1164static inline void be_rx_compl_reset(struct be_eth_rx_compl *rxcp)
1165{
1166 rxcp->dw[offsetof(struct amap_eth_rx_compl, valid) / 32] = 0;
1167}
1168
Sathya Perla6b7c5b92009-03-11 23:32:03 -07001169static inline struct page *be_alloc_pages(u32 size)
1170{
1171 gfp_t alloc_flags = GFP_ATOMIC;
1172 u32 order = get_order(size);
1173 if (order > 0)
1174 alloc_flags |= __GFP_COMP;
1175 return alloc_pages(alloc_flags, order);
1176}
1177
1178/*
1179 * Allocate a page, split it to fragments of size rx_frag_size and post as
1180 * receive buffers to BE
1181 */
Sathya Perla3abcded2010-10-03 22:12:27 -07001182static void be_post_rx_frags(struct be_rx_obj *rxo)
Sathya Perla6b7c5b92009-03-11 23:32:03 -07001183{
Sathya Perla3abcded2010-10-03 22:12:27 -07001184 struct be_adapter *adapter = rxo->adapter;
1185 struct be_rx_page_info *page_info_tbl = rxo->page_info_tbl;
Sathya Perla26d92f92010-01-21 22:52:08 -08001186 struct be_rx_page_info *page_info = NULL, *prev_page_info = NULL;
Sathya Perla3abcded2010-10-03 22:12:27 -07001187 struct be_queue_info *rxq = &rxo->q;
Sathya Perla6b7c5b92009-03-11 23:32:03 -07001188 struct page *pagep = NULL;
1189 struct be_eth_rx_d *rxd;
1190 u64 page_dmaaddr = 0, frag_dmaaddr;
1191 u32 posted, page_offset = 0;
1192
Sathya Perla3abcded2010-10-03 22:12:27 -07001193 page_info = &rxo->page_info_tbl[rxq->head];
Sathya Perla6b7c5b92009-03-11 23:32:03 -07001194 for (posted = 0; posted < MAX_RX_POST && !page_info->page; posted++) {
1195 if (!pagep) {
1196 pagep = be_alloc_pages(adapter->big_page_size);
1197 if (unlikely(!pagep)) {
Sathya Perla3abcded2010-10-03 22:12:27 -07001198 rxo->stats.rx_post_fail++;
Sathya Perla6b7c5b92009-03-11 23:32:03 -07001199 break;
1200 }
1201 page_dmaaddr = pci_map_page(adapter->pdev, pagep, 0,
1202 adapter->big_page_size,
1203 PCI_DMA_FROMDEVICE);
1204 page_info->page_offset = 0;
1205 } else {
1206 get_page(pagep);
1207 page_info->page_offset = page_offset + rx_frag_size;
1208 }
1209 page_offset = page_info->page_offset;
1210 page_info->page = pagep;
FUJITA Tomonorifac6da52010-04-01 16:53:22 +00001211 dma_unmap_addr_set(page_info, bus, page_dmaaddr);
Sathya Perla6b7c5b92009-03-11 23:32:03 -07001212 frag_dmaaddr = page_dmaaddr + page_info->page_offset;
1213
1214 rxd = queue_head_node(rxq);
1215 rxd->fragpa_lo = cpu_to_le32(frag_dmaaddr & 0xFFFFFFFF);
1216 rxd->fragpa_hi = cpu_to_le32(upper_32_bits(frag_dmaaddr));
Sathya Perla6b7c5b92009-03-11 23:32:03 -07001217
1218 /* Any space left in the current big page for another frag? */
1219 if ((page_offset + rx_frag_size + rx_frag_size) >
1220 adapter->big_page_size) {
1221 pagep = NULL;
1222 page_info->last_page_user = true;
1223 }
Sathya Perla26d92f92010-01-21 22:52:08 -08001224
1225 prev_page_info = page_info;
1226 queue_head_inc(rxq);
Sathya Perla6b7c5b92009-03-11 23:32:03 -07001227 page_info = &page_info_tbl[rxq->head];
1228 }
1229 if (pagep)
Sathya Perla26d92f92010-01-21 22:52:08 -08001230 prev_page_info->last_page_user = true;
Sathya Perla6b7c5b92009-03-11 23:32:03 -07001231
1232 if (posted) {
Sathya Perla6b7c5b92009-03-11 23:32:03 -07001233 atomic_add(posted, &rxq->used);
Sathya Perla8788fdc2009-07-27 22:52:03 +00001234 be_rxq_notify(adapter, rxq->id, posted);
Sathya Perlaea1dae12009-03-19 23:56:20 -07001235 } else if (atomic_read(&rxq->used) == 0) {
1236 /* Let be_worker replenish when memory is available */
Sathya Perla3abcded2010-10-03 22:12:27 -07001237 rxo->rx_post_starved = true;
Sathya Perla6b7c5b92009-03-11 23:32:03 -07001238 }
Sathya Perla6b7c5b92009-03-11 23:32:03 -07001239}
1240
Sathya Perla5fb379e2009-06-18 00:02:59 +00001241static struct be_eth_tx_compl *be_tx_compl_get(struct be_queue_info *tx_cq)
Sathya Perla6b7c5b92009-03-11 23:32:03 -07001242{
Sathya Perla6b7c5b92009-03-11 23:32:03 -07001243 struct be_eth_tx_compl *txcp = queue_tail_node(tx_cq);
1244
1245 if (txcp->dw[offsetof(struct amap_eth_tx_compl, valid) / 32] == 0)
1246 return NULL;
1247
Sathya Perlaf3eb62d2010-06-29 00:11:17 +00001248 rmb();
Sathya Perla6b7c5b92009-03-11 23:32:03 -07001249 be_dws_le_to_cpu(txcp, sizeof(*txcp));
1250
1251 txcp->dw[offsetof(struct amap_eth_tx_compl, valid) / 32] = 0;
1252
1253 queue_tail_inc(tx_cq);
1254 return txcp;
1255}
1256
1257static void be_tx_compl_process(struct be_adapter *adapter, u16 last_index)
1258{
1259 struct be_queue_info *txq = &adapter->tx_obj.q;
Alexander Duycka73b7962009-12-02 16:48:18 +00001260 struct be_eth_wrb *wrb;
Sathya Perla6b7c5b92009-03-11 23:32:03 -07001261 struct sk_buff **sent_skbs = adapter->tx_obj.sent_skb_list;
1262 struct sk_buff *sent_skb;
Sathya Perlaec43b1a2010-03-22 20:41:34 +00001263 u16 cur_index, num_wrbs = 1; /* account for hdr wrb */
1264 bool unmap_skb_hdr = true;
Sathya Perla6b7c5b92009-03-11 23:32:03 -07001265
Sathya Perlaec43b1a2010-03-22 20:41:34 +00001266 sent_skb = sent_skbs[txq->tail];
Sathya Perla6b7c5b92009-03-11 23:32:03 -07001267 BUG_ON(!sent_skb);
Sathya Perlaec43b1a2010-03-22 20:41:34 +00001268 sent_skbs[txq->tail] = NULL;
1269
1270 /* skip header wrb */
Alexander Duycka73b7962009-12-02 16:48:18 +00001271 queue_tail_inc(txq);
Sathya Perla6b7c5b92009-03-11 23:32:03 -07001272
Sathya Perlaec43b1a2010-03-22 20:41:34 +00001273 do {
Sathya Perla6b7c5b92009-03-11 23:32:03 -07001274 cur_index = txq->tail;
Alexander Duycka73b7962009-12-02 16:48:18 +00001275 wrb = queue_tail_node(txq);
Sathya Perlaec43b1a2010-03-22 20:41:34 +00001276 unmap_tx_frag(adapter->pdev, wrb, (unmap_skb_hdr &&
Eric Dumazete743d312010-04-14 15:59:40 -07001277 skb_headlen(sent_skb)));
Sathya Perlaec43b1a2010-03-22 20:41:34 +00001278 unmap_skb_hdr = false;
1279
Sathya Perla6b7c5b92009-03-11 23:32:03 -07001280 num_wrbs++;
1281 queue_tail_inc(txq);
Sathya Perlaec43b1a2010-03-22 20:41:34 +00001282 } while (cur_index != last_index);
Sathya Perla6b7c5b92009-03-11 23:32:03 -07001283
1284 atomic_sub(num_wrbs, &txq->used);
Alexander Duycka73b7962009-12-02 16:48:18 +00001285
Sathya Perla6b7c5b92009-03-11 23:32:03 -07001286 kfree_skb(sent_skb);
1287}
1288
Sathya Perla859b1e42009-08-10 03:43:51 +00001289static inline struct be_eq_entry *event_get(struct be_eq_obj *eq_obj)
1290{
1291 struct be_eq_entry *eqe = queue_tail_node(&eq_obj->q);
1292
1293 if (!eqe->evt)
1294 return NULL;
1295
Sathya Perlaf3eb62d2010-06-29 00:11:17 +00001296 rmb();
Sathya Perla859b1e42009-08-10 03:43:51 +00001297 eqe->evt = le32_to_cpu(eqe->evt);
1298 queue_tail_inc(&eq_obj->q);
1299 return eqe;
1300}
1301
1302static int event_handle(struct be_adapter *adapter,
1303 struct be_eq_obj *eq_obj)
1304{
1305 struct be_eq_entry *eqe;
1306 u16 num = 0;
1307
1308 while ((eqe = event_get(eq_obj)) != NULL) {
1309 eqe->evt = 0;
1310 num++;
1311 }
1312
1313 /* Deal with any spurious interrupts that come
1314 * without events
1315 */
1316 be_eq_notify(adapter, eq_obj->q.id, true, true, num);
1317 if (num)
1318 napi_schedule(&eq_obj->napi);
1319
1320 return num;
1321}
1322
1323/* Just read and notify events without processing them.
1324 * Used at the time of destroying event queues */
1325static void be_eq_clean(struct be_adapter *adapter,
1326 struct be_eq_obj *eq_obj)
1327{
1328 struct be_eq_entry *eqe;
1329 u16 num = 0;
1330
1331 while ((eqe = event_get(eq_obj)) != NULL) {
1332 eqe->evt = 0;
1333 num++;
1334 }
1335
1336 if (num)
1337 be_eq_notify(adapter, eq_obj->q.id, false, true, num);
1338}
1339
Sathya Perla3abcded2010-10-03 22:12:27 -07001340static void be_rx_q_clean(struct be_adapter *adapter, struct be_rx_obj *rxo)
Sathya Perla6b7c5b92009-03-11 23:32:03 -07001341{
1342 struct be_rx_page_info *page_info;
Sathya Perla3abcded2010-10-03 22:12:27 -07001343 struct be_queue_info *rxq = &rxo->q;
1344 struct be_queue_info *rx_cq = &rxo->cq;
Sathya Perla6b7c5b92009-03-11 23:32:03 -07001345 struct be_eth_rx_compl *rxcp;
1346 u16 tail;
1347
1348 /* First cleanup pending rx completions */
Sathya Perla3abcded2010-10-03 22:12:27 -07001349 while ((rxcp = be_rx_compl_get(rxo)) != NULL) {
1350 be_rx_compl_discard(adapter, rxo, rxcp);
Sathya Perlaa7a0ef32009-06-10 02:23:28 +00001351 be_rx_compl_reset(rxcp);
Sathya Perla8788fdc2009-07-27 22:52:03 +00001352 be_cq_notify(adapter, rx_cq->id, true, 1);
Sathya Perla6b7c5b92009-03-11 23:32:03 -07001353 }
1354
1355 /* Then free posted rx buffer that were not used */
1356 tail = (rxq->head + rxq->len - atomic_read(&rxq->used)) % rxq->len;
Sathya Perlacdab23b2009-08-10 03:43:23 +00001357 for (; atomic_read(&rxq->used) > 0; index_inc(&tail, rxq->len)) {
Sathya Perla3abcded2010-10-03 22:12:27 -07001358 page_info = get_rx_page_info(adapter, rxo, tail);
Sathya Perla6b7c5b92009-03-11 23:32:03 -07001359 put_page(page_info->page);
1360 memset(page_info, 0, sizeof(*page_info));
1361 }
1362 BUG_ON(atomic_read(&rxq->used));
1363}
1364
Sathya Perlaa8e91792009-08-10 03:42:43 +00001365static void be_tx_compl_clean(struct be_adapter *adapter)
Sathya Perla6b7c5b92009-03-11 23:32:03 -07001366{
Sathya Perlaa8e91792009-08-10 03:42:43 +00001367 struct be_queue_info *tx_cq = &adapter->tx_obj.cq;
Sathya Perla6b7c5b92009-03-11 23:32:03 -07001368 struct be_queue_info *txq = &adapter->tx_obj.q;
Sathya Perlaa8e91792009-08-10 03:42:43 +00001369 struct be_eth_tx_compl *txcp;
1370 u16 end_idx, cmpl = 0, timeo = 0;
Sathya Perlab03388d2010-02-18 00:37:17 +00001371 struct sk_buff **sent_skbs = adapter->tx_obj.sent_skb_list;
1372 struct sk_buff *sent_skb;
1373 bool dummy_wrb;
Sathya Perla6b7c5b92009-03-11 23:32:03 -07001374
Sathya Perlaa8e91792009-08-10 03:42:43 +00001375 /* Wait for a max of 200ms for all the tx-completions to arrive. */
1376 do {
1377 while ((txcp = be_tx_compl_get(tx_cq))) {
1378 end_idx = AMAP_GET_BITS(struct amap_eth_tx_compl,
1379 wrb_index, txcp);
1380 be_tx_compl_process(adapter, end_idx);
1381 cmpl++;
1382 }
1383 if (cmpl) {
1384 be_cq_notify(adapter, tx_cq->id, false, cmpl);
1385 cmpl = 0;
1386 }
1387
1388 if (atomic_read(&txq->used) == 0 || ++timeo > 200)
1389 break;
1390
1391 mdelay(1);
1392 } while (true);
1393
1394 if (atomic_read(&txq->used))
1395 dev_err(&adapter->pdev->dev, "%d pending tx-completions\n",
1396 atomic_read(&txq->used));
Sathya Perlab03388d2010-02-18 00:37:17 +00001397
1398 /* free posted tx for which compls will never arrive */
1399 while (atomic_read(&txq->used)) {
1400 sent_skb = sent_skbs[txq->tail];
1401 end_idx = txq->tail;
1402 index_adv(&end_idx,
Sathya Perlafe6d2a32010-11-21 23:25:50 +00001403 wrb_cnt_for_skb(adapter, sent_skb, &dummy_wrb) - 1,
1404 txq->len);
Sathya Perlab03388d2010-02-18 00:37:17 +00001405 be_tx_compl_process(adapter, end_idx);
1406 }
Sathya Perla6b7c5b92009-03-11 23:32:03 -07001407}
1408
Sathya Perla5fb379e2009-06-18 00:02:59 +00001409static void be_mcc_queues_destroy(struct be_adapter *adapter)
1410{
1411 struct be_queue_info *q;
Sathya Perla5fb379e2009-06-18 00:02:59 +00001412
Sathya Perla8788fdc2009-07-27 22:52:03 +00001413 q = &adapter->mcc_obj.q;
Sathya Perla5fb379e2009-06-18 00:02:59 +00001414 if (q->created)
Sathya Perla8788fdc2009-07-27 22:52:03 +00001415 be_cmd_q_destroy(adapter, q, QTYPE_MCCQ);
Sathya Perla5fb379e2009-06-18 00:02:59 +00001416 be_queue_free(adapter, q);
1417
Sathya Perla8788fdc2009-07-27 22:52:03 +00001418 q = &adapter->mcc_obj.cq;
Sathya Perla5fb379e2009-06-18 00:02:59 +00001419 if (q->created)
Sathya Perla8788fdc2009-07-27 22:52:03 +00001420 be_cmd_q_destroy(adapter, q, QTYPE_CQ);
Sathya Perla5fb379e2009-06-18 00:02:59 +00001421 be_queue_free(adapter, q);
1422}
1423
1424/* Must be called only after TX qs are created as MCC shares TX EQ */
1425static int be_mcc_queues_create(struct be_adapter *adapter)
1426{
1427 struct be_queue_info *q, *cq;
Sathya Perla5fb379e2009-06-18 00:02:59 +00001428
1429 /* Alloc MCC compl queue */
Sathya Perla8788fdc2009-07-27 22:52:03 +00001430 cq = &adapter->mcc_obj.cq;
Sathya Perla5fb379e2009-06-18 00:02:59 +00001431 if (be_queue_alloc(adapter, cq, MCC_CQ_LEN,
Sathya Perlaefd2e402009-07-27 22:53:10 +00001432 sizeof(struct be_mcc_compl)))
Sathya Perla5fb379e2009-06-18 00:02:59 +00001433 goto err;
1434
1435 /* Ask BE to create MCC compl queue; share TX's eq */
Sathya Perla8788fdc2009-07-27 22:52:03 +00001436 if (be_cmd_cq_create(adapter, cq, &adapter->tx_eq.q, false, true, 0))
Sathya Perla5fb379e2009-06-18 00:02:59 +00001437 goto mcc_cq_free;
1438
1439 /* Alloc MCC queue */
Sathya Perla8788fdc2009-07-27 22:52:03 +00001440 q = &adapter->mcc_obj.q;
Sathya Perla5fb379e2009-06-18 00:02:59 +00001441 if (be_queue_alloc(adapter, q, MCC_Q_LEN, sizeof(struct be_mcc_wrb)))
1442 goto mcc_cq_destroy;
1443
1444 /* Ask BE to create MCC queue */
Sathya Perla8788fdc2009-07-27 22:52:03 +00001445 if (be_cmd_mccq_create(adapter, q, cq))
Sathya Perla5fb379e2009-06-18 00:02:59 +00001446 goto mcc_q_free;
1447
1448 return 0;
1449
1450mcc_q_free:
1451 be_queue_free(adapter, q);
1452mcc_cq_destroy:
Sathya Perla8788fdc2009-07-27 22:52:03 +00001453 be_cmd_q_destroy(adapter, cq, QTYPE_CQ);
Sathya Perla5fb379e2009-06-18 00:02:59 +00001454mcc_cq_free:
1455 be_queue_free(adapter, cq);
1456err:
1457 return -1;
1458}
1459
Sathya Perla6b7c5b92009-03-11 23:32:03 -07001460static void be_tx_queues_destroy(struct be_adapter *adapter)
1461{
1462 struct be_queue_info *q;
1463
1464 q = &adapter->tx_obj.q;
Sathya Perlaa8e91792009-08-10 03:42:43 +00001465 if (q->created)
Sathya Perla8788fdc2009-07-27 22:52:03 +00001466 be_cmd_q_destroy(adapter, q, QTYPE_TXQ);
Sathya Perla6b7c5b92009-03-11 23:32:03 -07001467 be_queue_free(adapter, q);
1468
1469 q = &adapter->tx_obj.cq;
1470 if (q->created)
Sathya Perla8788fdc2009-07-27 22:52:03 +00001471 be_cmd_q_destroy(adapter, q, QTYPE_CQ);
Sathya Perla6b7c5b92009-03-11 23:32:03 -07001472 be_queue_free(adapter, q);
1473
Sathya Perla859b1e42009-08-10 03:43:51 +00001474 /* Clear any residual events */
1475 be_eq_clean(adapter, &adapter->tx_eq);
1476
Sathya Perla6b7c5b92009-03-11 23:32:03 -07001477 q = &adapter->tx_eq.q;
1478 if (q->created)
Sathya Perla8788fdc2009-07-27 22:52:03 +00001479 be_cmd_q_destroy(adapter, q, QTYPE_EQ);
Sathya Perla6b7c5b92009-03-11 23:32:03 -07001480 be_queue_free(adapter, q);
1481}
1482
1483static int be_tx_queues_create(struct be_adapter *adapter)
1484{
1485 struct be_queue_info *eq, *q, *cq;
1486
1487 adapter->tx_eq.max_eqd = 0;
1488 adapter->tx_eq.min_eqd = 0;
1489 adapter->tx_eq.cur_eqd = 96;
1490 adapter->tx_eq.enable_aic = false;
1491 /* Alloc Tx Event queue */
1492 eq = &adapter->tx_eq.q;
1493 if (be_queue_alloc(adapter, eq, EVNT_Q_LEN, sizeof(struct be_eq_entry)))
1494 return -1;
1495
1496 /* Ask BE to create Tx Event queue */
Sathya Perla8788fdc2009-07-27 22:52:03 +00001497 if (be_cmd_eq_create(adapter, eq, adapter->tx_eq.cur_eqd))
Sathya Perla6b7c5b92009-03-11 23:32:03 -07001498 goto tx_eq_free;
Sathya Perlafe6d2a32010-11-21 23:25:50 +00001499
1500 adapter->tx_eq.msix_vec_idx = adapter->msix_vec_next_idx++;
1501
Sarveshwar Bandiba343c72010-03-31 02:56:12 +00001502
Sathya Perla6b7c5b92009-03-11 23:32:03 -07001503 /* Alloc TX eth compl queue */
1504 cq = &adapter->tx_obj.cq;
1505 if (be_queue_alloc(adapter, cq, TX_CQ_LEN,
1506 sizeof(struct be_eth_tx_compl)))
1507 goto tx_eq_destroy;
1508
1509 /* Ask BE to create Tx eth compl queue */
Sathya Perla8788fdc2009-07-27 22:52:03 +00001510 if (be_cmd_cq_create(adapter, cq, eq, false, false, 3))
Sathya Perla6b7c5b92009-03-11 23:32:03 -07001511 goto tx_cq_free;
1512
1513 /* Alloc TX eth queue */
1514 q = &adapter->tx_obj.q;
1515 if (be_queue_alloc(adapter, q, TX_Q_LEN, sizeof(struct be_eth_wrb)))
1516 goto tx_cq_destroy;
1517
1518 /* Ask BE to create Tx eth queue */
Sathya Perla8788fdc2009-07-27 22:52:03 +00001519 if (be_cmd_txq_create(adapter, q, cq))
Sathya Perla6b7c5b92009-03-11 23:32:03 -07001520 goto tx_q_free;
1521 return 0;
1522
1523tx_q_free:
1524 be_queue_free(adapter, q);
1525tx_cq_destroy:
Sathya Perla8788fdc2009-07-27 22:52:03 +00001526 be_cmd_q_destroy(adapter, cq, QTYPE_CQ);
Sathya Perla6b7c5b92009-03-11 23:32:03 -07001527tx_cq_free:
1528 be_queue_free(adapter, cq);
1529tx_eq_destroy:
Sathya Perla8788fdc2009-07-27 22:52:03 +00001530 be_cmd_q_destroy(adapter, eq, QTYPE_EQ);
Sathya Perla6b7c5b92009-03-11 23:32:03 -07001531tx_eq_free:
1532 be_queue_free(adapter, eq);
1533 return -1;
1534}
1535
1536static void be_rx_queues_destroy(struct be_adapter *adapter)
1537{
1538 struct be_queue_info *q;
Sathya Perla3abcded2010-10-03 22:12:27 -07001539 struct be_rx_obj *rxo;
1540 int i;
Sathya Perla6b7c5b92009-03-11 23:32:03 -07001541
Sathya Perla3abcded2010-10-03 22:12:27 -07001542 for_all_rx_queues(adapter, rxo, i) {
1543 q = &rxo->q;
1544 if (q->created) {
1545 be_cmd_q_destroy(adapter, q, QTYPE_RXQ);
1546 /* After the rxq is invalidated, wait for a grace time
1547 * of 1ms for all dma to end and the flush compl to
1548 * arrive
1549 */
1550 mdelay(1);
1551 be_rx_q_clean(adapter, rxo);
1552 }
1553 be_queue_free(adapter, q);
Sathya Perla89420422010-02-17 01:35:26 +00001554
Sathya Perla3abcded2010-10-03 22:12:27 -07001555 q = &rxo->cq;
1556 if (q->created)
1557 be_cmd_q_destroy(adapter, q, QTYPE_CQ);
1558 be_queue_free(adapter, q);
1559
1560 /* Clear any residual events */
1561 q = &rxo->rx_eq.q;
1562 if (q->created) {
1563 be_eq_clean(adapter, &rxo->rx_eq);
1564 be_cmd_q_destroy(adapter, q, QTYPE_EQ);
1565 }
1566 be_queue_free(adapter, q);
Sathya Perla6b7c5b92009-03-11 23:32:03 -07001567 }
Sathya Perla6b7c5b92009-03-11 23:32:03 -07001568}
1569
1570static int be_rx_queues_create(struct be_adapter *adapter)
1571{
1572 struct be_queue_info *eq, *q, *cq;
Sathya Perla3abcded2010-10-03 22:12:27 -07001573 struct be_rx_obj *rxo;
1574 int rc, i;
Sathya Perla6b7c5b92009-03-11 23:32:03 -07001575
Sathya Perla6b7c5b92009-03-11 23:32:03 -07001576 adapter->big_page_size = (1 << get_order(rx_frag_size)) * PAGE_SIZE;
Sathya Perla3abcded2010-10-03 22:12:27 -07001577 for_all_rx_queues(adapter, rxo, i) {
1578 rxo->adapter = adapter;
1579 rxo->rx_eq.max_eqd = BE_MAX_EQD;
1580 rxo->rx_eq.enable_aic = true;
Sathya Perla6b7c5b92009-03-11 23:32:03 -07001581
Sathya Perla3abcded2010-10-03 22:12:27 -07001582 /* EQ */
1583 eq = &rxo->rx_eq.q;
1584 rc = be_queue_alloc(adapter, eq, EVNT_Q_LEN,
1585 sizeof(struct be_eq_entry));
1586 if (rc)
1587 goto err;
Sathya Perla6b7c5b92009-03-11 23:32:03 -07001588
Sathya Perla3abcded2010-10-03 22:12:27 -07001589 rc = be_cmd_eq_create(adapter, eq, rxo->rx_eq.cur_eqd);
1590 if (rc)
1591 goto err;
Sathya Perla6b7c5b92009-03-11 23:32:03 -07001592
Sathya Perlafe6d2a32010-11-21 23:25:50 +00001593 rxo->rx_eq.msix_vec_idx = adapter->msix_vec_next_idx++;
1594
Sathya Perla3abcded2010-10-03 22:12:27 -07001595 /* CQ */
1596 cq = &rxo->cq;
1597 rc = be_queue_alloc(adapter, cq, RX_CQ_LEN,
1598 sizeof(struct be_eth_rx_compl));
1599 if (rc)
1600 goto err;
Sathya Perla6b7c5b92009-03-11 23:32:03 -07001601
Sathya Perla3abcded2010-10-03 22:12:27 -07001602 rc = be_cmd_cq_create(adapter, cq, eq, false, false, 3);
1603 if (rc)
1604 goto err;
Sathya Perla3abcded2010-10-03 22:12:27 -07001605 /* Rx Q */
1606 q = &rxo->q;
1607 rc = be_queue_alloc(adapter, q, RX_Q_LEN,
1608 sizeof(struct be_eth_rx_d));
1609 if (rc)
1610 goto err;
Sathya Perla6b7c5b92009-03-11 23:32:03 -07001611
Sathya Perla3abcded2010-10-03 22:12:27 -07001612 rc = be_cmd_rxq_create(adapter, q, cq->id, rx_frag_size,
1613 BE_MAX_JUMBO_FRAME_SIZE, adapter->if_handle,
1614 (i > 0) ? 1 : 0/* rss enable */, &rxo->rss_id);
1615 if (rc)
1616 goto err;
1617 }
1618
1619 if (be_multi_rxq(adapter)) {
1620 u8 rsstable[MAX_RSS_QS];
1621
1622 for_all_rss_queues(adapter, rxo, i)
1623 rsstable[i] = rxo->rss_id;
1624
1625 rc = be_cmd_rss_config(adapter, rsstable,
1626 adapter->num_rx_qs - 1);
1627 if (rc)
1628 goto err;
1629 }
Sathya Perla6b7c5b92009-03-11 23:32:03 -07001630
1631 return 0;
Sathya Perla3abcded2010-10-03 22:12:27 -07001632err:
1633 be_rx_queues_destroy(adapter);
1634 return -1;
Sathya Perla6b7c5b92009-03-11 23:32:03 -07001635}
Sathya Perla6b7c5b92009-03-11 23:32:03 -07001636
Sathya Perlafe6d2a32010-11-21 23:25:50 +00001637static bool event_peek(struct be_eq_obj *eq_obj)
Sathya Perlab628bde2009-08-17 00:58:26 +00001638{
Sathya Perlafe6d2a32010-11-21 23:25:50 +00001639 struct be_eq_entry *eqe = queue_tail_node(&eq_obj->q);
1640 if (!eqe->evt)
1641 return false;
1642 else
1643 return true;
Sathya Perlab628bde2009-08-17 00:58:26 +00001644}
1645
Sathya Perla6b7c5b92009-03-11 23:32:03 -07001646static irqreturn_t be_intx(int irq, void *dev)
1647{
1648 struct be_adapter *adapter = dev;
Sathya Perla3abcded2010-10-03 22:12:27 -07001649 struct be_rx_obj *rxo;
Sathya Perlafe6d2a32010-11-21 23:25:50 +00001650 int isr, i, tx = 0 , rx = 0;
Sathya Perla6b7c5b92009-03-11 23:32:03 -07001651
Sathya Perlafe6d2a32010-11-21 23:25:50 +00001652 if (lancer_chip(adapter)) {
1653 if (event_peek(&adapter->tx_eq))
1654 tx = event_handle(adapter, &adapter->tx_eq);
1655 for_all_rx_queues(adapter, rxo, i) {
1656 if (event_peek(&rxo->rx_eq))
1657 rx |= event_handle(adapter, &rxo->rx_eq);
1658 }
Sathya Perla6b7c5b92009-03-11 23:32:03 -07001659
Sathya Perlafe6d2a32010-11-21 23:25:50 +00001660 if (!(tx || rx))
1661 return IRQ_NONE;
Sathya Perla3abcded2010-10-03 22:12:27 -07001662
Sathya Perlafe6d2a32010-11-21 23:25:50 +00001663 } else {
1664 isr = ioread32(adapter->csr + CEV_ISR0_OFFSET +
1665 (adapter->tx_eq.q.id / 8) * CEV_ISR_SIZE);
1666 if (!isr)
1667 return IRQ_NONE;
1668
1669 if ((1 << adapter->tx_eq.msix_vec_idx & isr))
1670 event_handle(adapter, &adapter->tx_eq);
1671
1672 for_all_rx_queues(adapter, rxo, i) {
1673 if ((1 << rxo->rx_eq.msix_vec_idx & isr))
1674 event_handle(adapter, &rxo->rx_eq);
1675 }
Sathya Perla3abcded2010-10-03 22:12:27 -07001676 }
Sathya Perlac001c212009-07-01 01:06:07 +00001677
Sathya Perla8788fdc2009-07-27 22:52:03 +00001678 return IRQ_HANDLED;
Sathya Perla6b7c5b92009-03-11 23:32:03 -07001679}
1680
1681static irqreturn_t be_msix_rx(int irq, void *dev)
1682{
Sathya Perla3abcded2010-10-03 22:12:27 -07001683 struct be_rx_obj *rxo = dev;
1684 struct be_adapter *adapter = rxo->adapter;
Sathya Perla6b7c5b92009-03-11 23:32:03 -07001685
Sathya Perla3abcded2010-10-03 22:12:27 -07001686 event_handle(adapter, &rxo->rx_eq);
Sathya Perla6b7c5b92009-03-11 23:32:03 -07001687
1688 return IRQ_HANDLED;
1689}
1690
Sathya Perla5fb379e2009-06-18 00:02:59 +00001691static irqreturn_t be_msix_tx_mcc(int irq, void *dev)
Sathya Perla6b7c5b92009-03-11 23:32:03 -07001692{
1693 struct be_adapter *adapter = dev;
1694
Sathya Perla8788fdc2009-07-27 22:52:03 +00001695 event_handle(adapter, &adapter->tx_eq);
Sathya Perla6b7c5b92009-03-11 23:32:03 -07001696
1697 return IRQ_HANDLED;
1698}
1699
Sathya Perla3abcded2010-10-03 22:12:27 -07001700static inline bool do_gro(struct be_adapter *adapter, struct be_rx_obj *rxo,
Sathya Perla6b7c5b92009-03-11 23:32:03 -07001701 struct be_eth_rx_compl *rxcp)
1702{
1703 int err = AMAP_GET_BITS(struct amap_eth_rx_compl, err, rxcp);
1704 int tcp_frame = AMAP_GET_BITS(struct amap_eth_rx_compl, tcpf, rxcp);
1705
1706 if (err)
Sathya Perla3abcded2010-10-03 22:12:27 -07001707 rxo->stats.rxcp_err++;
Sathya Perla6b7c5b92009-03-11 23:32:03 -07001708
Ajit Khaparde5be93b92009-07-21 12:36:19 -07001709 return (tcp_frame && !err) ? true : false;
Sathya Perla6b7c5b92009-03-11 23:32:03 -07001710}
1711
stephen hemminger49b05222010-10-21 07:50:48 +00001712static int be_poll_rx(struct napi_struct *napi, int budget)
Sathya Perla6b7c5b92009-03-11 23:32:03 -07001713{
1714 struct be_eq_obj *rx_eq = container_of(napi, struct be_eq_obj, napi);
Sathya Perla3abcded2010-10-03 22:12:27 -07001715 struct be_rx_obj *rxo = container_of(rx_eq, struct be_rx_obj, rx_eq);
1716 struct be_adapter *adapter = rxo->adapter;
1717 struct be_queue_info *rx_cq = &rxo->cq;
Sathya Perla6b7c5b92009-03-11 23:32:03 -07001718 struct be_eth_rx_compl *rxcp;
1719 u32 work_done;
1720
Sathya Perla3abcded2010-10-03 22:12:27 -07001721 rxo->stats.rx_polls++;
Sathya Perla6b7c5b92009-03-11 23:32:03 -07001722 for (work_done = 0; work_done < budget; work_done++) {
Sathya Perla3abcded2010-10-03 22:12:27 -07001723 rxcp = be_rx_compl_get(rxo);
Sathya Perla6b7c5b92009-03-11 23:32:03 -07001724 if (!rxcp)
1725 break;
1726
Sathya Perla3abcded2010-10-03 22:12:27 -07001727 if (do_gro(adapter, rxo, rxcp))
1728 be_rx_compl_process_gro(adapter, rxo, rxcp);
Sathya Perla6b7c5b92009-03-11 23:32:03 -07001729 else
Sathya Perla3abcded2010-10-03 22:12:27 -07001730 be_rx_compl_process(adapter, rxo, rxcp);
Sathya Perlaa7a0ef32009-06-10 02:23:28 +00001731
1732 be_rx_compl_reset(rxcp);
Sathya Perla6b7c5b92009-03-11 23:32:03 -07001733 }
1734
Sathya Perla6b7c5b92009-03-11 23:32:03 -07001735 /* Refill the queue */
Sathya Perla3abcded2010-10-03 22:12:27 -07001736 if (atomic_read(&rxo->q.used) < RX_FRAGS_REFILL_WM)
1737 be_post_rx_frags(rxo);
Sathya Perla6b7c5b92009-03-11 23:32:03 -07001738
1739 /* All consumed */
1740 if (work_done < budget) {
1741 napi_complete(napi);
Sathya Perla8788fdc2009-07-27 22:52:03 +00001742 be_cq_notify(adapter, rx_cq->id, true, work_done);
Sathya Perla6b7c5b92009-03-11 23:32:03 -07001743 } else {
1744 /* More to be consumed; continue with interrupts disabled */
Sathya Perla8788fdc2009-07-27 22:52:03 +00001745 be_cq_notify(adapter, rx_cq->id, false, work_done);
Sathya Perla6b7c5b92009-03-11 23:32:03 -07001746 }
1747 return work_done;
1748}
1749
Sathya Perlaf31e50a2010-03-02 03:56:39 -08001750/* As TX and MCC share the same EQ check for both TX and MCC completions.
1751 * For TX/MCC we don't honour budget; consume everything
1752 */
1753static int be_poll_tx_mcc(struct napi_struct *napi, int budget)
Sathya Perla6b7c5b92009-03-11 23:32:03 -07001754{
Sathya Perlaf31e50a2010-03-02 03:56:39 -08001755 struct be_eq_obj *tx_eq = container_of(napi, struct be_eq_obj, napi);
1756 struct be_adapter *adapter =
1757 container_of(tx_eq, struct be_adapter, tx_eq);
Sathya Perla5fb379e2009-06-18 00:02:59 +00001758 struct be_queue_info *txq = &adapter->tx_obj.q;
1759 struct be_queue_info *tx_cq = &adapter->tx_obj.cq;
Sathya Perla6b7c5b92009-03-11 23:32:03 -07001760 struct be_eth_tx_compl *txcp;
Sathya Perlaf31e50a2010-03-02 03:56:39 -08001761 int tx_compl = 0, mcc_compl, status = 0;
Sathya Perla6b7c5b92009-03-11 23:32:03 -07001762 u16 end_idx;
1763
Sathya Perla5fb379e2009-06-18 00:02:59 +00001764 while ((txcp = be_tx_compl_get(tx_cq))) {
Sathya Perla6b7c5b92009-03-11 23:32:03 -07001765 end_idx = AMAP_GET_BITS(struct amap_eth_tx_compl,
Sathya Perlaf31e50a2010-03-02 03:56:39 -08001766 wrb_index, txcp);
Sathya Perla6b7c5b92009-03-11 23:32:03 -07001767 be_tx_compl_process(adapter, end_idx);
Sathya Perlaf31e50a2010-03-02 03:56:39 -08001768 tx_compl++;
Sathya Perla6b7c5b92009-03-11 23:32:03 -07001769 }
1770
Sathya Perlaf31e50a2010-03-02 03:56:39 -08001771 mcc_compl = be_process_mcc(adapter, &status);
1772
1773 napi_complete(napi);
1774
1775 if (mcc_compl) {
1776 struct be_mcc_obj *mcc_obj = &adapter->mcc_obj;
1777 be_cq_notify(adapter, mcc_obj->cq.id, true, mcc_compl);
1778 }
1779
1780 if (tx_compl) {
1781 be_cq_notify(adapter, adapter->tx_obj.cq.id, true, tx_compl);
Sathya Perla5fb379e2009-06-18 00:02:59 +00001782
1783 /* As Tx wrbs have been freed up, wake up netdev queue if
1784 * it was stopped due to lack of tx wrbs.
1785 */
1786 if (netif_queue_stopped(adapter->netdev) &&
Sathya Perla6b7c5b92009-03-11 23:32:03 -07001787 atomic_read(&txq->used) < txq->len / 2) {
Sathya Perla5fb379e2009-06-18 00:02:59 +00001788 netif_wake_queue(adapter->netdev);
1789 }
1790
Sathya Perla3abcded2010-10-03 22:12:27 -07001791 tx_stats(adapter)->be_tx_events++;
1792 tx_stats(adapter)->be_tx_compl += tx_compl;
Sathya Perla6b7c5b92009-03-11 23:32:03 -07001793 }
Sathya Perla6b7c5b92009-03-11 23:32:03 -07001794
1795 return 1;
1796}
1797
Ajit Khaparded053de92010-09-03 06:23:30 +00001798void be_detect_dump_ue(struct be_adapter *adapter)
Ajit Khaparde7c185272010-07-29 06:16:33 +00001799{
1800 u32 ue_status_lo, ue_status_hi, ue_status_lo_mask, ue_status_hi_mask;
1801 u32 i;
1802
1803 pci_read_config_dword(adapter->pdev,
1804 PCICFG_UE_STATUS_LOW, &ue_status_lo);
1805 pci_read_config_dword(adapter->pdev,
1806 PCICFG_UE_STATUS_HIGH, &ue_status_hi);
1807 pci_read_config_dword(adapter->pdev,
1808 PCICFG_UE_STATUS_LOW_MASK, &ue_status_lo_mask);
1809 pci_read_config_dword(adapter->pdev,
1810 PCICFG_UE_STATUS_HI_MASK, &ue_status_hi_mask);
1811
1812 ue_status_lo = (ue_status_lo & (~ue_status_lo_mask));
1813 ue_status_hi = (ue_status_hi & (~ue_status_hi_mask));
1814
Ajit Khaparded053de92010-09-03 06:23:30 +00001815 if (ue_status_lo || ue_status_hi) {
1816 adapter->ue_detected = true;
1817 dev_err(&adapter->pdev->dev, "UE Detected!!\n");
1818 }
1819
Ajit Khaparde7c185272010-07-29 06:16:33 +00001820 if (ue_status_lo) {
1821 for (i = 0; ue_status_lo; ue_status_lo >>= 1, i++) {
1822 if (ue_status_lo & 1)
1823 dev_err(&adapter->pdev->dev,
1824 "UE: %s bit set\n", ue_status_low_desc[i]);
1825 }
1826 }
1827 if (ue_status_hi) {
1828 for (i = 0; ue_status_hi; ue_status_hi >>= 1, i++) {
1829 if (ue_status_hi & 1)
1830 dev_err(&adapter->pdev->dev,
1831 "UE: %s bit set\n", ue_status_hi_desc[i]);
1832 }
1833 }
1834
1835}
1836
Sathya Perlaea1dae12009-03-19 23:56:20 -07001837static void be_worker(struct work_struct *work)
1838{
1839 struct be_adapter *adapter =
1840 container_of(work, struct be_adapter, work.work);
Sathya Perla3abcded2010-10-03 22:12:27 -07001841 struct be_rx_obj *rxo;
1842 int i;
Sathya Perlaea1dae12009-03-19 23:56:20 -07001843
Somnath Koturf203af72010-10-25 23:01:03 +00001844 /* when interrupts are not yet enabled, just reap any pending
1845 * mcc completions */
1846 if (!netif_running(adapter->netdev)) {
1847 int mcc_compl, status = 0;
1848
1849 mcc_compl = be_process_mcc(adapter, &status);
1850
1851 if (mcc_compl) {
1852 struct be_mcc_obj *mcc_obj = &adapter->mcc_obj;
1853 be_cq_notify(adapter, mcc_obj->cq.id, false, mcc_compl);
1854 }
1855 goto reschedule;
1856 }
1857
Ajit Khaparde0fc48c32010-07-29 06:18:58 +00001858 if (!adapter->stats_ioctl_sent)
Sathya Perla3abcded2010-10-03 22:12:27 -07001859 be_cmd_get_stats(adapter, &adapter->stats_cmd);
Sathya Perlaea1dae12009-03-19 23:56:20 -07001860
Sathya Perla4097f662009-03-24 16:40:13 -07001861 be_tx_rate_update(adapter);
Sathya Perla4097f662009-03-24 16:40:13 -07001862
Sathya Perla3abcded2010-10-03 22:12:27 -07001863 for_all_rx_queues(adapter, rxo, i) {
1864 be_rx_rate_update(rxo);
1865 be_rx_eqd_update(adapter, rxo);
1866
1867 if (rxo->rx_post_starved) {
1868 rxo->rx_post_starved = false;
1869 be_post_rx_frags(rxo);
1870 }
Sathya Perlaea1dae12009-03-19 23:56:20 -07001871 }
Sathya Perlafe6d2a32010-11-21 23:25:50 +00001872 if (!adapter->ue_detected && !lancer_chip(adapter))
Ajit Khaparded053de92010-09-03 06:23:30 +00001873 be_detect_dump_ue(adapter);
Sathya Perlaea1dae12009-03-19 23:56:20 -07001874
Somnath Koturf203af72010-10-25 23:01:03 +00001875reschedule:
Sathya Perlaea1dae12009-03-19 23:56:20 -07001876 schedule_delayed_work(&adapter->work, msecs_to_jiffies(1000));
1877}
1878
Sathya Perla8d56ff12009-11-22 22:02:26 +00001879static void be_msix_disable(struct be_adapter *adapter)
1880{
1881 if (adapter->msix_enabled) {
1882 pci_disable_msix(adapter->pdev);
1883 adapter->msix_enabled = false;
1884 }
1885}
1886
Sathya Perla3abcded2010-10-03 22:12:27 -07001887static int be_num_rxqs_get(struct be_adapter *adapter)
1888{
1889 if (multi_rxq && (adapter->function_caps & BE_FUNCTION_CAPS_RSS) &&
1890 !adapter->sriov_enabled && !(adapter->function_mode & 0x400)) {
1891 return 1 + MAX_RSS_QS; /* one default non-RSS queue */
1892 } else {
1893 dev_warn(&adapter->pdev->dev,
1894 "No support for multiple RX queues\n");
1895 return 1;
1896 }
1897}
1898
Sathya Perla6b7c5b92009-03-11 23:32:03 -07001899static void be_msix_enable(struct be_adapter *adapter)
1900{
Sathya Perla3abcded2010-10-03 22:12:27 -07001901#define BE_MIN_MSIX_VECTORS (1 + 1) /* Rx + Tx */
Sathya Perla6b7c5b92009-03-11 23:32:03 -07001902 int i, status;
1903
Sathya Perla3abcded2010-10-03 22:12:27 -07001904 adapter->num_rx_qs = be_num_rxqs_get(adapter);
1905
1906 for (i = 0; i < (adapter->num_rx_qs + 1); i++)
Sathya Perla6b7c5b92009-03-11 23:32:03 -07001907 adapter->msix_entries[i].entry = i;
1908
1909 status = pci_enable_msix(adapter->pdev, adapter->msix_entries,
Sathya Perla3abcded2010-10-03 22:12:27 -07001910 adapter->num_rx_qs + 1);
1911 if (status == 0) {
1912 goto done;
1913 } else if (status >= BE_MIN_MSIX_VECTORS) {
1914 if (pci_enable_msix(adapter->pdev, adapter->msix_entries,
1915 status) == 0) {
1916 adapter->num_rx_qs = status - 1;
1917 dev_warn(&adapter->pdev->dev,
1918 "Could alloc only %d MSIx vectors. "
1919 "Using %d RX Qs\n", status, adapter->num_rx_qs);
1920 goto done;
1921 }
1922 }
1923 return;
1924done:
1925 adapter->msix_enabled = true;
Sathya Perla6b7c5b92009-03-11 23:32:03 -07001926}
1927
Sarveshwar Bandiba343c72010-03-31 02:56:12 +00001928static void be_sriov_enable(struct be_adapter *adapter)
1929{
Sarveshwar Bandi344dbf12010-07-09 01:43:55 +00001930 be_check_sriov_fn_type(adapter);
Ajit Khaparde6dedec82010-07-29 06:15:32 +00001931#ifdef CONFIG_PCI_IOV
Sarveshwar Bandiba343c72010-03-31 02:56:12 +00001932 if (be_physfn(adapter) && num_vfs) {
Ajit Khaparde6dedec82010-07-29 06:15:32 +00001933 int status;
1934
Sarveshwar Bandiba343c72010-03-31 02:56:12 +00001935 status = pci_enable_sriov(adapter->pdev, num_vfs);
1936 adapter->sriov_enabled = status ? false : true;
1937 }
1938#endif
Sarveshwar Bandiba343c72010-03-31 02:56:12 +00001939}
1940
1941static void be_sriov_disable(struct be_adapter *adapter)
1942{
1943#ifdef CONFIG_PCI_IOV
1944 if (adapter->sriov_enabled) {
1945 pci_disable_sriov(adapter->pdev);
1946 adapter->sriov_enabled = false;
1947 }
1948#endif
1949}
1950
Sathya Perlafe6d2a32010-11-21 23:25:50 +00001951static inline int be_msix_vec_get(struct be_adapter *adapter,
1952 struct be_eq_obj *eq_obj)
Sathya Perla6b7c5b92009-03-11 23:32:03 -07001953{
Sathya Perlafe6d2a32010-11-21 23:25:50 +00001954 return adapter->msix_entries[eq_obj->msix_vec_idx].vector;
Sathya Perlab628bde2009-08-17 00:58:26 +00001955}
1956
1957static int be_request_irq(struct be_adapter *adapter,
1958 struct be_eq_obj *eq_obj,
Sathya Perla3abcded2010-10-03 22:12:27 -07001959 void *handler, char *desc, void *context)
Sathya Perlab628bde2009-08-17 00:58:26 +00001960{
1961 struct net_device *netdev = adapter->netdev;
1962 int vec;
1963
1964 sprintf(eq_obj->desc, "%s-%s", netdev->name, desc);
Sathya Perlafe6d2a32010-11-21 23:25:50 +00001965 vec = be_msix_vec_get(adapter, eq_obj);
Sathya Perla3abcded2010-10-03 22:12:27 -07001966 return request_irq(vec, handler, 0, eq_obj->desc, context);
Sathya Perlab628bde2009-08-17 00:58:26 +00001967}
1968
Sathya Perla3abcded2010-10-03 22:12:27 -07001969static void be_free_irq(struct be_adapter *adapter, struct be_eq_obj *eq_obj,
1970 void *context)
Sathya Perlab628bde2009-08-17 00:58:26 +00001971{
Sathya Perlafe6d2a32010-11-21 23:25:50 +00001972 int vec = be_msix_vec_get(adapter, eq_obj);
Sathya Perla3abcded2010-10-03 22:12:27 -07001973 free_irq(vec, context);
Sathya Perla6b7c5b92009-03-11 23:32:03 -07001974}
1975
1976static int be_msix_register(struct be_adapter *adapter)
1977{
Sathya Perla3abcded2010-10-03 22:12:27 -07001978 struct be_rx_obj *rxo;
1979 int status, i;
1980 char qname[10];
Sathya Perla6b7c5b92009-03-11 23:32:03 -07001981
Sathya Perla3abcded2010-10-03 22:12:27 -07001982 status = be_request_irq(adapter, &adapter->tx_eq, be_msix_tx_mcc, "tx",
1983 adapter);
Sathya Perla6b7c5b92009-03-11 23:32:03 -07001984 if (status)
1985 goto err;
1986
Sathya Perla3abcded2010-10-03 22:12:27 -07001987 for_all_rx_queues(adapter, rxo, i) {
1988 sprintf(qname, "rxq%d", i);
1989 status = be_request_irq(adapter, &rxo->rx_eq, be_msix_rx,
1990 qname, rxo);
1991 if (status)
1992 goto err_msix;
1993 }
Sathya Perlab628bde2009-08-17 00:58:26 +00001994
Sathya Perla6b7c5b92009-03-11 23:32:03 -07001995 return 0;
Sathya Perlab628bde2009-08-17 00:58:26 +00001996
Sathya Perla3abcded2010-10-03 22:12:27 -07001997err_msix:
1998 be_free_irq(adapter, &adapter->tx_eq, adapter);
1999
2000 for (i--, rxo = &adapter->rx_obj[i]; i >= 0; i--, rxo--)
2001 be_free_irq(adapter, &rxo->rx_eq, rxo);
2002
Sathya Perla6b7c5b92009-03-11 23:32:03 -07002003err:
2004 dev_warn(&adapter->pdev->dev,
2005 "MSIX Request IRQ failed - err %d\n", status);
2006 pci_disable_msix(adapter->pdev);
2007 adapter->msix_enabled = false;
2008 return status;
2009}
2010
2011static int be_irq_register(struct be_adapter *adapter)
2012{
2013 struct net_device *netdev = adapter->netdev;
2014 int status;
2015
2016 if (adapter->msix_enabled) {
2017 status = be_msix_register(adapter);
2018 if (status == 0)
2019 goto done;
Sarveshwar Bandiba343c72010-03-31 02:56:12 +00002020 /* INTx is not supported for VF */
2021 if (!be_physfn(adapter))
2022 return status;
Sathya Perla6b7c5b92009-03-11 23:32:03 -07002023 }
2024
2025 /* INTx */
2026 netdev->irq = adapter->pdev->irq;
2027 status = request_irq(netdev->irq, be_intx, IRQF_SHARED, netdev->name,
2028 adapter);
2029 if (status) {
2030 dev_err(&adapter->pdev->dev,
2031 "INTx request IRQ failed - err %d\n", status);
2032 return status;
2033 }
2034done:
2035 adapter->isr_registered = true;
2036 return 0;
2037}
2038
2039static void be_irq_unregister(struct be_adapter *adapter)
2040{
2041 struct net_device *netdev = adapter->netdev;
Sathya Perla3abcded2010-10-03 22:12:27 -07002042 struct be_rx_obj *rxo;
2043 int i;
Sathya Perla6b7c5b92009-03-11 23:32:03 -07002044
2045 if (!adapter->isr_registered)
2046 return;
2047
2048 /* INTx */
2049 if (!adapter->msix_enabled) {
2050 free_irq(netdev->irq, adapter);
2051 goto done;
2052 }
2053
2054 /* MSIx */
Sathya Perla3abcded2010-10-03 22:12:27 -07002055 be_free_irq(adapter, &adapter->tx_eq, adapter);
2056
2057 for_all_rx_queues(adapter, rxo, i)
2058 be_free_irq(adapter, &rxo->rx_eq, rxo);
2059
Sathya Perla6b7c5b92009-03-11 23:32:03 -07002060done:
2061 adapter->isr_registered = false;
Sathya Perla6b7c5b92009-03-11 23:32:03 -07002062}
2063
Sathya Perla889cd4b2010-05-30 23:33:45 +00002064static int be_close(struct net_device *netdev)
2065{
2066 struct be_adapter *adapter = netdev_priv(netdev);
Sathya Perla3abcded2010-10-03 22:12:27 -07002067 struct be_rx_obj *rxo;
Sathya Perla889cd4b2010-05-30 23:33:45 +00002068 struct be_eq_obj *tx_eq = &adapter->tx_eq;
Sathya Perla3abcded2010-10-03 22:12:27 -07002069 int vec, i;
Sathya Perla889cd4b2010-05-30 23:33:45 +00002070
Sathya Perla889cd4b2010-05-30 23:33:45 +00002071 be_async_mcc_disable(adapter);
2072
2073 netif_stop_queue(netdev);
2074 netif_carrier_off(netdev);
2075 adapter->link_up = false;
2076
Sathya Perlafe6d2a32010-11-21 23:25:50 +00002077 if (!lancer_chip(adapter))
2078 be_intr_set(adapter, false);
Sathya Perla889cd4b2010-05-30 23:33:45 +00002079
2080 if (adapter->msix_enabled) {
Sathya Perlafe6d2a32010-11-21 23:25:50 +00002081 vec = be_msix_vec_get(adapter, tx_eq);
Sathya Perla889cd4b2010-05-30 23:33:45 +00002082 synchronize_irq(vec);
Sathya Perla3abcded2010-10-03 22:12:27 -07002083
2084 for_all_rx_queues(adapter, rxo, i) {
Sathya Perlafe6d2a32010-11-21 23:25:50 +00002085 vec = be_msix_vec_get(adapter, &rxo->rx_eq);
Sathya Perla3abcded2010-10-03 22:12:27 -07002086 synchronize_irq(vec);
2087 }
Sathya Perla889cd4b2010-05-30 23:33:45 +00002088 } else {
2089 synchronize_irq(netdev->irq);
2090 }
2091 be_irq_unregister(adapter);
2092
Sathya Perla3abcded2010-10-03 22:12:27 -07002093 for_all_rx_queues(adapter, rxo, i)
2094 napi_disable(&rxo->rx_eq.napi);
2095
Sathya Perla889cd4b2010-05-30 23:33:45 +00002096 napi_disable(&tx_eq->napi);
2097
2098 /* Wait for all pending tx completions to arrive so that
2099 * all tx skbs are freed.
2100 */
2101 be_tx_compl_clean(adapter);
2102
2103 return 0;
2104}
2105
Sathya Perla6b7c5b92009-03-11 23:32:03 -07002106static int be_open(struct net_device *netdev)
2107{
2108 struct be_adapter *adapter = netdev_priv(netdev);
Sathya Perla6b7c5b92009-03-11 23:32:03 -07002109 struct be_eq_obj *tx_eq = &adapter->tx_eq;
Sathya Perla3abcded2010-10-03 22:12:27 -07002110 struct be_rx_obj *rxo;
Sathya Perlaa8f447bd2009-06-18 00:10:27 +00002111 bool link_up;
Sathya Perla3abcded2010-10-03 22:12:27 -07002112 int status, i;
Sarveshwar Bandi0388f252009-10-28 04:15:20 -07002113 u8 mac_speed;
2114 u16 link_speed;
Sathya Perla5fb379e2009-06-18 00:02:59 +00002115
Sathya Perla3abcded2010-10-03 22:12:27 -07002116 for_all_rx_queues(adapter, rxo, i) {
2117 be_post_rx_frags(rxo);
2118 napi_enable(&rxo->rx_eq.napi);
2119 }
Sathya Perla5fb379e2009-06-18 00:02:59 +00002120 napi_enable(&tx_eq->napi);
2121
2122 be_irq_register(adapter);
2123
Sathya Perlafe6d2a32010-11-21 23:25:50 +00002124 if (!lancer_chip(adapter))
2125 be_intr_set(adapter, true);
Sathya Perla5fb379e2009-06-18 00:02:59 +00002126
2127 /* The evt queues are created in unarmed state; arm them */
Sathya Perla3abcded2010-10-03 22:12:27 -07002128 for_all_rx_queues(adapter, rxo, i) {
2129 be_eq_notify(adapter, rxo->rx_eq.q.id, true, false, 0);
2130 be_cq_notify(adapter, rxo->cq.id, true, 0);
2131 }
Sathya Perla8788fdc2009-07-27 22:52:03 +00002132 be_eq_notify(adapter, tx_eq->q.id, true, false, 0);
Sathya Perla5fb379e2009-06-18 00:02:59 +00002133
Sathya Perla7a1e9b22010-02-17 01:35:11 +00002134 /* Now that interrupts are on we can process async mcc */
2135 be_async_mcc_enable(adapter);
2136
Sarveshwar Bandi0388f252009-10-28 04:15:20 -07002137 status = be_cmd_link_status_query(adapter, &link_up, &mac_speed,
2138 &link_speed);
Sathya Perlaa8f447bd2009-06-18 00:10:27 +00002139 if (status)
Sathya Perla889cd4b2010-05-30 23:33:45 +00002140 goto err;
Sathya Perlaa8f447bd2009-06-18 00:10:27 +00002141 be_link_status_update(adapter, link_up);
Sathya Perla5fb379e2009-06-18 00:02:59 +00002142
Sarveshwar Bandiba343c72010-03-31 02:56:12 +00002143 if (be_physfn(adapter)) {
Ajit Khaparde1da87b72010-07-23 01:51:22 +00002144 status = be_vid_config(adapter, false, 0);
Sathya Perla889cd4b2010-05-30 23:33:45 +00002145 if (status)
2146 goto err;
2147
Sarveshwar Bandiba343c72010-03-31 02:56:12 +00002148 status = be_cmd_set_flow_control(adapter,
2149 adapter->tx_fc, adapter->rx_fc);
2150 if (status)
Sathya Perla889cd4b2010-05-30 23:33:45 +00002151 goto err;
Sarveshwar Bandiba343c72010-03-31 02:56:12 +00002152 }
Ajit Khaparde4f2aa892009-11-06 02:07:32 +00002153
Sathya Perla889cd4b2010-05-30 23:33:45 +00002154 return 0;
2155err:
2156 be_close(adapter->netdev);
2157 return -EIO;
Sathya Perla5fb379e2009-06-18 00:02:59 +00002158}
2159
Ajit Khaparde71d8d1b2009-12-03 06:16:59 +00002160static int be_setup_wol(struct be_adapter *adapter, bool enable)
2161{
2162 struct be_dma_mem cmd;
2163 int status = 0;
2164 u8 mac[ETH_ALEN];
2165
2166 memset(mac, 0, ETH_ALEN);
2167
2168 cmd.size = sizeof(struct be_cmd_req_acpi_wol_magic_config);
2169 cmd.va = pci_alloc_consistent(adapter->pdev, cmd.size, &cmd.dma);
2170 if (cmd.va == NULL)
2171 return -1;
2172 memset(cmd.va, 0, cmd.size);
2173
2174 if (enable) {
2175 status = pci_write_config_dword(adapter->pdev,
2176 PCICFG_PM_CONTROL_OFFSET, PCICFG_PM_CONTROL_MASK);
2177 if (status) {
2178 dev_err(&adapter->pdev->dev,
Frans Pop2381a552010-03-24 07:57:36 +00002179 "Could not enable Wake-on-lan\n");
Ajit Khaparde71d8d1b2009-12-03 06:16:59 +00002180 pci_free_consistent(adapter->pdev, cmd.size, cmd.va,
2181 cmd.dma);
2182 return status;
2183 }
2184 status = be_cmd_enable_magic_wol(adapter,
2185 adapter->netdev->dev_addr, &cmd);
2186 pci_enable_wake(adapter->pdev, PCI_D3hot, 1);
2187 pci_enable_wake(adapter->pdev, PCI_D3cold, 1);
2188 } else {
2189 status = be_cmd_enable_magic_wol(adapter, mac, &cmd);
2190 pci_enable_wake(adapter->pdev, PCI_D3hot, 0);
2191 pci_enable_wake(adapter->pdev, PCI_D3cold, 0);
2192 }
2193
2194 pci_free_consistent(adapter->pdev, cmd.size, cmd.va, cmd.dma);
2195 return status;
2196}
2197
Ajit Khaparde6d87f5c2010-08-25 00:32:33 +00002198/*
2199 * Generate a seed MAC address from the PF MAC Address using jhash.
2200 * MAC Address for VFs are assigned incrementally starting from the seed.
2201 * These addresses are programmed in the ASIC by the PF and the VF driver
2202 * queries for the MAC address during its probe.
2203 */
2204static inline int be_vf_eth_addr_config(struct be_adapter *adapter)
2205{
2206 u32 vf = 0;
Sathya Perla3abcded2010-10-03 22:12:27 -07002207 int status = 0;
Ajit Khaparde6d87f5c2010-08-25 00:32:33 +00002208 u8 mac[ETH_ALEN];
2209
2210 be_vf_eth_addr_generate(adapter, mac);
2211
2212 for (vf = 0; vf < num_vfs; vf++) {
2213 status = be_cmd_pmac_add(adapter, mac,
2214 adapter->vf_cfg[vf].vf_if_handle,
2215 &adapter->vf_cfg[vf].vf_pmac_id);
2216 if (status)
2217 dev_err(&adapter->pdev->dev,
2218 "Mac address add failed for VF %d\n", vf);
2219 else
2220 memcpy(adapter->vf_cfg[vf].vf_mac_addr, mac, ETH_ALEN);
2221
2222 mac[5] += 1;
2223 }
2224 return status;
2225}
2226
2227static inline void be_vf_eth_addr_rem(struct be_adapter *adapter)
2228{
2229 u32 vf;
2230
2231 for (vf = 0; vf < num_vfs; vf++) {
2232 if (adapter->vf_cfg[vf].vf_pmac_id != BE_INVALID_PMAC_ID)
2233 be_cmd_pmac_del(adapter,
2234 adapter->vf_cfg[vf].vf_if_handle,
2235 adapter->vf_cfg[vf].vf_pmac_id);
2236 }
2237}
2238
Sathya Perla5fb379e2009-06-18 00:02:59 +00002239static int be_setup(struct be_adapter *adapter)
2240{
Sathya Perla5fb379e2009-06-18 00:02:59 +00002241 struct net_device *netdev = adapter->netdev;
Sarveshwar Bandiba343c72010-03-31 02:56:12 +00002242 u32 cap_flags, en_flags, vf = 0;
Sathya Perla6b7c5b92009-03-11 23:32:03 -07002243 int status;
Sarveshwar Bandiba343c72010-03-31 02:56:12 +00002244 u8 mac[ETH_ALEN];
Sathya Perla6b7c5b92009-03-11 23:32:03 -07002245
Sarveshwar Bandiba343c72010-03-31 02:56:12 +00002246 cap_flags = en_flags = BE_IF_FLAGS_UNTAGGED | BE_IF_FLAGS_BROADCAST;
2247
2248 if (be_physfn(adapter)) {
2249 cap_flags |= BE_IF_FLAGS_MCAST_PROMISCUOUS |
2250 BE_IF_FLAGS_PROMISCUOUS |
2251 BE_IF_FLAGS_PASS_L3L4_ERRORS;
2252 en_flags |= BE_IF_FLAGS_PASS_L3L4_ERRORS;
Sathya Perla3abcded2010-10-03 22:12:27 -07002253
2254 if (be_multi_rxq(adapter)) {
2255 cap_flags |= BE_IF_FLAGS_RSS;
2256 en_flags |= BE_IF_FLAGS_RSS;
2257 }
Sarveshwar Bandiba343c72010-03-31 02:56:12 +00002258 }
Sathya Perla73d540f2009-10-14 20:20:42 +00002259
2260 status = be_cmd_if_create(adapter, cap_flags, en_flags,
2261 netdev->dev_addr, false/* pmac_invalid */,
Sarveshwar Bandiba343c72010-03-31 02:56:12 +00002262 &adapter->if_handle, &adapter->pmac_id, 0);
Sathya Perla6b7c5b92009-03-11 23:32:03 -07002263 if (status != 0)
2264 goto do_none;
2265
Sarveshwar Bandiba343c72010-03-31 02:56:12 +00002266 if (be_physfn(adapter)) {
2267 while (vf < num_vfs) {
2268 cap_flags = en_flags = BE_IF_FLAGS_UNTAGGED
2269 | BE_IF_FLAGS_BROADCAST;
2270 status = be_cmd_if_create(adapter, cap_flags, en_flags,
Ajit Khaparde64600ea2010-07-23 01:50:34 +00002271 mac, true,
2272 &adapter->vf_cfg[vf].vf_if_handle,
Sarveshwar Bandiba343c72010-03-31 02:56:12 +00002273 NULL, vf+1);
2274 if (status) {
2275 dev_err(&adapter->pdev->dev,
2276 "Interface Create failed for VF %d\n", vf);
2277 goto if_destroy;
2278 }
Ajit Khaparde64600ea2010-07-23 01:50:34 +00002279 adapter->vf_cfg[vf].vf_pmac_id = BE_INVALID_PMAC_ID;
Sarveshwar Bandiba343c72010-03-31 02:56:12 +00002280 vf++;
Sarveshwar Bandi84e5b9f2010-05-27 16:28:15 -07002281 }
Sarveshwar Bandiba343c72010-03-31 02:56:12 +00002282 } else if (!be_physfn(adapter)) {
2283 status = be_cmd_mac_addr_query(adapter, mac,
2284 MAC_ADDRESS_TYPE_NETWORK, false, adapter->if_handle);
2285 if (!status) {
2286 memcpy(adapter->netdev->dev_addr, mac, ETH_ALEN);
2287 memcpy(adapter->netdev->perm_addr, mac, ETH_ALEN);
2288 }
2289 }
2290
Sathya Perla6b7c5b92009-03-11 23:32:03 -07002291 status = be_tx_queues_create(adapter);
2292 if (status != 0)
2293 goto if_destroy;
2294
2295 status = be_rx_queues_create(adapter);
2296 if (status != 0)
2297 goto tx_qs_destroy;
2298
Sathya Perla5fb379e2009-06-18 00:02:59 +00002299 status = be_mcc_queues_create(adapter);
2300 if (status != 0)
2301 goto rx_qs_destroy;
Sathya Perla6b7c5b92009-03-11 23:32:03 -07002302
Ajit Khaparde6d87f5c2010-08-25 00:32:33 +00002303 if (be_physfn(adapter)) {
2304 status = be_vf_eth_addr_config(adapter);
2305 if (status)
2306 goto mcc_q_destroy;
2307 }
2308
Ajit Khaparde0dffc832009-11-29 17:57:46 +00002309 adapter->link_speed = -1;
2310
Sathya Perla6b7c5b92009-03-11 23:32:03 -07002311 return 0;
2312
Ajit Khaparde6d87f5c2010-08-25 00:32:33 +00002313mcc_q_destroy:
2314 if (be_physfn(adapter))
2315 be_vf_eth_addr_rem(adapter);
2316 be_mcc_queues_destroy(adapter);
Sathya Perla5fb379e2009-06-18 00:02:59 +00002317rx_qs_destroy:
2318 be_rx_queues_destroy(adapter);
Sathya Perla6b7c5b92009-03-11 23:32:03 -07002319tx_qs_destroy:
2320 be_tx_queues_destroy(adapter);
2321if_destroy:
Sarveshwar Bandiba343c72010-03-31 02:56:12 +00002322 for (vf = 0; vf < num_vfs; vf++)
Ajit Khaparde64600ea2010-07-23 01:50:34 +00002323 if (adapter->vf_cfg[vf].vf_if_handle)
2324 be_cmd_if_destroy(adapter,
2325 adapter->vf_cfg[vf].vf_if_handle);
Sathya Perla8788fdc2009-07-27 22:52:03 +00002326 be_cmd_if_destroy(adapter, adapter->if_handle);
Sathya Perla6b7c5b92009-03-11 23:32:03 -07002327do_none:
2328 return status;
2329}
2330
Sathya Perla5fb379e2009-06-18 00:02:59 +00002331static int be_clear(struct be_adapter *adapter)
2332{
Ajit Khaparde6d87f5c2010-08-25 00:32:33 +00002333 if (be_physfn(adapter))
2334 be_vf_eth_addr_rem(adapter);
2335
Sathya Perla1a8887d2009-08-17 00:58:41 +00002336 be_mcc_queues_destroy(adapter);
Sathya Perla5fb379e2009-06-18 00:02:59 +00002337 be_rx_queues_destroy(adapter);
2338 be_tx_queues_destroy(adapter);
2339
Sathya Perla8788fdc2009-07-27 22:52:03 +00002340 be_cmd_if_destroy(adapter, adapter->if_handle);
Sathya Perla5fb379e2009-06-18 00:02:59 +00002341
Sathya Perla2243e2e2009-11-22 22:02:03 +00002342 /* tell fw we're done with firing cmds */
2343 be_cmd_fw_clean(adapter);
Sathya Perla5fb379e2009-06-18 00:02:59 +00002344 return 0;
2345}
2346
Sathya Perla6b7c5b92009-03-11 23:32:03 -07002347
Ajit Khaparde84517482009-09-04 03:12:16 +00002348#define FW_FILE_HDR_SIGN "ServerEngines Corp. "
Sarveshwar Bandifa9a6fe2009-11-20 14:23:47 -08002349static bool be_flash_redboot(struct be_adapter *adapter,
Ajit Khaparde3f0d4562010-02-09 01:30:35 +00002350 const u8 *p, u32 img_start, int image_size,
2351 int hdr_size)
Sarveshwar Bandifa9a6fe2009-11-20 14:23:47 -08002352{
2353 u32 crc_offset;
2354 u8 flashed_crc[4];
2355 int status;
Ajit Khaparde3f0d4562010-02-09 01:30:35 +00002356
2357 crc_offset = hdr_size + img_start + image_size - 4;
2358
Sarveshwar Bandifa9a6fe2009-11-20 14:23:47 -08002359 p += crc_offset;
Ajit Khaparde3f0d4562010-02-09 01:30:35 +00002360
2361 status = be_cmd_get_flash_crc(adapter, flashed_crc,
Ajit Khapardef510fc62010-03-31 01:47:45 +00002362 (image_size - 4));
Sarveshwar Bandifa9a6fe2009-11-20 14:23:47 -08002363 if (status) {
2364 dev_err(&adapter->pdev->dev,
2365 "could not get crc from flash, not flashing redboot\n");
2366 return false;
2367 }
2368
2369 /*update redboot only if crc does not match*/
2370 if (!memcmp(flashed_crc, p, 4))
2371 return false;
2372 else
2373 return true;
Sarveshwar Bandifa9a6fe2009-11-20 14:23:47 -08002374}
2375
Ajit Khaparde3f0d4562010-02-09 01:30:35 +00002376static int be_flash_data(struct be_adapter *adapter,
Ajit Khaparde84517482009-09-04 03:12:16 +00002377 const struct firmware *fw,
Ajit Khaparde3f0d4562010-02-09 01:30:35 +00002378 struct be_dma_mem *flash_cmd, int num_of_images)
2379
Ajit Khaparde84517482009-09-04 03:12:16 +00002380{
Ajit Khaparde3f0d4562010-02-09 01:30:35 +00002381 int status = 0, i, filehdr_size = 0;
2382 u32 total_bytes = 0, flash_op;
Ajit Khaparde84517482009-09-04 03:12:16 +00002383 int num_bytes;
2384 const u8 *p = fw->data;
2385 struct be_cmd_write_flashrom *req = flash_cmd->va;
Ajit Khaparde3f0d4562010-02-09 01:30:35 +00002386 struct flash_comp *pflashcomp;
Sarveshwar Bandi9fe96932010-03-02 22:37:28 +00002387 int num_comp;
Ajit Khaparde84517482009-09-04 03:12:16 +00002388
Sarveshwar Bandi9fe96932010-03-02 22:37:28 +00002389 struct flash_comp gen3_flash_types[9] = {
Ajit Khaparde3f0d4562010-02-09 01:30:35 +00002390 { FLASH_iSCSI_PRIMARY_IMAGE_START_g3, IMG_TYPE_ISCSI_ACTIVE,
2391 FLASH_IMAGE_MAX_SIZE_g3},
2392 { FLASH_REDBOOT_START_g3, IMG_TYPE_REDBOOT,
2393 FLASH_REDBOOT_IMAGE_MAX_SIZE_g3},
2394 { FLASH_iSCSI_BIOS_START_g3, IMG_TYPE_BIOS,
2395 FLASH_BIOS_IMAGE_MAX_SIZE_g3},
2396 { FLASH_PXE_BIOS_START_g3, IMG_TYPE_PXE_BIOS,
2397 FLASH_BIOS_IMAGE_MAX_SIZE_g3},
2398 { FLASH_FCoE_BIOS_START_g3, IMG_TYPE_FCOE_BIOS,
2399 FLASH_BIOS_IMAGE_MAX_SIZE_g3},
2400 { FLASH_iSCSI_BACKUP_IMAGE_START_g3, IMG_TYPE_ISCSI_BACKUP,
2401 FLASH_IMAGE_MAX_SIZE_g3},
2402 { FLASH_FCoE_PRIMARY_IMAGE_START_g3, IMG_TYPE_FCOE_FW_ACTIVE,
2403 FLASH_IMAGE_MAX_SIZE_g3},
2404 { FLASH_FCoE_BACKUP_IMAGE_START_g3, IMG_TYPE_FCOE_FW_BACKUP,
Sarveshwar Bandi9fe96932010-03-02 22:37:28 +00002405 FLASH_IMAGE_MAX_SIZE_g3},
2406 { FLASH_NCSI_START_g3, IMG_TYPE_NCSI_FW,
2407 FLASH_NCSI_IMAGE_MAX_SIZE_g3}
Ajit Khaparde3f0d4562010-02-09 01:30:35 +00002408 };
2409 struct flash_comp gen2_flash_types[8] = {
2410 { FLASH_iSCSI_PRIMARY_IMAGE_START_g2, IMG_TYPE_ISCSI_ACTIVE,
2411 FLASH_IMAGE_MAX_SIZE_g2},
2412 { FLASH_REDBOOT_START_g2, IMG_TYPE_REDBOOT,
2413 FLASH_REDBOOT_IMAGE_MAX_SIZE_g2},
2414 { FLASH_iSCSI_BIOS_START_g2, IMG_TYPE_BIOS,
2415 FLASH_BIOS_IMAGE_MAX_SIZE_g2},
2416 { FLASH_PXE_BIOS_START_g2, IMG_TYPE_PXE_BIOS,
2417 FLASH_BIOS_IMAGE_MAX_SIZE_g2},
2418 { FLASH_FCoE_BIOS_START_g2, IMG_TYPE_FCOE_BIOS,
2419 FLASH_BIOS_IMAGE_MAX_SIZE_g2},
2420 { FLASH_iSCSI_BACKUP_IMAGE_START_g2, IMG_TYPE_ISCSI_BACKUP,
2421 FLASH_IMAGE_MAX_SIZE_g2},
2422 { FLASH_FCoE_PRIMARY_IMAGE_START_g2, IMG_TYPE_FCOE_FW_ACTIVE,
2423 FLASH_IMAGE_MAX_SIZE_g2},
2424 { FLASH_FCoE_BACKUP_IMAGE_START_g2, IMG_TYPE_FCOE_FW_BACKUP,
2425 FLASH_IMAGE_MAX_SIZE_g2}
2426 };
2427
2428 if (adapter->generation == BE_GEN3) {
2429 pflashcomp = gen3_flash_types;
2430 filehdr_size = sizeof(struct flash_file_hdr_g3);
Sarveshwar Bandi9fe96932010-03-02 22:37:28 +00002431 num_comp = 9;
Ajit Khaparde3f0d4562010-02-09 01:30:35 +00002432 } else {
2433 pflashcomp = gen2_flash_types;
2434 filehdr_size = sizeof(struct flash_file_hdr_g2);
Sarveshwar Bandi9fe96932010-03-02 22:37:28 +00002435 num_comp = 8;
Ajit Khaparde84517482009-09-04 03:12:16 +00002436 }
Sarveshwar Bandi9fe96932010-03-02 22:37:28 +00002437 for (i = 0; i < num_comp; i++) {
2438 if ((pflashcomp[i].optype == IMG_TYPE_NCSI_FW) &&
2439 memcmp(adapter->fw_ver, "3.102.148.0", 11) < 0)
2440 continue;
Ajit Khaparde3f0d4562010-02-09 01:30:35 +00002441 if ((pflashcomp[i].optype == IMG_TYPE_REDBOOT) &&
2442 (!be_flash_redboot(adapter, fw->data,
2443 pflashcomp[i].offset, pflashcomp[i].size,
2444 filehdr_size)))
2445 continue;
2446 p = fw->data;
2447 p += filehdr_size + pflashcomp[i].offset
2448 + (num_of_images * sizeof(struct image_hdr));
2449 if (p + pflashcomp[i].size > fw->data + fw->size)
Ajit Khaparde84517482009-09-04 03:12:16 +00002450 return -1;
Ajit Khaparde3f0d4562010-02-09 01:30:35 +00002451 total_bytes = pflashcomp[i].size;
2452 while (total_bytes) {
2453 if (total_bytes > 32*1024)
2454 num_bytes = 32*1024;
2455 else
2456 num_bytes = total_bytes;
2457 total_bytes -= num_bytes;
Ajit Khaparde84517482009-09-04 03:12:16 +00002458
Ajit Khaparde3f0d4562010-02-09 01:30:35 +00002459 if (!total_bytes)
2460 flash_op = FLASHROM_OPER_FLASH;
2461 else
2462 flash_op = FLASHROM_OPER_SAVE;
2463 memcpy(req->params.data_buf, p, num_bytes);
2464 p += num_bytes;
2465 status = be_cmd_write_flashrom(adapter, flash_cmd,
2466 pflashcomp[i].optype, flash_op, num_bytes);
2467 if (status) {
2468 dev_err(&adapter->pdev->dev,
2469 "cmd to write to flash rom failed.\n");
2470 return -1;
2471 }
2472 yield();
Ajit Khaparde84517482009-09-04 03:12:16 +00002473 }
Ajit Khaparde84517482009-09-04 03:12:16 +00002474 }
Ajit Khaparde84517482009-09-04 03:12:16 +00002475 return 0;
2476}
2477
Ajit Khaparde3f0d4562010-02-09 01:30:35 +00002478static int get_ufigen_type(struct flash_file_hdr_g2 *fhdr)
2479{
2480 if (fhdr == NULL)
2481 return 0;
2482 if (fhdr->build[0] == '3')
2483 return BE_GEN3;
2484 else if (fhdr->build[0] == '2')
2485 return BE_GEN2;
2486 else
2487 return 0;
2488}
2489
Ajit Khaparde84517482009-09-04 03:12:16 +00002490int be_load_fw(struct be_adapter *adapter, u8 *func)
2491{
2492 char fw_file[ETHTOOL_FLASH_MAX_FILENAME];
2493 const struct firmware *fw;
Ajit Khaparde3f0d4562010-02-09 01:30:35 +00002494 struct flash_file_hdr_g2 *fhdr;
2495 struct flash_file_hdr_g3 *fhdr3;
2496 struct image_hdr *img_hdr_ptr = NULL;
Ajit Khaparde84517482009-09-04 03:12:16 +00002497 struct be_dma_mem flash_cmd;
Ajit Khaparde8b93b712010-03-31 01:57:10 +00002498 int status, i = 0, num_imgs = 0;
Ajit Khaparde84517482009-09-04 03:12:16 +00002499 const u8 *p;
Ajit Khaparde84517482009-09-04 03:12:16 +00002500
Sarveshwar Bandid9efd2a2010-11-18 23:44:45 +00002501 if (!netif_running(adapter->netdev)) {
2502 dev_err(&adapter->pdev->dev,
2503 "Firmware load not allowed (interface is down)\n");
2504 return -EPERM;
2505 }
2506
Ajit Khaparde84517482009-09-04 03:12:16 +00002507 strcpy(fw_file, func);
2508
2509 status = request_firmware(&fw, fw_file, &adapter->pdev->dev);
2510 if (status)
2511 goto fw_exit;
2512
2513 p = fw->data;
Ajit Khaparde3f0d4562010-02-09 01:30:35 +00002514 fhdr = (struct flash_file_hdr_g2 *) p;
Ajit Khaparde84517482009-09-04 03:12:16 +00002515 dev_info(&adapter->pdev->dev, "Flashing firmware file %s\n", fw_file);
2516
Ajit Khaparde84517482009-09-04 03:12:16 +00002517 flash_cmd.size = sizeof(struct be_cmd_write_flashrom) + 32*1024;
2518 flash_cmd.va = pci_alloc_consistent(adapter->pdev, flash_cmd.size,
2519 &flash_cmd.dma);
2520 if (!flash_cmd.va) {
2521 status = -ENOMEM;
2522 dev_err(&adapter->pdev->dev,
2523 "Memory allocation failure while flashing\n");
2524 goto fw_exit;
2525 }
2526
Ajit Khaparde3f0d4562010-02-09 01:30:35 +00002527 if ((adapter->generation == BE_GEN3) &&
2528 (get_ufigen_type(fhdr) == BE_GEN3)) {
2529 fhdr3 = (struct flash_file_hdr_g3 *) fw->data;
Ajit Khaparde8b93b712010-03-31 01:57:10 +00002530 num_imgs = le32_to_cpu(fhdr3->num_imgs);
2531 for (i = 0; i < num_imgs; i++) {
Ajit Khaparde3f0d4562010-02-09 01:30:35 +00002532 img_hdr_ptr = (struct image_hdr *) (fw->data +
2533 (sizeof(struct flash_file_hdr_g3) +
Ajit Khaparde8b93b712010-03-31 01:57:10 +00002534 i * sizeof(struct image_hdr)));
2535 if (le32_to_cpu(img_hdr_ptr->imageid) == 1)
2536 status = be_flash_data(adapter, fw, &flash_cmd,
2537 num_imgs);
Ajit Khaparde3f0d4562010-02-09 01:30:35 +00002538 }
2539 } else if ((adapter->generation == BE_GEN2) &&
2540 (get_ufigen_type(fhdr) == BE_GEN2)) {
2541 status = be_flash_data(adapter, fw, &flash_cmd, 0);
2542 } else {
2543 dev_err(&adapter->pdev->dev,
2544 "UFI and Interface are not compatible for flashing\n");
2545 status = -1;
Ajit Khaparde84517482009-09-04 03:12:16 +00002546 }
2547
2548 pci_free_consistent(adapter->pdev, flash_cmd.size, flash_cmd.va,
2549 flash_cmd.dma);
2550 if (status) {
2551 dev_err(&adapter->pdev->dev, "Firmware load error\n");
2552 goto fw_exit;
2553 }
2554
André Goddard Rosaaf901ca2009-11-14 13:09:05 -02002555 dev_info(&adapter->pdev->dev, "Firmware flashed successfully\n");
Ajit Khaparde84517482009-09-04 03:12:16 +00002556
2557fw_exit:
2558 release_firmware(fw);
2559 return status;
2560}
2561
Sathya Perla6b7c5b92009-03-11 23:32:03 -07002562static struct net_device_ops be_netdev_ops = {
2563 .ndo_open = be_open,
2564 .ndo_stop = be_close,
2565 .ndo_start_xmit = be_xmit,
Sathya Perla6b7c5b92009-03-11 23:32:03 -07002566 .ndo_set_rx_mode = be_set_multicast_list,
2567 .ndo_set_mac_address = be_mac_addr_set,
2568 .ndo_change_mtu = be_change_mtu,
2569 .ndo_validate_addr = eth_validate_addr,
2570 .ndo_vlan_rx_register = be_vlan_register,
2571 .ndo_vlan_rx_add_vid = be_vlan_add_vid,
2572 .ndo_vlan_rx_kill_vid = be_vlan_rem_vid,
Ajit Khaparde64600ea2010-07-23 01:50:34 +00002573 .ndo_set_vf_mac = be_set_vf_mac,
Ajit Khaparde1da87b72010-07-23 01:51:22 +00002574 .ndo_set_vf_vlan = be_set_vf_vlan,
Ajit Khapardee1d18732010-07-23 01:52:13 +00002575 .ndo_set_vf_tx_rate = be_set_vf_tx_rate,
Ajit Khaparde64600ea2010-07-23 01:50:34 +00002576 .ndo_get_vf_config = be_get_vf_config
Sathya Perla6b7c5b92009-03-11 23:32:03 -07002577};
2578
2579static void be_netdev_init(struct net_device *netdev)
2580{
2581 struct be_adapter *adapter = netdev_priv(netdev);
Sathya Perla3abcded2010-10-03 22:12:27 -07002582 struct be_rx_obj *rxo;
2583 int i;
Sathya Perla6b7c5b92009-03-11 23:32:03 -07002584
2585 netdev->features |= NETIF_F_SG | NETIF_F_HW_VLAN_RX | NETIF_F_TSO |
Michał Mirosław79032642010-11-30 06:38:00 +00002586 NETIF_F_HW_VLAN_TX | NETIF_F_HW_VLAN_FILTER |
2587 NETIF_F_IP_CSUM | NETIF_F_IPV6_CSUM |
Ajit Khaparde49e4b8472010-06-14 04:56:07 +00002588 NETIF_F_GRO | NETIF_F_TSO6;
Sathya Perla6b7c5b92009-03-11 23:32:03 -07002589
Michał Mirosław79032642010-11-30 06:38:00 +00002590 netdev->vlan_features |= NETIF_F_SG | NETIF_F_TSO |
2591 NETIF_F_IP_CSUM | NETIF_F_IPV6_CSUM;
Ajit Khaparde51c59872009-11-29 17:54:54 +00002592
Sathya Perlafe6d2a32010-11-21 23:25:50 +00002593 if (lancer_chip(adapter))
2594 netdev->vlan_features |= NETIF_F_TSO6;
2595
Sathya Perla6b7c5b92009-03-11 23:32:03 -07002596 netdev->flags |= IFF_MULTICAST;
2597
Ajit Khaparde728a9972009-04-13 15:41:22 -07002598 adapter->rx_csum = true;
2599
Ajit Khaparde9e90c962009-11-06 02:06:59 +00002600 /* Default settings for Rx and Tx flow control */
2601 adapter->rx_fc = true;
2602 adapter->tx_fc = true;
2603
Ajit Khapardec190e3c2009-09-04 03:12:29 +00002604 netif_set_gso_max_size(netdev, 65535);
2605
Sathya Perla6b7c5b92009-03-11 23:32:03 -07002606 BE_SET_NETDEV_OPS(netdev, &be_netdev_ops);
2607
2608 SET_ETHTOOL_OPS(netdev, &be_ethtool_ops);
2609
Sathya Perla3abcded2010-10-03 22:12:27 -07002610 for_all_rx_queues(adapter, rxo, i)
2611 netif_napi_add(netdev, &rxo->rx_eq.napi, be_poll_rx,
2612 BE_NAPI_WEIGHT);
2613
Sathya Perla5fb379e2009-06-18 00:02:59 +00002614 netif_napi_add(netdev, &adapter->tx_eq.napi, be_poll_tx_mcc,
Sathya Perla6b7c5b92009-03-11 23:32:03 -07002615 BE_NAPI_WEIGHT);
2616
Sathya Perla6b7c5b92009-03-11 23:32:03 -07002617 netif_stop_queue(netdev);
2618}
2619
2620static void be_unmap_pci_bars(struct be_adapter *adapter)
2621{
Sathya Perla8788fdc2009-07-27 22:52:03 +00002622 if (adapter->csr)
2623 iounmap(adapter->csr);
2624 if (adapter->db)
2625 iounmap(adapter->db);
Sarveshwar Bandiba343c72010-03-31 02:56:12 +00002626 if (adapter->pcicfg && be_physfn(adapter))
Sathya Perla8788fdc2009-07-27 22:52:03 +00002627 iounmap(adapter->pcicfg);
Sathya Perla6b7c5b92009-03-11 23:32:03 -07002628}
2629
2630static int be_map_pci_bars(struct be_adapter *adapter)
2631{
2632 u8 __iomem *addr;
Sarveshwar Bandiba343c72010-03-31 02:56:12 +00002633 int pcicfg_reg, db_reg;
Sathya Perla6b7c5b92009-03-11 23:32:03 -07002634
Sathya Perlafe6d2a32010-11-21 23:25:50 +00002635 if (lancer_chip(adapter)) {
2636 addr = ioremap_nocache(pci_resource_start(adapter->pdev, 0),
2637 pci_resource_len(adapter->pdev, 0));
2638 if (addr == NULL)
2639 return -ENOMEM;
2640 adapter->db = addr;
2641 return 0;
2642 }
2643
Sarveshwar Bandiba343c72010-03-31 02:56:12 +00002644 if (be_physfn(adapter)) {
2645 addr = ioremap_nocache(pci_resource_start(adapter->pdev, 2),
2646 pci_resource_len(adapter->pdev, 2));
2647 if (addr == NULL)
2648 return -ENOMEM;
2649 adapter->csr = addr;
2650 }
Sathya Perla6b7c5b92009-03-11 23:32:03 -07002651
Sarveshwar Bandiba343c72010-03-31 02:56:12 +00002652 if (adapter->generation == BE_GEN2) {
2653 pcicfg_reg = 1;
2654 db_reg = 4;
2655 } else {
2656 pcicfg_reg = 0;
2657 if (be_physfn(adapter))
2658 db_reg = 4;
2659 else
2660 db_reg = 0;
2661 }
2662 addr = ioremap_nocache(pci_resource_start(adapter->pdev, db_reg),
2663 pci_resource_len(adapter->pdev, db_reg));
Sathya Perla6b7c5b92009-03-11 23:32:03 -07002664 if (addr == NULL)
2665 goto pci_map_err;
Sathya Perla8788fdc2009-07-27 22:52:03 +00002666 adapter->db = addr;
Sathya Perla6b7c5b92009-03-11 23:32:03 -07002667
Sarveshwar Bandiba343c72010-03-31 02:56:12 +00002668 if (be_physfn(adapter)) {
2669 addr = ioremap_nocache(
2670 pci_resource_start(adapter->pdev, pcicfg_reg),
2671 pci_resource_len(adapter->pdev, pcicfg_reg));
2672 if (addr == NULL)
2673 goto pci_map_err;
2674 adapter->pcicfg = addr;
2675 } else
2676 adapter->pcicfg = adapter->db + SRIOV_VF_PCICFG_OFFSET;
Sathya Perla6b7c5b92009-03-11 23:32:03 -07002677
2678 return 0;
2679pci_map_err:
2680 be_unmap_pci_bars(adapter);
2681 return -ENOMEM;
2682}
2683
2684
2685static void be_ctrl_cleanup(struct be_adapter *adapter)
2686{
Sathya Perla8788fdc2009-07-27 22:52:03 +00002687 struct be_dma_mem *mem = &adapter->mbox_mem_alloced;
Sathya Perla6b7c5b92009-03-11 23:32:03 -07002688
2689 be_unmap_pci_bars(adapter);
2690
2691 if (mem->va)
2692 pci_free_consistent(adapter->pdev, mem->size,
2693 mem->va, mem->dma);
Sathya Perlae7b909a2009-11-22 22:01:10 +00002694
2695 mem = &adapter->mc_cmd_mem;
2696 if (mem->va)
2697 pci_free_consistent(adapter->pdev, mem->size,
2698 mem->va, mem->dma);
Sathya Perla6b7c5b92009-03-11 23:32:03 -07002699}
2700
Sathya Perla6b7c5b92009-03-11 23:32:03 -07002701static int be_ctrl_init(struct be_adapter *adapter)
2702{
Sathya Perla8788fdc2009-07-27 22:52:03 +00002703 struct be_dma_mem *mbox_mem_alloc = &adapter->mbox_mem_alloced;
2704 struct be_dma_mem *mbox_mem_align = &adapter->mbox_mem;
Sathya Perlae7b909a2009-11-22 22:01:10 +00002705 struct be_dma_mem *mc_cmd_mem = &adapter->mc_cmd_mem;
Sathya Perla6b7c5b92009-03-11 23:32:03 -07002706 int status;
Sathya Perla6b7c5b92009-03-11 23:32:03 -07002707
2708 status = be_map_pci_bars(adapter);
2709 if (status)
Sathya Perlae7b909a2009-11-22 22:01:10 +00002710 goto done;
Sathya Perla6b7c5b92009-03-11 23:32:03 -07002711
2712 mbox_mem_alloc->size = sizeof(struct be_mcc_mailbox) + 16;
2713 mbox_mem_alloc->va = pci_alloc_consistent(adapter->pdev,
2714 mbox_mem_alloc->size, &mbox_mem_alloc->dma);
2715 if (!mbox_mem_alloc->va) {
Sathya Perlae7b909a2009-11-22 22:01:10 +00002716 status = -ENOMEM;
2717 goto unmap_pci_bars;
Sathya Perla6b7c5b92009-03-11 23:32:03 -07002718 }
Sathya Perlae7b909a2009-11-22 22:01:10 +00002719
Sathya Perla6b7c5b92009-03-11 23:32:03 -07002720 mbox_mem_align->size = sizeof(struct be_mcc_mailbox);
2721 mbox_mem_align->va = PTR_ALIGN(mbox_mem_alloc->va, 16);
2722 mbox_mem_align->dma = PTR_ALIGN(mbox_mem_alloc->dma, 16);
2723 memset(mbox_mem_align->va, 0, sizeof(struct be_mcc_mailbox));
Sathya Perlae7b909a2009-11-22 22:01:10 +00002724
2725 mc_cmd_mem->size = sizeof(struct be_cmd_req_mcast_mac_config);
2726 mc_cmd_mem->va = pci_alloc_consistent(adapter->pdev, mc_cmd_mem->size,
2727 &mc_cmd_mem->dma);
2728 if (mc_cmd_mem->va == NULL) {
2729 status = -ENOMEM;
2730 goto free_mbox;
2731 }
2732 memset(mc_cmd_mem->va, 0, mc_cmd_mem->size);
2733
Sathya Perla8788fdc2009-07-27 22:52:03 +00002734 spin_lock_init(&adapter->mbox_lock);
2735 spin_lock_init(&adapter->mcc_lock);
2736 spin_lock_init(&adapter->mcc_cq_lock);
Sathya Perla6b7c5b92009-03-11 23:32:03 -07002737
Sarveshwar Bandidd131e72010-05-25 16:16:32 -07002738 init_completion(&adapter->flash_compl);
Sathya Perlacf588472010-02-14 21:22:01 +00002739 pci_save_state(adapter->pdev);
Sathya Perla6b7c5b92009-03-11 23:32:03 -07002740 return 0;
Sathya Perlae7b909a2009-11-22 22:01:10 +00002741
2742free_mbox:
2743 pci_free_consistent(adapter->pdev, mbox_mem_alloc->size,
2744 mbox_mem_alloc->va, mbox_mem_alloc->dma);
2745
2746unmap_pci_bars:
2747 be_unmap_pci_bars(adapter);
2748
2749done:
2750 return status;
Sathya Perla6b7c5b92009-03-11 23:32:03 -07002751}
2752
2753static void be_stats_cleanup(struct be_adapter *adapter)
2754{
Sathya Perla3abcded2010-10-03 22:12:27 -07002755 struct be_dma_mem *cmd = &adapter->stats_cmd;
Sathya Perla6b7c5b92009-03-11 23:32:03 -07002756
2757 if (cmd->va)
2758 pci_free_consistent(adapter->pdev, cmd->size,
2759 cmd->va, cmd->dma);
2760}
2761
2762static int be_stats_init(struct be_adapter *adapter)
2763{
Sathya Perla3abcded2010-10-03 22:12:27 -07002764 struct be_dma_mem *cmd = &adapter->stats_cmd;
Sathya Perla6b7c5b92009-03-11 23:32:03 -07002765
2766 cmd->size = sizeof(struct be_cmd_req_get_stats);
2767 cmd->va = pci_alloc_consistent(adapter->pdev, cmd->size, &cmd->dma);
2768 if (cmd->va == NULL)
2769 return -1;
David S. Millerd291b9a2010-01-28 21:36:21 -08002770 memset(cmd->va, 0, cmd->size);
Sathya Perla6b7c5b92009-03-11 23:32:03 -07002771 return 0;
2772}
2773
2774static void __devexit be_remove(struct pci_dev *pdev)
2775{
2776 struct be_adapter *adapter = pci_get_drvdata(pdev);
Sathya Perla8d56ff12009-11-22 22:02:26 +00002777
Sathya Perla6b7c5b92009-03-11 23:32:03 -07002778 if (!adapter)
2779 return;
2780
Somnath Koturf203af72010-10-25 23:01:03 +00002781 cancel_delayed_work_sync(&adapter->work);
2782
Sathya Perla6b7c5b92009-03-11 23:32:03 -07002783 unregister_netdev(adapter->netdev);
2784
Sathya Perla5fb379e2009-06-18 00:02:59 +00002785 be_clear(adapter);
2786
Sathya Perla6b7c5b92009-03-11 23:32:03 -07002787 be_stats_cleanup(adapter);
2788
2789 be_ctrl_cleanup(adapter);
2790
Sarveshwar Bandiba343c72010-03-31 02:56:12 +00002791 be_sriov_disable(adapter);
2792
Sathya Perla8d56ff12009-11-22 22:02:26 +00002793 be_msix_disable(adapter);
Sathya Perla6b7c5b92009-03-11 23:32:03 -07002794
2795 pci_set_drvdata(pdev, NULL);
2796 pci_release_regions(pdev);
2797 pci_disable_device(pdev);
2798
2799 free_netdev(adapter->netdev);
2800}
2801
Sathya Perla2243e2e2009-11-22 22:02:03 +00002802static int be_get_config(struct be_adapter *adapter)
Sathya Perla6b7c5b92009-03-11 23:32:03 -07002803{
Sathya Perla6b7c5b92009-03-11 23:32:03 -07002804 int status;
Sathya Perla2243e2e2009-11-22 22:02:03 +00002805 u8 mac[ETH_ALEN];
Sathya Perla43a04fdc2009-10-14 20:21:17 +00002806
Sathya Perla8788fdc2009-07-27 22:52:03 +00002807 status = be_cmd_get_fw_ver(adapter, adapter->fw_ver);
Sathya Perla6b7c5b92009-03-11 23:32:03 -07002808 if (status)
2809 return status;
2810
Sathya Perla3abcded2010-10-03 22:12:27 -07002811 status = be_cmd_query_fw_cfg(adapter, &adapter->port_num,
2812 &adapter->function_mode, &adapter->function_caps);
Sathya Perla2243e2e2009-11-22 22:02:03 +00002813 if (status)
2814 return status;
2815
2816 memset(mac, 0, ETH_ALEN);
Sarveshwar Bandiba343c72010-03-31 02:56:12 +00002817
2818 if (be_physfn(adapter)) {
2819 status = be_cmd_mac_addr_query(adapter, mac,
Sathya Perla2243e2e2009-11-22 22:02:03 +00002820 MAC_ADDRESS_TYPE_NETWORK, true /*permanent */, 0);
Ajit Khapardeca9e4982009-11-29 17:56:26 +00002821
Sarveshwar Bandiba343c72010-03-31 02:56:12 +00002822 if (status)
2823 return status;
Ajit Khapardeca9e4982009-11-29 17:56:26 +00002824
Sarveshwar Bandiba343c72010-03-31 02:56:12 +00002825 if (!is_valid_ether_addr(mac))
2826 return -EADDRNOTAVAIL;
2827
2828 memcpy(adapter->netdev->dev_addr, mac, ETH_ALEN);
2829 memcpy(adapter->netdev->perm_addr, mac, ETH_ALEN);
2830 }
Sathya Perla2243e2e2009-11-22 22:02:03 +00002831
Ajit Khaparde3486be22010-07-23 02:04:54 +00002832 if (adapter->function_mode & 0x400)
Ajit Khaparde82903e42010-02-09 01:34:57 +00002833 adapter->max_vlans = BE_NUM_VLANS_SUPPORTED/4;
2834 else
2835 adapter->max_vlans = BE_NUM_VLANS_SUPPORTED;
2836
Sathya Perla2243e2e2009-11-22 22:02:03 +00002837 return 0;
Sathya Perla6b7c5b92009-03-11 23:32:03 -07002838}
2839
Sathya Perlafe6d2a32010-11-21 23:25:50 +00002840static int be_dev_family_check(struct be_adapter *adapter)
2841{
2842 struct pci_dev *pdev = adapter->pdev;
2843 u32 sli_intf = 0, if_type;
2844
2845 switch (pdev->device) {
2846 case BE_DEVICE_ID1:
2847 case OC_DEVICE_ID1:
2848 adapter->generation = BE_GEN2;
2849 break;
2850 case BE_DEVICE_ID2:
2851 case OC_DEVICE_ID2:
2852 adapter->generation = BE_GEN3;
2853 break;
2854 case OC_DEVICE_ID3:
2855 pci_read_config_dword(pdev, SLI_INTF_REG_OFFSET, &sli_intf);
2856 if_type = (sli_intf & SLI_INTF_IF_TYPE_MASK) >>
2857 SLI_INTF_IF_TYPE_SHIFT;
2858
2859 if (((sli_intf & SLI_INTF_VALID_MASK) != SLI_INTF_VALID) ||
2860 if_type != 0x02) {
2861 dev_err(&pdev->dev, "SLI_INTF reg val is not valid\n");
2862 return -EINVAL;
2863 }
2864 if (num_vfs > 0) {
2865 dev_err(&pdev->dev, "VFs not supported\n");
2866 return -EINVAL;
2867 }
2868 adapter->sli_family = ((sli_intf & SLI_INTF_FAMILY_MASK) >>
2869 SLI_INTF_FAMILY_SHIFT);
2870 adapter->generation = BE_GEN3;
2871 break;
2872 default:
2873 adapter->generation = 0;
2874 }
2875 return 0;
2876}
2877
Sathya Perla6b7c5b92009-03-11 23:32:03 -07002878static int __devinit be_probe(struct pci_dev *pdev,
2879 const struct pci_device_id *pdev_id)
2880{
2881 int status = 0;
2882 struct be_adapter *adapter;
2883 struct net_device *netdev;
Sathya Perla6b7c5b92009-03-11 23:32:03 -07002884
2885 status = pci_enable_device(pdev);
2886 if (status)
2887 goto do_none;
2888
2889 status = pci_request_regions(pdev, DRV_NAME);
2890 if (status)
2891 goto disable_dev;
2892 pci_set_master(pdev);
2893
2894 netdev = alloc_etherdev(sizeof(struct be_adapter));
2895 if (netdev == NULL) {
2896 status = -ENOMEM;
2897 goto rel_reg;
2898 }
2899 adapter = netdev_priv(netdev);
2900 adapter->pdev = pdev;
2901 pci_set_drvdata(pdev, adapter);
Sathya Perlafe6d2a32010-11-21 23:25:50 +00002902
2903 status = be_dev_family_check(adapter);
2904 if (!status)
2905 goto free_netdev;
2906
Sathya Perla6b7c5b92009-03-11 23:32:03 -07002907 adapter->netdev = netdev;
Sathya Perla2243e2e2009-11-22 22:02:03 +00002908 SET_NETDEV_DEV(netdev, &pdev->dev);
Sathya Perla6b7c5b92009-03-11 23:32:03 -07002909
Yang Hongyange9304382009-04-13 14:40:14 -07002910 status = pci_set_dma_mask(pdev, DMA_BIT_MASK(64));
Sathya Perla6b7c5b92009-03-11 23:32:03 -07002911 if (!status) {
2912 netdev->features |= NETIF_F_HIGHDMA;
2913 } else {
Yang Hongyange9304382009-04-13 14:40:14 -07002914 status = pci_set_dma_mask(pdev, DMA_BIT_MASK(32));
Sathya Perla6b7c5b92009-03-11 23:32:03 -07002915 if (status) {
2916 dev_err(&pdev->dev, "Could not set PCI DMA Mask\n");
2917 goto free_netdev;
2918 }
2919 }
2920
Sarveshwar Bandiba343c72010-03-31 02:56:12 +00002921 be_sriov_enable(adapter);
2922
Sathya Perla6b7c5b92009-03-11 23:32:03 -07002923 status = be_ctrl_init(adapter);
2924 if (status)
2925 goto free_netdev;
2926
Sathya Perla2243e2e2009-11-22 22:02:03 +00002927 /* sync up with fw's ready state */
Sarveshwar Bandiba343c72010-03-31 02:56:12 +00002928 if (be_physfn(adapter)) {
2929 status = be_cmd_POST(adapter);
2930 if (status)
2931 goto ctrl_clean;
Sarveshwar Bandiba343c72010-03-31 02:56:12 +00002932 }
Sathya Perla2243e2e2009-11-22 22:02:03 +00002933
2934 /* tell fw we're ready to fire cmds */
2935 status = be_cmd_fw_init(adapter);
2936 if (status)
2937 goto ctrl_clean;
2938
Sarveshwar Bandi556ae192010-05-24 18:38:25 -07002939 if (be_physfn(adapter)) {
2940 status = be_cmd_reset_function(adapter);
2941 if (status)
2942 goto ctrl_clean;
2943 }
2944
Sathya Perla6b7c5b92009-03-11 23:32:03 -07002945 status = be_stats_init(adapter);
2946 if (status)
2947 goto ctrl_clean;
2948
Sathya Perla2243e2e2009-11-22 22:02:03 +00002949 status = be_get_config(adapter);
Sathya Perla6b7c5b92009-03-11 23:32:03 -07002950 if (status)
2951 goto stats_clean;
2952
Sathya Perla3abcded2010-10-03 22:12:27 -07002953 be_msix_enable(adapter);
2954
Sathya Perla6b7c5b92009-03-11 23:32:03 -07002955 INIT_DELAYED_WORK(&adapter->work, be_worker);
Sathya Perla6b7c5b92009-03-11 23:32:03 -07002956
Sathya Perla5fb379e2009-06-18 00:02:59 +00002957 status = be_setup(adapter);
2958 if (status)
Sathya Perla3abcded2010-10-03 22:12:27 -07002959 goto msix_disable;
Sathya Perla2243e2e2009-11-22 22:02:03 +00002960
Sathya Perla3abcded2010-10-03 22:12:27 -07002961 be_netdev_init(netdev);
Sathya Perla6b7c5b92009-03-11 23:32:03 -07002962 status = register_netdev(netdev);
2963 if (status != 0)
Sathya Perla5fb379e2009-06-18 00:02:59 +00002964 goto unsetup;
Somnath Kotur63a76942010-10-25 01:11:10 +00002965 netif_carrier_off(netdev);
Sathya Perla6b7c5b92009-03-11 23:32:03 -07002966
Ajit Khapardec4ca2372009-05-18 15:38:55 -07002967 dev_info(&pdev->dev, "%s port %d\n", nic_name(pdev), adapter->port_num);
Somnath Koturf203af72010-10-25 23:01:03 +00002968 schedule_delayed_work(&adapter->work, msecs_to_jiffies(100));
Sathya Perla6b7c5b92009-03-11 23:32:03 -07002969 return 0;
2970
Sathya Perla5fb379e2009-06-18 00:02:59 +00002971unsetup:
2972 be_clear(adapter);
Sathya Perla3abcded2010-10-03 22:12:27 -07002973msix_disable:
2974 be_msix_disable(adapter);
Sathya Perla6b7c5b92009-03-11 23:32:03 -07002975stats_clean:
2976 be_stats_cleanup(adapter);
2977ctrl_clean:
2978 be_ctrl_cleanup(adapter);
2979free_netdev:
Sarveshwar Bandiba343c72010-03-31 02:56:12 +00002980 be_sriov_disable(adapter);
Sathya Perlafe6d2a32010-11-21 23:25:50 +00002981 free_netdev(netdev);
Sathya Perla8d56ff12009-11-22 22:02:26 +00002982 pci_set_drvdata(pdev, NULL);
Sathya Perla6b7c5b92009-03-11 23:32:03 -07002983rel_reg:
2984 pci_release_regions(pdev);
2985disable_dev:
2986 pci_disable_device(pdev);
2987do_none:
Ajit Khapardec4ca2372009-05-18 15:38:55 -07002988 dev_err(&pdev->dev, "%s initialization failed\n", nic_name(pdev));
Sathya Perla6b7c5b92009-03-11 23:32:03 -07002989 return status;
2990}
2991
2992static int be_suspend(struct pci_dev *pdev, pm_message_t state)
2993{
2994 struct be_adapter *adapter = pci_get_drvdata(pdev);
2995 struct net_device *netdev = adapter->netdev;
2996
Ajit Khaparde71d8d1b2009-12-03 06:16:59 +00002997 if (adapter->wol)
2998 be_setup_wol(adapter, true);
2999
Sathya Perla6b7c5b92009-03-11 23:32:03 -07003000 netif_device_detach(netdev);
3001 if (netif_running(netdev)) {
3002 rtnl_lock();
3003 be_close(netdev);
3004 rtnl_unlock();
3005 }
Ajit Khaparde9e90c962009-11-06 02:06:59 +00003006 be_cmd_get_flow_control(adapter, &adapter->tx_fc, &adapter->rx_fc);
Sarveshwar Bandi9b0365f2009-08-12 21:01:29 +00003007 be_clear(adapter);
Sathya Perla6b7c5b92009-03-11 23:32:03 -07003008
3009 pci_save_state(pdev);
3010 pci_disable_device(pdev);
3011 pci_set_power_state(pdev, pci_choose_state(pdev, state));
3012 return 0;
3013}
3014
3015static int be_resume(struct pci_dev *pdev)
3016{
3017 int status = 0;
3018 struct be_adapter *adapter = pci_get_drvdata(pdev);
3019 struct net_device *netdev = adapter->netdev;
3020
3021 netif_device_detach(netdev);
3022
3023 status = pci_enable_device(pdev);
3024 if (status)
3025 return status;
3026
3027 pci_set_power_state(pdev, 0);
3028 pci_restore_state(pdev);
3029
Sathya Perla2243e2e2009-11-22 22:02:03 +00003030 /* tell fw we're ready to fire cmds */
3031 status = be_cmd_fw_init(adapter);
3032 if (status)
3033 return status;
3034
Sarveshwar Bandi9b0365f2009-08-12 21:01:29 +00003035 be_setup(adapter);
Sathya Perla6b7c5b92009-03-11 23:32:03 -07003036 if (netif_running(netdev)) {
3037 rtnl_lock();
Sathya Perla6b7c5b92009-03-11 23:32:03 -07003038 be_open(netdev);
3039 rtnl_unlock();
3040 }
3041 netif_device_attach(netdev);
Ajit Khaparde71d8d1b2009-12-03 06:16:59 +00003042
3043 if (adapter->wol)
3044 be_setup_wol(adapter, false);
Sathya Perla6b7c5b92009-03-11 23:32:03 -07003045 return 0;
3046}
3047
Sathya Perla82456b02010-02-17 01:35:37 +00003048/*
3049 * An FLR will stop BE from DMAing any data.
3050 */
3051static void be_shutdown(struct pci_dev *pdev)
3052{
3053 struct be_adapter *adapter = pci_get_drvdata(pdev);
3054 struct net_device *netdev = adapter->netdev;
3055
3056 netif_device_detach(netdev);
3057
3058 be_cmd_reset_function(adapter);
3059
3060 if (adapter->wol)
3061 be_setup_wol(adapter, true);
3062
3063 pci_disable_device(pdev);
Sathya Perla82456b02010-02-17 01:35:37 +00003064}
3065
Sathya Perlacf588472010-02-14 21:22:01 +00003066static pci_ers_result_t be_eeh_err_detected(struct pci_dev *pdev,
3067 pci_channel_state_t state)
3068{
3069 struct be_adapter *adapter = pci_get_drvdata(pdev);
3070 struct net_device *netdev = adapter->netdev;
3071
3072 dev_err(&adapter->pdev->dev, "EEH error detected\n");
3073
3074 adapter->eeh_err = true;
3075
3076 netif_device_detach(netdev);
3077
3078 if (netif_running(netdev)) {
3079 rtnl_lock();
3080 be_close(netdev);
3081 rtnl_unlock();
3082 }
3083 be_clear(adapter);
3084
3085 if (state == pci_channel_io_perm_failure)
3086 return PCI_ERS_RESULT_DISCONNECT;
3087
3088 pci_disable_device(pdev);
3089
3090 return PCI_ERS_RESULT_NEED_RESET;
3091}
3092
3093static pci_ers_result_t be_eeh_reset(struct pci_dev *pdev)
3094{
3095 struct be_adapter *adapter = pci_get_drvdata(pdev);
3096 int status;
3097
3098 dev_info(&adapter->pdev->dev, "EEH reset\n");
3099 adapter->eeh_err = false;
3100
3101 status = pci_enable_device(pdev);
3102 if (status)
3103 return PCI_ERS_RESULT_DISCONNECT;
3104
3105 pci_set_master(pdev);
3106 pci_set_power_state(pdev, 0);
3107 pci_restore_state(pdev);
3108
3109 /* Check if card is ok and fw is ready */
3110 status = be_cmd_POST(adapter);
3111 if (status)
3112 return PCI_ERS_RESULT_DISCONNECT;
3113
3114 return PCI_ERS_RESULT_RECOVERED;
3115}
3116
3117static void be_eeh_resume(struct pci_dev *pdev)
3118{
3119 int status = 0;
3120 struct be_adapter *adapter = pci_get_drvdata(pdev);
3121 struct net_device *netdev = adapter->netdev;
3122
3123 dev_info(&adapter->pdev->dev, "EEH resume\n");
3124
3125 pci_save_state(pdev);
3126
3127 /* tell fw we're ready to fire cmds */
3128 status = be_cmd_fw_init(adapter);
3129 if (status)
3130 goto err;
3131
3132 status = be_setup(adapter);
3133 if (status)
3134 goto err;
3135
3136 if (netif_running(netdev)) {
3137 status = be_open(netdev);
3138 if (status)
3139 goto err;
3140 }
3141 netif_device_attach(netdev);
3142 return;
3143err:
3144 dev_err(&adapter->pdev->dev, "EEH resume failed\n");
Sathya Perlacf588472010-02-14 21:22:01 +00003145}
3146
3147static struct pci_error_handlers be_eeh_handlers = {
3148 .error_detected = be_eeh_err_detected,
3149 .slot_reset = be_eeh_reset,
3150 .resume = be_eeh_resume,
3151};
3152
Sathya Perla6b7c5b92009-03-11 23:32:03 -07003153static struct pci_driver be_driver = {
3154 .name = DRV_NAME,
3155 .id_table = be_dev_ids,
3156 .probe = be_probe,
3157 .remove = be_remove,
3158 .suspend = be_suspend,
Sathya Perlacf588472010-02-14 21:22:01 +00003159 .resume = be_resume,
Sathya Perla82456b02010-02-17 01:35:37 +00003160 .shutdown = be_shutdown,
Sathya Perlacf588472010-02-14 21:22:01 +00003161 .err_handler = &be_eeh_handlers
Sathya Perla6b7c5b92009-03-11 23:32:03 -07003162};
3163
3164static int __init be_init_module(void)
3165{
Joe Perches8e95a202009-12-03 07:58:21 +00003166 if (rx_frag_size != 8192 && rx_frag_size != 4096 &&
3167 rx_frag_size != 2048) {
Sathya Perla6b7c5b92009-03-11 23:32:03 -07003168 printk(KERN_WARNING DRV_NAME
3169 " : Module param rx_frag_size must be 2048/4096/8192."
3170 " Using 2048\n");
3171 rx_frag_size = 2048;
3172 }
Sathya Perla6b7c5b92009-03-11 23:32:03 -07003173
Sarveshwar Bandiba343c72010-03-31 02:56:12 +00003174 if (num_vfs > 32) {
3175 printk(KERN_WARNING DRV_NAME
3176 " : Module param num_vfs must not be greater than 32."
3177 "Using 32\n");
3178 num_vfs = 32;
3179 }
3180
Sathya Perla6b7c5b92009-03-11 23:32:03 -07003181 return pci_register_driver(&be_driver);
3182}
3183module_init(be_init_module);
3184
3185static void __exit be_exit_module(void)
3186{
3187 pci_unregister_driver(&be_driver);
3188}
3189module_exit(be_exit_module);