blob: bfd08b2a9910f183131eff08e21419a536007390 [file] [log] [blame]
Jan-Bernd Themann7a291082006-09-13 17:44:31 +02001/*
2 * linux/drivers/net/ehea/ehea_main.c
3 *
4 * eHEA ethernet device driver for IBM eServer System p
5 *
6 * (C) Copyright IBM Corp. 2006
7 *
8 * Authors:
Doug Maxey508d2b52008-01-31 20:20:49 -06009 * Christoph Raisch <raisch@de.ibm.com>
10 * Jan-Bernd Themann <themann@de.ibm.com>
11 * Thomas Klein <tklein@de.ibm.com>
Jan-Bernd Themann7a291082006-09-13 17:44:31 +020012 *
13 *
14 * This program is free software; you can redistribute it and/or modify
15 * it under the terms of the GNU General Public License as published by
16 * the Free Software Foundation; either version 2, or (at your option)
17 * any later version.
18 *
19 * This program is distributed in the hope that it will be useful,
20 * but WITHOUT ANY WARRANTY; without even the implied warranty of
21 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
22 * GNU General Public License for more details.
23 *
24 * You should have received a copy of the GNU General Public License
25 * along with this program; if not, write to the Free Software
26 * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
27 */
28
Joe Perches8c4877a2010-12-13 10:05:14 -080029#define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
30
Jan-Bernd Themann7a291082006-09-13 17:44:31 +020031#include <linux/in.h>
32#include <linux/ip.h>
33#include <linux/tcp.h>
34#include <linux/udp.h>
35#include <linux/if.h>
36#include <linux/list.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090037#include <linux/slab.h>
Jan-Bernd Themann7a291082006-09-13 17:44:31 +020038#include <linux/if_ether.h>
Jan-Bernd Themann2a6f4e42007-10-26 14:37:28 +020039#include <linux/notifier.h>
40#include <linux/reboot.h>
Hannes Hering48cfb142008-05-07 14:43:36 +020041#include <linux/memory.h>
Thomas Klein21eee2d2008-02-13 16:18:33 +010042#include <asm/kexec.h>
Daniel Walker06f89ed2008-03-28 14:41:26 -070043#include <linux/mutex.h>
Linus Torvalds268bb0c2011-05-20 12:50:29 -070044#include <linux/prefetch.h>
Jan-Bernd Themann2a6f4e42007-10-26 14:37:28 +020045
Jan-Bernd Themann7a291082006-09-13 17:44:31 +020046#include <net/ip.h>
47
48#include "ehea.h"
49#include "ehea_qmr.h"
50#include "ehea_phyp.h"
51
52
53MODULE_LICENSE("GPL");
54MODULE_AUTHOR("Christoph Raisch <raisch@de.ibm.com>");
55MODULE_DESCRIPTION("IBM eServer HEA Driver");
56MODULE_VERSION(DRV_VERSION);
57
58
59static int msg_level = -1;
60static int rq1_entries = EHEA_DEF_ENTRIES_RQ1;
61static int rq2_entries = EHEA_DEF_ENTRIES_RQ2;
62static int rq3_entries = EHEA_DEF_ENTRIES_RQ3;
63static int sq_entries = EHEA_DEF_ENTRIES_SQ;
Anton Blanchardb9564462011-10-14 05:30:59 +000064static int use_mcs = 1;
Doug Maxey508d2b52008-01-31 20:20:49 -060065static int prop_carrier_state;
Jan-Bernd Themann7a291082006-09-13 17:44:31 +020066
67module_param(msg_level, int, 0);
68module_param(rq1_entries, int, 0);
69module_param(rq2_entries, int, 0);
70module_param(rq3_entries, int, 0);
71module_param(sq_entries, int, 0);
Jan-Bernd Themann8759cf72007-09-07 12:30:17 +020072module_param(prop_carrier_state, int, 0);
Jan-Bernd Themann18604c52007-02-28 18:34:10 +010073module_param(use_mcs, int, 0);
Jan-Bernd Themann7a291082006-09-13 17:44:31 +020074
75MODULE_PARM_DESC(msg_level, "msg_level");
Jan-Bernd Themann8759cf72007-09-07 12:30:17 +020076MODULE_PARM_DESC(prop_carrier_state, "Propagate carrier state of physical "
77 "port to stack. 1:yes, 0:no. Default = 0 ");
Jan-Bernd Themann7a291082006-09-13 17:44:31 +020078MODULE_PARM_DESC(rq3_entries, "Number of entries for Receive Queue 3 "
79 "[2^x - 1], x = [6..14]. Default = "
80 __MODULE_STRING(EHEA_DEF_ENTRIES_RQ3) ")");
81MODULE_PARM_DESC(rq2_entries, "Number of entries for Receive Queue 2 "
82 "[2^x - 1], x = [6..14]. Default = "
83 __MODULE_STRING(EHEA_DEF_ENTRIES_RQ2) ")");
84MODULE_PARM_DESC(rq1_entries, "Number of entries for Receive Queue 1 "
85 "[2^x - 1], x = [6..14]. Default = "
86 __MODULE_STRING(EHEA_DEF_ENTRIES_RQ1) ")");
87MODULE_PARM_DESC(sq_entries, " Number of entries for the Send Queue "
88 "[2^x - 1], x = [6..14]. Default = "
89 __MODULE_STRING(EHEA_DEF_ENTRIES_SQ) ")");
Anton Blanchardb9564462011-10-14 05:30:59 +000090MODULE_PARM_DESC(use_mcs, " Multiple receive queues, 1: enable, 0: disable, "
91 "Default = 1");
Jan-Bernd Themann7a291082006-09-13 17:44:31 +020092
Doug Maxey508d2b52008-01-31 20:20:49 -060093static int port_name_cnt;
Thomas Klein44c82152007-07-11 16:32:00 +020094static LIST_HEAD(adapter_list);
Stephen Rothwell48e4cc72009-01-05 16:06:02 -080095static unsigned long ehea_driver_flags;
Daniel Walker06f89ed2008-03-28 14:41:26 -070096static DEFINE_MUTEX(dlpar_mem_lock);
Thomas Klein21eee2d2008-02-13 16:18:33 +010097struct ehea_fw_handle_array ehea_fw_handles;
98struct ehea_bcmc_reg_array ehea_bcmc_regs;
99
Thomas Kleind1dea382007-04-26 11:56:13 +0200100
Grant Likely2dc11582010-08-06 09:25:50 -0600101static int __devinit ehea_probe_adapter(struct platform_device *dev,
Jan-Bernd Themannd1d25aa2007-07-02 13:00:46 +0200102 const struct of_device_id *id);
Thomas Kleind1dea382007-04-26 11:56:13 +0200103
Grant Likely2dc11582010-08-06 09:25:50 -0600104static int __devexit ehea_remove(struct platform_device *dev);
Thomas Kleind1dea382007-04-26 11:56:13 +0200105
106static struct of_device_id ehea_device_table[] = {
107 {
108 .name = "lhea",
109 .compatible = "IBM,lhea",
110 },
111 {},
112};
Jan-Bernd Themannb0afffe2008-07-03 15:18:48 +0100113MODULE_DEVICE_TABLE(of, ehea_device_table);
Thomas Kleind1dea382007-04-26 11:56:13 +0200114
Joachim Fenkes6b08f3a2007-09-26 19:45:51 +1000115static struct of_platform_driver ehea_driver = {
Grant Likely40182942010-04-13 16:13:02 -0700116 .driver = {
117 .name = "ehea",
118 .owner = THIS_MODULE,
119 .of_match_table = ehea_device_table,
120 },
Thomas Kleind1dea382007-04-26 11:56:13 +0200121 .probe = ehea_probe_adapter,
122 .remove = ehea_remove,
123};
124
Doug Maxey508d2b52008-01-31 20:20:49 -0600125void ehea_dump(void *adr, int len, char *msg)
126{
Jan-Bernd Themann7a291082006-09-13 17:44:31 +0200127 int x;
128 unsigned char *deb = adr;
129 for (x = 0; x < len; x += 16) {
Joe Perches8c4877a2010-12-13 10:05:14 -0800130 pr_info("%s adr=%p ofs=%04x %016llx %016llx\n",
131 msg, deb, x, *((u64 *)&deb[0]), *((u64 *)&deb[8]));
Jan-Bernd Themann7a291082006-09-13 17:44:31 +0200132 deb += 16;
133 }
134}
135
Jan-Bernd Themann2f69ae02008-07-03 15:18:51 +0100136void ehea_schedule_port_reset(struct ehea_port *port)
137{
138 if (!test_bit(__EHEA_DISABLE_PORT_RESET, &port->flags))
139 schedule_work(&port->reset_task);
140}
141
Thomas Klein21eee2d2008-02-13 16:18:33 +0100142static void ehea_update_firmware_handles(void)
143{
144 struct ehea_fw_handle_entry *arr = NULL;
145 struct ehea_adapter *adapter;
146 int num_adapters = 0;
147 int num_ports = 0;
148 int num_portres = 0;
149 int i = 0;
150 int num_fw_handles, k, l;
151
152 /* Determine number of handles */
Jan-Bernd Themann52e21b12009-03-13 13:50:40 -0700153 mutex_lock(&ehea_fw_handles.lock);
154
Thomas Klein21eee2d2008-02-13 16:18:33 +0100155 list_for_each_entry(adapter, &adapter_list, list) {
156 num_adapters++;
157
158 for (k = 0; k < EHEA_MAX_PORTS; k++) {
159 struct ehea_port *port = adapter->port[k];
160
161 if (!port || (port->state != EHEA_PORT_UP))
162 continue;
163
164 num_ports++;
Anton Blanchard723f28e2011-10-14 05:31:01 +0000165 num_portres += port->num_def_qps;
Thomas Klein21eee2d2008-02-13 16:18:33 +0100166 }
167 }
168
169 num_fw_handles = num_adapters * EHEA_NUM_ADAPTER_FW_HANDLES +
170 num_ports * EHEA_NUM_PORT_FW_HANDLES +
171 num_portres * EHEA_NUM_PORTRES_FW_HANDLES;
172
173 if (num_fw_handles) {
Joe Perchesbaeb2ff2010-08-11 07:02:48 +0000174 arr = kcalloc(num_fw_handles, sizeof(*arr), GFP_KERNEL);
Thomas Klein21eee2d2008-02-13 16:18:33 +0100175 if (!arr)
Jan-Bernd Themann52e21b12009-03-13 13:50:40 -0700176 goto out; /* Keep the existing array */
Thomas Klein21eee2d2008-02-13 16:18:33 +0100177 } else
178 goto out_update;
179
180 list_for_each_entry(adapter, &adapter_list, list) {
Jan-Bernd Themann52e21b12009-03-13 13:50:40 -0700181 if (num_adapters == 0)
182 break;
183
Thomas Klein21eee2d2008-02-13 16:18:33 +0100184 for (k = 0; k < EHEA_MAX_PORTS; k++) {
185 struct ehea_port *port = adapter->port[k];
186
Joe Perches8e95a202009-12-03 07:58:21 +0000187 if (!port || (port->state != EHEA_PORT_UP) ||
188 (num_ports == 0))
Thomas Klein21eee2d2008-02-13 16:18:33 +0100189 continue;
190
Anton Blanchard723f28e2011-10-14 05:31:01 +0000191 for (l = 0; l < port->num_def_qps; l++) {
Thomas Klein21eee2d2008-02-13 16:18:33 +0100192 struct ehea_port_res *pr = &port->port_res[l];
193
194 arr[i].adh = adapter->handle;
195 arr[i++].fwh = pr->qp->fw_handle;
196 arr[i].adh = adapter->handle;
197 arr[i++].fwh = pr->send_cq->fw_handle;
198 arr[i].adh = adapter->handle;
199 arr[i++].fwh = pr->recv_cq->fw_handle;
200 arr[i].adh = adapter->handle;
201 arr[i++].fwh = pr->eq->fw_handle;
202 arr[i].adh = adapter->handle;
203 arr[i++].fwh = pr->send_mr.handle;
204 arr[i].adh = adapter->handle;
205 arr[i++].fwh = pr->recv_mr.handle;
206 }
207 arr[i].adh = adapter->handle;
208 arr[i++].fwh = port->qp_eq->fw_handle;
Jan-Bernd Themann52e21b12009-03-13 13:50:40 -0700209 num_ports--;
Thomas Klein21eee2d2008-02-13 16:18:33 +0100210 }
211
212 arr[i].adh = adapter->handle;
213 arr[i++].fwh = adapter->neq->fw_handle;
214
215 if (adapter->mr.handle) {
216 arr[i].adh = adapter->handle;
217 arr[i++].fwh = adapter->mr.handle;
218 }
Jan-Bernd Themann52e21b12009-03-13 13:50:40 -0700219 num_adapters--;
Thomas Klein21eee2d2008-02-13 16:18:33 +0100220 }
221
222out_update:
223 kfree(ehea_fw_handles.arr);
224 ehea_fw_handles.arr = arr;
225 ehea_fw_handles.num_entries = i;
Jan-Bernd Themann52e21b12009-03-13 13:50:40 -0700226out:
227 mutex_unlock(&ehea_fw_handles.lock);
Thomas Klein21eee2d2008-02-13 16:18:33 +0100228}
229
230static void ehea_update_bcmc_registrations(void)
231{
Jan-Bernd Themann52e21b12009-03-13 13:50:40 -0700232 unsigned long flags;
Thomas Klein21eee2d2008-02-13 16:18:33 +0100233 struct ehea_bcmc_reg_entry *arr = NULL;
234 struct ehea_adapter *adapter;
235 struct ehea_mc_list *mc_entry;
236 int num_registrations = 0;
237 int i = 0;
238 int k;
239
Jan-Bernd Themann52e21b12009-03-13 13:50:40 -0700240 spin_lock_irqsave(&ehea_bcmc_regs.lock, flags);
241
Thomas Klein21eee2d2008-02-13 16:18:33 +0100242 /* Determine number of registrations */
243 list_for_each_entry(adapter, &adapter_list, list)
244 for (k = 0; k < EHEA_MAX_PORTS; k++) {
245 struct ehea_port *port = adapter->port[k];
246
247 if (!port || (port->state != EHEA_PORT_UP))
248 continue;
249
250 num_registrations += 2; /* Broadcast registrations */
251
252 list_for_each_entry(mc_entry, &port->mc_list->list,list)
253 num_registrations += 2;
254 }
255
256 if (num_registrations) {
Joe Perchesbaeb2ff2010-08-11 07:02:48 +0000257 arr = kcalloc(num_registrations, sizeof(*arr), GFP_ATOMIC);
Thomas Klein21eee2d2008-02-13 16:18:33 +0100258 if (!arr)
Jan-Bernd Themann52e21b12009-03-13 13:50:40 -0700259 goto out; /* Keep the existing array */
Thomas Klein21eee2d2008-02-13 16:18:33 +0100260 } else
261 goto out_update;
262
263 list_for_each_entry(adapter, &adapter_list, list) {
264 for (k = 0; k < EHEA_MAX_PORTS; k++) {
265 struct ehea_port *port = adapter->port[k];
266
267 if (!port || (port->state != EHEA_PORT_UP))
268 continue;
269
Jan-Bernd Themann52e21b12009-03-13 13:50:40 -0700270 if (num_registrations == 0)
271 goto out_update;
272
Thomas Klein21eee2d2008-02-13 16:18:33 +0100273 arr[i].adh = adapter->handle;
274 arr[i].port_id = port->logical_port_id;
275 arr[i].reg_type = EHEA_BCMC_BROADCAST |
276 EHEA_BCMC_UNTAGGED;
277 arr[i++].macaddr = port->mac_addr;
278
279 arr[i].adh = adapter->handle;
280 arr[i].port_id = port->logical_port_id;
281 arr[i].reg_type = EHEA_BCMC_BROADCAST |
282 EHEA_BCMC_VLANID_ALL;
283 arr[i++].macaddr = port->mac_addr;
Jan-Bernd Themann52e21b12009-03-13 13:50:40 -0700284 num_registrations -= 2;
Thomas Klein21eee2d2008-02-13 16:18:33 +0100285
286 list_for_each_entry(mc_entry,
287 &port->mc_list->list, list) {
Jan-Bernd Themann52e21b12009-03-13 13:50:40 -0700288 if (num_registrations == 0)
289 goto out_update;
290
Thomas Klein21eee2d2008-02-13 16:18:33 +0100291 arr[i].adh = adapter->handle;
292 arr[i].port_id = port->logical_port_id;
293 arr[i].reg_type = EHEA_BCMC_SCOPE_ALL |
294 EHEA_BCMC_MULTICAST |
295 EHEA_BCMC_UNTAGGED;
296 arr[i++].macaddr = mc_entry->macaddr;
297
298 arr[i].adh = adapter->handle;
299 arr[i].port_id = port->logical_port_id;
300 arr[i].reg_type = EHEA_BCMC_SCOPE_ALL |
301 EHEA_BCMC_MULTICAST |
302 EHEA_BCMC_VLANID_ALL;
303 arr[i++].macaddr = mc_entry->macaddr;
Jan-Bernd Themann52e21b12009-03-13 13:50:40 -0700304 num_registrations -= 2;
Thomas Klein21eee2d2008-02-13 16:18:33 +0100305 }
306 }
307 }
308
309out_update:
310 kfree(ehea_bcmc_regs.arr);
311 ehea_bcmc_regs.arr = arr;
312 ehea_bcmc_regs.num_entries = i;
Jan-Bernd Themann52e21b12009-03-13 13:50:40 -0700313out:
314 spin_unlock_irqrestore(&ehea_bcmc_regs.lock, flags);
Thomas Klein21eee2d2008-02-13 16:18:33 +0100315}
316
Anton Blanchard239c5622011-10-14 05:31:09 +0000317static struct rtnl_link_stats64 *ehea_get_stats64(struct net_device *dev,
318 struct rtnl_link_stats64 *stats)
Jan-Bernd Themann7a291082006-09-13 17:44:31 +0200319{
320 struct ehea_port *port = netdev_priv(dev);
brenohl@br.ibm.com2aefcad2011-09-26 10:11:03 +0000321 u64 rx_packets = 0, tx_packets = 0, rx_bytes = 0, tx_bytes = 0;
Jan-Bernd Themann7a291082006-09-13 17:44:31 +0200322 int i;
323
brenohl@br.ibm.com2aefcad2011-09-26 10:11:03 +0000324 for (i = 0; i < port->num_def_qps; i++) {
325 rx_packets += port->port_res[i].rx_packets;
326 rx_bytes += port->port_res[i].rx_bytes;
327 }
328
Anton Blanchard723f28e2011-10-14 05:31:01 +0000329 for (i = 0; i < port->num_def_qps; i++) {
brenohl@br.ibm.com2aefcad2011-09-26 10:11:03 +0000330 tx_packets += port->port_res[i].tx_packets;
331 tx_bytes += port->port_res[i].tx_bytes;
332 }
333
334 stats->tx_packets = tx_packets;
335 stats->rx_bytes = rx_bytes;
336 stats->tx_bytes = tx_bytes;
337 stats->rx_packets = rx_packets;
338
339 return &port->stats;
340}
341
342static void ehea_update_stats(struct work_struct *work)
343{
344 struct ehea_port *port =
345 container_of(work, struct ehea_port, stats_work.work);
346 struct net_device *dev = port->netdev;
Anton Blanchard239c5622011-10-14 05:31:09 +0000347 struct rtnl_link_stats64 *stats = &port->stats;
brenohl@br.ibm.com2aefcad2011-09-26 10:11:03 +0000348 struct hcp_ehea_port_cb2 *cb2;
349 u64 hret;
Jan-Bernd Themann7a291082006-09-13 17:44:31 +0200350
Brian King3d8009c2010-06-30 11:59:12 +0000351 cb2 = (void *)get_zeroed_page(GFP_KERNEL);
Jan-Bernd Themann7a291082006-09-13 17:44:31 +0200352 if (!cb2) {
brenohl@br.ibm.com2aefcad2011-09-26 10:11:03 +0000353 netdev_err(dev, "No mem for cb2. Some interface statistics were not updated\n");
354 goto resched;
Jan-Bernd Themann7a291082006-09-13 17:44:31 +0200355 }
356
357 hret = ehea_h_query_ehea_port(port->adapter->handle,
358 port->logical_port_id,
359 H_PORT_CB2, H_PORT_CB2_ALL, cb2);
360 if (hret != H_SUCCESS) {
Joe Perches8c4877a2010-12-13 10:05:14 -0800361 netdev_err(dev, "query_ehea_port failed\n");
Jan-Bernd Themann7a291082006-09-13 17:44:31 +0200362 goto out_herr;
363 }
364
365 if (netif_msg_hw(port))
366 ehea_dump(cb2, sizeof(*cb2), "net_device_stats");
367
Jan-Bernd Themann7a291082006-09-13 17:44:31 +0200368 stats->multicast = cb2->rxmcp;
369 stats->rx_errors = cb2->rxuerr;
Jan-Bernd Themann7a291082006-09-13 17:44:31 +0200370
371out_herr:
Thomas Klein3faf2692009-01-21 14:45:33 -0800372 free_page((unsigned long)cb2);
brenohl@br.ibm.com2aefcad2011-09-26 10:11:03 +0000373resched:
374 schedule_delayed_work(&port->stats_work, msecs_to_jiffies(1000));
Jan-Bernd Themann7a291082006-09-13 17:44:31 +0200375}
376
377static void ehea_refill_rq1(struct ehea_port_res *pr, int index, int nr_of_wqes)
378{
379 struct sk_buff **skb_arr_rq1 = pr->rq1_skba.arr;
380 struct net_device *dev = pr->port->netdev;
381 int max_index_mask = pr->rq1_skba.len - 1;
Jan-Bernd Themann2c694482007-10-01 16:33:18 +0200382 int fill_wqes = pr->rq1_skba.os_skbs + nr_of_wqes;
383 int adder = 0;
Jan-Bernd Themann7a291082006-09-13 17:44:31 +0200384 int i;
385
Jan-Bernd Themann2c694482007-10-01 16:33:18 +0200386 pr->rq1_skba.os_skbs = 0;
Jan-Bernd Themann7a291082006-09-13 17:44:31 +0200387
Jan-Bernd Themann2c694482007-10-01 16:33:18 +0200388 if (unlikely(test_bit(__EHEA_STOP_XFER, &ehea_driver_flags))) {
Thomas Klein44fb3122008-04-04 15:04:53 +0200389 if (nr_of_wqes > 0)
390 pr->rq1_skba.index = index;
Jan-Bernd Themann2c694482007-10-01 16:33:18 +0200391 pr->rq1_skba.os_skbs = fill_wqes;
392 return;
393 }
394
395 for (i = 0; i < fill_wqes; i++) {
Jan-Bernd Themann7a291082006-09-13 17:44:31 +0200396 if (!skb_arr_rq1[index]) {
397 skb_arr_rq1[index] = netdev_alloc_skb(dev,
398 EHEA_L_PKT_SIZE);
399 if (!skb_arr_rq1[index]) {
Joe Perches8c4877a2010-12-13 10:05:14 -0800400 netdev_info(dev, "Unable to allocate enough skb in the array\n");
Jan-Bernd Themann2c694482007-10-01 16:33:18 +0200401 pr->rq1_skba.os_skbs = fill_wqes - i;
Jan-Bernd Themann7a291082006-09-13 17:44:31 +0200402 break;
403 }
404 }
405 index--;
406 index &= max_index_mask;
Jan-Bernd Themann2c694482007-10-01 16:33:18 +0200407 adder++;
Jan-Bernd Themann7a291082006-09-13 17:44:31 +0200408 }
Jan-Bernd Themann2c694482007-10-01 16:33:18 +0200409
410 if (adder == 0)
411 return;
412
Jan-Bernd Themann7a291082006-09-13 17:44:31 +0200413 /* Ring doorbell */
Jan-Bernd Themann2c694482007-10-01 16:33:18 +0200414 ehea_update_rq1a(pr->qp, adder);
Jan-Bernd Themann7a291082006-09-13 17:44:31 +0200415}
416
Thomas Kleine2878802009-01-21 14:45:57 -0800417static void ehea_init_fill_rq1(struct ehea_port_res *pr, int nr_rq1a)
Jan-Bernd Themann7a291082006-09-13 17:44:31 +0200418{
Jan-Bernd Themann7a291082006-09-13 17:44:31 +0200419 struct sk_buff **skb_arr_rq1 = pr->rq1_skba.arr;
420 struct net_device *dev = pr->port->netdev;
421 int i;
422
Breno Leitao5c7e57f2010-11-26 07:26:27 +0000423 if (nr_rq1a > pr->rq1_skba.len) {
Joe Perches8c4877a2010-12-13 10:05:14 -0800424 netdev_err(dev, "NR_RQ1A bigger than skb array len\n");
Breno Leitao5c7e57f2010-11-26 07:26:27 +0000425 return;
426 }
427
428 for (i = 0; i < nr_rq1a; i++) {
Jan-Bernd Themann7a291082006-09-13 17:44:31 +0200429 skb_arr_rq1[i] = netdev_alloc_skb(dev, EHEA_L_PKT_SIZE);
Breno Leitao5c7e57f2010-11-26 07:26:27 +0000430 if (!skb_arr_rq1[i]) {
Joe Perches8c4877a2010-12-13 10:05:14 -0800431 netdev_info(dev, "Not enough memory to allocate skb array\n");
Thomas Kleine2878802009-01-21 14:45:57 -0800432 break;
Breno Leitao5c7e57f2010-11-26 07:26:27 +0000433 }
Jan-Bernd Themann7a291082006-09-13 17:44:31 +0200434 }
435 /* Ring doorbell */
Breno Leitaof76957f2011-01-11 07:45:57 +0000436 ehea_update_rq1a(pr->qp, i - 1);
Jan-Bernd Themann7a291082006-09-13 17:44:31 +0200437}
438
439static int ehea_refill_rq_def(struct ehea_port_res *pr,
440 struct ehea_q_skb_arr *q_skba, int rq_nr,
441 int num_wqes, int wqe_type, int packet_size)
442{
443 struct net_device *dev = pr->port->netdev;
444 struct ehea_qp *qp = pr->qp;
445 struct sk_buff **skb_arr = q_skba->arr;
446 struct ehea_rwqe *rwqe;
447 int i, index, max_index_mask, fill_wqes;
Jan-Bernd Themann2c694482007-10-01 16:33:18 +0200448 int adder = 0;
Jan-Bernd Themann7a291082006-09-13 17:44:31 +0200449 int ret = 0;
450
451 fill_wqes = q_skba->os_skbs + num_wqes;
Jan-Bernd Themann2c694482007-10-01 16:33:18 +0200452 q_skba->os_skbs = 0;
Jan-Bernd Themann7a291082006-09-13 17:44:31 +0200453
Jan-Bernd Themann2c694482007-10-01 16:33:18 +0200454 if (unlikely(test_bit(__EHEA_STOP_XFER, &ehea_driver_flags))) {
455 q_skba->os_skbs = fill_wqes;
Jan-Bernd Themann7a291082006-09-13 17:44:31 +0200456 return ret;
Jan-Bernd Themann2c694482007-10-01 16:33:18 +0200457 }
Jan-Bernd Themann7a291082006-09-13 17:44:31 +0200458
459 index = q_skba->index;
460 max_index_mask = q_skba->len - 1;
461 for (i = 0; i < fill_wqes; i++) {
Jan-Bernd Themann2c694482007-10-01 16:33:18 +0200462 u64 tmp_addr;
Eric Dumazet89d71a62009-10-13 05:34:20 +0000463 struct sk_buff *skb;
464
465 skb = netdev_alloc_skb_ip_align(dev, packet_size);
Jan-Bernd Themann7a291082006-09-13 17:44:31 +0200466 if (!skb) {
Jan-Bernd Themann7a291082006-09-13 17:44:31 +0200467 q_skba->os_skbs = fill_wqes - i;
Thomas Kleine2878802009-01-21 14:45:57 -0800468 if (q_skba->os_skbs == q_skba->len - 2) {
Joe Perches8c4877a2010-12-13 10:05:14 -0800469 netdev_info(pr->port->netdev,
470 "rq%i ran dry - no mem for skb\n",
471 rq_nr);
Thomas Kleine2878802009-01-21 14:45:57 -0800472 ret = -ENOMEM;
473 }
Jan-Bernd Themann7a291082006-09-13 17:44:31 +0200474 break;
475 }
Jan-Bernd Themann7a291082006-09-13 17:44:31 +0200476
477 skb_arr[index] = skb;
Jan-Bernd Themann2c694482007-10-01 16:33:18 +0200478 tmp_addr = ehea_map_vaddr(skb->data);
479 if (tmp_addr == -1) {
480 dev_kfree_skb(skb);
481 q_skba->os_skbs = fill_wqes - i;
482 ret = 0;
483 break;
484 }
Jan-Bernd Themann7a291082006-09-13 17:44:31 +0200485
486 rwqe = ehea_get_next_rwqe(qp, rq_nr);
487 rwqe->wr_id = EHEA_BMASK_SET(EHEA_WR_ID_TYPE, wqe_type)
Jan-Bernd Themannd1d25aa2007-07-02 13:00:46 +0200488 | EHEA_BMASK_SET(EHEA_WR_ID_INDEX, index);
Jan-Bernd Themann7a291082006-09-13 17:44:31 +0200489 rwqe->sg_list[0].l_key = pr->recv_mr.lkey;
Jan-Bernd Themann2c694482007-10-01 16:33:18 +0200490 rwqe->sg_list[0].vaddr = tmp_addr;
Jan-Bernd Themann7a291082006-09-13 17:44:31 +0200491 rwqe->sg_list[0].len = packet_size;
492 rwqe->data_segments = 1;
493
494 index++;
495 index &= max_index_mask;
Jan-Bernd Themann2c694482007-10-01 16:33:18 +0200496 adder++;
Jan-Bernd Themann7a291082006-09-13 17:44:31 +0200497 }
Thomas Klein44c82152007-07-11 16:32:00 +0200498
Jan-Bernd Themann7a291082006-09-13 17:44:31 +0200499 q_skba->index = index;
Jan-Bernd Themann2c694482007-10-01 16:33:18 +0200500 if (adder == 0)
501 goto out;
Jan-Bernd Themann7a291082006-09-13 17:44:31 +0200502
503 /* Ring doorbell */
504 iosync();
505 if (rq_nr == 2)
Jan-Bernd Themann2c694482007-10-01 16:33:18 +0200506 ehea_update_rq2a(pr->qp, adder);
Jan-Bernd Themann7a291082006-09-13 17:44:31 +0200507 else
Jan-Bernd Themann2c694482007-10-01 16:33:18 +0200508 ehea_update_rq3a(pr->qp, adder);
Thomas Klein44c82152007-07-11 16:32:00 +0200509out:
Jan-Bernd Themann7a291082006-09-13 17:44:31 +0200510 return ret;
511}
512
513
514static int ehea_refill_rq2(struct ehea_port_res *pr, int nr_of_wqes)
515{
516 return ehea_refill_rq_def(pr, &pr->rq2_skba, 2,
517 nr_of_wqes, EHEA_RWQE2_TYPE,
Eric Dumazet89d71a62009-10-13 05:34:20 +0000518 EHEA_RQ2_PKT_SIZE);
Jan-Bernd Themann7a291082006-09-13 17:44:31 +0200519}
520
521
522static int ehea_refill_rq3(struct ehea_port_res *pr, int nr_of_wqes)
523{
524 return ehea_refill_rq_def(pr, &pr->rq3_skba, 3,
525 nr_of_wqes, EHEA_RWQE3_TYPE,
Eric Dumazet89d71a62009-10-13 05:34:20 +0000526 EHEA_MAX_PACKET_SIZE);
Jan-Bernd Themann7a291082006-09-13 17:44:31 +0200527}
528
529static inline int ehea_check_cqe(struct ehea_cqe *cqe, int *rq_num)
530{
531 *rq_num = (cqe->type & EHEA_CQE_TYPE_RQ) >> 5;
532 if ((cqe->status & EHEA_CQE_STAT_ERR_MASK) == 0)
533 return 0;
534 if (((cqe->status & EHEA_CQE_STAT_ERR_TCP) != 0) &&
535 (cqe->header_length == 0))
536 return 0;
537 return -EINVAL;
538}
539
540static inline void ehea_fill_skb(struct net_device *dev,
Anton Blanchardb9564462011-10-14 05:30:59 +0000541 struct sk_buff *skb, struct ehea_cqe *cqe,
542 struct ehea_port_res *pr)
Jan-Bernd Themann7a291082006-09-13 17:44:31 +0200543{
544 int length = cqe->num_bytes_transfered - 4; /*remove CRC */
545
546 skb_put(skb, length);
Jan-Bernd Themann7a291082006-09-13 17:44:31 +0200547 skb->protocol = eth_type_trans(skb, dev);
Breno Leitao71085ce2010-10-07 13:17:33 +0000548
549 /* The packet was not an IPV4 packet so a complemented checksum was
550 calculated. The value is found in the Internet Checksum field. */
551 if (cqe->status & EHEA_CQE_BLIND_CKSUM) {
552 skb->ip_summed = CHECKSUM_COMPLETE;
553 skb->csum = csum_unfold(~cqe->inet_checksum_value);
554 } else
555 skb->ip_summed = CHECKSUM_UNNECESSARY;
Anton Blanchardb9564462011-10-14 05:30:59 +0000556
557 skb_record_rx_queue(skb, pr - &pr->port->port_res[0]);
Jan-Bernd Themann7a291082006-09-13 17:44:31 +0200558}
559
560static inline struct sk_buff *get_skb_by_index(struct sk_buff **skb_array,
561 int arr_len,
562 struct ehea_cqe *cqe)
563{
564 int skb_index = EHEA_BMASK_GET(EHEA_WR_ID_INDEX, cqe->wr_id);
565 struct sk_buff *skb;
566 void *pref;
567 int x;
568
569 x = skb_index + 1;
570 x &= (arr_len - 1);
571
572 pref = skb_array[x];
Hannes Hering0b2febf2009-05-04 11:06:37 -0700573 if (pref) {
574 prefetchw(pref);
575 prefetchw(pref + EHEA_CACHE_LINE);
Jan-Bernd Themann7a291082006-09-13 17:44:31 +0200576
Hannes Hering0b2febf2009-05-04 11:06:37 -0700577 pref = (skb_array[x]->data);
578 prefetch(pref);
579 prefetch(pref + EHEA_CACHE_LINE);
580 prefetch(pref + EHEA_CACHE_LINE * 2);
581 prefetch(pref + EHEA_CACHE_LINE * 3);
582 }
583
Jan-Bernd Themann7a291082006-09-13 17:44:31 +0200584 skb = skb_array[skb_index];
585 skb_array[skb_index] = NULL;
586 return skb;
587}
588
589static inline struct sk_buff *get_skb_by_index_ll(struct sk_buff **skb_array,
590 int arr_len, int wqe_index)
591{
592 struct sk_buff *skb;
593 void *pref;
594 int x;
595
596 x = wqe_index + 1;
597 x &= (arr_len - 1);
598
599 pref = skb_array[x];
Hannes Hering0b2febf2009-05-04 11:06:37 -0700600 if (pref) {
601 prefetchw(pref);
602 prefetchw(pref + EHEA_CACHE_LINE);
Jan-Bernd Themann7a291082006-09-13 17:44:31 +0200603
Hannes Hering0b2febf2009-05-04 11:06:37 -0700604 pref = (skb_array[x]->data);
605 prefetchw(pref);
606 prefetchw(pref + EHEA_CACHE_LINE);
607 }
Jan-Bernd Themann7a291082006-09-13 17:44:31 +0200608
609 skb = skb_array[wqe_index];
610 skb_array[wqe_index] = NULL;
611 return skb;
612}
613
614static int ehea_treat_poll_error(struct ehea_port_res *pr, int rq,
615 struct ehea_cqe *cqe, int *processed_rq2,
616 int *processed_rq3)
617{
618 struct sk_buff *skb;
619
Jan-Bernd Themannacbddb52007-03-23 17:18:53 +0100620 if (cqe->status & EHEA_CQE_STAT_ERR_TCP)
621 pr->p_stats.err_tcp_cksum++;
622 if (cqe->status & EHEA_CQE_STAT_ERR_IP)
623 pr->p_stats.err_ip_cksum++;
624 if (cqe->status & EHEA_CQE_STAT_ERR_CRC)
625 pr->p_stats.err_frame_crc++;
626
Jan-Bernd Themann7a291082006-09-13 17:44:31 +0200627 if (rq == 2) {
628 *processed_rq2 += 1;
629 skb = get_skb_by_index(pr->rq2_skba.arr, pr->rq2_skba.len, cqe);
630 dev_kfree_skb(skb);
631 } else if (rq == 3) {
632 *processed_rq3 += 1;
633 skb = get_skb_by_index(pr->rq3_skba.arr, pr->rq3_skba.len, cqe);
634 dev_kfree_skb(skb);
635 }
636
637 if (cqe->status & EHEA_CQE_STAT_FAT_ERR_MASK) {
Thomas Klein58dd8252007-11-21 17:42:27 +0100638 if (netif_msg_rx_err(pr->port)) {
Joe Perches8c4877a2010-12-13 10:05:14 -0800639 pr_err("Critical receive error for QP %d. Resetting port.\n",
640 pr->qp->init_attr.qp_nr);
Thomas Klein58dd8252007-11-21 17:42:27 +0100641 ehea_dump(cqe, sizeof(*cqe), "CQE");
642 }
Jan-Bernd Themann2f69ae02008-07-03 15:18:51 +0100643 ehea_schedule_port_reset(pr->port);
Jan-Bernd Themann7a291082006-09-13 17:44:31 +0200644 return 1;
645 }
646
647 return 0;
648}
649
Stephen Hemmingerbea33482007-10-03 16:41:36 -0700650static int ehea_proc_rwqes(struct net_device *dev,
651 struct ehea_port_res *pr,
652 int budget)
Jan-Bernd Themann7a291082006-09-13 17:44:31 +0200653{
Jan-Bernd Themann18604c52007-02-28 18:34:10 +0100654 struct ehea_port *port = pr->port;
Jan-Bernd Themann7a291082006-09-13 17:44:31 +0200655 struct ehea_qp *qp = pr->qp;
656 struct ehea_cqe *cqe;
657 struct sk_buff *skb;
658 struct sk_buff **skb_arr_rq1 = pr->rq1_skba.arr;
659 struct sk_buff **skb_arr_rq2 = pr->rq2_skba.arr;
660 struct sk_buff **skb_arr_rq3 = pr->rq3_skba.arr;
661 int skb_arr_rq1_len = pr->rq1_skba.len;
662 int skb_arr_rq2_len = pr->rq2_skba.len;
663 int skb_arr_rq3_len = pr->rq3_skba.len;
664 int processed, processed_rq1, processed_rq2, processed_rq3;
Breno Leitaoce45b872010-10-27 08:45:14 +0000665 u64 processed_bytes = 0;
Stephen Hemmingerbea33482007-10-03 16:41:36 -0700666 int wqe_index, last_wqe_index, rq, port_reset;
Jan-Bernd Themann7a291082006-09-13 17:44:31 +0200667
668 processed = processed_rq1 = processed_rq2 = processed_rq3 = 0;
669 last_wqe_index = 0;
Jan-Bernd Themann7a291082006-09-13 17:44:31 +0200670
Jan-Bernd Themann7a291082006-09-13 17:44:31 +0200671 cqe = ehea_poll_rq1(qp, &wqe_index);
Stephen Hemmingerbea33482007-10-03 16:41:36 -0700672 while ((processed < budget) && cqe) {
Jan-Bernd Themann7a291082006-09-13 17:44:31 +0200673 ehea_inc_rq1(qp);
674 processed_rq1++;
675 processed++;
Jan-Bernd Themann7a291082006-09-13 17:44:31 +0200676 if (netif_msg_rx_status(port))
677 ehea_dump(cqe, sizeof(*cqe), "CQE");
678
679 last_wqe_index = wqe_index;
680 rmb();
681 if (!ehea_check_cqe(cqe, &rq)) {
Doug Maxey508d2b52008-01-31 20:20:49 -0600682 if (rq == 1) {
683 /* LL RQ1 */
Jan-Bernd Themann7a291082006-09-13 17:44:31 +0200684 skb = get_skb_by_index_ll(skb_arr_rq1,
685 skb_arr_rq1_len,
686 wqe_index);
687 if (unlikely(!skb)) {
Breno Leitao782615a2010-12-20 10:35:25 -0800688 netif_info(port, rx_err, dev,
Joe Perches8c4877a2010-12-13 10:05:14 -0800689 "LL rq1: skb=NULL\n");
Jan-Bernd Themann18604c52007-02-28 18:34:10 +0100690
Stephen Hemmingerbea33482007-10-03 16:41:36 -0700691 skb = netdev_alloc_skb(dev,
Jan-Bernd Themann7a291082006-09-13 17:44:31 +0200692 EHEA_L_PKT_SIZE);
Breno Leitao5c7e57f2010-11-26 07:26:27 +0000693 if (!skb) {
Breno Leitao782615a2010-12-20 10:35:25 -0800694 netdev_err(dev, "Not enough memory to allocate skb\n");
Jan-Bernd Themann7a291082006-09-13 17:44:31 +0200695 break;
Breno Leitao5c7e57f2010-11-26 07:26:27 +0000696 }
Jan-Bernd Themann7a291082006-09-13 17:44:31 +0200697 }
Doug Maxey508d2b52008-01-31 20:20:49 -0600698 skb_copy_to_linear_data(skb, ((char *)cqe) + 64,
Jan-Bernd Themannd1d25aa2007-07-02 13:00:46 +0200699 cqe->num_bytes_transfered - 4);
Anton Blanchardb9564462011-10-14 05:30:59 +0000700 ehea_fill_skb(dev, skb, cqe, pr);
Doug Maxey508d2b52008-01-31 20:20:49 -0600701 } else if (rq == 2) {
702 /* RQ2 */
Jan-Bernd Themann7a291082006-09-13 17:44:31 +0200703 skb = get_skb_by_index(skb_arr_rq2,
704 skb_arr_rq2_len, cqe);
705 if (unlikely(!skb)) {
Joe Perches8c4877a2010-12-13 10:05:14 -0800706 netif_err(port, rx_err, dev,
707 "rq2: skb=NULL\n");
Jan-Bernd Themann7a291082006-09-13 17:44:31 +0200708 break;
709 }
Anton Blanchardb9564462011-10-14 05:30:59 +0000710 ehea_fill_skb(dev, skb, cqe, pr);
Jan-Bernd Themann7a291082006-09-13 17:44:31 +0200711 processed_rq2++;
Doug Maxey508d2b52008-01-31 20:20:49 -0600712 } else {
713 /* RQ3 */
Jan-Bernd Themann7a291082006-09-13 17:44:31 +0200714 skb = get_skb_by_index(skb_arr_rq3,
715 skb_arr_rq3_len, cqe);
716 if (unlikely(!skb)) {
Joe Perches8c4877a2010-12-13 10:05:14 -0800717 netif_err(port, rx_err, dev,
718 "rq3: skb=NULL\n");
Jan-Bernd Themann7a291082006-09-13 17:44:31 +0200719 break;
720 }
Anton Blanchardb9564462011-10-14 05:30:59 +0000721 ehea_fill_skb(dev, skb, cqe, pr);
Jan-Bernd Themann7a291082006-09-13 17:44:31 +0200722 processed_rq3++;
723 }
724
Breno Leitaoce45b872010-10-27 08:45:14 +0000725 processed_bytes += skb->len;
Anton Blanchard34284142011-10-14 05:31:11 +0000726
727 if (cqe->status & EHEA_CQE_VLAN_TAG_XTRACT)
728 __vlan_hwaccel_put_tag(skb, cqe->vlan_tag);
729
730 napi_gro_receive(&pr->napi, skb);
Jan-Bernd Themann18604c52007-02-28 18:34:10 +0100731 } else {
Jan-Bernd Themannacbddb52007-03-23 17:18:53 +0100732 pr->p_stats.poll_receive_errors++;
Jan-Bernd Themann7a291082006-09-13 17:44:31 +0200733 port_reset = ehea_treat_poll_error(pr, rq, cqe,
734 &processed_rq2,
735 &processed_rq3);
736 if (port_reset)
737 break;
738 }
739 cqe = ehea_poll_rq1(qp, &wqe_index);
740 }
741
Jan-Bernd Themann7a291082006-09-13 17:44:31 +0200742 pr->rx_packets += processed;
Breno Leitaoce45b872010-10-27 08:45:14 +0000743 pr->rx_bytes += processed_bytes;
Jan-Bernd Themann7a291082006-09-13 17:44:31 +0200744
745 ehea_refill_rq1(pr, last_wqe_index, processed_rq1);
746 ehea_refill_rq2(pr, processed_rq2);
747 ehea_refill_rq3(pr, processed_rq3);
748
Stephen Hemmingerbea33482007-10-03 16:41:36 -0700749 return processed;
Jan-Bernd Themann7a291082006-09-13 17:44:31 +0200750}
751
Andre Detsch2928db42010-08-17 05:49:12 +0000752#define SWQE_RESTART_CHECK 0xdeadbeaff00d0000ull
753
754static void reset_sq_restart_flag(struct ehea_port *port)
755{
756 int i;
757
Anton Blanchard723f28e2011-10-14 05:31:01 +0000758 for (i = 0; i < port->num_def_qps; i++) {
Andre Detsch2928db42010-08-17 05:49:12 +0000759 struct ehea_port_res *pr = &port->port_res[i];
760 pr->sq_restart_flag = 0;
761 }
Breno Leitaoa8bb69f2010-10-05 13:16:23 +0000762 wake_up(&port->restart_wq);
Andre Detsch2928db42010-08-17 05:49:12 +0000763}
764
765static void check_sqs(struct ehea_port *port)
766{
767 struct ehea_swqe *swqe;
768 int swqe_index;
769 int i, k;
770
Anton Blanchard723f28e2011-10-14 05:31:01 +0000771 for (i = 0; i < port->num_def_qps; i++) {
Andre Detsch2928db42010-08-17 05:49:12 +0000772 struct ehea_port_res *pr = &port->port_res[i];
Breno Leitaoa8bb69f2010-10-05 13:16:23 +0000773 int ret;
Andre Detsch2928db42010-08-17 05:49:12 +0000774 k = 0;
775 swqe = ehea_get_swqe(pr->qp, &swqe_index);
776 memset(swqe, 0, SWQE_HEADER_SIZE);
777 atomic_dec(&pr->swqe_avail);
778
779 swqe->tx_control |= EHEA_SWQE_PURGE;
780 swqe->wr_id = SWQE_RESTART_CHECK;
781 swqe->tx_control |= EHEA_SWQE_SIGNALLED_COMPLETION;
782 swqe->tx_control |= EHEA_SWQE_IMM_DATA_PRESENT;
783 swqe->immediate_data_length = 80;
784
785 ehea_post_swqe(pr->qp, swqe);
786
Breno Leitaoa8bb69f2010-10-05 13:16:23 +0000787 ret = wait_event_timeout(port->restart_wq,
788 pr->sq_restart_flag == 0,
789 msecs_to_jiffies(100));
790
791 if (!ret) {
Joe Perches8c4877a2010-12-13 10:05:14 -0800792 pr_err("HW/SW queues out of sync\n");
Breno Leitaoa8bb69f2010-10-05 13:16:23 +0000793 ehea_schedule_port_reset(pr->port);
794 return;
Andre Detsch2928db42010-08-17 05:49:12 +0000795 }
796 }
Andre Detsch2928db42010-08-17 05:49:12 +0000797}
798
799
Jan-Bernd Themann18604c52007-02-28 18:34:10 +0100800static struct ehea_cqe *ehea_proc_cqes(struct ehea_port_res *pr, int my_quota)
Jan-Bernd Themann7a291082006-09-13 17:44:31 +0200801{
Jan-Bernd Themannacbddb52007-03-23 17:18:53 +0100802 struct sk_buff *skb;
Jan-Bernd Themann7a291082006-09-13 17:44:31 +0200803 struct ehea_cq *send_cq = pr->send_cq;
804 struct ehea_cqe *cqe;
Jan-Bernd Themann18604c52007-02-28 18:34:10 +0100805 int quota = my_quota;
Jan-Bernd Themann7a291082006-09-13 17:44:31 +0200806 int cqe_counter = 0;
807 int swqe_av = 0;
Jan-Bernd Themannacbddb52007-03-23 17:18:53 +0100808 int index;
Anton Blanchardb9564462011-10-14 05:30:59 +0000809 struct netdev_queue *txq = netdev_get_tx_queue(pr->port->netdev,
810 pr - &pr->port->port_res[0]);
Jan-Bernd Themann7a291082006-09-13 17:44:31 +0200811
Jan-Bernd Themann18604c52007-02-28 18:34:10 +0100812 cqe = ehea_poll_cq(send_cq);
Doug Maxey508d2b52008-01-31 20:20:49 -0600813 while (cqe && (quota > 0)) {
Jan-Bernd Themann18604c52007-02-28 18:34:10 +0100814 ehea_inc_cq(send_cq);
815
Jan-Bernd Themann7a291082006-09-13 17:44:31 +0200816 cqe_counter++;
817 rmb();
Andre Detsch2928db42010-08-17 05:49:12 +0000818
819 if (cqe->wr_id == SWQE_RESTART_CHECK) {
820 pr->sq_restart_flag = 1;
821 swqe_av++;
822 break;
823 }
824
Jan-Bernd Themann7a291082006-09-13 17:44:31 +0200825 if (cqe->status & EHEA_CQE_STAT_ERR_MASK) {
Joe Perches8c4877a2010-12-13 10:05:14 -0800826 pr_err("Bad send completion status=0x%04X\n",
827 cqe->status);
Thomas Kleinea96cea2010-04-20 23:10:55 +0000828
Jan-Bernd Themann7a291082006-09-13 17:44:31 +0200829 if (netif_msg_tx_err(pr->port))
830 ehea_dump(cqe, sizeof(*cqe), "Send CQE");
Thomas Kleinea96cea2010-04-20 23:10:55 +0000831
832 if (cqe->status & EHEA_CQE_STAT_RESET_MASK) {
Joe Perches8c4877a2010-12-13 10:05:14 -0800833 pr_err("Resetting port\n");
Thomas Kleinea96cea2010-04-20 23:10:55 +0000834 ehea_schedule_port_reset(pr->port);
835 break;
836 }
Jan-Bernd Themann7a291082006-09-13 17:44:31 +0200837 }
838
839 if (netif_msg_tx_done(pr->port))
840 ehea_dump(cqe, sizeof(*cqe), "CQE");
841
842 if (likely(EHEA_BMASK_GET(EHEA_WR_ID_TYPE, cqe->wr_id)
Jan-Bernd Themannacbddb52007-03-23 17:18:53 +0100843 == EHEA_SWQE2_TYPE)) {
844
845 index = EHEA_BMASK_GET(EHEA_WR_ID_INDEX, cqe->wr_id);
846 skb = pr->sq_skba.arr[index];
847 dev_kfree_skb(skb);
848 pr->sq_skba.arr[index] = NULL;
849 }
Jan-Bernd Themann7a291082006-09-13 17:44:31 +0200850
851 swqe_av += EHEA_BMASK_GET(EHEA_WR_ID_REFILL, cqe->wr_id);
852 quota--;
Jan-Bernd Themann18604c52007-02-28 18:34:10 +0100853
854 cqe = ehea_poll_cq(send_cq);
Joe Perchesee289b62010-05-17 22:47:34 -0700855 }
Jan-Bernd Themann7a291082006-09-13 17:44:31 +0200856
857 ehea_update_feca(send_cq, cqe_counter);
858 atomic_add(swqe_av, &pr->swqe_avail);
859
Anton Blanchardb9564462011-10-14 05:30:59 +0000860 if (unlikely(netif_tx_queue_stopped(txq) &&
861 (atomic_read(&pr->swqe_avail) >= pr->swqe_refill_th))) {
862 __netif_tx_lock(txq, smp_processor_id());
863 if (netif_tx_queue_stopped(txq) &&
864 (atomic_read(&pr->swqe_avail) >= pr->swqe_refill_th))
865 netif_tx_wake_queue(txq);
866 __netif_tx_unlock(txq);
Jan-Bernd Themann7a291082006-09-13 17:44:31 +0200867 }
Anton Blanchardb9564462011-10-14 05:30:59 +0000868
Breno Leitao5b27d422010-10-05 13:16:22 +0000869 wake_up(&pr->port->swqe_avail_wq);
Jan-Bernd Themann7a291082006-09-13 17:44:31 +0200870
Jan-Bernd Themann18604c52007-02-28 18:34:10 +0100871 return cqe;
Jan-Bernd Themann7a291082006-09-13 17:44:31 +0200872}
873
Stephen Hemmingerbea33482007-10-03 16:41:36 -0700874#define EHEA_POLL_MAX_CQES 65535
Jan-Bernd Themann18604c52007-02-28 18:34:10 +0100875
Stephen Hemmingerbea33482007-10-03 16:41:36 -0700876static int ehea_poll(struct napi_struct *napi, int budget)
Jan-Bernd Themann7a291082006-09-13 17:44:31 +0200877{
Doug Maxey508d2b52008-01-31 20:20:49 -0600878 struct ehea_port_res *pr = container_of(napi, struct ehea_port_res,
879 napi);
Stephen Hemmingerbea33482007-10-03 16:41:36 -0700880 struct net_device *dev = pr->port->netdev;
Jan-Bernd Themann18604c52007-02-28 18:34:10 +0100881 struct ehea_cqe *cqe;
882 struct ehea_cqe *cqe_skb = NULL;
Anton Blanchard222ca962011-10-14 05:31:00 +0000883 int wqe_index;
Stephen Hemmingerbea33482007-10-03 16:41:36 -0700884 int rx = 0;
Jan-Bernd Themann18604c52007-02-28 18:34:10 +0100885
Stephen Hemmingerbea33482007-10-03 16:41:36 -0700886 cqe_skb = ehea_proc_cqes(pr, EHEA_POLL_MAX_CQES);
Anton Blanchard222ca962011-10-14 05:31:00 +0000887 rx += ehea_proc_rwqes(dev, pr, budget - rx);
Jan-Bernd Themann18604c52007-02-28 18:34:10 +0100888
Anton Blanchard222ca962011-10-14 05:31:00 +0000889 while (rx != budget) {
Ben Hutchings288379f2009-01-19 16:43:59 -0800890 napi_complete(napi);
Jan-Bernd Themann18604c52007-02-28 18:34:10 +0100891 ehea_reset_cq_ep(pr->recv_cq);
892 ehea_reset_cq_ep(pr->send_cq);
893 ehea_reset_cq_n1(pr->recv_cq);
894 ehea_reset_cq_n1(pr->send_cq);
Jan-Bernd Themanna91fb142010-06-15 05:35:16 +0000895 rmb();
Jan-Bernd Themann18604c52007-02-28 18:34:10 +0100896 cqe = ehea_poll_rq1(pr->qp, &wqe_index);
897 cqe_skb = ehea_poll_cq(pr->send_cq);
898
Jan-Bernd Themanne542aa62007-03-22 17:50:24 +0100899 if (!cqe && !cqe_skb)
Stephen Hemmingerbea33482007-10-03 16:41:36 -0700900 return rx;
Jan-Bernd Themann18604c52007-02-28 18:34:10 +0100901
Ben Hutchings288379f2009-01-19 16:43:59 -0800902 if (!napi_reschedule(napi))
Stephen Hemmingerbea33482007-10-03 16:41:36 -0700903 return rx;
904
905 cqe_skb = ehea_proc_cqes(pr, EHEA_POLL_MAX_CQES);
906 rx += ehea_proc_rwqes(dev, pr, budget - rx);
Jan-Bernd Themann18604c52007-02-28 18:34:10 +0100907 }
Jan-Bernd Themanne542aa62007-03-22 17:50:24 +0100908
Stephen Hemmingerbea33482007-10-03 16:41:36 -0700909 return rx;
Jan-Bernd Themann7a291082006-09-13 17:44:31 +0200910}
911
Jan-Bernd Themann8d22c972007-07-23 16:05:03 +0200912#ifdef CONFIG_NET_POLL_CONTROLLER
913static void ehea_netpoll(struct net_device *dev)
914{
915 struct ehea_port *port = netdev_priv(dev);
Stephen Hemmingerbea33482007-10-03 16:41:36 -0700916 int i;
Jan-Bernd Themann8d22c972007-07-23 16:05:03 +0200917
Stephen Hemmingerbea33482007-10-03 16:41:36 -0700918 for (i = 0; i < port->num_def_qps; i++)
Ben Hutchings288379f2009-01-19 16:43:59 -0800919 napi_schedule(&port->port_res[i].napi);
Jan-Bernd Themann8d22c972007-07-23 16:05:03 +0200920}
921#endif
922
David Howells7d12e782006-10-05 14:55:46 +0100923static irqreturn_t ehea_recv_irq_handler(int irq, void *param)
Jan-Bernd Themann7a291082006-09-13 17:44:31 +0200924{
925 struct ehea_port_res *pr = param;
Jan-Bernd Themann18604c52007-02-28 18:34:10 +0100926
Ben Hutchings288379f2009-01-19 16:43:59 -0800927 napi_schedule(&pr->napi);
Jan-Bernd Themann18604c52007-02-28 18:34:10 +0100928
Jan-Bernd Themann7a291082006-09-13 17:44:31 +0200929 return IRQ_HANDLED;
930}
931
David Howells7d12e782006-10-05 14:55:46 +0100932static irqreturn_t ehea_qp_aff_irq_handler(int irq, void *param)
Jan-Bernd Themann7a291082006-09-13 17:44:31 +0200933{
934 struct ehea_port *port = param;
935 struct ehea_eqe *eqe;
Jan-Bernd Themannd2db9ee2007-02-09 09:10:51 +0100936 struct ehea_qp *qp;
Jan-Bernd Themann7a291082006-09-13 17:44:31 +0200937 u32 qp_token;
Thomas Kleinea96cea2010-04-20 23:10:55 +0000938 u64 resource_type, aer, aerr;
939 int reset_port = 0;
Jan-Bernd Themann7a291082006-09-13 17:44:31 +0200940
941 eqe = ehea_poll_eq(port->qp_eq);
Thomas Kleinbb3a6442007-01-22 12:54:50 +0100942
Jan-Bernd Themann7a291082006-09-13 17:44:31 +0200943 while (eqe) {
Jan-Bernd Themann7a291082006-09-13 17:44:31 +0200944 qp_token = EHEA_BMASK_GET(EHEA_EQE_QP_TOKEN, eqe->entry);
Joe Perches8c4877a2010-12-13 10:05:14 -0800945 pr_err("QP aff_err: entry=0x%llx, token=0x%x\n",
946 eqe->entry, qp_token);
Jan-Bernd Themannd2db9ee2007-02-09 09:10:51 +0100947
948 qp = port->port_res[qp_token].qp;
Thomas Kleinea96cea2010-04-20 23:10:55 +0000949
950 resource_type = ehea_error_data(port->adapter, qp->fw_handle,
951 &aer, &aerr);
952
953 if (resource_type == EHEA_AER_RESTYPE_QP) {
954 if ((aer & EHEA_AER_RESET_MASK) ||
955 (aerr & EHEA_AERR_RESET_MASK))
956 reset_port = 1;
957 } else
958 reset_port = 1; /* Reset in case of CQ or EQ error */
959
Thomas Kleinbb3a6442007-01-22 12:54:50 +0100960 eqe = ehea_poll_eq(port->qp_eq);
Jan-Bernd Themann7a291082006-09-13 17:44:31 +0200961 }
962
Thomas Kleinea96cea2010-04-20 23:10:55 +0000963 if (reset_port) {
Joe Perches8c4877a2010-12-13 10:05:14 -0800964 pr_err("Resetting port\n");
Thomas Kleinea96cea2010-04-20 23:10:55 +0000965 ehea_schedule_port_reset(port);
966 }
Jan-Bernd Themannd2db9ee2007-02-09 09:10:51 +0100967
Jan-Bernd Themann7a291082006-09-13 17:44:31 +0200968 return IRQ_HANDLED;
969}
970
971static struct ehea_port *ehea_get_port(struct ehea_adapter *adapter,
972 int logical_port)
973{
974 int i;
975
Jan-Bernd Themann1acf2312007-02-28 18:34:02 +0100976 for (i = 0; i < EHEA_MAX_PORTS; i++)
Thomas Klein41b69c72007-01-22 12:55:20 +0100977 if (adapter->port[i])
Jan-Bernd Themannd1d25aa2007-07-02 13:00:46 +0200978 if (adapter->port[i]->logical_port_id == logical_port)
Thomas Klein41b69c72007-01-22 12:55:20 +0100979 return adapter->port[i];
Jan-Bernd Themann7a291082006-09-13 17:44:31 +0200980 return NULL;
981}
982
983int ehea_sense_port_attr(struct ehea_port *port)
984{
985 int ret;
986 u64 hret;
987 struct hcp_ehea_port_cb0 *cb0;
988
Doug Maxey508d2b52008-01-31 20:20:49 -0600989 /* may be called via ehea_neq_tasklet() */
Thomas Klein3faf2692009-01-21 14:45:33 -0800990 cb0 = (void *)get_zeroed_page(GFP_ATOMIC);
Doug Maxey508d2b52008-01-31 20:20:49 -0600991 if (!cb0) {
Joe Perches8c4877a2010-12-13 10:05:14 -0800992 pr_err("no mem for cb0\n");
Jan-Bernd Themann7a291082006-09-13 17:44:31 +0200993 ret = -ENOMEM;
994 goto out;
995 }
996
997 hret = ehea_h_query_ehea_port(port->adapter->handle,
998 port->logical_port_id, H_PORT_CB0,
999 EHEA_BMASK_SET(H_PORT_CB0_ALL, 0xFFFF),
1000 cb0);
1001 if (hret != H_SUCCESS) {
1002 ret = -EIO;
1003 goto out_free;
1004 }
1005
1006 /* MAC address */
1007 port->mac_addr = cb0->port_mac_addr << 16;
1008
Doug Maxey508d2b52008-01-31 20:20:49 -06001009 if (!is_valid_ether_addr((u8 *)&port->mac_addr)) {
Jan-Bernd Themann7a291082006-09-13 17:44:31 +02001010 ret = -EADDRNOTAVAIL;
1011 goto out_free;
1012 }
1013
1014 /* Port speed */
1015 switch (cb0->port_speed) {
1016 case H_SPEED_10M_H:
1017 port->port_speed = EHEA_SPEED_10M;
1018 port->full_duplex = 0;
1019 break;
1020 case H_SPEED_10M_F:
1021 port->port_speed = EHEA_SPEED_10M;
1022 port->full_duplex = 1;
1023 break;
1024 case H_SPEED_100M_H:
1025 port->port_speed = EHEA_SPEED_100M;
1026 port->full_duplex = 0;
1027 break;
1028 case H_SPEED_100M_F:
1029 port->port_speed = EHEA_SPEED_100M;
1030 port->full_duplex = 1;
1031 break;
1032 case H_SPEED_1G_F:
1033 port->port_speed = EHEA_SPEED_1G;
1034 port->full_duplex = 1;
1035 break;
1036 case H_SPEED_10G_F:
1037 port->port_speed = EHEA_SPEED_10G;
1038 port->full_duplex = 1;
1039 break;
1040 default:
1041 port->port_speed = 0;
1042 port->full_duplex = 0;
1043 break;
1044 }
1045
Thomas Kleine919b592007-01-22 12:53:20 +01001046 port->autoneg = 1;
Jan-Bernd Themann18604c52007-02-28 18:34:10 +01001047 port->num_mcs = cb0->num_default_qps;
Thomas Kleine919b592007-01-22 12:53:20 +01001048
Jan-Bernd Themann7a291082006-09-13 17:44:31 +02001049 /* Number of default QPs */
Jan-Bernd Themann18604c52007-02-28 18:34:10 +01001050 if (use_mcs)
1051 port->num_def_qps = cb0->num_default_qps;
1052 else
1053 port->num_def_qps = 1;
Jan-Bernd Themann7a291082006-09-13 17:44:31 +02001054
1055 if (!port->num_def_qps) {
1056 ret = -EINVAL;
1057 goto out_free;
1058 }
1059
Jan-Bernd Themann7a291082006-09-13 17:44:31 +02001060 ret = 0;
1061out_free:
1062 if (ret || netif_msg_probe(port))
1063 ehea_dump(cb0, sizeof(*cb0), "ehea_sense_port_attr");
Thomas Klein3faf2692009-01-21 14:45:33 -08001064 free_page((unsigned long)cb0);
Jan-Bernd Themann7a291082006-09-13 17:44:31 +02001065out:
1066 return ret;
1067}
1068
1069int ehea_set_portspeed(struct ehea_port *port, u32 port_speed)
1070{
1071 struct hcp_ehea_port_cb4 *cb4;
1072 u64 hret;
1073 int ret = 0;
1074
Thomas Klein3faf2692009-01-21 14:45:33 -08001075 cb4 = (void *)get_zeroed_page(GFP_KERNEL);
Jan-Bernd Themann7a291082006-09-13 17:44:31 +02001076 if (!cb4) {
Joe Perches8c4877a2010-12-13 10:05:14 -08001077 pr_err("no mem for cb4\n");
Jan-Bernd Themann7a291082006-09-13 17:44:31 +02001078 ret = -ENOMEM;
1079 goto out;
1080 }
1081
1082 cb4->port_speed = port_speed;
1083
1084 netif_carrier_off(port->netdev);
1085
1086 hret = ehea_h_modify_ehea_port(port->adapter->handle,
1087 port->logical_port_id,
1088 H_PORT_CB4, H_PORT_CB4_SPEED, cb4);
1089 if (hret == H_SUCCESS) {
1090 port->autoneg = port_speed == EHEA_SPEED_AUTONEG ? 1 : 0;
1091
1092 hret = ehea_h_query_ehea_port(port->adapter->handle,
1093 port->logical_port_id,
1094 H_PORT_CB4, H_PORT_CB4_SPEED,
1095 cb4);
1096 if (hret == H_SUCCESS) {
1097 switch (cb4->port_speed) {
1098 case H_SPEED_10M_H:
1099 port->port_speed = EHEA_SPEED_10M;
1100 port->full_duplex = 0;
1101 break;
1102 case H_SPEED_10M_F:
1103 port->port_speed = EHEA_SPEED_10M;
1104 port->full_duplex = 1;
1105 break;
1106 case H_SPEED_100M_H:
1107 port->port_speed = EHEA_SPEED_100M;
1108 port->full_duplex = 0;
1109 break;
1110 case H_SPEED_100M_F:
1111 port->port_speed = EHEA_SPEED_100M;
1112 port->full_duplex = 1;
1113 break;
1114 case H_SPEED_1G_F:
1115 port->port_speed = EHEA_SPEED_1G;
1116 port->full_duplex = 1;
1117 break;
1118 case H_SPEED_10G_F:
1119 port->port_speed = EHEA_SPEED_10G;
1120 port->full_duplex = 1;
1121 break;
1122 default:
1123 port->port_speed = 0;
1124 port->full_duplex = 0;
1125 break;
1126 }
1127 } else {
Joe Perches8c4877a2010-12-13 10:05:14 -08001128 pr_err("Failed sensing port speed\n");
Jan-Bernd Themann7a291082006-09-13 17:44:31 +02001129 ret = -EIO;
1130 }
1131 } else {
1132 if (hret == H_AUTHORITY) {
Joe Perches8c4877a2010-12-13 10:05:14 -08001133 pr_info("Hypervisor denied setting port speed\n");
Jan-Bernd Themann7a291082006-09-13 17:44:31 +02001134 ret = -EPERM;
1135 } else {
1136 ret = -EIO;
Joe Perches8c4877a2010-12-13 10:05:14 -08001137 pr_err("Failed setting port speed\n");
Jan-Bernd Themann7a291082006-09-13 17:44:31 +02001138 }
1139 }
Jan-Bernd Themann8759cf72007-09-07 12:30:17 +02001140 if (!prop_carrier_state || (port->phy_link == EHEA_PHY_LINK_UP))
1141 netif_carrier_on(port->netdev);
1142
Thomas Klein3faf2692009-01-21 14:45:33 -08001143 free_page((unsigned long)cb4);
Jan-Bernd Themann7a291082006-09-13 17:44:31 +02001144out:
1145 return ret;
1146}
1147
1148static void ehea_parse_eqe(struct ehea_adapter *adapter, u64 eqe)
1149{
1150 int ret;
1151 u8 ec;
1152 u8 portnum;
1153 struct ehea_port *port;
Joe Perches8c4877a2010-12-13 10:05:14 -08001154 struct net_device *dev;
Jan-Bernd Themann7a291082006-09-13 17:44:31 +02001155
1156 ec = EHEA_BMASK_GET(NEQE_EVENT_CODE, eqe);
1157 portnum = EHEA_BMASK_GET(NEQE_PORTNUM, eqe);
1158 port = ehea_get_port(adapter, portnum);
Joe Perches8c4877a2010-12-13 10:05:14 -08001159 dev = port->netdev;
Jan-Bernd Themann7a291082006-09-13 17:44:31 +02001160
1161 switch (ec) {
1162 case EHEA_EC_PORTSTATE_CHG: /* port state change */
1163
1164 if (!port) {
Joe Perches8c4877a2010-12-13 10:05:14 -08001165 netdev_err(dev, "unknown portnum %x\n", portnum);
Jan-Bernd Themann7a291082006-09-13 17:44:31 +02001166 break;
1167 }
1168
1169 if (EHEA_BMASK_GET(NEQE_PORT_UP, eqe)) {
Joe Perches8c4877a2010-12-13 10:05:14 -08001170 if (!netif_carrier_ok(dev)) {
Jan-Bernd Themann1e1675c2006-10-25 13:11:42 +02001171 ret = ehea_sense_port_attr(port);
Jan-Bernd Themann7a291082006-09-13 17:44:31 +02001172 if (ret) {
Joe Perches8c4877a2010-12-13 10:05:14 -08001173 netdev_err(dev, "failed resensing port attributes\n");
Jan-Bernd Themann7a291082006-09-13 17:44:31 +02001174 break;
1175 }
1176
Joe Perches8c4877a2010-12-13 10:05:14 -08001177 netif_info(port, link, dev,
1178 "Logical port up: %dMbps %s Duplex\n",
1179 port->port_speed,
1180 port->full_duplex == 1 ?
1181 "Full" : "Half");
Jan-Bernd Themann7a291082006-09-13 17:44:31 +02001182
Joe Perches8c4877a2010-12-13 10:05:14 -08001183 netif_carrier_on(dev);
1184 netif_wake_queue(dev);
Jan-Bernd Themann7a291082006-09-13 17:44:31 +02001185 }
1186 } else
Joe Perches8c4877a2010-12-13 10:05:14 -08001187 if (netif_carrier_ok(dev)) {
1188 netif_info(port, link, dev,
1189 "Logical port down\n");
1190 netif_carrier_off(dev);
Anton Blanchardb9564462011-10-14 05:30:59 +00001191 netif_tx_disable(dev);
Jan-Bernd Themann7a291082006-09-13 17:44:31 +02001192 }
1193
1194 if (EHEA_BMASK_GET(NEQE_EXTSWITCH_PORT_UP, eqe)) {
Jan-Bernd Themann8759cf72007-09-07 12:30:17 +02001195 port->phy_link = EHEA_PHY_LINK_UP;
Joe Perches8c4877a2010-12-13 10:05:14 -08001196 netif_info(port, link, dev,
1197 "Physical port up\n");
Jan-Bernd Themann8759cf72007-09-07 12:30:17 +02001198 if (prop_carrier_state)
Joe Perches8c4877a2010-12-13 10:05:14 -08001199 netif_carrier_on(dev);
Jan-Bernd Themann7a291082006-09-13 17:44:31 +02001200 } else {
Jan-Bernd Themann8759cf72007-09-07 12:30:17 +02001201 port->phy_link = EHEA_PHY_LINK_DOWN;
Joe Perches8c4877a2010-12-13 10:05:14 -08001202 netif_info(port, link, dev,
1203 "Physical port down\n");
Jan-Bernd Themann8759cf72007-09-07 12:30:17 +02001204 if (prop_carrier_state)
Joe Perches8c4877a2010-12-13 10:05:14 -08001205 netif_carrier_off(dev);
Jan-Bernd Themann7a291082006-09-13 17:44:31 +02001206 }
1207
1208 if (EHEA_BMASK_GET(NEQE_EXTSWITCH_PRIMARY, eqe))
Joe Perches8c4877a2010-12-13 10:05:14 -08001209 netdev_info(dev,
1210 "External switch port is primary port\n");
Jan-Bernd Themann7a291082006-09-13 17:44:31 +02001211 else
Joe Perches8c4877a2010-12-13 10:05:14 -08001212 netdev_info(dev,
1213 "External switch port is backup port\n");
Jan-Bernd Themann7a291082006-09-13 17:44:31 +02001214
1215 break;
1216 case EHEA_EC_ADAPTER_MALFUNC:
Joe Perches8c4877a2010-12-13 10:05:14 -08001217 netdev_err(dev, "Adapter malfunction\n");
Jan-Bernd Themann7a291082006-09-13 17:44:31 +02001218 break;
1219 case EHEA_EC_PORT_MALFUNC:
Joe Perches8c4877a2010-12-13 10:05:14 -08001220 netdev_info(dev, "Port malfunction\n");
1221 netif_carrier_off(dev);
Anton Blanchardb9564462011-10-14 05:30:59 +00001222 netif_tx_disable(dev);
Jan-Bernd Themann7a291082006-09-13 17:44:31 +02001223 break;
1224 default:
Joe Perches8c4877a2010-12-13 10:05:14 -08001225 netdev_err(dev, "unknown event code %x, eqe=0x%llX\n", ec, eqe);
Jan-Bernd Themann7a291082006-09-13 17:44:31 +02001226 break;
1227 }
1228}
1229
1230static void ehea_neq_tasklet(unsigned long data)
1231{
Doug Maxey508d2b52008-01-31 20:20:49 -06001232 struct ehea_adapter *adapter = (struct ehea_adapter *)data;
Jan-Bernd Themann7a291082006-09-13 17:44:31 +02001233 struct ehea_eqe *eqe;
1234 u64 event_mask;
1235
1236 eqe = ehea_poll_eq(adapter->neq);
Joe Perches8c4877a2010-12-13 10:05:14 -08001237 pr_debug("eqe=%p\n", eqe);
Jan-Bernd Themann7a291082006-09-13 17:44:31 +02001238
1239 while (eqe) {
Joe Perches8c4877a2010-12-13 10:05:14 -08001240 pr_debug("*eqe=%lx\n", (unsigned long) eqe->entry);
Jan-Bernd Themann7a291082006-09-13 17:44:31 +02001241 ehea_parse_eqe(adapter, eqe->entry);
1242 eqe = ehea_poll_eq(adapter->neq);
Joe Perches8c4877a2010-12-13 10:05:14 -08001243 pr_debug("next eqe=%p\n", eqe);
Jan-Bernd Themann7a291082006-09-13 17:44:31 +02001244 }
1245
1246 event_mask = EHEA_BMASK_SET(NELR_PORTSTATE_CHG, 1)
1247 | EHEA_BMASK_SET(NELR_ADAPTER_MALFUNC, 1)
1248 | EHEA_BMASK_SET(NELR_PORT_MALFUNC, 1);
1249
1250 ehea_h_reset_events(adapter->handle,
1251 adapter->neq->fw_handle, event_mask);
1252}
1253
David Howells7d12e782006-10-05 14:55:46 +01001254static irqreturn_t ehea_interrupt_neq(int irq, void *param)
Jan-Bernd Themann7a291082006-09-13 17:44:31 +02001255{
1256 struct ehea_adapter *adapter = param;
1257 tasklet_hi_schedule(&adapter->neq_tasklet);
1258 return IRQ_HANDLED;
1259}
1260
1261
1262static int ehea_fill_port_res(struct ehea_port_res *pr)
1263{
1264 int ret;
1265 struct ehea_qp_init_attr *init_attr = &pr->qp->init_attr;
1266
Breno Leitaof76957f2011-01-11 07:45:57 +00001267 ehea_init_fill_rq1(pr, pr->rq1_skba.len);
Jan-Bernd Themann7a291082006-09-13 17:44:31 +02001268
Thomas Kleine2878802009-01-21 14:45:57 -08001269 ret = ehea_refill_rq2(pr, init_attr->act_nr_rwqes_rq2 - 1);
Jan-Bernd Themann7a291082006-09-13 17:44:31 +02001270
1271 ret |= ehea_refill_rq3(pr, init_attr->act_nr_rwqes_rq3 - 1);
1272
1273 return ret;
1274}
1275
1276static int ehea_reg_interrupts(struct net_device *dev)
1277{
1278 struct ehea_port *port = netdev_priv(dev);
1279 struct ehea_port_res *pr;
1280 int i, ret;
1281
Jan-Bernd Themann7a291082006-09-13 17:44:31 +02001282
1283 snprintf(port->int_aff_name, EHEA_IRQ_NAME_SIZE - 1, "%s-aff",
1284 dev->name);
1285
Joachim Fenkes6b08f3a2007-09-26 19:45:51 +10001286 ret = ibmebus_request_irq(port->qp_eq->attr.ist1,
Jan-Bernd Themann7a291082006-09-13 17:44:31 +02001287 ehea_qp_aff_irq_handler,
Thomas Gleixner38515e92007-02-14 00:33:16 -08001288 IRQF_DISABLED, port->int_aff_name, port);
Jan-Bernd Themann7a291082006-09-13 17:44:31 +02001289 if (ret) {
Joe Perches8c4877a2010-12-13 10:05:14 -08001290 netdev_err(dev, "failed registering irq for qp_aff_irq_handler:ist=%X\n",
1291 port->qp_eq->attr.ist1);
Jan-Bernd Themann7a291082006-09-13 17:44:31 +02001292 goto out_free_qpeq;
1293 }
1294
Joe Perches8c4877a2010-12-13 10:05:14 -08001295 netif_info(port, ifup, dev,
1296 "irq_handle 0x%X for function qp_aff_irq_handler registered\n",
1297 port->qp_eq->attr.ist1);
Jan-Bernd Themann7a291082006-09-13 17:44:31 +02001298
Jan-Bernd Themann18604c52007-02-28 18:34:10 +01001299
Anton Blanchard723f28e2011-10-14 05:31:01 +00001300 for (i = 0; i < port->num_def_qps; i++) {
Jan-Bernd Themann7a291082006-09-13 17:44:31 +02001301 pr = &port->port_res[i];
1302 snprintf(pr->int_send_name, EHEA_IRQ_NAME_SIZE - 1,
Jan-Bernd Themann18604c52007-02-28 18:34:10 +01001303 "%s-queue%d", dev->name, i);
Joachim Fenkes6b08f3a2007-09-26 19:45:51 +10001304 ret = ibmebus_request_irq(pr->eq->attr.ist1,
Jan-Bernd Themann18604c52007-02-28 18:34:10 +01001305 ehea_recv_irq_handler,
Thomas Gleixner38515e92007-02-14 00:33:16 -08001306 IRQF_DISABLED, pr->int_send_name,
Jan-Bernd Themann7a291082006-09-13 17:44:31 +02001307 pr);
1308 if (ret) {
Joe Perches8c4877a2010-12-13 10:05:14 -08001309 netdev_err(dev, "failed registering irq for ehea_queue port_res_nr:%d, ist=%X\n",
1310 i, pr->eq->attr.ist1);
Jan-Bernd Themann7a291082006-09-13 17:44:31 +02001311 goto out_free_req;
1312 }
Joe Perches8c4877a2010-12-13 10:05:14 -08001313 netif_info(port, ifup, dev,
1314 "irq_handle 0x%X for function ehea_queue_int %d registered\n",
1315 pr->eq->attr.ist1, i);
Jan-Bernd Themann7a291082006-09-13 17:44:31 +02001316 }
1317out:
1318 return ret;
1319
Jan-Bernd Themann18604c52007-02-28 18:34:10 +01001320
Jan-Bernd Themann7a291082006-09-13 17:44:31 +02001321out_free_req:
1322 while (--i >= 0) {
Jan-Bernd Themann18604c52007-02-28 18:34:10 +01001323 u32 ist = port->port_res[i].eq->attr.ist1;
Joachim Fenkes6b08f3a2007-09-26 19:45:51 +10001324 ibmebus_free_irq(ist, &port->port_res[i]);
Jan-Bernd Themann7a291082006-09-13 17:44:31 +02001325 }
Jan-Bernd Themann18604c52007-02-28 18:34:10 +01001326
Jan-Bernd Themann7a291082006-09-13 17:44:31 +02001327out_free_qpeq:
Joachim Fenkes6b08f3a2007-09-26 19:45:51 +10001328 ibmebus_free_irq(port->qp_eq->attr.ist1, port);
Jan-Bernd Themann7a291082006-09-13 17:44:31 +02001329 i = port->num_def_qps;
Jan-Bernd Themann18604c52007-02-28 18:34:10 +01001330
Jan-Bernd Themann7a291082006-09-13 17:44:31 +02001331 goto out;
Jan-Bernd Themann18604c52007-02-28 18:34:10 +01001332
Jan-Bernd Themann7a291082006-09-13 17:44:31 +02001333}
1334
1335static void ehea_free_interrupts(struct net_device *dev)
1336{
1337 struct ehea_port *port = netdev_priv(dev);
1338 struct ehea_port_res *pr;
1339 int i;
1340
1341 /* send */
Jan-Bernd Themann18604c52007-02-28 18:34:10 +01001342
Anton Blanchard723f28e2011-10-14 05:31:01 +00001343 for (i = 0; i < port->num_def_qps; i++) {
Jan-Bernd Themann7a291082006-09-13 17:44:31 +02001344 pr = &port->port_res[i];
Joachim Fenkes6b08f3a2007-09-26 19:45:51 +10001345 ibmebus_free_irq(pr->eq->attr.ist1, pr);
Joe Perches8c4877a2010-12-13 10:05:14 -08001346 netif_info(port, intr, dev,
1347 "free send irq for res %d with handle 0x%X\n",
1348 i, pr->eq->attr.ist1);
Jan-Bernd Themann7a291082006-09-13 17:44:31 +02001349 }
1350
1351 /* associated events */
Joachim Fenkes6b08f3a2007-09-26 19:45:51 +10001352 ibmebus_free_irq(port->qp_eq->attr.ist1, port);
Joe Perches8c4877a2010-12-13 10:05:14 -08001353 netif_info(port, intr, dev,
1354 "associated event interrupt for handle 0x%X freed\n",
1355 port->qp_eq->attr.ist1);
Jan-Bernd Themann7a291082006-09-13 17:44:31 +02001356}
1357
1358static int ehea_configure_port(struct ehea_port *port)
1359{
1360 int ret, i;
1361 u64 hret, mask;
1362 struct hcp_ehea_port_cb0 *cb0;
1363
1364 ret = -ENOMEM;
Thomas Klein3faf2692009-01-21 14:45:33 -08001365 cb0 = (void *)get_zeroed_page(GFP_KERNEL);
Jan-Bernd Themann7a291082006-09-13 17:44:31 +02001366 if (!cb0)
1367 goto out;
1368
1369 cb0->port_rc = EHEA_BMASK_SET(PXLY_RC_VALID, 1)
1370 | EHEA_BMASK_SET(PXLY_RC_IP_CHKSUM, 1)
1371 | EHEA_BMASK_SET(PXLY_RC_TCP_UDP_CHKSUM, 1)
1372 | EHEA_BMASK_SET(PXLY_RC_VLAN_XTRACT, 1)
1373 | EHEA_BMASK_SET(PXLY_RC_VLAN_TAG_FILTER,
1374 PXLY_RC_VLAN_FILTER)
1375 | EHEA_BMASK_SET(PXLY_RC_JUMBO_FRAME, 1);
1376
Jan-Bernd Themann18604c52007-02-28 18:34:10 +01001377 for (i = 0; i < port->num_mcs; i++)
1378 if (use_mcs)
1379 cb0->default_qpn_arr[i] =
1380 port->port_res[i].qp->init_attr.qp_nr;
1381 else
1382 cb0->default_qpn_arr[i] =
1383 port->port_res[0].qp->init_attr.qp_nr;
Jan-Bernd Themanne542aa62007-03-22 17:50:24 +01001384
Jan-Bernd Themann7a291082006-09-13 17:44:31 +02001385 if (netif_msg_ifup(port))
1386 ehea_dump(cb0, sizeof(*cb0), "ehea_configure_port");
1387
1388 mask = EHEA_BMASK_SET(H_PORT_CB0_PRC, 1)
1389 | EHEA_BMASK_SET(H_PORT_CB0_DEFQPNARRAY, 1);
1390
1391 hret = ehea_h_modify_ehea_port(port->adapter->handle,
1392 port->logical_port_id,
1393 H_PORT_CB0, mask, cb0);
1394 ret = -EIO;
1395 if (hret != H_SUCCESS)
1396 goto out_free;
1397
1398 ret = 0;
1399
1400out_free:
Thomas Klein3faf2692009-01-21 14:45:33 -08001401 free_page((unsigned long)cb0);
Jan-Bernd Themann7a291082006-09-13 17:44:31 +02001402out:
1403 return ret;
1404}
1405
Jan-Bernd Themanne542aa62007-03-22 17:50:24 +01001406int ehea_gen_smrs(struct ehea_port_res *pr)
Jan-Bernd Themann7a291082006-09-13 17:44:31 +02001407{
Jan-Bernd Themanne542aa62007-03-22 17:50:24 +01001408 int ret;
Jan-Bernd Themann7a291082006-09-13 17:44:31 +02001409 struct ehea_adapter *adapter = pr->port->adapter;
1410
Jan-Bernd Themanne542aa62007-03-22 17:50:24 +01001411 ret = ehea_gen_smr(adapter, &adapter->mr, &pr->send_mr);
1412 if (ret)
Jan-Bernd Themann7a291082006-09-13 17:44:31 +02001413 goto out;
1414
Jan-Bernd Themanne542aa62007-03-22 17:50:24 +01001415 ret = ehea_gen_smr(adapter, &adapter->mr, &pr->recv_mr);
1416 if (ret)
1417 goto out_free;
Jan-Bernd Themann7a291082006-09-13 17:44:31 +02001418
1419 return 0;
1420
Jan-Bernd Themanne542aa62007-03-22 17:50:24 +01001421out_free:
1422 ehea_rem_mr(&pr->send_mr);
Jan-Bernd Themann7a291082006-09-13 17:44:31 +02001423out:
Joe Perches8c4877a2010-12-13 10:05:14 -08001424 pr_err("Generating SMRS failed\n");
Jan-Bernd Themann7a291082006-09-13 17:44:31 +02001425 return -EIO;
1426}
1427
Jan-Bernd Themanne542aa62007-03-22 17:50:24 +01001428int ehea_rem_smrs(struct ehea_port_res *pr)
Jan-Bernd Themann7a291082006-09-13 17:44:31 +02001429{
Joe Perches8e95a202009-12-03 07:58:21 +00001430 if ((ehea_rem_mr(&pr->send_mr)) ||
1431 (ehea_rem_mr(&pr->recv_mr)))
Jan-Bernd Themanne542aa62007-03-22 17:50:24 +01001432 return -EIO;
1433 else
1434 return 0;
Jan-Bernd Themann7a291082006-09-13 17:44:31 +02001435}
1436
1437static int ehea_init_q_skba(struct ehea_q_skb_arr *q_skba, int max_q_entries)
1438{
Doug Maxey508d2b52008-01-31 20:20:49 -06001439 int arr_size = sizeof(void *) * max_q_entries;
Jan-Bernd Themann7a291082006-09-13 17:44:31 +02001440
Eric Dumazet89bf67f2010-11-22 00:15:06 +00001441 q_skba->arr = vzalloc(arr_size);
Jan-Bernd Themann7a291082006-09-13 17:44:31 +02001442 if (!q_skba->arr)
1443 return -ENOMEM;
1444
Jan-Bernd Themann7a291082006-09-13 17:44:31 +02001445 q_skba->len = max_q_entries;
1446 q_skba->index = 0;
1447 q_skba->os_skbs = 0;
1448
1449 return 0;
1450}
1451
1452static int ehea_init_port_res(struct ehea_port *port, struct ehea_port_res *pr,
1453 struct port_res_cfg *pr_cfg, int queue_token)
1454{
1455 struct ehea_adapter *adapter = port->adapter;
1456 enum ehea_eq_type eq_type = EHEA_EQ;
1457 struct ehea_qp_init_attr *init_attr = NULL;
1458 int ret = -EIO;
Breno Leitaoce45b872010-10-27 08:45:14 +00001459 u64 tx_bytes, rx_bytes, tx_packets, rx_packets;
1460
1461 tx_bytes = pr->tx_bytes;
1462 tx_packets = pr->tx_packets;
1463 rx_bytes = pr->rx_bytes;
1464 rx_packets = pr->rx_packets;
Jan-Bernd Themann7a291082006-09-13 17:44:31 +02001465
1466 memset(pr, 0, sizeof(struct ehea_port_res));
1467
Breno Leitaoce45b872010-10-27 08:45:14 +00001468 pr->tx_bytes = rx_bytes;
1469 pr->tx_packets = tx_packets;
1470 pr->rx_bytes = rx_bytes;
1471 pr->rx_packets = rx_packets;
1472
Jan-Bernd Themann7a291082006-09-13 17:44:31 +02001473 pr->port = port;
Jan-Bernd Themann7a291082006-09-13 17:44:31 +02001474
Jan-Bernd Themann18604c52007-02-28 18:34:10 +01001475 pr->eq = ehea_create_eq(adapter, eq_type, EHEA_MAX_ENTRIES_EQ, 0);
1476 if (!pr->eq) {
Joe Perches8c4877a2010-12-13 10:05:14 -08001477 pr_err("create_eq failed (eq)\n");
Jan-Bernd Themann7a291082006-09-13 17:44:31 +02001478 goto out_free;
1479 }
1480
1481 pr->recv_cq = ehea_create_cq(adapter, pr_cfg->max_entries_rcq,
Jan-Bernd Themann18604c52007-02-28 18:34:10 +01001482 pr->eq->fw_handle,
Jan-Bernd Themann7a291082006-09-13 17:44:31 +02001483 port->logical_port_id);
1484 if (!pr->recv_cq) {
Joe Perches8c4877a2010-12-13 10:05:14 -08001485 pr_err("create_cq failed (cq_recv)\n");
Jan-Bernd Themann7a291082006-09-13 17:44:31 +02001486 goto out_free;
1487 }
1488
1489 pr->send_cq = ehea_create_cq(adapter, pr_cfg->max_entries_scq,
Jan-Bernd Themann18604c52007-02-28 18:34:10 +01001490 pr->eq->fw_handle,
Jan-Bernd Themann7a291082006-09-13 17:44:31 +02001491 port->logical_port_id);
1492 if (!pr->send_cq) {
Joe Perches8c4877a2010-12-13 10:05:14 -08001493 pr_err("create_cq failed (cq_send)\n");
Jan-Bernd Themann7a291082006-09-13 17:44:31 +02001494 goto out_free;
1495 }
1496
1497 if (netif_msg_ifup(port))
Joe Perches8c4877a2010-12-13 10:05:14 -08001498 pr_info("Send CQ: act_nr_cqes=%d, Recv CQ: act_nr_cqes=%d\n",
1499 pr->send_cq->attr.act_nr_of_cqes,
1500 pr->recv_cq->attr.act_nr_of_cqes);
Jan-Bernd Themann7a291082006-09-13 17:44:31 +02001501
1502 init_attr = kzalloc(sizeof(*init_attr), GFP_KERNEL);
1503 if (!init_attr) {
1504 ret = -ENOMEM;
Joe Perches8c4877a2010-12-13 10:05:14 -08001505 pr_err("no mem for ehea_qp_init_attr\n");
Jan-Bernd Themann7a291082006-09-13 17:44:31 +02001506 goto out_free;
1507 }
1508
1509 init_attr->low_lat_rq1 = 1;
1510 init_attr->signalingtype = 1; /* generate CQE if specified in WQE */
1511 init_attr->rq_count = 3;
1512 init_attr->qp_token = queue_token;
1513 init_attr->max_nr_send_wqes = pr_cfg->max_entries_sq;
1514 init_attr->max_nr_rwqes_rq1 = pr_cfg->max_entries_rq1;
1515 init_attr->max_nr_rwqes_rq2 = pr_cfg->max_entries_rq2;
1516 init_attr->max_nr_rwqes_rq3 = pr_cfg->max_entries_rq3;
1517 init_attr->wqe_size_enc_sq = EHEA_SG_SQ;
1518 init_attr->wqe_size_enc_rq1 = EHEA_SG_RQ1;
1519 init_attr->wqe_size_enc_rq2 = EHEA_SG_RQ2;
1520 init_attr->wqe_size_enc_rq3 = EHEA_SG_RQ3;
1521 init_attr->rq2_threshold = EHEA_RQ2_THRESHOLD;
1522 init_attr->rq3_threshold = EHEA_RQ3_THRESHOLD;
1523 init_attr->port_nr = port->logical_port_id;
1524 init_attr->send_cq_handle = pr->send_cq->fw_handle;
1525 init_attr->recv_cq_handle = pr->recv_cq->fw_handle;
1526 init_attr->aff_eq_handle = port->qp_eq->fw_handle;
1527
1528 pr->qp = ehea_create_qp(adapter, adapter->pd, init_attr);
1529 if (!pr->qp) {
Joe Perches8c4877a2010-12-13 10:05:14 -08001530 pr_err("create_qp failed\n");
Jan-Bernd Themann7a291082006-09-13 17:44:31 +02001531 ret = -EIO;
1532 goto out_free;
1533 }
1534
1535 if (netif_msg_ifup(port))
Joe Perches8c4877a2010-12-13 10:05:14 -08001536 pr_info("QP: qp_nr=%d\n act_nr_snd_wqe=%d\n nr_rwqe_rq1=%d\n nr_rwqe_rq2=%d\n nr_rwqe_rq3=%d\n",
1537 init_attr->qp_nr,
1538 init_attr->act_nr_send_wqes,
1539 init_attr->act_nr_rwqes_rq1,
1540 init_attr->act_nr_rwqes_rq2,
1541 init_attr->act_nr_rwqes_rq3);
Jan-Bernd Themann7a291082006-09-13 17:44:31 +02001542
Thomas Klein44fb3122008-04-04 15:04:53 +02001543 pr->sq_skba_size = init_attr->act_nr_send_wqes + 1;
1544
1545 ret = ehea_init_q_skba(&pr->sq_skba, pr->sq_skba_size);
Jan-Bernd Themann7a291082006-09-13 17:44:31 +02001546 ret |= ehea_init_q_skba(&pr->rq1_skba, init_attr->act_nr_rwqes_rq1 + 1);
1547 ret |= ehea_init_q_skba(&pr->rq2_skba, init_attr->act_nr_rwqes_rq2 + 1);
1548 ret |= ehea_init_q_skba(&pr->rq3_skba, init_attr->act_nr_rwqes_rq3 + 1);
1549 if (ret)
1550 goto out_free;
1551
1552 pr->swqe_refill_th = init_attr->act_nr_send_wqes / 10;
1553 if (ehea_gen_smrs(pr) != 0) {
1554 ret = -EIO;
1555 goto out_free;
1556 }
Jan-Bernd Themann18604c52007-02-28 18:34:10 +01001557
Jan-Bernd Themann7a291082006-09-13 17:44:31 +02001558 atomic_set(&pr->swqe_avail, init_attr->act_nr_send_wqes - 1);
1559
1560 kfree(init_attr);
Jan-Bernd Themann18604c52007-02-28 18:34:10 +01001561
Stephen Hemmingerbea33482007-10-03 16:41:36 -07001562 netif_napi_add(pr->port->netdev, &pr->napi, ehea_poll, 64);
Jan-Bernd Themann18604c52007-02-28 18:34:10 +01001563
Jan-Bernd Themann7a291082006-09-13 17:44:31 +02001564 ret = 0;
1565 goto out;
1566
1567out_free:
1568 kfree(init_attr);
1569 vfree(pr->sq_skba.arr);
1570 vfree(pr->rq1_skba.arr);
1571 vfree(pr->rq2_skba.arr);
1572 vfree(pr->rq3_skba.arr);
1573 ehea_destroy_qp(pr->qp);
1574 ehea_destroy_cq(pr->send_cq);
1575 ehea_destroy_cq(pr->recv_cq);
Jan-Bernd Themann18604c52007-02-28 18:34:10 +01001576 ehea_destroy_eq(pr->eq);
Jan-Bernd Themann7a291082006-09-13 17:44:31 +02001577out:
1578 return ret;
1579}
1580
1581static int ehea_clean_portres(struct ehea_port *port, struct ehea_port_res *pr)
1582{
1583 int ret, i;
1584
Hannes Hering357eb462009-08-04 11:48:39 -07001585 if (pr->qp)
1586 netif_napi_del(&pr->napi);
1587
Jan-Bernd Themann7a291082006-09-13 17:44:31 +02001588 ret = ehea_destroy_qp(pr->qp);
1589
1590 if (!ret) {
1591 ehea_destroy_cq(pr->send_cq);
1592 ehea_destroy_cq(pr->recv_cq);
Jan-Bernd Themann18604c52007-02-28 18:34:10 +01001593 ehea_destroy_eq(pr->eq);
Jan-Bernd Themann7a291082006-09-13 17:44:31 +02001594
1595 for (i = 0; i < pr->rq1_skba.len; i++)
1596 if (pr->rq1_skba.arr[i])
1597 dev_kfree_skb(pr->rq1_skba.arr[i]);
1598
1599 for (i = 0; i < pr->rq2_skba.len; i++)
1600 if (pr->rq2_skba.arr[i])
1601 dev_kfree_skb(pr->rq2_skba.arr[i]);
1602
1603 for (i = 0; i < pr->rq3_skba.len; i++)
1604 if (pr->rq3_skba.arr[i])
1605 dev_kfree_skb(pr->rq3_skba.arr[i]);
1606
1607 for (i = 0; i < pr->sq_skba.len; i++)
1608 if (pr->sq_skba.arr[i])
1609 dev_kfree_skb(pr->sq_skba.arr[i]);
1610
1611 vfree(pr->rq1_skba.arr);
1612 vfree(pr->rq2_skba.arr);
1613 vfree(pr->rq3_skba.arr);
1614 vfree(pr->sq_skba.arr);
1615 ret = ehea_rem_smrs(pr);
1616 }
1617 return ret;
1618}
1619
Anton Blanchard13946f52011-10-14 05:31:06 +00001620static void write_swqe2_immediate(struct sk_buff *skb, struct ehea_swqe *swqe,
1621 u32 lkey)
Jan-Bernd Themann7a291082006-09-13 17:44:31 +02001622{
Eric Dumazete743d312010-04-14 15:59:40 -07001623 int skb_data_size = skb_headlen(skb);
Jan-Bernd Themann7a291082006-09-13 17:44:31 +02001624 u8 *imm_data = &swqe->u.immdata_desc.immediate_data[0];
1625 struct ehea_vsgentry *sg1entry = &swqe->u.immdata_desc.sg_entry;
Anton Blanchard13946f52011-10-14 05:31:06 +00001626 unsigned int immediate_len = SWQE2_MAX_IMM;
Jan-Bernd Themann7a291082006-09-13 17:44:31 +02001627
Anton Blanchard13946f52011-10-14 05:31:06 +00001628 swqe->descriptors = 0;
Jan-Bernd Themann7a291082006-09-13 17:44:31 +02001629
Anton Blanchard13946f52011-10-14 05:31:06 +00001630 if (skb_is_gso(skb)) {
1631 swqe->tx_control |= EHEA_SWQE_TSO;
1632 swqe->mss = skb_shinfo(skb)->gso_size;
1633 /*
1634 * For TSO packets we only copy the headers into the
1635 * immediate area.
1636 */
1637 immediate_len = ETH_HLEN + ip_hdrlen(skb) + tcp_hdrlen(skb);
1638 }
Jan-Bernd Themann7a291082006-09-13 17:44:31 +02001639
Anton Blanchard13946f52011-10-14 05:31:06 +00001640 if (skb_is_gso(skb) || skb_data_size >= SWQE2_MAX_IMM) {
1641 skb_copy_from_linear_data(skb, imm_data, immediate_len);
1642 swqe->immediate_data_length = immediate_len;
1643
1644 if (skb_data_size > immediate_len) {
Jan-Bernd Themann7a291082006-09-13 17:44:31 +02001645 sg1entry->l_key = lkey;
Anton Blanchard13946f52011-10-14 05:31:06 +00001646 sg1entry->len = skb_data_size - immediate_len;
Thomas Klein44a5b3d2007-08-06 13:55:44 +02001647 sg1entry->vaddr =
Anton Blanchard13946f52011-10-14 05:31:06 +00001648 ehea_map_vaddr(skb->data + immediate_len);
Jan-Bernd Themann7a291082006-09-13 17:44:31 +02001649 swqe->descriptors++;
1650 }
1651 } else {
Arnaldo Carvalho de Melod626f622007-03-27 18:55:52 -03001652 skb_copy_from_linear_data(skb, imm_data, skb_data_size);
Jan-Bernd Themann7a291082006-09-13 17:44:31 +02001653 swqe->immediate_data_length = skb_data_size;
1654 }
1655}
1656
1657static inline void write_swqe2_data(struct sk_buff *skb, struct net_device *dev,
1658 struct ehea_swqe *swqe, u32 lkey)
1659{
1660 struct ehea_vsgentry *sg_list, *sg1entry, *sgentry;
1661 skb_frag_t *frag;
1662 int nfrags, sg1entry_contains_frag_data, i;
Jan-Bernd Themann7a291082006-09-13 17:44:31 +02001663
1664 nfrags = skb_shinfo(skb)->nr_frags;
1665 sg1entry = &swqe->u.immdata_desc.sg_entry;
Doug Maxey508d2b52008-01-31 20:20:49 -06001666 sg_list = (struct ehea_vsgentry *)&swqe->u.immdata_desc.sg_list;
Jan-Bernd Themann7a291082006-09-13 17:44:31 +02001667 sg1entry_contains_frag_data = 0;
1668
Anton Blanchard13946f52011-10-14 05:31:06 +00001669 write_swqe2_immediate(skb, swqe, lkey);
Jan-Bernd Themann7a291082006-09-13 17:44:31 +02001670
1671 /* write descriptors */
1672 if (nfrags > 0) {
1673 if (swqe->descriptors == 0) {
1674 /* sg1entry not yet used */
1675 frag = &skb_shinfo(skb)->frags[0];
1676
1677 /* copy sg1entry data */
1678 sg1entry->l_key = lkey;
1679 sg1entry->len = frag->size;
Thomas Klein44a5b3d2007-08-06 13:55:44 +02001680 sg1entry->vaddr =
Ian Campbell618c4a02011-10-10 01:11:38 +00001681 ehea_map_vaddr(skb_frag_address(frag));
Jan-Bernd Themann7a291082006-09-13 17:44:31 +02001682 swqe->descriptors++;
1683 sg1entry_contains_frag_data = 1;
1684 }
1685
1686 for (i = sg1entry_contains_frag_data; i < nfrags; i++) {
1687
1688 frag = &skb_shinfo(skb)->frags[i];
1689 sgentry = &sg_list[i - sg1entry_contains_frag_data];
1690
1691 sgentry->l_key = lkey;
1692 sgentry->len = frag->size;
Ian Campbell618c4a02011-10-10 01:11:38 +00001693 sgentry->vaddr = ehea_map_vaddr(skb_frag_address(frag));
Jan-Bernd Themann7a291082006-09-13 17:44:31 +02001694 swqe->descriptors++;
1695 }
1696 }
1697}
1698
1699static int ehea_broadcast_reg_helper(struct ehea_port *port, u32 hcallid)
1700{
1701 int ret = 0;
1702 u64 hret;
1703 u8 reg_type;
1704
1705 /* De/Register untagged packets */
1706 reg_type = EHEA_BCMC_BROADCAST | EHEA_BCMC_UNTAGGED;
1707 hret = ehea_h_reg_dereg_bcmc(port->adapter->handle,
1708 port->logical_port_id,
1709 reg_type, port->mac_addr, 0, hcallid);
1710 if (hret != H_SUCCESS) {
Joe Perches8c4877a2010-12-13 10:05:14 -08001711 pr_err("%sregistering bc address failed (tagged)\n",
1712 hcallid == H_REG_BCMC ? "" : "de");
Jan-Bernd Themann7a291082006-09-13 17:44:31 +02001713 ret = -EIO;
1714 goto out_herr;
1715 }
1716
1717 /* De/Register VLAN packets */
1718 reg_type = EHEA_BCMC_BROADCAST | EHEA_BCMC_VLANID_ALL;
1719 hret = ehea_h_reg_dereg_bcmc(port->adapter->handle,
1720 port->logical_port_id,
1721 reg_type, port->mac_addr, 0, hcallid);
1722 if (hret != H_SUCCESS) {
Joe Perches8c4877a2010-12-13 10:05:14 -08001723 pr_err("%sregistering bc address failed (vlan)\n",
1724 hcallid == H_REG_BCMC ? "" : "de");
Jan-Bernd Themann7a291082006-09-13 17:44:31 +02001725 ret = -EIO;
1726 }
1727out_herr:
1728 return ret;
1729}
1730
1731static int ehea_set_mac_addr(struct net_device *dev, void *sa)
1732{
1733 struct ehea_port *port = netdev_priv(dev);
1734 struct sockaddr *mac_addr = sa;
1735 struct hcp_ehea_port_cb0 *cb0;
1736 int ret;
1737 u64 hret;
1738
1739 if (!is_valid_ether_addr(mac_addr->sa_data)) {
1740 ret = -EADDRNOTAVAIL;
1741 goto out;
1742 }
1743
Thomas Klein3faf2692009-01-21 14:45:33 -08001744 cb0 = (void *)get_zeroed_page(GFP_KERNEL);
Jan-Bernd Themann7a291082006-09-13 17:44:31 +02001745 if (!cb0) {
Joe Perches8c4877a2010-12-13 10:05:14 -08001746 pr_err("no mem for cb0\n");
Jan-Bernd Themann7a291082006-09-13 17:44:31 +02001747 ret = -ENOMEM;
1748 goto out;
1749 }
1750
1751 memcpy(&(cb0->port_mac_addr), &(mac_addr->sa_data[0]), ETH_ALEN);
1752
1753 cb0->port_mac_addr = cb0->port_mac_addr >> 16;
1754
1755 hret = ehea_h_modify_ehea_port(port->adapter->handle,
1756 port->logical_port_id, H_PORT_CB0,
1757 EHEA_BMASK_SET(H_PORT_CB0_MAC, 1), cb0);
1758 if (hret != H_SUCCESS) {
1759 ret = -EIO;
1760 goto out_free;
1761 }
1762
1763 memcpy(dev->dev_addr, mac_addr->sa_data, dev->addr_len);
1764
1765 /* Deregister old MAC in pHYP */
Jan-Bernd Themann00aaea22008-06-09 15:17:37 +01001766 if (port->state == EHEA_PORT_UP) {
1767 ret = ehea_broadcast_reg_helper(port, H_DEREG_BCMC);
1768 if (ret)
1769 goto out_upregs;
1770 }
Jan-Bernd Themann7a291082006-09-13 17:44:31 +02001771
1772 port->mac_addr = cb0->port_mac_addr << 16;
1773
1774 /* Register new MAC in pHYP */
Jan-Bernd Themann00aaea22008-06-09 15:17:37 +01001775 if (port->state == EHEA_PORT_UP) {
1776 ret = ehea_broadcast_reg_helper(port, H_REG_BCMC);
1777 if (ret)
1778 goto out_upregs;
1779 }
Jan-Bernd Themann7a291082006-09-13 17:44:31 +02001780
1781 ret = 0;
Thomas Klein21eee2d2008-02-13 16:18:33 +01001782
1783out_upregs:
1784 ehea_update_bcmc_registrations();
Jan-Bernd Themann7a291082006-09-13 17:44:31 +02001785out_free:
Thomas Klein3faf2692009-01-21 14:45:33 -08001786 free_page((unsigned long)cb0);
Jan-Bernd Themann7a291082006-09-13 17:44:31 +02001787out:
1788 return ret;
1789}
1790
1791static void ehea_promiscuous_error(u64 hret, int enable)
1792{
Thomas Klein7674a582007-01-22 12:54:20 +01001793 if (hret == H_AUTHORITY)
Joe Perches8c4877a2010-12-13 10:05:14 -08001794 pr_info("Hypervisor denied %sabling promiscuous mode\n",
1795 enable == 1 ? "en" : "dis");
Thomas Klein7674a582007-01-22 12:54:20 +01001796 else
Joe Perches8c4877a2010-12-13 10:05:14 -08001797 pr_err("failed %sabling promiscuous mode\n",
1798 enable == 1 ? "en" : "dis");
Jan-Bernd Themann7a291082006-09-13 17:44:31 +02001799}
1800
1801static void ehea_promiscuous(struct net_device *dev, int enable)
1802{
1803 struct ehea_port *port = netdev_priv(dev);
1804 struct hcp_ehea_port_cb7 *cb7;
1805 u64 hret;
1806
Nicolas Kaiseraa3bc6c2010-10-07 13:14:50 +00001807 if (enable == port->promisc)
Jan-Bernd Themann7a291082006-09-13 17:44:31 +02001808 return;
1809
Thomas Klein3faf2692009-01-21 14:45:33 -08001810 cb7 = (void *)get_zeroed_page(GFP_ATOMIC);
Jan-Bernd Themann7a291082006-09-13 17:44:31 +02001811 if (!cb7) {
Joe Perches8c4877a2010-12-13 10:05:14 -08001812 pr_err("no mem for cb7\n");
Jan-Bernd Themann7a291082006-09-13 17:44:31 +02001813 goto out;
1814 }
1815
1816 /* Modify Pxs_DUCQPN in CB7 */
1817 cb7->def_uc_qpn = enable == 1 ? port->port_res[0].qp->fw_handle : 0;
1818
1819 hret = ehea_h_modify_ehea_port(port->adapter->handle,
1820 port->logical_port_id,
1821 H_PORT_CB7, H_PORT_CB7_DUCQPN, cb7);
1822 if (hret) {
1823 ehea_promiscuous_error(hret, enable);
1824 goto out;
1825 }
1826
1827 port->promisc = enable;
1828out:
Thomas Klein3faf2692009-01-21 14:45:33 -08001829 free_page((unsigned long)cb7);
Jan-Bernd Themann7a291082006-09-13 17:44:31 +02001830}
1831
1832static u64 ehea_multicast_reg_helper(struct ehea_port *port, u64 mc_mac_addr,
1833 u32 hcallid)
1834{
1835 u64 hret;
1836 u8 reg_type;
1837
1838 reg_type = EHEA_BCMC_SCOPE_ALL | EHEA_BCMC_MULTICAST
1839 | EHEA_BCMC_UNTAGGED;
1840
1841 hret = ehea_h_reg_dereg_bcmc(port->adapter->handle,
1842 port->logical_port_id,
1843 reg_type, mc_mac_addr, 0, hcallid);
1844 if (hret)
1845 goto out;
1846
1847 reg_type = EHEA_BCMC_SCOPE_ALL | EHEA_BCMC_MULTICAST
1848 | EHEA_BCMC_VLANID_ALL;
1849
1850 hret = ehea_h_reg_dereg_bcmc(port->adapter->handle,
1851 port->logical_port_id,
1852 reg_type, mc_mac_addr, 0, hcallid);
1853out:
1854 return hret;
1855}
1856
1857static int ehea_drop_multicast_list(struct net_device *dev)
1858{
1859 struct ehea_port *port = netdev_priv(dev);
1860 struct ehea_mc_list *mc_entry = port->mc_list;
1861 struct list_head *pos;
1862 struct list_head *temp;
1863 int ret = 0;
1864 u64 hret;
1865
1866 list_for_each_safe(pos, temp, &(port->mc_list->list)) {
1867 mc_entry = list_entry(pos, struct ehea_mc_list, list);
1868
1869 hret = ehea_multicast_reg_helper(port, mc_entry->macaddr,
1870 H_DEREG_BCMC);
1871 if (hret) {
Joe Perches8c4877a2010-12-13 10:05:14 -08001872 pr_err("failed deregistering mcast MAC\n");
Jan-Bernd Themann7a291082006-09-13 17:44:31 +02001873 ret = -EIO;
1874 }
1875
1876 list_del(pos);
1877 kfree(mc_entry);
1878 }
1879 return ret;
1880}
1881
1882static void ehea_allmulti(struct net_device *dev, int enable)
1883{
1884 struct ehea_port *port = netdev_priv(dev);
1885 u64 hret;
1886
1887 if (!port->allmulti) {
1888 if (enable) {
1889 /* Enable ALLMULTI */
1890 ehea_drop_multicast_list(dev);
1891 hret = ehea_multicast_reg_helper(port, 0, H_REG_BCMC);
1892 if (!hret)
1893 port->allmulti = 1;
1894 else
Joe Perches8c4877a2010-12-13 10:05:14 -08001895 netdev_err(dev,
1896 "failed enabling IFF_ALLMULTI\n");
Jan-Bernd Themann7a291082006-09-13 17:44:31 +02001897 }
1898 } else
1899 if (!enable) {
1900 /* Disable ALLMULTI */
1901 hret = ehea_multicast_reg_helper(port, 0, H_DEREG_BCMC);
1902 if (!hret)
1903 port->allmulti = 0;
1904 else
Joe Perches8c4877a2010-12-13 10:05:14 -08001905 netdev_err(dev,
1906 "failed disabling IFF_ALLMULTI\n");
Jan-Bernd Themann7a291082006-09-13 17:44:31 +02001907 }
1908}
1909
Doug Maxey508d2b52008-01-31 20:20:49 -06001910static void ehea_add_multicast_entry(struct ehea_port *port, u8 *mc_mac_addr)
Jan-Bernd Themann7a291082006-09-13 17:44:31 +02001911{
1912 struct ehea_mc_list *ehea_mcl_entry;
1913 u64 hret;
1914
Jan-Bernd Themann1e1675c2006-10-25 13:11:42 +02001915 ehea_mcl_entry = kzalloc(sizeof(*ehea_mcl_entry), GFP_ATOMIC);
Jan-Bernd Themann7a291082006-09-13 17:44:31 +02001916 if (!ehea_mcl_entry) {
Joe Perches8c4877a2010-12-13 10:05:14 -08001917 pr_err("no mem for mcl_entry\n");
Jan-Bernd Themann7a291082006-09-13 17:44:31 +02001918 return;
1919 }
1920
1921 INIT_LIST_HEAD(&ehea_mcl_entry->list);
1922
1923 memcpy(&ehea_mcl_entry->macaddr, mc_mac_addr, ETH_ALEN);
1924
1925 hret = ehea_multicast_reg_helper(port, ehea_mcl_entry->macaddr,
1926 H_REG_BCMC);
1927 if (!hret)
1928 list_add(&ehea_mcl_entry->list, &port->mc_list->list);
1929 else {
Joe Perches8c4877a2010-12-13 10:05:14 -08001930 pr_err("failed registering mcast MAC\n");
Jan-Bernd Themann7a291082006-09-13 17:44:31 +02001931 kfree(ehea_mcl_entry);
1932 }
1933}
1934
1935static void ehea_set_multicast_list(struct net_device *dev)
1936{
1937 struct ehea_port *port = netdev_priv(dev);
Jiri Pirko22bedad32010-04-01 21:22:57 +00001938 struct netdev_hw_addr *ha;
Jiri Pirko48e2f182010-02-22 09:22:26 +00001939 int ret;
Jan-Bernd Themann7a291082006-09-13 17:44:31 +02001940
Breno Leitaoa4910b72011-05-23 03:36:35 +00001941 if (port->promisc) {
Jan-Bernd Themann7a291082006-09-13 17:44:31 +02001942 ehea_promiscuous(dev, 1);
1943 return;
1944 }
1945 ehea_promiscuous(dev, 0);
1946
1947 if (dev->flags & IFF_ALLMULTI) {
1948 ehea_allmulti(dev, 1);
Thomas Klein21eee2d2008-02-13 16:18:33 +01001949 goto out;
Jan-Bernd Themann7a291082006-09-13 17:44:31 +02001950 }
1951 ehea_allmulti(dev, 0);
1952
Jiri Pirko4cd24ea2010-02-08 04:30:35 +00001953 if (!netdev_mc_empty(dev)) {
Jan-Bernd Themann7a291082006-09-13 17:44:31 +02001954 ret = ehea_drop_multicast_list(dev);
1955 if (ret) {
1956 /* Dropping the current multicast list failed.
1957 * Enabling ALL_MULTI is the best we can do.
1958 */
1959 ehea_allmulti(dev, 1);
1960 }
1961
Jiri Pirko4cd24ea2010-02-08 04:30:35 +00001962 if (netdev_mc_count(dev) > port->adapter->max_mc_mac) {
Joe Perches8c4877a2010-12-13 10:05:14 -08001963 pr_info("Mcast registration limit reached (0x%llx). Use ALLMULTI!\n",
1964 port->adapter->max_mc_mac);
Jan-Bernd Themann7a291082006-09-13 17:44:31 +02001965 goto out;
1966 }
1967
Jiri Pirko22bedad32010-04-01 21:22:57 +00001968 netdev_for_each_mc_addr(ha, dev)
1969 ehea_add_multicast_entry(port, ha->addr);
Doug Maxey508d2b52008-01-31 20:20:49 -06001970
Jan-Bernd Themann7a291082006-09-13 17:44:31 +02001971 }
1972out:
Thomas Klein21eee2d2008-02-13 16:18:33 +01001973 ehea_update_bcmc_registrations();
Jan-Bernd Themann7a291082006-09-13 17:44:31 +02001974}
1975
1976static int ehea_change_mtu(struct net_device *dev, int new_mtu)
1977{
1978 if ((new_mtu < 68) || (new_mtu > EHEA_MAX_PACKET_SIZE))
1979 return -EINVAL;
1980 dev->mtu = new_mtu;
1981 return 0;
1982}
1983
Anton Blanchardd695c332011-10-14 05:31:05 +00001984static void xmit_common(struct sk_buff *skb, struct ehea_swqe *swqe)
1985{
1986 swqe->tx_control |= EHEA_SWQE_IMM_DATA_PRESENT | EHEA_SWQE_CRC;
1987
1988 if (skb->protocol != htons(ETH_P_IP))
1989 return;
1990
1991 if (skb->ip_summed == CHECKSUM_PARTIAL)
1992 swqe->tx_control |= EHEA_SWQE_IP_CHECKSUM;
1993
1994 swqe->ip_start = skb_network_offset(skb);
1995 swqe->ip_end = swqe->ip_start + ip_hdrlen(skb) - 1;
1996
1997 switch (ip_hdr(skb)->protocol) {
1998 case IPPROTO_UDP:
1999 if (skb->ip_summed == CHECKSUM_PARTIAL)
2000 swqe->tx_control |= EHEA_SWQE_TCP_CHECKSUM;
2001
2002 swqe->tcp_offset = swqe->ip_end + 1 +
2003 offsetof(struct udphdr, check);
2004 swqe->tcp_end = skb->len - 1;
2005 break;
2006
2007 case IPPROTO_TCP:
2008 if (skb->ip_summed == CHECKSUM_PARTIAL)
2009 swqe->tx_control |= EHEA_SWQE_TCP_CHECKSUM;
2010
2011 swqe->tcp_offset = swqe->ip_end + 1 +
2012 offsetof(struct tcphdr, check);
2013 swqe->tcp_end = skb->len - 1;
2014 break;
2015 }
2016}
2017
Jan-Bernd Themann7a291082006-09-13 17:44:31 +02002018static void ehea_xmit2(struct sk_buff *skb, struct net_device *dev,
2019 struct ehea_swqe *swqe, u32 lkey)
2020{
Anton Blanchardd695c332011-10-14 05:31:05 +00002021 swqe->tx_control |= EHEA_SWQE_DESCRIPTORS_PRESENT;
Jan-Bernd Themannd1d25aa2007-07-02 13:00:46 +02002022
Anton Blanchardd695c332011-10-14 05:31:05 +00002023 xmit_common(skb, swqe);
Jan-Bernd Themann7a291082006-09-13 17:44:31 +02002024
2025 write_swqe2_data(skb, dev, swqe, lkey);
2026}
2027
2028static void ehea_xmit3(struct sk_buff *skb, struct net_device *dev,
2029 struct ehea_swqe *swqe)
2030{
Jan-Bernd Themann7a291082006-09-13 17:44:31 +02002031 u8 *imm_data = &swqe->u.immdata_nodesc.immediate_data[0];
Jan-Bernd Themann7a291082006-09-13 17:44:31 +02002032
Anton Blanchardd695c332011-10-14 05:31:05 +00002033 xmit_common(skb, swqe);
Jan-Bernd Themannd1d25aa2007-07-02 13:00:46 +02002034
Anton Blanchard30e2e902011-10-14 05:31:07 +00002035 if (!skb->data_len)
Arnaldo Carvalho de Melod626f622007-03-27 18:55:52 -03002036 skb_copy_from_linear_data(skb, imm_data, skb->len);
Anton Blanchard30e2e902011-10-14 05:31:07 +00002037 else
2038 skb_copy_bits(skb, 0, imm_data, skb->len);
Anton Blanchardd695c332011-10-14 05:31:05 +00002039
Jan-Bernd Themann7a291082006-09-13 17:44:31 +02002040 swqe->immediate_data_length = skb->len;
2041 dev_kfree_skb(skb);
2042}
2043
2044static int ehea_start_xmit(struct sk_buff *skb, struct net_device *dev)
2045{
2046 struct ehea_port *port = netdev_priv(dev);
2047 struct ehea_swqe *swqe;
Jan-Bernd Themann7a291082006-09-13 17:44:31 +02002048 u32 lkey;
2049 int swqe_index;
Jan-Bernd Themann18604c52007-02-28 18:34:10 +01002050 struct ehea_port_res *pr;
Anton Blanchardb9564462011-10-14 05:30:59 +00002051 struct netdev_queue *txq;
Jan-Bernd Themann7a291082006-09-13 17:44:31 +02002052
Anton Blanchardb9564462011-10-14 05:30:59 +00002053 pr = &port->port_res[skb_get_queue_mapping(skb)];
2054 txq = netdev_get_tx_queue(dev, skb_get_queue_mapping(skb));
Jan-Bernd Themann18604c52007-02-28 18:34:10 +01002055
Jan-Bernd Themann7a291082006-09-13 17:44:31 +02002056 swqe = ehea_get_swqe(pr->qp, &swqe_index);
2057 memset(swqe, 0, SWQE_HEADER_SIZE);
2058 atomic_dec(&pr->swqe_avail);
2059
Eric Dumazete5ccd962010-10-26 19:21:07 +00002060 if (vlan_tx_tag_present(skb)) {
2061 swqe->tx_control |= EHEA_SWQE_VLAN_INSERT;
2062 swqe->vlan_tag = vlan_tx_tag_get(skb);
2063 }
2064
Breno Leitaoce45b872010-10-27 08:45:14 +00002065 pr->tx_packets++;
2066 pr->tx_bytes += skb->len;
2067
Jan-Bernd Themann7a291082006-09-13 17:44:31 +02002068 if (skb->len <= SWQE3_MAX_IMM) {
2069 u32 sig_iv = port->sig_comp_iv;
2070 u32 swqe_num = pr->swqe_id_counter;
2071 ehea_xmit3(skb, dev, swqe);
2072 swqe->wr_id = EHEA_BMASK_SET(EHEA_WR_ID_TYPE, EHEA_SWQE3_TYPE)
2073 | EHEA_BMASK_SET(EHEA_WR_ID_COUNT, swqe_num);
2074 if (pr->swqe_ll_count >= (sig_iv - 1)) {
2075 swqe->wr_id |= EHEA_BMASK_SET(EHEA_WR_ID_REFILL,
2076 sig_iv);
2077 swqe->tx_control |= EHEA_SWQE_SIGNALLED_COMPLETION;
2078 pr->swqe_ll_count = 0;
2079 } else
2080 pr->swqe_ll_count += 1;
2081 } else {
2082 swqe->wr_id =
2083 EHEA_BMASK_SET(EHEA_WR_ID_TYPE, EHEA_SWQE2_TYPE)
2084 | EHEA_BMASK_SET(EHEA_WR_ID_COUNT, pr->swqe_id_counter)
Jan-Bernd Themannacbddb52007-03-23 17:18:53 +01002085 | EHEA_BMASK_SET(EHEA_WR_ID_REFILL, 1)
Jan-Bernd Themann7a291082006-09-13 17:44:31 +02002086 | EHEA_BMASK_SET(EHEA_WR_ID_INDEX, pr->sq_skba.index);
2087 pr->sq_skba.arr[pr->sq_skba.index] = skb;
2088
2089 pr->sq_skba.index++;
2090 pr->sq_skba.index &= (pr->sq_skba.len - 1);
2091
2092 lkey = pr->send_mr.lkey;
2093 ehea_xmit2(skb, dev, swqe, lkey);
Jan-Bernd Themannacbddb52007-03-23 17:18:53 +01002094 swqe->tx_control |= EHEA_SWQE_SIGNALLED_COMPLETION;
Jan-Bernd Themann7a291082006-09-13 17:44:31 +02002095 }
2096 pr->swqe_id_counter += 1;
2097
Joe Perches8c4877a2010-12-13 10:05:14 -08002098 netif_info(port, tx_queued, dev,
2099 "post swqe on QP %d\n", pr->qp->init_attr.qp_nr);
2100 if (netif_msg_tx_queued(port))
Jan-Bernd Themannbff0a552006-10-05 16:53:14 +02002101 ehea_dump(swqe, 512, "swqe");
Jan-Bernd Themann7a291082006-09-13 17:44:31 +02002102
Jan-Bernd Themann2c694482007-10-01 16:33:18 +02002103 if (unlikely(test_bit(__EHEA_STOP_XFER, &ehea_driver_flags))) {
Anton Blanchardb9564462011-10-14 05:30:59 +00002104 netif_tx_stop_queue(txq);
Jan-Bernd Themann2c694482007-10-01 16:33:18 +02002105 swqe->tx_control |= EHEA_SWQE_PURGE;
2106 }
Thomas Klein44c82152007-07-11 16:32:00 +02002107
Jan-Bernd Themann7a291082006-09-13 17:44:31 +02002108 ehea_post_swqe(pr->qp, swqe);
Jan-Bernd Themann7a291082006-09-13 17:44:31 +02002109
2110 if (unlikely(atomic_read(&pr->swqe_avail) <= 1)) {
Anton Blanchardb9564462011-10-14 05:30:59 +00002111 pr->p_stats.queue_stopped++;
2112 netif_tx_stop_queue(txq);
Jan-Bernd Themann7a291082006-09-13 17:44:31 +02002113 }
Jan-Bernd Themann2c694482007-10-01 16:33:18 +02002114
Jan-Bernd Themann7a291082006-09-13 17:44:31 +02002115 return NETDEV_TX_OK;
2116}
2117
Jan-Bernd Themann7a291082006-09-13 17:44:31 +02002118static void ehea_vlan_rx_add_vid(struct net_device *dev, unsigned short vid)
2119{
2120 struct ehea_port *port = netdev_priv(dev);
2121 struct ehea_adapter *adapter = port->adapter;
2122 struct hcp_ehea_port_cb1 *cb1;
2123 int index;
2124 u64 hret;
2125
Thomas Klein3faf2692009-01-21 14:45:33 -08002126 cb1 = (void *)get_zeroed_page(GFP_KERNEL);
Jan-Bernd Themann7a291082006-09-13 17:44:31 +02002127 if (!cb1) {
Joe Perches8c4877a2010-12-13 10:05:14 -08002128 pr_err("no mem for cb1\n");
Jan-Bernd Themann7a291082006-09-13 17:44:31 +02002129 goto out;
2130 }
2131
2132 hret = ehea_h_query_ehea_port(adapter->handle, port->logical_port_id,
2133 H_PORT_CB1, H_PORT_CB1_ALL, cb1);
2134 if (hret != H_SUCCESS) {
Joe Perches8c4877a2010-12-13 10:05:14 -08002135 pr_err("query_ehea_port failed\n");
Jan-Bernd Themann7a291082006-09-13 17:44:31 +02002136 goto out;
2137 }
2138
2139 index = (vid / 64);
Thomas Kleindec590c2007-06-06 20:53:16 +02002140 cb1->vlan_filter[index] |= ((u64)(0x8000000000000000 >> (vid & 0x3F)));
Jan-Bernd Themann7a291082006-09-13 17:44:31 +02002141
2142 hret = ehea_h_modify_ehea_port(adapter->handle, port->logical_port_id,
2143 H_PORT_CB1, H_PORT_CB1_ALL, cb1);
2144 if (hret != H_SUCCESS)
Joe Perches8c4877a2010-12-13 10:05:14 -08002145 pr_err("modify_ehea_port failed\n");
Jan-Bernd Themann7a291082006-09-13 17:44:31 +02002146out:
Thomas Klein3faf2692009-01-21 14:45:33 -08002147 free_page((unsigned long)cb1);
Jan-Bernd Themann7a291082006-09-13 17:44:31 +02002148 return;
2149}
2150
2151static void ehea_vlan_rx_kill_vid(struct net_device *dev, unsigned short vid)
2152{
2153 struct ehea_port *port = netdev_priv(dev);
2154 struct ehea_adapter *adapter = port->adapter;
2155 struct hcp_ehea_port_cb1 *cb1;
2156 int index;
2157 u64 hret;
2158
Thomas Klein3faf2692009-01-21 14:45:33 -08002159 cb1 = (void *)get_zeroed_page(GFP_KERNEL);
Jan-Bernd Themann7a291082006-09-13 17:44:31 +02002160 if (!cb1) {
Joe Perches8c4877a2010-12-13 10:05:14 -08002161 pr_err("no mem for cb1\n");
Jan-Bernd Themann7a291082006-09-13 17:44:31 +02002162 goto out;
2163 }
2164
2165 hret = ehea_h_query_ehea_port(adapter->handle, port->logical_port_id,
2166 H_PORT_CB1, H_PORT_CB1_ALL, cb1);
2167 if (hret != H_SUCCESS) {
Joe Perches8c4877a2010-12-13 10:05:14 -08002168 pr_err("query_ehea_port failed\n");
Jan-Bernd Themann7a291082006-09-13 17:44:31 +02002169 goto out;
2170 }
2171
2172 index = (vid / 64);
Thomas Kleindec590c2007-06-06 20:53:16 +02002173 cb1->vlan_filter[index] &= ~((u64)(0x8000000000000000 >> (vid & 0x3F)));
Jan-Bernd Themann7a291082006-09-13 17:44:31 +02002174
2175 hret = ehea_h_modify_ehea_port(adapter->handle, port->logical_port_id,
2176 H_PORT_CB1, H_PORT_CB1_ALL, cb1);
2177 if (hret != H_SUCCESS)
Joe Perches8c4877a2010-12-13 10:05:14 -08002178 pr_err("modify_ehea_port failed\n");
Jan-Bernd Themann7a291082006-09-13 17:44:31 +02002179out:
Thomas Klein3faf2692009-01-21 14:45:33 -08002180 free_page((unsigned long)cb1);
Jan-Bernd Themann7a291082006-09-13 17:44:31 +02002181}
2182
2183int ehea_activate_qp(struct ehea_adapter *adapter, struct ehea_qp *qp)
2184{
2185 int ret = -EIO;
2186 u64 hret;
2187 u16 dummy16 = 0;
2188 u64 dummy64 = 0;
Doug Maxey508d2b52008-01-31 20:20:49 -06002189 struct hcp_modify_qp_cb0 *cb0;
Jan-Bernd Themann7a291082006-09-13 17:44:31 +02002190
Thomas Klein3faf2692009-01-21 14:45:33 -08002191 cb0 = (void *)get_zeroed_page(GFP_KERNEL);
Jan-Bernd Themann7a291082006-09-13 17:44:31 +02002192 if (!cb0) {
2193 ret = -ENOMEM;
2194 goto out;
2195 }
2196
2197 hret = ehea_h_query_ehea_qp(adapter->handle, 0, qp->fw_handle,
2198 EHEA_BMASK_SET(H_QPCB0_ALL, 0xFFFF), cb0);
2199 if (hret != H_SUCCESS) {
Joe Perches8c4877a2010-12-13 10:05:14 -08002200 pr_err("query_ehea_qp failed (1)\n");
Jan-Bernd Themann7a291082006-09-13 17:44:31 +02002201 goto out;
2202 }
2203
2204 cb0->qp_ctl_reg = H_QP_CR_STATE_INITIALIZED;
2205 hret = ehea_h_modify_ehea_qp(adapter->handle, 0, qp->fw_handle,
2206 EHEA_BMASK_SET(H_QPCB0_QP_CTL_REG, 1), cb0,
2207 &dummy64, &dummy64, &dummy16, &dummy16);
2208 if (hret != H_SUCCESS) {
Joe Perches8c4877a2010-12-13 10:05:14 -08002209 pr_err("modify_ehea_qp failed (1)\n");
Jan-Bernd Themann7a291082006-09-13 17:44:31 +02002210 goto out;
2211 }
2212
2213 hret = ehea_h_query_ehea_qp(adapter->handle, 0, qp->fw_handle,
2214 EHEA_BMASK_SET(H_QPCB0_ALL, 0xFFFF), cb0);
2215 if (hret != H_SUCCESS) {
Joe Perches8c4877a2010-12-13 10:05:14 -08002216 pr_err("query_ehea_qp failed (2)\n");
Jan-Bernd Themann7a291082006-09-13 17:44:31 +02002217 goto out;
2218 }
2219
2220 cb0->qp_ctl_reg = H_QP_CR_ENABLED | H_QP_CR_STATE_INITIALIZED;
2221 hret = ehea_h_modify_ehea_qp(adapter->handle, 0, qp->fw_handle,
2222 EHEA_BMASK_SET(H_QPCB0_QP_CTL_REG, 1), cb0,
2223 &dummy64, &dummy64, &dummy16, &dummy16);
2224 if (hret != H_SUCCESS) {
Joe Perches8c4877a2010-12-13 10:05:14 -08002225 pr_err("modify_ehea_qp failed (2)\n");
Jan-Bernd Themann7a291082006-09-13 17:44:31 +02002226 goto out;
2227 }
2228
2229 hret = ehea_h_query_ehea_qp(adapter->handle, 0, qp->fw_handle,
2230 EHEA_BMASK_SET(H_QPCB0_ALL, 0xFFFF), cb0);
2231 if (hret != H_SUCCESS) {
Joe Perches8c4877a2010-12-13 10:05:14 -08002232 pr_err("query_ehea_qp failed (3)\n");
Jan-Bernd Themann7a291082006-09-13 17:44:31 +02002233 goto out;
2234 }
2235
2236 cb0->qp_ctl_reg = H_QP_CR_ENABLED | H_QP_CR_STATE_RDY2SND;
2237 hret = ehea_h_modify_ehea_qp(adapter->handle, 0, qp->fw_handle,
2238 EHEA_BMASK_SET(H_QPCB0_QP_CTL_REG, 1), cb0,
2239 &dummy64, &dummy64, &dummy16, &dummy16);
2240 if (hret != H_SUCCESS) {
Joe Perches8c4877a2010-12-13 10:05:14 -08002241 pr_err("modify_ehea_qp failed (3)\n");
Jan-Bernd Themann7a291082006-09-13 17:44:31 +02002242 goto out;
2243 }
2244
2245 hret = ehea_h_query_ehea_qp(adapter->handle, 0, qp->fw_handle,
2246 EHEA_BMASK_SET(H_QPCB0_ALL, 0xFFFF), cb0);
2247 if (hret != H_SUCCESS) {
Joe Perches8c4877a2010-12-13 10:05:14 -08002248 pr_err("query_ehea_qp failed (4)\n");
Jan-Bernd Themann7a291082006-09-13 17:44:31 +02002249 goto out;
2250 }
2251
2252 ret = 0;
2253out:
Thomas Klein3faf2692009-01-21 14:45:33 -08002254 free_page((unsigned long)cb0);
Jan-Bernd Themann7a291082006-09-13 17:44:31 +02002255 return ret;
2256}
2257
Anton Blanchard723f28e2011-10-14 05:31:01 +00002258static int ehea_port_res_setup(struct ehea_port *port, int def_qps)
Jan-Bernd Themann7a291082006-09-13 17:44:31 +02002259{
2260 int ret, i;
2261 struct port_res_cfg pr_cfg, pr_cfg_small_rx;
2262 enum ehea_eq_type eq_type = EHEA_EQ;
2263
2264 port->qp_eq = ehea_create_eq(port->adapter, eq_type,
2265 EHEA_MAX_ENTRIES_EQ, 1);
2266 if (!port->qp_eq) {
2267 ret = -EINVAL;
Joe Perches8c4877a2010-12-13 10:05:14 -08002268 pr_err("ehea_create_eq failed (qp_eq)\n");
Jan-Bernd Themann7a291082006-09-13 17:44:31 +02002269 goto out_kill_eq;
2270 }
2271
2272 pr_cfg.max_entries_rcq = rq1_entries + rq2_entries + rq3_entries;
Jan-Bernd Themann18604c52007-02-28 18:34:10 +01002273 pr_cfg.max_entries_scq = sq_entries * 2;
Jan-Bernd Themann7a291082006-09-13 17:44:31 +02002274 pr_cfg.max_entries_sq = sq_entries;
2275 pr_cfg.max_entries_rq1 = rq1_entries;
2276 pr_cfg.max_entries_rq2 = rq2_entries;
2277 pr_cfg.max_entries_rq3 = rq3_entries;
2278
2279 pr_cfg_small_rx.max_entries_rcq = 1;
2280 pr_cfg_small_rx.max_entries_scq = sq_entries;
2281 pr_cfg_small_rx.max_entries_sq = sq_entries;
2282 pr_cfg_small_rx.max_entries_rq1 = 1;
2283 pr_cfg_small_rx.max_entries_rq2 = 1;
2284 pr_cfg_small_rx.max_entries_rq3 = 1;
2285
2286 for (i = 0; i < def_qps; i++) {
2287 ret = ehea_init_port_res(port, &port->port_res[i], &pr_cfg, i);
2288 if (ret)
2289 goto out_clean_pr;
2290 }
Anton Blanchard723f28e2011-10-14 05:31:01 +00002291 for (i = def_qps; i < def_qps; i++) {
Jan-Bernd Themann7a291082006-09-13 17:44:31 +02002292 ret = ehea_init_port_res(port, &port->port_res[i],
2293 &pr_cfg_small_rx, i);
2294 if (ret)
2295 goto out_clean_pr;
2296 }
2297
2298 return 0;
2299
2300out_clean_pr:
2301 while (--i >= 0)
2302 ehea_clean_portres(port, &port->port_res[i]);
2303
2304out_kill_eq:
2305 ehea_destroy_eq(port->qp_eq);
2306 return ret;
2307}
2308
2309static int ehea_clean_all_portres(struct ehea_port *port)
2310{
2311 int ret = 0;
2312 int i;
2313
Anton Blanchard723f28e2011-10-14 05:31:01 +00002314 for (i = 0; i < port->num_def_qps; i++)
Jan-Bernd Themann7a291082006-09-13 17:44:31 +02002315 ret |= ehea_clean_portres(port, &port->port_res[i]);
2316
2317 ret |= ehea_destroy_eq(port->qp_eq);
2318
2319 return ret;
2320}
2321
Thomas Klein35cf2e22007-08-06 13:55:14 +02002322static void ehea_remove_adapter_mr(struct ehea_adapter *adapter)
Thomas Klein1211bb62007-04-26 11:56:43 +02002323{
Thomas Klein35cf2e22007-08-06 13:55:14 +02002324 if (adapter->active_ports)
2325 return;
Thomas Klein1211bb62007-04-26 11:56:43 +02002326
2327 ehea_rem_mr(&adapter->mr);
2328}
2329
Thomas Klein35cf2e22007-08-06 13:55:14 +02002330static int ehea_add_adapter_mr(struct ehea_adapter *adapter)
Thomas Klein1211bb62007-04-26 11:56:43 +02002331{
Thomas Klein35cf2e22007-08-06 13:55:14 +02002332 if (adapter->active_ports)
2333 return 0;
Thomas Klein1211bb62007-04-26 11:56:43 +02002334
2335 return ehea_reg_kernel_mr(adapter, &adapter->mr);
2336}
2337
Jan-Bernd Themann7a291082006-09-13 17:44:31 +02002338static int ehea_up(struct net_device *dev)
2339{
2340 int ret, i;
2341 struct ehea_port *port = netdev_priv(dev);
Jan-Bernd Themann7a291082006-09-13 17:44:31 +02002342
2343 if (port->state == EHEA_PORT_UP)
2344 return 0;
2345
Anton Blanchard723f28e2011-10-14 05:31:01 +00002346 ret = ehea_port_res_setup(port, port->num_def_qps);
Jan-Bernd Themann7a291082006-09-13 17:44:31 +02002347 if (ret) {
Joe Perches8c4877a2010-12-13 10:05:14 -08002348 netdev_err(dev, "port_res_failed\n");
Jan-Bernd Themann7a291082006-09-13 17:44:31 +02002349 goto out;
2350 }
2351
2352 /* Set default QP for this port */
2353 ret = ehea_configure_port(port);
2354 if (ret) {
Joe Perches8c4877a2010-12-13 10:05:14 -08002355 netdev_err(dev, "ehea_configure_port failed. ret:%d\n", ret);
Jan-Bernd Themann7a291082006-09-13 17:44:31 +02002356 goto out_clean_pr;
2357 }
2358
Jan-Bernd Themann7a291082006-09-13 17:44:31 +02002359 ret = ehea_reg_interrupts(dev);
2360 if (ret) {
Joe Perches8c4877a2010-12-13 10:05:14 -08002361 netdev_err(dev, "reg_interrupts failed. ret:%d\n", ret);
Thomas Kleinf9e29222007-07-18 17:34:09 +02002362 goto out_clean_pr;
Jan-Bernd Themann7a291082006-09-13 17:44:31 +02002363 }
2364
Anton Blanchard723f28e2011-10-14 05:31:01 +00002365 for (i = 0; i < port->num_def_qps; i++) {
Jan-Bernd Themann7a291082006-09-13 17:44:31 +02002366 ret = ehea_activate_qp(port->adapter, port->port_res[i].qp);
2367 if (ret) {
Joe Perches8c4877a2010-12-13 10:05:14 -08002368 netdev_err(dev, "activate_qp failed\n");
Jan-Bernd Themann7a291082006-09-13 17:44:31 +02002369 goto out_free_irqs;
2370 }
2371 }
2372
Doug Maxey508d2b52008-01-31 20:20:49 -06002373 for (i = 0; i < port->num_def_qps; i++) {
Jan-Bernd Themann7a291082006-09-13 17:44:31 +02002374 ret = ehea_fill_port_res(&port->port_res[i]);
2375 if (ret) {
Joe Perches8c4877a2010-12-13 10:05:14 -08002376 netdev_err(dev, "out_free_irqs\n");
Jan-Bernd Themann7a291082006-09-13 17:44:31 +02002377 goto out_free_irqs;
2378 }
2379 }
2380
Thomas Klein21eee2d2008-02-13 16:18:33 +01002381 ret = ehea_broadcast_reg_helper(port, H_REG_BCMC);
2382 if (ret) {
2383 ret = -EIO;
2384 goto out_free_irqs;
2385 }
2386
Jan-Bernd Themann7a291082006-09-13 17:44:31 +02002387 port->state = EHEA_PORT_UP;
Thomas Klein21eee2d2008-02-13 16:18:33 +01002388
2389 ret = 0;
Jan-Bernd Themann7a291082006-09-13 17:44:31 +02002390 goto out;
2391
2392out_free_irqs:
2393 ehea_free_interrupts(dev);
2394
Jan-Bernd Themann7a291082006-09-13 17:44:31 +02002395out_clean_pr:
2396 ehea_clean_all_portres(port);
2397out:
Thomas Klein44c82152007-07-11 16:32:00 +02002398 if (ret)
Joe Perches8c4877a2010-12-13 10:05:14 -08002399 netdev_info(dev, "Failed starting. ret=%i\n", ret);
Thomas Klein44c82152007-07-11 16:32:00 +02002400
Thomas Klein21eee2d2008-02-13 16:18:33 +01002401 ehea_update_bcmc_registrations();
Thomas Klein21eee2d2008-02-13 16:18:33 +01002402 ehea_update_firmware_handles();
Thomas Klein21eee2d2008-02-13 16:18:33 +01002403
Jan-Bernd Themann7a291082006-09-13 17:44:31 +02002404 return ret;
2405}
2406
Stephen Hemmingerbea33482007-10-03 16:41:36 -07002407static void port_napi_disable(struct ehea_port *port)
2408{
2409 int i;
2410
Anton Blanchard723f28e2011-10-14 05:31:01 +00002411 for (i = 0; i < port->num_def_qps; i++)
Stephen Hemmingerbea33482007-10-03 16:41:36 -07002412 napi_disable(&port->port_res[i].napi);
2413}
2414
2415static void port_napi_enable(struct ehea_port *port)
2416{
2417 int i;
2418
Anton Blanchard723f28e2011-10-14 05:31:01 +00002419 for (i = 0; i < port->num_def_qps; i++)
Stephen Hemmingerbea33482007-10-03 16:41:36 -07002420 napi_enable(&port->port_res[i].napi);
2421}
2422
Jan-Bernd Themann7a291082006-09-13 17:44:31 +02002423static int ehea_open(struct net_device *dev)
2424{
2425 int ret;
2426 struct ehea_port *port = netdev_priv(dev);
2427
Daniel Walkera5af6ad2008-03-28 14:41:28 -07002428 mutex_lock(&port->port_lock);
Jan-Bernd Themann7a291082006-09-13 17:44:31 +02002429
Joe Perches8c4877a2010-12-13 10:05:14 -08002430 netif_info(port, ifup, dev, "enabling port\n");
Jan-Bernd Themann7a291082006-09-13 17:44:31 +02002431
2432 ret = ehea_up(dev);
Stephen Hemmingerbea33482007-10-03 16:41:36 -07002433 if (!ret) {
2434 port_napi_enable(port);
Anton Blanchardb9564462011-10-14 05:30:59 +00002435 netif_tx_start_all_queues(dev);
Stephen Hemmingerbea33482007-10-03 16:41:36 -07002436 }
Jan-Bernd Themann7a291082006-09-13 17:44:31 +02002437
Daniel Walkera5af6ad2008-03-28 14:41:28 -07002438 mutex_unlock(&port->port_lock);
brenohl@br.ibm.com2aefcad2011-09-26 10:11:03 +00002439 schedule_delayed_work(&port->stats_work, msecs_to_jiffies(1000));
Jan-Bernd Themann7a291082006-09-13 17:44:31 +02002440
2441 return ret;
2442}
2443
2444static int ehea_down(struct net_device *dev)
2445{
Stephen Hemmingerbea33482007-10-03 16:41:36 -07002446 int ret;
Jan-Bernd Themann7a291082006-09-13 17:44:31 +02002447 struct ehea_port *port = netdev_priv(dev);
2448
2449 if (port->state == EHEA_PORT_DOWN)
2450 return 0;
2451
2452 ehea_drop_multicast_list(dev);
Thomas Klein21eee2d2008-02-13 16:18:33 +01002453 ehea_broadcast_reg_helper(port, H_DEREG_BCMC);
2454
Jan-Bernd Themann7a291082006-09-13 17:44:31 +02002455 ehea_free_interrupts(dev);
2456
Jan-Bernd Themann7a291082006-09-13 17:44:31 +02002457 port->state = EHEA_PORT_DOWN;
Thomas Klein44c82152007-07-11 16:32:00 +02002458
Thomas Klein21eee2d2008-02-13 16:18:33 +01002459 ehea_update_bcmc_registrations();
Thomas Klein21eee2d2008-02-13 16:18:33 +01002460
Thomas Klein44c82152007-07-11 16:32:00 +02002461 ret = ehea_clean_all_portres(port);
2462 if (ret)
Joe Perches8c4877a2010-12-13 10:05:14 -08002463 netdev_info(dev, "Failed freeing resources. ret=%i\n", ret);
Thomas Klein44c82152007-07-11 16:32:00 +02002464
Thomas Klein21eee2d2008-02-13 16:18:33 +01002465 ehea_update_firmware_handles();
Thomas Klein21eee2d2008-02-13 16:18:33 +01002466
Jan-Bernd Themann7a291082006-09-13 17:44:31 +02002467 return ret;
2468}
2469
2470static int ehea_stop(struct net_device *dev)
2471{
2472 int ret;
2473 struct ehea_port *port = netdev_priv(dev);
2474
Joe Perches8c4877a2010-12-13 10:05:14 -08002475 netif_info(port, ifdown, dev, "disabling port\n");
Jan-Bernd Themann7a291082006-09-13 17:44:31 +02002476
Jan-Bernd Themann2f69ae02008-07-03 15:18:51 +01002477 set_bit(__EHEA_DISABLE_PORT_RESET, &port->flags);
David S. Miller4bb073c2008-06-12 02:22:02 -07002478 cancel_work_sync(&port->reset_task);
brenohl@br.ibm.com2aefcad2011-09-26 10:11:03 +00002479 cancel_delayed_work_sync(&port->stats_work);
Daniel Walkera5af6ad2008-03-28 14:41:28 -07002480 mutex_lock(&port->port_lock);
Anton Blanchardb9564462011-10-14 05:30:59 +00002481 netif_tx_stop_all_queues(dev);
Jan-Bernd Themann0173b792007-10-24 11:53:34 +02002482 port_napi_disable(port);
Jan-Bernd Themann7a291082006-09-13 17:44:31 +02002483 ret = ehea_down(dev);
Daniel Walkera5af6ad2008-03-28 14:41:28 -07002484 mutex_unlock(&port->port_lock);
Jan-Bernd Themann2f69ae02008-07-03 15:18:51 +01002485 clear_bit(__EHEA_DISABLE_PORT_RESET, &port->flags);
Jan-Bernd Themann7a291082006-09-13 17:44:31 +02002486 return ret;
2487}
2488
Andrew Morton22559c52008-04-18 13:50:39 -07002489static void ehea_purge_sq(struct ehea_qp *orig_qp)
Jan-Bernd Themann2c694482007-10-01 16:33:18 +02002490{
2491 struct ehea_qp qp = *orig_qp;
2492 struct ehea_qp_init_attr *init_attr = &qp.init_attr;
2493 struct ehea_swqe *swqe;
2494 int wqe_index;
2495 int i;
2496
2497 for (i = 0; i < init_attr->act_nr_send_wqes; i++) {
2498 swqe = ehea_get_swqe(&qp, &wqe_index);
2499 swqe->tx_control |= EHEA_SWQE_PURGE;
2500 }
2501}
2502
Andrew Morton22559c52008-04-18 13:50:39 -07002503static void ehea_flush_sq(struct ehea_port *port)
Thomas Klein44fb3122008-04-04 15:04:53 +02002504{
2505 int i;
2506
Anton Blanchard723f28e2011-10-14 05:31:01 +00002507 for (i = 0; i < port->num_def_qps; i++) {
Thomas Klein44fb3122008-04-04 15:04:53 +02002508 struct ehea_port_res *pr = &port->port_res[i];
2509 int swqe_max = pr->sq_skba_size - 2 - pr->swqe_ll_count;
Breno Leitao5b27d422010-10-05 13:16:22 +00002510 int ret;
2511
2512 ret = wait_event_timeout(port->swqe_avail_wq,
2513 atomic_read(&pr->swqe_avail) >= swqe_max,
2514 msecs_to_jiffies(100));
2515
2516 if (!ret) {
Joe Perches8c4877a2010-12-13 10:05:14 -08002517 pr_err("WARNING: sq not flushed completely\n");
Breno Leitao5b27d422010-10-05 13:16:22 +00002518 break;
Thomas Klein44fb3122008-04-04 15:04:53 +02002519 }
2520 }
2521}
2522
Jan-Bernd Themann2c694482007-10-01 16:33:18 +02002523int ehea_stop_qps(struct net_device *dev)
2524{
2525 struct ehea_port *port = netdev_priv(dev);
2526 struct ehea_adapter *adapter = port->adapter;
Doug Maxey508d2b52008-01-31 20:20:49 -06002527 struct hcp_modify_qp_cb0 *cb0;
Jan-Bernd Themann2c694482007-10-01 16:33:18 +02002528 int ret = -EIO;
2529 int dret;
2530 int i;
2531 u64 hret;
2532 u64 dummy64 = 0;
2533 u16 dummy16 = 0;
2534
Thomas Klein3faf2692009-01-21 14:45:33 -08002535 cb0 = (void *)get_zeroed_page(GFP_KERNEL);
Jan-Bernd Themann2c694482007-10-01 16:33:18 +02002536 if (!cb0) {
2537 ret = -ENOMEM;
2538 goto out;
2539 }
2540
Anton Blanchard723f28e2011-10-14 05:31:01 +00002541 for (i = 0; i < (port->num_def_qps); i++) {
Jan-Bernd Themann2c694482007-10-01 16:33:18 +02002542 struct ehea_port_res *pr = &port->port_res[i];
2543 struct ehea_qp *qp = pr->qp;
2544
2545 /* Purge send queue */
2546 ehea_purge_sq(qp);
2547
2548 /* Disable queue pair */
2549 hret = ehea_h_query_ehea_qp(adapter->handle, 0, qp->fw_handle,
2550 EHEA_BMASK_SET(H_QPCB0_ALL, 0xFFFF),
2551 cb0);
2552 if (hret != H_SUCCESS) {
Joe Perches8c4877a2010-12-13 10:05:14 -08002553 pr_err("query_ehea_qp failed (1)\n");
Jan-Bernd Themann2c694482007-10-01 16:33:18 +02002554 goto out;
2555 }
2556
2557 cb0->qp_ctl_reg = (cb0->qp_ctl_reg & H_QP_CR_RES_STATE) << 8;
2558 cb0->qp_ctl_reg &= ~H_QP_CR_ENABLED;
2559
2560 hret = ehea_h_modify_ehea_qp(adapter->handle, 0, qp->fw_handle,
2561 EHEA_BMASK_SET(H_QPCB0_QP_CTL_REG,
2562 1), cb0, &dummy64,
2563 &dummy64, &dummy16, &dummy16);
2564 if (hret != H_SUCCESS) {
Joe Perches8c4877a2010-12-13 10:05:14 -08002565 pr_err("modify_ehea_qp failed (1)\n");
Jan-Bernd Themann2c694482007-10-01 16:33:18 +02002566 goto out;
2567 }
2568
2569 hret = ehea_h_query_ehea_qp(adapter->handle, 0, qp->fw_handle,
2570 EHEA_BMASK_SET(H_QPCB0_ALL, 0xFFFF),
2571 cb0);
2572 if (hret != H_SUCCESS) {
Joe Perches8c4877a2010-12-13 10:05:14 -08002573 pr_err("query_ehea_qp failed (2)\n");
Jan-Bernd Themann2c694482007-10-01 16:33:18 +02002574 goto out;
2575 }
2576
2577 /* deregister shared memory regions */
2578 dret = ehea_rem_smrs(pr);
2579 if (dret) {
Joe Perches8c4877a2010-12-13 10:05:14 -08002580 pr_err("unreg shared memory region failed\n");
Jan-Bernd Themann2c694482007-10-01 16:33:18 +02002581 goto out;
2582 }
2583 }
2584
2585 ret = 0;
2586out:
Thomas Klein3faf2692009-01-21 14:45:33 -08002587 free_page((unsigned long)cb0);
Jan-Bernd Themann2c694482007-10-01 16:33:18 +02002588
2589 return ret;
2590}
2591
Doug Maxey508d2b52008-01-31 20:20:49 -06002592void ehea_update_rqs(struct ehea_qp *orig_qp, struct ehea_port_res *pr)
Jan-Bernd Themann2c694482007-10-01 16:33:18 +02002593{
2594 struct ehea_qp qp = *orig_qp;
2595 struct ehea_qp_init_attr *init_attr = &qp.init_attr;
2596 struct ehea_rwqe *rwqe;
2597 struct sk_buff **skba_rq2 = pr->rq2_skba.arr;
2598 struct sk_buff **skba_rq3 = pr->rq3_skba.arr;
2599 struct sk_buff *skb;
2600 u32 lkey = pr->recv_mr.lkey;
2601
2602
2603 int i;
2604 int index;
2605
2606 for (i = 0; i < init_attr->act_nr_rwqes_rq2 + 1; i++) {
2607 rwqe = ehea_get_next_rwqe(&qp, 2);
2608 rwqe->sg_list[0].l_key = lkey;
2609 index = EHEA_BMASK_GET(EHEA_WR_ID_INDEX, rwqe->wr_id);
2610 skb = skba_rq2[index];
2611 if (skb)
2612 rwqe->sg_list[0].vaddr = ehea_map_vaddr(skb->data);
2613 }
2614
2615 for (i = 0; i < init_attr->act_nr_rwqes_rq3 + 1; i++) {
2616 rwqe = ehea_get_next_rwqe(&qp, 3);
2617 rwqe->sg_list[0].l_key = lkey;
2618 index = EHEA_BMASK_GET(EHEA_WR_ID_INDEX, rwqe->wr_id);
2619 skb = skba_rq3[index];
2620 if (skb)
2621 rwqe->sg_list[0].vaddr = ehea_map_vaddr(skb->data);
2622 }
2623}
2624
2625int ehea_restart_qps(struct net_device *dev)
2626{
2627 struct ehea_port *port = netdev_priv(dev);
2628 struct ehea_adapter *adapter = port->adapter;
2629 int ret = 0;
2630 int i;
2631
Doug Maxey508d2b52008-01-31 20:20:49 -06002632 struct hcp_modify_qp_cb0 *cb0;
Jan-Bernd Themann2c694482007-10-01 16:33:18 +02002633 u64 hret;
2634 u64 dummy64 = 0;
2635 u16 dummy16 = 0;
2636
Thomas Klein3faf2692009-01-21 14:45:33 -08002637 cb0 = (void *)get_zeroed_page(GFP_KERNEL);
Jan-Bernd Themann2c694482007-10-01 16:33:18 +02002638 if (!cb0) {
2639 ret = -ENOMEM;
2640 goto out;
2641 }
2642
Anton Blanchard723f28e2011-10-14 05:31:01 +00002643 for (i = 0; i < (port->num_def_qps); i++) {
Jan-Bernd Themann2c694482007-10-01 16:33:18 +02002644 struct ehea_port_res *pr = &port->port_res[i];
2645 struct ehea_qp *qp = pr->qp;
2646
2647 ret = ehea_gen_smrs(pr);
2648 if (ret) {
Joe Perches8c4877a2010-12-13 10:05:14 -08002649 netdev_err(dev, "creation of shared memory regions failed\n");
Jan-Bernd Themann2c694482007-10-01 16:33:18 +02002650 goto out;
2651 }
2652
2653 ehea_update_rqs(qp, pr);
2654
2655 /* Enable queue pair */
2656 hret = ehea_h_query_ehea_qp(adapter->handle, 0, qp->fw_handle,
2657 EHEA_BMASK_SET(H_QPCB0_ALL, 0xFFFF),
2658 cb0);
2659 if (hret != H_SUCCESS) {
Joe Perches8c4877a2010-12-13 10:05:14 -08002660 netdev_err(dev, "query_ehea_qp failed (1)\n");
Jan-Bernd Themann2c694482007-10-01 16:33:18 +02002661 goto out;
2662 }
2663
2664 cb0->qp_ctl_reg = (cb0->qp_ctl_reg & H_QP_CR_RES_STATE) << 8;
2665 cb0->qp_ctl_reg |= H_QP_CR_ENABLED;
2666
2667 hret = ehea_h_modify_ehea_qp(adapter->handle, 0, qp->fw_handle,
2668 EHEA_BMASK_SET(H_QPCB0_QP_CTL_REG,
2669 1), cb0, &dummy64,
2670 &dummy64, &dummy16, &dummy16);
2671 if (hret != H_SUCCESS) {
Joe Perches8c4877a2010-12-13 10:05:14 -08002672 netdev_err(dev, "modify_ehea_qp failed (1)\n");
Jan-Bernd Themann2c694482007-10-01 16:33:18 +02002673 goto out;
2674 }
2675
2676 hret = ehea_h_query_ehea_qp(adapter->handle, 0, qp->fw_handle,
2677 EHEA_BMASK_SET(H_QPCB0_ALL, 0xFFFF),
2678 cb0);
2679 if (hret != H_SUCCESS) {
Joe Perches8c4877a2010-12-13 10:05:14 -08002680 netdev_err(dev, "query_ehea_qp failed (2)\n");
Jan-Bernd Themann2c694482007-10-01 16:33:18 +02002681 goto out;
2682 }
2683
2684 /* refill entire queue */
2685 ehea_refill_rq1(pr, pr->rq1_skba.index, 0);
2686 ehea_refill_rq2(pr, 0);
2687 ehea_refill_rq3(pr, 0);
2688 }
2689out:
Thomas Klein3faf2692009-01-21 14:45:33 -08002690 free_page((unsigned long)cb0);
Jan-Bernd Themann2c694482007-10-01 16:33:18 +02002691
2692 return ret;
2693}
2694
David Howellsc4028952006-11-22 14:57:56 +00002695static void ehea_reset_port(struct work_struct *work)
Jan-Bernd Themann7a291082006-09-13 17:44:31 +02002696{
2697 int ret;
David Howellsc4028952006-11-22 14:57:56 +00002698 struct ehea_port *port =
2699 container_of(work, struct ehea_port, reset_task);
2700 struct net_device *dev = port->netdev;
Jan-Bernd Themann7a291082006-09-13 17:44:31 +02002701
Jan-Bernd Themann099473c2010-06-15 05:35:42 +00002702 mutex_lock(&dlpar_mem_lock);
Jan-Bernd Themann7a291082006-09-13 17:44:31 +02002703 port->resets++;
Daniel Walkera5af6ad2008-03-28 14:41:28 -07002704 mutex_lock(&port->port_lock);
Anton Blanchardb9564462011-10-14 05:30:59 +00002705 netif_tx_disable(dev);
Stephen Hemmingerbea33482007-10-03 16:41:36 -07002706
2707 port_napi_disable(port);
Jan-Bernd Themann7a291082006-09-13 17:44:31 +02002708
Thomas Klein44c82152007-07-11 16:32:00 +02002709 ehea_down(dev);
Jan-Bernd Themann7a291082006-09-13 17:44:31 +02002710
2711 ret = ehea_up(dev);
Thomas Klein44c82152007-07-11 16:32:00 +02002712 if (ret)
Jan-Bernd Themann7a291082006-09-13 17:44:31 +02002713 goto out;
Jan-Bernd Themann7a291082006-09-13 17:44:31 +02002714
Jan-Bernd Themann2c694482007-10-01 16:33:18 +02002715 ehea_set_multicast_list(dev);
2716
Joe Perches8c4877a2010-12-13 10:05:14 -08002717 netif_info(port, timer, dev, "reset successful\n");
Jan-Bernd Themann7a291082006-09-13 17:44:31 +02002718
Stephen Hemmingerbea33482007-10-03 16:41:36 -07002719 port_napi_enable(port);
2720
Anton Blanchardb9564462011-10-14 05:30:59 +00002721 netif_tx_wake_all_queues(dev);
Jan-Bernd Themann7a291082006-09-13 17:44:31 +02002722out:
Daniel Walkera5af6ad2008-03-28 14:41:28 -07002723 mutex_unlock(&port->port_lock);
Jan-Bernd Themann099473c2010-06-15 05:35:42 +00002724 mutex_unlock(&dlpar_mem_lock);
Jan-Bernd Themann7a291082006-09-13 17:44:31 +02002725}
2726
Tejun Heo3d6b8922010-12-12 16:45:14 +01002727static void ehea_rereg_mrs(void)
Thomas Klein44c82152007-07-11 16:32:00 +02002728{
2729 int ret, i;
2730 struct ehea_adapter *adapter;
2731
Joe Perches8c4877a2010-12-13 10:05:14 -08002732 pr_info("LPAR memory changed - re-initializing driver\n");
Thomas Klein44c82152007-07-11 16:32:00 +02002733
2734 list_for_each_entry(adapter, &adapter_list, list)
2735 if (adapter->active_ports) {
2736 /* Shutdown all ports */
2737 for (i = 0; i < EHEA_MAX_PORTS; i++) {
2738 struct ehea_port *port = adapter->port[i];
Daniel Walkera5af6ad2008-03-28 14:41:28 -07002739 struct net_device *dev;
Thomas Klein44c82152007-07-11 16:32:00 +02002740
Daniel Walkera5af6ad2008-03-28 14:41:28 -07002741 if (!port)
2742 continue;
Thomas Klein44c82152007-07-11 16:32:00 +02002743
Daniel Walkera5af6ad2008-03-28 14:41:28 -07002744 dev = port->netdev;
2745
2746 if (dev->flags & IFF_UP) {
2747 mutex_lock(&port->port_lock);
Anton Blanchardb9564462011-10-14 05:30:59 +00002748 netif_tx_disable(dev);
David S. Millerdf39e8b2008-04-14 02:30:23 -07002749 ehea_flush_sq(port);
Daniel Walkera5af6ad2008-03-28 14:41:28 -07002750 ret = ehea_stop_qps(dev);
2751 if (ret) {
2752 mutex_unlock(&port->port_lock);
2753 goto out;
Thomas Klein44c82152007-07-11 16:32:00 +02002754 }
Daniel Walkera5af6ad2008-03-28 14:41:28 -07002755 port_napi_disable(port);
2756 mutex_unlock(&port->port_lock);
Thomas Klein44c82152007-07-11 16:32:00 +02002757 }
Andre Detsch2928db42010-08-17 05:49:12 +00002758 reset_sq_restart_flag(port);
Thomas Klein44c82152007-07-11 16:32:00 +02002759 }
2760
2761 /* Unregister old memory region */
2762 ret = ehea_rem_mr(&adapter->mr);
2763 if (ret) {
Joe Perches8c4877a2010-12-13 10:05:14 -08002764 pr_err("unregister MR failed - driver inoperable!\n");
Thomas Klein44c82152007-07-11 16:32:00 +02002765 goto out;
2766 }
2767 }
2768
Thomas Klein44c82152007-07-11 16:32:00 +02002769 clear_bit(__EHEA_STOP_XFER, &ehea_driver_flags);
2770
2771 list_for_each_entry(adapter, &adapter_list, list)
2772 if (adapter->active_ports) {
2773 /* Register new memory region */
2774 ret = ehea_reg_kernel_mr(adapter, &adapter->mr);
2775 if (ret) {
Joe Perches8c4877a2010-12-13 10:05:14 -08002776 pr_err("register MR failed - driver inoperable!\n");
Thomas Klein44c82152007-07-11 16:32:00 +02002777 goto out;
2778 }
2779
2780 /* Restart all ports */
2781 for (i = 0; i < EHEA_MAX_PORTS; i++) {
2782 struct ehea_port *port = adapter->port[i];
2783
2784 if (port) {
2785 struct net_device *dev = port->netdev;
2786
2787 if (dev->flags & IFF_UP) {
Daniel Walkera5af6ad2008-03-28 14:41:28 -07002788 mutex_lock(&port->port_lock);
Jan-Bernd Themann2c694482007-10-01 16:33:18 +02002789 ret = ehea_restart_qps(dev);
Breno Leitao6f4d6dc2011-04-19 09:39:22 +00002790 if (!ret) {
2791 check_sqs(port);
2792 port_napi_enable(port);
Anton Blanchardb9564462011-10-14 05:30:59 +00002793 netif_tx_wake_all_queues(dev);
Breno Leitao6f4d6dc2011-04-19 09:39:22 +00002794 } else {
2795 netdev_err(dev, "Unable to restart QPS\n");
2796 }
Daniel Walkera5af6ad2008-03-28 14:41:28 -07002797 mutex_unlock(&port->port_lock);
Thomas Klein44c82152007-07-11 16:32:00 +02002798 }
2799 }
2800 }
2801 }
Joe Perches8c4877a2010-12-13 10:05:14 -08002802 pr_info("re-initializing driver complete\n");
Thomas Klein44c82152007-07-11 16:32:00 +02002803out:
2804 return;
2805}
2806
Jan-Bernd Themann7a291082006-09-13 17:44:31 +02002807static void ehea_tx_watchdog(struct net_device *dev)
2808{
2809 struct ehea_port *port = netdev_priv(dev);
2810
Jan-Bernd Themann2c694482007-10-01 16:33:18 +02002811 if (netif_carrier_ok(dev) &&
2812 !test_bit(__EHEA_STOP_XFER, &ehea_driver_flags))
Jan-Bernd Themann2f69ae02008-07-03 15:18:51 +01002813 ehea_schedule_port_reset(port);
Jan-Bernd Themann7a291082006-09-13 17:44:31 +02002814}
2815
2816int ehea_sense_adapter_attr(struct ehea_adapter *adapter)
2817{
2818 struct hcp_query_ehea *cb;
2819 u64 hret;
2820 int ret;
2821
Thomas Klein3faf2692009-01-21 14:45:33 -08002822 cb = (void *)get_zeroed_page(GFP_KERNEL);
Jan-Bernd Themann7a291082006-09-13 17:44:31 +02002823 if (!cb) {
2824 ret = -ENOMEM;
2825 goto out;
2826 }
2827
2828 hret = ehea_h_query_ehea(adapter->handle, cb);
2829
2830 if (hret != H_SUCCESS) {
2831 ret = -EIO;
2832 goto out_herr;
2833 }
2834
Jan-Bernd Themann7a291082006-09-13 17:44:31 +02002835 adapter->max_mc_mac = cb->max_mc_mac - 1;
2836 ret = 0;
2837
2838out_herr:
Thomas Klein3faf2692009-01-21 14:45:33 -08002839 free_page((unsigned long)cb);
Jan-Bernd Themann7a291082006-09-13 17:44:31 +02002840out:
2841 return ret;
2842}
2843
Jan-Bernd Themann1acf2312007-02-28 18:34:02 +01002844int ehea_get_jumboframe_status(struct ehea_port *port, int *jumbo)
2845{
2846 struct hcp_ehea_port_cb4 *cb4;
2847 u64 hret;
2848 int ret = 0;
2849
2850 *jumbo = 0;
2851
2852 /* (Try to) enable *jumbo frames */
Thomas Klein3faf2692009-01-21 14:45:33 -08002853 cb4 = (void *)get_zeroed_page(GFP_KERNEL);
Jan-Bernd Themann1acf2312007-02-28 18:34:02 +01002854 if (!cb4) {
Joe Perches8c4877a2010-12-13 10:05:14 -08002855 pr_err("no mem for cb4\n");
Jan-Bernd Themann1acf2312007-02-28 18:34:02 +01002856 ret = -ENOMEM;
2857 goto out;
2858 } else {
2859 hret = ehea_h_query_ehea_port(port->adapter->handle,
2860 port->logical_port_id,
2861 H_PORT_CB4,
2862 H_PORT_CB4_JUMBO, cb4);
2863 if (hret == H_SUCCESS) {
2864 if (cb4->jumbo_frame)
2865 *jumbo = 1;
2866 else {
2867 cb4->jumbo_frame = 1;
2868 hret = ehea_h_modify_ehea_port(port->adapter->
2869 handle,
2870 port->
2871 logical_port_id,
2872 H_PORT_CB4,
2873 H_PORT_CB4_JUMBO,
2874 cb4);
2875 if (hret == H_SUCCESS)
2876 *jumbo = 1;
2877 }
2878 } else
2879 ret = -EINVAL;
2880
Thomas Klein3faf2692009-01-21 14:45:33 -08002881 free_page((unsigned long)cb4);
Jan-Bernd Themann1acf2312007-02-28 18:34:02 +01002882 }
2883out:
2884 return ret;
2885}
2886
2887static ssize_t ehea_show_port_id(struct device *dev,
2888 struct device_attribute *attr, char *buf)
2889{
2890 struct ehea_port *port = container_of(dev, struct ehea_port, ofdev.dev);
Jan-Bernd Themanna8e34fd2007-08-22 16:20:58 +02002891 return sprintf(buf, "%d", port->logical_port_id);
Jan-Bernd Themann1acf2312007-02-28 18:34:02 +01002892}
2893
2894static DEVICE_ATTR(log_port_id, S_IRUSR | S_IRGRP | S_IROTH, ehea_show_port_id,
2895 NULL);
2896
2897static void __devinit logical_port_release(struct device *dev)
2898{
2899 struct ehea_port *port = container_of(dev, struct ehea_port, ofdev.dev);
Grant Likely61c7a082010-04-13 16:12:29 -07002900 of_node_put(port->ofdev.dev.of_node);
Jan-Bernd Themann1acf2312007-02-28 18:34:02 +01002901}
2902
2903static struct device *ehea_register_port(struct ehea_port *port,
2904 struct device_node *dn)
Jan-Bernd Themann7a291082006-09-13 17:44:31 +02002905{
2906 int ret;
Jan-Bernd Themann1acf2312007-02-28 18:34:02 +01002907
Grant Likely61c7a082010-04-13 16:12:29 -07002908 port->ofdev.dev.of_node = of_node_get(dn);
Joachim Fenkes6b08f3a2007-09-26 19:45:51 +10002909 port->ofdev.dev.parent = &port->adapter->ofdev->dev;
Thomas Kleind1dea382007-04-26 11:56:13 +02002910 port->ofdev.dev.bus = &ibmebus_bus_type;
Jan-Bernd Themann1acf2312007-02-28 18:34:02 +01002911
Kay Sieversdb1d7bf2009-01-26 21:12:58 -08002912 dev_set_name(&port->ofdev.dev, "port%d", port_name_cnt++);
Jan-Bernd Themann1acf2312007-02-28 18:34:02 +01002913 port->ofdev.dev.release = logical_port_release;
2914
2915 ret = of_device_register(&port->ofdev);
2916 if (ret) {
Joe Perches8c4877a2010-12-13 10:05:14 -08002917 pr_err("failed to register device. ret=%d\n", ret);
Jan-Bernd Themann1acf2312007-02-28 18:34:02 +01002918 goto out;
2919 }
2920
2921 ret = device_create_file(&port->ofdev.dev, &dev_attr_log_port_id);
Jan-Bernd Themannd1d25aa2007-07-02 13:00:46 +02002922 if (ret) {
Joe Perches8c4877a2010-12-13 10:05:14 -08002923 pr_err("failed to register attributes, ret=%d\n", ret);
Jan-Bernd Themann1acf2312007-02-28 18:34:02 +01002924 goto out_unreg_of_dev;
2925 }
Jan-Bernd Themanne542aa62007-03-22 17:50:24 +01002926
Jan-Bernd Themann1acf2312007-02-28 18:34:02 +01002927 return &port->ofdev.dev;
2928
2929out_unreg_of_dev:
2930 of_device_unregister(&port->ofdev);
2931out:
2932 return NULL;
2933}
2934
2935static void ehea_unregister_port(struct ehea_port *port)
2936{
2937 device_remove_file(&port->ofdev.dev, &dev_attr_log_port_id);
2938 of_device_unregister(&port->ofdev);
2939}
2940
Thomas Klein086c1b22009-01-21 14:43:59 -08002941static const struct net_device_ops ehea_netdev_ops = {
2942 .ndo_open = ehea_open,
2943 .ndo_stop = ehea_stop,
2944 .ndo_start_xmit = ehea_start_xmit,
2945#ifdef CONFIG_NET_POLL_CONTROLLER
2946 .ndo_poll_controller = ehea_netpoll,
2947#endif
Anton Blanchard239c5622011-10-14 05:31:09 +00002948 .ndo_get_stats64 = ehea_get_stats64,
Thomas Klein086c1b22009-01-21 14:43:59 -08002949 .ndo_set_mac_address = ehea_set_mac_addr,
Ben Hutchings240c1022009-07-09 17:54:35 +00002950 .ndo_validate_addr = eth_validate_addr,
Jiri Pirkoafc4b132011-08-16 06:29:01 +00002951 .ndo_set_rx_mode = ehea_set_multicast_list,
Thomas Klein086c1b22009-01-21 14:43:59 -08002952 .ndo_change_mtu = ehea_change_mtu,
Thomas Klein086c1b22009-01-21 14:43:59 -08002953 .ndo_vlan_rx_add_vid = ehea_vlan_rx_add_vid,
Alexander Beregalov32e8f9a2009-04-14 15:18:00 -07002954 .ndo_vlan_rx_kill_vid = ehea_vlan_rx_kill_vid,
2955 .ndo_tx_timeout = ehea_tx_watchdog,
Thomas Klein086c1b22009-01-21 14:43:59 -08002956};
2957
Jan-Bernd Themann1acf2312007-02-28 18:34:02 +01002958struct ehea_port *ehea_setup_single_port(struct ehea_adapter *adapter,
2959 u32 logical_port_id,
2960 struct device_node *dn)
2961{
2962 int ret;
2963 struct net_device *dev;
2964 struct ehea_port *port;
2965 struct device *port_dev;
2966 int jumbo;
2967
2968 /* allocate memory for the port structures */
Anton Blanchardb9564462011-10-14 05:30:59 +00002969 dev = alloc_etherdev_mq(sizeof(struct ehea_port), EHEA_MAX_PORT_RES);
Jan-Bernd Themann1acf2312007-02-28 18:34:02 +01002970
2971 if (!dev) {
Joe Perches8c4877a2010-12-13 10:05:14 -08002972 pr_err("no mem for net_device\n");
Jan-Bernd Themann1acf2312007-02-28 18:34:02 +01002973 ret = -ENOMEM;
2974 goto out_err;
2975 }
2976
2977 port = netdev_priv(dev);
Jan-Bernd Themann7a291082006-09-13 17:44:31 +02002978
Daniel Walkera5af6ad2008-03-28 14:41:28 -07002979 mutex_init(&port->port_lock);
Jan-Bernd Themann7a291082006-09-13 17:44:31 +02002980 port->state = EHEA_PORT_DOWN;
2981 port->sig_comp_iv = sq_entries / 10;
2982
Jan-Bernd Themann1acf2312007-02-28 18:34:02 +01002983 port->adapter = adapter;
2984 port->netdev = dev;
2985 port->logical_port_id = logical_port_id;
Jan-Bernd Themann7a291082006-09-13 17:44:31 +02002986
Jan-Bernd Themann1acf2312007-02-28 18:34:02 +01002987 port->msg_enable = netif_msg_init(msg_level, EHEA_MSG_DEFAULT);
Jan-Bernd Themann7a291082006-09-13 17:44:31 +02002988
2989 port->mc_list = kzalloc(sizeof(struct ehea_mc_list), GFP_KERNEL);
2990 if (!port->mc_list) {
2991 ret = -ENOMEM;
Jan-Bernd Themann1acf2312007-02-28 18:34:02 +01002992 goto out_free_ethdev;
Jan-Bernd Themann7a291082006-09-13 17:44:31 +02002993 }
2994
2995 INIT_LIST_HEAD(&port->mc_list->list);
2996
Jan-Bernd Themann7a291082006-09-13 17:44:31 +02002997 ret = ehea_sense_port_attr(port);
2998 if (ret)
Jan-Bernd Themann1acf2312007-02-28 18:34:02 +01002999 goto out_free_mc_list;
Jan-Bernd Themann7a291082006-09-13 17:44:31 +02003000
Anton Blanchardb9564462011-10-14 05:30:59 +00003001 netif_set_real_num_rx_queues(dev, port->num_def_qps);
Anton Blanchard723f28e2011-10-14 05:31:01 +00003002 netif_set_real_num_tx_queues(dev, port->num_def_qps);
Anton Blanchardb9564462011-10-14 05:30:59 +00003003
Jan-Bernd Themann1acf2312007-02-28 18:34:02 +01003004 port_dev = ehea_register_port(port, dn);
3005 if (!port_dev)
3006 goto out_free_mc_list;
Thomas Klein9c750b72007-01-29 18:44:01 +01003007
Jan-Bernd Themann1acf2312007-02-28 18:34:02 +01003008 SET_NETDEV_DEV(dev, port_dev);
Jan-Bernd Themann7a291082006-09-13 17:44:31 +02003009
3010 /* initialize net_device structure */
Jan-Bernd Themann7a291082006-09-13 17:44:31 +02003011 memcpy(dev->dev_addr, &port->mac_addr, ETH_ALEN);
3012
Thomas Klein086c1b22009-01-21 14:43:59 -08003013 dev->netdev_ops = &ehea_netdev_ops;
3014 ehea_set_ethtool_ops(dev);
3015
Anton Blanchardd695c332011-10-14 05:31:05 +00003016 dev->hw_features = NETIF_F_SG | NETIF_F_TSO
Michał Mirosławf4786a92011-04-17 00:15:47 +00003017 | NETIF_F_IP_CSUM | NETIF_F_HW_VLAN_TX | NETIF_F_LRO;
Jan-Bernd Themann7a291082006-09-13 17:44:31 +02003018 dev->features = NETIF_F_SG | NETIF_F_FRAGLIST | NETIF_F_TSO
Thomas Kleindc01c442008-03-19 13:55:43 +01003019 | NETIF_F_HIGHDMA | NETIF_F_IP_CSUM | NETIF_F_HW_VLAN_TX
Jan-Bernd Themann7a291082006-09-13 17:44:31 +02003020 | NETIF_F_HW_VLAN_RX | NETIF_F_HW_VLAN_FILTER
Anton Blanchard3f7947b2011-10-14 05:30:58 +00003021 | NETIF_F_RXCSUM;
Anton Blanchard076f2032011-10-14 05:31:03 +00003022 dev->vlan_features = NETIF_F_SG | NETIF_F_TSO | NETIF_F_HIGHDMA |
3023 NETIF_F_IP_CSUM;
Jan-Bernd Themann7a291082006-09-13 17:44:31 +02003024 dev->watchdog_timeo = EHEA_WATCH_DOG_TIMEOUT;
3025
David Howellsc4028952006-11-22 14:57:56 +00003026 INIT_WORK(&port->reset_task, ehea_reset_port);
brenohl@br.ibm.com2aefcad2011-09-26 10:11:03 +00003027 INIT_DELAYED_WORK(&port->stats_work, ehea_update_stats);
Jan-Bernd Themann7a291082006-09-13 17:44:31 +02003028
Anton Blanchard21ccc792011-05-10 16:17:10 +00003029 init_waitqueue_head(&port->swqe_avail_wq);
3030 init_waitqueue_head(&port->restart_wq);
3031
brenohl@br.ibm.com2aefcad2011-09-26 10:11:03 +00003032 memset(&port->stats, 0, sizeof(struct net_device_stats));
Jan-Bernd Themann7a291082006-09-13 17:44:31 +02003033 ret = register_netdev(dev);
3034 if (ret) {
Joe Perches8c4877a2010-12-13 10:05:14 -08003035 pr_err("register_netdev failed. ret=%d\n", ret);
Thomas Klein21eee2d2008-02-13 16:18:33 +01003036 goto out_unreg_port;
Jan-Bernd Themann7a291082006-09-13 17:44:31 +02003037 }
3038
Jan-Bernd Themann1acf2312007-02-28 18:34:02 +01003039 ret = ehea_get_jumboframe_status(port, &jumbo);
Jan-Bernd Themanne542aa62007-03-22 17:50:24 +01003040 if (ret)
Joe Perches8c4877a2010-12-13 10:05:14 -08003041 netdev_err(dev, "failed determining jumbo frame status\n");
Jan-Bernd Themann1acf2312007-02-28 18:34:02 +01003042
Joe Perches8c4877a2010-12-13 10:05:14 -08003043 netdev_info(dev, "Jumbo frames are %sabled\n",
3044 jumbo == 1 ? "en" : "dis");
Thomas Klein9c750b72007-01-29 18:44:01 +01003045
Thomas Klein44c82152007-07-11 16:32:00 +02003046 adapter->active_ports++;
3047
Jan-Bernd Themann1acf2312007-02-28 18:34:02 +01003048 return port;
Jan-Bernd Themann7a291082006-09-13 17:44:31 +02003049
Jan-Bernd Themann1acf2312007-02-28 18:34:02 +01003050out_unreg_port:
3051 ehea_unregister_port(port);
3052
3053out_free_mc_list:
Jan-Bernd Themann7a291082006-09-13 17:44:31 +02003054 kfree(port->mc_list);
Jan-Bernd Themann1acf2312007-02-28 18:34:02 +01003055
3056out_free_ethdev:
3057 free_netdev(dev);
3058
3059out_err:
Joe Perches8c4877a2010-12-13 10:05:14 -08003060 pr_err("setting up logical port with id=%d failed, ret=%d\n",
3061 logical_port_id, ret);
Jan-Bernd Themann1acf2312007-02-28 18:34:02 +01003062 return NULL;
3063}
3064
3065static void ehea_shutdown_single_port(struct ehea_port *port)
3066{
Brian King7fb1c2a2008-05-14 09:48:25 -05003067 struct ehea_adapter *adapter = port->adapter;
Tejun Heof5c35cc2010-12-12 16:45:14 +01003068
3069 cancel_work_sync(&port->reset_task);
brenohl@br.ibm.com2aefcad2011-09-26 10:11:03 +00003070 cancel_delayed_work_sync(&port->stats_work);
Jan-Bernd Themann1acf2312007-02-28 18:34:02 +01003071 unregister_netdev(port->netdev);
3072 ehea_unregister_port(port);
3073 kfree(port->mc_list);
3074 free_netdev(port->netdev);
Brian King7fb1c2a2008-05-14 09:48:25 -05003075 adapter->active_ports--;
Jan-Bernd Themann7a291082006-09-13 17:44:31 +02003076}
3077
3078static int ehea_setup_ports(struct ehea_adapter *adapter)
3079{
Jan-Bernd Themann1acf2312007-02-28 18:34:02 +01003080 struct device_node *lhea_dn;
3081 struct device_node *eth_dn = NULL;
Jan-Bernd Themannd1d25aa2007-07-02 13:00:46 +02003082
Stephen Rothwell9f9a3b82007-05-01 13:51:32 +10003083 const u32 *dn_log_port_id;
Jan-Bernd Themann1acf2312007-02-28 18:34:02 +01003084 int i = 0;
Jan-Bernd Themann7a291082006-09-13 17:44:31 +02003085
Grant Likely61c7a082010-04-13 16:12:29 -07003086 lhea_dn = adapter->ofdev->dev.of_node;
Jan-Bernd Themann1eef4e02007-03-22 17:49:42 +01003087 while ((eth_dn = of_get_next_child(lhea_dn, eth_dn))) {
Jan-Bernd Themanne542aa62007-03-22 17:50:24 +01003088
Stephen Rothwell40cd3a42007-05-01 13:54:02 +10003089 dn_log_port_id = of_get_property(eth_dn, "ibm,hea-port-no",
Jan-Bernd Themannd1d25aa2007-07-02 13:00:46 +02003090 NULL);
Jan-Bernd Themann1acf2312007-02-28 18:34:02 +01003091 if (!dn_log_port_id) {
Joe Perches8c4877a2010-12-13 10:05:14 -08003092 pr_err("bad device node: eth_dn name=%s\n",
3093 eth_dn->full_name);
Jan-Bernd Themann1acf2312007-02-28 18:34:02 +01003094 continue;
Jan-Bernd Themann7a291082006-09-13 17:44:31 +02003095 }
3096
Thomas Klein1211bb62007-04-26 11:56:43 +02003097 if (ehea_add_adapter_mr(adapter)) {
Joe Perches8c4877a2010-12-13 10:05:14 -08003098 pr_err("creating MR failed\n");
Thomas Klein1211bb62007-04-26 11:56:43 +02003099 of_node_put(eth_dn);
3100 return -EIO;
3101 }
3102
Jan-Bernd Themann1acf2312007-02-28 18:34:02 +01003103 adapter->port[i] = ehea_setup_single_port(adapter,
3104 *dn_log_port_id,
3105 eth_dn);
3106 if (adapter->port[i])
Joe Perches8c4877a2010-12-13 10:05:14 -08003107 netdev_info(adapter->port[i]->netdev,
3108 "logical port id #%d\n", *dn_log_port_id);
Thomas Klein1211bb62007-04-26 11:56:43 +02003109 else
3110 ehea_remove_adapter_mr(adapter);
3111
Jan-Bernd Themann1acf2312007-02-28 18:34:02 +01003112 i++;
Joe Perchesee289b62010-05-17 22:47:34 -07003113 }
Thomas Klein1211bb62007-04-26 11:56:43 +02003114 return 0;
Jan-Bernd Themann1acf2312007-02-28 18:34:02 +01003115}
3116
Jan-Bernd Themanne542aa62007-03-22 17:50:24 +01003117static struct device_node *ehea_get_eth_dn(struct ehea_adapter *adapter,
3118 u32 logical_port_id)
Jan-Bernd Themann1acf2312007-02-28 18:34:02 +01003119{
3120 struct device_node *lhea_dn;
3121 struct device_node *eth_dn = NULL;
Stephen Rothwell9f9a3b82007-05-01 13:51:32 +10003122 const u32 *dn_log_port_id;
Jan-Bernd Themann1acf2312007-02-28 18:34:02 +01003123
Grant Likely61c7a082010-04-13 16:12:29 -07003124 lhea_dn = adapter->ofdev->dev.of_node;
Jan-Bernd Themann1eef4e02007-03-22 17:49:42 +01003125 while ((eth_dn = of_get_next_child(lhea_dn, eth_dn))) {
Jan-Bernd Themanne542aa62007-03-22 17:50:24 +01003126
Stephen Rothwell40cd3a42007-05-01 13:54:02 +10003127 dn_log_port_id = of_get_property(eth_dn, "ibm,hea-port-no",
Jan-Bernd Themannd1d25aa2007-07-02 13:00:46 +02003128 NULL);
Jan-Bernd Themann1acf2312007-02-28 18:34:02 +01003129 if (dn_log_port_id)
3130 if (*dn_log_port_id == logical_port_id)
3131 return eth_dn;
Joe Perchesee289b62010-05-17 22:47:34 -07003132 }
Jan-Bernd Themann1acf2312007-02-28 18:34:02 +01003133
3134 return NULL;
3135}
3136
3137static ssize_t ehea_probe_port(struct device *dev,
3138 struct device_attribute *attr,
3139 const char *buf, size_t count)
3140{
Greg Kroah-Hartmanc7ae0112009-05-04 21:33:19 -07003141 struct ehea_adapter *adapter = dev_get_drvdata(dev);
Jan-Bernd Themann1acf2312007-02-28 18:34:02 +01003142 struct ehea_port *port;
3143 struct device_node *eth_dn = NULL;
3144 int i;
3145
3146 u32 logical_port_id;
3147
Jan-Bernd Themanna8e34fd2007-08-22 16:20:58 +02003148 sscanf(buf, "%d", &logical_port_id);
Jan-Bernd Themann1acf2312007-02-28 18:34:02 +01003149
3150 port = ehea_get_port(adapter, logical_port_id);
3151
3152 if (port) {
Joe Perches8c4877a2010-12-13 10:05:14 -08003153 netdev_info(port->netdev, "adding port with logical port id=%d failed: port already configured\n",
3154 logical_port_id);
Jan-Bernd Themann1acf2312007-02-28 18:34:02 +01003155 return -EINVAL;
3156 }
Jan-Bernd Themanne542aa62007-03-22 17:50:24 +01003157
Jan-Bernd Themann1acf2312007-02-28 18:34:02 +01003158 eth_dn = ehea_get_eth_dn(adapter, logical_port_id);
3159
3160 if (!eth_dn) {
Joe Perches8c4877a2010-12-13 10:05:14 -08003161 pr_info("no logical port with id %d found\n", logical_port_id);
Jan-Bernd Themann1acf2312007-02-28 18:34:02 +01003162 return -EINVAL;
3163 }
Jan-Bernd Themanne542aa62007-03-22 17:50:24 +01003164
Thomas Klein1211bb62007-04-26 11:56:43 +02003165 if (ehea_add_adapter_mr(adapter)) {
Joe Perches8c4877a2010-12-13 10:05:14 -08003166 pr_err("creating MR failed\n");
Thomas Klein1211bb62007-04-26 11:56:43 +02003167 return -EIO;
3168 }
3169
Jan-Bernd Themann1acf2312007-02-28 18:34:02 +01003170 port = ehea_setup_single_port(adapter, logical_port_id, eth_dn);
3171
Jan-Bernd Themann1eef4e02007-03-22 17:49:42 +01003172 of_node_put(eth_dn);
3173
Jan-Bernd Themann1acf2312007-02-28 18:34:02 +01003174 if (port) {
Doug Maxey508d2b52008-01-31 20:20:49 -06003175 for (i = 0; i < EHEA_MAX_PORTS; i++)
Jan-Bernd Themann1acf2312007-02-28 18:34:02 +01003176 if (!adapter->port[i]) {
3177 adapter->port[i] = port;
3178 break;
3179 }
3180
Joe Perches8c4877a2010-12-13 10:05:14 -08003181 netdev_info(port->netdev, "added: (logical port id=%d)\n",
3182 logical_port_id);
Thomas Klein1211bb62007-04-26 11:56:43 +02003183 } else {
3184 ehea_remove_adapter_mr(adapter);
Jan-Bernd Themanne542aa62007-03-22 17:50:24 +01003185 return -EIO;
Thomas Klein1211bb62007-04-26 11:56:43 +02003186 }
Jan-Bernd Themann1acf2312007-02-28 18:34:02 +01003187
3188 return (ssize_t) count;
3189}
3190
3191static ssize_t ehea_remove_port(struct device *dev,
3192 struct device_attribute *attr,
3193 const char *buf, size_t count)
3194{
Greg Kroah-Hartmanc7ae0112009-05-04 21:33:19 -07003195 struct ehea_adapter *adapter = dev_get_drvdata(dev);
Jan-Bernd Themann1acf2312007-02-28 18:34:02 +01003196 struct ehea_port *port;
3197 int i;
3198 u32 logical_port_id;
3199
Jan-Bernd Themanna8e34fd2007-08-22 16:20:58 +02003200 sscanf(buf, "%d", &logical_port_id);
Jan-Bernd Themann1acf2312007-02-28 18:34:02 +01003201
3202 port = ehea_get_port(adapter, logical_port_id);
3203
3204 if (port) {
Joe Perches8c4877a2010-12-13 10:05:14 -08003205 netdev_info(port->netdev, "removed: (logical port id=%d)\n",
3206 logical_port_id);
Jan-Bernd Themann1acf2312007-02-28 18:34:02 +01003207
3208 ehea_shutdown_single_port(port);
3209
Doug Maxey508d2b52008-01-31 20:20:49 -06003210 for (i = 0; i < EHEA_MAX_PORTS; i++)
Jan-Bernd Themann1acf2312007-02-28 18:34:02 +01003211 if (adapter->port[i] == port) {
3212 adapter->port[i] = NULL;
3213 break;
3214 }
3215 } else {
Joe Perches8c4877a2010-12-13 10:05:14 -08003216 pr_err("removing port with logical port id=%d failed. port not configured.\n",
3217 logical_port_id);
Jan-Bernd Themann1acf2312007-02-28 18:34:02 +01003218 return -EINVAL;
3219 }
3220
Thomas Klein1211bb62007-04-26 11:56:43 +02003221 ehea_remove_adapter_mr(adapter);
3222
Jan-Bernd Themann1acf2312007-02-28 18:34:02 +01003223 return (ssize_t) count;
3224}
3225
3226static DEVICE_ATTR(probe_port, S_IWUSR, NULL, ehea_probe_port);
3227static DEVICE_ATTR(remove_port, S_IWUSR, NULL, ehea_remove_port);
3228
Grant Likely2dc11582010-08-06 09:25:50 -06003229int ehea_create_device_sysfs(struct platform_device *dev)
Jan-Bernd Themann1acf2312007-02-28 18:34:02 +01003230{
Joachim Fenkes6b08f3a2007-09-26 19:45:51 +10003231 int ret = device_create_file(&dev->dev, &dev_attr_probe_port);
Jan-Bernd Themann1acf2312007-02-28 18:34:02 +01003232 if (ret)
3233 goto out;
3234
Joachim Fenkes6b08f3a2007-09-26 19:45:51 +10003235 ret = device_create_file(&dev->dev, &dev_attr_remove_port);
Jan-Bernd Themann1acf2312007-02-28 18:34:02 +01003236out:
Jan-Bernd Themann7a291082006-09-13 17:44:31 +02003237 return ret;
3238}
3239
Grant Likely2dc11582010-08-06 09:25:50 -06003240void ehea_remove_device_sysfs(struct platform_device *dev)
Jan-Bernd Themann1acf2312007-02-28 18:34:02 +01003241{
Joachim Fenkes6b08f3a2007-09-26 19:45:51 +10003242 device_remove_file(&dev->dev, &dev_attr_probe_port);
3243 device_remove_file(&dev->dev, &dev_attr_remove_port);
Jan-Bernd Themann1acf2312007-02-28 18:34:02 +01003244}
3245
Grant Likely2dc11582010-08-06 09:25:50 -06003246static int __devinit ehea_probe_adapter(struct platform_device *dev,
Jan-Bernd Themann1acf2312007-02-28 18:34:02 +01003247 const struct of_device_id *id)
Jan-Bernd Themann7a291082006-09-13 17:44:31 +02003248{
3249 struct ehea_adapter *adapter;
Stephen Rothwell9f9a3b82007-05-01 13:51:32 +10003250 const u64 *adapter_handle;
Jan-Bernd Themann7a291082006-09-13 17:44:31 +02003251 int ret;
3252
Grant Likely61c7a082010-04-13 16:12:29 -07003253 if (!dev || !dev->dev.of_node) {
Joe Perches8c4877a2010-12-13 10:05:14 -08003254 pr_err("Invalid ibmebus device probed\n");
Jan-Bernd Themann1eef4e02007-03-22 17:49:42 +01003255 return -EINVAL;
3256 }
3257
Jan-Bernd Themann7a291082006-09-13 17:44:31 +02003258 adapter = kzalloc(sizeof(*adapter), GFP_KERNEL);
3259 if (!adapter) {
3260 ret = -ENOMEM;
Joachim Fenkes6b08f3a2007-09-26 19:45:51 +10003261 dev_err(&dev->dev, "no mem for ehea_adapter\n");
Jan-Bernd Themann7a291082006-09-13 17:44:31 +02003262 goto out;
3263 }
3264
Thomas Klein44c82152007-07-11 16:32:00 +02003265 list_add(&adapter->list, &adapter_list);
3266
Joachim Fenkes6b08f3a2007-09-26 19:45:51 +10003267 adapter->ofdev = dev;
Jan-Bernd Themann1acf2312007-02-28 18:34:02 +01003268
Grant Likely61c7a082010-04-13 16:12:29 -07003269 adapter_handle = of_get_property(dev->dev.of_node, "ibm,hea-handle",
Jan-Bernd Themannd1d25aa2007-07-02 13:00:46 +02003270 NULL);
Thomas Klein061bf3c2007-01-22 12:52:20 +01003271 if (adapter_handle)
3272 adapter->handle = *adapter_handle;
3273
3274 if (!adapter->handle) {
Joachim Fenkes6b08f3a2007-09-26 19:45:51 +10003275 dev_err(&dev->dev, "failed getting handle for adapter"
Grant Likely61c7a082010-04-13 16:12:29 -07003276 " '%s'\n", dev->dev.of_node->full_name);
Jan-Bernd Themann7a291082006-09-13 17:44:31 +02003277 ret = -ENODEV;
3278 goto out_free_ad;
3279 }
3280
Jan-Bernd Themann7a291082006-09-13 17:44:31 +02003281 adapter->pd = EHEA_PD_ID;
3282
Greg Kroah-Hartmanc7ae0112009-05-04 21:33:19 -07003283 dev_set_drvdata(&dev->dev, adapter);
Jan-Bernd Themann7a291082006-09-13 17:44:31 +02003284
Jan-Bernd Themann7a291082006-09-13 17:44:31 +02003285
3286 /* initialize adapter and ports */
3287 /* get adapter properties */
3288 ret = ehea_sense_adapter_attr(adapter);
3289 if (ret) {
Joe Perches898eb712007-10-18 03:06:30 -07003290 dev_err(&dev->dev, "sense_adapter_attr failed: %d\n", ret);
Thomas Klein1211bb62007-04-26 11:56:43 +02003291 goto out_free_ad;
Jan-Bernd Themann7a291082006-09-13 17:44:31 +02003292 }
Jan-Bernd Themann7a291082006-09-13 17:44:31 +02003293
3294 adapter->neq = ehea_create_eq(adapter,
3295 EHEA_NEQ, EHEA_MAX_ENTRIES_EQ, 1);
3296 if (!adapter->neq) {
Jan-Bernd Themann1eef4e02007-03-22 17:49:42 +01003297 ret = -EIO;
Joe Perches898eb712007-10-18 03:06:30 -07003298 dev_err(&dev->dev, "NEQ creation failed\n");
Thomas Klein1211bb62007-04-26 11:56:43 +02003299 goto out_free_ad;
Jan-Bernd Themann7a291082006-09-13 17:44:31 +02003300 }
3301
3302 tasklet_init(&adapter->neq_tasklet, ehea_neq_tasklet,
3303 (unsigned long)adapter);
3304
Joachim Fenkes6b08f3a2007-09-26 19:45:51 +10003305 ret = ibmebus_request_irq(adapter->neq->attr.ist1,
Thomas Gleixner38515e92007-02-14 00:33:16 -08003306 ehea_interrupt_neq, IRQF_DISABLED,
Jan-Bernd Themann7a291082006-09-13 17:44:31 +02003307 "ehea_neq", adapter);
3308 if (ret) {
Joe Perches898eb712007-10-18 03:06:30 -07003309 dev_err(&dev->dev, "requesting NEQ IRQ failed\n");
Jan-Bernd Themann7a291082006-09-13 17:44:31 +02003310 goto out_kill_eq;
3311 }
3312
Jan-Bernd Themann1eef4e02007-03-22 17:49:42 +01003313 ret = ehea_create_device_sysfs(dev);
3314 if (ret)
Jan-Bernd Themann3bf76b82007-10-08 16:01:33 +02003315 goto out_free_irq;
Jan-Bernd Themann1acf2312007-02-28 18:34:02 +01003316
Jan-Bernd Themann7a291082006-09-13 17:44:31 +02003317 ret = ehea_setup_ports(adapter);
3318 if (ret) {
Joe Perches898eb712007-10-18 03:06:30 -07003319 dev_err(&dev->dev, "setup_ports failed\n");
Jan-Bernd Themann1acf2312007-02-28 18:34:02 +01003320 goto out_rem_dev_sysfs;
Jan-Bernd Themann7a291082006-09-13 17:44:31 +02003321 }
3322
3323 ret = 0;
3324 goto out;
3325
Jan-Bernd Themann1acf2312007-02-28 18:34:02 +01003326out_rem_dev_sysfs:
3327 ehea_remove_device_sysfs(dev);
3328
Jan-Bernd Themann7a291082006-09-13 17:44:31 +02003329out_free_irq:
Joachim Fenkes6b08f3a2007-09-26 19:45:51 +10003330 ibmebus_free_irq(adapter->neq->attr.ist1, adapter);
Jan-Bernd Themann7a291082006-09-13 17:44:31 +02003331
3332out_kill_eq:
3333 ehea_destroy_eq(adapter->neq);
3334
Jan-Bernd Themann7a291082006-09-13 17:44:31 +02003335out_free_ad:
Hannes Hering51621fb2009-02-11 13:47:57 -08003336 list_del(&adapter->list);
Jan-Bernd Themann7a291082006-09-13 17:44:31 +02003337 kfree(adapter);
Thomas Klein21eee2d2008-02-13 16:18:33 +01003338
Jan-Bernd Themann7a291082006-09-13 17:44:31 +02003339out:
Thomas Klein21eee2d2008-02-13 16:18:33 +01003340 ehea_update_firmware_handles();
Jan-Bernd Themann52e21b12009-03-13 13:50:40 -07003341
Jan-Bernd Themann7a291082006-09-13 17:44:31 +02003342 return ret;
3343}
3344
Grant Likely2dc11582010-08-06 09:25:50 -06003345static int __devexit ehea_remove(struct platform_device *dev)
Jan-Bernd Themann7a291082006-09-13 17:44:31 +02003346{
Greg Kroah-Hartmanc7ae0112009-05-04 21:33:19 -07003347 struct ehea_adapter *adapter = dev_get_drvdata(&dev->dev);
Jan-Bernd Themann7a291082006-09-13 17:44:31 +02003348 int i;
3349
Jan-Bernd Themann1acf2312007-02-28 18:34:02 +01003350 for (i = 0; i < EHEA_MAX_PORTS; i++)
Jan-Bernd Themann7a291082006-09-13 17:44:31 +02003351 if (adapter->port[i]) {
3352 ehea_shutdown_single_port(adapter->port[i]);
3353 adapter->port[i] = NULL;
3354 }
Jan-Bernd Themann1acf2312007-02-28 18:34:02 +01003355
3356 ehea_remove_device_sysfs(dev);
3357
Joachim Fenkes6b08f3a2007-09-26 19:45:51 +10003358 ibmebus_free_irq(adapter->neq->attr.ist1, adapter);
Thomas Kleind4150a22007-01-29 18:44:41 +01003359 tasklet_kill(&adapter->neq_tasklet);
Jan-Bernd Themann7a291082006-09-13 17:44:31 +02003360
3361 ehea_destroy_eq(adapter->neq);
Thomas Klein1211bb62007-04-26 11:56:43 +02003362 ehea_remove_adapter_mr(adapter);
Thomas Klein44c82152007-07-11 16:32:00 +02003363 list_del(&adapter->list);
Jan-Bernd Themann7a291082006-09-13 17:44:31 +02003364 kfree(adapter);
Thomas Klein44c82152007-07-11 16:32:00 +02003365
Thomas Klein21eee2d2008-02-13 16:18:33 +01003366 ehea_update_firmware_handles();
Thomas Klein21eee2d2008-02-13 16:18:33 +01003367
Jan-Bernd Themann7a291082006-09-13 17:44:31 +02003368 return 0;
3369}
3370
Thomas Klein21eee2d2008-02-13 16:18:33 +01003371void ehea_crash_handler(void)
3372{
3373 int i;
3374
3375 if (ehea_fw_handles.arr)
3376 for (i = 0; i < ehea_fw_handles.num_entries; i++)
3377 ehea_h_free_resource(ehea_fw_handles.arr[i].adh,
3378 ehea_fw_handles.arr[i].fwh,
3379 FORCE_FREE);
3380
3381 if (ehea_bcmc_regs.arr)
3382 for (i = 0; i < ehea_bcmc_regs.num_entries; i++)
3383 ehea_h_reg_dereg_bcmc(ehea_bcmc_regs.arr[i].adh,
3384 ehea_bcmc_regs.arr[i].port_id,
3385 ehea_bcmc_regs.arr[i].reg_type,
3386 ehea_bcmc_regs.arr[i].macaddr,
3387 0, H_DEREG_BCMC);
3388}
3389
Hannes Hering48cfb142008-05-07 14:43:36 +02003390static int ehea_mem_notifier(struct notifier_block *nb,
3391 unsigned long action, void *data)
3392{
Thomas Kleina7c561f22010-04-20 23:11:31 +00003393 int ret = NOTIFY_BAD;
Hannes Heringd4f12da2008-10-16 11:36:42 +02003394 struct memory_notify *arg = data;
Thomas Kleina7c561f22010-04-20 23:11:31 +00003395
Jan-Bernd Themann099473c2010-06-15 05:35:42 +00003396 mutex_lock(&dlpar_mem_lock);
Thomas Kleina7c561f22010-04-20 23:11:31 +00003397
Hannes Hering48cfb142008-05-07 14:43:36 +02003398 switch (action) {
Hannes Heringd4f12da2008-10-16 11:36:42 +02003399 case MEM_CANCEL_OFFLINE:
Joe Perches8c4877a2010-12-13 10:05:14 -08003400 pr_info("memory offlining canceled");
Hannes Heringd4f12da2008-10-16 11:36:42 +02003401 /* Readd canceled memory block */
3402 case MEM_ONLINE:
Joe Perches8c4877a2010-12-13 10:05:14 -08003403 pr_info("memory is going online");
Thomas Klein38767322009-02-20 00:42:01 -08003404 set_bit(__EHEA_STOP_XFER, &ehea_driver_flags);
Hannes Heringd4f12da2008-10-16 11:36:42 +02003405 if (ehea_add_sect_bmap(arg->start_pfn, arg->nr_pages))
Thomas Kleina7c561f22010-04-20 23:11:31 +00003406 goto out_unlock;
Tejun Heo3d6b8922010-12-12 16:45:14 +01003407 ehea_rereg_mrs();
Hannes Heringd4f12da2008-10-16 11:36:42 +02003408 break;
3409 case MEM_GOING_OFFLINE:
Joe Perches8c4877a2010-12-13 10:05:14 -08003410 pr_info("memory is going offline");
Thomas Klein38767322009-02-20 00:42:01 -08003411 set_bit(__EHEA_STOP_XFER, &ehea_driver_flags);
Hannes Heringd4f12da2008-10-16 11:36:42 +02003412 if (ehea_rem_sect_bmap(arg->start_pfn, arg->nr_pages))
Thomas Kleina7c561f22010-04-20 23:11:31 +00003413 goto out_unlock;
Tejun Heo3d6b8922010-12-12 16:45:14 +01003414 ehea_rereg_mrs();
Hannes Hering48cfb142008-05-07 14:43:36 +02003415 break;
3416 default:
3417 break;
3418 }
Jan-Bernd Themann52e21b12009-03-13 13:50:40 -07003419
3420 ehea_update_firmware_handles();
Thomas Kleina7c561f22010-04-20 23:11:31 +00003421 ret = NOTIFY_OK;
Jan-Bernd Themann52e21b12009-03-13 13:50:40 -07003422
Thomas Kleina7c561f22010-04-20 23:11:31 +00003423out_unlock:
3424 mutex_unlock(&dlpar_mem_lock);
Thomas Kleina7c561f22010-04-20 23:11:31 +00003425 return ret;
Hannes Hering48cfb142008-05-07 14:43:36 +02003426}
3427
3428static struct notifier_block ehea_mem_nb = {
3429 .notifier_call = ehea_mem_notifier,
3430};
3431
Jan-Bernd Themann2a6f4e42007-10-26 14:37:28 +02003432static int ehea_reboot_notifier(struct notifier_block *nb,
3433 unsigned long action, void *unused)
3434{
3435 if (action == SYS_RESTART) {
Joe Perches8c4877a2010-12-13 10:05:14 -08003436 pr_info("Reboot: freeing all eHEA resources\n");
Jan-Bernd Themann2a6f4e42007-10-26 14:37:28 +02003437 ibmebus_unregister_driver(&ehea_driver);
3438 }
3439 return NOTIFY_DONE;
3440}
3441
3442static struct notifier_block ehea_reboot_nb = {
Doug Maxey508d2b52008-01-31 20:20:49 -06003443 .notifier_call = ehea_reboot_notifier,
Jan-Bernd Themann2a6f4e42007-10-26 14:37:28 +02003444};
3445
Jan-Bernd Themann7a291082006-09-13 17:44:31 +02003446static int check_module_parm(void)
3447{
3448 int ret = 0;
3449
3450 if ((rq1_entries < EHEA_MIN_ENTRIES_QP) ||
3451 (rq1_entries > EHEA_MAX_ENTRIES_RQ1)) {
Joe Perches8c4877a2010-12-13 10:05:14 -08003452 pr_info("Bad parameter: rq1_entries\n");
Jan-Bernd Themann7a291082006-09-13 17:44:31 +02003453 ret = -EINVAL;
3454 }
3455 if ((rq2_entries < EHEA_MIN_ENTRIES_QP) ||
3456 (rq2_entries > EHEA_MAX_ENTRIES_RQ2)) {
Joe Perches8c4877a2010-12-13 10:05:14 -08003457 pr_info("Bad parameter: rq2_entries\n");
Jan-Bernd Themann7a291082006-09-13 17:44:31 +02003458 ret = -EINVAL;
3459 }
3460 if ((rq3_entries < EHEA_MIN_ENTRIES_QP) ||
3461 (rq3_entries > EHEA_MAX_ENTRIES_RQ3)) {
Joe Perches8c4877a2010-12-13 10:05:14 -08003462 pr_info("Bad parameter: rq3_entries\n");
Jan-Bernd Themann7a291082006-09-13 17:44:31 +02003463 ret = -EINVAL;
3464 }
3465 if ((sq_entries < EHEA_MIN_ENTRIES_QP) ||
3466 (sq_entries > EHEA_MAX_ENTRIES_SQ)) {
Joe Perches8c4877a2010-12-13 10:05:14 -08003467 pr_info("Bad parameter: sq_entries\n");
Jan-Bernd Themann7a291082006-09-13 17:44:31 +02003468 ret = -EINVAL;
3469 }
3470
3471 return ret;
3472}
3473
Jan-Bernd Themann4c3ca4d2007-07-05 09:26:25 +02003474static ssize_t ehea_show_capabilities(struct device_driver *drv,
3475 char *buf)
3476{
3477 return sprintf(buf, "%d", EHEA_CAPABILITIES);
3478}
3479
3480static DRIVER_ATTR(capabilities, S_IRUSR | S_IRGRP | S_IROTH,
3481 ehea_show_capabilities, NULL);
3482
Jan-Bernd Themann7a291082006-09-13 17:44:31 +02003483int __init ehea_module_init(void)
3484{
3485 int ret;
3486
Joe Perches8c4877a2010-12-13 10:05:14 -08003487 pr_info("IBM eHEA ethernet device driver (Release %s)\n", DRV_VERSION);
Jan-Bernd Themann7a291082006-09-13 17:44:31 +02003488
Thomas Klein21eee2d2008-02-13 16:18:33 +01003489 memset(&ehea_fw_handles, 0, sizeof(ehea_fw_handles));
3490 memset(&ehea_bcmc_regs, 0, sizeof(ehea_bcmc_regs));
3491
Daniel Walker9f71a562008-03-28 14:41:26 -07003492 mutex_init(&ehea_fw_handles.lock);
Jan-Bernd Themann5c2cec12008-07-03 15:18:45 +01003493 spin_lock_init(&ehea_bcmc_regs.lock);
Thomas Klein44c82152007-07-11 16:32:00 +02003494
Jan-Bernd Themann7a291082006-09-13 17:44:31 +02003495 ret = check_module_parm();
3496 if (ret)
3497 goto out;
Thomas Klein44c82152007-07-11 16:32:00 +02003498
3499 ret = ehea_create_busmap();
3500 if (ret)
3501 goto out;
3502
Thomas Klein21eee2d2008-02-13 16:18:33 +01003503 ret = register_reboot_notifier(&ehea_reboot_nb);
3504 if (ret)
Joe Perches8c4877a2010-12-13 10:05:14 -08003505 pr_info("failed registering reboot notifier\n");
Thomas Klein21eee2d2008-02-13 16:18:33 +01003506
Hannes Hering48cfb142008-05-07 14:43:36 +02003507 ret = register_memory_notifier(&ehea_mem_nb);
3508 if (ret)
Joe Perches8c4877a2010-12-13 10:05:14 -08003509 pr_info("failed registering memory remove notifier\n");
Hannes Hering48cfb142008-05-07 14:43:36 +02003510
Joe Perchesc061b182010-08-23 18:20:03 +00003511 ret = crash_shutdown_register(ehea_crash_handler);
Thomas Klein21eee2d2008-02-13 16:18:33 +01003512 if (ret)
Joe Perches8c4877a2010-12-13 10:05:14 -08003513 pr_info("failed registering crash handler\n");
Jan-Bernd Themann2a6f4e42007-10-26 14:37:28 +02003514
Jan-Bernd Themann7a291082006-09-13 17:44:31 +02003515 ret = ibmebus_register_driver(&ehea_driver);
Jan-Bernd Themann4c3ca4d2007-07-05 09:26:25 +02003516 if (ret) {
Joe Perches8c4877a2010-12-13 10:05:14 -08003517 pr_err("failed registering eHEA device driver on ebus\n");
Thomas Klein21eee2d2008-02-13 16:18:33 +01003518 goto out2;
Jan-Bernd Themann4c3ca4d2007-07-05 09:26:25 +02003519 }
3520
3521 ret = driver_create_file(&ehea_driver.driver,
3522 &driver_attr_capabilities);
3523 if (ret) {
Joe Perches8c4877a2010-12-13 10:05:14 -08003524 pr_err("failed to register capabilities attribute, ret=%d\n",
3525 ret);
Thomas Klein21eee2d2008-02-13 16:18:33 +01003526 goto out3;
Jan-Bernd Themann4c3ca4d2007-07-05 09:26:25 +02003527 }
Jan-Bernd Themann7a291082006-09-13 17:44:31 +02003528
Thomas Klein21eee2d2008-02-13 16:18:33 +01003529 return ret;
3530
3531out3:
3532 ibmebus_unregister_driver(&ehea_driver);
3533out2:
Hannes Hering48cfb142008-05-07 14:43:36 +02003534 unregister_memory_notifier(&ehea_mem_nb);
Thomas Klein21eee2d2008-02-13 16:18:33 +01003535 unregister_reboot_notifier(&ehea_reboot_nb);
Joe Perchesc061b182010-08-23 18:20:03 +00003536 crash_shutdown_unregister(ehea_crash_handler);
Jan-Bernd Themann7a291082006-09-13 17:44:31 +02003537out:
3538 return ret;
3539}
3540
3541static void __exit ehea_module_exit(void)
3542{
Thomas Klein21eee2d2008-02-13 16:18:33 +01003543 int ret;
3544
Jan-Bernd Themann4c3ca4d2007-07-05 09:26:25 +02003545 driver_remove_file(&ehea_driver.driver, &driver_attr_capabilities);
Jan-Bernd Themann7a291082006-09-13 17:44:31 +02003546 ibmebus_unregister_driver(&ehea_driver);
Jan-Bernd Themann2a6f4e42007-10-26 14:37:28 +02003547 unregister_reboot_notifier(&ehea_reboot_nb);
Joe Perchesc061b182010-08-23 18:20:03 +00003548 ret = crash_shutdown_unregister(ehea_crash_handler);
Thomas Klein21eee2d2008-02-13 16:18:33 +01003549 if (ret)
Joe Perches8c4877a2010-12-13 10:05:14 -08003550 pr_info("failed unregistering crash handler\n");
Hannes Hering48cfb142008-05-07 14:43:36 +02003551 unregister_memory_notifier(&ehea_mem_nb);
Thomas Klein21eee2d2008-02-13 16:18:33 +01003552 kfree(ehea_fw_handles.arr);
3553 kfree(ehea_bcmc_regs.arr);
Thomas Klein44c82152007-07-11 16:32:00 +02003554 ehea_destroy_busmap();
Jan-Bernd Themann7a291082006-09-13 17:44:31 +02003555}
3556
3557module_init(ehea_module_init);
3558module_exit(ehea_module_exit);