blob: 0d4d4f68d4ed5952ddb776e089af60f469c8b661 [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;
Eric Dumazet9e903e02011-10-18 21:00:24 +00001679 sg1entry->len = skb_frag_size(frag);
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;
Eric Dumazet9e903e02011-10-18 21:00:24 +00001692 sgentry->len = frag_size(frag);
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);
Anton Blanchardd695c332011-10-14 05:31:05 +00002004 break;
2005
2006 case IPPROTO_TCP:
2007 if (skb->ip_summed == CHECKSUM_PARTIAL)
2008 swqe->tx_control |= EHEA_SWQE_TCP_CHECKSUM;
2009
2010 swqe->tcp_offset = swqe->ip_end + 1 +
2011 offsetof(struct tcphdr, check);
Anton Blanchardd695c332011-10-14 05:31:05 +00002012 break;
2013 }
2014}
2015
Jan-Bernd Themann7a291082006-09-13 17:44:31 +02002016static void ehea_xmit2(struct sk_buff *skb, struct net_device *dev,
2017 struct ehea_swqe *swqe, u32 lkey)
2018{
Anton Blanchardd695c332011-10-14 05:31:05 +00002019 swqe->tx_control |= EHEA_SWQE_DESCRIPTORS_PRESENT;
Jan-Bernd Themannd1d25aa2007-07-02 13:00:46 +02002020
Anton Blanchardd695c332011-10-14 05:31:05 +00002021 xmit_common(skb, swqe);
Jan-Bernd Themann7a291082006-09-13 17:44:31 +02002022
2023 write_swqe2_data(skb, dev, swqe, lkey);
2024}
2025
2026static void ehea_xmit3(struct sk_buff *skb, struct net_device *dev,
2027 struct ehea_swqe *swqe)
2028{
Jan-Bernd Themann7a291082006-09-13 17:44:31 +02002029 u8 *imm_data = &swqe->u.immdata_nodesc.immediate_data[0];
Jan-Bernd Themann7a291082006-09-13 17:44:31 +02002030
Anton Blanchardd695c332011-10-14 05:31:05 +00002031 xmit_common(skb, swqe);
Jan-Bernd Themannd1d25aa2007-07-02 13:00:46 +02002032
Anton Blanchard30e2e902011-10-14 05:31:07 +00002033 if (!skb->data_len)
Arnaldo Carvalho de Melod626f622007-03-27 18:55:52 -03002034 skb_copy_from_linear_data(skb, imm_data, skb->len);
Anton Blanchard30e2e902011-10-14 05:31:07 +00002035 else
2036 skb_copy_bits(skb, 0, imm_data, skb->len);
Anton Blanchardd695c332011-10-14 05:31:05 +00002037
Jan-Bernd Themann7a291082006-09-13 17:44:31 +02002038 swqe->immediate_data_length = skb->len;
2039 dev_kfree_skb(skb);
2040}
2041
2042static int ehea_start_xmit(struct sk_buff *skb, struct net_device *dev)
2043{
2044 struct ehea_port *port = netdev_priv(dev);
2045 struct ehea_swqe *swqe;
Jan-Bernd Themann7a291082006-09-13 17:44:31 +02002046 u32 lkey;
2047 int swqe_index;
Jan-Bernd Themann18604c52007-02-28 18:34:10 +01002048 struct ehea_port_res *pr;
Anton Blanchardb9564462011-10-14 05:30:59 +00002049 struct netdev_queue *txq;
Jan-Bernd Themann7a291082006-09-13 17:44:31 +02002050
Anton Blanchardb9564462011-10-14 05:30:59 +00002051 pr = &port->port_res[skb_get_queue_mapping(skb)];
2052 txq = netdev_get_tx_queue(dev, skb_get_queue_mapping(skb));
Jan-Bernd Themann18604c52007-02-28 18:34:10 +01002053
Jan-Bernd Themann7a291082006-09-13 17:44:31 +02002054 swqe = ehea_get_swqe(pr->qp, &swqe_index);
2055 memset(swqe, 0, SWQE_HEADER_SIZE);
2056 atomic_dec(&pr->swqe_avail);
2057
Eric Dumazete5ccd962010-10-26 19:21:07 +00002058 if (vlan_tx_tag_present(skb)) {
2059 swqe->tx_control |= EHEA_SWQE_VLAN_INSERT;
2060 swqe->vlan_tag = vlan_tx_tag_get(skb);
2061 }
2062
Breno Leitaoce45b872010-10-27 08:45:14 +00002063 pr->tx_packets++;
2064 pr->tx_bytes += skb->len;
2065
Jan-Bernd Themann7a291082006-09-13 17:44:31 +02002066 if (skb->len <= SWQE3_MAX_IMM) {
2067 u32 sig_iv = port->sig_comp_iv;
2068 u32 swqe_num = pr->swqe_id_counter;
2069 ehea_xmit3(skb, dev, swqe);
2070 swqe->wr_id = EHEA_BMASK_SET(EHEA_WR_ID_TYPE, EHEA_SWQE3_TYPE)
2071 | EHEA_BMASK_SET(EHEA_WR_ID_COUNT, swqe_num);
2072 if (pr->swqe_ll_count >= (sig_iv - 1)) {
2073 swqe->wr_id |= EHEA_BMASK_SET(EHEA_WR_ID_REFILL,
2074 sig_iv);
2075 swqe->tx_control |= EHEA_SWQE_SIGNALLED_COMPLETION;
2076 pr->swqe_ll_count = 0;
2077 } else
2078 pr->swqe_ll_count += 1;
2079 } else {
2080 swqe->wr_id =
2081 EHEA_BMASK_SET(EHEA_WR_ID_TYPE, EHEA_SWQE2_TYPE)
2082 | EHEA_BMASK_SET(EHEA_WR_ID_COUNT, pr->swqe_id_counter)
Jan-Bernd Themannacbddb52007-03-23 17:18:53 +01002083 | EHEA_BMASK_SET(EHEA_WR_ID_REFILL, 1)
Jan-Bernd Themann7a291082006-09-13 17:44:31 +02002084 | EHEA_BMASK_SET(EHEA_WR_ID_INDEX, pr->sq_skba.index);
2085 pr->sq_skba.arr[pr->sq_skba.index] = skb;
2086
2087 pr->sq_skba.index++;
2088 pr->sq_skba.index &= (pr->sq_skba.len - 1);
2089
2090 lkey = pr->send_mr.lkey;
2091 ehea_xmit2(skb, dev, swqe, lkey);
Jan-Bernd Themannacbddb52007-03-23 17:18:53 +01002092 swqe->tx_control |= EHEA_SWQE_SIGNALLED_COMPLETION;
Jan-Bernd Themann7a291082006-09-13 17:44:31 +02002093 }
2094 pr->swqe_id_counter += 1;
2095
Joe Perches8c4877a2010-12-13 10:05:14 -08002096 netif_info(port, tx_queued, dev,
2097 "post swqe on QP %d\n", pr->qp->init_attr.qp_nr);
2098 if (netif_msg_tx_queued(port))
Jan-Bernd Themannbff0a552006-10-05 16:53:14 +02002099 ehea_dump(swqe, 512, "swqe");
Jan-Bernd Themann7a291082006-09-13 17:44:31 +02002100
Jan-Bernd Themann2c694482007-10-01 16:33:18 +02002101 if (unlikely(test_bit(__EHEA_STOP_XFER, &ehea_driver_flags))) {
Anton Blanchardb9564462011-10-14 05:30:59 +00002102 netif_tx_stop_queue(txq);
Jan-Bernd Themann2c694482007-10-01 16:33:18 +02002103 swqe->tx_control |= EHEA_SWQE_PURGE;
2104 }
Thomas Klein44c82152007-07-11 16:32:00 +02002105
Jan-Bernd Themann7a291082006-09-13 17:44:31 +02002106 ehea_post_swqe(pr->qp, swqe);
Jan-Bernd Themann7a291082006-09-13 17:44:31 +02002107
2108 if (unlikely(atomic_read(&pr->swqe_avail) <= 1)) {
Anton Blanchardb9564462011-10-14 05:30:59 +00002109 pr->p_stats.queue_stopped++;
2110 netif_tx_stop_queue(txq);
Jan-Bernd Themann7a291082006-09-13 17:44:31 +02002111 }
Jan-Bernd Themann2c694482007-10-01 16:33:18 +02002112
Jan-Bernd Themann7a291082006-09-13 17:44:31 +02002113 return NETDEV_TX_OK;
2114}
2115
Jan-Bernd Themann7a291082006-09-13 17:44:31 +02002116static void ehea_vlan_rx_add_vid(struct net_device *dev, unsigned short vid)
2117{
2118 struct ehea_port *port = netdev_priv(dev);
2119 struct ehea_adapter *adapter = port->adapter;
2120 struct hcp_ehea_port_cb1 *cb1;
2121 int index;
2122 u64 hret;
2123
Thomas Klein3faf2692009-01-21 14:45:33 -08002124 cb1 = (void *)get_zeroed_page(GFP_KERNEL);
Jan-Bernd Themann7a291082006-09-13 17:44:31 +02002125 if (!cb1) {
Joe Perches8c4877a2010-12-13 10:05:14 -08002126 pr_err("no mem for cb1\n");
Jan-Bernd Themann7a291082006-09-13 17:44:31 +02002127 goto out;
2128 }
2129
2130 hret = ehea_h_query_ehea_port(adapter->handle, port->logical_port_id,
2131 H_PORT_CB1, H_PORT_CB1_ALL, cb1);
2132 if (hret != H_SUCCESS) {
Joe Perches8c4877a2010-12-13 10:05:14 -08002133 pr_err("query_ehea_port failed\n");
Jan-Bernd Themann7a291082006-09-13 17:44:31 +02002134 goto out;
2135 }
2136
2137 index = (vid / 64);
Thomas Kleindec590c2007-06-06 20:53:16 +02002138 cb1->vlan_filter[index] |= ((u64)(0x8000000000000000 >> (vid & 0x3F)));
Jan-Bernd Themann7a291082006-09-13 17:44:31 +02002139
2140 hret = ehea_h_modify_ehea_port(adapter->handle, port->logical_port_id,
2141 H_PORT_CB1, H_PORT_CB1_ALL, cb1);
2142 if (hret != H_SUCCESS)
Joe Perches8c4877a2010-12-13 10:05:14 -08002143 pr_err("modify_ehea_port failed\n");
Jan-Bernd Themann7a291082006-09-13 17:44:31 +02002144out:
Thomas Klein3faf2692009-01-21 14:45:33 -08002145 free_page((unsigned long)cb1);
Jan-Bernd Themann7a291082006-09-13 17:44:31 +02002146 return;
2147}
2148
2149static void ehea_vlan_rx_kill_vid(struct net_device *dev, unsigned short vid)
2150{
2151 struct ehea_port *port = netdev_priv(dev);
2152 struct ehea_adapter *adapter = port->adapter;
2153 struct hcp_ehea_port_cb1 *cb1;
2154 int index;
2155 u64 hret;
2156
Thomas Klein3faf2692009-01-21 14:45:33 -08002157 cb1 = (void *)get_zeroed_page(GFP_KERNEL);
Jan-Bernd Themann7a291082006-09-13 17:44:31 +02002158 if (!cb1) {
Joe Perches8c4877a2010-12-13 10:05:14 -08002159 pr_err("no mem for cb1\n");
Jan-Bernd Themann7a291082006-09-13 17:44:31 +02002160 goto out;
2161 }
2162
2163 hret = ehea_h_query_ehea_port(adapter->handle, port->logical_port_id,
2164 H_PORT_CB1, H_PORT_CB1_ALL, cb1);
2165 if (hret != H_SUCCESS) {
Joe Perches8c4877a2010-12-13 10:05:14 -08002166 pr_err("query_ehea_port failed\n");
Jan-Bernd Themann7a291082006-09-13 17:44:31 +02002167 goto out;
2168 }
2169
2170 index = (vid / 64);
Thomas Kleindec590c2007-06-06 20:53:16 +02002171 cb1->vlan_filter[index] &= ~((u64)(0x8000000000000000 >> (vid & 0x3F)));
Jan-Bernd Themann7a291082006-09-13 17:44:31 +02002172
2173 hret = ehea_h_modify_ehea_port(adapter->handle, port->logical_port_id,
2174 H_PORT_CB1, H_PORT_CB1_ALL, cb1);
2175 if (hret != H_SUCCESS)
Joe Perches8c4877a2010-12-13 10:05:14 -08002176 pr_err("modify_ehea_port failed\n");
Jan-Bernd Themann7a291082006-09-13 17:44:31 +02002177out:
Thomas Klein3faf2692009-01-21 14:45:33 -08002178 free_page((unsigned long)cb1);
Jan-Bernd Themann7a291082006-09-13 17:44:31 +02002179}
2180
2181int ehea_activate_qp(struct ehea_adapter *adapter, struct ehea_qp *qp)
2182{
2183 int ret = -EIO;
2184 u64 hret;
2185 u16 dummy16 = 0;
2186 u64 dummy64 = 0;
Doug Maxey508d2b52008-01-31 20:20:49 -06002187 struct hcp_modify_qp_cb0 *cb0;
Jan-Bernd Themann7a291082006-09-13 17:44:31 +02002188
Thomas Klein3faf2692009-01-21 14:45:33 -08002189 cb0 = (void *)get_zeroed_page(GFP_KERNEL);
Jan-Bernd Themann7a291082006-09-13 17:44:31 +02002190 if (!cb0) {
2191 ret = -ENOMEM;
2192 goto out;
2193 }
2194
2195 hret = ehea_h_query_ehea_qp(adapter->handle, 0, qp->fw_handle,
2196 EHEA_BMASK_SET(H_QPCB0_ALL, 0xFFFF), cb0);
2197 if (hret != H_SUCCESS) {
Joe Perches8c4877a2010-12-13 10:05:14 -08002198 pr_err("query_ehea_qp failed (1)\n");
Jan-Bernd Themann7a291082006-09-13 17:44:31 +02002199 goto out;
2200 }
2201
2202 cb0->qp_ctl_reg = H_QP_CR_STATE_INITIALIZED;
2203 hret = ehea_h_modify_ehea_qp(adapter->handle, 0, qp->fw_handle,
2204 EHEA_BMASK_SET(H_QPCB0_QP_CTL_REG, 1), cb0,
2205 &dummy64, &dummy64, &dummy16, &dummy16);
2206 if (hret != H_SUCCESS) {
Joe Perches8c4877a2010-12-13 10:05:14 -08002207 pr_err("modify_ehea_qp failed (1)\n");
Jan-Bernd Themann7a291082006-09-13 17:44:31 +02002208 goto out;
2209 }
2210
2211 hret = ehea_h_query_ehea_qp(adapter->handle, 0, qp->fw_handle,
2212 EHEA_BMASK_SET(H_QPCB0_ALL, 0xFFFF), cb0);
2213 if (hret != H_SUCCESS) {
Joe Perches8c4877a2010-12-13 10:05:14 -08002214 pr_err("query_ehea_qp failed (2)\n");
Jan-Bernd Themann7a291082006-09-13 17:44:31 +02002215 goto out;
2216 }
2217
2218 cb0->qp_ctl_reg = H_QP_CR_ENABLED | H_QP_CR_STATE_INITIALIZED;
2219 hret = ehea_h_modify_ehea_qp(adapter->handle, 0, qp->fw_handle,
2220 EHEA_BMASK_SET(H_QPCB0_QP_CTL_REG, 1), cb0,
2221 &dummy64, &dummy64, &dummy16, &dummy16);
2222 if (hret != H_SUCCESS) {
Joe Perches8c4877a2010-12-13 10:05:14 -08002223 pr_err("modify_ehea_qp failed (2)\n");
Jan-Bernd Themann7a291082006-09-13 17:44:31 +02002224 goto out;
2225 }
2226
2227 hret = ehea_h_query_ehea_qp(adapter->handle, 0, qp->fw_handle,
2228 EHEA_BMASK_SET(H_QPCB0_ALL, 0xFFFF), cb0);
2229 if (hret != H_SUCCESS) {
Joe Perches8c4877a2010-12-13 10:05:14 -08002230 pr_err("query_ehea_qp failed (3)\n");
Jan-Bernd Themann7a291082006-09-13 17:44:31 +02002231 goto out;
2232 }
2233
2234 cb0->qp_ctl_reg = H_QP_CR_ENABLED | H_QP_CR_STATE_RDY2SND;
2235 hret = ehea_h_modify_ehea_qp(adapter->handle, 0, qp->fw_handle,
2236 EHEA_BMASK_SET(H_QPCB0_QP_CTL_REG, 1), cb0,
2237 &dummy64, &dummy64, &dummy16, &dummy16);
2238 if (hret != H_SUCCESS) {
Joe Perches8c4877a2010-12-13 10:05:14 -08002239 pr_err("modify_ehea_qp failed (3)\n");
Jan-Bernd Themann7a291082006-09-13 17:44:31 +02002240 goto out;
2241 }
2242
2243 hret = ehea_h_query_ehea_qp(adapter->handle, 0, qp->fw_handle,
2244 EHEA_BMASK_SET(H_QPCB0_ALL, 0xFFFF), cb0);
2245 if (hret != H_SUCCESS) {
Joe Perches8c4877a2010-12-13 10:05:14 -08002246 pr_err("query_ehea_qp failed (4)\n");
Jan-Bernd Themann7a291082006-09-13 17:44:31 +02002247 goto out;
2248 }
2249
2250 ret = 0;
2251out:
Thomas Klein3faf2692009-01-21 14:45:33 -08002252 free_page((unsigned long)cb0);
Jan-Bernd Themann7a291082006-09-13 17:44:31 +02002253 return ret;
2254}
2255
Anton Blanchard723f28e2011-10-14 05:31:01 +00002256static int ehea_port_res_setup(struct ehea_port *port, int def_qps)
Jan-Bernd Themann7a291082006-09-13 17:44:31 +02002257{
2258 int ret, i;
2259 struct port_res_cfg pr_cfg, pr_cfg_small_rx;
2260 enum ehea_eq_type eq_type = EHEA_EQ;
2261
2262 port->qp_eq = ehea_create_eq(port->adapter, eq_type,
2263 EHEA_MAX_ENTRIES_EQ, 1);
2264 if (!port->qp_eq) {
2265 ret = -EINVAL;
Joe Perches8c4877a2010-12-13 10:05:14 -08002266 pr_err("ehea_create_eq failed (qp_eq)\n");
Jan-Bernd Themann7a291082006-09-13 17:44:31 +02002267 goto out_kill_eq;
2268 }
2269
2270 pr_cfg.max_entries_rcq = rq1_entries + rq2_entries + rq3_entries;
Jan-Bernd Themann18604c52007-02-28 18:34:10 +01002271 pr_cfg.max_entries_scq = sq_entries * 2;
Jan-Bernd Themann7a291082006-09-13 17:44:31 +02002272 pr_cfg.max_entries_sq = sq_entries;
2273 pr_cfg.max_entries_rq1 = rq1_entries;
2274 pr_cfg.max_entries_rq2 = rq2_entries;
2275 pr_cfg.max_entries_rq3 = rq3_entries;
2276
2277 pr_cfg_small_rx.max_entries_rcq = 1;
2278 pr_cfg_small_rx.max_entries_scq = sq_entries;
2279 pr_cfg_small_rx.max_entries_sq = sq_entries;
2280 pr_cfg_small_rx.max_entries_rq1 = 1;
2281 pr_cfg_small_rx.max_entries_rq2 = 1;
2282 pr_cfg_small_rx.max_entries_rq3 = 1;
2283
2284 for (i = 0; i < def_qps; i++) {
2285 ret = ehea_init_port_res(port, &port->port_res[i], &pr_cfg, i);
2286 if (ret)
2287 goto out_clean_pr;
2288 }
Anton Blanchard723f28e2011-10-14 05:31:01 +00002289 for (i = def_qps; i < def_qps; i++) {
Jan-Bernd Themann7a291082006-09-13 17:44:31 +02002290 ret = ehea_init_port_res(port, &port->port_res[i],
2291 &pr_cfg_small_rx, i);
2292 if (ret)
2293 goto out_clean_pr;
2294 }
2295
2296 return 0;
2297
2298out_clean_pr:
2299 while (--i >= 0)
2300 ehea_clean_portres(port, &port->port_res[i]);
2301
2302out_kill_eq:
2303 ehea_destroy_eq(port->qp_eq);
2304 return ret;
2305}
2306
2307static int ehea_clean_all_portres(struct ehea_port *port)
2308{
2309 int ret = 0;
2310 int i;
2311
Anton Blanchard723f28e2011-10-14 05:31:01 +00002312 for (i = 0; i < port->num_def_qps; i++)
Jan-Bernd Themann7a291082006-09-13 17:44:31 +02002313 ret |= ehea_clean_portres(port, &port->port_res[i]);
2314
2315 ret |= ehea_destroy_eq(port->qp_eq);
2316
2317 return ret;
2318}
2319
Thomas Klein35cf2e22007-08-06 13:55:14 +02002320static void ehea_remove_adapter_mr(struct ehea_adapter *adapter)
Thomas Klein1211bb62007-04-26 11:56:43 +02002321{
Thomas Klein35cf2e22007-08-06 13:55:14 +02002322 if (adapter->active_ports)
2323 return;
Thomas Klein1211bb62007-04-26 11:56:43 +02002324
2325 ehea_rem_mr(&adapter->mr);
2326}
2327
Thomas Klein35cf2e22007-08-06 13:55:14 +02002328static int ehea_add_adapter_mr(struct ehea_adapter *adapter)
Thomas Klein1211bb62007-04-26 11:56:43 +02002329{
Thomas Klein35cf2e22007-08-06 13:55:14 +02002330 if (adapter->active_ports)
2331 return 0;
Thomas Klein1211bb62007-04-26 11:56:43 +02002332
2333 return ehea_reg_kernel_mr(adapter, &adapter->mr);
2334}
2335
Jan-Bernd Themann7a291082006-09-13 17:44:31 +02002336static int ehea_up(struct net_device *dev)
2337{
2338 int ret, i;
2339 struct ehea_port *port = netdev_priv(dev);
Jan-Bernd Themann7a291082006-09-13 17:44:31 +02002340
2341 if (port->state == EHEA_PORT_UP)
2342 return 0;
2343
Anton Blanchard723f28e2011-10-14 05:31:01 +00002344 ret = ehea_port_res_setup(port, port->num_def_qps);
Jan-Bernd Themann7a291082006-09-13 17:44:31 +02002345 if (ret) {
Joe Perches8c4877a2010-12-13 10:05:14 -08002346 netdev_err(dev, "port_res_failed\n");
Jan-Bernd Themann7a291082006-09-13 17:44:31 +02002347 goto out;
2348 }
2349
2350 /* Set default QP for this port */
2351 ret = ehea_configure_port(port);
2352 if (ret) {
Joe Perches8c4877a2010-12-13 10:05:14 -08002353 netdev_err(dev, "ehea_configure_port failed. ret:%d\n", ret);
Jan-Bernd Themann7a291082006-09-13 17:44:31 +02002354 goto out_clean_pr;
2355 }
2356
Jan-Bernd Themann7a291082006-09-13 17:44:31 +02002357 ret = ehea_reg_interrupts(dev);
2358 if (ret) {
Joe Perches8c4877a2010-12-13 10:05:14 -08002359 netdev_err(dev, "reg_interrupts failed. ret:%d\n", ret);
Thomas Kleinf9e29222007-07-18 17:34:09 +02002360 goto out_clean_pr;
Jan-Bernd Themann7a291082006-09-13 17:44:31 +02002361 }
2362
Anton Blanchard723f28e2011-10-14 05:31:01 +00002363 for (i = 0; i < port->num_def_qps; i++) {
Jan-Bernd Themann7a291082006-09-13 17:44:31 +02002364 ret = ehea_activate_qp(port->adapter, port->port_res[i].qp);
2365 if (ret) {
Joe Perches8c4877a2010-12-13 10:05:14 -08002366 netdev_err(dev, "activate_qp failed\n");
Jan-Bernd Themann7a291082006-09-13 17:44:31 +02002367 goto out_free_irqs;
2368 }
2369 }
2370
Doug Maxey508d2b52008-01-31 20:20:49 -06002371 for (i = 0; i < port->num_def_qps; i++) {
Jan-Bernd Themann7a291082006-09-13 17:44:31 +02002372 ret = ehea_fill_port_res(&port->port_res[i]);
2373 if (ret) {
Joe Perches8c4877a2010-12-13 10:05:14 -08002374 netdev_err(dev, "out_free_irqs\n");
Jan-Bernd Themann7a291082006-09-13 17:44:31 +02002375 goto out_free_irqs;
2376 }
2377 }
2378
Thomas Klein21eee2d2008-02-13 16:18:33 +01002379 ret = ehea_broadcast_reg_helper(port, H_REG_BCMC);
2380 if (ret) {
2381 ret = -EIO;
2382 goto out_free_irqs;
2383 }
2384
Jan-Bernd Themann7a291082006-09-13 17:44:31 +02002385 port->state = EHEA_PORT_UP;
Thomas Klein21eee2d2008-02-13 16:18:33 +01002386
2387 ret = 0;
Jan-Bernd Themann7a291082006-09-13 17:44:31 +02002388 goto out;
2389
2390out_free_irqs:
2391 ehea_free_interrupts(dev);
2392
Jan-Bernd Themann7a291082006-09-13 17:44:31 +02002393out_clean_pr:
2394 ehea_clean_all_portres(port);
2395out:
Thomas Klein44c82152007-07-11 16:32:00 +02002396 if (ret)
Joe Perches8c4877a2010-12-13 10:05:14 -08002397 netdev_info(dev, "Failed starting. ret=%i\n", ret);
Thomas Klein44c82152007-07-11 16:32:00 +02002398
Thomas Klein21eee2d2008-02-13 16:18:33 +01002399 ehea_update_bcmc_registrations();
Thomas Klein21eee2d2008-02-13 16:18:33 +01002400 ehea_update_firmware_handles();
Thomas Klein21eee2d2008-02-13 16:18:33 +01002401
Jan-Bernd Themann7a291082006-09-13 17:44:31 +02002402 return ret;
2403}
2404
Stephen Hemmingerbea33482007-10-03 16:41:36 -07002405static void port_napi_disable(struct ehea_port *port)
2406{
2407 int i;
2408
Anton Blanchard723f28e2011-10-14 05:31:01 +00002409 for (i = 0; i < port->num_def_qps; i++)
Stephen Hemmingerbea33482007-10-03 16:41:36 -07002410 napi_disable(&port->port_res[i].napi);
2411}
2412
2413static void port_napi_enable(struct ehea_port *port)
2414{
2415 int i;
2416
Anton Blanchard723f28e2011-10-14 05:31:01 +00002417 for (i = 0; i < port->num_def_qps; i++)
Stephen Hemmingerbea33482007-10-03 16:41:36 -07002418 napi_enable(&port->port_res[i].napi);
2419}
2420
Jan-Bernd Themann7a291082006-09-13 17:44:31 +02002421static int ehea_open(struct net_device *dev)
2422{
2423 int ret;
2424 struct ehea_port *port = netdev_priv(dev);
2425
Daniel Walkera5af6ad2008-03-28 14:41:28 -07002426 mutex_lock(&port->port_lock);
Jan-Bernd Themann7a291082006-09-13 17:44:31 +02002427
Joe Perches8c4877a2010-12-13 10:05:14 -08002428 netif_info(port, ifup, dev, "enabling port\n");
Jan-Bernd Themann7a291082006-09-13 17:44:31 +02002429
2430 ret = ehea_up(dev);
Stephen Hemmingerbea33482007-10-03 16:41:36 -07002431 if (!ret) {
2432 port_napi_enable(port);
Anton Blanchardb9564462011-10-14 05:30:59 +00002433 netif_tx_start_all_queues(dev);
Stephen Hemmingerbea33482007-10-03 16:41:36 -07002434 }
Jan-Bernd Themann7a291082006-09-13 17:44:31 +02002435
Daniel Walkera5af6ad2008-03-28 14:41:28 -07002436 mutex_unlock(&port->port_lock);
brenohl@br.ibm.com2aefcad2011-09-26 10:11:03 +00002437 schedule_delayed_work(&port->stats_work, msecs_to_jiffies(1000));
Jan-Bernd Themann7a291082006-09-13 17:44:31 +02002438
2439 return ret;
2440}
2441
2442static int ehea_down(struct net_device *dev)
2443{
Stephen Hemmingerbea33482007-10-03 16:41:36 -07002444 int ret;
Jan-Bernd Themann7a291082006-09-13 17:44:31 +02002445 struct ehea_port *port = netdev_priv(dev);
2446
2447 if (port->state == EHEA_PORT_DOWN)
2448 return 0;
2449
2450 ehea_drop_multicast_list(dev);
Thomas Klein21eee2d2008-02-13 16:18:33 +01002451 ehea_broadcast_reg_helper(port, H_DEREG_BCMC);
2452
Jan-Bernd Themann7a291082006-09-13 17:44:31 +02002453 ehea_free_interrupts(dev);
2454
Jan-Bernd Themann7a291082006-09-13 17:44:31 +02002455 port->state = EHEA_PORT_DOWN;
Thomas Klein44c82152007-07-11 16:32:00 +02002456
Thomas Klein21eee2d2008-02-13 16:18:33 +01002457 ehea_update_bcmc_registrations();
Thomas Klein21eee2d2008-02-13 16:18:33 +01002458
Thomas Klein44c82152007-07-11 16:32:00 +02002459 ret = ehea_clean_all_portres(port);
2460 if (ret)
Joe Perches8c4877a2010-12-13 10:05:14 -08002461 netdev_info(dev, "Failed freeing resources. ret=%i\n", ret);
Thomas Klein44c82152007-07-11 16:32:00 +02002462
Thomas Klein21eee2d2008-02-13 16:18:33 +01002463 ehea_update_firmware_handles();
Thomas Klein21eee2d2008-02-13 16:18:33 +01002464
Jan-Bernd Themann7a291082006-09-13 17:44:31 +02002465 return ret;
2466}
2467
2468static int ehea_stop(struct net_device *dev)
2469{
2470 int ret;
2471 struct ehea_port *port = netdev_priv(dev);
2472
Joe Perches8c4877a2010-12-13 10:05:14 -08002473 netif_info(port, ifdown, dev, "disabling port\n");
Jan-Bernd Themann7a291082006-09-13 17:44:31 +02002474
Jan-Bernd Themann2f69ae02008-07-03 15:18:51 +01002475 set_bit(__EHEA_DISABLE_PORT_RESET, &port->flags);
David S. Miller4bb073c2008-06-12 02:22:02 -07002476 cancel_work_sync(&port->reset_task);
brenohl@br.ibm.com2aefcad2011-09-26 10:11:03 +00002477 cancel_delayed_work_sync(&port->stats_work);
Daniel Walkera5af6ad2008-03-28 14:41:28 -07002478 mutex_lock(&port->port_lock);
Anton Blanchardb9564462011-10-14 05:30:59 +00002479 netif_tx_stop_all_queues(dev);
Jan-Bernd Themann0173b792007-10-24 11:53:34 +02002480 port_napi_disable(port);
Jan-Bernd Themann7a291082006-09-13 17:44:31 +02002481 ret = ehea_down(dev);
Daniel Walkera5af6ad2008-03-28 14:41:28 -07002482 mutex_unlock(&port->port_lock);
Jan-Bernd Themann2f69ae02008-07-03 15:18:51 +01002483 clear_bit(__EHEA_DISABLE_PORT_RESET, &port->flags);
Jan-Bernd Themann7a291082006-09-13 17:44:31 +02002484 return ret;
2485}
2486
Andrew Morton22559c52008-04-18 13:50:39 -07002487static void ehea_purge_sq(struct ehea_qp *orig_qp)
Jan-Bernd Themann2c694482007-10-01 16:33:18 +02002488{
2489 struct ehea_qp qp = *orig_qp;
2490 struct ehea_qp_init_attr *init_attr = &qp.init_attr;
2491 struct ehea_swqe *swqe;
2492 int wqe_index;
2493 int i;
2494
2495 for (i = 0; i < init_attr->act_nr_send_wqes; i++) {
2496 swqe = ehea_get_swqe(&qp, &wqe_index);
2497 swqe->tx_control |= EHEA_SWQE_PURGE;
2498 }
2499}
2500
Andrew Morton22559c52008-04-18 13:50:39 -07002501static void ehea_flush_sq(struct ehea_port *port)
Thomas Klein44fb3122008-04-04 15:04:53 +02002502{
2503 int i;
2504
Anton Blanchard723f28e2011-10-14 05:31:01 +00002505 for (i = 0; i < port->num_def_qps; i++) {
Thomas Klein44fb3122008-04-04 15:04:53 +02002506 struct ehea_port_res *pr = &port->port_res[i];
2507 int swqe_max = pr->sq_skba_size - 2 - pr->swqe_ll_count;
Breno Leitao5b27d422010-10-05 13:16:22 +00002508 int ret;
2509
2510 ret = wait_event_timeout(port->swqe_avail_wq,
2511 atomic_read(&pr->swqe_avail) >= swqe_max,
2512 msecs_to_jiffies(100));
2513
2514 if (!ret) {
Joe Perches8c4877a2010-12-13 10:05:14 -08002515 pr_err("WARNING: sq not flushed completely\n");
Breno Leitao5b27d422010-10-05 13:16:22 +00002516 break;
Thomas Klein44fb3122008-04-04 15:04:53 +02002517 }
2518 }
2519}
2520
Jan-Bernd Themann2c694482007-10-01 16:33:18 +02002521int ehea_stop_qps(struct net_device *dev)
2522{
2523 struct ehea_port *port = netdev_priv(dev);
2524 struct ehea_adapter *adapter = port->adapter;
Doug Maxey508d2b52008-01-31 20:20:49 -06002525 struct hcp_modify_qp_cb0 *cb0;
Jan-Bernd Themann2c694482007-10-01 16:33:18 +02002526 int ret = -EIO;
2527 int dret;
2528 int i;
2529 u64 hret;
2530 u64 dummy64 = 0;
2531 u16 dummy16 = 0;
2532
Thomas Klein3faf2692009-01-21 14:45:33 -08002533 cb0 = (void *)get_zeroed_page(GFP_KERNEL);
Jan-Bernd Themann2c694482007-10-01 16:33:18 +02002534 if (!cb0) {
2535 ret = -ENOMEM;
2536 goto out;
2537 }
2538
Anton Blanchard723f28e2011-10-14 05:31:01 +00002539 for (i = 0; i < (port->num_def_qps); i++) {
Jan-Bernd Themann2c694482007-10-01 16:33:18 +02002540 struct ehea_port_res *pr = &port->port_res[i];
2541 struct ehea_qp *qp = pr->qp;
2542
2543 /* Purge send queue */
2544 ehea_purge_sq(qp);
2545
2546 /* Disable queue pair */
2547 hret = ehea_h_query_ehea_qp(adapter->handle, 0, qp->fw_handle,
2548 EHEA_BMASK_SET(H_QPCB0_ALL, 0xFFFF),
2549 cb0);
2550 if (hret != H_SUCCESS) {
Joe Perches8c4877a2010-12-13 10:05:14 -08002551 pr_err("query_ehea_qp failed (1)\n");
Jan-Bernd Themann2c694482007-10-01 16:33:18 +02002552 goto out;
2553 }
2554
2555 cb0->qp_ctl_reg = (cb0->qp_ctl_reg & H_QP_CR_RES_STATE) << 8;
2556 cb0->qp_ctl_reg &= ~H_QP_CR_ENABLED;
2557
2558 hret = ehea_h_modify_ehea_qp(adapter->handle, 0, qp->fw_handle,
2559 EHEA_BMASK_SET(H_QPCB0_QP_CTL_REG,
2560 1), cb0, &dummy64,
2561 &dummy64, &dummy16, &dummy16);
2562 if (hret != H_SUCCESS) {
Joe Perches8c4877a2010-12-13 10:05:14 -08002563 pr_err("modify_ehea_qp failed (1)\n");
Jan-Bernd Themann2c694482007-10-01 16:33:18 +02002564 goto out;
2565 }
2566
2567 hret = ehea_h_query_ehea_qp(adapter->handle, 0, qp->fw_handle,
2568 EHEA_BMASK_SET(H_QPCB0_ALL, 0xFFFF),
2569 cb0);
2570 if (hret != H_SUCCESS) {
Joe Perches8c4877a2010-12-13 10:05:14 -08002571 pr_err("query_ehea_qp failed (2)\n");
Jan-Bernd Themann2c694482007-10-01 16:33:18 +02002572 goto out;
2573 }
2574
2575 /* deregister shared memory regions */
2576 dret = ehea_rem_smrs(pr);
2577 if (dret) {
Joe Perches8c4877a2010-12-13 10:05:14 -08002578 pr_err("unreg shared memory region failed\n");
Jan-Bernd Themann2c694482007-10-01 16:33:18 +02002579 goto out;
2580 }
2581 }
2582
2583 ret = 0;
2584out:
Thomas Klein3faf2692009-01-21 14:45:33 -08002585 free_page((unsigned long)cb0);
Jan-Bernd Themann2c694482007-10-01 16:33:18 +02002586
2587 return ret;
2588}
2589
Doug Maxey508d2b52008-01-31 20:20:49 -06002590void ehea_update_rqs(struct ehea_qp *orig_qp, struct ehea_port_res *pr)
Jan-Bernd Themann2c694482007-10-01 16:33:18 +02002591{
2592 struct ehea_qp qp = *orig_qp;
2593 struct ehea_qp_init_attr *init_attr = &qp.init_attr;
2594 struct ehea_rwqe *rwqe;
2595 struct sk_buff **skba_rq2 = pr->rq2_skba.arr;
2596 struct sk_buff **skba_rq3 = pr->rq3_skba.arr;
2597 struct sk_buff *skb;
2598 u32 lkey = pr->recv_mr.lkey;
2599
2600
2601 int i;
2602 int index;
2603
2604 for (i = 0; i < init_attr->act_nr_rwqes_rq2 + 1; i++) {
2605 rwqe = ehea_get_next_rwqe(&qp, 2);
2606 rwqe->sg_list[0].l_key = lkey;
2607 index = EHEA_BMASK_GET(EHEA_WR_ID_INDEX, rwqe->wr_id);
2608 skb = skba_rq2[index];
2609 if (skb)
2610 rwqe->sg_list[0].vaddr = ehea_map_vaddr(skb->data);
2611 }
2612
2613 for (i = 0; i < init_attr->act_nr_rwqes_rq3 + 1; i++) {
2614 rwqe = ehea_get_next_rwqe(&qp, 3);
2615 rwqe->sg_list[0].l_key = lkey;
2616 index = EHEA_BMASK_GET(EHEA_WR_ID_INDEX, rwqe->wr_id);
2617 skb = skba_rq3[index];
2618 if (skb)
2619 rwqe->sg_list[0].vaddr = ehea_map_vaddr(skb->data);
2620 }
2621}
2622
2623int ehea_restart_qps(struct net_device *dev)
2624{
2625 struct ehea_port *port = netdev_priv(dev);
2626 struct ehea_adapter *adapter = port->adapter;
2627 int ret = 0;
2628 int i;
2629
Doug Maxey508d2b52008-01-31 20:20:49 -06002630 struct hcp_modify_qp_cb0 *cb0;
Jan-Bernd Themann2c694482007-10-01 16:33:18 +02002631 u64 hret;
2632 u64 dummy64 = 0;
2633 u16 dummy16 = 0;
2634
Thomas Klein3faf2692009-01-21 14:45:33 -08002635 cb0 = (void *)get_zeroed_page(GFP_KERNEL);
Jan-Bernd Themann2c694482007-10-01 16:33:18 +02002636 if (!cb0) {
2637 ret = -ENOMEM;
2638 goto out;
2639 }
2640
Anton Blanchard723f28e2011-10-14 05:31:01 +00002641 for (i = 0; i < (port->num_def_qps); i++) {
Jan-Bernd Themann2c694482007-10-01 16:33:18 +02002642 struct ehea_port_res *pr = &port->port_res[i];
2643 struct ehea_qp *qp = pr->qp;
2644
2645 ret = ehea_gen_smrs(pr);
2646 if (ret) {
Joe Perches8c4877a2010-12-13 10:05:14 -08002647 netdev_err(dev, "creation of shared memory regions failed\n");
Jan-Bernd Themann2c694482007-10-01 16:33:18 +02002648 goto out;
2649 }
2650
2651 ehea_update_rqs(qp, pr);
2652
2653 /* Enable queue pair */
2654 hret = ehea_h_query_ehea_qp(adapter->handle, 0, qp->fw_handle,
2655 EHEA_BMASK_SET(H_QPCB0_ALL, 0xFFFF),
2656 cb0);
2657 if (hret != H_SUCCESS) {
Joe Perches8c4877a2010-12-13 10:05:14 -08002658 netdev_err(dev, "query_ehea_qp failed (1)\n");
Jan-Bernd Themann2c694482007-10-01 16:33:18 +02002659 goto out;
2660 }
2661
2662 cb0->qp_ctl_reg = (cb0->qp_ctl_reg & H_QP_CR_RES_STATE) << 8;
2663 cb0->qp_ctl_reg |= H_QP_CR_ENABLED;
2664
2665 hret = ehea_h_modify_ehea_qp(adapter->handle, 0, qp->fw_handle,
2666 EHEA_BMASK_SET(H_QPCB0_QP_CTL_REG,
2667 1), cb0, &dummy64,
2668 &dummy64, &dummy16, &dummy16);
2669 if (hret != H_SUCCESS) {
Joe Perches8c4877a2010-12-13 10:05:14 -08002670 netdev_err(dev, "modify_ehea_qp failed (1)\n");
Jan-Bernd Themann2c694482007-10-01 16:33:18 +02002671 goto out;
2672 }
2673
2674 hret = ehea_h_query_ehea_qp(adapter->handle, 0, qp->fw_handle,
2675 EHEA_BMASK_SET(H_QPCB0_ALL, 0xFFFF),
2676 cb0);
2677 if (hret != H_SUCCESS) {
Joe Perches8c4877a2010-12-13 10:05:14 -08002678 netdev_err(dev, "query_ehea_qp failed (2)\n");
Jan-Bernd Themann2c694482007-10-01 16:33:18 +02002679 goto out;
2680 }
2681
2682 /* refill entire queue */
2683 ehea_refill_rq1(pr, pr->rq1_skba.index, 0);
2684 ehea_refill_rq2(pr, 0);
2685 ehea_refill_rq3(pr, 0);
2686 }
2687out:
Thomas Klein3faf2692009-01-21 14:45:33 -08002688 free_page((unsigned long)cb0);
Jan-Bernd Themann2c694482007-10-01 16:33:18 +02002689
2690 return ret;
2691}
2692
David Howellsc4028952006-11-22 14:57:56 +00002693static void ehea_reset_port(struct work_struct *work)
Jan-Bernd Themann7a291082006-09-13 17:44:31 +02002694{
2695 int ret;
David Howellsc4028952006-11-22 14:57:56 +00002696 struct ehea_port *port =
2697 container_of(work, struct ehea_port, reset_task);
2698 struct net_device *dev = port->netdev;
Jan-Bernd Themann7a291082006-09-13 17:44:31 +02002699
Jan-Bernd Themann099473c2010-06-15 05:35:42 +00002700 mutex_lock(&dlpar_mem_lock);
Jan-Bernd Themann7a291082006-09-13 17:44:31 +02002701 port->resets++;
Daniel Walkera5af6ad2008-03-28 14:41:28 -07002702 mutex_lock(&port->port_lock);
Anton Blanchardb9564462011-10-14 05:30:59 +00002703 netif_tx_disable(dev);
Stephen Hemmingerbea33482007-10-03 16:41:36 -07002704
2705 port_napi_disable(port);
Jan-Bernd Themann7a291082006-09-13 17:44:31 +02002706
Thomas Klein44c82152007-07-11 16:32:00 +02002707 ehea_down(dev);
Jan-Bernd Themann7a291082006-09-13 17:44:31 +02002708
2709 ret = ehea_up(dev);
Thomas Klein44c82152007-07-11 16:32:00 +02002710 if (ret)
Jan-Bernd Themann7a291082006-09-13 17:44:31 +02002711 goto out;
Jan-Bernd Themann7a291082006-09-13 17:44:31 +02002712
Jan-Bernd Themann2c694482007-10-01 16:33:18 +02002713 ehea_set_multicast_list(dev);
2714
Joe Perches8c4877a2010-12-13 10:05:14 -08002715 netif_info(port, timer, dev, "reset successful\n");
Jan-Bernd Themann7a291082006-09-13 17:44:31 +02002716
Stephen Hemmingerbea33482007-10-03 16:41:36 -07002717 port_napi_enable(port);
2718
Anton Blanchardb9564462011-10-14 05:30:59 +00002719 netif_tx_wake_all_queues(dev);
Jan-Bernd Themann7a291082006-09-13 17:44:31 +02002720out:
Daniel Walkera5af6ad2008-03-28 14:41:28 -07002721 mutex_unlock(&port->port_lock);
Jan-Bernd Themann099473c2010-06-15 05:35:42 +00002722 mutex_unlock(&dlpar_mem_lock);
Jan-Bernd Themann7a291082006-09-13 17:44:31 +02002723}
2724
Tejun Heo3d6b8922010-12-12 16:45:14 +01002725static void ehea_rereg_mrs(void)
Thomas Klein44c82152007-07-11 16:32:00 +02002726{
2727 int ret, i;
2728 struct ehea_adapter *adapter;
2729
Joe Perches8c4877a2010-12-13 10:05:14 -08002730 pr_info("LPAR memory changed - re-initializing driver\n");
Thomas Klein44c82152007-07-11 16:32:00 +02002731
2732 list_for_each_entry(adapter, &adapter_list, list)
2733 if (adapter->active_ports) {
2734 /* Shutdown all ports */
2735 for (i = 0; i < EHEA_MAX_PORTS; i++) {
2736 struct ehea_port *port = adapter->port[i];
Daniel Walkera5af6ad2008-03-28 14:41:28 -07002737 struct net_device *dev;
Thomas Klein44c82152007-07-11 16:32:00 +02002738
Daniel Walkera5af6ad2008-03-28 14:41:28 -07002739 if (!port)
2740 continue;
Thomas Klein44c82152007-07-11 16:32:00 +02002741
Daniel Walkera5af6ad2008-03-28 14:41:28 -07002742 dev = port->netdev;
2743
2744 if (dev->flags & IFF_UP) {
2745 mutex_lock(&port->port_lock);
Anton Blanchardb9564462011-10-14 05:30:59 +00002746 netif_tx_disable(dev);
David S. Millerdf39e8b2008-04-14 02:30:23 -07002747 ehea_flush_sq(port);
Daniel Walkera5af6ad2008-03-28 14:41:28 -07002748 ret = ehea_stop_qps(dev);
2749 if (ret) {
2750 mutex_unlock(&port->port_lock);
2751 goto out;
Thomas Klein44c82152007-07-11 16:32:00 +02002752 }
Daniel Walkera5af6ad2008-03-28 14:41:28 -07002753 port_napi_disable(port);
2754 mutex_unlock(&port->port_lock);
Thomas Klein44c82152007-07-11 16:32:00 +02002755 }
Andre Detsch2928db42010-08-17 05:49:12 +00002756 reset_sq_restart_flag(port);
Thomas Klein44c82152007-07-11 16:32:00 +02002757 }
2758
2759 /* Unregister old memory region */
2760 ret = ehea_rem_mr(&adapter->mr);
2761 if (ret) {
Joe Perches8c4877a2010-12-13 10:05:14 -08002762 pr_err("unregister MR failed - driver inoperable!\n");
Thomas Klein44c82152007-07-11 16:32:00 +02002763 goto out;
2764 }
2765 }
2766
Thomas Klein44c82152007-07-11 16:32:00 +02002767 clear_bit(__EHEA_STOP_XFER, &ehea_driver_flags);
2768
2769 list_for_each_entry(adapter, &adapter_list, list)
2770 if (adapter->active_ports) {
2771 /* Register new memory region */
2772 ret = ehea_reg_kernel_mr(adapter, &adapter->mr);
2773 if (ret) {
Joe Perches8c4877a2010-12-13 10:05:14 -08002774 pr_err("register MR failed - driver inoperable!\n");
Thomas Klein44c82152007-07-11 16:32:00 +02002775 goto out;
2776 }
2777
2778 /* Restart all ports */
2779 for (i = 0; i < EHEA_MAX_PORTS; i++) {
2780 struct ehea_port *port = adapter->port[i];
2781
2782 if (port) {
2783 struct net_device *dev = port->netdev;
2784
2785 if (dev->flags & IFF_UP) {
Daniel Walkera5af6ad2008-03-28 14:41:28 -07002786 mutex_lock(&port->port_lock);
Jan-Bernd Themann2c694482007-10-01 16:33:18 +02002787 ret = ehea_restart_qps(dev);
Breno Leitao6f4d6dc2011-04-19 09:39:22 +00002788 if (!ret) {
2789 check_sqs(port);
2790 port_napi_enable(port);
Anton Blanchardb9564462011-10-14 05:30:59 +00002791 netif_tx_wake_all_queues(dev);
Breno Leitao6f4d6dc2011-04-19 09:39:22 +00002792 } else {
2793 netdev_err(dev, "Unable to restart QPS\n");
2794 }
Daniel Walkera5af6ad2008-03-28 14:41:28 -07002795 mutex_unlock(&port->port_lock);
Thomas Klein44c82152007-07-11 16:32:00 +02002796 }
2797 }
2798 }
2799 }
Joe Perches8c4877a2010-12-13 10:05:14 -08002800 pr_info("re-initializing driver complete\n");
Thomas Klein44c82152007-07-11 16:32:00 +02002801out:
2802 return;
2803}
2804
Jan-Bernd Themann7a291082006-09-13 17:44:31 +02002805static void ehea_tx_watchdog(struct net_device *dev)
2806{
2807 struct ehea_port *port = netdev_priv(dev);
2808
Jan-Bernd Themann2c694482007-10-01 16:33:18 +02002809 if (netif_carrier_ok(dev) &&
2810 !test_bit(__EHEA_STOP_XFER, &ehea_driver_flags))
Jan-Bernd Themann2f69ae02008-07-03 15:18:51 +01002811 ehea_schedule_port_reset(port);
Jan-Bernd Themann7a291082006-09-13 17:44:31 +02002812}
2813
2814int ehea_sense_adapter_attr(struct ehea_adapter *adapter)
2815{
2816 struct hcp_query_ehea *cb;
2817 u64 hret;
2818 int ret;
2819
Thomas Klein3faf2692009-01-21 14:45:33 -08002820 cb = (void *)get_zeroed_page(GFP_KERNEL);
Jan-Bernd Themann7a291082006-09-13 17:44:31 +02002821 if (!cb) {
2822 ret = -ENOMEM;
2823 goto out;
2824 }
2825
2826 hret = ehea_h_query_ehea(adapter->handle, cb);
2827
2828 if (hret != H_SUCCESS) {
2829 ret = -EIO;
2830 goto out_herr;
2831 }
2832
Jan-Bernd Themann7a291082006-09-13 17:44:31 +02002833 adapter->max_mc_mac = cb->max_mc_mac - 1;
2834 ret = 0;
2835
2836out_herr:
Thomas Klein3faf2692009-01-21 14:45:33 -08002837 free_page((unsigned long)cb);
Jan-Bernd Themann7a291082006-09-13 17:44:31 +02002838out:
2839 return ret;
2840}
2841
Jan-Bernd Themann1acf2312007-02-28 18:34:02 +01002842int ehea_get_jumboframe_status(struct ehea_port *port, int *jumbo)
2843{
2844 struct hcp_ehea_port_cb4 *cb4;
2845 u64 hret;
2846 int ret = 0;
2847
2848 *jumbo = 0;
2849
2850 /* (Try to) enable *jumbo frames */
Thomas Klein3faf2692009-01-21 14:45:33 -08002851 cb4 = (void *)get_zeroed_page(GFP_KERNEL);
Jan-Bernd Themann1acf2312007-02-28 18:34:02 +01002852 if (!cb4) {
Joe Perches8c4877a2010-12-13 10:05:14 -08002853 pr_err("no mem for cb4\n");
Jan-Bernd Themann1acf2312007-02-28 18:34:02 +01002854 ret = -ENOMEM;
2855 goto out;
2856 } else {
2857 hret = ehea_h_query_ehea_port(port->adapter->handle,
2858 port->logical_port_id,
2859 H_PORT_CB4,
2860 H_PORT_CB4_JUMBO, cb4);
2861 if (hret == H_SUCCESS) {
2862 if (cb4->jumbo_frame)
2863 *jumbo = 1;
2864 else {
2865 cb4->jumbo_frame = 1;
2866 hret = ehea_h_modify_ehea_port(port->adapter->
2867 handle,
2868 port->
2869 logical_port_id,
2870 H_PORT_CB4,
2871 H_PORT_CB4_JUMBO,
2872 cb4);
2873 if (hret == H_SUCCESS)
2874 *jumbo = 1;
2875 }
2876 } else
2877 ret = -EINVAL;
2878
Thomas Klein3faf2692009-01-21 14:45:33 -08002879 free_page((unsigned long)cb4);
Jan-Bernd Themann1acf2312007-02-28 18:34:02 +01002880 }
2881out:
2882 return ret;
2883}
2884
2885static ssize_t ehea_show_port_id(struct device *dev,
2886 struct device_attribute *attr, char *buf)
2887{
2888 struct ehea_port *port = container_of(dev, struct ehea_port, ofdev.dev);
Jan-Bernd Themanna8e34fd2007-08-22 16:20:58 +02002889 return sprintf(buf, "%d", port->logical_port_id);
Jan-Bernd Themann1acf2312007-02-28 18:34:02 +01002890}
2891
2892static DEVICE_ATTR(log_port_id, S_IRUSR | S_IRGRP | S_IROTH, ehea_show_port_id,
2893 NULL);
2894
2895static void __devinit logical_port_release(struct device *dev)
2896{
2897 struct ehea_port *port = container_of(dev, struct ehea_port, ofdev.dev);
Grant Likely61c7a082010-04-13 16:12:29 -07002898 of_node_put(port->ofdev.dev.of_node);
Jan-Bernd Themann1acf2312007-02-28 18:34:02 +01002899}
2900
2901static struct device *ehea_register_port(struct ehea_port *port,
2902 struct device_node *dn)
Jan-Bernd Themann7a291082006-09-13 17:44:31 +02002903{
2904 int ret;
Jan-Bernd Themann1acf2312007-02-28 18:34:02 +01002905
Grant Likely61c7a082010-04-13 16:12:29 -07002906 port->ofdev.dev.of_node = of_node_get(dn);
Joachim Fenkes6b08f3a2007-09-26 19:45:51 +10002907 port->ofdev.dev.parent = &port->adapter->ofdev->dev;
Thomas Kleind1dea382007-04-26 11:56:13 +02002908 port->ofdev.dev.bus = &ibmebus_bus_type;
Jan-Bernd Themann1acf2312007-02-28 18:34:02 +01002909
Kay Sieversdb1d7bf2009-01-26 21:12:58 -08002910 dev_set_name(&port->ofdev.dev, "port%d", port_name_cnt++);
Jan-Bernd Themann1acf2312007-02-28 18:34:02 +01002911 port->ofdev.dev.release = logical_port_release;
2912
2913 ret = of_device_register(&port->ofdev);
2914 if (ret) {
Joe Perches8c4877a2010-12-13 10:05:14 -08002915 pr_err("failed to register device. ret=%d\n", ret);
Jan-Bernd Themann1acf2312007-02-28 18:34:02 +01002916 goto out;
2917 }
2918
2919 ret = device_create_file(&port->ofdev.dev, &dev_attr_log_port_id);
Jan-Bernd Themannd1d25aa2007-07-02 13:00:46 +02002920 if (ret) {
Joe Perches8c4877a2010-12-13 10:05:14 -08002921 pr_err("failed to register attributes, ret=%d\n", ret);
Jan-Bernd Themann1acf2312007-02-28 18:34:02 +01002922 goto out_unreg_of_dev;
2923 }
Jan-Bernd Themanne542aa62007-03-22 17:50:24 +01002924
Jan-Bernd Themann1acf2312007-02-28 18:34:02 +01002925 return &port->ofdev.dev;
2926
2927out_unreg_of_dev:
2928 of_device_unregister(&port->ofdev);
2929out:
2930 return NULL;
2931}
2932
2933static void ehea_unregister_port(struct ehea_port *port)
2934{
2935 device_remove_file(&port->ofdev.dev, &dev_attr_log_port_id);
2936 of_device_unregister(&port->ofdev);
2937}
2938
Thomas Klein086c1b22009-01-21 14:43:59 -08002939static const struct net_device_ops ehea_netdev_ops = {
2940 .ndo_open = ehea_open,
2941 .ndo_stop = ehea_stop,
2942 .ndo_start_xmit = ehea_start_xmit,
2943#ifdef CONFIG_NET_POLL_CONTROLLER
2944 .ndo_poll_controller = ehea_netpoll,
2945#endif
Anton Blanchard239c5622011-10-14 05:31:09 +00002946 .ndo_get_stats64 = ehea_get_stats64,
Thomas Klein086c1b22009-01-21 14:43:59 -08002947 .ndo_set_mac_address = ehea_set_mac_addr,
Ben Hutchings240c1022009-07-09 17:54:35 +00002948 .ndo_validate_addr = eth_validate_addr,
Jiri Pirkoafc4b132011-08-16 06:29:01 +00002949 .ndo_set_rx_mode = ehea_set_multicast_list,
Thomas Klein086c1b22009-01-21 14:43:59 -08002950 .ndo_change_mtu = ehea_change_mtu,
Thomas Klein086c1b22009-01-21 14:43:59 -08002951 .ndo_vlan_rx_add_vid = ehea_vlan_rx_add_vid,
Alexander Beregalov32e8f9a2009-04-14 15:18:00 -07002952 .ndo_vlan_rx_kill_vid = ehea_vlan_rx_kill_vid,
2953 .ndo_tx_timeout = ehea_tx_watchdog,
Thomas Klein086c1b22009-01-21 14:43:59 -08002954};
2955
Jan-Bernd Themann1acf2312007-02-28 18:34:02 +01002956struct ehea_port *ehea_setup_single_port(struct ehea_adapter *adapter,
2957 u32 logical_port_id,
2958 struct device_node *dn)
2959{
2960 int ret;
2961 struct net_device *dev;
2962 struct ehea_port *port;
2963 struct device *port_dev;
2964 int jumbo;
2965
2966 /* allocate memory for the port structures */
Anton Blanchardb9564462011-10-14 05:30:59 +00002967 dev = alloc_etherdev_mq(sizeof(struct ehea_port), EHEA_MAX_PORT_RES);
Jan-Bernd Themann1acf2312007-02-28 18:34:02 +01002968
2969 if (!dev) {
Joe Perches8c4877a2010-12-13 10:05:14 -08002970 pr_err("no mem for net_device\n");
Jan-Bernd Themann1acf2312007-02-28 18:34:02 +01002971 ret = -ENOMEM;
2972 goto out_err;
2973 }
2974
2975 port = netdev_priv(dev);
Jan-Bernd Themann7a291082006-09-13 17:44:31 +02002976
Daniel Walkera5af6ad2008-03-28 14:41:28 -07002977 mutex_init(&port->port_lock);
Jan-Bernd Themann7a291082006-09-13 17:44:31 +02002978 port->state = EHEA_PORT_DOWN;
2979 port->sig_comp_iv = sq_entries / 10;
2980
Jan-Bernd Themann1acf2312007-02-28 18:34:02 +01002981 port->adapter = adapter;
2982 port->netdev = dev;
2983 port->logical_port_id = logical_port_id;
Jan-Bernd Themann7a291082006-09-13 17:44:31 +02002984
Jan-Bernd Themann1acf2312007-02-28 18:34:02 +01002985 port->msg_enable = netif_msg_init(msg_level, EHEA_MSG_DEFAULT);
Jan-Bernd Themann7a291082006-09-13 17:44:31 +02002986
2987 port->mc_list = kzalloc(sizeof(struct ehea_mc_list), GFP_KERNEL);
2988 if (!port->mc_list) {
2989 ret = -ENOMEM;
Jan-Bernd Themann1acf2312007-02-28 18:34:02 +01002990 goto out_free_ethdev;
Jan-Bernd Themann7a291082006-09-13 17:44:31 +02002991 }
2992
2993 INIT_LIST_HEAD(&port->mc_list->list);
2994
Jan-Bernd Themann7a291082006-09-13 17:44:31 +02002995 ret = ehea_sense_port_attr(port);
2996 if (ret)
Jan-Bernd Themann1acf2312007-02-28 18:34:02 +01002997 goto out_free_mc_list;
Jan-Bernd Themann7a291082006-09-13 17:44:31 +02002998
Anton Blanchardb9564462011-10-14 05:30:59 +00002999 netif_set_real_num_rx_queues(dev, port->num_def_qps);
Anton Blanchard723f28e2011-10-14 05:31:01 +00003000 netif_set_real_num_tx_queues(dev, port->num_def_qps);
Anton Blanchardb9564462011-10-14 05:30:59 +00003001
Jan-Bernd Themann1acf2312007-02-28 18:34:02 +01003002 port_dev = ehea_register_port(port, dn);
3003 if (!port_dev)
3004 goto out_free_mc_list;
Thomas Klein9c750b72007-01-29 18:44:01 +01003005
Jan-Bernd Themann1acf2312007-02-28 18:34:02 +01003006 SET_NETDEV_DEV(dev, port_dev);
Jan-Bernd Themann7a291082006-09-13 17:44:31 +02003007
3008 /* initialize net_device structure */
Jan-Bernd Themann7a291082006-09-13 17:44:31 +02003009 memcpy(dev->dev_addr, &port->mac_addr, ETH_ALEN);
3010
Thomas Klein086c1b22009-01-21 14:43:59 -08003011 dev->netdev_ops = &ehea_netdev_ops;
3012 ehea_set_ethtool_ops(dev);
3013
Anton Blanchardd695c332011-10-14 05:31:05 +00003014 dev->hw_features = NETIF_F_SG | NETIF_F_TSO
Michał Mirosławf4786a92011-04-17 00:15:47 +00003015 | NETIF_F_IP_CSUM | NETIF_F_HW_VLAN_TX | NETIF_F_LRO;
Jan-Bernd Themann7a291082006-09-13 17:44:31 +02003016 dev->features = NETIF_F_SG | NETIF_F_FRAGLIST | NETIF_F_TSO
Thomas Kleindc01c442008-03-19 13:55:43 +01003017 | NETIF_F_HIGHDMA | NETIF_F_IP_CSUM | NETIF_F_HW_VLAN_TX
Jan-Bernd Themann7a291082006-09-13 17:44:31 +02003018 | NETIF_F_HW_VLAN_RX | NETIF_F_HW_VLAN_FILTER
Anton Blanchard3f7947b2011-10-14 05:30:58 +00003019 | NETIF_F_RXCSUM;
Anton Blanchard076f2032011-10-14 05:31:03 +00003020 dev->vlan_features = NETIF_F_SG | NETIF_F_TSO | NETIF_F_HIGHDMA |
3021 NETIF_F_IP_CSUM;
Jan-Bernd Themann7a291082006-09-13 17:44:31 +02003022 dev->watchdog_timeo = EHEA_WATCH_DOG_TIMEOUT;
3023
David Howellsc4028952006-11-22 14:57:56 +00003024 INIT_WORK(&port->reset_task, ehea_reset_port);
brenohl@br.ibm.com2aefcad2011-09-26 10:11:03 +00003025 INIT_DELAYED_WORK(&port->stats_work, ehea_update_stats);
Jan-Bernd Themann7a291082006-09-13 17:44:31 +02003026
Anton Blanchard21ccc792011-05-10 16:17:10 +00003027 init_waitqueue_head(&port->swqe_avail_wq);
3028 init_waitqueue_head(&port->restart_wq);
3029
brenohl@br.ibm.com2aefcad2011-09-26 10:11:03 +00003030 memset(&port->stats, 0, sizeof(struct net_device_stats));
Jan-Bernd Themann7a291082006-09-13 17:44:31 +02003031 ret = register_netdev(dev);
3032 if (ret) {
Joe Perches8c4877a2010-12-13 10:05:14 -08003033 pr_err("register_netdev failed. ret=%d\n", ret);
Thomas Klein21eee2d2008-02-13 16:18:33 +01003034 goto out_unreg_port;
Jan-Bernd Themann7a291082006-09-13 17:44:31 +02003035 }
3036
Jan-Bernd Themann1acf2312007-02-28 18:34:02 +01003037 ret = ehea_get_jumboframe_status(port, &jumbo);
Jan-Bernd Themanne542aa62007-03-22 17:50:24 +01003038 if (ret)
Joe Perches8c4877a2010-12-13 10:05:14 -08003039 netdev_err(dev, "failed determining jumbo frame status\n");
Jan-Bernd Themann1acf2312007-02-28 18:34:02 +01003040
Joe Perches8c4877a2010-12-13 10:05:14 -08003041 netdev_info(dev, "Jumbo frames are %sabled\n",
3042 jumbo == 1 ? "en" : "dis");
Thomas Klein9c750b72007-01-29 18:44:01 +01003043
Thomas Klein44c82152007-07-11 16:32:00 +02003044 adapter->active_ports++;
3045
Jan-Bernd Themann1acf2312007-02-28 18:34:02 +01003046 return port;
Jan-Bernd Themann7a291082006-09-13 17:44:31 +02003047
Jan-Bernd Themann1acf2312007-02-28 18:34:02 +01003048out_unreg_port:
3049 ehea_unregister_port(port);
3050
3051out_free_mc_list:
Jan-Bernd Themann7a291082006-09-13 17:44:31 +02003052 kfree(port->mc_list);
Jan-Bernd Themann1acf2312007-02-28 18:34:02 +01003053
3054out_free_ethdev:
3055 free_netdev(dev);
3056
3057out_err:
Joe Perches8c4877a2010-12-13 10:05:14 -08003058 pr_err("setting up logical port with id=%d failed, ret=%d\n",
3059 logical_port_id, ret);
Jan-Bernd Themann1acf2312007-02-28 18:34:02 +01003060 return NULL;
3061}
3062
3063static void ehea_shutdown_single_port(struct ehea_port *port)
3064{
Brian King7fb1c2a2008-05-14 09:48:25 -05003065 struct ehea_adapter *adapter = port->adapter;
Tejun Heof5c35cc2010-12-12 16:45:14 +01003066
3067 cancel_work_sync(&port->reset_task);
brenohl@br.ibm.com2aefcad2011-09-26 10:11:03 +00003068 cancel_delayed_work_sync(&port->stats_work);
Jan-Bernd Themann1acf2312007-02-28 18:34:02 +01003069 unregister_netdev(port->netdev);
3070 ehea_unregister_port(port);
3071 kfree(port->mc_list);
3072 free_netdev(port->netdev);
Brian King7fb1c2a2008-05-14 09:48:25 -05003073 adapter->active_ports--;
Jan-Bernd Themann7a291082006-09-13 17:44:31 +02003074}
3075
3076static int ehea_setup_ports(struct ehea_adapter *adapter)
3077{
Jan-Bernd Themann1acf2312007-02-28 18:34:02 +01003078 struct device_node *lhea_dn;
3079 struct device_node *eth_dn = NULL;
Jan-Bernd Themannd1d25aa2007-07-02 13:00:46 +02003080
Stephen Rothwell9f9a3b82007-05-01 13:51:32 +10003081 const u32 *dn_log_port_id;
Jan-Bernd Themann1acf2312007-02-28 18:34:02 +01003082 int i = 0;
Jan-Bernd Themann7a291082006-09-13 17:44:31 +02003083
Grant Likely61c7a082010-04-13 16:12:29 -07003084 lhea_dn = adapter->ofdev->dev.of_node;
Jan-Bernd Themann1eef4e02007-03-22 17:49:42 +01003085 while ((eth_dn = of_get_next_child(lhea_dn, eth_dn))) {
Jan-Bernd Themanne542aa62007-03-22 17:50:24 +01003086
Stephen Rothwell40cd3a42007-05-01 13:54:02 +10003087 dn_log_port_id = of_get_property(eth_dn, "ibm,hea-port-no",
Jan-Bernd Themannd1d25aa2007-07-02 13:00:46 +02003088 NULL);
Jan-Bernd Themann1acf2312007-02-28 18:34:02 +01003089 if (!dn_log_port_id) {
Joe Perches8c4877a2010-12-13 10:05:14 -08003090 pr_err("bad device node: eth_dn name=%s\n",
3091 eth_dn->full_name);
Jan-Bernd Themann1acf2312007-02-28 18:34:02 +01003092 continue;
Jan-Bernd Themann7a291082006-09-13 17:44:31 +02003093 }
3094
Thomas Klein1211bb62007-04-26 11:56:43 +02003095 if (ehea_add_adapter_mr(adapter)) {
Joe Perches8c4877a2010-12-13 10:05:14 -08003096 pr_err("creating MR failed\n");
Thomas Klein1211bb62007-04-26 11:56:43 +02003097 of_node_put(eth_dn);
3098 return -EIO;
3099 }
3100
Jan-Bernd Themann1acf2312007-02-28 18:34:02 +01003101 adapter->port[i] = ehea_setup_single_port(adapter,
3102 *dn_log_port_id,
3103 eth_dn);
3104 if (adapter->port[i])
Joe Perches8c4877a2010-12-13 10:05:14 -08003105 netdev_info(adapter->port[i]->netdev,
3106 "logical port id #%d\n", *dn_log_port_id);
Thomas Klein1211bb62007-04-26 11:56:43 +02003107 else
3108 ehea_remove_adapter_mr(adapter);
3109
Jan-Bernd Themann1acf2312007-02-28 18:34:02 +01003110 i++;
Joe Perchesee289b62010-05-17 22:47:34 -07003111 }
Thomas Klein1211bb62007-04-26 11:56:43 +02003112 return 0;
Jan-Bernd Themann1acf2312007-02-28 18:34:02 +01003113}
3114
Jan-Bernd Themanne542aa62007-03-22 17:50:24 +01003115static struct device_node *ehea_get_eth_dn(struct ehea_adapter *adapter,
3116 u32 logical_port_id)
Jan-Bernd Themann1acf2312007-02-28 18:34:02 +01003117{
3118 struct device_node *lhea_dn;
3119 struct device_node *eth_dn = NULL;
Stephen Rothwell9f9a3b82007-05-01 13:51:32 +10003120 const u32 *dn_log_port_id;
Jan-Bernd Themann1acf2312007-02-28 18:34:02 +01003121
Grant Likely61c7a082010-04-13 16:12:29 -07003122 lhea_dn = adapter->ofdev->dev.of_node;
Jan-Bernd Themann1eef4e02007-03-22 17:49:42 +01003123 while ((eth_dn = of_get_next_child(lhea_dn, eth_dn))) {
Jan-Bernd Themanne542aa62007-03-22 17:50:24 +01003124
Stephen Rothwell40cd3a42007-05-01 13:54:02 +10003125 dn_log_port_id = of_get_property(eth_dn, "ibm,hea-port-no",
Jan-Bernd Themannd1d25aa2007-07-02 13:00:46 +02003126 NULL);
Jan-Bernd Themann1acf2312007-02-28 18:34:02 +01003127 if (dn_log_port_id)
3128 if (*dn_log_port_id == logical_port_id)
3129 return eth_dn;
Joe Perchesee289b62010-05-17 22:47:34 -07003130 }
Jan-Bernd Themann1acf2312007-02-28 18:34:02 +01003131
3132 return NULL;
3133}
3134
3135static ssize_t ehea_probe_port(struct device *dev,
3136 struct device_attribute *attr,
3137 const char *buf, size_t count)
3138{
Greg Kroah-Hartmanc7ae0112009-05-04 21:33:19 -07003139 struct ehea_adapter *adapter = dev_get_drvdata(dev);
Jan-Bernd Themann1acf2312007-02-28 18:34:02 +01003140 struct ehea_port *port;
3141 struct device_node *eth_dn = NULL;
3142 int i;
3143
3144 u32 logical_port_id;
3145
Jan-Bernd Themanna8e34fd2007-08-22 16:20:58 +02003146 sscanf(buf, "%d", &logical_port_id);
Jan-Bernd Themann1acf2312007-02-28 18:34:02 +01003147
3148 port = ehea_get_port(adapter, logical_port_id);
3149
3150 if (port) {
Joe Perches8c4877a2010-12-13 10:05:14 -08003151 netdev_info(port->netdev, "adding port with logical port id=%d failed: port already configured\n",
3152 logical_port_id);
Jan-Bernd Themann1acf2312007-02-28 18:34:02 +01003153 return -EINVAL;
3154 }
Jan-Bernd Themanne542aa62007-03-22 17:50:24 +01003155
Jan-Bernd Themann1acf2312007-02-28 18:34:02 +01003156 eth_dn = ehea_get_eth_dn(adapter, logical_port_id);
3157
3158 if (!eth_dn) {
Joe Perches8c4877a2010-12-13 10:05:14 -08003159 pr_info("no logical port with id %d found\n", logical_port_id);
Jan-Bernd Themann1acf2312007-02-28 18:34:02 +01003160 return -EINVAL;
3161 }
Jan-Bernd Themanne542aa62007-03-22 17:50:24 +01003162
Thomas Klein1211bb62007-04-26 11:56:43 +02003163 if (ehea_add_adapter_mr(adapter)) {
Joe Perches8c4877a2010-12-13 10:05:14 -08003164 pr_err("creating MR failed\n");
Thomas Klein1211bb62007-04-26 11:56:43 +02003165 return -EIO;
3166 }
3167
Jan-Bernd Themann1acf2312007-02-28 18:34:02 +01003168 port = ehea_setup_single_port(adapter, logical_port_id, eth_dn);
3169
Jan-Bernd Themann1eef4e02007-03-22 17:49:42 +01003170 of_node_put(eth_dn);
3171
Jan-Bernd Themann1acf2312007-02-28 18:34:02 +01003172 if (port) {
Doug Maxey508d2b52008-01-31 20:20:49 -06003173 for (i = 0; i < EHEA_MAX_PORTS; i++)
Jan-Bernd Themann1acf2312007-02-28 18:34:02 +01003174 if (!adapter->port[i]) {
3175 adapter->port[i] = port;
3176 break;
3177 }
3178
Joe Perches8c4877a2010-12-13 10:05:14 -08003179 netdev_info(port->netdev, "added: (logical port id=%d)\n",
3180 logical_port_id);
Thomas Klein1211bb62007-04-26 11:56:43 +02003181 } else {
3182 ehea_remove_adapter_mr(adapter);
Jan-Bernd Themanne542aa62007-03-22 17:50:24 +01003183 return -EIO;
Thomas Klein1211bb62007-04-26 11:56:43 +02003184 }
Jan-Bernd Themann1acf2312007-02-28 18:34:02 +01003185
3186 return (ssize_t) count;
3187}
3188
3189static ssize_t ehea_remove_port(struct device *dev,
3190 struct device_attribute *attr,
3191 const char *buf, size_t count)
3192{
Greg Kroah-Hartmanc7ae0112009-05-04 21:33:19 -07003193 struct ehea_adapter *adapter = dev_get_drvdata(dev);
Jan-Bernd Themann1acf2312007-02-28 18:34:02 +01003194 struct ehea_port *port;
3195 int i;
3196 u32 logical_port_id;
3197
Jan-Bernd Themanna8e34fd2007-08-22 16:20:58 +02003198 sscanf(buf, "%d", &logical_port_id);
Jan-Bernd Themann1acf2312007-02-28 18:34:02 +01003199
3200 port = ehea_get_port(adapter, logical_port_id);
3201
3202 if (port) {
Joe Perches8c4877a2010-12-13 10:05:14 -08003203 netdev_info(port->netdev, "removed: (logical port id=%d)\n",
3204 logical_port_id);
Jan-Bernd Themann1acf2312007-02-28 18:34:02 +01003205
3206 ehea_shutdown_single_port(port);
3207
Doug Maxey508d2b52008-01-31 20:20:49 -06003208 for (i = 0; i < EHEA_MAX_PORTS; i++)
Jan-Bernd Themann1acf2312007-02-28 18:34:02 +01003209 if (adapter->port[i] == port) {
3210 adapter->port[i] = NULL;
3211 break;
3212 }
3213 } else {
Joe Perches8c4877a2010-12-13 10:05:14 -08003214 pr_err("removing port with logical port id=%d failed. port not configured.\n",
3215 logical_port_id);
Jan-Bernd Themann1acf2312007-02-28 18:34:02 +01003216 return -EINVAL;
3217 }
3218
Thomas Klein1211bb62007-04-26 11:56:43 +02003219 ehea_remove_adapter_mr(adapter);
3220
Jan-Bernd Themann1acf2312007-02-28 18:34:02 +01003221 return (ssize_t) count;
3222}
3223
3224static DEVICE_ATTR(probe_port, S_IWUSR, NULL, ehea_probe_port);
3225static DEVICE_ATTR(remove_port, S_IWUSR, NULL, ehea_remove_port);
3226
Grant Likely2dc11582010-08-06 09:25:50 -06003227int ehea_create_device_sysfs(struct platform_device *dev)
Jan-Bernd Themann1acf2312007-02-28 18:34:02 +01003228{
Joachim Fenkes6b08f3a2007-09-26 19:45:51 +10003229 int ret = device_create_file(&dev->dev, &dev_attr_probe_port);
Jan-Bernd Themann1acf2312007-02-28 18:34:02 +01003230 if (ret)
3231 goto out;
3232
Joachim Fenkes6b08f3a2007-09-26 19:45:51 +10003233 ret = device_create_file(&dev->dev, &dev_attr_remove_port);
Jan-Bernd Themann1acf2312007-02-28 18:34:02 +01003234out:
Jan-Bernd Themann7a291082006-09-13 17:44:31 +02003235 return ret;
3236}
3237
Grant Likely2dc11582010-08-06 09:25:50 -06003238void ehea_remove_device_sysfs(struct platform_device *dev)
Jan-Bernd Themann1acf2312007-02-28 18:34:02 +01003239{
Joachim Fenkes6b08f3a2007-09-26 19:45:51 +10003240 device_remove_file(&dev->dev, &dev_attr_probe_port);
3241 device_remove_file(&dev->dev, &dev_attr_remove_port);
Jan-Bernd Themann1acf2312007-02-28 18:34:02 +01003242}
3243
Grant Likely2dc11582010-08-06 09:25:50 -06003244static int __devinit ehea_probe_adapter(struct platform_device *dev,
Jan-Bernd Themann1acf2312007-02-28 18:34:02 +01003245 const struct of_device_id *id)
Jan-Bernd Themann7a291082006-09-13 17:44:31 +02003246{
3247 struct ehea_adapter *adapter;
Stephen Rothwell9f9a3b82007-05-01 13:51:32 +10003248 const u64 *adapter_handle;
Jan-Bernd Themann7a291082006-09-13 17:44:31 +02003249 int ret;
3250
Grant Likely61c7a082010-04-13 16:12:29 -07003251 if (!dev || !dev->dev.of_node) {
Joe Perches8c4877a2010-12-13 10:05:14 -08003252 pr_err("Invalid ibmebus device probed\n");
Jan-Bernd Themann1eef4e02007-03-22 17:49:42 +01003253 return -EINVAL;
3254 }
3255
Jan-Bernd Themann7a291082006-09-13 17:44:31 +02003256 adapter = kzalloc(sizeof(*adapter), GFP_KERNEL);
3257 if (!adapter) {
3258 ret = -ENOMEM;
Joachim Fenkes6b08f3a2007-09-26 19:45:51 +10003259 dev_err(&dev->dev, "no mem for ehea_adapter\n");
Jan-Bernd Themann7a291082006-09-13 17:44:31 +02003260 goto out;
3261 }
3262
Thomas Klein44c82152007-07-11 16:32:00 +02003263 list_add(&adapter->list, &adapter_list);
3264
Joachim Fenkes6b08f3a2007-09-26 19:45:51 +10003265 adapter->ofdev = dev;
Jan-Bernd Themann1acf2312007-02-28 18:34:02 +01003266
Grant Likely61c7a082010-04-13 16:12:29 -07003267 adapter_handle = of_get_property(dev->dev.of_node, "ibm,hea-handle",
Jan-Bernd Themannd1d25aa2007-07-02 13:00:46 +02003268 NULL);
Thomas Klein061bf3c2007-01-22 12:52:20 +01003269 if (adapter_handle)
3270 adapter->handle = *adapter_handle;
3271
3272 if (!adapter->handle) {
Joachim Fenkes6b08f3a2007-09-26 19:45:51 +10003273 dev_err(&dev->dev, "failed getting handle for adapter"
Grant Likely61c7a082010-04-13 16:12:29 -07003274 " '%s'\n", dev->dev.of_node->full_name);
Jan-Bernd Themann7a291082006-09-13 17:44:31 +02003275 ret = -ENODEV;
3276 goto out_free_ad;
3277 }
3278
Jan-Bernd Themann7a291082006-09-13 17:44:31 +02003279 adapter->pd = EHEA_PD_ID;
3280
Greg Kroah-Hartmanc7ae0112009-05-04 21:33:19 -07003281 dev_set_drvdata(&dev->dev, adapter);
Jan-Bernd Themann7a291082006-09-13 17:44:31 +02003282
Jan-Bernd Themann7a291082006-09-13 17:44:31 +02003283
3284 /* initialize adapter and ports */
3285 /* get adapter properties */
3286 ret = ehea_sense_adapter_attr(adapter);
3287 if (ret) {
Joe Perches898eb712007-10-18 03:06:30 -07003288 dev_err(&dev->dev, "sense_adapter_attr failed: %d\n", ret);
Thomas Klein1211bb62007-04-26 11:56:43 +02003289 goto out_free_ad;
Jan-Bernd Themann7a291082006-09-13 17:44:31 +02003290 }
Jan-Bernd Themann7a291082006-09-13 17:44:31 +02003291
3292 adapter->neq = ehea_create_eq(adapter,
3293 EHEA_NEQ, EHEA_MAX_ENTRIES_EQ, 1);
3294 if (!adapter->neq) {
Jan-Bernd Themann1eef4e02007-03-22 17:49:42 +01003295 ret = -EIO;
Joe Perches898eb712007-10-18 03:06:30 -07003296 dev_err(&dev->dev, "NEQ creation failed\n");
Thomas Klein1211bb62007-04-26 11:56:43 +02003297 goto out_free_ad;
Jan-Bernd Themann7a291082006-09-13 17:44:31 +02003298 }
3299
3300 tasklet_init(&adapter->neq_tasklet, ehea_neq_tasklet,
3301 (unsigned long)adapter);
3302
Joachim Fenkes6b08f3a2007-09-26 19:45:51 +10003303 ret = ibmebus_request_irq(adapter->neq->attr.ist1,
Thomas Gleixner38515e92007-02-14 00:33:16 -08003304 ehea_interrupt_neq, IRQF_DISABLED,
Jan-Bernd Themann7a291082006-09-13 17:44:31 +02003305 "ehea_neq", adapter);
3306 if (ret) {
Joe Perches898eb712007-10-18 03:06:30 -07003307 dev_err(&dev->dev, "requesting NEQ IRQ failed\n");
Jan-Bernd Themann7a291082006-09-13 17:44:31 +02003308 goto out_kill_eq;
3309 }
3310
Jan-Bernd Themann1eef4e02007-03-22 17:49:42 +01003311 ret = ehea_create_device_sysfs(dev);
3312 if (ret)
Jan-Bernd Themann3bf76b82007-10-08 16:01:33 +02003313 goto out_free_irq;
Jan-Bernd Themann1acf2312007-02-28 18:34:02 +01003314
Jan-Bernd Themann7a291082006-09-13 17:44:31 +02003315 ret = ehea_setup_ports(adapter);
3316 if (ret) {
Joe Perches898eb712007-10-18 03:06:30 -07003317 dev_err(&dev->dev, "setup_ports failed\n");
Jan-Bernd Themann1acf2312007-02-28 18:34:02 +01003318 goto out_rem_dev_sysfs;
Jan-Bernd Themann7a291082006-09-13 17:44:31 +02003319 }
3320
3321 ret = 0;
3322 goto out;
3323
Jan-Bernd Themann1acf2312007-02-28 18:34:02 +01003324out_rem_dev_sysfs:
3325 ehea_remove_device_sysfs(dev);
3326
Jan-Bernd Themann7a291082006-09-13 17:44:31 +02003327out_free_irq:
Joachim Fenkes6b08f3a2007-09-26 19:45:51 +10003328 ibmebus_free_irq(adapter->neq->attr.ist1, adapter);
Jan-Bernd Themann7a291082006-09-13 17:44:31 +02003329
3330out_kill_eq:
3331 ehea_destroy_eq(adapter->neq);
3332
Jan-Bernd Themann7a291082006-09-13 17:44:31 +02003333out_free_ad:
Hannes Hering51621fb2009-02-11 13:47:57 -08003334 list_del(&adapter->list);
Jan-Bernd Themann7a291082006-09-13 17:44:31 +02003335 kfree(adapter);
Thomas Klein21eee2d2008-02-13 16:18:33 +01003336
Jan-Bernd Themann7a291082006-09-13 17:44:31 +02003337out:
Thomas Klein21eee2d2008-02-13 16:18:33 +01003338 ehea_update_firmware_handles();
Jan-Bernd Themann52e21b12009-03-13 13:50:40 -07003339
Jan-Bernd Themann7a291082006-09-13 17:44:31 +02003340 return ret;
3341}
3342
Grant Likely2dc11582010-08-06 09:25:50 -06003343static int __devexit ehea_remove(struct platform_device *dev)
Jan-Bernd Themann7a291082006-09-13 17:44:31 +02003344{
Greg Kroah-Hartmanc7ae0112009-05-04 21:33:19 -07003345 struct ehea_adapter *adapter = dev_get_drvdata(&dev->dev);
Jan-Bernd Themann7a291082006-09-13 17:44:31 +02003346 int i;
3347
Jan-Bernd Themann1acf2312007-02-28 18:34:02 +01003348 for (i = 0; i < EHEA_MAX_PORTS; i++)
Jan-Bernd Themann7a291082006-09-13 17:44:31 +02003349 if (adapter->port[i]) {
3350 ehea_shutdown_single_port(adapter->port[i]);
3351 adapter->port[i] = NULL;
3352 }
Jan-Bernd Themann1acf2312007-02-28 18:34:02 +01003353
3354 ehea_remove_device_sysfs(dev);
3355
Joachim Fenkes6b08f3a2007-09-26 19:45:51 +10003356 ibmebus_free_irq(adapter->neq->attr.ist1, adapter);
Thomas Kleind4150a22007-01-29 18:44:41 +01003357 tasklet_kill(&adapter->neq_tasklet);
Jan-Bernd Themann7a291082006-09-13 17:44:31 +02003358
3359 ehea_destroy_eq(adapter->neq);
Thomas Klein1211bb62007-04-26 11:56:43 +02003360 ehea_remove_adapter_mr(adapter);
Thomas Klein44c82152007-07-11 16:32:00 +02003361 list_del(&adapter->list);
Jan-Bernd Themann7a291082006-09-13 17:44:31 +02003362 kfree(adapter);
Thomas Klein44c82152007-07-11 16:32:00 +02003363
Thomas Klein21eee2d2008-02-13 16:18:33 +01003364 ehea_update_firmware_handles();
Thomas Klein21eee2d2008-02-13 16:18:33 +01003365
Jan-Bernd Themann7a291082006-09-13 17:44:31 +02003366 return 0;
3367}
3368
Thomas Klein21eee2d2008-02-13 16:18:33 +01003369void ehea_crash_handler(void)
3370{
3371 int i;
3372
3373 if (ehea_fw_handles.arr)
3374 for (i = 0; i < ehea_fw_handles.num_entries; i++)
3375 ehea_h_free_resource(ehea_fw_handles.arr[i].adh,
3376 ehea_fw_handles.arr[i].fwh,
3377 FORCE_FREE);
3378
3379 if (ehea_bcmc_regs.arr)
3380 for (i = 0; i < ehea_bcmc_regs.num_entries; i++)
3381 ehea_h_reg_dereg_bcmc(ehea_bcmc_regs.arr[i].adh,
3382 ehea_bcmc_regs.arr[i].port_id,
3383 ehea_bcmc_regs.arr[i].reg_type,
3384 ehea_bcmc_regs.arr[i].macaddr,
3385 0, H_DEREG_BCMC);
3386}
3387
Hannes Hering48cfb142008-05-07 14:43:36 +02003388static int ehea_mem_notifier(struct notifier_block *nb,
3389 unsigned long action, void *data)
3390{
Thomas Kleina7c561f22010-04-20 23:11:31 +00003391 int ret = NOTIFY_BAD;
Hannes Heringd4f12da2008-10-16 11:36:42 +02003392 struct memory_notify *arg = data;
Thomas Kleina7c561f22010-04-20 23:11:31 +00003393
Jan-Bernd Themann099473c2010-06-15 05:35:42 +00003394 mutex_lock(&dlpar_mem_lock);
Thomas Kleina7c561f22010-04-20 23:11:31 +00003395
Hannes Hering48cfb142008-05-07 14:43:36 +02003396 switch (action) {
Hannes Heringd4f12da2008-10-16 11:36:42 +02003397 case MEM_CANCEL_OFFLINE:
Joe Perches8c4877a2010-12-13 10:05:14 -08003398 pr_info("memory offlining canceled");
Hannes Heringd4f12da2008-10-16 11:36:42 +02003399 /* Readd canceled memory block */
3400 case MEM_ONLINE:
Joe Perches8c4877a2010-12-13 10:05:14 -08003401 pr_info("memory is going online");
Thomas Klein38767322009-02-20 00:42:01 -08003402 set_bit(__EHEA_STOP_XFER, &ehea_driver_flags);
Hannes Heringd4f12da2008-10-16 11:36:42 +02003403 if (ehea_add_sect_bmap(arg->start_pfn, arg->nr_pages))
Thomas Kleina7c561f22010-04-20 23:11:31 +00003404 goto out_unlock;
Tejun Heo3d6b8922010-12-12 16:45:14 +01003405 ehea_rereg_mrs();
Hannes Heringd4f12da2008-10-16 11:36:42 +02003406 break;
3407 case MEM_GOING_OFFLINE:
Joe Perches8c4877a2010-12-13 10:05:14 -08003408 pr_info("memory is going offline");
Thomas Klein38767322009-02-20 00:42:01 -08003409 set_bit(__EHEA_STOP_XFER, &ehea_driver_flags);
Hannes Heringd4f12da2008-10-16 11:36:42 +02003410 if (ehea_rem_sect_bmap(arg->start_pfn, arg->nr_pages))
Thomas Kleina7c561f22010-04-20 23:11:31 +00003411 goto out_unlock;
Tejun Heo3d6b8922010-12-12 16:45:14 +01003412 ehea_rereg_mrs();
Hannes Hering48cfb142008-05-07 14:43:36 +02003413 break;
3414 default:
3415 break;
3416 }
Jan-Bernd Themann52e21b12009-03-13 13:50:40 -07003417
3418 ehea_update_firmware_handles();
Thomas Kleina7c561f22010-04-20 23:11:31 +00003419 ret = NOTIFY_OK;
Jan-Bernd Themann52e21b12009-03-13 13:50:40 -07003420
Thomas Kleina7c561f22010-04-20 23:11:31 +00003421out_unlock:
3422 mutex_unlock(&dlpar_mem_lock);
Thomas Kleina7c561f22010-04-20 23:11:31 +00003423 return ret;
Hannes Hering48cfb142008-05-07 14:43:36 +02003424}
3425
3426static struct notifier_block ehea_mem_nb = {
3427 .notifier_call = ehea_mem_notifier,
3428};
3429
Jan-Bernd Themann2a6f4e42007-10-26 14:37:28 +02003430static int ehea_reboot_notifier(struct notifier_block *nb,
3431 unsigned long action, void *unused)
3432{
3433 if (action == SYS_RESTART) {
Joe Perches8c4877a2010-12-13 10:05:14 -08003434 pr_info("Reboot: freeing all eHEA resources\n");
Jan-Bernd Themann2a6f4e42007-10-26 14:37:28 +02003435 ibmebus_unregister_driver(&ehea_driver);
3436 }
3437 return NOTIFY_DONE;
3438}
3439
3440static struct notifier_block ehea_reboot_nb = {
Doug Maxey508d2b52008-01-31 20:20:49 -06003441 .notifier_call = ehea_reboot_notifier,
Jan-Bernd Themann2a6f4e42007-10-26 14:37:28 +02003442};
3443
Jan-Bernd Themann7a291082006-09-13 17:44:31 +02003444static int check_module_parm(void)
3445{
3446 int ret = 0;
3447
3448 if ((rq1_entries < EHEA_MIN_ENTRIES_QP) ||
3449 (rq1_entries > EHEA_MAX_ENTRIES_RQ1)) {
Joe Perches8c4877a2010-12-13 10:05:14 -08003450 pr_info("Bad parameter: rq1_entries\n");
Jan-Bernd Themann7a291082006-09-13 17:44:31 +02003451 ret = -EINVAL;
3452 }
3453 if ((rq2_entries < EHEA_MIN_ENTRIES_QP) ||
3454 (rq2_entries > EHEA_MAX_ENTRIES_RQ2)) {
Joe Perches8c4877a2010-12-13 10:05:14 -08003455 pr_info("Bad parameter: rq2_entries\n");
Jan-Bernd Themann7a291082006-09-13 17:44:31 +02003456 ret = -EINVAL;
3457 }
3458 if ((rq3_entries < EHEA_MIN_ENTRIES_QP) ||
3459 (rq3_entries > EHEA_MAX_ENTRIES_RQ3)) {
Joe Perches8c4877a2010-12-13 10:05:14 -08003460 pr_info("Bad parameter: rq3_entries\n");
Jan-Bernd Themann7a291082006-09-13 17:44:31 +02003461 ret = -EINVAL;
3462 }
3463 if ((sq_entries < EHEA_MIN_ENTRIES_QP) ||
3464 (sq_entries > EHEA_MAX_ENTRIES_SQ)) {
Joe Perches8c4877a2010-12-13 10:05:14 -08003465 pr_info("Bad parameter: sq_entries\n");
Jan-Bernd Themann7a291082006-09-13 17:44:31 +02003466 ret = -EINVAL;
3467 }
3468
3469 return ret;
3470}
3471
Jan-Bernd Themann4c3ca4d2007-07-05 09:26:25 +02003472static ssize_t ehea_show_capabilities(struct device_driver *drv,
3473 char *buf)
3474{
3475 return sprintf(buf, "%d", EHEA_CAPABILITIES);
3476}
3477
3478static DRIVER_ATTR(capabilities, S_IRUSR | S_IRGRP | S_IROTH,
3479 ehea_show_capabilities, NULL);
3480
Jan-Bernd Themann7a291082006-09-13 17:44:31 +02003481int __init ehea_module_init(void)
3482{
3483 int ret;
3484
Joe Perches8c4877a2010-12-13 10:05:14 -08003485 pr_info("IBM eHEA ethernet device driver (Release %s)\n", DRV_VERSION);
Jan-Bernd Themann7a291082006-09-13 17:44:31 +02003486
Thomas Klein21eee2d2008-02-13 16:18:33 +01003487 memset(&ehea_fw_handles, 0, sizeof(ehea_fw_handles));
3488 memset(&ehea_bcmc_regs, 0, sizeof(ehea_bcmc_regs));
3489
Daniel Walker9f71a562008-03-28 14:41:26 -07003490 mutex_init(&ehea_fw_handles.lock);
Jan-Bernd Themann5c2cec12008-07-03 15:18:45 +01003491 spin_lock_init(&ehea_bcmc_regs.lock);
Thomas Klein44c82152007-07-11 16:32:00 +02003492
Jan-Bernd Themann7a291082006-09-13 17:44:31 +02003493 ret = check_module_parm();
3494 if (ret)
3495 goto out;
Thomas Klein44c82152007-07-11 16:32:00 +02003496
3497 ret = ehea_create_busmap();
3498 if (ret)
3499 goto out;
3500
Thomas Klein21eee2d2008-02-13 16:18:33 +01003501 ret = register_reboot_notifier(&ehea_reboot_nb);
3502 if (ret)
Joe Perches8c4877a2010-12-13 10:05:14 -08003503 pr_info("failed registering reboot notifier\n");
Thomas Klein21eee2d2008-02-13 16:18:33 +01003504
Hannes Hering48cfb142008-05-07 14:43:36 +02003505 ret = register_memory_notifier(&ehea_mem_nb);
3506 if (ret)
Joe Perches8c4877a2010-12-13 10:05:14 -08003507 pr_info("failed registering memory remove notifier\n");
Hannes Hering48cfb142008-05-07 14:43:36 +02003508
Joe Perchesc061b182010-08-23 18:20:03 +00003509 ret = crash_shutdown_register(ehea_crash_handler);
Thomas Klein21eee2d2008-02-13 16:18:33 +01003510 if (ret)
Joe Perches8c4877a2010-12-13 10:05:14 -08003511 pr_info("failed registering crash handler\n");
Jan-Bernd Themann2a6f4e42007-10-26 14:37:28 +02003512
Jan-Bernd Themann7a291082006-09-13 17:44:31 +02003513 ret = ibmebus_register_driver(&ehea_driver);
Jan-Bernd Themann4c3ca4d2007-07-05 09:26:25 +02003514 if (ret) {
Joe Perches8c4877a2010-12-13 10:05:14 -08003515 pr_err("failed registering eHEA device driver on ebus\n");
Thomas Klein21eee2d2008-02-13 16:18:33 +01003516 goto out2;
Jan-Bernd Themann4c3ca4d2007-07-05 09:26:25 +02003517 }
3518
3519 ret = driver_create_file(&ehea_driver.driver,
3520 &driver_attr_capabilities);
3521 if (ret) {
Joe Perches8c4877a2010-12-13 10:05:14 -08003522 pr_err("failed to register capabilities attribute, ret=%d\n",
3523 ret);
Thomas Klein21eee2d2008-02-13 16:18:33 +01003524 goto out3;
Jan-Bernd Themann4c3ca4d2007-07-05 09:26:25 +02003525 }
Jan-Bernd Themann7a291082006-09-13 17:44:31 +02003526
Thomas Klein21eee2d2008-02-13 16:18:33 +01003527 return ret;
3528
3529out3:
3530 ibmebus_unregister_driver(&ehea_driver);
3531out2:
Hannes Hering48cfb142008-05-07 14:43:36 +02003532 unregister_memory_notifier(&ehea_mem_nb);
Thomas Klein21eee2d2008-02-13 16:18:33 +01003533 unregister_reboot_notifier(&ehea_reboot_nb);
Joe Perchesc061b182010-08-23 18:20:03 +00003534 crash_shutdown_unregister(ehea_crash_handler);
Jan-Bernd Themann7a291082006-09-13 17:44:31 +02003535out:
3536 return ret;
3537}
3538
3539static void __exit ehea_module_exit(void)
3540{
Thomas Klein21eee2d2008-02-13 16:18:33 +01003541 int ret;
3542
Jan-Bernd Themann4c3ca4d2007-07-05 09:26:25 +02003543 driver_remove_file(&ehea_driver.driver, &driver_attr_capabilities);
Jan-Bernd Themann7a291082006-09-13 17:44:31 +02003544 ibmebus_unregister_driver(&ehea_driver);
Jan-Bernd Themann2a6f4e42007-10-26 14:37:28 +02003545 unregister_reboot_notifier(&ehea_reboot_nb);
Joe Perchesc061b182010-08-23 18:20:03 +00003546 ret = crash_shutdown_unregister(ehea_crash_handler);
Thomas Klein21eee2d2008-02-13 16:18:33 +01003547 if (ret)
Joe Perches8c4877a2010-12-13 10:05:14 -08003548 pr_info("failed unregistering crash handler\n");
Hannes Hering48cfb142008-05-07 14:43:36 +02003549 unregister_memory_notifier(&ehea_mem_nb);
Thomas Klein21eee2d2008-02-13 16:18:33 +01003550 kfree(ehea_fw_handles.arr);
3551 kfree(ehea_bcmc_regs.arr);
Thomas Klein44c82152007-07-11 16:32:00 +02003552 ehea_destroy_busmap();
Jan-Bernd Themann7a291082006-09-13 17:44:31 +02003553}
3554
3555module_init(ehea_module_init);
3556module_exit(ehea_module_exit);