blob: faae01dc1c4b9d719031a422d1a5d66a0c4a6584 [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
29#include <linux/in.h>
30#include <linux/ip.h>
31#include <linux/tcp.h>
32#include <linux/udp.h>
33#include <linux/if.h>
34#include <linux/list.h>
35#include <linux/if_ether.h>
Jan-Bernd Themann2a6f4e42007-10-26 14:37:28 +020036#include <linux/notifier.h>
37#include <linux/reboot.h>
Hannes Hering48cfb142008-05-07 14:43:36 +020038#include <linux/memory.h>
Thomas Klein21eee2d2008-02-13 16:18:33 +010039#include <asm/kexec.h>
Daniel Walker06f89ed2008-03-28 14:41:26 -070040#include <linux/mutex.h>
Jan-Bernd Themann2a6f4e42007-10-26 14:37:28 +020041
Jan-Bernd Themann7a291082006-09-13 17:44:31 +020042#include <net/ip.h>
43
44#include "ehea.h"
45#include "ehea_qmr.h"
46#include "ehea_phyp.h"
47
48
49MODULE_LICENSE("GPL");
50MODULE_AUTHOR("Christoph Raisch <raisch@de.ibm.com>");
51MODULE_DESCRIPTION("IBM eServer HEA Driver");
52MODULE_VERSION(DRV_VERSION);
53
54
55static int msg_level = -1;
56static int rq1_entries = EHEA_DEF_ENTRIES_RQ1;
57static int rq2_entries = EHEA_DEF_ENTRIES_RQ2;
58static int rq3_entries = EHEA_DEF_ENTRIES_RQ3;
59static int sq_entries = EHEA_DEF_ENTRIES_SQ;
Doug Maxey508d2b52008-01-31 20:20:49 -060060static int use_mcs;
61static int use_lro;
Jan-Bernd Themannd4dc4ec2007-09-25 16:16:34 -070062static int lro_max_aggr = EHEA_LRO_MAX_AGGR;
Jan-Bernd Themann18604c52007-02-28 18:34:10 +010063static int num_tx_qps = EHEA_NUM_TX_QP;
Doug Maxey508d2b52008-01-31 20:20:49 -060064static int prop_carrier_state;
Jan-Bernd Themann7a291082006-09-13 17:44:31 +020065
66module_param(msg_level, int, 0);
67module_param(rq1_entries, int, 0);
68module_param(rq2_entries, int, 0);
69module_param(rq3_entries, int, 0);
70module_param(sq_entries, int, 0);
Jan-Bernd Themann8759cf72007-09-07 12:30:17 +020071module_param(prop_carrier_state, int, 0);
Jan-Bernd Themann18604c52007-02-28 18:34:10 +010072module_param(use_mcs, int, 0);
Jan-Bernd Themannd4dc4ec2007-09-25 16:16:34 -070073module_param(use_lro, int, 0);
74module_param(lro_max_aggr, int, 0);
Jan-Bernd Themann18604c52007-02-28 18:34:10 +010075module_param(num_tx_qps, int, 0);
Jan-Bernd Themann7a291082006-09-13 17:44:31 +020076
Jan-Bernd Themann18604c52007-02-28 18:34:10 +010077MODULE_PARM_DESC(num_tx_qps, "Number of TX-QPS");
Jan-Bernd Themann7a291082006-09-13 17:44:31 +020078MODULE_PARM_DESC(msg_level, "msg_level");
Jan-Bernd Themann8759cf72007-09-07 12:30:17 +020079MODULE_PARM_DESC(prop_carrier_state, "Propagate carrier state of physical "
80 "port to stack. 1:yes, 0:no. Default = 0 ");
Jan-Bernd Themann7a291082006-09-13 17:44:31 +020081MODULE_PARM_DESC(rq3_entries, "Number of entries for Receive Queue 3 "
82 "[2^x - 1], x = [6..14]. Default = "
83 __MODULE_STRING(EHEA_DEF_ENTRIES_RQ3) ")");
84MODULE_PARM_DESC(rq2_entries, "Number of entries for Receive Queue 2 "
85 "[2^x - 1], x = [6..14]. Default = "
86 __MODULE_STRING(EHEA_DEF_ENTRIES_RQ2) ")");
87MODULE_PARM_DESC(rq1_entries, "Number of entries for Receive Queue 1 "
88 "[2^x - 1], x = [6..14]. Default = "
89 __MODULE_STRING(EHEA_DEF_ENTRIES_RQ1) ")");
90MODULE_PARM_DESC(sq_entries, " Number of entries for the Send Queue "
91 "[2^x - 1], x = [6..14]. Default = "
92 __MODULE_STRING(EHEA_DEF_ENTRIES_SQ) ")");
Jan-Bernd Themann18072a52007-08-22 16:21:24 +020093MODULE_PARM_DESC(use_mcs, " 0:NAPI, 1:Multiple receive queues, Default = 0 ");
Jan-Bernd Themann7a291082006-09-13 17:44:31 +020094
Jan-Bernd Themannd4dc4ec2007-09-25 16:16:34 -070095MODULE_PARM_DESC(lro_max_aggr, " LRO: Max packets to be aggregated. Default = "
96 __MODULE_STRING(EHEA_LRO_MAX_AGGR));
97MODULE_PARM_DESC(use_lro, " Large Receive Offload, 1: enable, 0: disable, "
98 "Default = 0");
99
Doug Maxey508d2b52008-01-31 20:20:49 -0600100static int port_name_cnt;
Thomas Klein44c82152007-07-11 16:32:00 +0200101static LIST_HEAD(adapter_list);
Doug Maxey508d2b52008-01-31 20:20:49 -0600102u64 ehea_driver_flags;
Thomas Klein44c82152007-07-11 16:32:00 +0200103struct work_struct ehea_rereg_mr_task;
Daniel Walker06f89ed2008-03-28 14:41:26 -0700104static DEFINE_MUTEX(dlpar_mem_lock);
Thomas Klein21eee2d2008-02-13 16:18:33 +0100105struct ehea_fw_handle_array ehea_fw_handles;
106struct ehea_bcmc_reg_array ehea_bcmc_regs;
107
Thomas Kleind1dea382007-04-26 11:56:13 +0200108
Joachim Fenkes6b08f3a2007-09-26 19:45:51 +1000109static int __devinit ehea_probe_adapter(struct of_device *dev,
Jan-Bernd Themannd1d25aa2007-07-02 13:00:46 +0200110 const struct of_device_id *id);
Thomas Kleind1dea382007-04-26 11:56:13 +0200111
Joachim Fenkes6b08f3a2007-09-26 19:45:51 +1000112static int __devexit ehea_remove(struct of_device *dev);
Thomas Kleind1dea382007-04-26 11:56:13 +0200113
114static struct of_device_id ehea_device_table[] = {
115 {
116 .name = "lhea",
117 .compatible = "IBM,lhea",
118 },
119 {},
120};
121
Joachim Fenkes6b08f3a2007-09-26 19:45:51 +1000122static struct of_platform_driver ehea_driver = {
Thomas Kleind1dea382007-04-26 11:56:13 +0200123 .name = "ehea",
Joachim Fenkes6b08f3a2007-09-26 19:45:51 +1000124 .match_table = ehea_device_table,
Thomas Kleind1dea382007-04-26 11:56:13 +0200125 .probe = ehea_probe_adapter,
126 .remove = ehea_remove,
127};
128
Doug Maxey508d2b52008-01-31 20:20:49 -0600129void ehea_dump(void *adr, int len, char *msg)
130{
Jan-Bernd Themann7a291082006-09-13 17:44:31 +0200131 int x;
132 unsigned char *deb = adr;
133 for (x = 0; x < len; x += 16) {
Jan-Bernd Themannd2db9ee2007-02-09 09:10:51 +0100134 printk(DRV_NAME " %s adr=%p ofs=%04x %016lx %016lx\n", msg,
Doug Maxey508d2b52008-01-31 20:20:49 -0600135 deb, x, *((u64 *)&deb[0]), *((u64 *)&deb[8]));
Jan-Bernd Themann7a291082006-09-13 17:44:31 +0200136 deb += 16;
137 }
138}
139
Thomas Klein21eee2d2008-02-13 16:18:33 +0100140static void ehea_update_firmware_handles(void)
141{
142 struct ehea_fw_handle_entry *arr = NULL;
143 struct ehea_adapter *adapter;
144 int num_adapters = 0;
145 int num_ports = 0;
146 int num_portres = 0;
147 int i = 0;
148 int num_fw_handles, k, l;
149
150 /* Determine number of handles */
151 list_for_each_entry(adapter, &adapter_list, list) {
152 num_adapters++;
153
154 for (k = 0; k < EHEA_MAX_PORTS; k++) {
155 struct ehea_port *port = adapter->port[k];
156
157 if (!port || (port->state != EHEA_PORT_UP))
158 continue;
159
160 num_ports++;
161 num_portres += port->num_def_qps + port->num_add_tx_qps;
162 }
163 }
164
165 num_fw_handles = num_adapters * EHEA_NUM_ADAPTER_FW_HANDLES +
166 num_ports * EHEA_NUM_PORT_FW_HANDLES +
167 num_portres * EHEA_NUM_PORTRES_FW_HANDLES;
168
169 if (num_fw_handles) {
170 arr = kzalloc(num_fw_handles * sizeof(*arr), GFP_KERNEL);
171 if (!arr)
172 return; /* Keep the existing array */
173 } else
174 goto out_update;
175
176 list_for_each_entry(adapter, &adapter_list, list) {
177 for (k = 0; k < EHEA_MAX_PORTS; k++) {
178 struct ehea_port *port = adapter->port[k];
179
180 if (!port || (port->state != EHEA_PORT_UP))
181 continue;
182
183 for (l = 0;
184 l < port->num_def_qps + port->num_add_tx_qps;
185 l++) {
186 struct ehea_port_res *pr = &port->port_res[l];
187
188 arr[i].adh = adapter->handle;
189 arr[i++].fwh = pr->qp->fw_handle;
190 arr[i].adh = adapter->handle;
191 arr[i++].fwh = pr->send_cq->fw_handle;
192 arr[i].adh = adapter->handle;
193 arr[i++].fwh = pr->recv_cq->fw_handle;
194 arr[i].adh = adapter->handle;
195 arr[i++].fwh = pr->eq->fw_handle;
196 arr[i].adh = adapter->handle;
197 arr[i++].fwh = pr->send_mr.handle;
198 arr[i].adh = adapter->handle;
199 arr[i++].fwh = pr->recv_mr.handle;
200 }
201 arr[i].adh = adapter->handle;
202 arr[i++].fwh = port->qp_eq->fw_handle;
203 }
204
205 arr[i].adh = adapter->handle;
206 arr[i++].fwh = adapter->neq->fw_handle;
207
208 if (adapter->mr.handle) {
209 arr[i].adh = adapter->handle;
210 arr[i++].fwh = adapter->mr.handle;
211 }
212 }
213
214out_update:
215 kfree(ehea_fw_handles.arr);
216 ehea_fw_handles.arr = arr;
217 ehea_fw_handles.num_entries = i;
218}
219
220static void ehea_update_bcmc_registrations(void)
221{
222 struct ehea_bcmc_reg_entry *arr = NULL;
223 struct ehea_adapter *adapter;
224 struct ehea_mc_list *mc_entry;
225 int num_registrations = 0;
226 int i = 0;
227 int k;
228
229 /* Determine number of registrations */
230 list_for_each_entry(adapter, &adapter_list, list)
231 for (k = 0; k < EHEA_MAX_PORTS; k++) {
232 struct ehea_port *port = adapter->port[k];
233
234 if (!port || (port->state != EHEA_PORT_UP))
235 continue;
236
237 num_registrations += 2; /* Broadcast registrations */
238
239 list_for_each_entry(mc_entry, &port->mc_list->list,list)
240 num_registrations += 2;
241 }
242
243 if (num_registrations) {
244 arr = kzalloc(num_registrations * sizeof(*arr), GFP_KERNEL);
245 if (!arr)
246 return; /* Keep the existing array */
247 } else
248 goto out_update;
249
250 list_for_each_entry(adapter, &adapter_list, list) {
251 for (k = 0; k < EHEA_MAX_PORTS; k++) {
252 struct ehea_port *port = adapter->port[k];
253
254 if (!port || (port->state != EHEA_PORT_UP))
255 continue;
256
257 arr[i].adh = adapter->handle;
258 arr[i].port_id = port->logical_port_id;
259 arr[i].reg_type = EHEA_BCMC_BROADCAST |
260 EHEA_BCMC_UNTAGGED;
261 arr[i++].macaddr = port->mac_addr;
262
263 arr[i].adh = adapter->handle;
264 arr[i].port_id = port->logical_port_id;
265 arr[i].reg_type = EHEA_BCMC_BROADCAST |
266 EHEA_BCMC_VLANID_ALL;
267 arr[i++].macaddr = port->mac_addr;
268
269 list_for_each_entry(mc_entry,
270 &port->mc_list->list, list) {
271 arr[i].adh = adapter->handle;
272 arr[i].port_id = port->logical_port_id;
273 arr[i].reg_type = EHEA_BCMC_SCOPE_ALL |
274 EHEA_BCMC_MULTICAST |
275 EHEA_BCMC_UNTAGGED;
276 arr[i++].macaddr = mc_entry->macaddr;
277
278 arr[i].adh = adapter->handle;
279 arr[i].port_id = port->logical_port_id;
280 arr[i].reg_type = EHEA_BCMC_SCOPE_ALL |
281 EHEA_BCMC_MULTICAST |
282 EHEA_BCMC_VLANID_ALL;
283 arr[i++].macaddr = mc_entry->macaddr;
284 }
285 }
286 }
287
288out_update:
289 kfree(ehea_bcmc_regs.arr);
290 ehea_bcmc_regs.arr = arr;
291 ehea_bcmc_regs.num_entries = i;
292}
293
Jan-Bernd Themann7a291082006-09-13 17:44:31 +0200294static struct net_device_stats *ehea_get_stats(struct net_device *dev)
295{
296 struct ehea_port *port = netdev_priv(dev);
297 struct net_device_stats *stats = &port->stats;
298 struct hcp_ehea_port_cb2 *cb2;
Thomas Klein7393b872007-11-21 17:37:58 +0100299 u64 hret, rx_packets, tx_packets;
Jan-Bernd Themann7a291082006-09-13 17:44:31 +0200300 int i;
301
302 memset(stats, 0, sizeof(*stats));
303
Thomas Kleina1d261c2006-11-03 17:48:23 +0100304 cb2 = kzalloc(PAGE_SIZE, GFP_KERNEL);
Jan-Bernd Themann7a291082006-09-13 17:44:31 +0200305 if (!cb2) {
306 ehea_error("no mem for cb2");
307 goto out;
308 }
309
310 hret = ehea_h_query_ehea_port(port->adapter->handle,
311 port->logical_port_id,
312 H_PORT_CB2, H_PORT_CB2_ALL, cb2);
313 if (hret != H_SUCCESS) {
314 ehea_error("query_ehea_port failed");
315 goto out_herr;
316 }
317
318 if (netif_msg_hw(port))
319 ehea_dump(cb2, sizeof(*cb2), "net_device_stats");
320
321 rx_packets = 0;
322 for (i = 0; i < port->num_def_qps; i++)
323 rx_packets += port->port_res[i].rx_packets;
324
Thomas Klein7393b872007-11-21 17:37:58 +0100325 tx_packets = 0;
326 for (i = 0; i < port->num_def_qps + port->num_add_tx_qps; i++)
327 tx_packets += port->port_res[i].tx_packets;
328
329 stats->tx_packets = tx_packets;
Jan-Bernd Themann7a291082006-09-13 17:44:31 +0200330 stats->multicast = cb2->rxmcp;
331 stats->rx_errors = cb2->rxuerr;
332 stats->rx_bytes = cb2->rxo;
333 stats->tx_bytes = cb2->txo;
334 stats->rx_packets = rx_packets;
335
336out_herr:
337 kfree(cb2);
338out:
339 return stats;
340}
341
342static void ehea_refill_rq1(struct ehea_port_res *pr, int index, int nr_of_wqes)
343{
344 struct sk_buff **skb_arr_rq1 = pr->rq1_skba.arr;
345 struct net_device *dev = pr->port->netdev;
346 int max_index_mask = pr->rq1_skba.len - 1;
Jan-Bernd Themann2c694482007-10-01 16:33:18 +0200347 int fill_wqes = pr->rq1_skba.os_skbs + nr_of_wqes;
348 int adder = 0;
Jan-Bernd Themann7a291082006-09-13 17:44:31 +0200349 int i;
350
Jan-Bernd Themann2c694482007-10-01 16:33:18 +0200351 pr->rq1_skba.os_skbs = 0;
Jan-Bernd Themann7a291082006-09-13 17:44:31 +0200352
Jan-Bernd Themann2c694482007-10-01 16:33:18 +0200353 if (unlikely(test_bit(__EHEA_STOP_XFER, &ehea_driver_flags))) {
Thomas Klein44fb3122008-04-04 15:04:53 +0200354 if (nr_of_wqes > 0)
355 pr->rq1_skba.index = index;
Jan-Bernd Themann2c694482007-10-01 16:33:18 +0200356 pr->rq1_skba.os_skbs = fill_wqes;
357 return;
358 }
359
360 for (i = 0; i < fill_wqes; i++) {
Jan-Bernd Themann7a291082006-09-13 17:44:31 +0200361 if (!skb_arr_rq1[index]) {
362 skb_arr_rq1[index] = netdev_alloc_skb(dev,
363 EHEA_L_PKT_SIZE);
364 if (!skb_arr_rq1[index]) {
Jan-Bernd Themann2c694482007-10-01 16:33:18 +0200365 pr->rq1_skba.os_skbs = fill_wqes - i;
Jan-Bernd Themann7a291082006-09-13 17:44:31 +0200366 ehea_error("%s: no mem for skb/%d wqes filled",
367 dev->name, i);
368 break;
369 }
370 }
371 index--;
372 index &= max_index_mask;
Jan-Bernd Themann2c694482007-10-01 16:33:18 +0200373 adder++;
Jan-Bernd Themann7a291082006-09-13 17:44:31 +0200374 }
Jan-Bernd Themann2c694482007-10-01 16:33:18 +0200375
376 if (adder == 0)
377 return;
378
Jan-Bernd Themann7a291082006-09-13 17:44:31 +0200379 /* Ring doorbell */
Jan-Bernd Themann2c694482007-10-01 16:33:18 +0200380 ehea_update_rq1a(pr->qp, adder);
Jan-Bernd Themann7a291082006-09-13 17:44:31 +0200381}
382
383static int ehea_init_fill_rq1(struct ehea_port_res *pr, int nr_rq1a)
384{
385 int ret = 0;
386 struct sk_buff **skb_arr_rq1 = pr->rq1_skba.arr;
387 struct net_device *dev = pr->port->netdev;
388 int i;
389
390 for (i = 0; i < pr->rq1_skba.len; i++) {
391 skb_arr_rq1[i] = netdev_alloc_skb(dev, EHEA_L_PKT_SIZE);
392 if (!skb_arr_rq1[i]) {
393 ehea_error("%s: no mem for skb/%d wqes filled",
394 dev->name, i);
395 ret = -ENOMEM;
396 goto out;
397 }
398 }
399 /* Ring doorbell */
400 ehea_update_rq1a(pr->qp, nr_rq1a);
401out:
402 return ret;
403}
404
405static int ehea_refill_rq_def(struct ehea_port_res *pr,
406 struct ehea_q_skb_arr *q_skba, int rq_nr,
407 int num_wqes, int wqe_type, int packet_size)
408{
409 struct net_device *dev = pr->port->netdev;
410 struct ehea_qp *qp = pr->qp;
411 struct sk_buff **skb_arr = q_skba->arr;
412 struct ehea_rwqe *rwqe;
413 int i, index, max_index_mask, fill_wqes;
Jan-Bernd Themann2c694482007-10-01 16:33:18 +0200414 int adder = 0;
Jan-Bernd Themann7a291082006-09-13 17:44:31 +0200415 int ret = 0;
416
417 fill_wqes = q_skba->os_skbs + num_wqes;
Jan-Bernd Themann2c694482007-10-01 16:33:18 +0200418 q_skba->os_skbs = 0;
Jan-Bernd Themann7a291082006-09-13 17:44:31 +0200419
Jan-Bernd Themann2c694482007-10-01 16:33:18 +0200420 if (unlikely(test_bit(__EHEA_STOP_XFER, &ehea_driver_flags))) {
421 q_skba->os_skbs = fill_wqes;
Jan-Bernd Themann7a291082006-09-13 17:44:31 +0200422 return ret;
Jan-Bernd Themann2c694482007-10-01 16:33:18 +0200423 }
Jan-Bernd Themann7a291082006-09-13 17:44:31 +0200424
425 index = q_skba->index;
426 max_index_mask = q_skba->len - 1;
427 for (i = 0; i < fill_wqes; i++) {
Jan-Bernd Themann2c694482007-10-01 16:33:18 +0200428 u64 tmp_addr;
Jan-Bernd Themann7a291082006-09-13 17:44:31 +0200429 struct sk_buff *skb = netdev_alloc_skb(dev, packet_size);
430 if (!skb) {
431 ehea_error("%s: no mem for skb/%d wqes filled",
Jan-Bernd Themann18604c52007-02-28 18:34:10 +0100432 pr->port->netdev->name, i);
Jan-Bernd Themann7a291082006-09-13 17:44:31 +0200433 q_skba->os_skbs = fill_wqes - i;
434 ret = -ENOMEM;
435 break;
436 }
437 skb_reserve(skb, NET_IP_ALIGN);
438
439 skb_arr[index] = skb;
Jan-Bernd Themann2c694482007-10-01 16:33:18 +0200440 tmp_addr = ehea_map_vaddr(skb->data);
441 if (tmp_addr == -1) {
442 dev_kfree_skb(skb);
443 q_skba->os_skbs = fill_wqes - i;
444 ret = 0;
445 break;
446 }
Jan-Bernd Themann7a291082006-09-13 17:44:31 +0200447
448 rwqe = ehea_get_next_rwqe(qp, rq_nr);
449 rwqe->wr_id = EHEA_BMASK_SET(EHEA_WR_ID_TYPE, wqe_type)
Jan-Bernd Themannd1d25aa2007-07-02 13:00:46 +0200450 | EHEA_BMASK_SET(EHEA_WR_ID_INDEX, index);
Jan-Bernd Themann7a291082006-09-13 17:44:31 +0200451 rwqe->sg_list[0].l_key = pr->recv_mr.lkey;
Jan-Bernd Themann2c694482007-10-01 16:33:18 +0200452 rwqe->sg_list[0].vaddr = tmp_addr;
Jan-Bernd Themann7a291082006-09-13 17:44:31 +0200453 rwqe->sg_list[0].len = packet_size;
454 rwqe->data_segments = 1;
455
456 index++;
457 index &= max_index_mask;
Jan-Bernd Themann2c694482007-10-01 16:33:18 +0200458 adder++;
Jan-Bernd Themann7a291082006-09-13 17:44:31 +0200459 }
Thomas Klein44c82152007-07-11 16:32:00 +0200460
Jan-Bernd Themann7a291082006-09-13 17:44:31 +0200461 q_skba->index = index;
Jan-Bernd Themann2c694482007-10-01 16:33:18 +0200462 if (adder == 0)
463 goto out;
Jan-Bernd Themann7a291082006-09-13 17:44:31 +0200464
465 /* Ring doorbell */
466 iosync();
467 if (rq_nr == 2)
Jan-Bernd Themann2c694482007-10-01 16:33:18 +0200468 ehea_update_rq2a(pr->qp, adder);
Jan-Bernd Themann7a291082006-09-13 17:44:31 +0200469 else
Jan-Bernd Themann2c694482007-10-01 16:33:18 +0200470 ehea_update_rq3a(pr->qp, adder);
Thomas Klein44c82152007-07-11 16:32:00 +0200471out:
Jan-Bernd Themann7a291082006-09-13 17:44:31 +0200472 return ret;
473}
474
475
476static int ehea_refill_rq2(struct ehea_port_res *pr, int nr_of_wqes)
477{
478 return ehea_refill_rq_def(pr, &pr->rq2_skba, 2,
479 nr_of_wqes, EHEA_RWQE2_TYPE,
480 EHEA_RQ2_PKT_SIZE + NET_IP_ALIGN);
481}
482
483
484static int ehea_refill_rq3(struct ehea_port_res *pr, int nr_of_wqes)
485{
486 return ehea_refill_rq_def(pr, &pr->rq3_skba, 3,
487 nr_of_wqes, EHEA_RWQE3_TYPE,
488 EHEA_MAX_PACKET_SIZE + NET_IP_ALIGN);
489}
490
491static inline int ehea_check_cqe(struct ehea_cqe *cqe, int *rq_num)
492{
493 *rq_num = (cqe->type & EHEA_CQE_TYPE_RQ) >> 5;
494 if ((cqe->status & EHEA_CQE_STAT_ERR_MASK) == 0)
495 return 0;
496 if (((cqe->status & EHEA_CQE_STAT_ERR_TCP) != 0) &&
497 (cqe->header_length == 0))
498 return 0;
499 return -EINVAL;
500}
501
502static inline void ehea_fill_skb(struct net_device *dev,
503 struct sk_buff *skb, struct ehea_cqe *cqe)
504{
505 int length = cqe->num_bytes_transfered - 4; /*remove CRC */
506
507 skb_put(skb, length);
508 skb->ip_summed = CHECKSUM_UNNECESSARY;
509 skb->protocol = eth_type_trans(skb, dev);
510}
511
512static inline struct sk_buff *get_skb_by_index(struct sk_buff **skb_array,
513 int arr_len,
514 struct ehea_cqe *cqe)
515{
516 int skb_index = EHEA_BMASK_GET(EHEA_WR_ID_INDEX, cqe->wr_id);
517 struct sk_buff *skb;
518 void *pref;
519 int x;
520
521 x = skb_index + 1;
522 x &= (arr_len - 1);
523
524 pref = skb_array[x];
525 prefetchw(pref);
526 prefetchw(pref + EHEA_CACHE_LINE);
527
528 pref = (skb_array[x]->data);
529 prefetch(pref);
530 prefetch(pref + EHEA_CACHE_LINE);
531 prefetch(pref + EHEA_CACHE_LINE * 2);
532 prefetch(pref + EHEA_CACHE_LINE * 3);
533 skb = skb_array[skb_index];
534 skb_array[skb_index] = NULL;
535 return skb;
536}
537
538static inline struct sk_buff *get_skb_by_index_ll(struct sk_buff **skb_array,
539 int arr_len, int wqe_index)
540{
541 struct sk_buff *skb;
542 void *pref;
543 int x;
544
545 x = wqe_index + 1;
546 x &= (arr_len - 1);
547
548 pref = skb_array[x];
549 prefetchw(pref);
550 prefetchw(pref + EHEA_CACHE_LINE);
551
552 pref = (skb_array[x]->data);
553 prefetchw(pref);
554 prefetchw(pref + EHEA_CACHE_LINE);
555
556 skb = skb_array[wqe_index];
557 skb_array[wqe_index] = NULL;
558 return skb;
559}
560
561static int ehea_treat_poll_error(struct ehea_port_res *pr, int rq,
562 struct ehea_cqe *cqe, int *processed_rq2,
563 int *processed_rq3)
564{
565 struct sk_buff *skb;
566
Jan-Bernd Themannacbddb52007-03-23 17:18:53 +0100567 if (cqe->status & EHEA_CQE_STAT_ERR_TCP)
568 pr->p_stats.err_tcp_cksum++;
569 if (cqe->status & EHEA_CQE_STAT_ERR_IP)
570 pr->p_stats.err_ip_cksum++;
571 if (cqe->status & EHEA_CQE_STAT_ERR_CRC)
572 pr->p_stats.err_frame_crc++;
573
Jan-Bernd Themann7a291082006-09-13 17:44:31 +0200574 if (rq == 2) {
575 *processed_rq2 += 1;
576 skb = get_skb_by_index(pr->rq2_skba.arr, pr->rq2_skba.len, cqe);
577 dev_kfree_skb(skb);
578 } else if (rq == 3) {
579 *processed_rq3 += 1;
580 skb = get_skb_by_index(pr->rq3_skba.arr, pr->rq3_skba.len, cqe);
581 dev_kfree_skb(skb);
582 }
583
584 if (cqe->status & EHEA_CQE_STAT_FAT_ERR_MASK) {
Thomas Klein58dd8252007-11-21 17:42:27 +0100585 if (netif_msg_rx_err(pr->port)) {
586 ehea_error("Critical receive error for QP %d. "
587 "Resetting port.", pr->qp->init_attr.qp_nr);
588 ehea_dump(cqe, sizeof(*cqe), "CQE");
589 }
Jan-Bernd Themann3bf76b82007-10-08 16:01:33 +0200590 schedule_work(&pr->port->reset_task);
Jan-Bernd Themann7a291082006-09-13 17:44:31 +0200591 return 1;
592 }
593
594 return 0;
595}
596
Jan-Bernd Themannd4dc4ec2007-09-25 16:16:34 -0700597static int get_skb_hdr(struct sk_buff *skb, void **iphdr,
598 void **tcph, u64 *hdr_flags, void *priv)
599{
600 struct ehea_cqe *cqe = priv;
601 unsigned int ip_len;
602 struct iphdr *iph;
603
604 /* non tcp/udp packets */
605 if (!cqe->header_length)
606 return -1;
607
608 /* non tcp packet */
609 skb_reset_network_header(skb);
610 iph = ip_hdr(skb);
611 if (iph->protocol != IPPROTO_TCP)
612 return -1;
613
614 ip_len = ip_hdrlen(skb);
615 skb_set_transport_header(skb, ip_len);
616 *tcph = tcp_hdr(skb);
617
618 /* check if ip header and tcp header are complete */
619 if (iph->tot_len < ip_len + tcp_hdrlen(skb))
620 return -1;
621
622 *hdr_flags = LRO_IPV4 | LRO_TCP;
623 *iphdr = iph;
624
625 return 0;
626}
627
628static void ehea_proc_skb(struct ehea_port_res *pr, struct ehea_cqe *cqe,
629 struct sk_buff *skb)
630{
631 int vlan_extracted = (cqe->status & EHEA_CQE_VLAN_TAG_XTRACT)
632 && pr->port->vgrp;
633
634 if (use_lro) {
635 if (vlan_extracted)
636 lro_vlan_hwaccel_receive_skb(&pr->lro_mgr, skb,
637 pr->port->vgrp,
638 cqe->vlan_tag,
639 cqe);
640 else
641 lro_receive_skb(&pr->lro_mgr, skb, cqe);
642 } else {
643 if (vlan_extracted)
644 vlan_hwaccel_receive_skb(skb, pr->port->vgrp,
645 cqe->vlan_tag);
646 else
647 netif_receive_skb(skb);
648 }
649}
650
Stephen Hemmingerbea33482007-10-03 16:41:36 -0700651static int ehea_proc_rwqes(struct net_device *dev,
652 struct ehea_port_res *pr,
653 int budget)
Jan-Bernd Themann7a291082006-09-13 17:44:31 +0200654{
Jan-Bernd Themann18604c52007-02-28 18:34:10 +0100655 struct ehea_port *port = pr->port;
Jan-Bernd Themann7a291082006-09-13 17:44:31 +0200656 struct ehea_qp *qp = pr->qp;
657 struct ehea_cqe *cqe;
658 struct sk_buff *skb;
659 struct sk_buff **skb_arr_rq1 = pr->rq1_skba.arr;
660 struct sk_buff **skb_arr_rq2 = pr->rq2_skba.arr;
661 struct sk_buff **skb_arr_rq3 = pr->rq3_skba.arr;
662 int skb_arr_rq1_len = pr->rq1_skba.len;
663 int skb_arr_rq2_len = pr->rq2_skba.len;
664 int skb_arr_rq3_len = pr->rq3_skba.len;
665 int processed, processed_rq1, processed_rq2, processed_rq3;
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)) {
688 if (netif_msg_rx_err(port))
689 ehea_error("LL rq1: skb=NULL");
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);
693 if (!skb)
694 break;
695 }
Doug Maxey508d2b52008-01-31 20:20:49 -0600696 skb_copy_to_linear_data(skb, ((char *)cqe) + 64,
Jan-Bernd Themannd1d25aa2007-07-02 13:00:46 +0200697 cqe->num_bytes_transfered - 4);
Stephen Hemmingerbea33482007-10-03 16:41:36 -0700698 ehea_fill_skb(dev, skb, cqe);
Doug Maxey508d2b52008-01-31 20:20:49 -0600699 } else if (rq == 2) {
700 /* RQ2 */
Jan-Bernd Themann7a291082006-09-13 17:44:31 +0200701 skb = get_skb_by_index(skb_arr_rq2,
702 skb_arr_rq2_len, cqe);
703 if (unlikely(!skb)) {
704 if (netif_msg_rx_err(port))
705 ehea_error("rq2: skb=NULL");
706 break;
707 }
Stephen Hemmingerbea33482007-10-03 16:41:36 -0700708 ehea_fill_skb(dev, skb, cqe);
Jan-Bernd Themann7a291082006-09-13 17:44:31 +0200709 processed_rq2++;
Doug Maxey508d2b52008-01-31 20:20:49 -0600710 } else {
711 /* RQ3 */
Jan-Bernd Themann7a291082006-09-13 17:44:31 +0200712 skb = get_skb_by_index(skb_arr_rq3,
713 skb_arr_rq3_len, cqe);
714 if (unlikely(!skb)) {
715 if (netif_msg_rx_err(port))
716 ehea_error("rq3: skb=NULL");
717 break;
718 }
Stephen Hemmingerbea33482007-10-03 16:41:36 -0700719 ehea_fill_skb(dev, skb, cqe);
Jan-Bernd Themann7a291082006-09-13 17:44:31 +0200720 processed_rq3++;
721 }
722
Jan-Bernd Themannd4dc4ec2007-09-25 16:16:34 -0700723 ehea_proc_skb(pr, cqe, skb);
Stephen Hemmingerbea33482007-10-03 16:41:36 -0700724 dev->last_rx = jiffies;
Jan-Bernd Themann18604c52007-02-28 18:34:10 +0100725 } else {
Jan-Bernd Themannacbddb52007-03-23 17:18:53 +0100726 pr->p_stats.poll_receive_errors++;
Jan-Bernd Themann7a291082006-09-13 17:44:31 +0200727 port_reset = ehea_treat_poll_error(pr, rq, cqe,
728 &processed_rq2,
729 &processed_rq3);
730 if (port_reset)
731 break;
732 }
733 cqe = ehea_poll_rq1(qp, &wqe_index);
734 }
Jan-Bernd Themannd4dc4ec2007-09-25 16:16:34 -0700735 if (use_lro)
736 lro_flush_all(&pr->lro_mgr);
Jan-Bernd Themann7a291082006-09-13 17:44:31 +0200737
Jan-Bernd Themann7a291082006-09-13 17:44:31 +0200738 pr->rx_packets += processed;
739
740 ehea_refill_rq1(pr, last_wqe_index, processed_rq1);
741 ehea_refill_rq2(pr, processed_rq2);
742 ehea_refill_rq3(pr, processed_rq3);
743
Stephen Hemmingerbea33482007-10-03 16:41:36 -0700744 return processed;
Jan-Bernd Themann7a291082006-09-13 17:44:31 +0200745}
746
Jan-Bernd Themann18604c52007-02-28 18:34:10 +0100747static struct ehea_cqe *ehea_proc_cqes(struct ehea_port_res *pr, int my_quota)
Jan-Bernd Themann7a291082006-09-13 17:44:31 +0200748{
Jan-Bernd Themannacbddb52007-03-23 17:18:53 +0100749 struct sk_buff *skb;
Jan-Bernd Themann7a291082006-09-13 17:44:31 +0200750 struct ehea_cq *send_cq = pr->send_cq;
751 struct ehea_cqe *cqe;
Jan-Bernd Themann18604c52007-02-28 18:34:10 +0100752 int quota = my_quota;
Jan-Bernd Themann7a291082006-09-13 17:44:31 +0200753 int cqe_counter = 0;
754 int swqe_av = 0;
Jan-Bernd Themannacbddb52007-03-23 17:18:53 +0100755 int index;
Jan-Bernd Themann7a291082006-09-13 17:44:31 +0200756 unsigned long flags;
757
Jan-Bernd Themann18604c52007-02-28 18:34:10 +0100758 cqe = ehea_poll_cq(send_cq);
Doug Maxey508d2b52008-01-31 20:20:49 -0600759 while (cqe && (quota > 0)) {
Jan-Bernd Themann18604c52007-02-28 18:34:10 +0100760 ehea_inc_cq(send_cq);
761
Jan-Bernd Themann7a291082006-09-13 17:44:31 +0200762 cqe_counter++;
763 rmb();
764 if (cqe->status & EHEA_CQE_STAT_ERR_MASK) {
765 ehea_error("Send Completion Error: Resetting port");
766 if (netif_msg_tx_err(pr->port))
767 ehea_dump(cqe, sizeof(*cqe), "Send CQE");
Jan-Bernd Themann3bf76b82007-10-08 16:01:33 +0200768 schedule_work(&pr->port->reset_task);
Jan-Bernd Themann7a291082006-09-13 17:44:31 +0200769 break;
770 }
771
772 if (netif_msg_tx_done(pr->port))
773 ehea_dump(cqe, sizeof(*cqe), "CQE");
774
775 if (likely(EHEA_BMASK_GET(EHEA_WR_ID_TYPE, cqe->wr_id)
Jan-Bernd Themannacbddb52007-03-23 17:18:53 +0100776 == EHEA_SWQE2_TYPE)) {
777
778 index = EHEA_BMASK_GET(EHEA_WR_ID_INDEX, cqe->wr_id);
779 skb = pr->sq_skba.arr[index];
780 dev_kfree_skb(skb);
781 pr->sq_skba.arr[index] = NULL;
782 }
Jan-Bernd Themann7a291082006-09-13 17:44:31 +0200783
784 swqe_av += EHEA_BMASK_GET(EHEA_WR_ID_REFILL, cqe->wr_id);
785 quota--;
Jan-Bernd Themann18604c52007-02-28 18:34:10 +0100786
787 cqe = ehea_poll_cq(send_cq);
788 };
Jan-Bernd Themann7a291082006-09-13 17:44:31 +0200789
790 ehea_update_feca(send_cq, cqe_counter);
791 atomic_add(swqe_av, &pr->swqe_avail);
792
793 spin_lock_irqsave(&pr->netif_queue, flags);
Jan-Bernd Themann18604c52007-02-28 18:34:10 +0100794
Jan-Bernd Themann7a291082006-09-13 17:44:31 +0200795 if (pr->queue_stopped && (atomic_read(&pr->swqe_avail)
796 >= pr->swqe_refill_th)) {
797 netif_wake_queue(pr->port->netdev);
798 pr->queue_stopped = 0;
799 }
800 spin_unlock_irqrestore(&pr->netif_queue, flags);
801
Jan-Bernd Themann18604c52007-02-28 18:34:10 +0100802 return cqe;
Jan-Bernd Themann7a291082006-09-13 17:44:31 +0200803}
804
Jan-Bernd Themann18604c52007-02-28 18:34:10 +0100805#define EHEA_NAPI_POLL_NUM_BEFORE_IRQ 16
Stephen Hemmingerbea33482007-10-03 16:41:36 -0700806#define EHEA_POLL_MAX_CQES 65535
Jan-Bernd Themann18604c52007-02-28 18:34:10 +0100807
Stephen Hemmingerbea33482007-10-03 16:41:36 -0700808static int ehea_poll(struct napi_struct *napi, int budget)
Jan-Bernd Themann7a291082006-09-13 17:44:31 +0200809{
Doug Maxey508d2b52008-01-31 20:20:49 -0600810 struct ehea_port_res *pr = container_of(napi, struct ehea_port_res,
811 napi);
Stephen Hemmingerbea33482007-10-03 16:41:36 -0700812 struct net_device *dev = pr->port->netdev;
Jan-Bernd Themann18604c52007-02-28 18:34:10 +0100813 struct ehea_cqe *cqe;
814 struct ehea_cqe *cqe_skb = NULL;
815 int force_irq, wqe_index;
Stephen Hemmingerbea33482007-10-03 16:41:36 -0700816 int rx = 0;
Jan-Bernd Themann18604c52007-02-28 18:34:10 +0100817
818 force_irq = (pr->poll_counter > EHEA_NAPI_POLL_NUM_BEFORE_IRQ);
Stephen Hemmingerbea33482007-10-03 16:41:36 -0700819 cqe_skb = ehea_proc_cqes(pr, EHEA_POLL_MAX_CQES);
Jan-Bernd Themann18604c52007-02-28 18:34:10 +0100820
Stephen Hemmingerbea33482007-10-03 16:41:36 -0700821 if (!force_irq)
822 rx += ehea_proc_rwqes(dev, pr, budget - rx);
823
824 while ((rx != budget) || force_irq) {
Jan-Bernd Themann18604c52007-02-28 18:34:10 +0100825 pr->poll_counter = 0;
Stephen Hemmingerbea33482007-10-03 16:41:36 -0700826 force_irq = 0;
827 netif_rx_complete(dev, napi);
Jan-Bernd Themann18604c52007-02-28 18:34:10 +0100828 ehea_reset_cq_ep(pr->recv_cq);
829 ehea_reset_cq_ep(pr->send_cq);
830 ehea_reset_cq_n1(pr->recv_cq);
831 ehea_reset_cq_n1(pr->send_cq);
832 cqe = ehea_poll_rq1(pr->qp, &wqe_index);
833 cqe_skb = ehea_poll_cq(pr->send_cq);
834
Jan-Bernd Themanne542aa62007-03-22 17:50:24 +0100835 if (!cqe && !cqe_skb)
Stephen Hemmingerbea33482007-10-03 16:41:36 -0700836 return rx;
Jan-Bernd Themann18604c52007-02-28 18:34:10 +0100837
Stephen Hemmingerbea33482007-10-03 16:41:36 -0700838 if (!netif_rx_reschedule(dev, napi))
839 return rx;
840
841 cqe_skb = ehea_proc_cqes(pr, EHEA_POLL_MAX_CQES);
842 rx += ehea_proc_rwqes(dev, pr, budget - rx);
Jan-Bernd Themann18604c52007-02-28 18:34:10 +0100843 }
Jan-Bernd Themanne542aa62007-03-22 17:50:24 +0100844
Stephen Hemmingerbea33482007-10-03 16:41:36 -0700845 pr->poll_counter++;
846 return rx;
Jan-Bernd Themann7a291082006-09-13 17:44:31 +0200847}
848
Jan-Bernd Themann8d22c972007-07-23 16:05:03 +0200849#ifdef CONFIG_NET_POLL_CONTROLLER
850static void ehea_netpoll(struct net_device *dev)
851{
852 struct ehea_port *port = netdev_priv(dev);
Stephen Hemmingerbea33482007-10-03 16:41:36 -0700853 int i;
Jan-Bernd Themann8d22c972007-07-23 16:05:03 +0200854
Stephen Hemmingerbea33482007-10-03 16:41:36 -0700855 for (i = 0; i < port->num_def_qps; i++)
856 netif_rx_schedule(dev, &port->port_res[i].napi);
Jan-Bernd Themann8d22c972007-07-23 16:05:03 +0200857}
858#endif
859
David Howells7d12e782006-10-05 14:55:46 +0100860static irqreturn_t ehea_recv_irq_handler(int irq, void *param)
Jan-Bernd Themann7a291082006-09-13 17:44:31 +0200861{
862 struct ehea_port_res *pr = param;
Jan-Bernd Themann18604c52007-02-28 18:34:10 +0100863
Stephen Hemmingerbea33482007-10-03 16:41:36 -0700864 netif_rx_schedule(pr->port->netdev, &pr->napi);
Jan-Bernd Themann18604c52007-02-28 18:34:10 +0100865
Jan-Bernd Themann7a291082006-09-13 17:44:31 +0200866 return IRQ_HANDLED;
867}
868
David Howells7d12e782006-10-05 14:55:46 +0100869static irqreturn_t ehea_qp_aff_irq_handler(int irq, void *param)
Jan-Bernd Themann7a291082006-09-13 17:44:31 +0200870{
871 struct ehea_port *port = param;
872 struct ehea_eqe *eqe;
Jan-Bernd Themannd2db9ee2007-02-09 09:10:51 +0100873 struct ehea_qp *qp;
Jan-Bernd Themann7a291082006-09-13 17:44:31 +0200874 u32 qp_token;
875
876 eqe = ehea_poll_eq(port->qp_eq);
Thomas Kleinbb3a6442007-01-22 12:54:50 +0100877
Jan-Bernd Themann7a291082006-09-13 17:44:31 +0200878 while (eqe) {
Jan-Bernd Themann7a291082006-09-13 17:44:31 +0200879 qp_token = EHEA_BMASK_GET(EHEA_EQE_QP_TOKEN, eqe->entry);
Thomas Kleinbb3a6442007-01-22 12:54:50 +0100880 ehea_error("QP aff_err: entry=0x%lx, token=0x%x",
881 eqe->entry, qp_token);
Jan-Bernd Themannd2db9ee2007-02-09 09:10:51 +0100882
883 qp = port->port_res[qp_token].qp;
884 ehea_error_data(port->adapter, qp->fw_handle);
Thomas Kleinbb3a6442007-01-22 12:54:50 +0100885 eqe = ehea_poll_eq(port->qp_eq);
Jan-Bernd Themann7a291082006-09-13 17:44:31 +0200886 }
887
Jan-Bernd Themann3bf76b82007-10-08 16:01:33 +0200888 schedule_work(&port->reset_task);
Jan-Bernd Themannd2db9ee2007-02-09 09:10:51 +0100889
Jan-Bernd Themann7a291082006-09-13 17:44:31 +0200890 return IRQ_HANDLED;
891}
892
893static struct ehea_port *ehea_get_port(struct ehea_adapter *adapter,
894 int logical_port)
895{
896 int i;
897
Jan-Bernd Themann1acf2312007-02-28 18:34:02 +0100898 for (i = 0; i < EHEA_MAX_PORTS; i++)
Thomas Klein41b69c72007-01-22 12:55:20 +0100899 if (adapter->port[i])
Jan-Bernd Themannd1d25aa2007-07-02 13:00:46 +0200900 if (adapter->port[i]->logical_port_id == logical_port)
Thomas Klein41b69c72007-01-22 12:55:20 +0100901 return adapter->port[i];
Jan-Bernd Themann7a291082006-09-13 17:44:31 +0200902 return NULL;
903}
904
905int ehea_sense_port_attr(struct ehea_port *port)
906{
907 int ret;
908 u64 hret;
909 struct hcp_ehea_port_cb0 *cb0;
910
Doug Maxey508d2b52008-01-31 20:20:49 -0600911 /* may be called via ehea_neq_tasklet() */
912 cb0 = kzalloc(PAGE_SIZE, GFP_ATOMIC);
913 if (!cb0) {
Jan-Bernd Themann7a291082006-09-13 17:44:31 +0200914 ehea_error("no mem for cb0");
915 ret = -ENOMEM;
916 goto out;
917 }
918
919 hret = ehea_h_query_ehea_port(port->adapter->handle,
920 port->logical_port_id, H_PORT_CB0,
921 EHEA_BMASK_SET(H_PORT_CB0_ALL, 0xFFFF),
922 cb0);
923 if (hret != H_SUCCESS) {
924 ret = -EIO;
925 goto out_free;
926 }
927
928 /* MAC address */
929 port->mac_addr = cb0->port_mac_addr << 16;
930
Doug Maxey508d2b52008-01-31 20:20:49 -0600931 if (!is_valid_ether_addr((u8 *)&port->mac_addr)) {
Jan-Bernd Themann7a291082006-09-13 17:44:31 +0200932 ret = -EADDRNOTAVAIL;
933 goto out_free;
934 }
935
936 /* Port speed */
937 switch (cb0->port_speed) {
938 case H_SPEED_10M_H:
939 port->port_speed = EHEA_SPEED_10M;
940 port->full_duplex = 0;
941 break;
942 case H_SPEED_10M_F:
943 port->port_speed = EHEA_SPEED_10M;
944 port->full_duplex = 1;
945 break;
946 case H_SPEED_100M_H:
947 port->port_speed = EHEA_SPEED_100M;
948 port->full_duplex = 0;
949 break;
950 case H_SPEED_100M_F:
951 port->port_speed = EHEA_SPEED_100M;
952 port->full_duplex = 1;
953 break;
954 case H_SPEED_1G_F:
955 port->port_speed = EHEA_SPEED_1G;
956 port->full_duplex = 1;
957 break;
958 case H_SPEED_10G_F:
959 port->port_speed = EHEA_SPEED_10G;
960 port->full_duplex = 1;
961 break;
962 default:
963 port->port_speed = 0;
964 port->full_duplex = 0;
965 break;
966 }
967
Thomas Kleine919b592007-01-22 12:53:20 +0100968 port->autoneg = 1;
Jan-Bernd Themann18604c52007-02-28 18:34:10 +0100969 port->num_mcs = cb0->num_default_qps;
Thomas Kleine919b592007-01-22 12:53:20 +0100970
Jan-Bernd Themann7a291082006-09-13 17:44:31 +0200971 /* Number of default QPs */
Jan-Bernd Themann18604c52007-02-28 18:34:10 +0100972 if (use_mcs)
973 port->num_def_qps = cb0->num_default_qps;
974 else
975 port->num_def_qps = 1;
Jan-Bernd Themann7a291082006-09-13 17:44:31 +0200976
977 if (!port->num_def_qps) {
978 ret = -EINVAL;
979 goto out_free;
980 }
981
Jan-Bernd Themann18604c52007-02-28 18:34:10 +0100982 port->num_tx_qps = num_tx_qps;
983
984 if (port->num_def_qps >= port->num_tx_qps)
Jan-Bernd Themann7a291082006-09-13 17:44:31 +0200985 port->num_add_tx_qps = 0;
986 else
Jan-Bernd Themann18604c52007-02-28 18:34:10 +0100987 port->num_add_tx_qps = port->num_tx_qps - port->num_def_qps;
Jan-Bernd Themann7a291082006-09-13 17:44:31 +0200988
989 ret = 0;
990out_free:
991 if (ret || netif_msg_probe(port))
992 ehea_dump(cb0, sizeof(*cb0), "ehea_sense_port_attr");
993 kfree(cb0);
994out:
995 return ret;
996}
997
998int ehea_set_portspeed(struct ehea_port *port, u32 port_speed)
999{
1000 struct hcp_ehea_port_cb4 *cb4;
1001 u64 hret;
1002 int ret = 0;
1003
Thomas Kleina1d261c2006-11-03 17:48:23 +01001004 cb4 = kzalloc(PAGE_SIZE, GFP_KERNEL);
Jan-Bernd Themann7a291082006-09-13 17:44:31 +02001005 if (!cb4) {
1006 ehea_error("no mem for cb4");
1007 ret = -ENOMEM;
1008 goto out;
1009 }
1010
1011 cb4->port_speed = port_speed;
1012
1013 netif_carrier_off(port->netdev);
1014
1015 hret = ehea_h_modify_ehea_port(port->adapter->handle,
1016 port->logical_port_id,
1017 H_PORT_CB4, H_PORT_CB4_SPEED, cb4);
1018 if (hret == H_SUCCESS) {
1019 port->autoneg = port_speed == EHEA_SPEED_AUTONEG ? 1 : 0;
1020
1021 hret = ehea_h_query_ehea_port(port->adapter->handle,
1022 port->logical_port_id,
1023 H_PORT_CB4, H_PORT_CB4_SPEED,
1024 cb4);
1025 if (hret == H_SUCCESS) {
1026 switch (cb4->port_speed) {
1027 case H_SPEED_10M_H:
1028 port->port_speed = EHEA_SPEED_10M;
1029 port->full_duplex = 0;
1030 break;
1031 case H_SPEED_10M_F:
1032 port->port_speed = EHEA_SPEED_10M;
1033 port->full_duplex = 1;
1034 break;
1035 case H_SPEED_100M_H:
1036 port->port_speed = EHEA_SPEED_100M;
1037 port->full_duplex = 0;
1038 break;
1039 case H_SPEED_100M_F:
1040 port->port_speed = EHEA_SPEED_100M;
1041 port->full_duplex = 1;
1042 break;
1043 case H_SPEED_1G_F:
1044 port->port_speed = EHEA_SPEED_1G;
1045 port->full_duplex = 1;
1046 break;
1047 case H_SPEED_10G_F:
1048 port->port_speed = EHEA_SPEED_10G;
1049 port->full_duplex = 1;
1050 break;
1051 default:
1052 port->port_speed = 0;
1053 port->full_duplex = 0;
1054 break;
1055 }
1056 } else {
1057 ehea_error("Failed sensing port speed");
1058 ret = -EIO;
1059 }
1060 } else {
1061 if (hret == H_AUTHORITY) {
Thomas Klein7674a582007-01-22 12:54:20 +01001062 ehea_info("Hypervisor denied setting port speed");
Jan-Bernd Themann7a291082006-09-13 17:44:31 +02001063 ret = -EPERM;
1064 } else {
1065 ret = -EIO;
1066 ehea_error("Failed setting port speed");
1067 }
1068 }
Jan-Bernd Themann8759cf72007-09-07 12:30:17 +02001069 if (!prop_carrier_state || (port->phy_link == EHEA_PHY_LINK_UP))
1070 netif_carrier_on(port->netdev);
1071
Jan-Bernd Themann7a291082006-09-13 17:44:31 +02001072 kfree(cb4);
1073out:
1074 return ret;
1075}
1076
1077static void ehea_parse_eqe(struct ehea_adapter *adapter, u64 eqe)
1078{
1079 int ret;
1080 u8 ec;
1081 u8 portnum;
1082 struct ehea_port *port;
1083
1084 ec = EHEA_BMASK_GET(NEQE_EVENT_CODE, eqe);
1085 portnum = EHEA_BMASK_GET(NEQE_PORTNUM, eqe);
1086 port = ehea_get_port(adapter, portnum);
1087
1088 switch (ec) {
1089 case EHEA_EC_PORTSTATE_CHG: /* port state change */
1090
1091 if (!port) {
1092 ehea_error("unknown portnum %x", portnum);
1093 break;
1094 }
1095
1096 if (EHEA_BMASK_GET(NEQE_PORT_UP, eqe)) {
1097 if (!netif_carrier_ok(port->netdev)) {
Jan-Bernd Themann1e1675c2006-10-25 13:11:42 +02001098 ret = ehea_sense_port_attr(port);
Jan-Bernd Themann7a291082006-09-13 17:44:31 +02001099 if (ret) {
1100 ehea_error("failed resensing port "
1101 "attributes");
1102 break;
1103 }
1104
1105 if (netif_msg_link(port))
1106 ehea_info("%s: Logical port up: %dMbps "
1107 "%s Duplex",
1108 port->netdev->name,
1109 port->port_speed,
1110 port->full_duplex ==
1111 1 ? "Full" : "Half");
1112
1113 netif_carrier_on(port->netdev);
1114 netif_wake_queue(port->netdev);
1115 }
1116 } else
1117 if (netif_carrier_ok(port->netdev)) {
1118 if (netif_msg_link(port))
1119 ehea_info("%s: Logical port down",
1120 port->netdev->name);
1121 netif_carrier_off(port->netdev);
1122 netif_stop_queue(port->netdev);
1123 }
1124
1125 if (EHEA_BMASK_GET(NEQE_EXTSWITCH_PORT_UP, eqe)) {
Jan-Bernd Themann8759cf72007-09-07 12:30:17 +02001126 port->phy_link = EHEA_PHY_LINK_UP;
Jan-Bernd Themann7a291082006-09-13 17:44:31 +02001127 if (netif_msg_link(port))
1128 ehea_info("%s: Physical port up",
1129 port->netdev->name);
Jan-Bernd Themann8759cf72007-09-07 12:30:17 +02001130 if (prop_carrier_state)
1131 netif_carrier_on(port->netdev);
Jan-Bernd Themann7a291082006-09-13 17:44:31 +02001132 } else {
Jan-Bernd Themann8759cf72007-09-07 12:30:17 +02001133 port->phy_link = EHEA_PHY_LINK_DOWN;
Jan-Bernd Themann7a291082006-09-13 17:44:31 +02001134 if (netif_msg_link(port))
1135 ehea_info("%s: Physical port down",
1136 port->netdev->name);
Jan-Bernd Themann8759cf72007-09-07 12:30:17 +02001137 if (prop_carrier_state)
1138 netif_carrier_off(port->netdev);
Jan-Bernd Themann7a291082006-09-13 17:44:31 +02001139 }
1140
1141 if (EHEA_BMASK_GET(NEQE_EXTSWITCH_PRIMARY, eqe))
1142 ehea_info("External switch port is primary port");
1143 else
1144 ehea_info("External switch port is backup port");
1145
1146 break;
1147 case EHEA_EC_ADAPTER_MALFUNC:
1148 ehea_error("Adapter malfunction");
1149 break;
1150 case EHEA_EC_PORT_MALFUNC:
1151 ehea_info("Port malfunction: Device: %s", port->netdev->name);
1152 netif_carrier_off(port->netdev);
1153 netif_stop_queue(port->netdev);
1154 break;
1155 default:
Jan-Bernd Themannbff0a552006-10-05 16:53:14 +02001156 ehea_error("unknown event code %x, eqe=0x%lX", ec, eqe);
Jan-Bernd Themann7a291082006-09-13 17:44:31 +02001157 break;
1158 }
1159}
1160
1161static void ehea_neq_tasklet(unsigned long data)
1162{
Doug Maxey508d2b52008-01-31 20:20:49 -06001163 struct ehea_adapter *adapter = (struct ehea_adapter *)data;
Jan-Bernd Themann7a291082006-09-13 17:44:31 +02001164 struct ehea_eqe *eqe;
1165 u64 event_mask;
1166
1167 eqe = ehea_poll_eq(adapter->neq);
1168 ehea_debug("eqe=%p", eqe);
1169
1170 while (eqe) {
1171 ehea_debug("*eqe=%lx", eqe->entry);
1172 ehea_parse_eqe(adapter, eqe->entry);
1173 eqe = ehea_poll_eq(adapter->neq);
1174 ehea_debug("next eqe=%p", eqe);
1175 }
1176
1177 event_mask = EHEA_BMASK_SET(NELR_PORTSTATE_CHG, 1)
1178 | EHEA_BMASK_SET(NELR_ADAPTER_MALFUNC, 1)
1179 | EHEA_BMASK_SET(NELR_PORT_MALFUNC, 1);
1180
1181 ehea_h_reset_events(adapter->handle,
1182 adapter->neq->fw_handle, event_mask);
1183}
1184
David Howells7d12e782006-10-05 14:55:46 +01001185static irqreturn_t ehea_interrupt_neq(int irq, void *param)
Jan-Bernd Themann7a291082006-09-13 17:44:31 +02001186{
1187 struct ehea_adapter *adapter = param;
1188 tasklet_hi_schedule(&adapter->neq_tasklet);
1189 return IRQ_HANDLED;
1190}
1191
1192
1193static int ehea_fill_port_res(struct ehea_port_res *pr)
1194{
1195 int ret;
1196 struct ehea_qp_init_attr *init_attr = &pr->qp->init_attr;
1197
1198 ret = ehea_init_fill_rq1(pr, init_attr->act_nr_rwqes_rq1
1199 - init_attr->act_nr_rwqes_rq2
1200 - init_attr->act_nr_rwqes_rq3 - 1);
1201
1202 ret |= ehea_refill_rq2(pr, init_attr->act_nr_rwqes_rq2 - 1);
1203
1204 ret |= ehea_refill_rq3(pr, init_attr->act_nr_rwqes_rq3 - 1);
1205
1206 return ret;
1207}
1208
1209static int ehea_reg_interrupts(struct net_device *dev)
1210{
1211 struct ehea_port *port = netdev_priv(dev);
1212 struct ehea_port_res *pr;
1213 int i, ret;
1214
Jan-Bernd Themann7a291082006-09-13 17:44:31 +02001215
1216 snprintf(port->int_aff_name, EHEA_IRQ_NAME_SIZE - 1, "%s-aff",
1217 dev->name);
1218
Joachim Fenkes6b08f3a2007-09-26 19:45:51 +10001219 ret = ibmebus_request_irq(port->qp_eq->attr.ist1,
Jan-Bernd Themann7a291082006-09-13 17:44:31 +02001220 ehea_qp_aff_irq_handler,
Thomas Gleixner38515e92007-02-14 00:33:16 -08001221 IRQF_DISABLED, port->int_aff_name, port);
Jan-Bernd Themann7a291082006-09-13 17:44:31 +02001222 if (ret) {
1223 ehea_error("failed registering irq for qp_aff_irq_handler:"
1224 "ist=%X", port->qp_eq->attr.ist1);
1225 goto out_free_qpeq;
1226 }
1227
1228 if (netif_msg_ifup(port))
1229 ehea_info("irq_handle 0x%X for function qp_aff_irq_handler "
1230 "registered", port->qp_eq->attr.ist1);
1231
Jan-Bernd Themann18604c52007-02-28 18:34:10 +01001232
Jan-Bernd Themann7a291082006-09-13 17:44:31 +02001233 for (i = 0; i < port->num_def_qps + port->num_add_tx_qps; i++) {
1234 pr = &port->port_res[i];
1235 snprintf(pr->int_send_name, EHEA_IRQ_NAME_SIZE - 1,
Jan-Bernd Themann18604c52007-02-28 18:34:10 +01001236 "%s-queue%d", dev->name, i);
Joachim Fenkes6b08f3a2007-09-26 19:45:51 +10001237 ret = ibmebus_request_irq(pr->eq->attr.ist1,
Jan-Bernd Themann18604c52007-02-28 18:34:10 +01001238 ehea_recv_irq_handler,
Thomas Gleixner38515e92007-02-14 00:33:16 -08001239 IRQF_DISABLED, pr->int_send_name,
Jan-Bernd Themann7a291082006-09-13 17:44:31 +02001240 pr);
1241 if (ret) {
Jan-Bernd Themann18604c52007-02-28 18:34:10 +01001242 ehea_error("failed registering irq for ehea_queue "
Jan-Bernd Themann7a291082006-09-13 17:44:31 +02001243 "port_res_nr:%d, ist=%X", i,
Jan-Bernd Themann18604c52007-02-28 18:34:10 +01001244 pr->eq->attr.ist1);
Jan-Bernd Themann7a291082006-09-13 17:44:31 +02001245 goto out_free_req;
1246 }
1247 if (netif_msg_ifup(port))
Jan-Bernd Themann18604c52007-02-28 18:34:10 +01001248 ehea_info("irq_handle 0x%X for function ehea_queue_int "
1249 "%d registered", pr->eq->attr.ist1, i);
Jan-Bernd Themann7a291082006-09-13 17:44:31 +02001250 }
1251out:
1252 return ret;
1253
Jan-Bernd Themann18604c52007-02-28 18:34:10 +01001254
Jan-Bernd Themann7a291082006-09-13 17:44:31 +02001255out_free_req:
1256 while (--i >= 0) {
Jan-Bernd Themann18604c52007-02-28 18:34:10 +01001257 u32 ist = port->port_res[i].eq->attr.ist1;
Joachim Fenkes6b08f3a2007-09-26 19:45:51 +10001258 ibmebus_free_irq(ist, &port->port_res[i]);
Jan-Bernd Themann7a291082006-09-13 17:44:31 +02001259 }
Jan-Bernd Themann18604c52007-02-28 18:34:10 +01001260
Jan-Bernd Themann7a291082006-09-13 17:44:31 +02001261out_free_qpeq:
Joachim Fenkes6b08f3a2007-09-26 19:45:51 +10001262 ibmebus_free_irq(port->qp_eq->attr.ist1, port);
Jan-Bernd Themann7a291082006-09-13 17:44:31 +02001263 i = port->num_def_qps;
Jan-Bernd Themann18604c52007-02-28 18:34:10 +01001264
Jan-Bernd Themann7a291082006-09-13 17:44:31 +02001265 goto out;
Jan-Bernd Themann18604c52007-02-28 18:34:10 +01001266
Jan-Bernd Themann7a291082006-09-13 17:44:31 +02001267}
1268
1269static void ehea_free_interrupts(struct net_device *dev)
1270{
1271 struct ehea_port *port = netdev_priv(dev);
1272 struct ehea_port_res *pr;
1273 int i;
1274
1275 /* send */
Jan-Bernd Themann18604c52007-02-28 18:34:10 +01001276
Jan-Bernd Themann7a291082006-09-13 17:44:31 +02001277 for (i = 0; i < port->num_def_qps + port->num_add_tx_qps; i++) {
1278 pr = &port->port_res[i];
Joachim Fenkes6b08f3a2007-09-26 19:45:51 +10001279 ibmebus_free_irq(pr->eq->attr.ist1, pr);
Jan-Bernd Themann7a291082006-09-13 17:44:31 +02001280 if (netif_msg_intr(port))
1281 ehea_info("free send irq for res %d with handle 0x%X",
Jan-Bernd Themann18604c52007-02-28 18:34:10 +01001282 i, pr->eq->attr.ist1);
Jan-Bernd Themann7a291082006-09-13 17:44:31 +02001283 }
1284
1285 /* associated events */
Joachim Fenkes6b08f3a2007-09-26 19:45:51 +10001286 ibmebus_free_irq(port->qp_eq->attr.ist1, port);
Jan-Bernd Themann7a291082006-09-13 17:44:31 +02001287 if (netif_msg_intr(port))
1288 ehea_info("associated event interrupt for handle 0x%X freed",
1289 port->qp_eq->attr.ist1);
1290}
1291
1292static int ehea_configure_port(struct ehea_port *port)
1293{
1294 int ret, i;
1295 u64 hret, mask;
1296 struct hcp_ehea_port_cb0 *cb0;
1297
1298 ret = -ENOMEM;
Thomas Kleina1d261c2006-11-03 17:48:23 +01001299 cb0 = kzalloc(PAGE_SIZE, GFP_KERNEL);
Jan-Bernd Themann7a291082006-09-13 17:44:31 +02001300 if (!cb0)
1301 goto out;
1302
1303 cb0->port_rc = EHEA_BMASK_SET(PXLY_RC_VALID, 1)
1304 | EHEA_BMASK_SET(PXLY_RC_IP_CHKSUM, 1)
1305 | EHEA_BMASK_SET(PXLY_RC_TCP_UDP_CHKSUM, 1)
1306 | EHEA_BMASK_SET(PXLY_RC_VLAN_XTRACT, 1)
1307 | EHEA_BMASK_SET(PXLY_RC_VLAN_TAG_FILTER,
1308 PXLY_RC_VLAN_FILTER)
1309 | EHEA_BMASK_SET(PXLY_RC_JUMBO_FRAME, 1);
1310
Jan-Bernd Themann18604c52007-02-28 18:34:10 +01001311 for (i = 0; i < port->num_mcs; i++)
1312 if (use_mcs)
1313 cb0->default_qpn_arr[i] =
1314 port->port_res[i].qp->init_attr.qp_nr;
1315 else
1316 cb0->default_qpn_arr[i] =
1317 port->port_res[0].qp->init_attr.qp_nr;
Jan-Bernd Themanne542aa62007-03-22 17:50:24 +01001318
Jan-Bernd Themann7a291082006-09-13 17:44:31 +02001319 if (netif_msg_ifup(port))
1320 ehea_dump(cb0, sizeof(*cb0), "ehea_configure_port");
1321
1322 mask = EHEA_BMASK_SET(H_PORT_CB0_PRC, 1)
1323 | EHEA_BMASK_SET(H_PORT_CB0_DEFQPNARRAY, 1);
1324
1325 hret = ehea_h_modify_ehea_port(port->adapter->handle,
1326 port->logical_port_id,
1327 H_PORT_CB0, mask, cb0);
1328 ret = -EIO;
1329 if (hret != H_SUCCESS)
1330 goto out_free;
1331
1332 ret = 0;
1333
1334out_free:
1335 kfree(cb0);
1336out:
1337 return ret;
1338}
1339
Jan-Bernd Themanne542aa62007-03-22 17:50:24 +01001340int ehea_gen_smrs(struct ehea_port_res *pr)
Jan-Bernd Themann7a291082006-09-13 17:44:31 +02001341{
Jan-Bernd Themanne542aa62007-03-22 17:50:24 +01001342 int ret;
Jan-Bernd Themann7a291082006-09-13 17:44:31 +02001343 struct ehea_adapter *adapter = pr->port->adapter;
1344
Jan-Bernd Themanne542aa62007-03-22 17:50:24 +01001345 ret = ehea_gen_smr(adapter, &adapter->mr, &pr->send_mr);
1346 if (ret)
Jan-Bernd Themann7a291082006-09-13 17:44:31 +02001347 goto out;
1348
Jan-Bernd Themanne542aa62007-03-22 17:50:24 +01001349 ret = ehea_gen_smr(adapter, &adapter->mr, &pr->recv_mr);
1350 if (ret)
1351 goto out_free;
Jan-Bernd Themann7a291082006-09-13 17:44:31 +02001352
1353 return 0;
1354
Jan-Bernd Themanne542aa62007-03-22 17:50:24 +01001355out_free:
1356 ehea_rem_mr(&pr->send_mr);
Jan-Bernd Themann7a291082006-09-13 17:44:31 +02001357out:
Jan-Bernd Themanne542aa62007-03-22 17:50:24 +01001358 ehea_error("Generating SMRS failed\n");
Jan-Bernd Themann7a291082006-09-13 17:44:31 +02001359 return -EIO;
1360}
1361
Jan-Bernd Themanne542aa62007-03-22 17:50:24 +01001362int ehea_rem_smrs(struct ehea_port_res *pr)
Jan-Bernd Themann7a291082006-09-13 17:44:31 +02001363{
Jan-Bernd Themanne542aa62007-03-22 17:50:24 +01001364 if ((ehea_rem_mr(&pr->send_mr))
1365 || (ehea_rem_mr(&pr->recv_mr)))
1366 return -EIO;
1367 else
1368 return 0;
Jan-Bernd Themann7a291082006-09-13 17:44:31 +02001369}
1370
1371static int ehea_init_q_skba(struct ehea_q_skb_arr *q_skba, int max_q_entries)
1372{
Doug Maxey508d2b52008-01-31 20:20:49 -06001373 int arr_size = sizeof(void *) * max_q_entries;
Jan-Bernd Themann7a291082006-09-13 17:44:31 +02001374
1375 q_skba->arr = vmalloc(arr_size);
1376 if (!q_skba->arr)
1377 return -ENOMEM;
1378
1379 memset(q_skba->arr, 0, arr_size);
1380
1381 q_skba->len = max_q_entries;
1382 q_skba->index = 0;
1383 q_skba->os_skbs = 0;
1384
1385 return 0;
1386}
1387
1388static int ehea_init_port_res(struct ehea_port *port, struct ehea_port_res *pr,
1389 struct port_res_cfg *pr_cfg, int queue_token)
1390{
1391 struct ehea_adapter *adapter = port->adapter;
1392 enum ehea_eq_type eq_type = EHEA_EQ;
1393 struct ehea_qp_init_attr *init_attr = NULL;
1394 int ret = -EIO;
1395
1396 memset(pr, 0, sizeof(struct ehea_port_res));
1397
1398 pr->port = port;
Jan-Bernd Themann7a291082006-09-13 17:44:31 +02001399 spin_lock_init(&pr->xmit_lock);
1400 spin_lock_init(&pr->netif_queue);
1401
Jan-Bernd Themann18604c52007-02-28 18:34:10 +01001402 pr->eq = ehea_create_eq(adapter, eq_type, EHEA_MAX_ENTRIES_EQ, 0);
1403 if (!pr->eq) {
1404 ehea_error("create_eq failed (eq)");
Jan-Bernd Themann7a291082006-09-13 17:44:31 +02001405 goto out_free;
1406 }
1407
1408 pr->recv_cq = ehea_create_cq(adapter, pr_cfg->max_entries_rcq,
Jan-Bernd Themann18604c52007-02-28 18:34:10 +01001409 pr->eq->fw_handle,
Jan-Bernd Themann7a291082006-09-13 17:44:31 +02001410 port->logical_port_id);
1411 if (!pr->recv_cq) {
1412 ehea_error("create_cq failed (cq_recv)");
1413 goto out_free;
1414 }
1415
1416 pr->send_cq = ehea_create_cq(adapter, pr_cfg->max_entries_scq,
Jan-Bernd Themann18604c52007-02-28 18:34:10 +01001417 pr->eq->fw_handle,
Jan-Bernd Themann7a291082006-09-13 17:44:31 +02001418 port->logical_port_id);
1419 if (!pr->send_cq) {
1420 ehea_error("create_cq failed (cq_send)");
1421 goto out_free;
1422 }
1423
1424 if (netif_msg_ifup(port))
1425 ehea_info("Send CQ: act_nr_cqes=%d, Recv CQ: act_nr_cqes=%d",
1426 pr->send_cq->attr.act_nr_of_cqes,
1427 pr->recv_cq->attr.act_nr_of_cqes);
1428
1429 init_attr = kzalloc(sizeof(*init_attr), GFP_KERNEL);
1430 if (!init_attr) {
1431 ret = -ENOMEM;
1432 ehea_error("no mem for ehea_qp_init_attr");
1433 goto out_free;
1434 }
1435
1436 init_attr->low_lat_rq1 = 1;
1437 init_attr->signalingtype = 1; /* generate CQE if specified in WQE */
1438 init_attr->rq_count = 3;
1439 init_attr->qp_token = queue_token;
1440 init_attr->max_nr_send_wqes = pr_cfg->max_entries_sq;
1441 init_attr->max_nr_rwqes_rq1 = pr_cfg->max_entries_rq1;
1442 init_attr->max_nr_rwqes_rq2 = pr_cfg->max_entries_rq2;
1443 init_attr->max_nr_rwqes_rq3 = pr_cfg->max_entries_rq3;
1444 init_attr->wqe_size_enc_sq = EHEA_SG_SQ;
1445 init_attr->wqe_size_enc_rq1 = EHEA_SG_RQ1;
1446 init_attr->wqe_size_enc_rq2 = EHEA_SG_RQ2;
1447 init_attr->wqe_size_enc_rq3 = EHEA_SG_RQ3;
1448 init_attr->rq2_threshold = EHEA_RQ2_THRESHOLD;
1449 init_attr->rq3_threshold = EHEA_RQ3_THRESHOLD;
1450 init_attr->port_nr = port->logical_port_id;
1451 init_attr->send_cq_handle = pr->send_cq->fw_handle;
1452 init_attr->recv_cq_handle = pr->recv_cq->fw_handle;
1453 init_attr->aff_eq_handle = port->qp_eq->fw_handle;
1454
1455 pr->qp = ehea_create_qp(adapter, adapter->pd, init_attr);
1456 if (!pr->qp) {
1457 ehea_error("create_qp failed");
1458 ret = -EIO;
1459 goto out_free;
1460 }
1461
1462 if (netif_msg_ifup(port))
1463 ehea_info("QP: qp_nr=%d\n act_nr_snd_wqe=%d\n nr_rwqe_rq1=%d\n "
1464 "nr_rwqe_rq2=%d\n nr_rwqe_rq3=%d", init_attr->qp_nr,
1465 init_attr->act_nr_send_wqes,
1466 init_attr->act_nr_rwqes_rq1,
1467 init_attr->act_nr_rwqes_rq2,
1468 init_attr->act_nr_rwqes_rq3);
1469
Thomas Klein44fb3122008-04-04 15:04:53 +02001470 pr->sq_skba_size = init_attr->act_nr_send_wqes + 1;
1471
1472 ret = ehea_init_q_skba(&pr->sq_skba, pr->sq_skba_size);
Jan-Bernd Themann7a291082006-09-13 17:44:31 +02001473 ret |= ehea_init_q_skba(&pr->rq1_skba, init_attr->act_nr_rwqes_rq1 + 1);
1474 ret |= ehea_init_q_skba(&pr->rq2_skba, init_attr->act_nr_rwqes_rq2 + 1);
1475 ret |= ehea_init_q_skba(&pr->rq3_skba, init_attr->act_nr_rwqes_rq3 + 1);
1476 if (ret)
1477 goto out_free;
1478
1479 pr->swqe_refill_th = init_attr->act_nr_send_wqes / 10;
1480 if (ehea_gen_smrs(pr) != 0) {
1481 ret = -EIO;
1482 goto out_free;
1483 }
Jan-Bernd Themann18604c52007-02-28 18:34:10 +01001484
Jan-Bernd Themann7a291082006-09-13 17:44:31 +02001485 atomic_set(&pr->swqe_avail, init_attr->act_nr_send_wqes - 1);
1486
1487 kfree(init_attr);
Jan-Bernd Themann18604c52007-02-28 18:34:10 +01001488
Stephen Hemmingerbea33482007-10-03 16:41:36 -07001489 netif_napi_add(pr->port->netdev, &pr->napi, ehea_poll, 64);
Jan-Bernd Themann18604c52007-02-28 18:34:10 +01001490
Jan-Bernd Themannd4dc4ec2007-09-25 16:16:34 -07001491 pr->lro_mgr.max_aggr = pr->port->lro_max_aggr;
1492 pr->lro_mgr.max_desc = MAX_LRO_DESCRIPTORS;
1493 pr->lro_mgr.lro_arr = pr->lro_desc;
1494 pr->lro_mgr.get_skb_header = get_skb_hdr;
1495 pr->lro_mgr.features = LRO_F_NAPI | LRO_F_EXTRACT_VLAN_ID;
1496 pr->lro_mgr.dev = port->netdev;
1497 pr->lro_mgr.ip_summed = CHECKSUM_UNNECESSARY;
1498 pr->lro_mgr.ip_summed_aggr = CHECKSUM_UNNECESSARY;
1499
Jan-Bernd Themann7a291082006-09-13 17:44:31 +02001500 ret = 0;
1501 goto out;
1502
1503out_free:
1504 kfree(init_attr);
1505 vfree(pr->sq_skba.arr);
1506 vfree(pr->rq1_skba.arr);
1507 vfree(pr->rq2_skba.arr);
1508 vfree(pr->rq3_skba.arr);
1509 ehea_destroy_qp(pr->qp);
1510 ehea_destroy_cq(pr->send_cq);
1511 ehea_destroy_cq(pr->recv_cq);
Jan-Bernd Themann18604c52007-02-28 18:34:10 +01001512 ehea_destroy_eq(pr->eq);
Jan-Bernd Themann7a291082006-09-13 17:44:31 +02001513out:
1514 return ret;
1515}
1516
1517static int ehea_clean_portres(struct ehea_port *port, struct ehea_port_res *pr)
1518{
1519 int ret, i;
1520
1521 ret = ehea_destroy_qp(pr->qp);
1522
1523 if (!ret) {
1524 ehea_destroy_cq(pr->send_cq);
1525 ehea_destroy_cq(pr->recv_cq);
Jan-Bernd Themann18604c52007-02-28 18:34:10 +01001526 ehea_destroy_eq(pr->eq);
Jan-Bernd Themann7a291082006-09-13 17:44:31 +02001527
1528 for (i = 0; i < pr->rq1_skba.len; i++)
1529 if (pr->rq1_skba.arr[i])
1530 dev_kfree_skb(pr->rq1_skba.arr[i]);
1531
1532 for (i = 0; i < pr->rq2_skba.len; i++)
1533 if (pr->rq2_skba.arr[i])
1534 dev_kfree_skb(pr->rq2_skba.arr[i]);
1535
1536 for (i = 0; i < pr->rq3_skba.len; i++)
1537 if (pr->rq3_skba.arr[i])
1538 dev_kfree_skb(pr->rq3_skba.arr[i]);
1539
1540 for (i = 0; i < pr->sq_skba.len; i++)
1541 if (pr->sq_skba.arr[i])
1542 dev_kfree_skb(pr->sq_skba.arr[i]);
1543
1544 vfree(pr->rq1_skba.arr);
1545 vfree(pr->rq2_skba.arr);
1546 vfree(pr->rq3_skba.arr);
1547 vfree(pr->sq_skba.arr);
1548 ret = ehea_rem_smrs(pr);
1549 }
1550 return ret;
1551}
1552
1553/*
1554 * The write_* functions store information in swqe which is used by
1555 * the hardware to calculate the ip/tcp/udp checksum
1556 */
1557
1558static inline void write_ip_start_end(struct ehea_swqe *swqe,
1559 const struct sk_buff *skb)
1560{
Arnaldo Carvalho de Meloeddc9ec2007-04-20 22:47:35 -07001561 swqe->ip_start = skb_network_offset(skb);
Arnaldo Carvalho de Meloc9bdd4b2007-03-12 20:09:15 -03001562 swqe->ip_end = (u8)(swqe->ip_start + ip_hdrlen(skb) - 1);
Jan-Bernd Themann7a291082006-09-13 17:44:31 +02001563}
1564
1565static inline void write_tcp_offset_end(struct ehea_swqe *swqe,
1566 const struct sk_buff *skb)
1567{
1568 swqe->tcp_offset =
1569 (u8)(swqe->ip_end + 1 + offsetof(struct tcphdr, check));
1570
1571 swqe->tcp_end = (u16)skb->len - 1;
1572}
1573
1574static inline void write_udp_offset_end(struct ehea_swqe *swqe,
1575 const struct sk_buff *skb)
1576{
1577 swqe->tcp_offset =
1578 (u8)(swqe->ip_end + 1 + offsetof(struct udphdr, check));
1579
1580 swqe->tcp_end = (u16)skb->len - 1;
1581}
1582
1583
1584static void write_swqe2_TSO(struct sk_buff *skb,
1585 struct ehea_swqe *swqe, u32 lkey)
1586{
1587 struct ehea_vsgentry *sg1entry = &swqe->u.immdata_desc.sg_entry;
1588 u8 *imm_data = &swqe->u.immdata_desc.immediate_data[0];
1589 int skb_data_size = skb->len - skb->data_len;
1590 int headersize;
Jan-Bernd Themann7a291082006-09-13 17:44:31 +02001591
1592 /* Packet is TCP with TSO enabled */
1593 swqe->tx_control |= EHEA_SWQE_TSO;
1594 swqe->mss = skb_shinfo(skb)->gso_size;
1595 /* copy only eth/ip/tcp headers to immediate data and
1596 * the rest of skb->data to sg1entry
1597 */
Arnaldo Carvalho de Meloab6a5bb2007-03-18 17:43:48 -07001598 headersize = ETH_HLEN + ip_hdrlen(skb) + tcp_hdrlen(skb);
Jan-Bernd Themann7a291082006-09-13 17:44:31 +02001599
1600 skb_data_size = skb->len - skb->data_len;
1601
1602 if (skb_data_size >= headersize) {
1603 /* copy immediate data */
Arnaldo Carvalho de Melod626f622007-03-27 18:55:52 -03001604 skb_copy_from_linear_data(skb, imm_data, headersize);
Jan-Bernd Themann7a291082006-09-13 17:44:31 +02001605 swqe->immediate_data_length = headersize;
1606
1607 if (skb_data_size > headersize) {
1608 /* set sg1entry data */
1609 sg1entry->l_key = lkey;
1610 sg1entry->len = skb_data_size - headersize;
Thomas Klein44a5b3d2007-08-06 13:55:44 +02001611 sg1entry->vaddr =
1612 ehea_map_vaddr(skb->data + headersize);
Jan-Bernd Themann7a291082006-09-13 17:44:31 +02001613 swqe->descriptors++;
1614 }
1615 } else
1616 ehea_error("cannot handle fragmented headers");
1617}
1618
1619static void write_swqe2_nonTSO(struct sk_buff *skb,
1620 struct ehea_swqe *swqe, u32 lkey)
1621{
1622 int skb_data_size = skb->len - skb->data_len;
1623 u8 *imm_data = &swqe->u.immdata_desc.immediate_data[0];
1624 struct ehea_vsgentry *sg1entry = &swqe->u.immdata_desc.sg_entry;
Jan-Bernd Themann7a291082006-09-13 17:44:31 +02001625
1626 /* Packet is any nonTSO type
1627 *
1628 * Copy as much as possible skb->data to immediate data and
1629 * the rest to sg1entry
1630 */
1631 if (skb_data_size >= SWQE2_MAX_IMM) {
1632 /* copy immediate data */
Arnaldo Carvalho de Melod626f622007-03-27 18:55:52 -03001633 skb_copy_from_linear_data(skb, imm_data, SWQE2_MAX_IMM);
Jan-Bernd Themann7a291082006-09-13 17:44:31 +02001634
1635 swqe->immediate_data_length = SWQE2_MAX_IMM;
1636
1637 if (skb_data_size > SWQE2_MAX_IMM) {
1638 /* copy sg1entry data */
1639 sg1entry->l_key = lkey;
1640 sg1entry->len = skb_data_size - SWQE2_MAX_IMM;
Thomas Klein44a5b3d2007-08-06 13:55:44 +02001641 sg1entry->vaddr =
1642 ehea_map_vaddr(skb->data + SWQE2_MAX_IMM);
Jan-Bernd Themann7a291082006-09-13 17:44:31 +02001643 swqe->descriptors++;
1644 }
1645 } else {
Arnaldo Carvalho de Melod626f622007-03-27 18:55:52 -03001646 skb_copy_from_linear_data(skb, imm_data, skb_data_size);
Jan-Bernd Themann7a291082006-09-13 17:44:31 +02001647 swqe->immediate_data_length = skb_data_size;
1648 }
1649}
1650
1651static inline void write_swqe2_data(struct sk_buff *skb, struct net_device *dev,
1652 struct ehea_swqe *swqe, u32 lkey)
1653{
1654 struct ehea_vsgentry *sg_list, *sg1entry, *sgentry;
1655 skb_frag_t *frag;
1656 int nfrags, sg1entry_contains_frag_data, i;
Jan-Bernd Themann7a291082006-09-13 17:44:31 +02001657
1658 nfrags = skb_shinfo(skb)->nr_frags;
1659 sg1entry = &swqe->u.immdata_desc.sg_entry;
Doug Maxey508d2b52008-01-31 20:20:49 -06001660 sg_list = (struct ehea_vsgentry *)&swqe->u.immdata_desc.sg_list;
Jan-Bernd Themann7a291082006-09-13 17:44:31 +02001661 swqe->descriptors = 0;
1662 sg1entry_contains_frag_data = 0;
1663
1664 if ((dev->features & NETIF_F_TSO) && skb_shinfo(skb)->gso_size)
1665 write_swqe2_TSO(skb, swqe, lkey);
1666 else
1667 write_swqe2_nonTSO(skb, swqe, lkey);
1668
1669 /* write descriptors */
1670 if (nfrags > 0) {
1671 if (swqe->descriptors == 0) {
1672 /* sg1entry not yet used */
1673 frag = &skb_shinfo(skb)->frags[0];
1674
1675 /* copy sg1entry data */
1676 sg1entry->l_key = lkey;
1677 sg1entry->len = frag->size;
Thomas Klein44a5b3d2007-08-06 13:55:44 +02001678 sg1entry->vaddr =
1679 ehea_map_vaddr(page_address(frag->page)
1680 + frag->page_offset);
Jan-Bernd Themann7a291082006-09-13 17:44:31 +02001681 swqe->descriptors++;
1682 sg1entry_contains_frag_data = 1;
1683 }
1684
1685 for (i = sg1entry_contains_frag_data; i < nfrags; i++) {
1686
1687 frag = &skb_shinfo(skb)->frags[i];
1688 sgentry = &sg_list[i - sg1entry_contains_frag_data];
1689
1690 sgentry->l_key = lkey;
1691 sgentry->len = frag->size;
Thomas Klein44a5b3d2007-08-06 13:55:44 +02001692 sgentry->vaddr =
1693 ehea_map_vaddr(page_address(frag->page)
1694 + frag->page_offset);
Jan-Bernd Themann7a291082006-09-13 17:44:31 +02001695 swqe->descriptors++;
1696 }
1697 }
1698}
1699
1700static int ehea_broadcast_reg_helper(struct ehea_port *port, u32 hcallid)
1701{
1702 int ret = 0;
1703 u64 hret;
1704 u8 reg_type;
1705
1706 /* De/Register untagged packets */
1707 reg_type = EHEA_BCMC_BROADCAST | EHEA_BCMC_UNTAGGED;
1708 hret = ehea_h_reg_dereg_bcmc(port->adapter->handle,
1709 port->logical_port_id,
1710 reg_type, port->mac_addr, 0, hcallid);
1711 if (hret != H_SUCCESS) {
Thomas Kleinf9e29222007-07-18 17:34:09 +02001712 ehea_error("%sregistering bc address failed (tagged)",
Doug Maxey508d2b52008-01-31 20:20:49 -06001713 hcallid == H_REG_BCMC ? "" : "de");
Jan-Bernd Themann7a291082006-09-13 17:44:31 +02001714 ret = -EIO;
1715 goto out_herr;
1716 }
1717
1718 /* De/Register VLAN packets */
1719 reg_type = EHEA_BCMC_BROADCAST | EHEA_BCMC_VLANID_ALL;
1720 hret = ehea_h_reg_dereg_bcmc(port->adapter->handle,
1721 port->logical_port_id,
1722 reg_type, port->mac_addr, 0, hcallid);
1723 if (hret != H_SUCCESS) {
Thomas Kleinf9e29222007-07-18 17:34:09 +02001724 ehea_error("%sregistering bc address failed (vlan)",
1725 hcallid == H_REG_BCMC ? "" : "de");
Jan-Bernd Themann7a291082006-09-13 17:44:31 +02001726 ret = -EIO;
1727 }
1728out_herr:
1729 return ret;
1730}
1731
1732static int ehea_set_mac_addr(struct net_device *dev, void *sa)
1733{
1734 struct ehea_port *port = netdev_priv(dev);
1735 struct sockaddr *mac_addr = sa;
1736 struct hcp_ehea_port_cb0 *cb0;
1737 int ret;
1738 u64 hret;
1739
1740 if (!is_valid_ether_addr(mac_addr->sa_data)) {
1741 ret = -EADDRNOTAVAIL;
1742 goto out;
1743 }
1744
Thomas Kleina1d261c2006-11-03 17:48:23 +01001745 cb0 = kzalloc(PAGE_SIZE, GFP_KERNEL);
Jan-Bernd Themann7a291082006-09-13 17:44:31 +02001746 if (!cb0) {
1747 ehea_error("no mem for cb0");
1748 ret = -ENOMEM;
1749 goto out;
1750 }
1751
1752 memcpy(&(cb0->port_mac_addr), &(mac_addr->sa_data[0]), ETH_ALEN);
1753
1754 cb0->port_mac_addr = cb0->port_mac_addr >> 16;
1755
1756 hret = ehea_h_modify_ehea_port(port->adapter->handle,
1757 port->logical_port_id, H_PORT_CB0,
1758 EHEA_BMASK_SET(H_PORT_CB0_MAC, 1), cb0);
1759 if (hret != H_SUCCESS) {
1760 ret = -EIO;
1761 goto out_free;
1762 }
1763
1764 memcpy(dev->dev_addr, mac_addr->sa_data, dev->addr_len);
1765
Daniel Walkerda59cde2008-03-28 14:41:28 -07001766 mutex_lock(&ehea_bcmc_regs.lock);
Thomas Klein21eee2d2008-02-13 16:18:33 +01001767
Jan-Bernd Themann7a291082006-09-13 17:44:31 +02001768 /* Deregister old MAC in pHYP */
Jan-Bernd Themann00aaea22008-06-09 15:17:37 +01001769 if (port->state == EHEA_PORT_UP) {
1770 ret = ehea_broadcast_reg_helper(port, H_DEREG_BCMC);
1771 if (ret)
1772 goto out_upregs;
1773 }
Jan-Bernd Themann7a291082006-09-13 17:44:31 +02001774
1775 port->mac_addr = cb0->port_mac_addr << 16;
1776
1777 /* Register new MAC in pHYP */
Jan-Bernd Themann00aaea22008-06-09 15:17:37 +01001778 if (port->state == EHEA_PORT_UP) {
1779 ret = ehea_broadcast_reg_helper(port, H_REG_BCMC);
1780 if (ret)
1781 goto out_upregs;
1782 }
Jan-Bernd Themann7a291082006-09-13 17:44:31 +02001783
1784 ret = 0;
Thomas Klein21eee2d2008-02-13 16:18:33 +01001785
1786out_upregs:
1787 ehea_update_bcmc_registrations();
Daniel Walkerda59cde2008-03-28 14:41:28 -07001788 mutex_unlock(&ehea_bcmc_regs.lock);
Jan-Bernd Themann7a291082006-09-13 17:44:31 +02001789out_free:
1790 kfree(cb0);
1791out:
1792 return ret;
1793}
1794
1795static void ehea_promiscuous_error(u64 hret, int enable)
1796{
Thomas Klein7674a582007-01-22 12:54:20 +01001797 if (hret == H_AUTHORITY)
1798 ehea_info("Hypervisor denied %sabling promiscuous mode",
1799 enable == 1 ? "en" : "dis");
1800 else
1801 ehea_error("failed %sabling promiscuous mode",
1802 enable == 1 ? "en" : "dis");
Jan-Bernd Themann7a291082006-09-13 17:44:31 +02001803}
1804
1805static void ehea_promiscuous(struct net_device *dev, int enable)
1806{
1807 struct ehea_port *port = netdev_priv(dev);
1808 struct hcp_ehea_port_cb7 *cb7;
1809 u64 hret;
1810
1811 if ((enable && port->promisc) || (!enable && !port->promisc))
1812 return;
1813
Thomas Kleina1d261c2006-11-03 17:48:23 +01001814 cb7 = kzalloc(PAGE_SIZE, GFP_ATOMIC);
Jan-Bernd Themann7a291082006-09-13 17:44:31 +02001815 if (!cb7) {
1816 ehea_error("no mem for cb7");
1817 goto out;
1818 }
1819
1820 /* Modify Pxs_DUCQPN in CB7 */
1821 cb7->def_uc_qpn = enable == 1 ? port->port_res[0].qp->fw_handle : 0;
1822
1823 hret = ehea_h_modify_ehea_port(port->adapter->handle,
1824 port->logical_port_id,
1825 H_PORT_CB7, H_PORT_CB7_DUCQPN, cb7);
1826 if (hret) {
1827 ehea_promiscuous_error(hret, enable);
1828 goto out;
1829 }
1830
1831 port->promisc = enable;
1832out:
1833 kfree(cb7);
1834 return;
1835}
1836
1837static u64 ehea_multicast_reg_helper(struct ehea_port *port, u64 mc_mac_addr,
1838 u32 hcallid)
1839{
1840 u64 hret;
1841 u8 reg_type;
1842
1843 reg_type = EHEA_BCMC_SCOPE_ALL | EHEA_BCMC_MULTICAST
1844 | EHEA_BCMC_UNTAGGED;
1845
1846 hret = ehea_h_reg_dereg_bcmc(port->adapter->handle,
1847 port->logical_port_id,
1848 reg_type, mc_mac_addr, 0, hcallid);
1849 if (hret)
1850 goto out;
1851
1852 reg_type = EHEA_BCMC_SCOPE_ALL | EHEA_BCMC_MULTICAST
1853 | EHEA_BCMC_VLANID_ALL;
1854
1855 hret = ehea_h_reg_dereg_bcmc(port->adapter->handle,
1856 port->logical_port_id,
1857 reg_type, mc_mac_addr, 0, hcallid);
1858out:
1859 return hret;
1860}
1861
1862static int ehea_drop_multicast_list(struct net_device *dev)
1863{
1864 struct ehea_port *port = netdev_priv(dev);
1865 struct ehea_mc_list *mc_entry = port->mc_list;
1866 struct list_head *pos;
1867 struct list_head *temp;
1868 int ret = 0;
1869 u64 hret;
1870
1871 list_for_each_safe(pos, temp, &(port->mc_list->list)) {
1872 mc_entry = list_entry(pos, struct ehea_mc_list, list);
1873
1874 hret = ehea_multicast_reg_helper(port, mc_entry->macaddr,
1875 H_DEREG_BCMC);
1876 if (hret) {
1877 ehea_error("failed deregistering mcast MAC");
1878 ret = -EIO;
1879 }
1880
1881 list_del(pos);
1882 kfree(mc_entry);
1883 }
1884 return ret;
1885}
1886
1887static void ehea_allmulti(struct net_device *dev, int enable)
1888{
1889 struct ehea_port *port = netdev_priv(dev);
1890 u64 hret;
1891
1892 if (!port->allmulti) {
1893 if (enable) {
1894 /* Enable ALLMULTI */
1895 ehea_drop_multicast_list(dev);
1896 hret = ehea_multicast_reg_helper(port, 0, H_REG_BCMC);
1897 if (!hret)
1898 port->allmulti = 1;
1899 else
1900 ehea_error("failed enabling IFF_ALLMULTI");
1901 }
1902 } else
1903 if (!enable) {
1904 /* Disable ALLMULTI */
1905 hret = ehea_multicast_reg_helper(port, 0, H_DEREG_BCMC);
1906 if (!hret)
1907 port->allmulti = 0;
1908 else
1909 ehea_error("failed disabling IFF_ALLMULTI");
1910 }
1911}
1912
Doug Maxey508d2b52008-01-31 20:20:49 -06001913static void ehea_add_multicast_entry(struct ehea_port *port, u8 *mc_mac_addr)
Jan-Bernd Themann7a291082006-09-13 17:44:31 +02001914{
1915 struct ehea_mc_list *ehea_mcl_entry;
1916 u64 hret;
1917
Jan-Bernd Themann1e1675c2006-10-25 13:11:42 +02001918 ehea_mcl_entry = kzalloc(sizeof(*ehea_mcl_entry), GFP_ATOMIC);
Jan-Bernd Themann7a291082006-09-13 17:44:31 +02001919 if (!ehea_mcl_entry) {
1920 ehea_error("no mem for mcl_entry");
1921 return;
1922 }
1923
1924 INIT_LIST_HEAD(&ehea_mcl_entry->list);
1925
1926 memcpy(&ehea_mcl_entry->macaddr, mc_mac_addr, ETH_ALEN);
1927
1928 hret = ehea_multicast_reg_helper(port, ehea_mcl_entry->macaddr,
1929 H_REG_BCMC);
1930 if (!hret)
1931 list_add(&ehea_mcl_entry->list, &port->mc_list->list);
1932 else {
1933 ehea_error("failed registering mcast MAC");
1934 kfree(ehea_mcl_entry);
1935 }
1936}
1937
1938static void ehea_set_multicast_list(struct net_device *dev)
1939{
1940 struct ehea_port *port = netdev_priv(dev);
1941 struct dev_mc_list *k_mcl_entry;
1942 int ret, i;
1943
1944 if (dev->flags & IFF_PROMISC) {
1945 ehea_promiscuous(dev, 1);
1946 return;
1947 }
1948 ehea_promiscuous(dev, 0);
1949
Daniel Walkerda59cde2008-03-28 14:41:28 -07001950 mutex_lock(&ehea_bcmc_regs.lock);
Thomas Klein21eee2d2008-02-13 16:18:33 +01001951
Jan-Bernd Themann7a291082006-09-13 17:44:31 +02001952 if (dev->flags & IFF_ALLMULTI) {
1953 ehea_allmulti(dev, 1);
Thomas Klein21eee2d2008-02-13 16:18:33 +01001954 goto out;
Jan-Bernd Themann7a291082006-09-13 17:44:31 +02001955 }
1956 ehea_allmulti(dev, 0);
1957
1958 if (dev->mc_count) {
1959 ret = ehea_drop_multicast_list(dev);
1960 if (ret) {
1961 /* Dropping the current multicast list failed.
1962 * Enabling ALL_MULTI is the best we can do.
1963 */
1964 ehea_allmulti(dev, 1);
1965 }
1966
1967 if (dev->mc_count > port->adapter->max_mc_mac) {
1968 ehea_info("Mcast registration limit reached (0x%lx). "
1969 "Use ALLMULTI!",
1970 port->adapter->max_mc_mac);
1971 goto out;
1972 }
1973
Doug Maxey508d2b52008-01-31 20:20:49 -06001974 for (i = 0, k_mcl_entry = dev->mc_list; i < dev->mc_count; i++,
1975 k_mcl_entry = k_mcl_entry->next)
Jan-Bernd Themann7a291082006-09-13 17:44:31 +02001976 ehea_add_multicast_entry(port, k_mcl_entry->dmi_addr);
Doug Maxey508d2b52008-01-31 20:20:49 -06001977
Jan-Bernd Themann7a291082006-09-13 17:44:31 +02001978 }
1979out:
Thomas Klein21eee2d2008-02-13 16:18:33 +01001980 ehea_update_bcmc_registrations();
Daniel Walkerda59cde2008-03-28 14:41:28 -07001981 mutex_unlock(&ehea_bcmc_regs.lock);
Jan-Bernd Themann7a291082006-09-13 17:44:31 +02001982 return;
1983}
1984
1985static int ehea_change_mtu(struct net_device *dev, int new_mtu)
1986{
1987 if ((new_mtu < 68) || (new_mtu > EHEA_MAX_PACKET_SIZE))
1988 return -EINVAL;
1989 dev->mtu = new_mtu;
1990 return 0;
1991}
1992
1993static void ehea_xmit2(struct sk_buff *skb, struct net_device *dev,
1994 struct ehea_swqe *swqe, u32 lkey)
1995{
1996 if (skb->protocol == htons(ETH_P_IP)) {
Arnaldo Carvalho de Meloeddc9ec2007-04-20 22:47:35 -07001997 const struct iphdr *iph = ip_hdr(skb);
Jan-Bernd Themannd1d25aa2007-07-02 13:00:46 +02001998
Jan-Bernd Themann7a291082006-09-13 17:44:31 +02001999 /* IPv4 */
2000 swqe->tx_control |= EHEA_SWQE_CRC
2001 | EHEA_SWQE_IP_CHECKSUM
2002 | EHEA_SWQE_TCP_CHECKSUM
2003 | EHEA_SWQE_IMM_DATA_PRESENT
2004 | EHEA_SWQE_DESCRIPTORS_PRESENT;
2005
2006 write_ip_start_end(swqe, skb);
2007
Arnaldo Carvalho de Meloeddc9ec2007-04-20 22:47:35 -07002008 if (iph->protocol == IPPROTO_UDP) {
Jan-Bernd Themannd1d25aa2007-07-02 13:00:46 +02002009 if ((iph->frag_off & IP_MF)
2010 || (iph->frag_off & IP_OFFSET))
Jan-Bernd Themann7a291082006-09-13 17:44:31 +02002011 /* IP fragment, so don't change cs */
2012 swqe->tx_control &= ~EHEA_SWQE_TCP_CHECKSUM;
2013 else
2014 write_udp_offset_end(swqe, skb);
Arnaldo Carvalho de Meloeddc9ec2007-04-20 22:47:35 -07002015 } else if (iph->protocol == IPPROTO_TCP) {
Jan-Bernd Themann7a291082006-09-13 17:44:31 +02002016 write_tcp_offset_end(swqe, skb);
2017 }
2018
2019 /* icmp (big data) and ip segmentation packets (all other ip
2020 packets) do not require any special handling */
2021
2022 } else {
2023 /* Other Ethernet Protocol */
2024 swqe->tx_control |= EHEA_SWQE_CRC
2025 | EHEA_SWQE_IMM_DATA_PRESENT
2026 | EHEA_SWQE_DESCRIPTORS_PRESENT;
2027 }
2028
2029 write_swqe2_data(skb, dev, swqe, lkey);
2030}
2031
2032static void ehea_xmit3(struct sk_buff *skb, struct net_device *dev,
2033 struct ehea_swqe *swqe)
2034{
2035 int nfrags = skb_shinfo(skb)->nr_frags;
2036 u8 *imm_data = &swqe->u.immdata_nodesc.immediate_data[0];
2037 skb_frag_t *frag;
2038 int i;
2039
2040 if (skb->protocol == htons(ETH_P_IP)) {
Arnaldo Carvalho de Meloeddc9ec2007-04-20 22:47:35 -07002041 const struct iphdr *iph = ip_hdr(skb);
Jan-Bernd Themannd1d25aa2007-07-02 13:00:46 +02002042
Jan-Bernd Themann7a291082006-09-13 17:44:31 +02002043 /* IPv4 */
2044 write_ip_start_end(swqe, skb);
2045
Arnaldo Carvalho de Meloeddc9ec2007-04-20 22:47:35 -07002046 if (iph->protocol == IPPROTO_TCP) {
Jan-Bernd Themann7a291082006-09-13 17:44:31 +02002047 swqe->tx_control |= EHEA_SWQE_CRC
2048 | EHEA_SWQE_IP_CHECKSUM
2049 | EHEA_SWQE_TCP_CHECKSUM
2050 | EHEA_SWQE_IMM_DATA_PRESENT;
2051
2052 write_tcp_offset_end(swqe, skb);
2053
Arnaldo Carvalho de Meloeddc9ec2007-04-20 22:47:35 -07002054 } else if (iph->protocol == IPPROTO_UDP) {
Jan-Bernd Themannd1d25aa2007-07-02 13:00:46 +02002055 if ((iph->frag_off & IP_MF)
2056 || (iph->frag_off & IP_OFFSET))
Jan-Bernd Themann7a291082006-09-13 17:44:31 +02002057 /* IP fragment, so don't change cs */
2058 swqe->tx_control |= EHEA_SWQE_CRC
2059 | EHEA_SWQE_IMM_DATA_PRESENT;
2060 else {
2061 swqe->tx_control |= EHEA_SWQE_CRC
2062 | EHEA_SWQE_IP_CHECKSUM
2063 | EHEA_SWQE_TCP_CHECKSUM
2064 | EHEA_SWQE_IMM_DATA_PRESENT;
2065
2066 write_udp_offset_end(swqe, skb);
2067 }
2068 } else {
2069 /* icmp (big data) and
2070 ip segmentation packets (all other ip packets) */
2071 swqe->tx_control |= EHEA_SWQE_CRC
2072 | EHEA_SWQE_IP_CHECKSUM
2073 | EHEA_SWQE_IMM_DATA_PRESENT;
2074 }
2075 } else {
2076 /* Other Ethernet Protocol */
2077 swqe->tx_control |= EHEA_SWQE_CRC | EHEA_SWQE_IMM_DATA_PRESENT;
2078 }
2079 /* copy (immediate) data */
2080 if (nfrags == 0) {
2081 /* data is in a single piece */
Arnaldo Carvalho de Melod626f622007-03-27 18:55:52 -03002082 skb_copy_from_linear_data(skb, imm_data, skb->len);
Jan-Bernd Themann7a291082006-09-13 17:44:31 +02002083 } else {
2084 /* first copy data from the skb->data buffer ... */
Arnaldo Carvalho de Melod626f622007-03-27 18:55:52 -03002085 skb_copy_from_linear_data(skb, imm_data,
2086 skb->len - skb->data_len);
Jan-Bernd Themann7a291082006-09-13 17:44:31 +02002087 imm_data += skb->len - skb->data_len;
2088
2089 /* ... then copy data from the fragments */
2090 for (i = 0; i < nfrags; i++) {
2091 frag = &skb_shinfo(skb)->frags[i];
2092 memcpy(imm_data,
2093 page_address(frag->page) + frag->page_offset,
2094 frag->size);
2095 imm_data += frag->size;
2096 }
2097 }
2098 swqe->immediate_data_length = skb->len;
2099 dev_kfree_skb(skb);
2100}
2101
Jan-Bernd Themann18604c52007-02-28 18:34:10 +01002102static inline int ehea_hash_skb(struct sk_buff *skb, int num_qps)
2103{
2104 struct tcphdr *tcp;
2105 u32 tmp;
2106
2107 if ((skb->protocol == htons(ETH_P_IP)) &&
Thomas Klein88ca2d02007-05-02 16:07:05 +02002108 (ip_hdr(skb)->protocol == IPPROTO_TCP)) {
Doug Maxey508d2b52008-01-31 20:20:49 -06002109 tcp = (struct tcphdr *)(skb_network_header(skb) +
2110 (ip_hdr(skb)->ihl * 4));
Jan-Bernd Themann18604c52007-02-28 18:34:10 +01002111 tmp = (tcp->source + (tcp->dest << 16)) % 31;
Thomas Klein88ca2d02007-05-02 16:07:05 +02002112 tmp += ip_hdr(skb)->daddr % 31;
Jan-Bernd Themann18604c52007-02-28 18:34:10 +01002113 return tmp % num_qps;
Doug Maxey508d2b52008-01-31 20:20:49 -06002114 } else
Jan-Bernd Themann18604c52007-02-28 18:34:10 +01002115 return 0;
2116}
2117
Jan-Bernd Themann7a291082006-09-13 17:44:31 +02002118static int ehea_start_xmit(struct sk_buff *skb, struct net_device *dev)
2119{
2120 struct ehea_port *port = netdev_priv(dev);
2121 struct ehea_swqe *swqe;
2122 unsigned long flags;
2123 u32 lkey;
2124 int swqe_index;
Jan-Bernd Themann18604c52007-02-28 18:34:10 +01002125 struct ehea_port_res *pr;
Jan-Bernd Themann7a291082006-09-13 17:44:31 +02002126
Jan-Bernd Themann18604c52007-02-28 18:34:10 +01002127 pr = &port->port_res[ehea_hash_skb(skb, port->num_tx_qps)];
2128
Jan-Bernd Themann18604c52007-02-28 18:34:10 +01002129 if (!spin_trylock(&pr->xmit_lock))
2130 return NETDEV_TX_BUSY;
2131
2132 if (pr->queue_stopped) {
2133 spin_unlock(&pr->xmit_lock);
2134 return NETDEV_TX_BUSY;
2135 }
Jan-Bernd Themann7a291082006-09-13 17:44:31 +02002136
2137 swqe = ehea_get_swqe(pr->qp, &swqe_index);
2138 memset(swqe, 0, SWQE_HEADER_SIZE);
2139 atomic_dec(&pr->swqe_avail);
2140
2141 if (skb->len <= SWQE3_MAX_IMM) {
2142 u32 sig_iv = port->sig_comp_iv;
2143 u32 swqe_num = pr->swqe_id_counter;
2144 ehea_xmit3(skb, dev, swqe);
2145 swqe->wr_id = EHEA_BMASK_SET(EHEA_WR_ID_TYPE, EHEA_SWQE3_TYPE)
2146 | EHEA_BMASK_SET(EHEA_WR_ID_COUNT, swqe_num);
2147 if (pr->swqe_ll_count >= (sig_iv - 1)) {
2148 swqe->wr_id |= EHEA_BMASK_SET(EHEA_WR_ID_REFILL,
2149 sig_iv);
2150 swqe->tx_control |= EHEA_SWQE_SIGNALLED_COMPLETION;
2151 pr->swqe_ll_count = 0;
2152 } else
2153 pr->swqe_ll_count += 1;
2154 } else {
2155 swqe->wr_id =
2156 EHEA_BMASK_SET(EHEA_WR_ID_TYPE, EHEA_SWQE2_TYPE)
2157 | EHEA_BMASK_SET(EHEA_WR_ID_COUNT, pr->swqe_id_counter)
Jan-Bernd Themannacbddb52007-03-23 17:18:53 +01002158 | EHEA_BMASK_SET(EHEA_WR_ID_REFILL, 1)
Jan-Bernd Themann7a291082006-09-13 17:44:31 +02002159 | EHEA_BMASK_SET(EHEA_WR_ID_INDEX, pr->sq_skba.index);
2160 pr->sq_skba.arr[pr->sq_skba.index] = skb;
2161
2162 pr->sq_skba.index++;
2163 pr->sq_skba.index &= (pr->sq_skba.len - 1);
2164
2165 lkey = pr->send_mr.lkey;
2166 ehea_xmit2(skb, dev, swqe, lkey);
Jan-Bernd Themannacbddb52007-03-23 17:18:53 +01002167 swqe->tx_control |= EHEA_SWQE_SIGNALLED_COMPLETION;
Jan-Bernd Themann7a291082006-09-13 17:44:31 +02002168 }
2169 pr->swqe_id_counter += 1;
2170
2171 if (port->vgrp && vlan_tx_tag_present(skb)) {
2172 swqe->tx_control |= EHEA_SWQE_VLAN_INSERT;
2173 swqe->vlan_tag = vlan_tx_tag_get(skb);
2174 }
2175
2176 if (netif_msg_tx_queued(port)) {
2177 ehea_info("post swqe on QP %d", pr->qp->init_attr.qp_nr);
Jan-Bernd Themannbff0a552006-10-05 16:53:14 +02002178 ehea_dump(swqe, 512, "swqe");
Jan-Bernd Themann7a291082006-09-13 17:44:31 +02002179 }
2180
Jan-Bernd Themann2c694482007-10-01 16:33:18 +02002181 if (unlikely(test_bit(__EHEA_STOP_XFER, &ehea_driver_flags))) {
2182 netif_stop_queue(dev);
2183 swqe->tx_control |= EHEA_SWQE_PURGE;
2184 }
Thomas Klein44c82152007-07-11 16:32:00 +02002185
Jan-Bernd Themann7a291082006-09-13 17:44:31 +02002186 ehea_post_swqe(pr->qp, swqe);
Thomas Klein7393b872007-11-21 17:37:58 +01002187 pr->tx_packets++;
Jan-Bernd Themann7a291082006-09-13 17:44:31 +02002188
2189 if (unlikely(atomic_read(&pr->swqe_avail) <= 1)) {
2190 spin_lock_irqsave(&pr->netif_queue, flags);
2191 if (unlikely(atomic_read(&pr->swqe_avail) <= 1)) {
Jan-Bernd Themannacbddb52007-03-23 17:18:53 +01002192 pr->p_stats.queue_stopped++;
Jan-Bernd Themann7a291082006-09-13 17:44:31 +02002193 netif_stop_queue(dev);
2194 pr->queue_stopped = 1;
2195 }
2196 spin_unlock_irqrestore(&pr->netif_queue, flags);
2197 }
2198 dev->trans_start = jiffies;
2199 spin_unlock(&pr->xmit_lock);
Jan-Bernd Themann2c694482007-10-01 16:33:18 +02002200
Jan-Bernd Themann7a291082006-09-13 17:44:31 +02002201 return NETDEV_TX_OK;
2202}
2203
2204static void ehea_vlan_rx_register(struct net_device *dev,
2205 struct vlan_group *grp)
2206{
2207 struct ehea_port *port = netdev_priv(dev);
2208 struct ehea_adapter *adapter = port->adapter;
2209 struct hcp_ehea_port_cb1 *cb1;
2210 u64 hret;
2211
2212 port->vgrp = grp;
2213
Thomas Kleina1d261c2006-11-03 17:48:23 +01002214 cb1 = kzalloc(PAGE_SIZE, GFP_KERNEL);
Jan-Bernd Themann7a291082006-09-13 17:44:31 +02002215 if (!cb1) {
2216 ehea_error("no mem for cb1");
2217 goto out;
2218 }
2219
Jan-Bernd Themann7a291082006-09-13 17:44:31 +02002220 hret = ehea_h_modify_ehea_port(adapter->handle, port->logical_port_id,
2221 H_PORT_CB1, H_PORT_CB1_ALL, cb1);
2222 if (hret != H_SUCCESS)
2223 ehea_error("modify_ehea_port failed");
2224
2225 kfree(cb1);
2226out:
2227 return;
2228}
2229
2230static void ehea_vlan_rx_add_vid(struct net_device *dev, unsigned short vid)
2231{
2232 struct ehea_port *port = netdev_priv(dev);
2233 struct ehea_adapter *adapter = port->adapter;
2234 struct hcp_ehea_port_cb1 *cb1;
2235 int index;
2236 u64 hret;
2237
Thomas Kleina1d261c2006-11-03 17:48:23 +01002238 cb1 = kzalloc(PAGE_SIZE, GFP_KERNEL);
Jan-Bernd Themann7a291082006-09-13 17:44:31 +02002239 if (!cb1) {
2240 ehea_error("no mem for cb1");
2241 goto out;
2242 }
2243
2244 hret = ehea_h_query_ehea_port(adapter->handle, port->logical_port_id,
2245 H_PORT_CB1, H_PORT_CB1_ALL, cb1);
2246 if (hret != H_SUCCESS) {
2247 ehea_error("query_ehea_port failed");
2248 goto out;
2249 }
2250
2251 index = (vid / 64);
Thomas Kleindec590c2007-06-06 20:53:16 +02002252 cb1->vlan_filter[index] |= ((u64)(0x8000000000000000 >> (vid & 0x3F)));
Jan-Bernd Themann7a291082006-09-13 17:44:31 +02002253
2254 hret = ehea_h_modify_ehea_port(adapter->handle, port->logical_port_id,
2255 H_PORT_CB1, H_PORT_CB1_ALL, cb1);
2256 if (hret != H_SUCCESS)
2257 ehea_error("modify_ehea_port failed");
2258out:
2259 kfree(cb1);
2260 return;
2261}
2262
2263static void ehea_vlan_rx_kill_vid(struct net_device *dev, unsigned short vid)
2264{
2265 struct ehea_port *port = netdev_priv(dev);
2266 struct ehea_adapter *adapter = port->adapter;
2267 struct hcp_ehea_port_cb1 *cb1;
2268 int index;
2269 u64 hret;
2270
Dan Aloni5c15bde2007-03-02 20:44:51 -08002271 vlan_group_set_device(port->vgrp, vid, NULL);
Jan-Bernd Themann7a291082006-09-13 17:44:31 +02002272
Thomas Kleina1d261c2006-11-03 17:48:23 +01002273 cb1 = kzalloc(PAGE_SIZE, GFP_KERNEL);
Jan-Bernd Themann7a291082006-09-13 17:44:31 +02002274 if (!cb1) {
2275 ehea_error("no mem for cb1");
2276 goto out;
2277 }
2278
2279 hret = ehea_h_query_ehea_port(adapter->handle, port->logical_port_id,
2280 H_PORT_CB1, H_PORT_CB1_ALL, cb1);
2281 if (hret != H_SUCCESS) {
2282 ehea_error("query_ehea_port failed");
2283 goto out;
2284 }
2285
2286 index = (vid / 64);
Thomas Kleindec590c2007-06-06 20:53:16 +02002287 cb1->vlan_filter[index] &= ~((u64)(0x8000000000000000 >> (vid & 0x3F)));
Jan-Bernd Themann7a291082006-09-13 17:44:31 +02002288
2289 hret = ehea_h_modify_ehea_port(adapter->handle, port->logical_port_id,
2290 H_PORT_CB1, H_PORT_CB1_ALL, cb1);
2291 if (hret != H_SUCCESS)
2292 ehea_error("modify_ehea_port failed");
2293out:
2294 kfree(cb1);
2295 return;
2296}
2297
2298int ehea_activate_qp(struct ehea_adapter *adapter, struct ehea_qp *qp)
2299{
2300 int ret = -EIO;
2301 u64 hret;
2302 u16 dummy16 = 0;
2303 u64 dummy64 = 0;
Doug Maxey508d2b52008-01-31 20:20:49 -06002304 struct hcp_modify_qp_cb0 *cb0;
Jan-Bernd Themann7a291082006-09-13 17:44:31 +02002305
Thomas Kleina1d261c2006-11-03 17:48:23 +01002306 cb0 = kzalloc(PAGE_SIZE, GFP_KERNEL);
Jan-Bernd Themann7a291082006-09-13 17:44:31 +02002307 if (!cb0) {
2308 ret = -ENOMEM;
2309 goto out;
2310 }
2311
2312 hret = ehea_h_query_ehea_qp(adapter->handle, 0, qp->fw_handle,
2313 EHEA_BMASK_SET(H_QPCB0_ALL, 0xFFFF), cb0);
2314 if (hret != H_SUCCESS) {
2315 ehea_error("query_ehea_qp failed (1)");
2316 goto out;
2317 }
2318
2319 cb0->qp_ctl_reg = H_QP_CR_STATE_INITIALIZED;
2320 hret = ehea_h_modify_ehea_qp(adapter->handle, 0, qp->fw_handle,
2321 EHEA_BMASK_SET(H_QPCB0_QP_CTL_REG, 1), cb0,
2322 &dummy64, &dummy64, &dummy16, &dummy16);
2323 if (hret != H_SUCCESS) {
2324 ehea_error("modify_ehea_qp failed (1)");
2325 goto out;
2326 }
2327
2328 hret = ehea_h_query_ehea_qp(adapter->handle, 0, qp->fw_handle,
2329 EHEA_BMASK_SET(H_QPCB0_ALL, 0xFFFF), cb0);
2330 if (hret != H_SUCCESS) {
2331 ehea_error("query_ehea_qp failed (2)");
2332 goto out;
2333 }
2334
2335 cb0->qp_ctl_reg = H_QP_CR_ENABLED | H_QP_CR_STATE_INITIALIZED;
2336 hret = ehea_h_modify_ehea_qp(adapter->handle, 0, qp->fw_handle,
2337 EHEA_BMASK_SET(H_QPCB0_QP_CTL_REG, 1), cb0,
2338 &dummy64, &dummy64, &dummy16, &dummy16);
2339 if (hret != H_SUCCESS) {
2340 ehea_error("modify_ehea_qp failed (2)");
2341 goto out;
2342 }
2343
2344 hret = ehea_h_query_ehea_qp(adapter->handle, 0, qp->fw_handle,
2345 EHEA_BMASK_SET(H_QPCB0_ALL, 0xFFFF), cb0);
2346 if (hret != H_SUCCESS) {
2347 ehea_error("query_ehea_qp failed (3)");
2348 goto out;
2349 }
2350
2351 cb0->qp_ctl_reg = H_QP_CR_ENABLED | H_QP_CR_STATE_RDY2SND;
2352 hret = ehea_h_modify_ehea_qp(adapter->handle, 0, qp->fw_handle,
2353 EHEA_BMASK_SET(H_QPCB0_QP_CTL_REG, 1), cb0,
2354 &dummy64, &dummy64, &dummy16, &dummy16);
2355 if (hret != H_SUCCESS) {
2356 ehea_error("modify_ehea_qp failed (3)");
2357 goto out;
2358 }
2359
2360 hret = ehea_h_query_ehea_qp(adapter->handle, 0, qp->fw_handle,
2361 EHEA_BMASK_SET(H_QPCB0_ALL, 0xFFFF), cb0);
2362 if (hret != H_SUCCESS) {
2363 ehea_error("query_ehea_qp failed (4)");
2364 goto out;
2365 }
2366
2367 ret = 0;
2368out:
2369 kfree(cb0);
2370 return ret;
2371}
2372
2373static int ehea_port_res_setup(struct ehea_port *port, int def_qps,
2374 int add_tx_qps)
2375{
2376 int ret, i;
2377 struct port_res_cfg pr_cfg, pr_cfg_small_rx;
2378 enum ehea_eq_type eq_type = EHEA_EQ;
2379
2380 port->qp_eq = ehea_create_eq(port->adapter, eq_type,
2381 EHEA_MAX_ENTRIES_EQ, 1);
2382 if (!port->qp_eq) {
2383 ret = -EINVAL;
2384 ehea_error("ehea_create_eq failed (qp_eq)");
2385 goto out_kill_eq;
2386 }
2387
2388 pr_cfg.max_entries_rcq = rq1_entries + rq2_entries + rq3_entries;
Jan-Bernd Themann18604c52007-02-28 18:34:10 +01002389 pr_cfg.max_entries_scq = sq_entries * 2;
Jan-Bernd Themann7a291082006-09-13 17:44:31 +02002390 pr_cfg.max_entries_sq = sq_entries;
2391 pr_cfg.max_entries_rq1 = rq1_entries;
2392 pr_cfg.max_entries_rq2 = rq2_entries;
2393 pr_cfg.max_entries_rq3 = rq3_entries;
2394
2395 pr_cfg_small_rx.max_entries_rcq = 1;
2396 pr_cfg_small_rx.max_entries_scq = sq_entries;
2397 pr_cfg_small_rx.max_entries_sq = sq_entries;
2398 pr_cfg_small_rx.max_entries_rq1 = 1;
2399 pr_cfg_small_rx.max_entries_rq2 = 1;
2400 pr_cfg_small_rx.max_entries_rq3 = 1;
2401
2402 for (i = 0; i < def_qps; i++) {
2403 ret = ehea_init_port_res(port, &port->port_res[i], &pr_cfg, i);
2404 if (ret)
2405 goto out_clean_pr;
2406 }
2407 for (i = def_qps; i < def_qps + add_tx_qps; i++) {
2408 ret = ehea_init_port_res(port, &port->port_res[i],
2409 &pr_cfg_small_rx, i);
2410 if (ret)
2411 goto out_clean_pr;
2412 }
2413
2414 return 0;
2415
2416out_clean_pr:
2417 while (--i >= 0)
2418 ehea_clean_portres(port, &port->port_res[i]);
2419
2420out_kill_eq:
2421 ehea_destroy_eq(port->qp_eq);
2422 return ret;
2423}
2424
2425static int ehea_clean_all_portres(struct ehea_port *port)
2426{
2427 int ret = 0;
2428 int i;
2429
Doug Maxey508d2b52008-01-31 20:20:49 -06002430 for (i = 0; i < port->num_def_qps + port->num_add_tx_qps; i++)
Jan-Bernd Themann7a291082006-09-13 17:44:31 +02002431 ret |= ehea_clean_portres(port, &port->port_res[i]);
2432
2433 ret |= ehea_destroy_eq(port->qp_eq);
2434
2435 return ret;
2436}
2437
Thomas Klein35cf2e22007-08-06 13:55:14 +02002438static void ehea_remove_adapter_mr(struct ehea_adapter *adapter)
Thomas Klein1211bb62007-04-26 11:56:43 +02002439{
Thomas Klein35cf2e22007-08-06 13:55:14 +02002440 if (adapter->active_ports)
2441 return;
Thomas Klein1211bb62007-04-26 11:56:43 +02002442
2443 ehea_rem_mr(&adapter->mr);
2444}
2445
Thomas Klein35cf2e22007-08-06 13:55:14 +02002446static int ehea_add_adapter_mr(struct ehea_adapter *adapter)
Thomas Klein1211bb62007-04-26 11:56:43 +02002447{
Thomas Klein35cf2e22007-08-06 13:55:14 +02002448 if (adapter->active_ports)
2449 return 0;
Thomas Klein1211bb62007-04-26 11:56:43 +02002450
2451 return ehea_reg_kernel_mr(adapter, &adapter->mr);
2452}
2453
Jan-Bernd Themann7a291082006-09-13 17:44:31 +02002454static int ehea_up(struct net_device *dev)
2455{
2456 int ret, i;
2457 struct ehea_port *port = netdev_priv(dev);
Jan-Bernd Themann7a291082006-09-13 17:44:31 +02002458
2459 if (port->state == EHEA_PORT_UP)
2460 return 0;
2461
Daniel Walker9f71a562008-03-28 14:41:26 -07002462 mutex_lock(&ehea_fw_handles.lock);
Thomas Klein21eee2d2008-02-13 16:18:33 +01002463
Jan-Bernd Themann7a291082006-09-13 17:44:31 +02002464 ret = ehea_port_res_setup(port, port->num_def_qps,
2465 port->num_add_tx_qps);
2466 if (ret) {
2467 ehea_error("port_res_failed");
2468 goto out;
2469 }
2470
2471 /* Set default QP for this port */
2472 ret = ehea_configure_port(port);
2473 if (ret) {
2474 ehea_error("ehea_configure_port failed. ret:%d", ret);
2475 goto out_clean_pr;
2476 }
2477
Jan-Bernd Themann7a291082006-09-13 17:44:31 +02002478 ret = ehea_reg_interrupts(dev);
2479 if (ret) {
Thomas Kleinf9e29222007-07-18 17:34:09 +02002480 ehea_error("reg_interrupts failed. ret:%d", ret);
2481 goto out_clean_pr;
Jan-Bernd Themann7a291082006-09-13 17:44:31 +02002482 }
2483
Doug Maxey508d2b52008-01-31 20:20:49 -06002484 for (i = 0; i < port->num_def_qps + port->num_add_tx_qps; i++) {
Jan-Bernd Themann7a291082006-09-13 17:44:31 +02002485 ret = ehea_activate_qp(port->adapter, port->port_res[i].qp);
2486 if (ret) {
2487 ehea_error("activate_qp failed");
2488 goto out_free_irqs;
2489 }
2490 }
2491
Doug Maxey508d2b52008-01-31 20:20:49 -06002492 for (i = 0; i < port->num_def_qps; i++) {
Jan-Bernd Themann7a291082006-09-13 17:44:31 +02002493 ret = ehea_fill_port_res(&port->port_res[i]);
2494 if (ret) {
2495 ehea_error("out_free_irqs");
2496 goto out_free_irqs;
2497 }
2498 }
2499
Daniel Walkerda59cde2008-03-28 14:41:28 -07002500 mutex_lock(&ehea_bcmc_regs.lock);
Thomas Klein21eee2d2008-02-13 16:18:33 +01002501
2502 ret = ehea_broadcast_reg_helper(port, H_REG_BCMC);
2503 if (ret) {
2504 ret = -EIO;
2505 goto out_free_irqs;
2506 }
2507
Jan-Bernd Themann7a291082006-09-13 17:44:31 +02002508 port->state = EHEA_PORT_UP;
Thomas Klein21eee2d2008-02-13 16:18:33 +01002509
2510 ret = 0;
Jan-Bernd Themann7a291082006-09-13 17:44:31 +02002511 goto out;
2512
2513out_free_irqs:
2514 ehea_free_interrupts(dev);
2515
Jan-Bernd Themann7a291082006-09-13 17:44:31 +02002516out_clean_pr:
2517 ehea_clean_all_portres(port);
2518out:
Thomas Klein44c82152007-07-11 16:32:00 +02002519 if (ret)
2520 ehea_info("Failed starting %s. ret=%i", dev->name, ret);
2521
Thomas Klein21eee2d2008-02-13 16:18:33 +01002522 ehea_update_bcmc_registrations();
Daniel Walkerda59cde2008-03-28 14:41:28 -07002523 mutex_unlock(&ehea_bcmc_regs.lock);
Thomas Klein21eee2d2008-02-13 16:18:33 +01002524
2525 ehea_update_firmware_handles();
Daniel Walker9f71a562008-03-28 14:41:26 -07002526 mutex_unlock(&ehea_fw_handles.lock);
Thomas Klein21eee2d2008-02-13 16:18:33 +01002527
Jan-Bernd Themann7a291082006-09-13 17:44:31 +02002528 return ret;
2529}
2530
Stephen Hemmingerbea33482007-10-03 16:41:36 -07002531static void port_napi_disable(struct ehea_port *port)
2532{
2533 int i;
2534
Jan-Bernd Themann0173b792007-10-24 11:53:34 +02002535 for (i = 0; i < port->num_def_qps + port->num_add_tx_qps; i++)
Stephen Hemmingerbea33482007-10-03 16:41:36 -07002536 napi_disable(&port->port_res[i].napi);
2537}
2538
2539static void port_napi_enable(struct ehea_port *port)
2540{
2541 int i;
2542
Jan-Bernd Themann0173b792007-10-24 11:53:34 +02002543 for (i = 0; i < port->num_def_qps + port->num_add_tx_qps; i++)
Stephen Hemmingerbea33482007-10-03 16:41:36 -07002544 napi_enable(&port->port_res[i].napi);
2545}
2546
Jan-Bernd Themann7a291082006-09-13 17:44:31 +02002547static int ehea_open(struct net_device *dev)
2548{
2549 int ret;
2550 struct ehea_port *port = netdev_priv(dev);
2551
Daniel Walkera5af6ad2008-03-28 14:41:28 -07002552 mutex_lock(&port->port_lock);
Jan-Bernd Themann7a291082006-09-13 17:44:31 +02002553
2554 if (netif_msg_ifup(port))
2555 ehea_info("enabling port %s", dev->name);
2556
2557 ret = ehea_up(dev);
Stephen Hemmingerbea33482007-10-03 16:41:36 -07002558 if (!ret) {
2559 port_napi_enable(port);
Jan-Bernd Themann7a291082006-09-13 17:44:31 +02002560 netif_start_queue(dev);
Stephen Hemmingerbea33482007-10-03 16:41:36 -07002561 }
Jan-Bernd Themann7a291082006-09-13 17:44:31 +02002562
Daniel Walkera5af6ad2008-03-28 14:41:28 -07002563 mutex_unlock(&port->port_lock);
Jan-Bernd Themann7a291082006-09-13 17:44:31 +02002564
2565 return ret;
2566}
2567
2568static int ehea_down(struct net_device *dev)
2569{
Stephen Hemmingerbea33482007-10-03 16:41:36 -07002570 int ret;
Jan-Bernd Themann7a291082006-09-13 17:44:31 +02002571 struct ehea_port *port = netdev_priv(dev);
2572
2573 if (port->state == EHEA_PORT_DOWN)
2574 return 0;
2575
Daniel Walkerdbbcbb22008-03-28 14:41:27 -07002576 mutex_lock(&ehea_fw_handles.lock);
2577
Daniel Walkerda59cde2008-03-28 14:41:28 -07002578 mutex_lock(&ehea_bcmc_regs.lock);
Jan-Bernd Themann7a291082006-09-13 17:44:31 +02002579 ehea_drop_multicast_list(dev);
Thomas Klein21eee2d2008-02-13 16:18:33 +01002580 ehea_broadcast_reg_helper(port, H_DEREG_BCMC);
2581
Jan-Bernd Themann7a291082006-09-13 17:44:31 +02002582 ehea_free_interrupts(dev);
2583
Jan-Bernd Themann7a291082006-09-13 17:44:31 +02002584 port->state = EHEA_PORT_DOWN;
Thomas Klein44c82152007-07-11 16:32:00 +02002585
Thomas Klein21eee2d2008-02-13 16:18:33 +01002586 ehea_update_bcmc_registrations();
Daniel Walkerda59cde2008-03-28 14:41:28 -07002587 mutex_unlock(&ehea_bcmc_regs.lock);
Thomas Klein21eee2d2008-02-13 16:18:33 +01002588
Thomas Klein44c82152007-07-11 16:32:00 +02002589 ret = ehea_clean_all_portres(port);
2590 if (ret)
2591 ehea_info("Failed freeing resources for %s. ret=%i",
2592 dev->name, ret);
2593
Thomas Klein21eee2d2008-02-13 16:18:33 +01002594 ehea_update_firmware_handles();
Daniel Walker9f71a562008-03-28 14:41:26 -07002595 mutex_unlock(&ehea_fw_handles.lock);
Thomas Klein21eee2d2008-02-13 16:18:33 +01002596
Jan-Bernd Themann7a291082006-09-13 17:44:31 +02002597 return ret;
2598}
2599
2600static int ehea_stop(struct net_device *dev)
2601{
2602 int ret;
2603 struct ehea_port *port = netdev_priv(dev);
2604
2605 if (netif_msg_ifdown(port))
2606 ehea_info("disabling port %s", dev->name);
2607
Jan-Bernd Themann3bf76b82007-10-08 16:01:33 +02002608 flush_scheduled_work();
Daniel Walkera5af6ad2008-03-28 14:41:28 -07002609 mutex_lock(&port->port_lock);
Jan-Bernd Themann7a291082006-09-13 17:44:31 +02002610 netif_stop_queue(dev);
Jan-Bernd Themann0173b792007-10-24 11:53:34 +02002611 port_napi_disable(port);
Jan-Bernd Themann7a291082006-09-13 17:44:31 +02002612 ret = ehea_down(dev);
Daniel Walkera5af6ad2008-03-28 14:41:28 -07002613 mutex_unlock(&port->port_lock);
Jan-Bernd Themann7a291082006-09-13 17:44:31 +02002614 return ret;
2615}
2616
Andrew Morton22559c52008-04-18 13:50:39 -07002617static void ehea_purge_sq(struct ehea_qp *orig_qp)
Jan-Bernd Themann2c694482007-10-01 16:33:18 +02002618{
2619 struct ehea_qp qp = *orig_qp;
2620 struct ehea_qp_init_attr *init_attr = &qp.init_attr;
2621 struct ehea_swqe *swqe;
2622 int wqe_index;
2623 int i;
2624
2625 for (i = 0; i < init_attr->act_nr_send_wqes; i++) {
2626 swqe = ehea_get_swqe(&qp, &wqe_index);
2627 swqe->tx_control |= EHEA_SWQE_PURGE;
2628 }
2629}
2630
Andrew Morton22559c52008-04-18 13:50:39 -07002631static void ehea_flush_sq(struct ehea_port *port)
Thomas Klein44fb3122008-04-04 15:04:53 +02002632{
2633 int i;
2634
2635 for (i = 0; i < port->num_def_qps + port->num_add_tx_qps; i++) {
2636 struct ehea_port_res *pr = &port->port_res[i];
2637 int swqe_max = pr->sq_skba_size - 2 - pr->swqe_ll_count;
2638 int k = 0;
2639 while (atomic_read(&pr->swqe_avail) < swqe_max) {
2640 msleep(5);
2641 if (++k == 20)
2642 break;
2643 }
2644 }
2645}
2646
Jan-Bernd Themann2c694482007-10-01 16:33:18 +02002647int ehea_stop_qps(struct net_device *dev)
2648{
2649 struct ehea_port *port = netdev_priv(dev);
2650 struct ehea_adapter *adapter = port->adapter;
Doug Maxey508d2b52008-01-31 20:20:49 -06002651 struct hcp_modify_qp_cb0 *cb0;
Jan-Bernd Themann2c694482007-10-01 16:33:18 +02002652 int ret = -EIO;
2653 int dret;
2654 int i;
2655 u64 hret;
2656 u64 dummy64 = 0;
2657 u16 dummy16 = 0;
2658
2659 cb0 = kzalloc(PAGE_SIZE, GFP_KERNEL);
2660 if (!cb0) {
2661 ret = -ENOMEM;
2662 goto out;
2663 }
2664
2665 for (i = 0; i < (port->num_def_qps + port->num_add_tx_qps); i++) {
2666 struct ehea_port_res *pr = &port->port_res[i];
2667 struct ehea_qp *qp = pr->qp;
2668
2669 /* Purge send queue */
2670 ehea_purge_sq(qp);
2671
2672 /* Disable queue pair */
2673 hret = ehea_h_query_ehea_qp(adapter->handle, 0, qp->fw_handle,
2674 EHEA_BMASK_SET(H_QPCB0_ALL, 0xFFFF),
2675 cb0);
2676 if (hret != H_SUCCESS) {
2677 ehea_error("query_ehea_qp failed (1)");
2678 goto out;
2679 }
2680
2681 cb0->qp_ctl_reg = (cb0->qp_ctl_reg & H_QP_CR_RES_STATE) << 8;
2682 cb0->qp_ctl_reg &= ~H_QP_CR_ENABLED;
2683
2684 hret = ehea_h_modify_ehea_qp(adapter->handle, 0, qp->fw_handle,
2685 EHEA_BMASK_SET(H_QPCB0_QP_CTL_REG,
2686 1), cb0, &dummy64,
2687 &dummy64, &dummy16, &dummy16);
2688 if (hret != H_SUCCESS) {
2689 ehea_error("modify_ehea_qp failed (1)");
2690 goto out;
2691 }
2692
2693 hret = ehea_h_query_ehea_qp(adapter->handle, 0, qp->fw_handle,
2694 EHEA_BMASK_SET(H_QPCB0_ALL, 0xFFFF),
2695 cb0);
2696 if (hret != H_SUCCESS) {
2697 ehea_error("query_ehea_qp failed (2)");
2698 goto out;
2699 }
2700
2701 /* deregister shared memory regions */
2702 dret = ehea_rem_smrs(pr);
2703 if (dret) {
2704 ehea_error("unreg shared memory region failed");
2705 goto out;
2706 }
2707 }
2708
2709 ret = 0;
2710out:
2711 kfree(cb0);
2712
2713 return ret;
2714}
2715
Doug Maxey508d2b52008-01-31 20:20:49 -06002716void ehea_update_rqs(struct ehea_qp *orig_qp, struct ehea_port_res *pr)
Jan-Bernd Themann2c694482007-10-01 16:33:18 +02002717{
2718 struct ehea_qp qp = *orig_qp;
2719 struct ehea_qp_init_attr *init_attr = &qp.init_attr;
2720 struct ehea_rwqe *rwqe;
2721 struct sk_buff **skba_rq2 = pr->rq2_skba.arr;
2722 struct sk_buff **skba_rq3 = pr->rq3_skba.arr;
2723 struct sk_buff *skb;
2724 u32 lkey = pr->recv_mr.lkey;
2725
2726
2727 int i;
2728 int index;
2729
2730 for (i = 0; i < init_attr->act_nr_rwqes_rq2 + 1; i++) {
2731 rwqe = ehea_get_next_rwqe(&qp, 2);
2732 rwqe->sg_list[0].l_key = lkey;
2733 index = EHEA_BMASK_GET(EHEA_WR_ID_INDEX, rwqe->wr_id);
2734 skb = skba_rq2[index];
2735 if (skb)
2736 rwqe->sg_list[0].vaddr = ehea_map_vaddr(skb->data);
2737 }
2738
2739 for (i = 0; i < init_attr->act_nr_rwqes_rq3 + 1; i++) {
2740 rwqe = ehea_get_next_rwqe(&qp, 3);
2741 rwqe->sg_list[0].l_key = lkey;
2742 index = EHEA_BMASK_GET(EHEA_WR_ID_INDEX, rwqe->wr_id);
2743 skb = skba_rq3[index];
2744 if (skb)
2745 rwqe->sg_list[0].vaddr = ehea_map_vaddr(skb->data);
2746 }
2747}
2748
2749int ehea_restart_qps(struct net_device *dev)
2750{
2751 struct ehea_port *port = netdev_priv(dev);
2752 struct ehea_adapter *adapter = port->adapter;
2753 int ret = 0;
2754 int i;
2755
Doug Maxey508d2b52008-01-31 20:20:49 -06002756 struct hcp_modify_qp_cb0 *cb0;
Jan-Bernd Themann2c694482007-10-01 16:33:18 +02002757 u64 hret;
2758 u64 dummy64 = 0;
2759 u16 dummy16 = 0;
2760
2761 cb0 = kzalloc(PAGE_SIZE, GFP_KERNEL);
2762 if (!cb0) {
2763 ret = -ENOMEM;
2764 goto out;
2765 }
2766
2767 for (i = 0; i < (port->num_def_qps + port->num_add_tx_qps); i++) {
2768 struct ehea_port_res *pr = &port->port_res[i];
2769 struct ehea_qp *qp = pr->qp;
2770
2771 ret = ehea_gen_smrs(pr);
2772 if (ret) {
2773 ehea_error("creation of shared memory regions failed");
2774 goto out;
2775 }
2776
2777 ehea_update_rqs(qp, pr);
2778
2779 /* Enable queue pair */
2780 hret = ehea_h_query_ehea_qp(adapter->handle, 0, qp->fw_handle,
2781 EHEA_BMASK_SET(H_QPCB0_ALL, 0xFFFF),
2782 cb0);
2783 if (hret != H_SUCCESS) {
2784 ehea_error("query_ehea_qp failed (1)");
2785 goto out;
2786 }
2787
2788 cb0->qp_ctl_reg = (cb0->qp_ctl_reg & H_QP_CR_RES_STATE) << 8;
2789 cb0->qp_ctl_reg |= H_QP_CR_ENABLED;
2790
2791 hret = ehea_h_modify_ehea_qp(adapter->handle, 0, qp->fw_handle,
2792 EHEA_BMASK_SET(H_QPCB0_QP_CTL_REG,
2793 1), cb0, &dummy64,
2794 &dummy64, &dummy16, &dummy16);
2795 if (hret != H_SUCCESS) {
2796 ehea_error("modify_ehea_qp failed (1)");
2797 goto out;
2798 }
2799
2800 hret = ehea_h_query_ehea_qp(adapter->handle, 0, qp->fw_handle,
2801 EHEA_BMASK_SET(H_QPCB0_ALL, 0xFFFF),
2802 cb0);
2803 if (hret != H_SUCCESS) {
2804 ehea_error("query_ehea_qp failed (2)");
2805 goto out;
2806 }
2807
2808 /* refill entire queue */
2809 ehea_refill_rq1(pr, pr->rq1_skba.index, 0);
2810 ehea_refill_rq2(pr, 0);
2811 ehea_refill_rq3(pr, 0);
2812 }
2813out:
2814 kfree(cb0);
2815
2816 return ret;
2817}
2818
David Howellsc4028952006-11-22 14:57:56 +00002819static void ehea_reset_port(struct work_struct *work)
Jan-Bernd Themann7a291082006-09-13 17:44:31 +02002820{
2821 int ret;
David Howellsc4028952006-11-22 14:57:56 +00002822 struct ehea_port *port =
2823 container_of(work, struct ehea_port, reset_task);
2824 struct net_device *dev = port->netdev;
Jan-Bernd Themann7a291082006-09-13 17:44:31 +02002825
2826 port->resets++;
Daniel Walkera5af6ad2008-03-28 14:41:28 -07002827 mutex_lock(&port->port_lock);
Jan-Bernd Themann7a291082006-09-13 17:44:31 +02002828 netif_stop_queue(dev);
Stephen Hemmingerbea33482007-10-03 16:41:36 -07002829
2830 port_napi_disable(port);
Jan-Bernd Themann7a291082006-09-13 17:44:31 +02002831
Thomas Klein44c82152007-07-11 16:32:00 +02002832 ehea_down(dev);
Jan-Bernd Themann7a291082006-09-13 17:44:31 +02002833
2834 ret = ehea_up(dev);
Thomas Klein44c82152007-07-11 16:32:00 +02002835 if (ret)
Jan-Bernd Themann7a291082006-09-13 17:44:31 +02002836 goto out;
Jan-Bernd Themann7a291082006-09-13 17:44:31 +02002837
Jan-Bernd Themann2c694482007-10-01 16:33:18 +02002838 ehea_set_multicast_list(dev);
2839
Jan-Bernd Themann7a291082006-09-13 17:44:31 +02002840 if (netif_msg_timer(port))
2841 ehea_info("Device %s resetted successfully", dev->name);
2842
Stephen Hemmingerbea33482007-10-03 16:41:36 -07002843 port_napi_enable(port);
2844
Jan-Bernd Themann7a291082006-09-13 17:44:31 +02002845 netif_wake_queue(dev);
2846out:
Daniel Walkera5af6ad2008-03-28 14:41:28 -07002847 mutex_unlock(&port->port_lock);
Jan-Bernd Themann7a291082006-09-13 17:44:31 +02002848 return;
2849}
2850
Thomas Klein44c82152007-07-11 16:32:00 +02002851static void ehea_rereg_mrs(struct work_struct *work)
2852{
2853 int ret, i;
2854 struct ehea_adapter *adapter;
2855
Daniel Walker06f89ed2008-03-28 14:41:26 -07002856 mutex_lock(&dlpar_mem_lock);
Thomas Klein44c82152007-07-11 16:32:00 +02002857 ehea_info("LPAR memory enlarged - re-initializing driver");
2858
2859 list_for_each_entry(adapter, &adapter_list, list)
2860 if (adapter->active_ports) {
2861 /* Shutdown all ports */
2862 for (i = 0; i < EHEA_MAX_PORTS; i++) {
2863 struct ehea_port *port = adapter->port[i];
Daniel Walkera5af6ad2008-03-28 14:41:28 -07002864 struct net_device *dev;
Thomas Klein44c82152007-07-11 16:32:00 +02002865
Daniel Walkera5af6ad2008-03-28 14:41:28 -07002866 if (!port)
2867 continue;
Thomas Klein44c82152007-07-11 16:32:00 +02002868
Daniel Walkera5af6ad2008-03-28 14:41:28 -07002869 dev = port->netdev;
2870
2871 if (dev->flags & IFF_UP) {
2872 mutex_lock(&port->port_lock);
2873 netif_stop_queue(dev);
David S. Millerdf39e8b2008-04-14 02:30:23 -07002874 ehea_flush_sq(port);
Daniel Walkera5af6ad2008-03-28 14:41:28 -07002875 ret = ehea_stop_qps(dev);
2876 if (ret) {
2877 mutex_unlock(&port->port_lock);
2878 goto out;
Thomas Klein44c82152007-07-11 16:32:00 +02002879 }
Daniel Walkera5af6ad2008-03-28 14:41:28 -07002880 port_napi_disable(port);
2881 mutex_unlock(&port->port_lock);
Thomas Klein44c82152007-07-11 16:32:00 +02002882 }
2883 }
2884
2885 /* Unregister old memory region */
2886 ret = ehea_rem_mr(&adapter->mr);
2887 if (ret) {
2888 ehea_error("unregister MR failed - driver"
2889 " inoperable!");
2890 goto out;
2891 }
2892 }
2893
2894 ehea_destroy_busmap();
Thomas Klein44c82152007-07-11 16:32:00 +02002895 ret = ehea_create_busmap();
Jan-Bernd Themann2c694482007-10-01 16:33:18 +02002896 if (ret) {
2897 ehea_error("creating ehea busmap failed");
Thomas Klein44c82152007-07-11 16:32:00 +02002898 goto out;
Jan-Bernd Themann2c694482007-10-01 16:33:18 +02002899 }
Thomas Klein44c82152007-07-11 16:32:00 +02002900
2901 clear_bit(__EHEA_STOP_XFER, &ehea_driver_flags);
2902
2903 list_for_each_entry(adapter, &adapter_list, list)
2904 if (adapter->active_ports) {
2905 /* Register new memory region */
2906 ret = ehea_reg_kernel_mr(adapter, &adapter->mr);
2907 if (ret) {
2908 ehea_error("register MR failed - driver"
2909 " inoperable!");
2910 goto out;
2911 }
2912
2913 /* Restart all ports */
2914 for (i = 0; i < EHEA_MAX_PORTS; i++) {
2915 struct ehea_port *port = adapter->port[i];
2916
2917 if (port) {
2918 struct net_device *dev = port->netdev;
2919
2920 if (dev->flags & IFF_UP) {
Daniel Walkera5af6ad2008-03-28 14:41:28 -07002921 mutex_lock(&port->port_lock);
Jan-Bernd Themann2c694482007-10-01 16:33:18 +02002922 port_napi_enable(port);
2923 ret = ehea_restart_qps(dev);
2924 if (!ret)
Thomas Klein44c82152007-07-11 16:32:00 +02002925 netif_wake_queue(dev);
Daniel Walkera5af6ad2008-03-28 14:41:28 -07002926 mutex_unlock(&port->port_lock);
Thomas Klein44c82152007-07-11 16:32:00 +02002927 }
2928 }
2929 }
2930 }
Daniel Walker06f89ed2008-03-28 14:41:26 -07002931 mutex_unlock(&dlpar_mem_lock);
Jan-Bernd Themann2c694482007-10-01 16:33:18 +02002932 ehea_info("re-initializing driver complete");
Thomas Klein44c82152007-07-11 16:32:00 +02002933out:
2934 return;
2935}
2936
Jan-Bernd Themann7a291082006-09-13 17:44:31 +02002937static void ehea_tx_watchdog(struct net_device *dev)
2938{
2939 struct ehea_port *port = netdev_priv(dev);
2940
Jan-Bernd Themann2c694482007-10-01 16:33:18 +02002941 if (netif_carrier_ok(dev) &&
2942 !test_bit(__EHEA_STOP_XFER, &ehea_driver_flags))
Jan-Bernd Themann3bf76b82007-10-08 16:01:33 +02002943 schedule_work(&port->reset_task);
Jan-Bernd Themann7a291082006-09-13 17:44:31 +02002944}
2945
2946int ehea_sense_adapter_attr(struct ehea_adapter *adapter)
2947{
2948 struct hcp_query_ehea *cb;
2949 u64 hret;
2950 int ret;
2951
Thomas Kleina1d261c2006-11-03 17:48:23 +01002952 cb = kzalloc(PAGE_SIZE, GFP_KERNEL);
Jan-Bernd Themann7a291082006-09-13 17:44:31 +02002953 if (!cb) {
2954 ret = -ENOMEM;
2955 goto out;
2956 }
2957
2958 hret = ehea_h_query_ehea(adapter->handle, cb);
2959
2960 if (hret != H_SUCCESS) {
2961 ret = -EIO;
2962 goto out_herr;
2963 }
2964
Jan-Bernd Themann7a291082006-09-13 17:44:31 +02002965 adapter->max_mc_mac = cb->max_mc_mac - 1;
2966 ret = 0;
2967
2968out_herr:
2969 kfree(cb);
2970out:
2971 return ret;
2972}
2973
Jan-Bernd Themann1acf2312007-02-28 18:34:02 +01002974int ehea_get_jumboframe_status(struct ehea_port *port, int *jumbo)
2975{
2976 struct hcp_ehea_port_cb4 *cb4;
2977 u64 hret;
2978 int ret = 0;
2979
2980 *jumbo = 0;
2981
2982 /* (Try to) enable *jumbo frames */
2983 cb4 = kzalloc(PAGE_SIZE, GFP_KERNEL);
2984 if (!cb4) {
2985 ehea_error("no mem for cb4");
2986 ret = -ENOMEM;
2987 goto out;
2988 } else {
2989 hret = ehea_h_query_ehea_port(port->adapter->handle,
2990 port->logical_port_id,
2991 H_PORT_CB4,
2992 H_PORT_CB4_JUMBO, cb4);
2993 if (hret == H_SUCCESS) {
2994 if (cb4->jumbo_frame)
2995 *jumbo = 1;
2996 else {
2997 cb4->jumbo_frame = 1;
2998 hret = ehea_h_modify_ehea_port(port->adapter->
2999 handle,
3000 port->
3001 logical_port_id,
3002 H_PORT_CB4,
3003 H_PORT_CB4_JUMBO,
3004 cb4);
3005 if (hret == H_SUCCESS)
3006 *jumbo = 1;
3007 }
3008 } else
3009 ret = -EINVAL;
3010
3011 kfree(cb4);
3012 }
3013out:
3014 return ret;
3015}
3016
3017static ssize_t ehea_show_port_id(struct device *dev,
3018 struct device_attribute *attr, char *buf)
3019{
3020 struct ehea_port *port = container_of(dev, struct ehea_port, ofdev.dev);
Jan-Bernd Themanna8e34fd2007-08-22 16:20:58 +02003021 return sprintf(buf, "%d", port->logical_port_id);
Jan-Bernd Themann1acf2312007-02-28 18:34:02 +01003022}
3023
3024static DEVICE_ATTR(log_port_id, S_IRUSR | S_IRGRP | S_IROTH, ehea_show_port_id,
3025 NULL);
3026
3027static void __devinit logical_port_release(struct device *dev)
3028{
3029 struct ehea_port *port = container_of(dev, struct ehea_port, ofdev.dev);
3030 of_node_put(port->ofdev.node);
3031}
3032
3033static struct device *ehea_register_port(struct ehea_port *port,
3034 struct device_node *dn)
Jan-Bernd Themann7a291082006-09-13 17:44:31 +02003035{
3036 int ret;
Jan-Bernd Themann1acf2312007-02-28 18:34:02 +01003037
3038 port->ofdev.node = of_node_get(dn);
Joachim Fenkes6b08f3a2007-09-26 19:45:51 +10003039 port->ofdev.dev.parent = &port->adapter->ofdev->dev;
Thomas Kleind1dea382007-04-26 11:56:13 +02003040 port->ofdev.dev.bus = &ibmebus_bus_type;
Jan-Bernd Themann1acf2312007-02-28 18:34:02 +01003041
Thomas Kleind1dea382007-04-26 11:56:13 +02003042 sprintf(port->ofdev.dev.bus_id, "port%d", port_name_cnt++);
Jan-Bernd Themann1acf2312007-02-28 18:34:02 +01003043 port->ofdev.dev.release = logical_port_release;
3044
3045 ret = of_device_register(&port->ofdev);
3046 if (ret) {
3047 ehea_error("failed to register device. ret=%d", ret);
3048 goto out;
3049 }
3050
3051 ret = device_create_file(&port->ofdev.dev, &dev_attr_log_port_id);
Jan-Bernd Themannd1d25aa2007-07-02 13:00:46 +02003052 if (ret) {
Jan-Bernd Themann1acf2312007-02-28 18:34:02 +01003053 ehea_error("failed to register attributes, ret=%d", ret);
3054 goto out_unreg_of_dev;
3055 }
Jan-Bernd Themanne542aa62007-03-22 17:50:24 +01003056
Jan-Bernd Themann1acf2312007-02-28 18:34:02 +01003057 return &port->ofdev.dev;
3058
3059out_unreg_of_dev:
3060 of_device_unregister(&port->ofdev);
3061out:
3062 return NULL;
3063}
3064
3065static void ehea_unregister_port(struct ehea_port *port)
3066{
3067 device_remove_file(&port->ofdev.dev, &dev_attr_log_port_id);
3068 of_device_unregister(&port->ofdev);
3069}
3070
3071struct ehea_port *ehea_setup_single_port(struct ehea_adapter *adapter,
3072 u32 logical_port_id,
3073 struct device_node *dn)
3074{
3075 int ret;
3076 struct net_device *dev;
3077 struct ehea_port *port;
3078 struct device *port_dev;
3079 int jumbo;
3080
3081 /* allocate memory for the port structures */
3082 dev = alloc_etherdev(sizeof(struct ehea_port));
3083
3084 if (!dev) {
3085 ehea_error("no mem for net_device");
3086 ret = -ENOMEM;
3087 goto out_err;
3088 }
3089
3090 port = netdev_priv(dev);
Jan-Bernd Themann7a291082006-09-13 17:44:31 +02003091
Daniel Walkera5af6ad2008-03-28 14:41:28 -07003092 mutex_init(&port->port_lock);
Jan-Bernd Themann7a291082006-09-13 17:44:31 +02003093 port->state = EHEA_PORT_DOWN;
3094 port->sig_comp_iv = sq_entries / 10;
3095
Jan-Bernd Themann1acf2312007-02-28 18:34:02 +01003096 port->adapter = adapter;
3097 port->netdev = dev;
3098 port->logical_port_id = logical_port_id;
Jan-Bernd Themann7a291082006-09-13 17:44:31 +02003099
Jan-Bernd Themann1acf2312007-02-28 18:34:02 +01003100 port->msg_enable = netif_msg_init(msg_level, EHEA_MSG_DEFAULT);
Jan-Bernd Themann7a291082006-09-13 17:44:31 +02003101
3102 port->mc_list = kzalloc(sizeof(struct ehea_mc_list), GFP_KERNEL);
3103 if (!port->mc_list) {
3104 ret = -ENOMEM;
Jan-Bernd Themann1acf2312007-02-28 18:34:02 +01003105 goto out_free_ethdev;
Jan-Bernd Themann7a291082006-09-13 17:44:31 +02003106 }
3107
3108 INIT_LIST_HEAD(&port->mc_list->list);
3109
Jan-Bernd Themann7a291082006-09-13 17:44:31 +02003110 ret = ehea_sense_port_attr(port);
3111 if (ret)
Jan-Bernd Themann1acf2312007-02-28 18:34:02 +01003112 goto out_free_mc_list;
Jan-Bernd Themann7a291082006-09-13 17:44:31 +02003113
Jan-Bernd Themann1acf2312007-02-28 18:34:02 +01003114 port_dev = ehea_register_port(port, dn);
3115 if (!port_dev)
3116 goto out_free_mc_list;
Thomas Klein9c750b72007-01-29 18:44:01 +01003117
Jan-Bernd Themann1acf2312007-02-28 18:34:02 +01003118 SET_NETDEV_DEV(dev, port_dev);
Jan-Bernd Themann7a291082006-09-13 17:44:31 +02003119
3120 /* initialize net_device structure */
Jan-Bernd Themann7a291082006-09-13 17:44:31 +02003121 memcpy(dev->dev_addr, &port->mac_addr, ETH_ALEN);
3122
3123 dev->open = ehea_open;
Jan-Bernd Themann8d22c972007-07-23 16:05:03 +02003124#ifdef CONFIG_NET_POLL_CONTROLLER
3125 dev->poll_controller = ehea_netpoll;
3126#endif
Jan-Bernd Themann7a291082006-09-13 17:44:31 +02003127 dev->stop = ehea_stop;
3128 dev->hard_start_xmit = ehea_start_xmit;
3129 dev->get_stats = ehea_get_stats;
3130 dev->set_multicast_list = ehea_set_multicast_list;
3131 dev->set_mac_address = ehea_set_mac_addr;
3132 dev->change_mtu = ehea_change_mtu;
3133 dev->vlan_rx_register = ehea_vlan_rx_register;
3134 dev->vlan_rx_add_vid = ehea_vlan_rx_add_vid;
3135 dev->vlan_rx_kill_vid = ehea_vlan_rx_kill_vid;
3136 dev->features = NETIF_F_SG | NETIF_F_FRAGLIST | NETIF_F_TSO
Thomas Kleindc01c442008-03-19 13:55:43 +01003137 | NETIF_F_HIGHDMA | NETIF_F_IP_CSUM | NETIF_F_HW_VLAN_TX
Jan-Bernd Themann7a291082006-09-13 17:44:31 +02003138 | NETIF_F_HW_VLAN_RX | NETIF_F_HW_VLAN_FILTER
3139 | NETIF_F_LLTX;
3140 dev->tx_timeout = &ehea_tx_watchdog;
3141 dev->watchdog_timeo = EHEA_WATCH_DOG_TIMEOUT;
3142
David Howellsc4028952006-11-22 14:57:56 +00003143 INIT_WORK(&port->reset_task, ehea_reset_port);
Jan-Bernd Themann7a291082006-09-13 17:44:31 +02003144 ehea_set_ethtool_ops(dev);
3145
3146 ret = register_netdev(dev);
3147 if (ret) {
3148 ehea_error("register_netdev failed. ret=%d", ret);
Thomas Klein21eee2d2008-02-13 16:18:33 +01003149 goto out_unreg_port;
Jan-Bernd Themann7a291082006-09-13 17:44:31 +02003150 }
3151
Jan-Bernd Themannd4dc4ec2007-09-25 16:16:34 -07003152 port->lro_max_aggr = lro_max_aggr;
3153
Jan-Bernd Themann1acf2312007-02-28 18:34:02 +01003154 ret = ehea_get_jumboframe_status(port, &jumbo);
Jan-Bernd Themanne542aa62007-03-22 17:50:24 +01003155 if (ret)
Jan-Bernd Themann1acf2312007-02-28 18:34:02 +01003156 ehea_error("failed determining jumbo frame status for %s",
3157 port->netdev->name);
3158
Thomas Klein9c750b72007-01-29 18:44:01 +01003159 ehea_info("%s: Jumbo frames are %sabled", dev->name,
3160 jumbo == 1 ? "en" : "dis");
3161
Thomas Klein44c82152007-07-11 16:32:00 +02003162 adapter->active_ports++;
3163
Jan-Bernd Themann1acf2312007-02-28 18:34:02 +01003164 return port;
Jan-Bernd Themann7a291082006-09-13 17:44:31 +02003165
Jan-Bernd Themann1acf2312007-02-28 18:34:02 +01003166out_unreg_port:
3167 ehea_unregister_port(port);
3168
3169out_free_mc_list:
Jan-Bernd Themann7a291082006-09-13 17:44:31 +02003170 kfree(port->mc_list);
Jan-Bernd Themann1acf2312007-02-28 18:34:02 +01003171
3172out_free_ethdev:
3173 free_netdev(dev);
3174
3175out_err:
3176 ehea_error("setting up logical port with id=%d failed, ret=%d",
3177 logical_port_id, ret);
3178 return NULL;
3179}
3180
3181static void ehea_shutdown_single_port(struct ehea_port *port)
3182{
Brian King7fb1c2a2008-05-14 09:48:25 -05003183 struct ehea_adapter *adapter = port->adapter;
Jan-Bernd Themann1acf2312007-02-28 18:34:02 +01003184 unregister_netdev(port->netdev);
3185 ehea_unregister_port(port);
3186 kfree(port->mc_list);
3187 free_netdev(port->netdev);
Brian King7fb1c2a2008-05-14 09:48:25 -05003188 adapter->active_ports--;
Jan-Bernd Themann7a291082006-09-13 17:44:31 +02003189}
3190
3191static int ehea_setup_ports(struct ehea_adapter *adapter)
3192{
Jan-Bernd Themann1acf2312007-02-28 18:34:02 +01003193 struct device_node *lhea_dn;
3194 struct device_node *eth_dn = NULL;
Jan-Bernd Themannd1d25aa2007-07-02 13:00:46 +02003195
Stephen Rothwell9f9a3b82007-05-01 13:51:32 +10003196 const u32 *dn_log_port_id;
Jan-Bernd Themann1acf2312007-02-28 18:34:02 +01003197 int i = 0;
Jan-Bernd Themann7a291082006-09-13 17:44:31 +02003198
Joachim Fenkes6b08f3a2007-09-26 19:45:51 +10003199 lhea_dn = adapter->ofdev->node;
Jan-Bernd Themann1eef4e02007-03-22 17:49:42 +01003200 while ((eth_dn = of_get_next_child(lhea_dn, eth_dn))) {
Jan-Bernd Themanne542aa62007-03-22 17:50:24 +01003201
Stephen Rothwell40cd3a42007-05-01 13:54:02 +10003202 dn_log_port_id = of_get_property(eth_dn, "ibm,hea-port-no",
Jan-Bernd Themannd1d25aa2007-07-02 13:00:46 +02003203 NULL);
Jan-Bernd Themann1acf2312007-02-28 18:34:02 +01003204 if (!dn_log_port_id) {
3205 ehea_error("bad device node: eth_dn name=%s",
3206 eth_dn->full_name);
3207 continue;
Jan-Bernd Themann7a291082006-09-13 17:44:31 +02003208 }
3209
Thomas Klein1211bb62007-04-26 11:56:43 +02003210 if (ehea_add_adapter_mr(adapter)) {
3211 ehea_error("creating MR failed");
3212 of_node_put(eth_dn);
3213 return -EIO;
3214 }
3215
Jan-Bernd Themann1acf2312007-02-28 18:34:02 +01003216 adapter->port[i] = ehea_setup_single_port(adapter,
3217 *dn_log_port_id,
3218 eth_dn);
3219 if (adapter->port[i])
3220 ehea_info("%s -> logical port id #%d",
Jan-Bernd Themanne542aa62007-03-22 17:50:24 +01003221 adapter->port[i]->netdev->name,
Jan-Bernd Themann1acf2312007-02-28 18:34:02 +01003222 *dn_log_port_id);
Thomas Klein1211bb62007-04-26 11:56:43 +02003223 else
3224 ehea_remove_adapter_mr(adapter);
3225
Jan-Bernd Themann1acf2312007-02-28 18:34:02 +01003226 i++;
Jan-Bernd Themann1eef4e02007-03-22 17:49:42 +01003227 };
Thomas Klein1211bb62007-04-26 11:56:43 +02003228 return 0;
Jan-Bernd Themann1acf2312007-02-28 18:34:02 +01003229}
3230
Jan-Bernd Themanne542aa62007-03-22 17:50:24 +01003231static struct device_node *ehea_get_eth_dn(struct ehea_adapter *adapter,
3232 u32 logical_port_id)
Jan-Bernd Themann1acf2312007-02-28 18:34:02 +01003233{
3234 struct device_node *lhea_dn;
3235 struct device_node *eth_dn = NULL;
Stephen Rothwell9f9a3b82007-05-01 13:51:32 +10003236 const u32 *dn_log_port_id;
Jan-Bernd Themann1acf2312007-02-28 18:34:02 +01003237
Joachim Fenkes6b08f3a2007-09-26 19:45:51 +10003238 lhea_dn = adapter->ofdev->node;
Jan-Bernd Themann1eef4e02007-03-22 17:49:42 +01003239 while ((eth_dn = of_get_next_child(lhea_dn, eth_dn))) {
Jan-Bernd Themanne542aa62007-03-22 17:50:24 +01003240
Stephen Rothwell40cd3a42007-05-01 13:54:02 +10003241 dn_log_port_id = of_get_property(eth_dn, "ibm,hea-port-no",
Jan-Bernd Themannd1d25aa2007-07-02 13:00:46 +02003242 NULL);
Jan-Bernd Themann1acf2312007-02-28 18:34:02 +01003243 if (dn_log_port_id)
3244 if (*dn_log_port_id == logical_port_id)
3245 return eth_dn;
Jan-Bernd Themann1eef4e02007-03-22 17:49:42 +01003246 };
Jan-Bernd Themann1acf2312007-02-28 18:34:02 +01003247
3248 return NULL;
3249}
3250
3251static ssize_t ehea_probe_port(struct device *dev,
3252 struct device_attribute *attr,
3253 const char *buf, size_t count)
3254{
3255 struct ehea_adapter *adapter = dev->driver_data;
3256 struct ehea_port *port;
3257 struct device_node *eth_dn = NULL;
3258 int i;
3259
3260 u32 logical_port_id;
3261
Jan-Bernd Themanna8e34fd2007-08-22 16:20:58 +02003262 sscanf(buf, "%d", &logical_port_id);
Jan-Bernd Themann1acf2312007-02-28 18:34:02 +01003263
3264 port = ehea_get_port(adapter, logical_port_id);
3265
3266 if (port) {
3267 ehea_info("adding port with logical port id=%d failed. port "
3268 "already configured as %s.", logical_port_id,
3269 port->netdev->name);
3270 return -EINVAL;
3271 }
Jan-Bernd Themanne542aa62007-03-22 17:50:24 +01003272
Jan-Bernd Themann1acf2312007-02-28 18:34:02 +01003273 eth_dn = ehea_get_eth_dn(adapter, logical_port_id);
3274
3275 if (!eth_dn) {
3276 ehea_info("no logical port with id %d found", logical_port_id);
3277 return -EINVAL;
3278 }
Jan-Bernd Themanne542aa62007-03-22 17:50:24 +01003279
Thomas Klein1211bb62007-04-26 11:56:43 +02003280 if (ehea_add_adapter_mr(adapter)) {
3281 ehea_error("creating MR failed");
3282 return -EIO;
3283 }
3284
Jan-Bernd Themann1acf2312007-02-28 18:34:02 +01003285 port = ehea_setup_single_port(adapter, logical_port_id, eth_dn);
3286
Jan-Bernd Themann1eef4e02007-03-22 17:49:42 +01003287 of_node_put(eth_dn);
3288
Jan-Bernd Themann1acf2312007-02-28 18:34:02 +01003289 if (port) {
Doug Maxey508d2b52008-01-31 20:20:49 -06003290 for (i = 0; i < EHEA_MAX_PORTS; i++)
Jan-Bernd Themann1acf2312007-02-28 18:34:02 +01003291 if (!adapter->port[i]) {
3292 adapter->port[i] = port;
3293 break;
3294 }
3295
3296 ehea_info("added %s (logical port id=%d)", port->netdev->name,
3297 logical_port_id);
Thomas Klein1211bb62007-04-26 11:56:43 +02003298 } else {
3299 ehea_remove_adapter_mr(adapter);
Jan-Bernd Themanne542aa62007-03-22 17:50:24 +01003300 return -EIO;
Thomas Klein1211bb62007-04-26 11:56:43 +02003301 }
Jan-Bernd Themann1acf2312007-02-28 18:34:02 +01003302
3303 return (ssize_t) count;
3304}
3305
3306static ssize_t ehea_remove_port(struct device *dev,
3307 struct device_attribute *attr,
3308 const char *buf, size_t count)
3309{
3310 struct ehea_adapter *adapter = dev->driver_data;
3311 struct ehea_port *port;
3312 int i;
3313 u32 logical_port_id;
3314
Jan-Bernd Themanna8e34fd2007-08-22 16:20:58 +02003315 sscanf(buf, "%d", &logical_port_id);
Jan-Bernd Themann1acf2312007-02-28 18:34:02 +01003316
3317 port = ehea_get_port(adapter, logical_port_id);
3318
3319 if (port) {
3320 ehea_info("removed %s (logical port id=%d)", port->netdev->name,
3321 logical_port_id);
3322
3323 ehea_shutdown_single_port(port);
3324
Doug Maxey508d2b52008-01-31 20:20:49 -06003325 for (i = 0; i < EHEA_MAX_PORTS; i++)
Jan-Bernd Themann1acf2312007-02-28 18:34:02 +01003326 if (adapter->port[i] == port) {
3327 adapter->port[i] = NULL;
3328 break;
3329 }
3330 } else {
3331 ehea_error("removing port with logical port id=%d failed. port "
3332 "not configured.", logical_port_id);
3333 return -EINVAL;
3334 }
3335
Thomas Klein1211bb62007-04-26 11:56:43 +02003336 ehea_remove_adapter_mr(adapter);
3337
Jan-Bernd Themann1acf2312007-02-28 18:34:02 +01003338 return (ssize_t) count;
3339}
3340
3341static DEVICE_ATTR(probe_port, S_IWUSR, NULL, ehea_probe_port);
3342static DEVICE_ATTR(remove_port, S_IWUSR, NULL, ehea_remove_port);
3343
Joachim Fenkes6b08f3a2007-09-26 19:45:51 +10003344int ehea_create_device_sysfs(struct of_device *dev)
Jan-Bernd Themann1acf2312007-02-28 18:34:02 +01003345{
Joachim Fenkes6b08f3a2007-09-26 19:45:51 +10003346 int ret = device_create_file(&dev->dev, &dev_attr_probe_port);
Jan-Bernd Themann1acf2312007-02-28 18:34:02 +01003347 if (ret)
3348 goto out;
3349
Joachim Fenkes6b08f3a2007-09-26 19:45:51 +10003350 ret = device_create_file(&dev->dev, &dev_attr_remove_port);
Jan-Bernd Themann1acf2312007-02-28 18:34:02 +01003351out:
Jan-Bernd Themann7a291082006-09-13 17:44:31 +02003352 return ret;
3353}
3354
Joachim Fenkes6b08f3a2007-09-26 19:45:51 +10003355void ehea_remove_device_sysfs(struct of_device *dev)
Jan-Bernd Themann1acf2312007-02-28 18:34:02 +01003356{
Joachim Fenkes6b08f3a2007-09-26 19:45:51 +10003357 device_remove_file(&dev->dev, &dev_attr_probe_port);
3358 device_remove_file(&dev->dev, &dev_attr_remove_port);
Jan-Bernd Themann1acf2312007-02-28 18:34:02 +01003359}
3360
Joachim Fenkes6b08f3a2007-09-26 19:45:51 +10003361static int __devinit ehea_probe_adapter(struct of_device *dev,
Jan-Bernd Themann1acf2312007-02-28 18:34:02 +01003362 const struct of_device_id *id)
Jan-Bernd Themann7a291082006-09-13 17:44:31 +02003363{
3364 struct ehea_adapter *adapter;
Stephen Rothwell9f9a3b82007-05-01 13:51:32 +10003365 const u64 *adapter_handle;
Jan-Bernd Themann7a291082006-09-13 17:44:31 +02003366 int ret;
3367
Joachim Fenkes6b08f3a2007-09-26 19:45:51 +10003368 if (!dev || !dev->node) {
Jan-Bernd Themann1eef4e02007-03-22 17:49:42 +01003369 ehea_error("Invalid ibmebus device probed");
3370 return -EINVAL;
3371 }
Daniel Walker9f71a562008-03-28 14:41:26 -07003372 mutex_lock(&ehea_fw_handles.lock);
Jan-Bernd Themann1eef4e02007-03-22 17:49:42 +01003373
Jan-Bernd Themann7a291082006-09-13 17:44:31 +02003374 adapter = kzalloc(sizeof(*adapter), GFP_KERNEL);
3375 if (!adapter) {
3376 ret = -ENOMEM;
Joachim Fenkes6b08f3a2007-09-26 19:45:51 +10003377 dev_err(&dev->dev, "no mem for ehea_adapter\n");
Jan-Bernd Themann7a291082006-09-13 17:44:31 +02003378 goto out;
3379 }
3380
Thomas Klein44c82152007-07-11 16:32:00 +02003381 list_add(&adapter->list, &adapter_list);
3382
Joachim Fenkes6b08f3a2007-09-26 19:45:51 +10003383 adapter->ofdev = dev;
Jan-Bernd Themann1acf2312007-02-28 18:34:02 +01003384
Joachim Fenkes6b08f3a2007-09-26 19:45:51 +10003385 adapter_handle = of_get_property(dev->node, "ibm,hea-handle",
Jan-Bernd Themannd1d25aa2007-07-02 13:00:46 +02003386 NULL);
Thomas Klein061bf3c2007-01-22 12:52:20 +01003387 if (adapter_handle)
3388 adapter->handle = *adapter_handle;
3389
3390 if (!adapter->handle) {
Joachim Fenkes6b08f3a2007-09-26 19:45:51 +10003391 dev_err(&dev->dev, "failed getting handle for adapter"
3392 " '%s'\n", dev->node->full_name);
Jan-Bernd Themann7a291082006-09-13 17:44:31 +02003393 ret = -ENODEV;
3394 goto out_free_ad;
3395 }
3396
Jan-Bernd Themann7a291082006-09-13 17:44:31 +02003397 adapter->pd = EHEA_PD_ID;
3398
Joachim Fenkes6b08f3a2007-09-26 19:45:51 +10003399 dev->dev.driver_data = adapter;
Jan-Bernd Themann7a291082006-09-13 17:44:31 +02003400
Jan-Bernd Themann7a291082006-09-13 17:44:31 +02003401
3402 /* initialize adapter and ports */
3403 /* get adapter properties */
3404 ret = ehea_sense_adapter_attr(adapter);
3405 if (ret) {
Joe Perches898eb712007-10-18 03:06:30 -07003406 dev_err(&dev->dev, "sense_adapter_attr failed: %d\n", ret);
Thomas Klein1211bb62007-04-26 11:56:43 +02003407 goto out_free_ad;
Jan-Bernd Themann7a291082006-09-13 17:44:31 +02003408 }
Jan-Bernd Themann7a291082006-09-13 17:44:31 +02003409
3410 adapter->neq = ehea_create_eq(adapter,
3411 EHEA_NEQ, EHEA_MAX_ENTRIES_EQ, 1);
3412 if (!adapter->neq) {
Jan-Bernd Themann1eef4e02007-03-22 17:49:42 +01003413 ret = -EIO;
Joe Perches898eb712007-10-18 03:06:30 -07003414 dev_err(&dev->dev, "NEQ creation failed\n");
Thomas Klein1211bb62007-04-26 11:56:43 +02003415 goto out_free_ad;
Jan-Bernd Themann7a291082006-09-13 17:44:31 +02003416 }
3417
3418 tasklet_init(&adapter->neq_tasklet, ehea_neq_tasklet,
3419 (unsigned long)adapter);
3420
Joachim Fenkes6b08f3a2007-09-26 19:45:51 +10003421 ret = ibmebus_request_irq(adapter->neq->attr.ist1,
Thomas Gleixner38515e92007-02-14 00:33:16 -08003422 ehea_interrupt_neq, IRQF_DISABLED,
Jan-Bernd Themann7a291082006-09-13 17:44:31 +02003423 "ehea_neq", adapter);
3424 if (ret) {
Joe Perches898eb712007-10-18 03:06:30 -07003425 dev_err(&dev->dev, "requesting NEQ IRQ failed\n");
Jan-Bernd Themann7a291082006-09-13 17:44:31 +02003426 goto out_kill_eq;
3427 }
3428
Jan-Bernd Themann1eef4e02007-03-22 17:49:42 +01003429 ret = ehea_create_device_sysfs(dev);
3430 if (ret)
Jan-Bernd Themann3bf76b82007-10-08 16:01:33 +02003431 goto out_free_irq;
Jan-Bernd Themann1acf2312007-02-28 18:34:02 +01003432
Jan-Bernd Themann7a291082006-09-13 17:44:31 +02003433 ret = ehea_setup_ports(adapter);
3434 if (ret) {
Joe Perches898eb712007-10-18 03:06:30 -07003435 dev_err(&dev->dev, "setup_ports failed\n");
Jan-Bernd Themann1acf2312007-02-28 18:34:02 +01003436 goto out_rem_dev_sysfs;
Jan-Bernd Themann7a291082006-09-13 17:44:31 +02003437 }
3438
3439 ret = 0;
3440 goto out;
3441
Jan-Bernd Themann1acf2312007-02-28 18:34:02 +01003442out_rem_dev_sysfs:
3443 ehea_remove_device_sysfs(dev);
3444
Jan-Bernd Themann7a291082006-09-13 17:44:31 +02003445out_free_irq:
Joachim Fenkes6b08f3a2007-09-26 19:45:51 +10003446 ibmebus_free_irq(adapter->neq->attr.ist1, adapter);
Jan-Bernd Themann7a291082006-09-13 17:44:31 +02003447
3448out_kill_eq:
3449 ehea_destroy_eq(adapter->neq);
3450
Jan-Bernd Themann7a291082006-09-13 17:44:31 +02003451out_free_ad:
3452 kfree(adapter);
Thomas Klein21eee2d2008-02-13 16:18:33 +01003453
Jan-Bernd Themann7a291082006-09-13 17:44:31 +02003454out:
Thomas Klein21eee2d2008-02-13 16:18:33 +01003455 ehea_update_firmware_handles();
Daniel Walker9f71a562008-03-28 14:41:26 -07003456 mutex_unlock(&ehea_fw_handles.lock);
Jan-Bernd Themann7a291082006-09-13 17:44:31 +02003457 return ret;
3458}
3459
Joachim Fenkes6b08f3a2007-09-26 19:45:51 +10003460static int __devexit ehea_remove(struct of_device *dev)
Jan-Bernd Themann7a291082006-09-13 17:44:31 +02003461{
Joachim Fenkes6b08f3a2007-09-26 19:45:51 +10003462 struct ehea_adapter *adapter = dev->dev.driver_data;
Jan-Bernd Themann7a291082006-09-13 17:44:31 +02003463 int i;
3464
Jan-Bernd Themann1acf2312007-02-28 18:34:02 +01003465 for (i = 0; i < EHEA_MAX_PORTS; i++)
Jan-Bernd Themann7a291082006-09-13 17:44:31 +02003466 if (adapter->port[i]) {
3467 ehea_shutdown_single_port(adapter->port[i]);
3468 adapter->port[i] = NULL;
3469 }
Jan-Bernd Themann1acf2312007-02-28 18:34:02 +01003470
3471 ehea_remove_device_sysfs(dev);
3472
Jan-Bernd Themann3bf76b82007-10-08 16:01:33 +02003473 flush_scheduled_work();
Jan-Bernd Themann7a291082006-09-13 17:44:31 +02003474
Daniel Walker9f71a562008-03-28 14:41:26 -07003475 mutex_lock(&ehea_fw_handles.lock);
Thomas Klein21eee2d2008-02-13 16:18:33 +01003476
Joachim Fenkes6b08f3a2007-09-26 19:45:51 +10003477 ibmebus_free_irq(adapter->neq->attr.ist1, adapter);
Thomas Kleind4150a22007-01-29 18:44:41 +01003478 tasklet_kill(&adapter->neq_tasklet);
Jan-Bernd Themann7a291082006-09-13 17:44:31 +02003479
3480 ehea_destroy_eq(adapter->neq);
Thomas Klein1211bb62007-04-26 11:56:43 +02003481 ehea_remove_adapter_mr(adapter);
Thomas Klein44c82152007-07-11 16:32:00 +02003482 list_del(&adapter->list);
Jan-Bernd Themann7a291082006-09-13 17:44:31 +02003483 kfree(adapter);
Thomas Klein44c82152007-07-11 16:32:00 +02003484
Thomas Klein21eee2d2008-02-13 16:18:33 +01003485 ehea_update_firmware_handles();
Daniel Walker9f71a562008-03-28 14:41:26 -07003486 mutex_unlock(&ehea_fw_handles.lock);
Thomas Klein21eee2d2008-02-13 16:18:33 +01003487
Jan-Bernd Themann7a291082006-09-13 17:44:31 +02003488 return 0;
3489}
3490
Thomas Klein21eee2d2008-02-13 16:18:33 +01003491void ehea_crash_handler(void)
3492{
3493 int i;
3494
3495 if (ehea_fw_handles.arr)
3496 for (i = 0; i < ehea_fw_handles.num_entries; i++)
3497 ehea_h_free_resource(ehea_fw_handles.arr[i].adh,
3498 ehea_fw_handles.arr[i].fwh,
3499 FORCE_FREE);
3500
3501 if (ehea_bcmc_regs.arr)
3502 for (i = 0; i < ehea_bcmc_regs.num_entries; i++)
3503 ehea_h_reg_dereg_bcmc(ehea_bcmc_regs.arr[i].adh,
3504 ehea_bcmc_regs.arr[i].port_id,
3505 ehea_bcmc_regs.arr[i].reg_type,
3506 ehea_bcmc_regs.arr[i].macaddr,
3507 0, H_DEREG_BCMC);
3508}
3509
Hannes Hering48cfb142008-05-07 14:43:36 +02003510static int ehea_mem_notifier(struct notifier_block *nb,
3511 unsigned long action, void *data)
3512{
3513 switch (action) {
3514 case MEM_OFFLINE:
3515 ehea_info("memory has been removed");
3516 ehea_rereg_mrs(NULL);
3517 break;
3518 default:
3519 break;
3520 }
3521 return NOTIFY_OK;
3522}
3523
3524static struct notifier_block ehea_mem_nb = {
3525 .notifier_call = ehea_mem_notifier,
3526};
3527
Jan-Bernd Themann2a6f4e42007-10-26 14:37:28 +02003528static int ehea_reboot_notifier(struct notifier_block *nb,
3529 unsigned long action, void *unused)
3530{
3531 if (action == SYS_RESTART) {
3532 ehea_info("Reboot: freeing all eHEA resources");
3533 ibmebus_unregister_driver(&ehea_driver);
3534 }
3535 return NOTIFY_DONE;
3536}
3537
3538static struct notifier_block ehea_reboot_nb = {
Doug Maxey508d2b52008-01-31 20:20:49 -06003539 .notifier_call = ehea_reboot_notifier,
Jan-Bernd Themann2a6f4e42007-10-26 14:37:28 +02003540};
3541
Jan-Bernd Themann7a291082006-09-13 17:44:31 +02003542static int check_module_parm(void)
3543{
3544 int ret = 0;
3545
3546 if ((rq1_entries < EHEA_MIN_ENTRIES_QP) ||
3547 (rq1_entries > EHEA_MAX_ENTRIES_RQ1)) {
3548 ehea_info("Bad parameter: rq1_entries");
3549 ret = -EINVAL;
3550 }
3551 if ((rq2_entries < EHEA_MIN_ENTRIES_QP) ||
3552 (rq2_entries > EHEA_MAX_ENTRIES_RQ2)) {
3553 ehea_info("Bad parameter: rq2_entries");
3554 ret = -EINVAL;
3555 }
3556 if ((rq3_entries < EHEA_MIN_ENTRIES_QP) ||
3557 (rq3_entries > EHEA_MAX_ENTRIES_RQ3)) {
3558 ehea_info("Bad parameter: rq3_entries");
3559 ret = -EINVAL;
3560 }
3561 if ((sq_entries < EHEA_MIN_ENTRIES_QP) ||
3562 (sq_entries > EHEA_MAX_ENTRIES_SQ)) {
3563 ehea_info("Bad parameter: sq_entries");
3564 ret = -EINVAL;
3565 }
3566
3567 return ret;
3568}
3569
Jan-Bernd Themann4c3ca4d2007-07-05 09:26:25 +02003570static ssize_t ehea_show_capabilities(struct device_driver *drv,
3571 char *buf)
3572{
3573 return sprintf(buf, "%d", EHEA_CAPABILITIES);
3574}
3575
3576static DRIVER_ATTR(capabilities, S_IRUSR | S_IRGRP | S_IROTH,
3577 ehea_show_capabilities, NULL);
3578
Jan-Bernd Themann7a291082006-09-13 17:44:31 +02003579int __init ehea_module_init(void)
3580{
3581 int ret;
3582
3583 printk(KERN_INFO "IBM eHEA ethernet device driver (Release %s)\n",
3584 DRV_VERSION);
3585
Thomas Klein44c82152007-07-11 16:32:00 +02003586
3587 INIT_WORK(&ehea_rereg_mr_task, ehea_rereg_mrs);
Thomas Klein21eee2d2008-02-13 16:18:33 +01003588 memset(&ehea_fw_handles, 0, sizeof(ehea_fw_handles));
3589 memset(&ehea_bcmc_regs, 0, sizeof(ehea_bcmc_regs));
3590
Daniel Walker9f71a562008-03-28 14:41:26 -07003591 mutex_init(&ehea_fw_handles.lock);
Daniel Walkerda59cde2008-03-28 14:41:28 -07003592 mutex_init(&ehea_bcmc_regs.lock);
Thomas Klein44c82152007-07-11 16:32:00 +02003593
Jan-Bernd Themann7a291082006-09-13 17:44:31 +02003594 ret = check_module_parm();
3595 if (ret)
3596 goto out;
Thomas Klein44c82152007-07-11 16:32:00 +02003597
3598 ret = ehea_create_busmap();
3599 if (ret)
3600 goto out;
3601
Thomas Klein21eee2d2008-02-13 16:18:33 +01003602 ret = register_reboot_notifier(&ehea_reboot_nb);
3603 if (ret)
3604 ehea_info("failed registering reboot notifier");
3605
Hannes Hering48cfb142008-05-07 14:43:36 +02003606 ret = register_memory_notifier(&ehea_mem_nb);
3607 if (ret)
3608 ehea_info("failed registering memory remove notifier");
3609
Thomas Klein21eee2d2008-02-13 16:18:33 +01003610 ret = crash_shutdown_register(&ehea_crash_handler);
3611 if (ret)
3612 ehea_info("failed registering crash handler");
Jan-Bernd Themann2a6f4e42007-10-26 14:37:28 +02003613
Jan-Bernd Themann7a291082006-09-13 17:44:31 +02003614 ret = ibmebus_register_driver(&ehea_driver);
Jan-Bernd Themann4c3ca4d2007-07-05 09:26:25 +02003615 if (ret) {
Jan-Bernd Themann7a291082006-09-13 17:44:31 +02003616 ehea_error("failed registering eHEA device driver on ebus");
Thomas Klein21eee2d2008-02-13 16:18:33 +01003617 goto out2;
Jan-Bernd Themann4c3ca4d2007-07-05 09:26:25 +02003618 }
3619
3620 ret = driver_create_file(&ehea_driver.driver,
3621 &driver_attr_capabilities);
3622 if (ret) {
3623 ehea_error("failed to register capabilities attribute, ret=%d",
3624 ret);
Thomas Klein21eee2d2008-02-13 16:18:33 +01003625 goto out3;
Jan-Bernd Themann4c3ca4d2007-07-05 09:26:25 +02003626 }
Jan-Bernd Themann7a291082006-09-13 17:44:31 +02003627
Thomas Klein21eee2d2008-02-13 16:18:33 +01003628 return ret;
3629
3630out3:
3631 ibmebus_unregister_driver(&ehea_driver);
3632out2:
Hannes Hering48cfb142008-05-07 14:43:36 +02003633 unregister_memory_notifier(&ehea_mem_nb);
Thomas Klein21eee2d2008-02-13 16:18:33 +01003634 unregister_reboot_notifier(&ehea_reboot_nb);
3635 crash_shutdown_unregister(&ehea_crash_handler);
Jan-Bernd Themann7a291082006-09-13 17:44:31 +02003636out:
3637 return ret;
3638}
3639
3640static void __exit ehea_module_exit(void)
3641{
Thomas Klein21eee2d2008-02-13 16:18:33 +01003642 int ret;
3643
Jan-Bernd Themann3bf76b82007-10-08 16:01:33 +02003644 flush_scheduled_work();
Jan-Bernd Themann4c3ca4d2007-07-05 09:26:25 +02003645 driver_remove_file(&ehea_driver.driver, &driver_attr_capabilities);
Jan-Bernd Themann7a291082006-09-13 17:44:31 +02003646 ibmebus_unregister_driver(&ehea_driver);
Jan-Bernd Themann2a6f4e42007-10-26 14:37:28 +02003647 unregister_reboot_notifier(&ehea_reboot_nb);
Thomas Klein21eee2d2008-02-13 16:18:33 +01003648 ret = crash_shutdown_unregister(&ehea_crash_handler);
3649 if (ret)
3650 ehea_info("failed unregistering crash handler");
Hannes Hering48cfb142008-05-07 14:43:36 +02003651 unregister_memory_notifier(&ehea_mem_nb);
Thomas Klein21eee2d2008-02-13 16:18:33 +01003652 kfree(ehea_fw_handles.arr);
3653 kfree(ehea_bcmc_regs.arr);
Thomas Klein44c82152007-07-11 16:32:00 +02003654 ehea_destroy_busmap();
Jan-Bernd Themann7a291082006-09-13 17:44:31 +02003655}
3656
3657module_init(ehea_module_init);
3658module_exit(ehea_module_exit);