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