]> www.pilppa.org Git - linux-2.6-omap-h63xx.git/blob - drivers/infiniband/hw/ehca/ehca_main.c
IB/ehca: HW level, HW caps and MTU autodetection
[linux-2.6-omap-h63xx.git] / drivers / infiniband / hw / ehca / ehca_main.c
1 /*
2  *  IBM eServer eHCA Infiniband device driver for Linux on POWER
3  *
4  *  module start stop, hca detection
5  *
6  *  Authors: Heiko J Schick <schickhj@de.ibm.com>
7  *           Hoang-Nam Nguyen <hnguyen@de.ibm.com>
8  *           Joachim Fenkes <fenkes@de.ibm.com>
9  *
10  *  Copyright (c) 2005 IBM Corporation
11  *
12  *  All rights reserved.
13  *
14  *  This source code is distributed under a dual license of GPL v2.0 and OpenIB
15  *  BSD.
16  *
17  * OpenIB BSD License
18  *
19  * Redistribution and use in source and binary forms, with or without
20  * modification, are permitted provided that the following conditions are met:
21  *
22  * Redistributions of source code must retain the above copyright notice, this
23  * list of conditions and the following disclaimer.
24  *
25  * Redistributions in binary form must reproduce the above copyright notice,
26  * this list of conditions and the following disclaimer in the documentation
27  * and/or other materials
28  * provided with the distribution.
29  *
30  * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
31  * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
32  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
33  * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE
34  * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
35  * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
36  * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR
37  * BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER
38  * IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
39  * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
40  * POSSIBILITY OF SUCH DAMAGE.
41  */
42
43 #ifdef CONFIG_PPC_64K_PAGES
44 #include <linux/slab.h>
45 #endif
46 #include "ehca_classes.h"
47 #include "ehca_iverbs.h"
48 #include "ehca_mrmw.h"
49 #include "ehca_tools.h"
50 #include "hcp_if.h"
51
52 MODULE_LICENSE("Dual BSD/GPL");
53 MODULE_AUTHOR("Christoph Raisch <raisch@de.ibm.com>");
54 MODULE_DESCRIPTION("IBM eServer HCA InfiniBand Device Driver");
55 MODULE_VERSION("SVNEHCA_0023");
56
57 int ehca_open_aqp1     = 0;
58 int ehca_debug_level   = 0;
59 int ehca_hw_level      = 0;
60 int ehca_nr_ports      = 2;
61 int ehca_use_hp_mr     = 0;
62 int ehca_port_act_time = 30;
63 int ehca_poll_all_eqs  = 1;
64 int ehca_static_rate   = -1;
65 int ehca_scaling_code  = 0;
66
67 module_param_named(open_aqp1,     ehca_open_aqp1,     int, 0);
68 module_param_named(debug_level,   ehca_debug_level,   int, 0);
69 module_param_named(hw_level,      ehca_hw_level,      int, 0);
70 module_param_named(nr_ports,      ehca_nr_ports,      int, 0);
71 module_param_named(use_hp_mr,     ehca_use_hp_mr,     int, 0);
72 module_param_named(port_act_time, ehca_port_act_time, int, 0);
73 module_param_named(poll_all_eqs,  ehca_poll_all_eqs,  int, 0);
74 module_param_named(static_rate,   ehca_static_rate,   int, 0);
75 module_param_named(scaling_code,   ehca_scaling_code,   int, 0);
76
77 MODULE_PARM_DESC(open_aqp1,
78                  "AQP1 on startup (0: no (default), 1: yes)");
79 MODULE_PARM_DESC(debug_level,
80                  "debug level"
81                  " (0: no debug traces (default), 1: with debug traces)");
82 MODULE_PARM_DESC(hw_level,
83                  "hardware level"
84                  " (0: autosensing (default), 1: v. 0.20, 2: v. 0.21)");
85 MODULE_PARM_DESC(nr_ports,
86                  "number of connected ports (default: 2)");
87 MODULE_PARM_DESC(use_hp_mr,
88                  "high performance MRs (0: no (default), 1: yes)");
89 MODULE_PARM_DESC(port_act_time,
90                  "time to wait for port activation (default: 30 sec)");
91 MODULE_PARM_DESC(poll_all_eqs,
92                  "polls all event queues periodically"
93                  " (0: no, 1: yes (default))");
94 MODULE_PARM_DESC(static_rate,
95                  "set permanent static rate (default: disabled)");
96 MODULE_PARM_DESC(scaling_code,
97                  "set scaling code (0: disabled/default, 1: enabled)");
98
99 spinlock_t ehca_qp_idr_lock;
100 spinlock_t ehca_cq_idr_lock;
101 spinlock_t hcall_lock;
102 DEFINE_IDR(ehca_qp_idr);
103 DEFINE_IDR(ehca_cq_idr);
104
105
106 static struct list_head shca_list; /* list of all registered ehcas */
107 static spinlock_t shca_list_lock;
108
109 static struct timer_list poll_eqs_timer;
110
111 #ifdef CONFIG_PPC_64K_PAGES
112 static struct kmem_cache *ctblk_cache = NULL;
113
114 void *ehca_alloc_fw_ctrlblock(gfp_t flags)
115 {
116         void *ret = kmem_cache_zalloc(ctblk_cache, flags);
117         if (!ret)
118                 ehca_gen_err("Out of memory for ctblk");
119         return ret;
120 }
121
122 void ehca_free_fw_ctrlblock(void *ptr)
123 {
124         if (ptr)
125                 kmem_cache_free(ctblk_cache, ptr);
126
127 }
128 #endif
129
130 static int ehca_create_slab_caches(void)
131 {
132         int ret;
133
134         ret = ehca_init_pd_cache();
135         if (ret) {
136                 ehca_gen_err("Cannot create PD SLAB cache.");
137                 return ret;
138         }
139
140         ret = ehca_init_cq_cache();
141         if (ret) {
142                 ehca_gen_err("Cannot create CQ SLAB cache.");
143                 goto create_slab_caches2;
144         }
145
146         ret = ehca_init_qp_cache();
147         if (ret) {
148                 ehca_gen_err("Cannot create QP SLAB cache.");
149                 goto create_slab_caches3;
150         }
151
152         ret = ehca_init_av_cache();
153         if (ret) {
154                 ehca_gen_err("Cannot create AV SLAB cache.");
155                 goto create_slab_caches4;
156         }
157
158         ret = ehca_init_mrmw_cache();
159         if (ret) {
160                 ehca_gen_err("Cannot create MR&MW SLAB cache.");
161                 goto create_slab_caches5;
162         }
163
164 #ifdef CONFIG_PPC_64K_PAGES
165         ctblk_cache = kmem_cache_create("ehca_cache_ctblk",
166                                         EHCA_PAGESIZE, H_CB_ALIGNMENT,
167                                         SLAB_HWCACHE_ALIGN,
168                                         NULL, NULL);
169         if (!ctblk_cache) {
170                 ehca_gen_err("Cannot create ctblk SLAB cache.");
171                 ehca_cleanup_mrmw_cache();
172                 goto create_slab_caches5;
173         }
174 #endif
175         return 0;
176
177 create_slab_caches5:
178         ehca_cleanup_av_cache();
179
180 create_slab_caches4:
181         ehca_cleanup_qp_cache();
182
183 create_slab_caches3:
184         ehca_cleanup_cq_cache();
185
186 create_slab_caches2:
187         ehca_cleanup_pd_cache();
188
189         return ret;
190 }
191
192 static void ehca_destroy_slab_caches(void)
193 {
194         ehca_cleanup_mrmw_cache();
195         ehca_cleanup_av_cache();
196         ehca_cleanup_qp_cache();
197         ehca_cleanup_cq_cache();
198         ehca_cleanup_pd_cache();
199 #ifdef CONFIG_PPC_64K_PAGES
200         if (ctblk_cache)
201                 kmem_cache_destroy(ctblk_cache);
202 #endif
203 }
204
205 #define EHCA_HCAAVER  EHCA_BMASK_IBM(32,39)
206 #define EHCA_REVID    EHCA_BMASK_IBM(40,63)
207
208 static struct cap_descr {
209         u64 mask;
210         char *descr;
211 } hca_cap_descr[] = {
212         { HCA_CAP_AH_PORT_NR_CHECK, "HCA_CAP_AH_PORT_NR_CHECK" },
213         { HCA_CAP_ATOMIC, "HCA_CAP_ATOMIC" },
214         { HCA_CAP_AUTO_PATH_MIG, "HCA_CAP_AUTO_PATH_MIG" },
215         { HCA_CAP_BAD_P_KEY_CTR, "HCA_CAP_BAD_P_KEY_CTR" },
216         { HCA_CAP_SQD_RTS_PORT_CHANGE, "HCA_CAP_SQD_RTS_PORT_CHANGE" },
217         { HCA_CAP_CUR_QP_STATE_MOD, "HCA_CAP_CUR_QP_STATE_MOD" },
218         { HCA_CAP_INIT_TYPE, "HCA_CAP_INIT_TYPE" },
219         { HCA_CAP_PORT_ACTIVE_EVENT, "HCA_CAP_PORT_ACTIVE_EVENT" },
220         { HCA_CAP_Q_KEY_VIOL_CTR, "HCA_CAP_Q_KEY_VIOL_CTR" },
221         { HCA_CAP_WQE_RESIZE, "HCA_CAP_WQE_RESIZE" },
222         { HCA_CAP_RAW_PACKET_MCAST, "HCA_CAP_RAW_PACKET_MCAST" },
223         { HCA_CAP_SHUTDOWN_PORT, "HCA_CAP_SHUTDOWN_PORT" },
224         { HCA_CAP_RC_LL_QP, "HCA_CAP_RC_LL_QP" },
225         { HCA_CAP_SRQ, "HCA_CAP_SRQ" },
226         { HCA_CAP_UD_LL_QP, "HCA_CAP_UD_LL_QP" },
227         { HCA_CAP_RESIZE_MR, "HCA_CAP_RESIZE_MR" },
228         { HCA_CAP_MINI_QP, "HCA_CAP_MINI_QP" },
229 };
230
231 int ehca_sense_attributes(struct ehca_shca *shca)
232 {
233         int i, ret = 0;
234         u64 h_ret;
235         struct hipz_query_hca *rblock;
236         struct hipz_query_port *port;
237
238         rblock = ehca_alloc_fw_ctrlblock(GFP_KERNEL);
239         if (!rblock) {
240                 ehca_gen_err("Cannot allocate rblock memory.");
241                 return -ENOMEM;
242         }
243
244         h_ret = hipz_h_query_hca(shca->ipz_hca_handle, rblock);
245         if (h_ret != H_SUCCESS) {
246                 ehca_gen_err("Cannot query device properties. h_ret=%lx",
247                              h_ret);
248                 ret = -EPERM;
249                 goto sense_attributes1;
250         }
251
252         if (ehca_nr_ports == 1)
253                 shca->num_ports = 1;
254         else
255                 shca->num_ports = (u8)rblock->num_ports;
256
257         ehca_gen_dbg(" ... found %x ports", rblock->num_ports);
258
259         if (ehca_hw_level == 0) {
260                 u32 hcaaver;
261                 u32 revid;
262
263                 hcaaver = EHCA_BMASK_GET(EHCA_HCAAVER, rblock->hw_ver);
264                 revid   = EHCA_BMASK_GET(EHCA_REVID, rblock->hw_ver);
265
266                 ehca_gen_dbg(" ... hardware version=%x:%x", hcaaver, revid);
267
268                 if ((hcaaver == 1) && (revid == 0))
269                         shca->hw_level = 0x11;
270                 else if ((hcaaver == 1) && (revid == 1))
271                         shca->hw_level = 0x12;
272                 else if ((hcaaver == 1) && (revid == 2))
273                         shca->hw_level = 0x13;
274                 else if ((hcaaver == 2) && (revid == 0))
275                         shca->hw_level = 0x21;
276                 else if ((hcaaver == 2) && (revid == 0x10))
277                         shca->hw_level = 0x22;
278                 else {
279                         ehca_gen_warn("unknown hardware version"
280                                       " - assuming default level");
281                         shca->hw_level = 0x22;
282                 }
283         }
284         ehca_gen_dbg(" ... hardware level=%x", shca->hw_level);
285
286         shca->sport[0].rate = IB_RATE_30_GBPS;
287         shca->sport[1].rate = IB_RATE_30_GBPS;
288
289         shca->hca_cap = rblock->hca_cap_indicators;
290         ehca_gen_dbg(" ... HCA capabilities:");
291         for (i = 0; i < ARRAY_SIZE(hca_cap_descr); i++)
292                 if (EHCA_BMASK_GET(hca_cap_descr[i].mask, shca->hca_cap))
293                         ehca_gen_dbg("   %s", hca_cap_descr[i].descr);
294
295         port = (struct hipz_query_port *) rblock;
296         h_ret = hipz_h_query_port(shca->ipz_hca_handle, 1, port);
297         if (h_ret != H_SUCCESS) {
298                 ehca_gen_err("Cannot query port properties. h_ret=%lx",
299                              h_ret);
300                 ret = -EPERM;
301                 goto sense_attributes1;
302         }
303
304         shca->max_mtu = port->max_mtu;
305
306 sense_attributes1:
307         ehca_free_fw_ctrlblock(rblock);
308         return ret;
309 }
310
311 static int init_node_guid(struct ehca_shca *shca)
312 {
313         int ret = 0;
314         struct hipz_query_hca *rblock;
315
316         rblock = ehca_alloc_fw_ctrlblock(GFP_KERNEL);
317         if (!rblock) {
318                 ehca_err(&shca->ib_device, "Can't allocate rblock memory.");
319                 return -ENOMEM;
320         }
321
322         if (hipz_h_query_hca(shca->ipz_hca_handle, rblock) != H_SUCCESS) {
323                 ehca_err(&shca->ib_device, "Can't query device properties");
324                 ret = -EINVAL;
325                 goto init_node_guid1;
326         }
327
328         memcpy(&shca->ib_device.node_guid, &rblock->node_guid, sizeof(u64));
329
330 init_node_guid1:
331         ehca_free_fw_ctrlblock(rblock);
332         return ret;
333 }
334
335 int ehca_init_device(struct ehca_shca *shca)
336 {
337         int ret;
338
339         ret = init_node_guid(shca);
340         if (ret)
341                 return ret;
342
343         strlcpy(shca->ib_device.name, "ehca%d", IB_DEVICE_NAME_MAX);
344         shca->ib_device.owner               = THIS_MODULE;
345
346         shca->ib_device.uverbs_abi_ver      = 6;
347         shca->ib_device.uverbs_cmd_mask     =
348                 (1ull << IB_USER_VERBS_CMD_GET_CONTEXT)         |
349                 (1ull << IB_USER_VERBS_CMD_QUERY_DEVICE)        |
350                 (1ull << IB_USER_VERBS_CMD_QUERY_PORT)          |
351                 (1ull << IB_USER_VERBS_CMD_ALLOC_PD)            |
352                 (1ull << IB_USER_VERBS_CMD_DEALLOC_PD)          |
353                 (1ull << IB_USER_VERBS_CMD_REG_MR)              |
354                 (1ull << IB_USER_VERBS_CMD_DEREG_MR)            |
355                 (1ull << IB_USER_VERBS_CMD_CREATE_COMP_CHANNEL) |
356                 (1ull << IB_USER_VERBS_CMD_CREATE_CQ)           |
357                 (1ull << IB_USER_VERBS_CMD_DESTROY_CQ)          |
358                 (1ull << IB_USER_VERBS_CMD_CREATE_QP)           |
359                 (1ull << IB_USER_VERBS_CMD_MODIFY_QP)           |
360                 (1ull << IB_USER_VERBS_CMD_QUERY_QP)            |
361                 (1ull << IB_USER_VERBS_CMD_DESTROY_QP)          |
362                 (1ull << IB_USER_VERBS_CMD_ATTACH_MCAST)        |
363                 (1ull << IB_USER_VERBS_CMD_DETACH_MCAST);
364
365         shca->ib_device.node_type           = RDMA_NODE_IB_CA;
366         shca->ib_device.phys_port_cnt       = shca->num_ports;
367         shca->ib_device.num_comp_vectors    = 1;
368         shca->ib_device.dma_device          = &shca->ibmebus_dev->ofdev.dev;
369         shca->ib_device.query_device        = ehca_query_device;
370         shca->ib_device.query_port          = ehca_query_port;
371         shca->ib_device.query_gid           = ehca_query_gid;
372         shca->ib_device.query_pkey          = ehca_query_pkey;
373         /* shca->in_device.modify_device    = ehca_modify_device    */
374         shca->ib_device.modify_port         = ehca_modify_port;
375         shca->ib_device.alloc_ucontext      = ehca_alloc_ucontext;
376         shca->ib_device.dealloc_ucontext    = ehca_dealloc_ucontext;
377         shca->ib_device.alloc_pd            = ehca_alloc_pd;
378         shca->ib_device.dealloc_pd          = ehca_dealloc_pd;
379         shca->ib_device.create_ah           = ehca_create_ah;
380         /* shca->ib_device.modify_ah        = ehca_modify_ah;       */
381         shca->ib_device.query_ah            = ehca_query_ah;
382         shca->ib_device.destroy_ah          = ehca_destroy_ah;
383         shca->ib_device.create_qp           = ehca_create_qp;
384         shca->ib_device.modify_qp           = ehca_modify_qp;
385         shca->ib_device.query_qp            = ehca_query_qp;
386         shca->ib_device.destroy_qp          = ehca_destroy_qp;
387         shca->ib_device.post_send           = ehca_post_send;
388         shca->ib_device.post_recv           = ehca_post_recv;
389         shca->ib_device.create_cq           = ehca_create_cq;
390         shca->ib_device.destroy_cq          = ehca_destroy_cq;
391         shca->ib_device.resize_cq           = ehca_resize_cq;
392         shca->ib_device.poll_cq             = ehca_poll_cq;
393         /* shca->ib_device.peek_cq          = ehca_peek_cq;         */
394         shca->ib_device.req_notify_cq       = ehca_req_notify_cq;
395         /* shca->ib_device.req_ncomp_notif  = ehca_req_ncomp_notif; */
396         shca->ib_device.get_dma_mr          = ehca_get_dma_mr;
397         shca->ib_device.reg_phys_mr         = ehca_reg_phys_mr;
398         shca->ib_device.reg_user_mr         = ehca_reg_user_mr;
399         shca->ib_device.query_mr            = ehca_query_mr;
400         shca->ib_device.dereg_mr            = ehca_dereg_mr;
401         shca->ib_device.rereg_phys_mr       = ehca_rereg_phys_mr;
402         shca->ib_device.alloc_mw            = ehca_alloc_mw;
403         shca->ib_device.bind_mw             = ehca_bind_mw;
404         shca->ib_device.dealloc_mw          = ehca_dealloc_mw;
405         shca->ib_device.alloc_fmr           = ehca_alloc_fmr;
406         shca->ib_device.map_phys_fmr        = ehca_map_phys_fmr;
407         shca->ib_device.unmap_fmr           = ehca_unmap_fmr;
408         shca->ib_device.dealloc_fmr         = ehca_dealloc_fmr;
409         shca->ib_device.attach_mcast        = ehca_attach_mcast;
410         shca->ib_device.detach_mcast        = ehca_detach_mcast;
411         /* shca->ib_device.process_mad      = ehca_process_mad;     */
412         shca->ib_device.mmap                = ehca_mmap;
413
414         return ret;
415 }
416
417 static int ehca_create_aqp1(struct ehca_shca *shca, u32 port)
418 {
419         struct ehca_sport *sport = &shca->sport[port - 1];
420         struct ib_cq *ibcq;
421         struct ib_qp *ibqp;
422         struct ib_qp_init_attr qp_init_attr;
423         int ret;
424
425         if (sport->ibcq_aqp1) {
426                 ehca_err(&shca->ib_device, "AQP1 CQ is already created.");
427                 return -EPERM;
428         }
429
430         ibcq = ib_create_cq(&shca->ib_device, NULL, NULL, (void*)(-1), 10, 0);
431         if (IS_ERR(ibcq)) {
432                 ehca_err(&shca->ib_device, "Cannot create AQP1 CQ.");
433                 return PTR_ERR(ibcq);
434         }
435         sport->ibcq_aqp1 = ibcq;
436
437         if (sport->ibqp_aqp1) {
438                 ehca_err(&shca->ib_device, "AQP1 QP is already created.");
439                 ret = -EPERM;
440                 goto create_aqp1;
441         }
442
443         memset(&qp_init_attr, 0, sizeof(struct ib_qp_init_attr));
444         qp_init_attr.send_cq          = ibcq;
445         qp_init_attr.recv_cq          = ibcq;
446         qp_init_attr.sq_sig_type      = IB_SIGNAL_ALL_WR;
447         qp_init_attr.cap.max_send_wr  = 100;
448         qp_init_attr.cap.max_recv_wr  = 100;
449         qp_init_attr.cap.max_send_sge = 2;
450         qp_init_attr.cap.max_recv_sge = 1;
451         qp_init_attr.qp_type          = IB_QPT_GSI;
452         qp_init_attr.port_num         = port;
453         qp_init_attr.qp_context       = NULL;
454         qp_init_attr.event_handler    = NULL;
455         qp_init_attr.srq              = NULL;
456
457         ibqp = ib_create_qp(&shca->pd->ib_pd, &qp_init_attr);
458         if (IS_ERR(ibqp)) {
459                 ehca_err(&shca->ib_device, "Cannot create AQP1 QP.");
460                 ret = PTR_ERR(ibqp);
461                 goto create_aqp1;
462         }
463         sport->ibqp_aqp1 = ibqp;
464
465         return 0;
466
467 create_aqp1:
468         ib_destroy_cq(sport->ibcq_aqp1);
469         return ret;
470 }
471
472 static int ehca_destroy_aqp1(struct ehca_sport *sport)
473 {
474         int ret;
475
476         ret = ib_destroy_qp(sport->ibqp_aqp1);
477         if (ret) {
478                 ehca_gen_err("Cannot destroy AQP1 QP. ret=%x", ret);
479                 return ret;
480         }
481
482         ret = ib_destroy_cq(sport->ibcq_aqp1);
483         if (ret)
484                 ehca_gen_err("Cannot destroy AQP1 CQ. ret=%x", ret);
485
486         return ret;
487 }
488
489 static ssize_t ehca_show_debug_level(struct device_driver *ddp, char *buf)
490 {
491         return snprintf(buf, PAGE_SIZE, "%d\n",
492                         ehca_debug_level);
493 }
494
495 static ssize_t ehca_store_debug_level(struct device_driver *ddp,
496                                       const char *buf, size_t count)
497 {
498         int value = (*buf) - '0';
499         if (value >= 0 && value <= 9)
500                 ehca_debug_level = value;
501         return 1;
502 }
503
504 DRIVER_ATTR(debug_level, S_IRUSR | S_IWUSR,
505             ehca_show_debug_level, ehca_store_debug_level);
506
507 static struct attribute *ehca_drv_attrs[] = {
508         &driver_attr_debug_level.attr,
509         NULL
510 };
511
512 static struct attribute_group ehca_drv_attr_grp = {
513         .attrs = ehca_drv_attrs
514 };
515
516 #define EHCA_RESOURCE_ATTR(name)                                           \
517 static ssize_t  ehca_show_##name(struct device *dev,                       \
518                                  struct device_attribute *attr,            \
519                                  char *buf)                                \
520 {                                                                          \
521         struct ehca_shca *shca;                                            \
522         struct hipz_query_hca *rblock;                                     \
523         int data;                                                          \
524                                                                            \
525         shca = dev->driver_data;                                           \
526                                                                            \
527         rblock = ehca_alloc_fw_ctrlblock(GFP_KERNEL);                      \
528         if (!rblock) {                                                     \
529                 dev_err(dev, "Can't allocate rblock memory.");             \
530                 return 0;                                                  \
531         }                                                                  \
532                                                                            \
533         if (hipz_h_query_hca(shca->ipz_hca_handle, rblock) != H_SUCCESS) { \
534                 dev_err(dev, "Can't query device properties");             \
535                 ehca_free_fw_ctrlblock(rblock);                            \
536                 return 0;                                                  \
537         }                                                                  \
538                                                                            \
539         data = rblock->name;                                               \
540         ehca_free_fw_ctrlblock(rblock);                                    \
541                                                                            \
542         if ((strcmp(#name, "num_ports") == 0) && (ehca_nr_ports == 1))     \
543                 return snprintf(buf, 256, "1\n");                          \
544         else                                                               \
545                 return snprintf(buf, 256, "%d\n", data);                   \
546                                                                            \
547 }                                                                          \
548 static DEVICE_ATTR(name, S_IRUGO, ehca_show_##name, NULL);
549
550 EHCA_RESOURCE_ATTR(num_ports);
551 EHCA_RESOURCE_ATTR(hw_ver);
552 EHCA_RESOURCE_ATTR(max_eq);
553 EHCA_RESOURCE_ATTR(cur_eq);
554 EHCA_RESOURCE_ATTR(max_cq);
555 EHCA_RESOURCE_ATTR(cur_cq);
556 EHCA_RESOURCE_ATTR(max_qp);
557 EHCA_RESOURCE_ATTR(cur_qp);
558 EHCA_RESOURCE_ATTR(max_mr);
559 EHCA_RESOURCE_ATTR(cur_mr);
560 EHCA_RESOURCE_ATTR(max_mw);
561 EHCA_RESOURCE_ATTR(cur_mw);
562 EHCA_RESOURCE_ATTR(max_pd);
563 EHCA_RESOURCE_ATTR(max_ah);
564
565 static ssize_t ehca_show_adapter_handle(struct device *dev,
566                                         struct device_attribute *attr,
567                                         char *buf)
568 {
569         struct ehca_shca *shca = dev->driver_data;
570
571         return sprintf(buf, "%lx\n", shca->ipz_hca_handle.handle);
572
573 }
574 static DEVICE_ATTR(adapter_handle, S_IRUGO, ehca_show_adapter_handle, NULL);
575
576 static struct attribute *ehca_dev_attrs[] = {
577         &dev_attr_adapter_handle.attr,
578         &dev_attr_num_ports.attr,
579         &dev_attr_hw_ver.attr,
580         &dev_attr_max_eq.attr,
581         &dev_attr_cur_eq.attr,
582         &dev_attr_max_cq.attr,
583         &dev_attr_cur_cq.attr,
584         &dev_attr_max_qp.attr,
585         &dev_attr_cur_qp.attr,
586         &dev_attr_max_mr.attr,
587         &dev_attr_cur_mr.attr,
588         &dev_attr_max_mw.attr,
589         &dev_attr_cur_mw.attr,
590         &dev_attr_max_pd.attr,
591         &dev_attr_max_ah.attr,
592         NULL
593 };
594
595 static struct attribute_group ehca_dev_attr_grp = {
596         .attrs = ehca_dev_attrs
597 };
598
599 static int __devinit ehca_probe(struct ibmebus_dev *dev,
600                                 const struct of_device_id *id)
601 {
602         struct ehca_shca *shca;
603         const u64 *handle;
604         struct ib_pd *ibpd;
605         int ret;
606
607         handle = of_get_property(dev->ofdev.node, "ibm,hca-handle", NULL);
608         if (!handle) {
609                 ehca_gen_err("Cannot get eHCA handle for adapter: %s.",
610                              dev->ofdev.node->full_name);
611                 return -ENODEV;
612         }
613
614         if (!(*handle)) {
615                 ehca_gen_err("Wrong eHCA handle for adapter: %s.",
616                              dev->ofdev.node->full_name);
617                 return -ENODEV;
618         }
619
620         shca = (struct ehca_shca *)ib_alloc_device(sizeof(*shca));
621         if (!shca) {
622                 ehca_gen_err("Cannot allocate shca memory.");
623                 return -ENOMEM;
624         }
625         mutex_init(&shca->modify_mutex);
626
627         shca->ibmebus_dev = dev;
628         shca->ipz_hca_handle.handle = *handle;
629         dev->ofdev.dev.driver_data = shca;
630
631         ret = ehca_sense_attributes(shca);
632         if (ret < 0) {
633                 ehca_gen_err("Cannot sense eHCA attributes.");
634                 goto probe1;
635         }
636
637         ret = ehca_init_device(shca);
638         if (ret) {
639                 ehca_gen_err("Cannot init ehca  device struct");
640                 goto probe1;
641         }
642
643         /* create event queues */
644         ret = ehca_create_eq(shca, &shca->eq, EHCA_EQ, 2048);
645         if (ret) {
646                 ehca_err(&shca->ib_device, "Cannot create EQ.");
647                 goto probe1;
648         }
649
650         ret = ehca_create_eq(shca, &shca->neq, EHCA_NEQ, 513);
651         if (ret) {
652                 ehca_err(&shca->ib_device, "Cannot create NEQ.");
653                 goto probe3;
654         }
655
656         /* create internal protection domain */
657         ibpd = ehca_alloc_pd(&shca->ib_device, (void*)(-1), NULL);
658         if (IS_ERR(ibpd)) {
659                 ehca_err(&shca->ib_device, "Cannot create internal PD.");
660                 ret = PTR_ERR(ibpd);
661                 goto probe4;
662         }
663
664         shca->pd = container_of(ibpd, struct ehca_pd, ib_pd);
665         shca->pd->ib_pd.device = &shca->ib_device;
666
667         /* create internal max MR */
668         ret = ehca_reg_internal_maxmr(shca, shca->pd, &shca->maxmr);
669
670         if (ret) {
671                 ehca_err(&shca->ib_device, "Cannot create internal MR ret=%x",
672                          ret);
673                 goto probe5;
674         }
675
676         ret = ib_register_device(&shca->ib_device);
677         if (ret) {
678                 ehca_err(&shca->ib_device,
679                          "ib_register_device() failed ret=%x", ret);
680                 goto probe6;
681         }
682
683         /* create AQP1 for port 1 */
684         if (ehca_open_aqp1 == 1) {
685                 shca->sport[0].port_state = IB_PORT_DOWN;
686                 ret = ehca_create_aqp1(shca, 1);
687                 if (ret) {
688                         ehca_err(&shca->ib_device,
689                                  "Cannot create AQP1 for port 1.");
690                         goto probe7;
691                 }
692         }
693
694         /* create AQP1 for port 2 */
695         if ((ehca_open_aqp1 == 1) && (shca->num_ports == 2)) {
696                 shca->sport[1].port_state = IB_PORT_DOWN;
697                 ret = ehca_create_aqp1(shca, 2);
698                 if (ret) {
699                         ehca_err(&shca->ib_device,
700                                  "Cannot create AQP1 for port 2.");
701                         goto probe8;
702                 }
703         }
704
705         ret = sysfs_create_group(&dev->ofdev.dev.kobj, &ehca_dev_attr_grp);
706         if (ret) /* only complain; we can live without attributes */
707                 ehca_err(&shca->ib_device,
708                          "Cannot create device attributes  ret=%d", ret);
709
710         spin_lock(&shca_list_lock);
711         list_add(&shca->shca_list, &shca_list);
712         spin_unlock(&shca_list_lock);
713
714         return 0;
715
716 probe8:
717         ret = ehca_destroy_aqp1(&shca->sport[0]);
718         if (ret)
719                 ehca_err(&shca->ib_device,
720                          "Cannot destroy AQP1 for port 1. ret=%x", ret);
721
722 probe7:
723         ib_unregister_device(&shca->ib_device);
724
725 probe6:
726         ret = ehca_dereg_internal_maxmr(shca);
727         if (ret)
728                 ehca_err(&shca->ib_device,
729                          "Cannot destroy internal MR. ret=%x", ret);
730
731 probe5:
732         ret = ehca_dealloc_pd(&shca->pd->ib_pd);
733         if (ret)
734                 ehca_err(&shca->ib_device,
735                          "Cannot destroy internal PD. ret=%x", ret);
736
737 probe4:
738         ret = ehca_destroy_eq(shca, &shca->neq);
739         if (ret)
740                 ehca_err(&shca->ib_device,
741                          "Cannot destroy NEQ. ret=%x", ret);
742
743 probe3:
744         ret = ehca_destroy_eq(shca, &shca->eq);
745         if (ret)
746                 ehca_err(&shca->ib_device,
747                          "Cannot destroy EQ. ret=%x", ret);
748
749 probe1:
750         ib_dealloc_device(&shca->ib_device);
751
752         return -EINVAL;
753 }
754
755 static int __devexit ehca_remove(struct ibmebus_dev *dev)
756 {
757         struct ehca_shca *shca = dev->ofdev.dev.driver_data;
758         int ret;
759
760         sysfs_remove_group(&dev->ofdev.dev.kobj, &ehca_dev_attr_grp);
761
762         if (ehca_open_aqp1 == 1) {
763                 int i;
764                 for (i = 0; i < shca->num_ports; i++) {
765                         ret = ehca_destroy_aqp1(&shca->sport[i]);
766                         if (ret)
767                                 ehca_err(&shca->ib_device,
768                                          "Cannot destroy AQP1 for port %x "
769                                          "ret=%x", ret, i);
770                 }
771         }
772
773         ib_unregister_device(&shca->ib_device);
774
775         ret = ehca_dereg_internal_maxmr(shca);
776         if (ret)
777                 ehca_err(&shca->ib_device,
778                          "Cannot destroy internal MR. ret=%x", ret);
779
780         ret = ehca_dealloc_pd(&shca->pd->ib_pd);
781         if (ret)
782                 ehca_err(&shca->ib_device,
783                          "Cannot destroy internal PD. ret=%x", ret);
784
785         ret = ehca_destroy_eq(shca, &shca->eq);
786         if (ret)
787                 ehca_err(&shca->ib_device, "Cannot destroy EQ. ret=%x", ret);
788
789         ret = ehca_destroy_eq(shca, &shca->neq);
790         if (ret)
791                 ehca_err(&shca->ib_device, "Canot destroy NEQ. ret=%x", ret);
792
793         ib_dealloc_device(&shca->ib_device);
794
795         spin_lock(&shca_list_lock);
796         list_del(&shca->shca_list);
797         spin_unlock(&shca_list_lock);
798
799         return ret;
800 }
801
802 static struct of_device_id ehca_device_table[] =
803 {
804         {
805                 .name       = "lhca",
806                 .compatible = "IBM,lhca",
807         },
808         {},
809 };
810
811 static struct ibmebus_driver ehca_driver = {
812         .name     = "ehca",
813         .id_table = ehca_device_table,
814         .probe    = ehca_probe,
815         .remove   = ehca_remove,
816 };
817
818 void ehca_poll_eqs(unsigned long data)
819 {
820         struct ehca_shca *shca;
821
822         spin_lock(&shca_list_lock);
823         list_for_each_entry(shca, &shca_list, shca_list) {
824                 if (shca->eq.is_initialized) {
825                         /* call deadman proc only if eq ptr does not change */
826                         struct ehca_eq *eq = &shca->eq;
827                         int max = 3;
828                         volatile u64 q_ofs, q_ofs2;
829                         u64 flags;
830                         spin_lock_irqsave(&eq->spinlock, flags);
831                         q_ofs = eq->ipz_queue.current_q_offset;
832                         spin_unlock_irqrestore(&eq->spinlock, flags);
833                         do {
834                                 spin_lock_irqsave(&eq->spinlock, flags);
835                                 q_ofs2 = eq->ipz_queue.current_q_offset;
836                                 spin_unlock_irqrestore(&eq->spinlock, flags);
837                                 max--;
838                         } while (q_ofs == q_ofs2 && max > 0);
839                         if (q_ofs == q_ofs2)
840                                 ehca_process_eq(shca, 0);
841                 }
842         }
843         mod_timer(&poll_eqs_timer, jiffies + HZ);
844         spin_unlock(&shca_list_lock);
845 }
846
847 int __init ehca_module_init(void)
848 {
849         int ret;
850
851         printk(KERN_INFO "eHCA Infiniband Device Driver "
852                "(Rel.: SVNEHCA_0023)\n");
853         idr_init(&ehca_qp_idr);
854         idr_init(&ehca_cq_idr);
855         spin_lock_init(&ehca_qp_idr_lock);
856         spin_lock_init(&ehca_cq_idr_lock);
857         spin_lock_init(&hcall_lock);
858
859         INIT_LIST_HEAD(&shca_list);
860         spin_lock_init(&shca_list_lock);
861
862         if ((ret = ehca_create_comp_pool())) {
863                 ehca_gen_err("Cannot create comp pool.");
864                 return ret;
865         }
866
867         if ((ret = ehca_create_slab_caches())) {
868                 ehca_gen_err("Cannot create SLAB caches");
869                 ret = -ENOMEM;
870                 goto module_init1;
871         }
872
873         if ((ret = ibmebus_register_driver(&ehca_driver))) {
874                 ehca_gen_err("Cannot register eHCA device driver");
875                 ret = -EINVAL;
876                 goto module_init2;
877         }
878
879         ret = sysfs_create_group(&ehca_driver.driver.kobj, &ehca_drv_attr_grp);
880         if (ret) /* only complain; we can live without attributes */
881                 ehca_gen_err("Cannot create driver attributes  ret=%d", ret);
882
883         if (ehca_poll_all_eqs != 1) {
884                 ehca_gen_err("WARNING!!!");
885                 ehca_gen_err("It is possible to lose interrupts.");
886         } else {
887                 init_timer(&poll_eqs_timer);
888                 poll_eqs_timer.function = ehca_poll_eqs;
889                 poll_eqs_timer.expires = jiffies + HZ;
890                 add_timer(&poll_eqs_timer);
891         }
892
893         return 0;
894
895 module_init2:
896         ehca_destroy_slab_caches();
897
898 module_init1:
899         ehca_destroy_comp_pool();
900         return ret;
901 };
902
903 void __exit ehca_module_exit(void)
904 {
905         if (ehca_poll_all_eqs == 1)
906                 del_timer_sync(&poll_eqs_timer);
907
908         sysfs_remove_group(&ehca_driver.driver.kobj, &ehca_drv_attr_grp);
909         ibmebus_unregister_driver(&ehca_driver);
910
911         ehca_destroy_slab_caches();
912
913         ehca_destroy_comp_pool();
914
915         idr_destroy(&ehca_cq_idr);
916         idr_destroy(&ehca_qp_idr);
917 };
918
919 module_init(ehca_module_init);
920 module_exit(ehca_module_exit);