Heiko J Schick | fab9722 | 2006-09-22 15:22:22 -0700 | [diff] [blame] | 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 | |
Hoang-Nam Nguyen | 7e28db5 | 2006-11-07 00:56:39 +0100 | [diff] [blame] | 43 | #ifdef CONFIG_PPC_64K_PAGES |
| 44 | #include <linux/slab.h> |
| 45 | #endif |
Joachim Fenkes | 4faf775 | 2007-12-10 18:59:10 +0100 | [diff] [blame] | 46 | |
Heiko J Schick | fab9722 | 2006-09-22 15:22:22 -0700 | [diff] [blame] | 47 | #include "ehca_classes.h" |
| 48 | #include "ehca_iverbs.h" |
| 49 | #include "ehca_mrmw.h" |
| 50 | #include "ehca_tools.h" |
| 51 | #include "hcp_if.h" |
| 52 | |
Joachim Fenkes | 3d758a4 | 2007-12-13 13:35:57 +0100 | [diff] [blame] | 53 | #define HCAD_VERSION "0025" |
Joachim Fenkes | 39089e7 | 2007-09-11 15:35:32 +0200 | [diff] [blame] | 54 | |
Heiko J Schick | fab9722 | 2006-09-22 15:22:22 -0700 | [diff] [blame] | 55 | MODULE_LICENSE("Dual BSD/GPL"); |
| 56 | MODULE_AUTHOR("Christoph Raisch <raisch@de.ibm.com>"); |
| 57 | MODULE_DESCRIPTION("IBM eServer HCA InfiniBand Device Driver"); |
Joachim Fenkes | 39089e7 | 2007-09-11 15:35:32 +0200 | [diff] [blame] | 58 | MODULE_VERSION(HCAD_VERSION); |
Heiko J Schick | fab9722 | 2006-09-22 15:22:22 -0700 | [diff] [blame] | 59 | |
Roland Dreier | e8e91f6 | 2008-04-16 21:01:10 -0700 | [diff] [blame] | 60 | static int ehca_open_aqp1 = 0; |
| 61 | static int ehca_hw_level = 0; |
| 62 | static int ehca_poll_all_eqs = 1; |
| 63 | static int ehca_mr_largepage = 1; |
| 64 | |
Heiko J Schick | fab9722 | 2006-09-22 15:22:22 -0700 | [diff] [blame] | 65 | int ehca_debug_level = 0; |
Heiko J Schick | fab9722 | 2006-09-22 15:22:22 -0700 | [diff] [blame] | 66 | int ehca_nr_ports = 2; |
| 67 | int ehca_use_hp_mr = 0; |
| 68 | int ehca_port_act_time = 30; |
Heiko J Schick | fab9722 | 2006-09-22 15:22:22 -0700 | [diff] [blame] | 69 | int ehca_static_rate = -1; |
Joachim Fenkes | 4e430dc | 2007-05-09 13:48:31 +0200 | [diff] [blame] | 70 | int ehca_scaling_code = 0; |
Joachim Fenkes | 4faf775 | 2007-12-10 18:59:10 +0100 | [diff] [blame] | 71 | int ehca_lock_hcalls = -1; |
Heiko J Schick | fab9722 | 2006-09-22 15:22:22 -0700 | [diff] [blame] | 72 | |
Anton Blanchard | 339e264 | 2007-08-29 12:43:01 -0500 | [diff] [blame] | 73 | module_param_named(open_aqp1, ehca_open_aqp1, int, S_IRUGO); |
| 74 | module_param_named(debug_level, ehca_debug_level, int, S_IRUGO); |
| 75 | module_param_named(hw_level, ehca_hw_level, int, S_IRUGO); |
| 76 | module_param_named(nr_ports, ehca_nr_ports, int, S_IRUGO); |
| 77 | module_param_named(use_hp_mr, ehca_use_hp_mr, int, S_IRUGO); |
| 78 | module_param_named(port_act_time, ehca_port_act_time, int, S_IRUGO); |
| 79 | module_param_named(poll_all_eqs, ehca_poll_all_eqs, int, S_IRUGO); |
| 80 | module_param_named(static_rate, ehca_static_rate, int, S_IRUGO); |
| 81 | module_param_named(scaling_code, ehca_scaling_code, int, S_IRUGO); |
| 82 | module_param_named(mr_largepage, ehca_mr_largepage, int, S_IRUGO); |
Joachim Fenkes | 4faf775 | 2007-12-10 18:59:10 +0100 | [diff] [blame] | 83 | module_param_named(lock_hcalls, ehca_lock_hcalls, bool, S_IRUGO); |
Heiko J Schick | fab9722 | 2006-09-22 15:22:22 -0700 | [diff] [blame] | 84 | |
| 85 | MODULE_PARM_DESC(open_aqp1, |
| 86 | "AQP1 on startup (0: no (default), 1: yes)"); |
| 87 | MODULE_PARM_DESC(debug_level, |
Joachim Fenkes | 4da27d6 | 2008-04-23 11:55:45 -0700 | [diff] [blame^] | 88 | "Amount of debug output (0: none (default), 1: traces, " |
| 89 | "2: some dumps, 3: lots)"); |
Heiko J Schick | fab9722 | 2006-09-22 15:22:22 -0700 | [diff] [blame] | 90 | MODULE_PARM_DESC(hw_level, |
| 91 | "hardware level" |
| 92 | " (0: autosensing (default), 1: v. 0.20, 2: v. 0.21)"); |
| 93 | MODULE_PARM_DESC(nr_ports, |
Hoang-Nam Nguyen | bbdd267 | 2008-01-17 15:05:45 +0100 | [diff] [blame] | 94 | "number of connected ports (-1: autodetect, 1: port one only, " |
| 95 | "2: two ports (default)"); |
Heiko J Schick | fab9722 | 2006-09-22 15:22:22 -0700 | [diff] [blame] | 96 | MODULE_PARM_DESC(use_hp_mr, |
| 97 | "high performance MRs (0: no (default), 1: yes)"); |
| 98 | MODULE_PARM_DESC(port_act_time, |
| 99 | "time to wait for port activation (default: 30 sec)"); |
| 100 | MODULE_PARM_DESC(poll_all_eqs, |
| 101 | "polls all event queues periodically" |
| 102 | " (0: no, 1: yes (default))"); |
| 103 | MODULE_PARM_DESC(static_rate, |
| 104 | "set permanent static rate (default: disabled)"); |
Hoang-Nam Nguyen | 4fd3006 | 2007-02-15 17:08:33 +0100 | [diff] [blame] | 105 | MODULE_PARM_DESC(scaling_code, |
Hoang-Nam Nguyen | b8a3ba5 | 2007-07-09 15:20:55 +0200 | [diff] [blame] | 106 | "set scaling code (0: disabled/default, 1: enabled)"); |
Hoang-Nam Nguyen | 5bb7d92 | 2007-07-20 16:01:51 +0200 | [diff] [blame] | 107 | MODULE_PARM_DESC(mr_largepage, |
| 108 | "use large page for MR (0: use PAGE_SIZE (default), " |
| 109 | "1: use large page depending on MR size"); |
Joachim Fenkes | 4faf775 | 2007-12-10 18:59:10 +0100 | [diff] [blame] | 110 | MODULE_PARM_DESC(lock_hcalls, |
| 111 | "serialize all hCalls made by the driver " |
| 112 | "(default: autodetect)"); |
Heiko J Schick | fab9722 | 2006-09-22 15:22:22 -0700 | [diff] [blame] | 113 | |
Joachim Fenkes | 26ed687 | 2007-07-09 15:31:10 +0200 | [diff] [blame] | 114 | DEFINE_RWLOCK(ehca_qp_idr_lock); |
| 115 | DEFINE_RWLOCK(ehca_cq_idr_lock); |
Heiko J Schick | fab9722 | 2006-09-22 15:22:22 -0700 | [diff] [blame] | 116 | DEFINE_IDR(ehca_qp_idr); |
| 117 | DEFINE_IDR(ehca_cq_idr); |
| 118 | |
Joachim Fenkes | 9844b71 | 2007-07-09 15:29:03 +0200 | [diff] [blame] | 119 | static LIST_HEAD(shca_list); /* list of all registered ehcas */ |
| 120 | static DEFINE_SPINLOCK(shca_list_lock); |
Heiko J Schick | fab9722 | 2006-09-22 15:22:22 -0700 | [diff] [blame] | 121 | |
| 122 | static struct timer_list poll_eqs_timer; |
| 123 | |
Hoang-Nam Nguyen | 7e28db5 | 2006-11-07 00:56:39 +0100 | [diff] [blame] | 124 | #ifdef CONFIG_PPC_64K_PAGES |
Hoang-Nam Nguyen | 2b94397 | 2007-07-12 17:53:47 +0200 | [diff] [blame] | 125 | static struct kmem_cache *ctblk_cache; |
Hoang-Nam Nguyen | 7e28db5 | 2006-11-07 00:56:39 +0100 | [diff] [blame] | 126 | |
Hoang-Nam Nguyen | f2d9136 | 2007-01-09 18:04:14 +0100 | [diff] [blame] | 127 | void *ehca_alloc_fw_ctrlblock(gfp_t flags) |
Hoang-Nam Nguyen | 7e28db5 | 2006-11-07 00:56:39 +0100 | [diff] [blame] | 128 | { |
Hoang-Nam Nguyen | f2d9136 | 2007-01-09 18:04:14 +0100 | [diff] [blame] | 129 | void *ret = kmem_cache_zalloc(ctblk_cache, flags); |
Hoang-Nam Nguyen | 7e28db5 | 2006-11-07 00:56:39 +0100 | [diff] [blame] | 130 | if (!ret) |
| 131 | ehca_gen_err("Out of memory for ctblk"); |
| 132 | return ret; |
| 133 | } |
| 134 | |
| 135 | void ehca_free_fw_ctrlblock(void *ptr) |
| 136 | { |
| 137 | if (ptr) |
| 138 | kmem_cache_free(ctblk_cache, ptr); |
| 139 | |
| 140 | } |
| 141 | #endif |
| 142 | |
Hoang-Nam Nguyen | 51d2bfb | 2007-07-20 16:02:46 +0200 | [diff] [blame] | 143 | int ehca2ib_return_code(u64 ehca_rc) |
| 144 | { |
| 145 | switch (ehca_rc) { |
| 146 | case H_SUCCESS: |
| 147 | return 0; |
| 148 | case H_RESOURCE: /* Resource in use */ |
| 149 | case H_BUSY: |
| 150 | return -EBUSY; |
| 151 | case H_NOT_ENOUGH_RESOURCES: /* insufficient resources */ |
| 152 | case H_CONSTRAINED: /* resource constraint */ |
| 153 | case H_NO_MEM: |
| 154 | return -ENOMEM; |
| 155 | default: |
| 156 | return -EINVAL; |
| 157 | } |
| 158 | } |
| 159 | |
Heiko J Schick | fab9722 | 2006-09-22 15:22:22 -0700 | [diff] [blame] | 160 | static int ehca_create_slab_caches(void) |
| 161 | { |
| 162 | int ret; |
| 163 | |
| 164 | ret = ehca_init_pd_cache(); |
| 165 | if (ret) { |
| 166 | ehca_gen_err("Cannot create PD SLAB cache."); |
| 167 | return ret; |
| 168 | } |
| 169 | |
| 170 | ret = ehca_init_cq_cache(); |
| 171 | if (ret) { |
| 172 | ehca_gen_err("Cannot create CQ SLAB cache."); |
| 173 | goto create_slab_caches2; |
| 174 | } |
| 175 | |
| 176 | ret = ehca_init_qp_cache(); |
| 177 | if (ret) { |
| 178 | ehca_gen_err("Cannot create QP SLAB cache."); |
| 179 | goto create_slab_caches3; |
| 180 | } |
| 181 | |
| 182 | ret = ehca_init_av_cache(); |
| 183 | if (ret) { |
| 184 | ehca_gen_err("Cannot create AV SLAB cache."); |
| 185 | goto create_slab_caches4; |
| 186 | } |
| 187 | |
| 188 | ret = ehca_init_mrmw_cache(); |
| 189 | if (ret) { |
| 190 | ehca_gen_err("Cannot create MR&MW SLAB cache."); |
| 191 | goto create_slab_caches5; |
| 192 | } |
| 193 | |
Stefan Roscher | e2f81da | 2007-07-20 16:04:17 +0200 | [diff] [blame] | 194 | ret = ehca_init_small_qp_cache(); |
| 195 | if (ret) { |
| 196 | ehca_gen_err("Cannot create small queue SLAB cache."); |
| 197 | goto create_slab_caches6; |
| 198 | } |
| 199 | |
Hoang-Nam Nguyen | 7e28db5 | 2006-11-07 00:56:39 +0100 | [diff] [blame] | 200 | #ifdef CONFIG_PPC_64K_PAGES |
| 201 | ctblk_cache = kmem_cache_create("ehca_cache_ctblk", |
| 202 | EHCA_PAGESIZE, H_CB_ALIGNMENT, |
| 203 | SLAB_HWCACHE_ALIGN, |
Paul Mundt | 20c2df8 | 2007-07-20 10:11:58 +0900 | [diff] [blame] | 204 | NULL); |
Hoang-Nam Nguyen | 7e28db5 | 2006-11-07 00:56:39 +0100 | [diff] [blame] | 205 | if (!ctblk_cache) { |
| 206 | ehca_gen_err("Cannot create ctblk SLAB cache."); |
Stefan Roscher | e2f81da | 2007-07-20 16:04:17 +0200 | [diff] [blame] | 207 | ehca_cleanup_small_qp_cache(); |
| 208 | goto create_slab_caches6; |
Hoang-Nam Nguyen | 7e28db5 | 2006-11-07 00:56:39 +0100 | [diff] [blame] | 209 | } |
| 210 | #endif |
Heiko J Schick | fab9722 | 2006-09-22 15:22:22 -0700 | [diff] [blame] | 211 | return 0; |
| 212 | |
Stefan Roscher | e2f81da | 2007-07-20 16:04:17 +0200 | [diff] [blame] | 213 | create_slab_caches6: |
| 214 | ehca_cleanup_mrmw_cache(); |
| 215 | |
Heiko J Schick | fab9722 | 2006-09-22 15:22:22 -0700 | [diff] [blame] | 216 | create_slab_caches5: |
| 217 | ehca_cleanup_av_cache(); |
| 218 | |
| 219 | create_slab_caches4: |
| 220 | ehca_cleanup_qp_cache(); |
| 221 | |
| 222 | create_slab_caches3: |
| 223 | ehca_cleanup_cq_cache(); |
| 224 | |
| 225 | create_slab_caches2: |
| 226 | ehca_cleanup_pd_cache(); |
| 227 | |
| 228 | return ret; |
| 229 | } |
| 230 | |
| 231 | static void ehca_destroy_slab_caches(void) |
| 232 | { |
Stefan Roscher | e2f81da | 2007-07-20 16:04:17 +0200 | [diff] [blame] | 233 | ehca_cleanup_small_qp_cache(); |
Heiko J Schick | fab9722 | 2006-09-22 15:22:22 -0700 | [diff] [blame] | 234 | ehca_cleanup_mrmw_cache(); |
| 235 | ehca_cleanup_av_cache(); |
| 236 | ehca_cleanup_qp_cache(); |
| 237 | ehca_cleanup_cq_cache(); |
| 238 | ehca_cleanup_pd_cache(); |
Hoang-Nam Nguyen | 7e28db5 | 2006-11-07 00:56:39 +0100 | [diff] [blame] | 239 | #ifdef CONFIG_PPC_64K_PAGES |
| 240 | if (ctblk_cache) |
| 241 | kmem_cache_destroy(ctblk_cache); |
| 242 | #endif |
Heiko J Schick | fab9722 | 2006-09-22 15:22:22 -0700 | [diff] [blame] | 243 | } |
| 244 | |
Hoang-Nam Nguyen | 2b94397 | 2007-07-12 17:53:47 +0200 | [diff] [blame] | 245 | #define EHCA_HCAAVER EHCA_BMASK_IBM(32, 39) |
| 246 | #define EHCA_REVID EHCA_BMASK_IBM(40, 63) |
Heiko J Schick | fab9722 | 2006-09-22 15:22:22 -0700 | [diff] [blame] | 247 | |
Joachim Fenkes | 91f13aa | 2007-07-09 15:21:45 +0200 | [diff] [blame] | 248 | static struct cap_descr { |
| 249 | u64 mask; |
| 250 | char *descr; |
| 251 | } hca_cap_descr[] = { |
| 252 | { HCA_CAP_AH_PORT_NR_CHECK, "HCA_CAP_AH_PORT_NR_CHECK" }, |
| 253 | { HCA_CAP_ATOMIC, "HCA_CAP_ATOMIC" }, |
| 254 | { HCA_CAP_AUTO_PATH_MIG, "HCA_CAP_AUTO_PATH_MIG" }, |
| 255 | { HCA_CAP_BAD_P_KEY_CTR, "HCA_CAP_BAD_P_KEY_CTR" }, |
| 256 | { HCA_CAP_SQD_RTS_PORT_CHANGE, "HCA_CAP_SQD_RTS_PORT_CHANGE" }, |
| 257 | { HCA_CAP_CUR_QP_STATE_MOD, "HCA_CAP_CUR_QP_STATE_MOD" }, |
| 258 | { HCA_CAP_INIT_TYPE, "HCA_CAP_INIT_TYPE" }, |
| 259 | { HCA_CAP_PORT_ACTIVE_EVENT, "HCA_CAP_PORT_ACTIVE_EVENT" }, |
| 260 | { HCA_CAP_Q_KEY_VIOL_CTR, "HCA_CAP_Q_KEY_VIOL_CTR" }, |
| 261 | { HCA_CAP_WQE_RESIZE, "HCA_CAP_WQE_RESIZE" }, |
| 262 | { HCA_CAP_RAW_PACKET_MCAST, "HCA_CAP_RAW_PACKET_MCAST" }, |
| 263 | { HCA_CAP_SHUTDOWN_PORT, "HCA_CAP_SHUTDOWN_PORT" }, |
| 264 | { HCA_CAP_RC_LL_QP, "HCA_CAP_RC_LL_QP" }, |
| 265 | { HCA_CAP_SRQ, "HCA_CAP_SRQ" }, |
| 266 | { HCA_CAP_UD_LL_QP, "HCA_CAP_UD_LL_QP" }, |
| 267 | { HCA_CAP_RESIZE_MR, "HCA_CAP_RESIZE_MR" }, |
| 268 | { HCA_CAP_MINI_QP, "HCA_CAP_MINI_QP" }, |
Joachim Fenkes | 4faf775 | 2007-12-10 18:59:10 +0100 | [diff] [blame] | 269 | { HCA_CAP_H_ALLOC_RES_SYNC, "HCA_CAP_H_ALLOC_RES_SYNC" }, |
Joachim Fenkes | 91f13aa | 2007-07-09 15:21:45 +0200 | [diff] [blame] | 270 | }; |
| 271 | |
Joachim Fenkes | abc39d3 | 2007-10-16 17:31:14 +0200 | [diff] [blame] | 272 | static int ehca_sense_attributes(struct ehca_shca *shca) |
Heiko J Schick | fab9722 | 2006-09-22 15:22:22 -0700 | [diff] [blame] | 273 | { |
Joachim Fenkes | 91f13aa | 2007-07-09 15:21:45 +0200 | [diff] [blame] | 274 | int i, ret = 0; |
Heiko J Schick | fab9722 | 2006-09-22 15:22:22 -0700 | [diff] [blame] | 275 | u64 h_ret; |
| 276 | struct hipz_query_hca *rblock; |
Joachim Fenkes | 91f13aa | 2007-07-09 15:21:45 +0200 | [diff] [blame] | 277 | struct hipz_query_port *port; |
Joachim Fenkes | 4da27d6 | 2008-04-23 11:55:45 -0700 | [diff] [blame^] | 278 | const char *loc_code; |
Heiko J Schick | fab9722 | 2006-09-22 15:22:22 -0700 | [diff] [blame] | 279 | |
Joachim Fenkes | abc39d3 | 2007-10-16 17:31:14 +0200 | [diff] [blame] | 280 | static const u32 pgsize_map[] = { |
| 281 | HCA_CAP_MR_PGSIZE_4K, 0x1000, |
| 282 | HCA_CAP_MR_PGSIZE_64K, 0x10000, |
| 283 | HCA_CAP_MR_PGSIZE_1M, 0x100000, |
| 284 | HCA_CAP_MR_PGSIZE_16M, 0x1000000, |
| 285 | }; |
| 286 | |
Joachim Fenkes | 4da27d6 | 2008-04-23 11:55:45 -0700 | [diff] [blame^] | 287 | ehca_gen_dbg("Probing adapter %s...", |
| 288 | shca->ofdev->node->full_name); |
| 289 | loc_code = of_get_property(shca->ofdev->node, "ibm,loc-code", NULL); |
| 290 | if (loc_code) |
| 291 | ehca_gen_dbg(" ... location lode=%s", loc_code); |
| 292 | |
Hoang-Nam Nguyen | f2d9136 | 2007-01-09 18:04:14 +0100 | [diff] [blame] | 293 | rblock = ehca_alloc_fw_ctrlblock(GFP_KERNEL); |
Heiko J Schick | fab9722 | 2006-09-22 15:22:22 -0700 | [diff] [blame] | 294 | if (!rblock) { |
| 295 | ehca_gen_err("Cannot allocate rblock memory."); |
| 296 | return -ENOMEM; |
| 297 | } |
| 298 | |
| 299 | h_ret = hipz_h_query_hca(shca->ipz_hca_handle, rblock); |
| 300 | if (h_ret != H_SUCCESS) { |
Joachim Fenkes | e372219 | 2007-09-11 15:32:22 +0200 | [diff] [blame] | 301 | ehca_gen_err("Cannot query device properties. h_ret=%li", |
Heiko J Schick | fab9722 | 2006-09-22 15:22:22 -0700 | [diff] [blame] | 302 | h_ret); |
| 303 | ret = -EPERM; |
Joachim Fenkes | 91f13aa | 2007-07-09 15:21:45 +0200 | [diff] [blame] | 304 | goto sense_attributes1; |
Heiko J Schick | fab9722 | 2006-09-22 15:22:22 -0700 | [diff] [blame] | 305 | } |
| 306 | |
| 307 | if (ehca_nr_ports == 1) |
| 308 | shca->num_ports = 1; |
| 309 | else |
| 310 | shca->num_ports = (u8)rblock->num_ports; |
| 311 | |
| 312 | ehca_gen_dbg(" ... found %x ports", rblock->num_ports); |
| 313 | |
| 314 | if (ehca_hw_level == 0) { |
| 315 | u32 hcaaver; |
| 316 | u32 revid; |
| 317 | |
| 318 | hcaaver = EHCA_BMASK_GET(EHCA_HCAAVER, rblock->hw_ver); |
| 319 | revid = EHCA_BMASK_GET(EHCA_REVID, rblock->hw_ver); |
| 320 | |
| 321 | ehca_gen_dbg(" ... hardware version=%x:%x", hcaaver, revid); |
| 322 | |
Joachim Fenkes | fbb9318 | 2007-07-12 17:47:45 +0200 | [diff] [blame] | 323 | if (hcaaver == 1) { |
| 324 | if (revid <= 3) |
| 325 | shca->hw_level = 0x10 | (revid + 1); |
| 326 | else |
| 327 | shca->hw_level = 0x14; |
| 328 | } else if (hcaaver == 2) { |
| 329 | if (revid == 0) |
| 330 | shca->hw_level = 0x21; |
| 331 | else if (revid == 0x10) |
| 332 | shca->hw_level = 0x22; |
| 333 | else if (revid == 0x20 || revid == 0x21) |
| 334 | shca->hw_level = 0x23; |
| 335 | } |
| 336 | |
| 337 | if (!shca->hw_level) { |
Joachim Fenkes | 91f13aa | 2007-07-09 15:21:45 +0200 | [diff] [blame] | 338 | ehca_gen_warn("unknown hardware version" |
| 339 | " - assuming default level"); |
| 340 | shca->hw_level = 0x22; |
| 341 | } |
Joachim Fenkes | fbb9318 | 2007-07-12 17:47:45 +0200 | [diff] [blame] | 342 | } else |
| 343 | shca->hw_level = ehca_hw_level; |
Heiko J Schick | fab9722 | 2006-09-22 15:22:22 -0700 | [diff] [blame] | 344 | ehca_gen_dbg(" ... hardware level=%x", shca->hw_level); |
| 345 | |
Joachim Fenkes | 91f13aa | 2007-07-09 15:21:45 +0200 | [diff] [blame] | 346 | shca->hca_cap = rblock->hca_cap_indicators; |
| 347 | ehca_gen_dbg(" ... HCA capabilities:"); |
| 348 | for (i = 0; i < ARRAY_SIZE(hca_cap_descr); i++) |
| 349 | if (EHCA_BMASK_GET(hca_cap_descr[i].mask, shca->hca_cap)) |
| 350 | ehca_gen_dbg(" %s", hca_cap_descr[i].descr); |
| 351 | |
Joachim Fenkes | 4faf775 | 2007-12-10 18:59:10 +0100 | [diff] [blame] | 352 | /* Autodetect hCall locking -- the "H_ALLOC_RESOURCE synced" flag is |
| 353 | * a firmware property, so it's valid across all adapters |
| 354 | */ |
| 355 | if (ehca_lock_hcalls == -1) |
| 356 | ehca_lock_hcalls = !(shca->hca_cap & HCA_CAP_H_ALLOC_RES_SYNC); |
| 357 | |
Joachim Fenkes | abc39d3 | 2007-10-16 17:31:14 +0200 | [diff] [blame] | 358 | /* translate supported MR page sizes; always support 4K */ |
| 359 | shca->hca_cap_mr_pgsize = EHCA_PAGESIZE; |
| 360 | if (ehca_mr_largepage) { /* support extra sizes only if enabled */ |
| 361 | for (i = 0; i < ARRAY_SIZE(pgsize_map); i += 2) |
| 362 | if (rblock->memory_page_size_supported & pgsize_map[i]) |
| 363 | shca->hca_cap_mr_pgsize |= pgsize_map[i + 1]; |
| 364 | } |
Hoang-Nam Nguyen | 5bb7d92 | 2007-07-20 16:01:51 +0200 | [diff] [blame] | 365 | |
Joachim Fenkes | abc39d3 | 2007-10-16 17:31:14 +0200 | [diff] [blame] | 366 | /* query max MTU from first port -- it's the same for all ports */ |
Hoang-Nam Nguyen | 2b94397 | 2007-07-12 17:53:47 +0200 | [diff] [blame] | 367 | port = (struct hipz_query_port *)rblock; |
Joachim Fenkes | 91f13aa | 2007-07-09 15:21:45 +0200 | [diff] [blame] | 368 | h_ret = hipz_h_query_port(shca->ipz_hca_handle, 1, port); |
| 369 | if (h_ret != H_SUCCESS) { |
Joachim Fenkes | e372219 | 2007-09-11 15:32:22 +0200 | [diff] [blame] | 370 | ehca_gen_err("Cannot query port properties. h_ret=%li", |
Joachim Fenkes | 91f13aa | 2007-07-09 15:21:45 +0200 | [diff] [blame] | 371 | h_ret); |
| 372 | ret = -EPERM; |
| 373 | goto sense_attributes1; |
| 374 | } |
| 375 | |
| 376 | shca->max_mtu = port->max_mtu; |
| 377 | |
| 378 | sense_attributes1: |
Hoang-Nam Nguyen | 7e28db5 | 2006-11-07 00:56:39 +0100 | [diff] [blame] | 379 | ehca_free_fw_ctrlblock(rblock); |
Heiko J Schick | fab9722 | 2006-09-22 15:22:22 -0700 | [diff] [blame] | 380 | return ret; |
| 381 | } |
| 382 | |
| 383 | static int init_node_guid(struct ehca_shca *shca) |
| 384 | { |
| 385 | int ret = 0; |
| 386 | struct hipz_query_hca *rblock; |
| 387 | |
Hoang-Nam Nguyen | f2d9136 | 2007-01-09 18:04:14 +0100 | [diff] [blame] | 388 | rblock = ehca_alloc_fw_ctrlblock(GFP_KERNEL); |
Heiko J Schick | fab9722 | 2006-09-22 15:22:22 -0700 | [diff] [blame] | 389 | if (!rblock) { |
| 390 | ehca_err(&shca->ib_device, "Can't allocate rblock memory."); |
| 391 | return -ENOMEM; |
| 392 | } |
| 393 | |
| 394 | if (hipz_h_query_hca(shca->ipz_hca_handle, rblock) != H_SUCCESS) { |
| 395 | ehca_err(&shca->ib_device, "Can't query device properties"); |
| 396 | ret = -EINVAL; |
| 397 | goto init_node_guid1; |
| 398 | } |
| 399 | |
| 400 | memcpy(&shca->ib_device.node_guid, &rblock->node_guid, sizeof(u64)); |
| 401 | |
| 402 | init_node_guid1: |
Hoang-Nam Nguyen | 7e28db5 | 2006-11-07 00:56:39 +0100 | [diff] [blame] | 403 | ehca_free_fw_ctrlblock(rblock); |
Heiko J Schick | fab9722 | 2006-09-22 15:22:22 -0700 | [diff] [blame] | 404 | return ret; |
| 405 | } |
| 406 | |
Roland Dreier | e8e91f6 | 2008-04-16 21:01:10 -0700 | [diff] [blame] | 407 | static int ehca_init_device(struct ehca_shca *shca) |
Heiko J Schick | fab9722 | 2006-09-22 15:22:22 -0700 | [diff] [blame] | 408 | { |
| 409 | int ret; |
| 410 | |
| 411 | ret = init_node_guid(shca); |
| 412 | if (ret) |
| 413 | return ret; |
| 414 | |
| 415 | strlcpy(shca->ib_device.name, "ehca%d", IB_DEVICE_NAME_MAX); |
| 416 | shca->ib_device.owner = THIS_MODULE; |
| 417 | |
Stefan Roscher | 5281a4b | 2007-09-11 15:29:39 +0200 | [diff] [blame] | 418 | shca->ib_device.uverbs_abi_ver = 8; |
Heiko J Schick | fab9722 | 2006-09-22 15:22:22 -0700 | [diff] [blame] | 419 | shca->ib_device.uverbs_cmd_mask = |
| 420 | (1ull << IB_USER_VERBS_CMD_GET_CONTEXT) | |
| 421 | (1ull << IB_USER_VERBS_CMD_QUERY_DEVICE) | |
| 422 | (1ull << IB_USER_VERBS_CMD_QUERY_PORT) | |
| 423 | (1ull << IB_USER_VERBS_CMD_ALLOC_PD) | |
| 424 | (1ull << IB_USER_VERBS_CMD_DEALLOC_PD) | |
| 425 | (1ull << IB_USER_VERBS_CMD_REG_MR) | |
| 426 | (1ull << IB_USER_VERBS_CMD_DEREG_MR) | |
| 427 | (1ull << IB_USER_VERBS_CMD_CREATE_COMP_CHANNEL) | |
| 428 | (1ull << IB_USER_VERBS_CMD_CREATE_CQ) | |
| 429 | (1ull << IB_USER_VERBS_CMD_DESTROY_CQ) | |
| 430 | (1ull << IB_USER_VERBS_CMD_CREATE_QP) | |
| 431 | (1ull << IB_USER_VERBS_CMD_MODIFY_QP) | |
| 432 | (1ull << IB_USER_VERBS_CMD_QUERY_QP) | |
| 433 | (1ull << IB_USER_VERBS_CMD_DESTROY_QP) | |
| 434 | (1ull << IB_USER_VERBS_CMD_ATTACH_MCAST) | |
| 435 | (1ull << IB_USER_VERBS_CMD_DETACH_MCAST); |
| 436 | |
Tom Tucker | 07ebafb | 2006-08-03 16:02:42 -0500 | [diff] [blame] | 437 | shca->ib_device.node_type = RDMA_NODE_IB_CA; |
Heiko J Schick | fab9722 | 2006-09-22 15:22:22 -0700 | [diff] [blame] | 438 | shca->ib_device.phys_port_cnt = shca->num_ports; |
Michael S. Tsirkin | f4fd0b2 | 2007-05-03 13:48:47 +0300 | [diff] [blame] | 439 | shca->ib_device.num_comp_vectors = 1; |
Joachim Fenkes | 6b08f3a | 2007-09-26 19:45:51 +1000 | [diff] [blame] | 440 | shca->ib_device.dma_device = &shca->ofdev->dev; |
Heiko J Schick | fab9722 | 2006-09-22 15:22:22 -0700 | [diff] [blame] | 441 | shca->ib_device.query_device = ehca_query_device; |
| 442 | shca->ib_device.query_port = ehca_query_port; |
| 443 | shca->ib_device.query_gid = ehca_query_gid; |
| 444 | shca->ib_device.query_pkey = ehca_query_pkey; |
| 445 | /* shca->in_device.modify_device = ehca_modify_device */ |
| 446 | shca->ib_device.modify_port = ehca_modify_port; |
| 447 | shca->ib_device.alloc_ucontext = ehca_alloc_ucontext; |
| 448 | shca->ib_device.dealloc_ucontext = ehca_dealloc_ucontext; |
| 449 | shca->ib_device.alloc_pd = ehca_alloc_pd; |
| 450 | shca->ib_device.dealloc_pd = ehca_dealloc_pd; |
| 451 | shca->ib_device.create_ah = ehca_create_ah; |
| 452 | /* shca->ib_device.modify_ah = ehca_modify_ah; */ |
| 453 | shca->ib_device.query_ah = ehca_query_ah; |
| 454 | shca->ib_device.destroy_ah = ehca_destroy_ah; |
| 455 | shca->ib_device.create_qp = ehca_create_qp; |
| 456 | shca->ib_device.modify_qp = ehca_modify_qp; |
| 457 | shca->ib_device.query_qp = ehca_query_qp; |
| 458 | shca->ib_device.destroy_qp = ehca_destroy_qp; |
| 459 | shca->ib_device.post_send = ehca_post_send; |
| 460 | shca->ib_device.post_recv = ehca_post_recv; |
| 461 | shca->ib_device.create_cq = ehca_create_cq; |
| 462 | shca->ib_device.destroy_cq = ehca_destroy_cq; |
| 463 | shca->ib_device.resize_cq = ehca_resize_cq; |
| 464 | shca->ib_device.poll_cq = ehca_poll_cq; |
| 465 | /* shca->ib_device.peek_cq = ehca_peek_cq; */ |
| 466 | shca->ib_device.req_notify_cq = ehca_req_notify_cq; |
| 467 | /* shca->ib_device.req_ncomp_notif = ehca_req_ncomp_notif; */ |
| 468 | shca->ib_device.get_dma_mr = ehca_get_dma_mr; |
| 469 | shca->ib_device.reg_phys_mr = ehca_reg_phys_mr; |
| 470 | shca->ib_device.reg_user_mr = ehca_reg_user_mr; |
| 471 | shca->ib_device.query_mr = ehca_query_mr; |
| 472 | shca->ib_device.dereg_mr = ehca_dereg_mr; |
| 473 | shca->ib_device.rereg_phys_mr = ehca_rereg_phys_mr; |
| 474 | shca->ib_device.alloc_mw = ehca_alloc_mw; |
| 475 | shca->ib_device.bind_mw = ehca_bind_mw; |
| 476 | shca->ib_device.dealloc_mw = ehca_dealloc_mw; |
| 477 | shca->ib_device.alloc_fmr = ehca_alloc_fmr; |
| 478 | shca->ib_device.map_phys_fmr = ehca_map_phys_fmr; |
| 479 | shca->ib_device.unmap_fmr = ehca_unmap_fmr; |
| 480 | shca->ib_device.dealloc_fmr = ehca_dealloc_fmr; |
| 481 | shca->ib_device.attach_mcast = ehca_attach_mcast; |
| 482 | shca->ib_device.detach_mcast = ehca_detach_mcast; |
Hoang-Nam Nguyen | 2b5e6b1 | 2008-01-25 21:18:27 +0100 | [diff] [blame] | 483 | shca->ib_device.process_mad = ehca_process_mad; |
Heiko J Schick | fab9722 | 2006-09-22 15:22:22 -0700 | [diff] [blame] | 484 | shca->ib_device.mmap = ehca_mmap; |
| 485 | |
Joachim Fenkes | a6a1294 | 2007-07-09 15:25:10 +0200 | [diff] [blame] | 486 | if (EHCA_BMASK_GET(HCA_CAP_SRQ, shca->hca_cap)) { |
| 487 | shca->ib_device.uverbs_cmd_mask |= |
| 488 | (1ull << IB_USER_VERBS_CMD_CREATE_SRQ) | |
| 489 | (1ull << IB_USER_VERBS_CMD_MODIFY_SRQ) | |
| 490 | (1ull << IB_USER_VERBS_CMD_QUERY_SRQ) | |
| 491 | (1ull << IB_USER_VERBS_CMD_DESTROY_SRQ); |
| 492 | |
| 493 | shca->ib_device.create_srq = ehca_create_srq; |
| 494 | shca->ib_device.modify_srq = ehca_modify_srq; |
| 495 | shca->ib_device.query_srq = ehca_query_srq; |
| 496 | shca->ib_device.destroy_srq = ehca_destroy_srq; |
| 497 | shca->ib_device.post_srq_recv = ehca_post_srq_recv; |
| 498 | } |
| 499 | |
Heiko J Schick | fab9722 | 2006-09-22 15:22:22 -0700 | [diff] [blame] | 500 | return ret; |
| 501 | } |
| 502 | |
| 503 | static int ehca_create_aqp1(struct ehca_shca *shca, u32 port) |
| 504 | { |
| 505 | struct ehca_sport *sport = &shca->sport[port - 1]; |
| 506 | struct ib_cq *ibcq; |
| 507 | struct ib_qp *ibqp; |
| 508 | struct ib_qp_init_attr qp_init_attr; |
| 509 | int ret; |
| 510 | |
| 511 | if (sport->ibcq_aqp1) { |
| 512 | ehca_err(&shca->ib_device, "AQP1 CQ is already created."); |
| 513 | return -EPERM; |
| 514 | } |
| 515 | |
Hoang-Nam Nguyen | 2b94397 | 2007-07-12 17:53:47 +0200 | [diff] [blame] | 516 | ibcq = ib_create_cq(&shca->ib_device, NULL, NULL, (void *)(-1), 10, 0); |
Heiko J Schick | fab9722 | 2006-09-22 15:22:22 -0700 | [diff] [blame] | 517 | if (IS_ERR(ibcq)) { |
| 518 | ehca_err(&shca->ib_device, "Cannot create AQP1 CQ."); |
| 519 | return PTR_ERR(ibcq); |
| 520 | } |
| 521 | sport->ibcq_aqp1 = ibcq; |
| 522 | |
Hoang-Nam Nguyen | b8b50e3 | 2008-01-17 15:04:32 +0100 | [diff] [blame] | 523 | if (sport->ibqp_sqp[IB_QPT_GSI]) { |
Heiko J Schick | fab9722 | 2006-09-22 15:22:22 -0700 | [diff] [blame] | 524 | ehca_err(&shca->ib_device, "AQP1 QP is already created."); |
| 525 | ret = -EPERM; |
| 526 | goto create_aqp1; |
| 527 | } |
| 528 | |
| 529 | memset(&qp_init_attr, 0, sizeof(struct ib_qp_init_attr)); |
| 530 | qp_init_attr.send_cq = ibcq; |
| 531 | qp_init_attr.recv_cq = ibcq; |
| 532 | qp_init_attr.sq_sig_type = IB_SIGNAL_ALL_WR; |
| 533 | qp_init_attr.cap.max_send_wr = 100; |
| 534 | qp_init_attr.cap.max_recv_wr = 100; |
| 535 | qp_init_attr.cap.max_send_sge = 2; |
| 536 | qp_init_attr.cap.max_recv_sge = 1; |
| 537 | qp_init_attr.qp_type = IB_QPT_GSI; |
| 538 | qp_init_attr.port_num = port; |
| 539 | qp_init_attr.qp_context = NULL; |
| 540 | qp_init_attr.event_handler = NULL; |
| 541 | qp_init_attr.srq = NULL; |
| 542 | |
| 543 | ibqp = ib_create_qp(&shca->pd->ib_pd, &qp_init_attr); |
| 544 | if (IS_ERR(ibqp)) { |
| 545 | ehca_err(&shca->ib_device, "Cannot create AQP1 QP."); |
| 546 | ret = PTR_ERR(ibqp); |
| 547 | goto create_aqp1; |
| 548 | } |
Hoang-Nam Nguyen | b8b50e3 | 2008-01-17 15:04:32 +0100 | [diff] [blame] | 549 | sport->ibqp_sqp[IB_QPT_GSI] = ibqp; |
Heiko J Schick | fab9722 | 2006-09-22 15:22:22 -0700 | [diff] [blame] | 550 | |
| 551 | return 0; |
| 552 | |
| 553 | create_aqp1: |
| 554 | ib_destroy_cq(sport->ibcq_aqp1); |
| 555 | return ret; |
| 556 | } |
| 557 | |
| 558 | static int ehca_destroy_aqp1(struct ehca_sport *sport) |
| 559 | { |
| 560 | int ret; |
| 561 | |
Hoang-Nam Nguyen | b8b50e3 | 2008-01-17 15:04:32 +0100 | [diff] [blame] | 562 | ret = ib_destroy_qp(sport->ibqp_sqp[IB_QPT_GSI]); |
Heiko J Schick | fab9722 | 2006-09-22 15:22:22 -0700 | [diff] [blame] | 563 | if (ret) { |
Joachim Fenkes | e372219 | 2007-09-11 15:32:22 +0200 | [diff] [blame] | 564 | ehca_gen_err("Cannot destroy AQP1 QP. ret=%i", ret); |
Heiko J Schick | fab9722 | 2006-09-22 15:22:22 -0700 | [diff] [blame] | 565 | return ret; |
| 566 | } |
| 567 | |
| 568 | ret = ib_destroy_cq(sport->ibcq_aqp1); |
| 569 | if (ret) |
Joachim Fenkes | e372219 | 2007-09-11 15:32:22 +0200 | [diff] [blame] | 570 | ehca_gen_err("Cannot destroy AQP1 CQ. ret=%i", ret); |
Heiko J Schick | fab9722 | 2006-09-22 15:22:22 -0700 | [diff] [blame] | 571 | |
| 572 | return ret; |
| 573 | } |
| 574 | |
| 575 | static ssize_t ehca_show_debug_level(struct device_driver *ddp, char *buf) |
| 576 | { |
Joachim Fenkes | 4da27d6 | 2008-04-23 11:55:45 -0700 | [diff] [blame^] | 577 | return snprintf(buf, PAGE_SIZE, "%d\n", ehca_debug_level); |
Heiko J Schick | fab9722 | 2006-09-22 15:22:22 -0700 | [diff] [blame] | 578 | } |
| 579 | |
| 580 | static ssize_t ehca_store_debug_level(struct device_driver *ddp, |
| 581 | const char *buf, size_t count) |
| 582 | { |
| 583 | int value = (*buf) - '0'; |
| 584 | if (value >= 0 && value <= 9) |
| 585 | ehca_debug_level = value; |
| 586 | return 1; |
| 587 | } |
| 588 | |
Roland Dreier | e8e91f6 | 2008-04-16 21:01:10 -0700 | [diff] [blame] | 589 | static DRIVER_ATTR(debug_level, S_IRUSR | S_IWUSR, |
| 590 | ehca_show_debug_level, ehca_store_debug_level); |
Heiko J Schick | fab9722 | 2006-09-22 15:22:22 -0700 | [diff] [blame] | 591 | |
Joachim Fenkes | bba9b60 | 2007-05-09 13:48:25 +0200 | [diff] [blame] | 592 | static struct attribute *ehca_drv_attrs[] = { |
| 593 | &driver_attr_debug_level.attr, |
| 594 | NULL |
| 595 | }; |
Heiko J Schick | fab9722 | 2006-09-22 15:22:22 -0700 | [diff] [blame] | 596 | |
Joachim Fenkes | bba9b60 | 2007-05-09 13:48:25 +0200 | [diff] [blame] | 597 | static struct attribute_group ehca_drv_attr_grp = { |
| 598 | .attrs = ehca_drv_attrs |
| 599 | }; |
Heiko J Schick | fab9722 | 2006-09-22 15:22:22 -0700 | [diff] [blame] | 600 | |
Greg Kroah-Hartman | 23b9c1a | 2007-12-04 22:53:16 -0800 | [diff] [blame] | 601 | static struct attribute_group *ehca_drv_attr_groups[] = { |
| 602 | &ehca_drv_attr_grp, |
| 603 | NULL, |
| 604 | }; |
| 605 | |
Heiko J Schick | fab9722 | 2006-09-22 15:22:22 -0700 | [diff] [blame] | 606 | #define EHCA_RESOURCE_ATTR(name) \ |
| 607 | static ssize_t ehca_show_##name(struct device *dev, \ |
| 608 | struct device_attribute *attr, \ |
| 609 | char *buf) \ |
| 610 | { \ |
| 611 | struct ehca_shca *shca; \ |
| 612 | struct hipz_query_hca *rblock; \ |
| 613 | int data; \ |
| 614 | \ |
| 615 | shca = dev->driver_data; \ |
| 616 | \ |
Hoang-Nam Nguyen | f2d9136 | 2007-01-09 18:04:14 +0100 | [diff] [blame] | 617 | rblock = ehca_alloc_fw_ctrlblock(GFP_KERNEL); \ |
Heiko J Schick | fab9722 | 2006-09-22 15:22:22 -0700 | [diff] [blame] | 618 | if (!rblock) { \ |
Joe Perches | 898eb71 | 2007-10-18 03:06:30 -0700 | [diff] [blame] | 619 | dev_err(dev, "Can't allocate rblock memory.\n"); \ |
Heiko J Schick | fab9722 | 2006-09-22 15:22:22 -0700 | [diff] [blame] | 620 | return 0; \ |
| 621 | } \ |
| 622 | \ |
| 623 | if (hipz_h_query_hca(shca->ipz_hca_handle, rblock) != H_SUCCESS) { \ |
Joe Perches | 898eb71 | 2007-10-18 03:06:30 -0700 | [diff] [blame] | 624 | dev_err(dev, "Can't query device properties\n"); \ |
Hoang-Nam Nguyen | 7e28db5 | 2006-11-07 00:56:39 +0100 | [diff] [blame] | 625 | ehca_free_fw_ctrlblock(rblock); \ |
Heiko J Schick | fab9722 | 2006-09-22 15:22:22 -0700 | [diff] [blame] | 626 | return 0; \ |
| 627 | } \ |
| 628 | \ |
| 629 | data = rblock->name; \ |
Hoang-Nam Nguyen | 7e28db5 | 2006-11-07 00:56:39 +0100 | [diff] [blame] | 630 | ehca_free_fw_ctrlblock(rblock); \ |
Heiko J Schick | fab9722 | 2006-09-22 15:22:22 -0700 | [diff] [blame] | 631 | \ |
| 632 | if ((strcmp(#name, "num_ports") == 0) && (ehca_nr_ports == 1)) \ |
| 633 | return snprintf(buf, 256, "1\n"); \ |
| 634 | else \ |
| 635 | return snprintf(buf, 256, "%d\n", data); \ |
| 636 | \ |
| 637 | } \ |
| 638 | static DEVICE_ATTR(name, S_IRUGO, ehca_show_##name, NULL); |
| 639 | |
| 640 | EHCA_RESOURCE_ATTR(num_ports); |
| 641 | EHCA_RESOURCE_ATTR(hw_ver); |
| 642 | EHCA_RESOURCE_ATTR(max_eq); |
| 643 | EHCA_RESOURCE_ATTR(cur_eq); |
| 644 | EHCA_RESOURCE_ATTR(max_cq); |
| 645 | EHCA_RESOURCE_ATTR(cur_cq); |
| 646 | EHCA_RESOURCE_ATTR(max_qp); |
| 647 | EHCA_RESOURCE_ATTR(cur_qp); |
| 648 | EHCA_RESOURCE_ATTR(max_mr); |
| 649 | EHCA_RESOURCE_ATTR(cur_mr); |
| 650 | EHCA_RESOURCE_ATTR(max_mw); |
| 651 | EHCA_RESOURCE_ATTR(cur_mw); |
| 652 | EHCA_RESOURCE_ATTR(max_pd); |
| 653 | EHCA_RESOURCE_ATTR(max_ah); |
| 654 | |
| 655 | static ssize_t ehca_show_adapter_handle(struct device *dev, |
| 656 | struct device_attribute *attr, |
| 657 | char *buf) |
| 658 | { |
| 659 | struct ehca_shca *shca = dev->driver_data; |
| 660 | |
| 661 | return sprintf(buf, "%lx\n", shca->ipz_hca_handle.handle); |
| 662 | |
| 663 | } |
| 664 | static DEVICE_ATTR(adapter_handle, S_IRUGO, ehca_show_adapter_handle, NULL); |
| 665 | |
Hoang-Nam Nguyen | 5bb7d92 | 2007-07-20 16:01:51 +0200 | [diff] [blame] | 666 | static ssize_t ehca_show_mr_largepage(struct device *dev, |
| 667 | struct device_attribute *attr, |
| 668 | char *buf) |
| 669 | { |
| 670 | return sprintf(buf, "%d\n", ehca_mr_largepage); |
| 671 | } |
| 672 | static DEVICE_ATTR(mr_largepage, S_IRUGO, ehca_show_mr_largepage, NULL); |
| 673 | |
Joachim Fenkes | bba9b60 | 2007-05-09 13:48:25 +0200 | [diff] [blame] | 674 | static struct attribute *ehca_dev_attrs[] = { |
| 675 | &dev_attr_adapter_handle.attr, |
| 676 | &dev_attr_num_ports.attr, |
| 677 | &dev_attr_hw_ver.attr, |
| 678 | &dev_attr_max_eq.attr, |
| 679 | &dev_attr_cur_eq.attr, |
| 680 | &dev_attr_max_cq.attr, |
| 681 | &dev_attr_cur_cq.attr, |
| 682 | &dev_attr_max_qp.attr, |
| 683 | &dev_attr_cur_qp.attr, |
| 684 | &dev_attr_max_mr.attr, |
| 685 | &dev_attr_cur_mr.attr, |
| 686 | &dev_attr_max_mw.attr, |
| 687 | &dev_attr_cur_mw.attr, |
| 688 | &dev_attr_max_pd.attr, |
| 689 | &dev_attr_max_ah.attr, |
Hoang-Nam Nguyen | 5bb7d92 | 2007-07-20 16:01:51 +0200 | [diff] [blame] | 690 | &dev_attr_mr_largepage.attr, |
Joachim Fenkes | bba9b60 | 2007-05-09 13:48:25 +0200 | [diff] [blame] | 691 | NULL |
| 692 | }; |
Heiko J Schick | fab9722 | 2006-09-22 15:22:22 -0700 | [diff] [blame] | 693 | |
Joachim Fenkes | bba9b60 | 2007-05-09 13:48:25 +0200 | [diff] [blame] | 694 | static struct attribute_group ehca_dev_attr_grp = { |
| 695 | .attrs = ehca_dev_attrs |
| 696 | }; |
Heiko J Schick | fab9722 | 2006-09-22 15:22:22 -0700 | [diff] [blame] | 697 | |
Joachim Fenkes | 6b08f3a | 2007-09-26 19:45:51 +1000 | [diff] [blame] | 698 | static int __devinit ehca_probe(struct of_device *dev, |
Heiko J Schick | fab9722 | 2006-09-22 15:22:22 -0700 | [diff] [blame] | 699 | const struct of_device_id *id) |
| 700 | { |
| 701 | struct ehca_shca *shca; |
Stephen Rothwell | a7edd0e | 2007-04-03 10:52:17 +1000 | [diff] [blame] | 702 | const u64 *handle; |
Heiko J Schick | fab9722 | 2006-09-22 15:22:22 -0700 | [diff] [blame] | 703 | struct ib_pd *ibpd; |
Hoang-Nam Nguyen | bbdd267 | 2008-01-17 15:05:45 +0100 | [diff] [blame] | 704 | int ret, i; |
Heiko J Schick | fab9722 | 2006-09-22 15:22:22 -0700 | [diff] [blame] | 705 | |
Joachim Fenkes | 6b08f3a | 2007-09-26 19:45:51 +1000 | [diff] [blame] | 706 | handle = of_get_property(dev->node, "ibm,hca-handle", NULL); |
Heiko J Schick | fab9722 | 2006-09-22 15:22:22 -0700 | [diff] [blame] | 707 | if (!handle) { |
| 708 | ehca_gen_err("Cannot get eHCA handle for adapter: %s.", |
Joachim Fenkes | 6b08f3a | 2007-09-26 19:45:51 +1000 | [diff] [blame] | 709 | dev->node->full_name); |
Heiko J Schick | fab9722 | 2006-09-22 15:22:22 -0700 | [diff] [blame] | 710 | return -ENODEV; |
| 711 | } |
| 712 | |
| 713 | if (!(*handle)) { |
| 714 | ehca_gen_err("Wrong eHCA handle for adapter: %s.", |
Joachim Fenkes | 6b08f3a | 2007-09-26 19:45:51 +1000 | [diff] [blame] | 715 | dev->node->full_name); |
Heiko J Schick | fab9722 | 2006-09-22 15:22:22 -0700 | [diff] [blame] | 716 | return -ENODEV; |
| 717 | } |
| 718 | |
| 719 | shca = (struct ehca_shca *)ib_alloc_device(sizeof(*shca)); |
| 720 | if (!shca) { |
| 721 | ehca_gen_err("Cannot allocate shca memory."); |
| 722 | return -ENOMEM; |
| 723 | } |
Joachim Fenkes | c4ed790 | 2007-04-24 17:44:31 +0200 | [diff] [blame] | 724 | mutex_init(&shca->modify_mutex); |
Hoang-Nam Nguyen | bbdd267 | 2008-01-17 15:05:45 +0100 | [diff] [blame] | 725 | for (i = 0; i < ARRAY_SIZE(shca->sport); i++) |
| 726 | spin_lock_init(&shca->sport[i].mod_sqp_lock); |
Heiko J Schick | fab9722 | 2006-09-22 15:22:22 -0700 | [diff] [blame] | 727 | |
Joachim Fenkes | 6b08f3a | 2007-09-26 19:45:51 +1000 | [diff] [blame] | 728 | shca->ofdev = dev; |
Heiko J Schick | fab9722 | 2006-09-22 15:22:22 -0700 | [diff] [blame] | 729 | shca->ipz_hca_handle.handle = *handle; |
Joachim Fenkes | 6b08f3a | 2007-09-26 19:45:51 +1000 | [diff] [blame] | 730 | dev->dev.driver_data = shca; |
Heiko J Schick | fab9722 | 2006-09-22 15:22:22 -0700 | [diff] [blame] | 731 | |
| 732 | ret = ehca_sense_attributes(shca); |
| 733 | if (ret < 0) { |
| 734 | ehca_gen_err("Cannot sense eHCA attributes."); |
| 735 | goto probe1; |
| 736 | } |
| 737 | |
Hoang-Nam Nguyen | 0f248d9 | 2006-10-02 14:52:17 -0700 | [diff] [blame] | 738 | ret = ehca_init_device(shca); |
Heiko J Schick | fab9722 | 2006-09-22 15:22:22 -0700 | [diff] [blame] | 739 | if (ret) { |
Hoang-Nam Nguyen | 0f248d9 | 2006-10-02 14:52:17 -0700 | [diff] [blame] | 740 | ehca_gen_err("Cannot init ehca device struct"); |
Heiko J Schick | fab9722 | 2006-09-22 15:22:22 -0700 | [diff] [blame] | 741 | goto probe1; |
| 742 | } |
| 743 | |
| 744 | /* create event queues */ |
| 745 | ret = ehca_create_eq(shca, &shca->eq, EHCA_EQ, 2048); |
| 746 | if (ret) { |
| 747 | ehca_err(&shca->ib_device, "Cannot create EQ."); |
Hoang-Nam Nguyen | 0f248d9 | 2006-10-02 14:52:17 -0700 | [diff] [blame] | 748 | goto probe1; |
Heiko J Schick | fab9722 | 2006-09-22 15:22:22 -0700 | [diff] [blame] | 749 | } |
| 750 | |
| 751 | ret = ehca_create_eq(shca, &shca->neq, EHCA_NEQ, 513); |
| 752 | if (ret) { |
| 753 | ehca_err(&shca->ib_device, "Cannot create NEQ."); |
| 754 | goto probe3; |
| 755 | } |
| 756 | |
| 757 | /* create internal protection domain */ |
Hoang-Nam Nguyen | 2b94397 | 2007-07-12 17:53:47 +0200 | [diff] [blame] | 758 | ibpd = ehca_alloc_pd(&shca->ib_device, (void *)(-1), NULL); |
Heiko J Schick | fab9722 | 2006-09-22 15:22:22 -0700 | [diff] [blame] | 759 | if (IS_ERR(ibpd)) { |
| 760 | ehca_err(&shca->ib_device, "Cannot create internal PD."); |
| 761 | ret = PTR_ERR(ibpd); |
| 762 | goto probe4; |
| 763 | } |
| 764 | |
| 765 | shca->pd = container_of(ibpd, struct ehca_pd, ib_pd); |
| 766 | shca->pd->ib_pd.device = &shca->ib_device; |
| 767 | |
| 768 | /* create internal max MR */ |
| 769 | ret = ehca_reg_internal_maxmr(shca, shca->pd, &shca->maxmr); |
| 770 | |
| 771 | if (ret) { |
Joachim Fenkes | e372219 | 2007-09-11 15:32:22 +0200 | [diff] [blame] | 772 | ehca_err(&shca->ib_device, "Cannot create internal MR ret=%i", |
Heiko J Schick | fab9722 | 2006-09-22 15:22:22 -0700 | [diff] [blame] | 773 | ret); |
| 774 | goto probe5; |
| 775 | } |
| 776 | |
Hoang-Nam Nguyen | 0f248d9 | 2006-10-02 14:52:17 -0700 | [diff] [blame] | 777 | ret = ib_register_device(&shca->ib_device); |
| 778 | if (ret) { |
| 779 | ehca_err(&shca->ib_device, |
Joachim Fenkes | e372219 | 2007-09-11 15:32:22 +0200 | [diff] [blame] | 780 | "ib_register_device() failed ret=%i", ret); |
Hoang-Nam Nguyen | 0f248d9 | 2006-10-02 14:52:17 -0700 | [diff] [blame] | 781 | goto probe6; |
| 782 | } |
| 783 | |
Heiko J Schick | fab9722 | 2006-09-22 15:22:22 -0700 | [diff] [blame] | 784 | /* create AQP1 for port 1 */ |
| 785 | if (ehca_open_aqp1 == 1) { |
| 786 | shca->sport[0].port_state = IB_PORT_DOWN; |
| 787 | ret = ehca_create_aqp1(shca, 1); |
| 788 | if (ret) { |
| 789 | ehca_err(&shca->ib_device, |
| 790 | "Cannot create AQP1 for port 1."); |
Hoang-Nam Nguyen | 0f248d9 | 2006-10-02 14:52:17 -0700 | [diff] [blame] | 791 | goto probe7; |
Heiko J Schick | fab9722 | 2006-09-22 15:22:22 -0700 | [diff] [blame] | 792 | } |
| 793 | } |
| 794 | |
| 795 | /* create AQP1 for port 2 */ |
| 796 | if ((ehca_open_aqp1 == 1) && (shca->num_ports == 2)) { |
| 797 | shca->sport[1].port_state = IB_PORT_DOWN; |
| 798 | ret = ehca_create_aqp1(shca, 2); |
| 799 | if (ret) { |
| 800 | ehca_err(&shca->ib_device, |
| 801 | "Cannot create AQP1 for port 2."); |
Hoang-Nam Nguyen | 0f248d9 | 2006-10-02 14:52:17 -0700 | [diff] [blame] | 802 | goto probe8; |
Heiko J Schick | fab9722 | 2006-09-22 15:22:22 -0700 | [diff] [blame] | 803 | } |
| 804 | } |
| 805 | |
Joachim Fenkes | 6b08f3a | 2007-09-26 19:45:51 +1000 | [diff] [blame] | 806 | ret = sysfs_create_group(&dev->dev.kobj, &ehca_dev_attr_grp); |
Joachim Fenkes | bba9b60 | 2007-05-09 13:48:25 +0200 | [diff] [blame] | 807 | if (ret) /* only complain; we can live without attributes */ |
| 808 | ehca_err(&shca->ib_device, |
| 809 | "Cannot create device attributes ret=%d", ret); |
Heiko J Schick | fab9722 | 2006-09-22 15:22:22 -0700 | [diff] [blame] | 810 | |
| 811 | spin_lock(&shca_list_lock); |
| 812 | list_add(&shca->shca_list, &shca_list); |
| 813 | spin_unlock(&shca_list_lock); |
| 814 | |
| 815 | return 0; |
| 816 | |
Hoang-Nam Nguyen | 0f248d9 | 2006-10-02 14:52:17 -0700 | [diff] [blame] | 817 | probe8: |
Heiko J Schick | fab9722 | 2006-09-22 15:22:22 -0700 | [diff] [blame] | 818 | ret = ehca_destroy_aqp1(&shca->sport[0]); |
| 819 | if (ret) |
| 820 | ehca_err(&shca->ib_device, |
Joachim Fenkes | e372219 | 2007-09-11 15:32:22 +0200 | [diff] [blame] | 821 | "Cannot destroy AQP1 for port 1. ret=%i", ret); |
Heiko J Schick | fab9722 | 2006-09-22 15:22:22 -0700 | [diff] [blame] | 822 | |
Hoang-Nam Nguyen | 0f248d9 | 2006-10-02 14:52:17 -0700 | [diff] [blame] | 823 | probe7: |
| 824 | ib_unregister_device(&shca->ib_device); |
| 825 | |
Heiko J Schick | fab9722 | 2006-09-22 15:22:22 -0700 | [diff] [blame] | 826 | probe6: |
| 827 | ret = ehca_dereg_internal_maxmr(shca); |
| 828 | if (ret) |
| 829 | ehca_err(&shca->ib_device, |
| 830 | "Cannot destroy internal MR. ret=%x", ret); |
| 831 | |
| 832 | probe5: |
| 833 | ret = ehca_dealloc_pd(&shca->pd->ib_pd); |
| 834 | if (ret) |
| 835 | ehca_err(&shca->ib_device, |
| 836 | "Cannot destroy internal PD. ret=%x", ret); |
| 837 | |
| 838 | probe4: |
| 839 | ret = ehca_destroy_eq(shca, &shca->neq); |
| 840 | if (ret) |
| 841 | ehca_err(&shca->ib_device, |
| 842 | "Cannot destroy NEQ. ret=%x", ret); |
| 843 | |
| 844 | probe3: |
| 845 | ret = ehca_destroy_eq(shca, &shca->eq); |
| 846 | if (ret) |
| 847 | ehca_err(&shca->ib_device, |
| 848 | "Cannot destroy EQ. ret=%x", ret); |
| 849 | |
Heiko J Schick | fab9722 | 2006-09-22 15:22:22 -0700 | [diff] [blame] | 850 | probe1: |
| 851 | ib_dealloc_device(&shca->ib_device); |
| 852 | |
| 853 | return -EINVAL; |
| 854 | } |
| 855 | |
Joachim Fenkes | 6b08f3a | 2007-09-26 19:45:51 +1000 | [diff] [blame] | 856 | static int __devexit ehca_remove(struct of_device *dev) |
Heiko J Schick | fab9722 | 2006-09-22 15:22:22 -0700 | [diff] [blame] | 857 | { |
Joachim Fenkes | 6b08f3a | 2007-09-26 19:45:51 +1000 | [diff] [blame] | 858 | struct ehca_shca *shca = dev->dev.driver_data; |
Heiko J Schick | fab9722 | 2006-09-22 15:22:22 -0700 | [diff] [blame] | 859 | int ret; |
| 860 | |
Joachim Fenkes | 6b08f3a | 2007-09-26 19:45:51 +1000 | [diff] [blame] | 861 | sysfs_remove_group(&dev->dev.kobj, &ehca_dev_attr_grp); |
Heiko J Schick | fab9722 | 2006-09-22 15:22:22 -0700 | [diff] [blame] | 862 | |
| 863 | if (ehca_open_aqp1 == 1) { |
| 864 | int i; |
| 865 | for (i = 0; i < shca->num_ports; i++) { |
| 866 | ret = ehca_destroy_aqp1(&shca->sport[i]); |
| 867 | if (ret) |
| 868 | ehca_err(&shca->ib_device, |
| 869 | "Cannot destroy AQP1 for port %x " |
Joachim Fenkes | e372219 | 2007-09-11 15:32:22 +0200 | [diff] [blame] | 870 | "ret=%i", ret, i); |
Heiko J Schick | fab9722 | 2006-09-22 15:22:22 -0700 | [diff] [blame] | 871 | } |
| 872 | } |
| 873 | |
| 874 | ib_unregister_device(&shca->ib_device); |
| 875 | |
| 876 | ret = ehca_dereg_internal_maxmr(shca); |
| 877 | if (ret) |
| 878 | ehca_err(&shca->ib_device, |
Joachim Fenkes | e372219 | 2007-09-11 15:32:22 +0200 | [diff] [blame] | 879 | "Cannot destroy internal MR. ret=%i", ret); |
Heiko J Schick | fab9722 | 2006-09-22 15:22:22 -0700 | [diff] [blame] | 880 | |
| 881 | ret = ehca_dealloc_pd(&shca->pd->ib_pd); |
| 882 | if (ret) |
| 883 | ehca_err(&shca->ib_device, |
Joachim Fenkes | e372219 | 2007-09-11 15:32:22 +0200 | [diff] [blame] | 884 | "Cannot destroy internal PD. ret=%i", ret); |
Heiko J Schick | fab9722 | 2006-09-22 15:22:22 -0700 | [diff] [blame] | 885 | |
| 886 | ret = ehca_destroy_eq(shca, &shca->eq); |
| 887 | if (ret) |
Joachim Fenkes | e372219 | 2007-09-11 15:32:22 +0200 | [diff] [blame] | 888 | ehca_err(&shca->ib_device, "Cannot destroy EQ. ret=%i", ret); |
Heiko J Schick | fab9722 | 2006-09-22 15:22:22 -0700 | [diff] [blame] | 889 | |
| 890 | ret = ehca_destroy_eq(shca, &shca->neq); |
| 891 | if (ret) |
Joachim Fenkes | e372219 | 2007-09-11 15:32:22 +0200 | [diff] [blame] | 892 | ehca_err(&shca->ib_device, "Canot destroy NEQ. ret=%i", ret); |
Heiko J Schick | fab9722 | 2006-09-22 15:22:22 -0700 | [diff] [blame] | 893 | |
| 894 | ib_dealloc_device(&shca->ib_device); |
| 895 | |
| 896 | spin_lock(&shca_list_lock); |
| 897 | list_del(&shca->shca_list); |
| 898 | spin_unlock(&shca_list_lock); |
| 899 | |
| 900 | return ret; |
| 901 | } |
| 902 | |
| 903 | static struct of_device_id ehca_device_table[] = |
| 904 | { |
| 905 | { |
| 906 | .name = "lhca", |
| 907 | .compatible = "IBM,lhca", |
| 908 | }, |
| 909 | {}, |
| 910 | }; |
| 911 | |
Joachim Fenkes | 6b08f3a | 2007-09-26 19:45:51 +1000 | [diff] [blame] | 912 | static struct of_platform_driver ehca_driver = { |
| 913 | .name = "ehca", |
| 914 | .match_table = ehca_device_table, |
| 915 | .probe = ehca_probe, |
| 916 | .remove = ehca_remove, |
Greg Kroah-Hartman | 23b9c1a | 2007-12-04 22:53:16 -0800 | [diff] [blame] | 917 | .driver = { |
| 918 | .groups = ehca_drv_attr_groups, |
| 919 | }, |
Heiko J Schick | fab9722 | 2006-09-22 15:22:22 -0700 | [diff] [blame] | 920 | }; |
| 921 | |
| 922 | void ehca_poll_eqs(unsigned long data) |
| 923 | { |
| 924 | struct ehca_shca *shca; |
| 925 | |
| 926 | spin_lock(&shca_list_lock); |
| 927 | list_for_each_entry(shca, &shca_list, shca_list) { |
Hoang-Nam Nguyen | 78d8d5f | 2007-02-15 17:06:33 +0100 | [diff] [blame] | 928 | if (shca->eq.is_initialized) { |
| 929 | /* call deadman proc only if eq ptr does not change */ |
| 930 | struct ehca_eq *eq = &shca->eq; |
| 931 | int max = 3; |
| 932 | volatile u64 q_ofs, q_ofs2; |
| 933 | u64 flags; |
| 934 | spin_lock_irqsave(&eq->spinlock, flags); |
| 935 | q_ofs = eq->ipz_queue.current_q_offset; |
| 936 | spin_unlock_irqrestore(&eq->spinlock, flags); |
| 937 | do { |
| 938 | spin_lock_irqsave(&eq->spinlock, flags); |
| 939 | q_ofs2 = eq->ipz_queue.current_q_offset; |
| 940 | spin_unlock_irqrestore(&eq->spinlock, flags); |
| 941 | max--; |
| 942 | } while (q_ofs == q_ofs2 && max > 0); |
| 943 | if (q_ofs == q_ofs2) |
| 944 | ehca_process_eq(shca, 0); |
| 945 | } |
Heiko J Schick | fab9722 | 2006-09-22 15:22:22 -0700 | [diff] [blame] | 946 | } |
Anton Blanchard | 1a7d2dc | 2007-10-15 00:49:07 -0500 | [diff] [blame] | 947 | mod_timer(&poll_eqs_timer, round_jiffies(jiffies + HZ)); |
Heiko J Schick | fab9722 | 2006-09-22 15:22:22 -0700 | [diff] [blame] | 948 | spin_unlock(&shca_list_lock); |
| 949 | } |
| 950 | |
Roland Dreier | e8e91f6 | 2008-04-16 21:01:10 -0700 | [diff] [blame] | 951 | static int __init ehca_module_init(void) |
Heiko J Schick | fab9722 | 2006-09-22 15:22:22 -0700 | [diff] [blame] | 952 | { |
| 953 | int ret; |
| 954 | |
| 955 | printk(KERN_INFO "eHCA Infiniband Device Driver " |
Joachim Fenkes | 39089e7 | 2007-09-11 15:35:32 +0200 | [diff] [blame] | 956 | "(Version " HCAD_VERSION ")\n"); |
Heiko J Schick | fab9722 | 2006-09-22 15:22:22 -0700 | [diff] [blame] | 957 | |
Hoang-Nam Nguyen | 2b94397 | 2007-07-12 17:53:47 +0200 | [diff] [blame] | 958 | ret = ehca_create_comp_pool(); |
| 959 | if (ret) { |
Heiko J Schick | fab9722 | 2006-09-22 15:22:22 -0700 | [diff] [blame] | 960 | ehca_gen_err("Cannot create comp pool."); |
| 961 | return ret; |
| 962 | } |
| 963 | |
Hoang-Nam Nguyen | 2b94397 | 2007-07-12 17:53:47 +0200 | [diff] [blame] | 964 | ret = ehca_create_slab_caches(); |
| 965 | if (ret) { |
Heiko J Schick | fab9722 | 2006-09-22 15:22:22 -0700 | [diff] [blame] | 966 | ehca_gen_err("Cannot create SLAB caches"); |
| 967 | ret = -ENOMEM; |
| 968 | goto module_init1; |
| 969 | } |
| 970 | |
Hoang-Nam Nguyen | 2b94397 | 2007-07-12 17:53:47 +0200 | [diff] [blame] | 971 | ret = ibmebus_register_driver(&ehca_driver); |
| 972 | if (ret) { |
Heiko J Schick | fab9722 | 2006-09-22 15:22:22 -0700 | [diff] [blame] | 973 | ehca_gen_err("Cannot register eHCA device driver"); |
| 974 | ret = -EINVAL; |
| 975 | goto module_init2; |
| 976 | } |
| 977 | |
Heiko J Schick | fab9722 | 2006-09-22 15:22:22 -0700 | [diff] [blame] | 978 | if (ehca_poll_all_eqs != 1) { |
| 979 | ehca_gen_err("WARNING!!!"); |
| 980 | ehca_gen_err("It is possible to lose interrupts."); |
| 981 | } else { |
| 982 | init_timer(&poll_eqs_timer); |
| 983 | poll_eqs_timer.function = ehca_poll_eqs; |
| 984 | poll_eqs_timer.expires = jiffies + HZ; |
| 985 | add_timer(&poll_eqs_timer); |
| 986 | } |
| 987 | |
| 988 | return 0; |
| 989 | |
| 990 | module_init2: |
| 991 | ehca_destroy_slab_caches(); |
| 992 | |
| 993 | module_init1: |
| 994 | ehca_destroy_comp_pool(); |
| 995 | return ret; |
| 996 | }; |
| 997 | |
Roland Dreier | e8e91f6 | 2008-04-16 21:01:10 -0700 | [diff] [blame] | 998 | static void __exit ehca_module_exit(void) |
Heiko J Schick | fab9722 | 2006-09-22 15:22:22 -0700 | [diff] [blame] | 999 | { |
| 1000 | if (ehca_poll_all_eqs == 1) |
| 1001 | del_timer_sync(&poll_eqs_timer); |
| 1002 | |
Heiko J Schick | fab9722 | 2006-09-22 15:22:22 -0700 | [diff] [blame] | 1003 | ibmebus_unregister_driver(&ehca_driver); |
| 1004 | |
| 1005 | ehca_destroy_slab_caches(); |
| 1006 | |
| 1007 | ehca_destroy_comp_pool(); |
| 1008 | |
| 1009 | idr_destroy(&ehca_cq_idr); |
| 1010 | idr_destroy(&ehca_qp_idr); |
| 1011 | }; |
| 1012 | |
| 1013 | module_init(ehca_module_init); |
| 1014 | module_exit(ehca_module_exit); |