1 /*
2 * CDDL HEADER START
3 *
4 * The contents of this file are subject to the terms of the
5 * Common Development and Distribution License (the "License").
6 * You may not use this file except in compliance with the License.
7 *
8 * You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
9 * or http://www.opensolaris.org/os/licensing.
10 * See the License for the specific language governing permissions
11 * and limitations under the License.
12 *
13 * When distributing Covered Code, include this CDDL HEADER in each
14 * file and include the License file at usr/src/OPENSOLARIS.LICENSE.
15 * If applicable, add the following below this CDDL HEADER, with the
16 * fields enclosed by brackets "[]" replaced with your own identifying
17 * information: Portions Copyright [yyyy] [name of copyright owner]
18 *
19 * CDDL HEADER END
20 */
21
22 /*
23 * Copyright (c) 2008, 2010, Oracle and/or its affiliates. All rights reserved.
24 */
25
26 /*
27 * hermon.c
28 * Hermon (InfiniBand) HCA Driver attach/detach Routines
29 *
30 * Implements all the routines necessary for the attach, setup,
31 * initialization (and subsequent possible teardown and detach) of the
32 * Hermon InfiniBand HCA driver.
33 */
34
35 #include <sys/types.h>
36 #include <sys/file.h>
37 #include <sys/open.h>
38 #include <sys/conf.h>
39 #include <sys/ddi.h>
40 #include <sys/sunddi.h>
41 #include <sys/modctl.h>
42 #include <sys/stat.h>
43 #include <sys/pci.h>
44 #include <sys/pci_cap.h>
45 #include <sys/bitmap.h>
46 #include <sys/policy.h>
47
48 #include <sys/ib/adapters/hermon/hermon.h>
49
50 /* /etc/system can tune this down, if that is desirable. */
51 int hermon_msix_max = HERMON_MSIX_MAX;
52
53 /* The following works around a problem in pre-2_7_000 firmware. */
54 #define HERMON_FW_WORKAROUND
55
56 int hermon_verbose = 0;
57
58 /* Hermon HCA State Pointer */
59 void *hermon_statep;
60
61 int debug_vpd = 0;
62
63 /* Disable the internal error-check polling thread */
64 int hermon_no_inter_err_chk = 0;
65
66 /*
67 * The Hermon "userland resource database" is common to instances of the
68 * Hermon HCA driver. This structure "hermon_userland_rsrc_db" contains all
69 * the necessary information to maintain it.
70 */
71 hermon_umap_db_t hermon_userland_rsrc_db;
72
73 static int hermon_attach(dev_info_t *, ddi_attach_cmd_t);
74 static int hermon_detach(dev_info_t *, ddi_detach_cmd_t);
75 static int hermon_open(dev_t *, int, int, cred_t *);
76 static int hermon_close(dev_t, int, int, cred_t *);
77 static int hermon_getinfo(dev_info_t *, ddi_info_cmd_t, void *, void **);
78
79 static int hermon_drv_init(hermon_state_t *state, dev_info_t *dip,
80 int instance);
81 static void hermon_drv_fini(hermon_state_t *state);
82 static void hermon_drv_fini2(hermon_state_t *state);
83 static int hermon_isr_init(hermon_state_t *state);
84 static void hermon_isr_fini(hermon_state_t *state);
85
86 static int hermon_hw_init(hermon_state_t *state);
87
88 static void hermon_hw_fini(hermon_state_t *state,
89 hermon_drv_cleanup_level_t cleanup);
90 static int hermon_soft_state_init(hermon_state_t *state);
91 static void hermon_soft_state_fini(hermon_state_t *state);
92 static int hermon_icm_config_setup(hermon_state_t *state,
93 hermon_hw_initqueryhca_t *inithca);
94 static void hermon_icm_tables_init(hermon_state_t *state);
95 static void hermon_icm_tables_fini(hermon_state_t *state);
96 static int hermon_icm_dma_init(hermon_state_t *state);
97 static void hermon_icm_dma_fini(hermon_state_t *state);
98 static void hermon_inithca_set(hermon_state_t *state,
99 hermon_hw_initqueryhca_t *inithca);
100 static int hermon_hca_port_init(hermon_state_t *state);
101 static int hermon_hca_ports_shutdown(hermon_state_t *state, uint_t num_init);
102 static int hermon_internal_uarpg_init(hermon_state_t *state);
103 static void hermon_internal_uarpg_fini(hermon_state_t *state);
104 static int hermon_special_qp_contexts_reserve(hermon_state_t *state);
105 static void hermon_special_qp_contexts_unreserve(hermon_state_t *state);
106 static int hermon_sw_reset(hermon_state_t *state);
107 static int hermon_mcg_init(hermon_state_t *state);
108 static void hermon_mcg_fini(hermon_state_t *state);
109 static int hermon_fw_version_check(hermon_state_t *state);
110 static void hermon_device_info_report(hermon_state_t *state);
111 static int hermon_pci_capability_list(hermon_state_t *state,
112 ddi_acc_handle_t hdl);
113 static void hermon_pci_capability_vpd(hermon_state_t *state,
114 ddi_acc_handle_t hdl, uint_t offset);
115 static int hermon_pci_read_vpd(ddi_acc_handle_t hdl, uint_t offset,
116 uint32_t addr, uint32_t *data);
117 static int hermon_intr_or_msi_init(hermon_state_t *state);
118 static int hermon_add_intrs(hermon_state_t *state, int intr_type);
119 static int hermon_intr_or_msi_fini(hermon_state_t *state);
120 void hermon_pci_capability_msix(hermon_state_t *state, ddi_acc_handle_t hdl,
121 uint_t offset);
122
123 static uint64_t hermon_size_icm(hermon_state_t *state);
124
125 /* X86 fastreboot support */
126 static ushort_t get_msix_ctrl(dev_info_t *);
127 static size_t get_msix_tbl_size(dev_info_t *);
128 static size_t get_msix_pba_size(dev_info_t *);
129 static void hermon_set_msix_info(hermon_state_t *);
130 static int hermon_intr_disable(hermon_state_t *);
131 static int hermon_quiesce(dev_info_t *);
132
133
134 /* Character/Block Operations */
135 static struct cb_ops hermon_cb_ops = {
136 hermon_open, /* open */
137 hermon_close, /* close */
138 nodev, /* strategy (block) */
139 nodev, /* print (block) */
140 nodev, /* dump (block) */
141 nodev, /* read */
142 nodev, /* write */
143 hermon_ioctl, /* ioctl */
144 hermon_devmap, /* devmap */
145 NULL, /* mmap */
146 nodev, /* segmap */
147 nochpoll, /* chpoll */
148 ddi_prop_op, /* prop_op */
149 NULL, /* streams */
150 D_NEW | D_MP |
151 D_64BIT | D_HOTPLUG |
152 D_DEVMAP, /* flags */
153 CB_REV /* rev */
154 };
155
156 /* Driver Operations */
157 static struct dev_ops hermon_ops = {
158 DEVO_REV, /* struct rev */
159 0, /* refcnt */
160 hermon_getinfo, /* getinfo */
161 nulldev, /* identify */
162 nulldev, /* probe */
163 hermon_attach, /* attach */
164 hermon_detach, /* detach */
165 nodev, /* reset */
166 &hermon_cb_ops, /* cb_ops */
167 NULL, /* bus_ops */
168 nodev, /* power */
169 hermon_quiesce, /* devo_quiesce */
170 };
171
172 /* Module Driver Info */
173 static struct modldrv hermon_modldrv = {
174 &mod_driverops,
175 "ConnectX IB Driver",
176 &hermon_ops
177 };
178
179 /* Module Linkage */
180 static struct modlinkage hermon_modlinkage = {
181 MODREV_1,
182 &hermon_modldrv,
183 NULL
184 };
185
186 /*
187 * This extern refers to the ibc_operations_t function vector that is defined
188 * in the hermon_ci.c file.
189 */
190 extern ibc_operations_t hermon_ibc_ops;
191
192 /*
193 * _init()
194 */
195 int
_init()196 _init()
197 {
198 int status;
199
200 status = ddi_soft_state_init(&hermon_statep, sizeof (hermon_state_t),
201 (size_t)HERMON_INITIAL_STATES);
202 if (status != 0) {
203 return (status);
204 }
205
206 status = ibc_init(&hermon_modlinkage);
207 if (status != 0) {
208 ddi_soft_state_fini(&hermon_statep);
209 return (status);
210 }
211
212 status = mod_install(&hermon_modlinkage);
213 if (status != 0) {
214 ibc_fini(&hermon_modlinkage);
215 ddi_soft_state_fini(&hermon_statep);
216 return (status);
217 }
218
219 /* Initialize the Hermon "userland resources database" */
220 hermon_umap_db_init();
221
222 return (status);
223 }
224
225
226 /*
227 * _info()
228 */
229 int
_info(struct modinfo * modinfop)230 _info(struct modinfo *modinfop)
231 {
232 int status;
233
234 status = mod_info(&hermon_modlinkage, modinfop);
235 return (status);
236 }
237
238
239 /*
240 * _fini()
241 */
242 int
_fini()243 _fini()
244 {
245 int status;
246
247 status = mod_remove(&hermon_modlinkage);
248 if (status != 0) {
249 return (status);
250 }
251
252 /* Destroy the Hermon "userland resources database" */
253 hermon_umap_db_fini();
254
255 ibc_fini(&hermon_modlinkage);
256 ddi_soft_state_fini(&hermon_statep);
257
258 return (status);
259 }
260
261
262 /*
263 * hermon_getinfo()
264 */
265 /* ARGSUSED */
266 static int
hermon_getinfo(dev_info_t * dip,ddi_info_cmd_t cmd,void * arg,void ** result)267 hermon_getinfo(dev_info_t *dip, ddi_info_cmd_t cmd, void *arg, void **result)
268 {
269 dev_t dev;
270 hermon_state_t *state;
271 minor_t instance;
272
273 switch (cmd) {
274 case DDI_INFO_DEVT2DEVINFO:
275 dev = (dev_t)arg;
276 instance = HERMON_DEV_INSTANCE(dev);
277 state = ddi_get_soft_state(hermon_statep, instance);
278 if (state == NULL) {
279 return (DDI_FAILURE);
280 }
281 *result = (void *)state->hs_dip;
282 return (DDI_SUCCESS);
283
284 case DDI_INFO_DEVT2INSTANCE:
285 dev = (dev_t)arg;
286 instance = HERMON_DEV_INSTANCE(dev);
287 *result = (void *)(uintptr_t)instance;
288 return (DDI_SUCCESS);
289
290 default:
291 break;
292 }
293
294 return (DDI_FAILURE);
295 }
296
297
298 /*
299 * hermon_open()
300 */
301 /* ARGSUSED */
302 static int
hermon_open(dev_t * devp,int flag,int otyp,cred_t * credp)303 hermon_open(dev_t *devp, int flag, int otyp, cred_t *credp)
304 {
305 hermon_state_t *state;
306 hermon_rsrc_t *rsrcp;
307 hermon_umap_db_entry_t *umapdb, *umapdb2;
308 minor_t instance;
309 uint64_t key, value;
310 uint_t hr_indx;
311 dev_t dev;
312 int status;
313
314 instance = HERMON_DEV_INSTANCE(*devp);
315 state = ddi_get_soft_state(hermon_statep, instance);
316 if (state == NULL) {
317 return (ENXIO);
318 }
319
320 /*
321 * Only allow driver to be opened for character access, and verify
322 * whether exclusive access is allowed.
323 */
324 if ((otyp != OTYP_CHR) || ((flag & FEXCL) &&
325 secpolicy_excl_open(credp) != 0)) {
326 return (EINVAL);
327 }
328
329 /*
330 * Search for the current process PID in the "userland resources
331 * database". If it is not found, then attempt to allocate a UAR
332 * page and add the ("key", "value") pair to the database.
333 * Note: As a last step we always return a devp appropriate for
334 * the open. Either we return a new minor number (based on the
335 * instance and the UAR page index) or we return the current minor
336 * number for the given client process.
337 *
338 * We also add an entry to the database to allow for lookup from
339 * "dev_t" to the current process PID. This is necessary because,
340 * under certain circumstance, the process PID that calls the Hermon
341 * close() entry point may not be the same as the one who called
342 * open(). Specifically, this can happen if a child process calls
343 * the Hermon's open() entry point, gets a UAR page, maps it out (using
344 * mmap()), and then exits without calling munmap(). Because mmap()
345 * adds a reference to the file descriptor, at the exit of the child
346 * process the file descriptor is "inherited" by the parent (and will
347 * be close()'d by the parent's PID only when it exits).
348 *
349 * Note: We use the hermon_umap_db_find_nolock() and
350 * hermon_umap_db_add_nolock() database access routines below (with
351 * an explicit mutex_enter of the database lock - "hdl_umapdb_lock")
352 * to ensure that the multiple accesses (in this case searching for,
353 * and then adding _two_ database entries) can be done atomically.
354 */
355 key = ddi_get_pid();
356 mutex_enter(&hermon_userland_rsrc_db.hdl_umapdb_lock);
357 status = hermon_umap_db_find_nolock(instance, key,
358 MLNX_UMAP_UARPG_RSRC, &value, 0, NULL);
359 if (status != DDI_SUCCESS) {
360 /*
361 * If we are in 'maintenance mode', we cannot alloc a UAR page.
362 * But we still need some rsrcp value, and a mostly unique
363 * hr_indx value. So we set rsrcp to NULL for maintenance
364 * mode, and use a rolling count for hr_indx. The field
365 * 'hs_open_hr_indx' is used only in this maintenance mode
366 * condition.
367 *
368 * Otherwise, if we are in operational mode then we allocate
369 * the UAR page as normal, and use the rsrcp value and tr_indx
370 * value from that allocation.
371 */
372 if (!HERMON_IS_OPERATIONAL(state->hs_operational_mode)) {
373 rsrcp = NULL;
374 hr_indx = state->hs_open_ar_indx++;
375 } else {
376 /* Allocate a new UAR page for this process */
377 status = hermon_rsrc_alloc(state, HERMON_UARPG, 1,
378 HERMON_NOSLEEP, &rsrcp);
379 if (status != DDI_SUCCESS) {
380 mutex_exit(
381 &hermon_userland_rsrc_db.hdl_umapdb_lock);
382 return (EAGAIN);
383 }
384
385 hr_indx = rsrcp->hr_indx;
386 }
387
388 /*
389 * Allocate an entry to track the UAR page resource in the
390 * "userland resources database".
391 */
392 umapdb = hermon_umap_db_alloc(instance, key,
393 MLNX_UMAP_UARPG_RSRC, (uint64_t)(uintptr_t)rsrcp);
394 if (umapdb == NULL) {
395 mutex_exit(&hermon_userland_rsrc_db.hdl_umapdb_lock);
396 /* If in "maintenance mode", don't free the rsrc */
397 if (HERMON_IS_OPERATIONAL(state->hs_operational_mode)) {
398 hermon_rsrc_free(state, &rsrcp);
399 }
400 return (EAGAIN);
401 }
402
403 /*
404 * Create a new device number. Minor number is a function of
405 * the UAR page index (15 bits) and the device instance number
406 * (3 bits).
407 */
408 dev = makedevice(getmajor(*devp), (hr_indx <<
409 HERMON_MINORNUM_SHIFT) | instance);
410
411 /*
412 * Allocate another entry in the "userland resources database"
413 * to track the association of the device number (above) to
414 * the current process ID (in "key").
415 */
416 umapdb2 = hermon_umap_db_alloc(instance, dev,
417 MLNX_UMAP_PID_RSRC, (uint64_t)key);
418 if (umapdb2 == NULL) {
419 mutex_exit(&hermon_userland_rsrc_db.hdl_umapdb_lock);
420 hermon_umap_db_free(umapdb);
421 /* If in "maintenance mode", don't free the rsrc */
422 if (HERMON_IS_OPERATIONAL(state->hs_operational_mode)) {
423 hermon_rsrc_free(state, &rsrcp);
424 }
425 return (EAGAIN);
426 }
427
428 /* Add the entries to the database */
429 hermon_umap_db_add_nolock(umapdb);
430 hermon_umap_db_add_nolock(umapdb2);
431
432 } else {
433 /*
434 * Return the same device number as on the original open()
435 * call. This was calculated as a function of the UAR page
436 * index (top 16 bits) and the device instance number
437 */
438 rsrcp = (hermon_rsrc_t *)(uintptr_t)value;
439 dev = makedevice(getmajor(*devp), (rsrcp->hr_indx <<
440 HERMON_MINORNUM_SHIFT) | instance);
441 }
442 mutex_exit(&hermon_userland_rsrc_db.hdl_umapdb_lock);
443
444 *devp = dev;
445
446 return (0);
447 }
448
449
450 /*
451 * hermon_close()
452 */
453 /* ARGSUSED */
454 static int
hermon_close(dev_t dev,int flag,int otyp,cred_t * credp)455 hermon_close(dev_t dev, int flag, int otyp, cred_t *credp)
456 {
457 hermon_state_t *state;
458 hermon_rsrc_t *rsrcp;
459 hermon_umap_db_entry_t *umapdb;
460 hermon_umap_db_priv_t *priv;
461 minor_t instance;
462 uint64_t key, value;
463 int status, reset_status = 0;
464
465 instance = HERMON_DEV_INSTANCE(dev);
466 state = ddi_get_soft_state(hermon_statep, instance);
467 if (state == NULL) {
468 return (ENXIO);
469 }
470
471 /*
472 * Search for "dev_t" in the "userland resources database". As
473 * explained above in hermon_open(), we can't depend on using the
474 * current process ID here to do the lookup because the process
475 * that ultimately closes may not be the same one who opened
476 * (because of inheritance).
477 * So we lookup the "dev_t" (which points to the PID of the process
478 * that opened), and we remove the entry from the database (and free
479 * it up). Then we do another query based on the PID value. And when
480 * we find that database entry, we free it up too and then free the
481 * Hermon UAR page resource.
482 *
483 * Note: We use the hermon_umap_db_find_nolock() database access
484 * routine below (with an explicit mutex_enter of the database lock)
485 * to ensure that the multiple accesses (which attempt to remove the
486 * two database entries) can be done atomically.
487 *
488 * This works the same in both maintenance mode and HCA mode, except
489 * for the call to hermon_rsrc_free(). In the case of maintenance mode,
490 * this call is not needed, as it was not allocated in hermon_open()
491 * above.
492 */
493 key = dev;
494 mutex_enter(&hermon_userland_rsrc_db.hdl_umapdb_lock);
495 status = hermon_umap_db_find_nolock(instance, key, MLNX_UMAP_PID_RSRC,
496 &value, HERMON_UMAP_DB_REMOVE, &umapdb);
497 if (status == DDI_SUCCESS) {
498 /*
499 * If the "hdb_priv" field is non-NULL, it indicates that
500 * some "on close" handling is still necessary. Call
501 * hermon_umap_db_handle_onclose_cb() to do the handling (i.e.
502 * to invoke all the registered callbacks). Then free up
503 * the resources associated with "hdb_priv" and continue
504 * closing.
505 */
506 priv = (hermon_umap_db_priv_t *)umapdb->hdbe_common.hdb_priv;
507 if (priv != NULL) {
508 reset_status = hermon_umap_db_handle_onclose_cb(priv);
509 kmem_free(priv, sizeof (hermon_umap_db_priv_t));
510 umapdb->hdbe_common.hdb_priv = (void *)NULL;
511 }
512
513 hermon_umap_db_free(umapdb);
514
515 /*
516 * Now do another lookup using PID as the key (copy it from
517 * "value"). When this lookup is complete, the "value" field
518 * will contain the hermon_rsrc_t pointer for the UAR page
519 * resource.
520 */
521 key = value;
522 status = hermon_umap_db_find_nolock(instance, key,
523 MLNX_UMAP_UARPG_RSRC, &value, HERMON_UMAP_DB_REMOVE,
524 &umapdb);
525 if (status == DDI_SUCCESS) {
526 hermon_umap_db_free(umapdb);
527 /* If in "maintenance mode", don't free the rsrc */
528 if (HERMON_IS_OPERATIONAL(state->hs_operational_mode)) {
529 rsrcp = (hermon_rsrc_t *)(uintptr_t)value;
530 hermon_rsrc_free(state, &rsrcp);
531 }
532 }
533 }
534 mutex_exit(&hermon_userland_rsrc_db.hdl_umapdb_lock);
535 return (reset_status);
536 }
537
538
539 /*
540 * hermon_attach()
541 * Context: Only called from attach() path context
542 */
543 static int
hermon_attach(dev_info_t * dip,ddi_attach_cmd_t cmd)544 hermon_attach(dev_info_t *dip, ddi_attach_cmd_t cmd)
545 {
546 hermon_state_t *state;
547 ibc_clnt_hdl_t tmp_ibtfpriv;
548 ibc_status_t ibc_status;
549 int instance;
550 int status;
551
552 #ifdef __lock_lint
553 (void) hermon_quiesce(dip);
554 #endif
555
556 switch (cmd) {
557 case DDI_ATTACH:
558 instance = ddi_get_instance(dip);
559 status = ddi_soft_state_zalloc(hermon_statep, instance);
560 if (status != DDI_SUCCESS) {
561 cmn_err(CE_NOTE, "hermon%d: driver failed to attach: "
562 "attach_ssz_fail", instance);
563 goto fail_attach_nomsg;
564
565 }
566 state = ddi_get_soft_state(hermon_statep, instance);
567 if (state == NULL) {
568 ddi_soft_state_free(hermon_statep, instance);
569 cmn_err(CE_NOTE, "hermon%d: driver failed to attach: "
570 "attach_gss_fail", instance);
571 goto fail_attach_nomsg;
572 }
573
574 /* clear the attach error buffer */
575 HERMON_ATTACH_MSG_INIT(state->hs_attach_buf);
576
577 /* Save away devinfo and instance before hermon_fm_init() */
578 state->hs_dip = dip;
579 state->hs_instance = instance;
580
581 hermon_fm_init(state);
582
583 /*
584 * Initialize Hermon driver and hardware.
585 *
586 * Note: If this initialization fails we may still wish to
587 * create a device node and remain operational so that Hermon
588 * firmware can be updated/flashed (i.e. "maintenance mode").
589 * If this is the case, then "hs_operational_mode" will be
590 * equal to HERMON_MAINTENANCE_MODE. We will not attempt to
591 * attach to the IBTF or register with the IBMF (i.e. no
592 * InfiniBand interfaces will be enabled).
593 */
594 status = hermon_drv_init(state, dip, instance);
595 if ((status != DDI_SUCCESS) &&
596 (HERMON_IS_OPERATIONAL(state->hs_operational_mode))) {
597 goto fail_attach;
598 }
599
600 /*
601 * Change the Hermon FM mode
602 */
603 if ((hermon_get_state(state) & HCA_PIO_FM) &&
604 HERMON_IS_OPERATIONAL(state->hs_operational_mode)) {
605 /*
606 * Now we wait for 50ms to give an opportunity
607 * to Solaris FMA so that HW errors can be notified.
608 * Then check if there are HW errors or not. If
609 * a HW error is detected, the Hermon attachment
610 * must be failed.
611 */
612 delay(drv_usectohz(50000));
613 if (hermon_init_failure(state)) {
614 hermon_drv_fini(state);
615 HERMON_WARNING(state, "unable to "
616 "attach Hermon due to a HW error");
617 HERMON_ATTACH_MSG(state->hs_attach_buf,
618 "hermon_attach_failure");
619 goto fail_attach;
620 }
621
622 /*
623 * There seems no HW errors during the attachment,
624 * so let's change the Hermon FM state to the
625 * ereport only mode.
626 */
627 if (hermon_fm_ereport_init(state) != DDI_SUCCESS) {
628 /* unwind the resources */
629 hermon_drv_fini(state);
630 HERMON_ATTACH_MSG(state->hs_attach_buf,
631 "hermon_attach_failure");
632 goto fail_attach;
633 }
634 }
635
636 /* Create the minor node for device */
637 status = ddi_create_minor_node(dip, "devctl", S_IFCHR, instance,
638 DDI_PSEUDO, 0);
639 if (status != DDI_SUCCESS) {
640 hermon_drv_fini(state);
641 HERMON_ATTACH_MSG(state->hs_attach_buf,
642 "attach_create_mn_fail");
643 goto fail_attach;
644 }
645
646 /*
647 * If we are in "maintenance mode", then we don't want to
648 * register with the IBTF. All InfiniBand interfaces are
649 * uninitialized, and the device is only capable of handling
650 * requests to update/flash firmware (or test/debug requests).
651 */
652 if (HERMON_IS_OPERATIONAL(state->hs_operational_mode)) {
653 cmn_err(CE_NOTE, "!Hermon is operational\n");
654
655 /* Attach to InfiniBand Transport Framework (IBTF) */
656 ibc_status = ibc_attach(&tmp_ibtfpriv,
657 &state->hs_ibtfinfo);
658 if (ibc_status != IBC_SUCCESS) {
659 cmn_err(CE_CONT, "hermon_attach: ibc_attach "
660 "failed\n");
661 ddi_remove_minor_node(dip, "devctl");
662 hermon_drv_fini(state);
663 HERMON_ATTACH_MSG(state->hs_attach_buf,
664 "attach_ibcattach_fail");
665 goto fail_attach;
666 }
667
668 /*
669 * Now that we've successfully attached to the IBTF,
670 * we enable all appropriate asynch and CQ events to
671 * be forwarded to the IBTF.
672 */
673 HERMON_ENABLE_IBTF_CALLB(state, tmp_ibtfpriv);
674
675 ibc_post_attach(state->hs_ibtfpriv);
676
677 /* Register agents with IB Mgmt Framework (IBMF) */
678 status = hermon_agent_handlers_init(state);
679 if (status != DDI_SUCCESS) {
680 (void) ibc_pre_detach(tmp_ibtfpriv, DDI_DETACH);
681 HERMON_QUIESCE_IBTF_CALLB(state);
682 if (state->hs_in_evcallb != 0) {
683 HERMON_WARNING(state, "unable to "
684 "quiesce Hermon IBTF callbacks");
685 }
686 ibc_detach(tmp_ibtfpriv);
687 ddi_remove_minor_node(dip, "devctl");
688 hermon_drv_fini(state);
689 HERMON_ATTACH_MSG(state->hs_attach_buf,
690 "attach_agentinit_fail");
691 goto fail_attach;
692 }
693 }
694
695 /* Report attach in maintenance mode, if appropriate */
696 if (!(HERMON_IS_OPERATIONAL(state->hs_operational_mode))) {
697 cmn_err(CE_NOTE, "hermon%d: driver attached "
698 "(for maintenance mode only)", state->hs_instance);
699 hermon_fm_ereport(state, HCA_IBA_ERR, HCA_ERR_DEGRADED);
700 }
701
702 /* Report that driver was loaded */
703 ddi_report_dev(dip);
704
705 /* Send device information to log file */
706 hermon_device_info_report(state);
707
708 /* DEBUG PRINT */
709 cmn_err(CE_CONT, "!Hermon attach complete\n");
710 return (DDI_SUCCESS);
711
712 case DDI_RESUME:
713 /* Add code here for DDI_RESUME XXX */
714 return (DDI_FAILURE);
715
716 default:
717 cmn_err(CE_WARN, "hermon_attach: unknown cmd (0x%x)\n", cmd);
718 break;
719 }
720
721 fail_attach:
722 cmn_err(CE_NOTE, "hermon%d: driver failed to attach: %s", instance,
723 state->hs_attach_buf);
724 if (hermon_get_state(state) & HCA_EREPORT_FM) {
725 hermon_fm_ereport(state, HCA_SYS_ERR, HCA_ERR_SRV_LOST);
726 }
727 hermon_drv_fini2(state);
728 hermon_fm_fini(state);
729 ddi_soft_state_free(hermon_statep, instance);
730
731 fail_attach_nomsg:
732 return (DDI_FAILURE);
733 }
734
735
736 /*
737 * hermon_detach()
738 * Context: Only called from detach() path context
739 */
740 static int
hermon_detach(dev_info_t * dip,ddi_detach_cmd_t cmd)741 hermon_detach(dev_info_t *dip, ddi_detach_cmd_t cmd)
742 {
743 hermon_state_t *state;
744 ibc_clnt_hdl_t tmp_ibtfpriv;
745 ibc_status_t ibc_status;
746 int instance, status;
747
748 instance = ddi_get_instance(dip);
749 state = ddi_get_soft_state(hermon_statep, instance);
750 if (state == NULL) {
751 return (DDI_FAILURE);
752 }
753
754 switch (cmd) {
755 case DDI_DETACH:
756 /*
757 * If we are in "maintenance mode", then we do not want to
758 * do teardown for any of the InfiniBand interfaces.
759 * Specifically, this means not detaching from IBTF (we never
760 * attached to begin with) and not deregistering from IBMF.
761 */
762 if (HERMON_IS_OPERATIONAL(state->hs_operational_mode)) {
763 /* Unregister agents from IB Mgmt Framework (IBMF) */
764 status = hermon_agent_handlers_fini(state);
765 if (status != DDI_SUCCESS) {
766 return (DDI_FAILURE);
767 }
768
769 /*
770 * Attempt the "pre-detach" from InfiniBand Transport
771 * Framework (IBTF). At this point the IBTF is still
772 * capable of handling incoming asynch and completion
773 * events. This "pre-detach" is primarily a mechanism
774 * to notify the appropriate IBTF clients that the
775 * HCA is being removed/offlined.
776 */
777 ibc_status = ibc_pre_detach(state->hs_ibtfpriv, cmd);
778 if (ibc_status != IBC_SUCCESS) {
779 status = hermon_agent_handlers_init(state);
780 if (status != DDI_SUCCESS) {
781 HERMON_WARNING(state, "failed to "
782 "restart Hermon agents");
783 }
784 return (DDI_FAILURE);
785 }
786
787 /*
788 * Before we can fully detach from the IBTF we need to
789 * ensure that we have handled all outstanding event
790 * callbacks. This is accomplished by quiescing the
791 * event callback mechanism. Note: if we are unable
792 * to successfully quiesce the callbacks, then this is
793 * an indication that something has probably gone
794 * seriously wrong. We print out a warning, but
795 * continue.
796 */
797 tmp_ibtfpriv = state->hs_ibtfpriv;
798 HERMON_QUIESCE_IBTF_CALLB(state);
799 if (state->hs_in_evcallb != 0) {
800 HERMON_WARNING(state, "unable to quiesce "
801 "Hermon IBTF callbacks");
802 }
803
804 /* Complete the detach from the IBTF */
805 ibc_detach(tmp_ibtfpriv);
806 }
807
808 /* Remove the minor node for device */
809 ddi_remove_minor_node(dip, "devctl");
810
811 /*
812 * Only call hermon_drv_fini() if we are in Hermon HCA mode.
813 * (Because if we are in "maintenance mode", then we never
814 * successfully finished init.) Only report successful
815 * detach for normal HCA mode.
816 */
817 if (HERMON_IS_OPERATIONAL(state->hs_operational_mode)) {
818 /* Cleanup driver resources and shutdown hardware */
819 hermon_drv_fini(state);
820 cmn_err(CE_CONT, "!Hermon driver successfully "
821 "detached\n");
822 }
823
824 hermon_drv_fini2(state);
825 hermon_fm_fini(state);
826 ddi_soft_state_free(hermon_statep, instance);
827
828 return (DDI_SUCCESS);
829
830 case DDI_SUSPEND:
831 /* Add code here for DDI_SUSPEND XXX */
832 return (DDI_FAILURE);
833
834 default:
835 cmn_err(CE_WARN, "hermon_detach: unknown cmd (0x%x)\n", cmd);
836 break;
837 }
838
839 return (DDI_FAILURE);
840 }
841
842 /*
843 * hermon_dma_attr_init()
844 * Context: Can be called from interrupt or base context.
845 */
846
847 /* ARGSUSED */
848 void
hermon_dma_attr_init(hermon_state_t * state,ddi_dma_attr_t * dma_attr)849 hermon_dma_attr_init(hermon_state_t *state, ddi_dma_attr_t *dma_attr)
850 {
851 _NOTE(NOW_INVISIBLE_TO_OTHER_THREADS(*dma_attr))
852
853 dma_attr->dma_attr_version = DMA_ATTR_V0;
854 dma_attr->dma_attr_addr_lo = 0;
855 dma_attr->dma_attr_addr_hi = 0xFFFFFFFFFFFFFFFFull;
856 dma_attr->dma_attr_count_max = 0xFFFFFFFFFFFFFFFFull;
857 dma_attr->dma_attr_align = HERMON_PAGESIZE; /* default 4K */
858 dma_attr->dma_attr_burstsizes = 0x3FF;
859 dma_attr->dma_attr_minxfer = 1;
860 dma_attr->dma_attr_maxxfer = 0xFFFFFFFFFFFFFFFFull;
861 dma_attr->dma_attr_seg = 0xFFFFFFFFFFFFFFFFull;
862 dma_attr->dma_attr_sgllen = 0x7FFFFFFF;
863 dma_attr->dma_attr_granular = 1;
864 dma_attr->dma_attr_flags = 0;
865 }
866
867 /*
868 * hermon_dma_alloc()
869 * Context: Can be called from base context.
870 */
871 int
hermon_dma_alloc(hermon_state_t * state,hermon_dma_info_t * dma_info,uint16_t opcode)872 hermon_dma_alloc(hermon_state_t *state, hermon_dma_info_t *dma_info,
873 uint16_t opcode)
874 {
875 ddi_dma_handle_t dma_hdl;
876 ddi_dma_attr_t dma_attr;
877 ddi_acc_handle_t acc_hdl;
878 ddi_dma_cookie_t cookie;
879 uint64_t kaddr;
880 uint64_t real_len;
881 uint_t ccount;
882 int status;
883
884 hermon_dma_attr_init(state, &dma_attr);
885 #ifdef __sparc
886 if (state->hs_cfg_profile->cp_iommu_bypass == HERMON_BINDMEM_BYPASS)
887 dma_attr.dma_attr_flags = DDI_DMA_FORCE_PHYSICAL;
888 #endif
889
890 /* Allocate a DMA handle */
891 status = ddi_dma_alloc_handle(state->hs_dip, &dma_attr, DDI_DMA_SLEEP,
892 NULL, &dma_hdl);
893 if (status != DDI_SUCCESS) {
894 IBTF_DPRINTF_L2("DMA", "alloc handle failed: %d", status);
895 cmn_err(CE_CONT, "DMA alloc handle failed(status %d)", status);
896 return (DDI_FAILURE);
897 }
898
899 /* Allocate DMA memory */
900 status = ddi_dma_mem_alloc(dma_hdl, dma_info->length,
901 &state->hs_reg_accattr, DDI_DMA_CONSISTENT, DDI_DMA_SLEEP, NULL,
902 (caddr_t *)&kaddr, (size_t *)&real_len, &acc_hdl);
903 if (status != DDI_SUCCESS) {
904 ddi_dma_free_handle(&dma_hdl);
905 IBTF_DPRINTF_L2("DMA", "memory alloc failed: %d", status);
906 cmn_err(CE_CONT, "DMA memory alloc failed(status %d)", status);
907 return (DDI_FAILURE);
908 }
909 bzero((caddr_t)(uintptr_t)kaddr, real_len);
910
911 /* Bind the memory to the handle */
912 status = ddi_dma_addr_bind_handle(dma_hdl, NULL,
913 (caddr_t)(uintptr_t)kaddr, (size_t)real_len, DDI_DMA_RDWR |
914 DDI_DMA_CONSISTENT, DDI_DMA_SLEEP, NULL, &cookie, &ccount);
915 if (status != DDI_SUCCESS) {
916 ddi_dma_mem_free(&acc_hdl);
917 ddi_dma_free_handle(&dma_hdl);
918 IBTF_DPRINTF_L2("DMA", "bind handle failed: %d", status);
919 cmn_err(CE_CONT, "DMA bind handle failed(status %d)", status);
920 return (DDI_FAILURE);
921 }
922
923 /* Package the hermon_dma_info contents and return */
924 dma_info->vaddr = kaddr;
925 dma_info->dma_hdl = dma_hdl;
926 dma_info->acc_hdl = acc_hdl;
927
928 /* Pass the mapping information to the firmware */
929 status = hermon_map_cmd_post(state, dma_info, opcode, cookie, ccount);
930 if (status != DDI_SUCCESS) {
931 char *s;
932 hermon_dma_free(dma_info);
933 switch (opcode) {
934 case MAP_ICM:
935 s = "MAP_ICM";
936 break;
937 case MAP_FA:
938 s = "MAP_FA";
939 break;
940 case MAP_ICM_AUX:
941 s = "MAP_ICM_AUX";
942 break;
943 default:
944 s = "UNKNOWN";
945 }
946 cmn_err(CE_NOTE, "Map cmd '%s' failed, status %08x\n",
947 s, status);
948 return (DDI_FAILURE);
949 }
950
951 return (DDI_SUCCESS);
952 }
953
954 /*
955 * hermon_dma_free()
956 * Context: Can be called from base context.
957 */
958 void
hermon_dma_free(hermon_dma_info_t * info)959 hermon_dma_free(hermon_dma_info_t *info)
960 {
961 /* Unbind the handles and free the memory */
962 (void) ddi_dma_unbind_handle(info->dma_hdl);
963 ddi_dma_mem_free(&info->acc_hdl);
964 ddi_dma_free_handle(&info->dma_hdl);
965 }
966
967 /* These macros are valid for use only in hermon_icm_alloc/hermon_icm_free. */
968 #define HERMON_ICM_ALLOC(rsrc) \
969 hermon_icm_alloc(state, rsrc, index1, index2)
970 #define HERMON_ICM_FREE(rsrc) \
971 hermon_icm_free(state, rsrc, index1, index2)
972
973 /*
974 * hermon_icm_alloc()
975 * Context: Can be called from base context.
976 *
977 * Only one thread can be here for a given hermon_rsrc_type_t "type".
978 *
979 * "num_to_hdl" is set if there is a need for lookups from resource
980 * number/index to resource handle. This is needed for QPs/CQs/SRQs
981 * for the various affiliated events/errors.
982 */
983 int
hermon_icm_alloc(hermon_state_t * state,hermon_rsrc_type_t type,uint32_t index1,uint32_t index2)984 hermon_icm_alloc(hermon_state_t *state, hermon_rsrc_type_t type,
985 uint32_t index1, uint32_t index2)
986 {
987 hermon_icm_table_t *icm;
988 hermon_dma_info_t *dma_info;
989 uint8_t *bitmap;
990 int status;
991 int num_to_hdl = 0;
992
993 if (hermon_verbose) {
994 IBTF_DPRINTF_L2("hermon", "hermon_icm_alloc: rsrc_type (0x%x) "
995 "index1/2 (0x%x/0x%x)", type, index1, index2);
996 }
997
998 icm = &state->hs_icm[type];
999
1000 switch (type) {
1001 case HERMON_QPC:
1002 status = HERMON_ICM_ALLOC(HERMON_CMPT_QPC);
1003 if (status != DDI_SUCCESS) {
1004 return (status);
1005 }
1006 status = HERMON_ICM_ALLOC(HERMON_RDB);
1007 if (status != DDI_SUCCESS) { /* undo icm_alloc's */
1008 HERMON_ICM_FREE(HERMON_CMPT_QPC);
1009 return (status);
1010 }
1011 status = HERMON_ICM_ALLOC(HERMON_ALTC);
1012 if (status != DDI_SUCCESS) { /* undo icm_alloc's */
1013 HERMON_ICM_FREE(HERMON_RDB);
1014 HERMON_ICM_FREE(HERMON_CMPT_QPC);
1015 return (status);
1016 }
1017 status = HERMON_ICM_ALLOC(HERMON_AUXC);
1018 if (status != DDI_SUCCESS) { /* undo icm_alloc's */
1019 HERMON_ICM_FREE(HERMON_ALTC);
1020 HERMON_ICM_FREE(HERMON_RDB);
1021 HERMON_ICM_FREE(HERMON_CMPT_QPC);
1022 return (status);
1023 }
1024 num_to_hdl = 1;
1025 break;
1026 case HERMON_SRQC:
1027 status = HERMON_ICM_ALLOC(HERMON_CMPT_SRQC);
1028 if (status != DDI_SUCCESS) {
1029 return (status);
1030 }
1031 num_to_hdl = 1;
1032 break;
1033 case HERMON_CQC:
1034 status = HERMON_ICM_ALLOC(HERMON_CMPT_CQC);
1035 if (status != DDI_SUCCESS) {
1036 return (status);
1037 }
1038 num_to_hdl = 1;
1039 break;
1040 case HERMON_EQC:
1041 status = HERMON_ICM_ALLOC(HERMON_CMPT_EQC);
1042 if (status != DDI_SUCCESS) { /* undo icm_alloc's */
1043 return (status);
1044 }
1045 break;
1046 }
1047
1048 /* ensure existence of bitmap and dmainfo, sets "dma_info" */
1049 hermon_bitmap(bitmap, dma_info, icm, index1, num_to_hdl);
1050
1051 /* Set up the DMA handle for allocation and mapping */
1052 dma_info += index2;
1053 _NOTE(NOW_INVISIBLE_TO_OTHER_THREADS(*dma_info))
1054 dma_info->length = icm->span << icm->log_object_size;
1055 dma_info->icmaddr = icm->icm_baseaddr +
1056 (((index1 << icm->split_shift) +
1057 (index2 << icm->span_shift)) << icm->log_object_size);
1058
1059 /* Allocate memory for the num_to_qp/cq/srq pointers */
1060 if (num_to_hdl)
1061 icm->num_to_hdl[index1][index2] =
1062 kmem_zalloc(HERMON_ICM_SPAN * sizeof (void *), KM_SLEEP);
1063
1064 if (hermon_verbose) {
1065 IBTF_DPRINTF_L2("hermon", "alloc DMA: "
1066 "rsrc (0x%x) index (%x, %x) "
1067 "icm_addr/len (%llx/%x) bitmap %p", type, index1, index2,
1068 (longlong_t)dma_info->icmaddr, dma_info->length, bitmap);
1069 }
1070
1071 /* Allocate and map memory for this span */
1072 status = hermon_dma_alloc(state, dma_info, MAP_ICM);
1073 if (status != DDI_SUCCESS) {
1074 IBTF_DPRINTF_L2("hermon", "hermon_icm_alloc: DMA "
1075 "allocation failed, status 0x%x", status);
1076 switch (type) {
1077 case HERMON_QPC:
1078 HERMON_ICM_FREE(HERMON_AUXC);
1079 HERMON_ICM_FREE(HERMON_ALTC);
1080 HERMON_ICM_FREE(HERMON_RDB);
1081 HERMON_ICM_FREE(HERMON_CMPT_QPC);
1082 break;
1083 case HERMON_SRQC:
1084 HERMON_ICM_FREE(HERMON_CMPT_SRQC);
1085 break;
1086 case HERMON_CQC:
1087 HERMON_ICM_FREE(HERMON_CMPT_CQC);
1088 break;
1089 case HERMON_EQC:
1090 HERMON_ICM_FREE(HERMON_CMPT_EQC);
1091 break;
1092 }
1093
1094 return (DDI_FAILURE);
1095 }
1096 if (hermon_verbose) {
1097 IBTF_DPRINTF_L2("hermon", "hermon_icm_alloc: mapping ICM: "
1098 "rsrc_type (0x%x) index (0x%x, 0x%x) alloc length (0x%x) "
1099 "icm_addr (0x%lx)", type, index1, index2, dma_info->length,
1100 dma_info->icmaddr);
1101 }
1102
1103 /* Set the bit for this slot in the table bitmap */
1104 HERMON_BMAP_BIT_SET(icm->icm_bitmap[index1], index2);
1105
1106 return (DDI_SUCCESS);
1107 }
1108
1109 /*
1110 * hermon_icm_free()
1111 * Context: Can be called from base context.
1112 *
1113 * ICM resources have been successfully returned from hermon_icm_alloc().
1114 * Associated dma_info is no longer in use. Free the ICM backing memory.
1115 */
1116 void
hermon_icm_free(hermon_state_t * state,hermon_rsrc_type_t type,uint32_t index1,uint32_t index2)1117 hermon_icm_free(hermon_state_t *state, hermon_rsrc_type_t type,
1118 uint32_t index1, uint32_t index2)
1119 {
1120 hermon_icm_table_t *icm;
1121 hermon_dma_info_t *dma_info;
1122 int status;
1123
1124 icm = &state->hs_icm[type];
1125 ASSERT(icm->icm_dma[index1][index2].icm_refcnt == 0);
1126
1127 if (hermon_verbose) {
1128 IBTF_DPRINTF_L2("hermon", "hermon_icm_free: rsrc_type (0x%x) "
1129 "index (0x%x, 0x%x)", type, index1, index2);
1130 }
1131
1132 dma_info = icm->icm_dma[index1] + index2;
1133
1134 /* The following only happens if attach() is failing. */
1135 if (dma_info == NULL)
1136 return;
1137
1138 /* Unmap the ICM allocation, then free the backing DMA memory */
1139 status = hermon_unmap_icm_cmd_post(state, dma_info);
1140 if (status != DDI_SUCCESS) {
1141 HERMON_WARNING(state, "UNMAP_ICM failure");
1142 }
1143 hermon_dma_free(dma_info);
1144
1145 /* Clear the bit in the ICM table bitmap */
1146 HERMON_BMAP_BIT_CLR(icm->icm_bitmap[index1], index2);
1147
1148 switch (type) {
1149 case HERMON_QPC:
1150 HERMON_ICM_FREE(HERMON_AUXC);
1151 HERMON_ICM_FREE(HERMON_ALTC);
1152 HERMON_ICM_FREE(HERMON_RDB);
1153 HERMON_ICM_FREE(HERMON_CMPT_QPC);
1154 break;
1155 case HERMON_SRQC:
1156 HERMON_ICM_FREE(HERMON_CMPT_SRQC);
1157 break;
1158 case HERMON_CQC:
1159 HERMON_ICM_FREE(HERMON_CMPT_CQC);
1160 break;
1161 case HERMON_EQC:
1162 HERMON_ICM_FREE(HERMON_CMPT_EQC);
1163 break;
1164
1165 }
1166 }
1167
1168
1169 /*
1170 * hermon_icm_num_to_hdl()
1171 * Context: Can be called from base or interrupt context.
1172 *
1173 * Given an index of a resource, index through the sparsely allocated
1174 * arrays to find the pointer to its software handle. Return NULL if
1175 * any of the arrays of pointers has been freed (should never happen).
1176 */
1177 void *
hermon_icm_num_to_hdl(hermon_state_t * state,hermon_rsrc_type_t type,uint32_t idx)1178 hermon_icm_num_to_hdl(hermon_state_t *state, hermon_rsrc_type_t type,
1179 uint32_t idx)
1180 {
1181 hermon_icm_table_t *icm;
1182 uint32_t span_offset;
1183 uint32_t index1, index2;
1184 void ***p1, **p2;
1185
1186 icm = &state->hs_icm[type];
1187 hermon_index(index1, index2, idx, icm, span_offset);
1188 p1 = icm->num_to_hdl[index1];
1189 if (p1 == NULL) {
1190 IBTF_DPRINTF_L2("hermon", "icm_num_to_hdl failed at level 1"
1191 ": rsrc_type %d, index 0x%x", type, idx);
1192 return (NULL);
1193 }
1194 p2 = p1[index2];
1195 if (p2 == NULL) {
1196 IBTF_DPRINTF_L2("hermon", "icm_num_to_hdl failed at level 2"
1197 ": rsrc_type %d, index 0x%x", type, idx);
1198 return (NULL);
1199 }
1200 return (p2[span_offset]);
1201 }
1202
1203 /*
1204 * hermon_icm_set_num_to_hdl()
1205 * Context: Can be called from base or interrupt context.
1206 *
1207 * Given an index of a resource, we index through the sparsely allocated
1208 * arrays to store the software handle, used by hermon_icm_num_to_hdl().
1209 * This function is used to both set and reset (set to NULL) the handle.
1210 * This table is allocated during ICM allocation for the given resource,
1211 * so its existence is a given, and the store location does not conflict
1212 * with any other stores to the table (no locking needed).
1213 */
1214 void
hermon_icm_set_num_to_hdl(hermon_state_t * state,hermon_rsrc_type_t type,uint32_t idx,void * hdl)1215 hermon_icm_set_num_to_hdl(hermon_state_t *state, hermon_rsrc_type_t type,
1216 uint32_t idx, void *hdl)
1217 {
1218 hermon_icm_table_t *icm;
1219 uint32_t span_offset;
1220 uint32_t index1, index2;
1221
1222 icm = &state->hs_icm[type];
1223 hermon_index(index1, index2, idx, icm, span_offset);
1224 ASSERT((hdl == NULL) ^
1225 (icm->num_to_hdl[index1][index2][span_offset] == NULL));
1226 icm->num_to_hdl[index1][index2][span_offset] = hdl;
1227 }
1228
1229 /*
1230 * hermon_device_mode()
1231 * Context: Can be called from base or interrupt context.
1232 *
1233 * Return HERMON_HCA_MODE for operational mode
1234 * Return HERMON_MAINTENANCE_MODE for maintenance mode
1235 * Return 0 otherwise
1236 *
1237 * A non-zero return for either operational or maintenance mode simplifies
1238 * one of the 2 uses of this function.
1239 */
1240 int
hermon_device_mode(hermon_state_t * state)1241 hermon_device_mode(hermon_state_t *state)
1242 {
1243 if (state->hs_vendor_id != PCI_VENID_MLX)
1244 return (0);
1245
1246 switch (state->hs_device_id) {
1247 case PCI_DEVID_HERMON_SDR:
1248 case PCI_DEVID_HERMON_DDR:
1249 case PCI_DEVID_HERMON_DDRG2:
1250 case PCI_DEVID_HERMON_QDRG2:
1251 case PCI_DEVID_HERMON_QDRG2V:
1252 return (HERMON_HCA_MODE);
1253 case PCI_DEVID_HERMON_MAINT:
1254 return (HERMON_MAINTENANCE_MODE);
1255 default:
1256 return (0);
1257 }
1258 }
1259
1260 /*
1261 * hermon_drv_init()
1262 * Context: Only called from attach() path context
1263 */
1264 /* ARGSUSED */
1265 static int
hermon_drv_init(hermon_state_t * state,dev_info_t * dip,int instance)1266 hermon_drv_init(hermon_state_t *state, dev_info_t *dip, int instance)
1267 {
1268 int status;
1269
1270 /* Retrieve PCI device, vendor and rev IDs */
1271 state->hs_vendor_id = HERMON_GET_VENDOR_ID(state->hs_dip);
1272 state->hs_device_id = HERMON_GET_DEVICE_ID(state->hs_dip);
1273 state->hs_revision_id = HERMON_GET_REVISION_ID(state->hs_dip);
1274
1275 /*
1276 * Check and set the operational mode of the device. If the driver is
1277 * bound to the Hermon device in "maintenance mode", then this generally
1278 * means that either the device has been specifically jumpered to
1279 * start in this mode or the firmware boot process has failed to
1280 * successfully load either the primary or the secondary firmware
1281 * image.
1282 */
1283 state->hs_operational_mode = hermon_device_mode(state);
1284 switch (state->hs_operational_mode) {
1285 case HERMON_HCA_MODE:
1286 state->hs_cfg_profile_setting = HERMON_CFG_MEMFREE;
1287 break;
1288 case HERMON_MAINTENANCE_MODE:
1289 HERMON_FMANOTE(state, HERMON_FMA_MAINT);
1290 state->hs_fm_degraded_reason = HCA_FW_MISC; /* not fw reason */
1291 return (DDI_FAILURE);
1292 default:
1293 HERMON_FMANOTE(state, HERMON_FMA_PCIID);
1294 HERMON_WARNING(state, "unexpected device type detected");
1295 return (DDI_FAILURE);
1296 }
1297
1298 /*
1299 * Initialize the Hermon hardware.
1300 *
1301 * Note: If this routine returns an error, it is often a reasonably
1302 * good indication that something Hermon firmware-related has caused
1303 * the failure or some HW related errors have caused the failure.
1304 * (also there are few possibilities that SW (e.g. SW resource
1305 * shortage) can cause the failure, but the majority case is due to
1306 * either a firmware related error or a HW related one) In order to
1307 * give the user an opportunity (if desired) to update or reflash
1308 * the Hermon firmware image, we set "hs_operational_mode" flag
1309 * (described above) to indicate that we wish to enter maintenance
1310 * mode in case of the firmware-related issue.
1311 */
1312 status = hermon_hw_init(state);
1313 if (status != DDI_SUCCESS) {
1314 cmn_err(CE_NOTE, "hermon%d: error during attach: %s", instance,
1315 state->hs_attach_buf);
1316 return (DDI_FAILURE);
1317 }
1318
1319 /*
1320 * Now that the ISR has been setup, arm all the EQs for event
1321 * generation.
1322 */
1323
1324 status = hermon_eq_arm_all(state);
1325 if (status != DDI_SUCCESS) {
1326 cmn_err(CE_NOTE, "EQ Arm All failed\n");
1327 hermon_hw_fini(state, HERMON_DRV_CLEANUP_ALL);
1328 return (DDI_FAILURE);
1329 }
1330
1331 /* test interrupts and event queues */
1332 status = hermon_nop_post(state, 0x0, 0x0);
1333 if (status != DDI_SUCCESS) {
1334 cmn_err(CE_NOTE, "Interrupts/EQs failed\n");
1335 hermon_hw_fini(state, HERMON_DRV_CLEANUP_ALL);
1336 return (DDI_FAILURE);
1337 }
1338
1339 /* Initialize Hermon softstate */
1340 status = hermon_soft_state_init(state);
1341 if (status != DDI_SUCCESS) {
1342 cmn_err(CE_NOTE, "Failed to init soft state\n");
1343 hermon_hw_fini(state, HERMON_DRV_CLEANUP_ALL);
1344 return (DDI_FAILURE);
1345 }
1346
1347 return (DDI_SUCCESS);
1348 }
1349
1350
1351 /*
1352 * hermon_drv_fini()
1353 * Context: Only called from attach() and/or detach() path contexts
1354 */
1355 static void
hermon_drv_fini(hermon_state_t * state)1356 hermon_drv_fini(hermon_state_t *state)
1357 {
1358 /* Cleanup Hermon softstate */
1359 hermon_soft_state_fini(state);
1360
1361 /* Cleanup Hermon resources and shutdown hardware */
1362 hermon_hw_fini(state, HERMON_DRV_CLEANUP_ALL);
1363 }
1364
1365
1366 /*
1367 * hermon_drv_fini2()
1368 * Context: Only called from attach() and/or detach() path contexts
1369 */
1370 static void
hermon_drv_fini2(hermon_state_t * state)1371 hermon_drv_fini2(hermon_state_t *state)
1372 {
1373 if (state->hs_fm_poll_thread) {
1374 ddi_periodic_delete(state->hs_fm_poll_thread);
1375 state->hs_fm_poll_thread = NULL;
1376 }
1377
1378 /* HERMON_DRV_CLEANUP_LEVEL1 */
1379 if (state->hs_fm_cmdhdl) {
1380 hermon_regs_map_free(state, &state->hs_fm_cmdhdl);
1381 state->hs_fm_cmdhdl = NULL;
1382 }
1383
1384 if (state->hs_reg_cmdhdl) {
1385 ddi_regs_map_free(&state->hs_reg_cmdhdl);
1386 state->hs_reg_cmdhdl = NULL;
1387 }
1388
1389 /* HERMON_DRV_CLEANUP_LEVEL0 */
1390 if (state->hs_msix_tbl_entries) {
1391 kmem_free(state->hs_msix_tbl_entries,
1392 state->hs_msix_tbl_size);
1393 state->hs_msix_tbl_entries = NULL;
1394 }
1395
1396 if (state->hs_msix_pba_entries) {
1397 kmem_free(state->hs_msix_pba_entries,
1398 state->hs_msix_pba_size);
1399 state->hs_msix_pba_entries = NULL;
1400 }
1401
1402 if (state->hs_fm_msix_tblhdl) {
1403 hermon_regs_map_free(state, &state->hs_fm_msix_tblhdl);
1404 state->hs_fm_msix_tblhdl = NULL;
1405 }
1406
1407 if (state->hs_reg_msix_tblhdl) {
1408 ddi_regs_map_free(&state->hs_reg_msix_tblhdl);
1409 state->hs_reg_msix_tblhdl = NULL;
1410 }
1411
1412 if (state->hs_fm_msix_pbahdl) {
1413 hermon_regs_map_free(state, &state->hs_fm_msix_pbahdl);
1414 state->hs_fm_msix_pbahdl = NULL;
1415 }
1416
1417 if (state->hs_reg_msix_pbahdl) {
1418 ddi_regs_map_free(&state->hs_reg_msix_pbahdl);
1419 state->hs_reg_msix_pbahdl = NULL;
1420 }
1421
1422 if (state->hs_fm_pcihdl) {
1423 hermon_pci_config_teardown(state, &state->hs_fm_pcihdl);
1424 state->hs_fm_pcihdl = NULL;
1425 }
1426
1427 if (state->hs_reg_pcihdl) {
1428 pci_config_teardown(&state->hs_reg_pcihdl);
1429 state->hs_reg_pcihdl = NULL;
1430 }
1431 }
1432
1433
1434 /*
1435 * hermon_isr_init()
1436 * Context: Only called from attach() path context
1437 */
1438 static int
hermon_isr_init(hermon_state_t * state)1439 hermon_isr_init(hermon_state_t *state)
1440 {
1441 int status;
1442 int intr;
1443
1444 for (intr = 0; intr < state->hs_intrmsi_allocd; intr++) {
1445
1446 /*
1447 * Add a handler for the interrupt or MSI
1448 */
1449 status = ddi_intr_add_handler(state->hs_intrmsi_hdl[intr],
1450 hermon_isr, (caddr_t)state, (void *)(uintptr_t)intr);
1451 if (status != DDI_SUCCESS) {
1452 return (DDI_FAILURE);
1453 }
1454
1455 /*
1456 * Enable the software interrupt. Note: depending on the value
1457 * returned in the capability flag, we have to call either
1458 * ddi_intr_block_enable() or ddi_intr_enable().
1459 */
1460 if (state->hs_intrmsi_cap & DDI_INTR_FLAG_BLOCK) {
1461 status = ddi_intr_block_enable(
1462 &state->hs_intrmsi_hdl[intr], 1);
1463 if (status != DDI_SUCCESS) {
1464 return (DDI_FAILURE);
1465 }
1466 } else {
1467 status = ddi_intr_enable(state->hs_intrmsi_hdl[intr]);
1468 if (status != DDI_SUCCESS) {
1469 return (DDI_FAILURE);
1470 }
1471 }
1472 }
1473
1474 /*
1475 * Now that the ISR has been enabled, defer arm_all EQs for event
1476 * generation until later, in case MSIX is enabled
1477 */
1478 return (DDI_SUCCESS);
1479 }
1480
1481
1482 /*
1483 * hermon_isr_fini()
1484 * Context: Only called from attach() and/or detach() path contexts
1485 */
1486 static void
hermon_isr_fini(hermon_state_t * state)1487 hermon_isr_fini(hermon_state_t *state)
1488 {
1489 int intr;
1490
1491 for (intr = 0; intr < state->hs_intrmsi_allocd; intr++) {
1492 /* Disable the software interrupt */
1493 if (state->hs_intrmsi_cap & DDI_INTR_FLAG_BLOCK) {
1494 (void) ddi_intr_block_disable(
1495 &state->hs_intrmsi_hdl[intr], 1);
1496 } else {
1497 (void) ddi_intr_disable(state->hs_intrmsi_hdl[intr]);
1498 }
1499
1500 /*
1501 * Remove the software handler for the interrupt or MSI
1502 */
1503 (void) ddi_intr_remove_handler(state->hs_intrmsi_hdl[intr]);
1504 }
1505 }
1506
1507
1508 /*
1509 * Sum of ICM configured values:
1510 * cMPT, dMPT, MTT, QPC, SRQC, RDB, CQC, ALTC, AUXC, EQC, MCG
1511 *
1512 */
1513 static uint64_t
hermon_size_icm(hermon_state_t * state)1514 hermon_size_icm(hermon_state_t *state)
1515 {
1516 hermon_hw_querydevlim_t *devlim;
1517 hermon_cfg_profile_t *cfg;
1518 uint64_t num_cmpts, num_dmpts, num_mtts;
1519 uint64_t num_qpcs, num_srqc, num_rdbs;
1520 #ifndef HERMON_FW_WORKAROUND
1521 uint64_t num_auxc;
1522 #endif
1523 uint64_t num_cqcs, num_altc;
1524 uint64_t num_eqcs, num_mcgs;
1525 uint64_t size;
1526
1527 devlim = &state->hs_devlim;
1528 cfg = state->hs_cfg_profile;
1529 /* number of respective entries */
1530 num_cmpts = (uint64_t)0x1 << cfg->cp_log_num_cmpt;
1531 num_mtts = (uint64_t)0x1 << cfg->cp_log_num_mtt;
1532 num_dmpts = (uint64_t)0x1 << cfg->cp_log_num_dmpt;
1533 num_qpcs = (uint64_t)0x1 << cfg->cp_log_num_qp;
1534 num_srqc = (uint64_t)0x1 << cfg->cp_log_num_srq;
1535 num_rdbs = (uint64_t)0x1 << cfg->cp_log_num_rdb;
1536 num_cqcs = (uint64_t)0x1 << cfg->cp_log_num_cq;
1537 num_altc = (uint64_t)0x1 << cfg->cp_log_num_qp;
1538 #ifndef HERMON_FW_WORKAROUND
1539 num_auxc = (uint64_t)0x1 << cfg->cp_log_num_qp;
1540 #endif
1541 num_eqcs = (uint64_t)0x1 << cfg->cp_log_num_eq;
1542 num_mcgs = (uint64_t)0x1 << cfg->cp_log_num_mcg;
1543
1544 size =
1545 num_cmpts * devlim->cmpt_entry_sz +
1546 num_dmpts * devlim->dmpt_entry_sz +
1547 num_mtts * devlim->mtt_entry_sz +
1548 num_qpcs * devlim->qpc_entry_sz +
1549 num_srqc * devlim->srq_entry_sz +
1550 num_rdbs * devlim->rdmardc_entry_sz +
1551 num_cqcs * devlim->cqc_entry_sz +
1552 num_altc * devlim->altc_entry_sz +
1553 #ifdef HERMON_FW_WORKAROUND
1554 0x80000000ull +
1555 #else
1556 num_auxc * devlim->aux_entry_sz +
1557 #endif
1558 num_eqcs * devlim->eqc_entry_sz +
1559 num_mcgs * HERMON_MCGMEM_SZ(state);
1560 return (size);
1561 }
1562
1563
1564 /*
1565 * hermon_hw_init()
1566 * Context: Only called from attach() path context
1567 */
1568 static int
hermon_hw_init(hermon_state_t * state)1569 hermon_hw_init(hermon_state_t *state)
1570 {
1571 hermon_drv_cleanup_level_t cleanup;
1572 sm_nodeinfo_t nodeinfo;
1573 uint64_t clr_intr_offset;
1574 int status;
1575 uint32_t fw_size; /* in page */
1576 uint64_t offset;
1577
1578 /* This is where driver initialization begins */
1579 cleanup = HERMON_DRV_CLEANUP_LEVEL0;
1580
1581 /* Setup device access attributes */
1582 state->hs_reg_accattr.devacc_attr_version = DDI_DEVICE_ATTR_V1;
1583 state->hs_reg_accattr.devacc_attr_endian_flags = DDI_STRUCTURE_BE_ACC;
1584 state->hs_reg_accattr.devacc_attr_dataorder = DDI_STRICTORDER_ACC;
1585 state->hs_reg_accattr.devacc_attr_access = DDI_DEFAULT_ACC;
1586
1587 /* Setup fma-protected access attributes */
1588 state->hs_fm_accattr.devacc_attr_version =
1589 hermon_devacc_attr_version(state);
1590 state->hs_fm_accattr.devacc_attr_endian_flags = DDI_STRUCTURE_BE_ACC;
1591 state->hs_fm_accattr.devacc_attr_dataorder = DDI_STRICTORDER_ACC;
1592 /* set acc err protection type */
1593 state->hs_fm_accattr.devacc_attr_access =
1594 hermon_devacc_attr_access(state);
1595
1596 /* Setup for PCI config read/write of HCA device */
1597 status = hermon_pci_config_setup(state, &state->hs_fm_pcihdl);
1598 if (status != DDI_SUCCESS) {
1599 hermon_hw_fini(state, cleanup);
1600 HERMON_ATTACH_MSG(state->hs_attach_buf,
1601 "hw_init_PCI_config_space_regmap_fail");
1602 /* This case is not the degraded one */
1603 return (DDI_FAILURE);
1604 }
1605
1606 /* Map PCI config space and MSI-X tables/pba */
1607 hermon_set_msix_info(state);
1608
1609 /* Map in Hermon registers (CMD, UAR, MSIX) and setup offsets */
1610 status = hermon_regs_map_setup(state, HERMON_CMD_BAR,
1611 &state->hs_reg_cmd_baseaddr, 0, 0, &state->hs_fm_accattr,
1612 &state->hs_fm_cmdhdl);
1613 if (status != DDI_SUCCESS) {
1614 hermon_hw_fini(state, cleanup);
1615 HERMON_ATTACH_MSG(state->hs_attach_buf,
1616 "hw_init_CMD_BAR_regmap_fail");
1617 /* This case is not the degraded one */
1618 return (DDI_FAILURE);
1619 }
1620
1621 cleanup = HERMON_DRV_CLEANUP_LEVEL1;
1622 /*
1623 * We defer UAR-BAR mapping until later. Need to know if
1624 * blueflame mapping is to be done, and don't know that until after
1625 * we get the dev_caps, so do it right after that
1626 */
1627
1628 /*
1629 * There is a third BAR defined for Hermon - it is for MSIX
1630 *
1631 * Will need to explore it's possible need/use w/ Mellanox
1632 * [es] Temporary mapping maybe
1633 */
1634
1635 #ifdef HERMON_SUPPORTS_MSIX_BAR
1636 status = ddi_regs_map_setup(state->hs_dip, HERMON_MSIX_BAR,
1637 &state->hs_reg_msi_baseaddr, 0, 0, &state->hs_reg_accattr,
1638 &state->hs_reg_msihdl);
1639 if (status != DDI_SUCCESS) {
1640 hermon_hw_fini(state, cleanup);
1641 HERMON_ATTACH_MSG(state->hs_attach_buf,
1642 "hw_init_MSIX_BAR_regmap_fail");
1643 /* This case is not the degraded one */
1644 return (DDI_FAILURE);
1645 }
1646 #endif
1647
1648 cleanup = HERMON_DRV_CLEANUP_LEVEL2;
1649
1650 /*
1651 * Save interesting registers away. The offsets of the first two
1652 * here (HCR and sw_reset) are detailed in the PRM, the others are
1653 * derived from values in the QUERY_FW output, so we'll save them
1654 * off later.
1655 */
1656 /* Host Command Register (HCR) */
1657 state->hs_cmd_regs.hcr = (hermon_hw_hcr_t *)
1658 ((uintptr_t)state->hs_reg_cmd_baseaddr + HERMON_CMD_HCR_OFFSET);
1659 state->hs_cmd_toggle = 0; /* initialize it for use */
1660
1661 /* Software Reset register (sw_reset) and semaphore */
1662 state->hs_cmd_regs.sw_reset = (uint32_t *)
1663 ((uintptr_t)state->hs_reg_cmd_baseaddr +
1664 HERMON_CMD_SW_RESET_OFFSET);
1665 state->hs_cmd_regs.sw_semaphore = (uint32_t *)
1666 ((uintptr_t)state->hs_reg_cmd_baseaddr +
1667 HERMON_CMD_SW_SEMAPHORE_OFFSET);
1668
1669 /* make sure init'd before we start filling things in */
1670 bzero(&state->hs_hcaparams, sizeof (struct hermon_hw_initqueryhca_s));
1671
1672 /* Initialize the Phase1 configuration profile */
1673 status = hermon_cfg_profile_init_phase1(state);
1674 if (status != DDI_SUCCESS) {
1675 hermon_hw_fini(state, cleanup);
1676 HERMON_ATTACH_MSG(state->hs_attach_buf,
1677 "hw_init_cfginit1_fail");
1678 /* This case is not the degraded one */
1679 return (DDI_FAILURE);
1680 }
1681 cleanup = HERMON_DRV_CLEANUP_LEVEL3;
1682
1683 /* Do a software reset of the adapter to ensure proper state */
1684 status = hermon_sw_reset(state);
1685 if (status != HERMON_CMD_SUCCESS) {
1686 hermon_hw_fini(state, cleanup);
1687 HERMON_ATTACH_MSG(state->hs_attach_buf,
1688 "hw_init_sw_reset_fail");
1689 /* This case is not the degraded one */
1690 return (DDI_FAILURE);
1691 }
1692
1693 /* Initialize mailboxes */
1694 status = hermon_rsrc_init_phase1(state);
1695 if (status != DDI_SUCCESS) {
1696 hermon_hw_fini(state, cleanup);
1697 HERMON_ATTACH_MSG(state->hs_attach_buf,
1698 "hw_init_rsrcinit1_fail");
1699 /* This case is not the degraded one */
1700 return (DDI_FAILURE);
1701 }
1702 cleanup = HERMON_DRV_CLEANUP_LEVEL4;
1703
1704 /* Post QUERY_FW */
1705 status = hermon_cmn_query_cmd_post(state, QUERY_FW, 0, 0, &state->hs_fw,
1706 sizeof (hermon_hw_queryfw_t), HERMON_CMD_NOSLEEP_SPIN);
1707 if (status != HERMON_CMD_SUCCESS) {
1708 cmn_err(CE_NOTE, "QUERY_FW command failed: %08x\n", status);
1709 hermon_hw_fini(state, cleanup);
1710 HERMON_ATTACH_MSG(state->hs_attach_buf,
1711 "hw_init_query_fw_cmd_fail");
1712 /* This case is not the degraded one */
1713 return (DDI_FAILURE);
1714 }
1715
1716 /* Validate what/that HERMON FW version is appropriate */
1717
1718 status = hermon_fw_version_check(state);
1719 if (status != DDI_SUCCESS) {
1720 HERMON_FMANOTE(state, HERMON_FMA_FWVER);
1721 if (state->hs_operational_mode == HERMON_HCA_MODE) {
1722 cmn_err(CE_CONT, "Unsupported Hermon FW version: "
1723 "expected: %04d.%04d.%04d, "
1724 "actual: %04d.%04d.%04d\n",
1725 HERMON_FW_VER_MAJOR,
1726 HERMON_FW_VER_MINOR,
1727 HERMON_FW_VER_SUBMINOR,
1728 state->hs_fw.fw_rev_major,
1729 state->hs_fw.fw_rev_minor,
1730 state->hs_fw.fw_rev_subminor);
1731 } else {
1732 cmn_err(CE_CONT, "Unsupported FW version: "
1733 "%04d.%04d.%04d\n",
1734 state->hs_fw.fw_rev_major,
1735 state->hs_fw.fw_rev_minor,
1736 state->hs_fw.fw_rev_subminor);
1737 }
1738 state->hs_operational_mode = HERMON_MAINTENANCE_MODE;
1739 state->hs_fm_degraded_reason = HCA_FW_MISMATCH;
1740 hermon_hw_fini(state, cleanup);
1741 HERMON_ATTACH_MSG(state->hs_attach_buf,
1742 "hw_init_checkfwver_fail");
1743 /* This case is the degraded one */
1744 return (HERMON_CMD_BAD_NVMEM);
1745 }
1746
1747 /*
1748 * Save off the rest of the interesting registers that we'll be using.
1749 * Setup the offsets for the other registers.
1750 */
1751
1752 /*
1753 * Hermon does the intr_offset from the BAR - technically should get the
1754 * BAR info from the response, but PRM says it's from BAR0-1, which is
1755 * for us the CMD BAR
1756 */
1757
1758 clr_intr_offset = state->hs_fw.clr_intr_offs & HERMON_CMD_OFFSET_MASK;
1759
1760 /* Save Clear Interrupt address */
1761 state->hs_cmd_regs.clr_intr = (uint64_t *)
1762 (uintptr_t)(state->hs_reg_cmd_baseaddr + clr_intr_offset);
1763
1764 /*
1765 * Set the error buffer also into the structure - used in hermon_event.c
1766 * to check for internal error on the HCA, not reported in eqe or
1767 * (necessarily) by interrupt
1768 */
1769 state->hs_cmd_regs.fw_err_buf = (uint32_t *)(uintptr_t)
1770 (state->hs_reg_cmd_baseaddr + state->hs_fw.error_buf_addr);
1771
1772 /*
1773 * Invoke a polling thread to check the error buffer periodically.
1774 */
1775 if (!hermon_no_inter_err_chk) {
1776 state->hs_fm_poll_thread = ddi_periodic_add(
1777 hermon_inter_err_chk, (void *)state, FM_POLL_INTERVAL,
1778 DDI_IPL_0);
1779 }
1780
1781 cleanup = HERMON_DRV_CLEANUP_LEVEL5;
1782
1783 /*
1784 * Allocate, map, and run the HCA Firmware.
1785 */
1786
1787 /* Allocate memory for the firmware to load into and map it */
1788
1789 /* get next higher power of 2 */
1790 fw_size = 1 << highbit(state->hs_fw.fw_pages);
1791 state->hs_fw_dma.length = fw_size << HERMON_PAGESHIFT;
1792 status = hermon_dma_alloc(state, &state->hs_fw_dma, MAP_FA);
1793 if (status != DDI_SUCCESS) {
1794 cmn_err(CE_NOTE, "FW alloc failed\n");
1795 hermon_hw_fini(state, cleanup);
1796 HERMON_ATTACH_MSG(state->hs_attach_buf,
1797 "hw_init_dma_alloc_fw_fail");
1798 /* This case is not the degraded one */
1799 return (DDI_FAILURE);
1800 }
1801
1802 cleanup = HERMON_DRV_CLEANUP_LEVEL6;
1803
1804 /* Invoke the RUN_FW cmd to run the firmware */
1805 status = hermon_run_fw_cmd_post(state);
1806 if (status != DDI_SUCCESS) {
1807 cmn_err(CE_NOTE, "RUN_FW command failed: 0x%08x\n", status);
1808 if (status == HERMON_CMD_BAD_NVMEM) {
1809 state->hs_operational_mode = HERMON_MAINTENANCE_MODE;
1810 state->hs_fm_degraded_reason = HCA_FW_CORRUPT;
1811 }
1812 hermon_hw_fini(state, cleanup);
1813 HERMON_ATTACH_MSG(state->hs_attach_buf, "hw_init_run_fw_fail");
1814 /*
1815 * If the status is HERMON_CMD_BAD_NVMEM, it's likely the
1816 * firmware is corrupted, so the mode falls into the
1817 * maintenance mode.
1818 */
1819 return (status == HERMON_CMD_BAD_NVMEM ? HERMON_CMD_BAD_NVMEM :
1820 DDI_FAILURE);
1821 }
1822
1823
1824 /*
1825 * QUERY DEVICE LIMITS/CAPABILITIES
1826 * NOTE - in Hermon, the command is changed to QUERY_DEV_CAP,
1827 * but for familiarity we have kept the structure name the
1828 * same as Tavor/Arbel
1829 */
1830
1831 status = hermon_cmn_query_cmd_post(state, QUERY_DEV_CAP, 0, 0,
1832 &state->hs_devlim, sizeof (hermon_hw_querydevlim_t),
1833 HERMON_CMD_NOSLEEP_SPIN);
1834 if (status != HERMON_CMD_SUCCESS) {
1835 cmn_err(CE_NOTE, "QUERY_DEV_CAP command failed: 0x%08x\n",
1836 status);
1837 hermon_hw_fini(state, cleanup);
1838 HERMON_ATTACH_MSG(state->hs_attach_buf, "hw_init_devcap_fail");
1839 /* This case is not the degraded one */
1840 return (DDI_FAILURE);
1841 }
1842
1843 state->hs_rsvd_eqs = max(state->hs_devlim.num_rsvd_eq,
1844 (4 * state->hs_devlim.num_rsvd_uar));
1845
1846 /* now we have enough info to map in the UAR BAR */
1847 /*
1848 * First, we figure out how to map the BAR for UAR - use only half if
1849 * BlueFlame is enabled - in that case the mapped length is 1/2 the
1850 * log_max_uar_sz (max__uar - 1) * 1MB ( +20).
1851 */
1852
1853 if (state->hs_devlim.blu_flm) { /* Blue Flame Enabled */
1854 offset = (uint64_t)1 << (state->hs_devlim.log_max_uar_sz + 20);
1855 } else {
1856 offset = 0; /* a zero length means map the whole thing */
1857 }
1858 status = hermon_regs_map_setup(state, HERMON_UAR_BAR,
1859 &state->hs_reg_uar_baseaddr, 0, offset, &state->hs_fm_accattr,
1860 &state->hs_fm_uarhdl);
1861 if (status != DDI_SUCCESS) {
1862 HERMON_ATTACH_MSG(state->hs_attach_buf, "UAR BAR mapping");
1863 /* This case is not the degraded one */
1864 return (DDI_FAILURE);
1865 }
1866
1867 /* and if BlueFlame is enabled, map the other half there */
1868 if (state->hs_devlim.blu_flm) { /* Blue Flame Enabled */
1869 offset = (uint64_t)1 << (state->hs_devlim.log_max_uar_sz + 20);
1870 status = ddi_regs_map_setup(state->hs_dip, HERMON_UAR_BAR,
1871 &state->hs_reg_bf_baseaddr, offset, offset,
1872 &state->hs_reg_accattr, &state->hs_reg_bfhdl);
1873 if (status != DDI_SUCCESS) {
1874 HERMON_ATTACH_MSG(state->hs_attach_buf,
1875 "BlueFlame BAR mapping");
1876 /* This case is not the degraded one */
1877 return (DDI_FAILURE);
1878 }
1879 /* This will be used in hw_fini if we fail to init. */
1880 state->hs_bf_offset = offset;
1881 }
1882 cleanup = HERMON_DRV_CLEANUP_LEVEL7;
1883
1884 /* Hermon has a couple of things needed for phase 2 in query port */
1885
1886 status = hermon_cmn_query_cmd_post(state, QUERY_PORT, 0, 0x01,
1887 &state->hs_queryport, sizeof (hermon_hw_query_port_t),
1888 HERMON_CMD_NOSLEEP_SPIN);
1889 if (status != HERMON_CMD_SUCCESS) {
1890 cmn_err(CE_NOTE, "QUERY_PORT command failed: 0x%08x\n",
1891 status);
1892 hermon_hw_fini(state, cleanup);
1893 HERMON_ATTACH_MSG(state->hs_attach_buf,
1894 "hw_init_queryport_fail");
1895 /* This case is not the degraded one */
1896 return (DDI_FAILURE);
1897 }
1898
1899 /* Initialize the Phase2 Hermon configuration profile */
1900 status = hermon_cfg_profile_init_phase2(state);
1901 if (status != DDI_SUCCESS) {
1902 cmn_err(CE_NOTE, "CFG phase 2 failed: 0x%08x\n", status);
1903 hermon_hw_fini(state, cleanup);
1904 HERMON_ATTACH_MSG(state->hs_attach_buf,
1905 "hw_init_cfginit2_fail");
1906 /* This case is not the degraded one */
1907 return (DDI_FAILURE);
1908 }
1909
1910 /* Determine and set the ICM size */
1911 state->hs_icm_sz = hermon_size_icm(state);
1912 status = hermon_set_icm_size_cmd_post(state);
1913 if (status != DDI_SUCCESS) {
1914 cmn_err(CE_NOTE, "Hermon: SET_ICM_SIZE cmd failed: 0x%08x\n",
1915 status);
1916 hermon_hw_fini(state, cleanup);
1917 HERMON_ATTACH_MSG(state->hs_attach_buf,
1918 "hw_init_seticmsz_fail");
1919 /* This case is not the degraded one */
1920 return (DDI_FAILURE);
1921 }
1922 /* alloc icm aux physical memory and map it */
1923
1924 state->hs_icma_dma.length = 1 << highbit(state->hs_icma_sz);
1925
1926 status = hermon_dma_alloc(state, &state->hs_icma_dma, MAP_ICM_AUX);
1927 if (status != DDI_SUCCESS) {
1928 cmn_err(CE_NOTE, "failed to alloc (0x%llx) bytes for ICMA\n",
1929 (longlong_t)state->hs_icma_dma.length);
1930 hermon_hw_fini(state, cleanup);
1931 HERMON_ATTACH_MSG(state->hs_attach_buf,
1932 "hw_init_dma_alloc_icm_aux_fail");
1933 /* This case is not the degraded one */
1934 return (DDI_FAILURE);
1935 }
1936 cleanup = HERMON_DRV_CLEANUP_LEVEL8;
1937
1938 cleanup = HERMON_DRV_CLEANUP_LEVEL9;
1939
1940 /* Allocate an array of structures to house the ICM tables */
1941 state->hs_icm = kmem_zalloc(HERMON_NUM_ICM_RESOURCES *
1942 sizeof (hermon_icm_table_t), KM_SLEEP);
1943
1944 /* Set up the ICM address space and the INIT_HCA command input */
1945 status = hermon_icm_config_setup(state, &state->hs_hcaparams);
1946 if (status != HERMON_CMD_SUCCESS) {
1947 cmn_err(CE_NOTE, "ICM configuration failed\n");
1948 hermon_hw_fini(state, cleanup);
1949 HERMON_ATTACH_MSG(state->hs_attach_buf,
1950 "hw_init_icm_config_setup_fail");
1951 /* This case is not the degraded one */
1952 return (DDI_FAILURE);
1953 }
1954 cleanup = HERMON_DRV_CLEANUP_LEVEL10;
1955
1956 /* Initialize the adapter with the INIT_HCA cmd */
1957 status = hermon_init_hca_cmd_post(state, &state->hs_hcaparams,
1958 HERMON_CMD_NOSLEEP_SPIN);
1959 if (status != HERMON_CMD_SUCCESS) {
1960 cmn_err(CE_NOTE, "INIT_HCA command failed: %08x\n", status);
1961 hermon_hw_fini(state, cleanup);
1962 HERMON_ATTACH_MSG(state->hs_attach_buf, "hw_init_hca_fail");
1963 /* This case is not the degraded one */
1964 return (DDI_FAILURE);
1965 }
1966 cleanup = HERMON_DRV_CLEANUP_LEVEL11;
1967
1968 /* Enter the second phase of init for Hermon configuration/resources */
1969 status = hermon_rsrc_init_phase2(state);
1970 if (status != DDI_SUCCESS) {
1971 hermon_hw_fini(state, cleanup);
1972 HERMON_ATTACH_MSG(state->hs_attach_buf,
1973 "hw_init_rsrcinit2_fail");
1974 /* This case is not the degraded one */
1975 return (DDI_FAILURE);
1976 }
1977 cleanup = HERMON_DRV_CLEANUP_LEVEL12;
1978
1979 /* Query the adapter via QUERY_ADAPTER */
1980 status = hermon_cmn_query_cmd_post(state, QUERY_ADAPTER, 0, 0,
1981 &state->hs_adapter, sizeof (hermon_hw_queryadapter_t),
1982 HERMON_CMD_NOSLEEP_SPIN);
1983 if (status != HERMON_CMD_SUCCESS) {
1984 cmn_err(CE_NOTE, "Hermon: QUERY_ADAPTER command failed: %08x\n",
1985 status);
1986 hermon_hw_fini(state, cleanup);
1987 HERMON_ATTACH_MSG(state->hs_attach_buf,
1988 "hw_init_query_adapter_fail");
1989 /* This case is not the degraded one */
1990 return (DDI_FAILURE);
1991 }
1992
1993 /* Allocate protection domain (PD) for Hermon internal use */
1994 status = hermon_pd_alloc(state, &state->hs_pdhdl_internal,
1995 HERMON_SLEEP);
1996 if (status != DDI_SUCCESS) {
1997 cmn_err(CE_NOTE, "failed to alloc internal PD\n");
1998 hermon_hw_fini(state, cleanup);
1999 HERMON_ATTACH_MSG(state->hs_attach_buf,
2000 "hw_init_internal_pd_alloc_fail");
2001 /* This case is not the degraded one */
2002 return (DDI_FAILURE);
2003 }
2004 cleanup = HERMON_DRV_CLEANUP_LEVEL13;
2005
2006 /* Setup UAR page for kernel use */
2007 status = hermon_internal_uarpg_init(state);
2008 if (status != DDI_SUCCESS) {
2009 cmn_err(CE_NOTE, "failed to setup internal UAR\n");
2010 hermon_hw_fini(state, cleanup);
2011 HERMON_ATTACH_MSG(state->hs_attach_buf,
2012 "hw_init_internal_uarpg_alloc_fail");
2013 /* This case is not the degraded one */
2014 return (DDI_FAILURE);
2015 }
2016 cleanup = HERMON_DRV_CLEANUP_LEVEL14;
2017
2018 /* Query and initialize the Hermon interrupt/MSI information */
2019 status = hermon_intr_or_msi_init(state);
2020 if (status != DDI_SUCCESS) {
2021 cmn_err(CE_NOTE, "failed to setup INTR/MSI\n");
2022 hermon_hw_fini(state, cleanup);
2023 HERMON_ATTACH_MSG(state->hs_attach_buf,
2024 "hw_init_intr_or_msi_init_fail");
2025 /* This case is not the degraded one */
2026 return (DDI_FAILURE);
2027 }
2028 cleanup = HERMON_DRV_CLEANUP_LEVEL15;
2029
2030 status = hermon_isr_init(state); /* set up the isr */
2031 if (status != DDI_SUCCESS) {
2032 cmn_err(CE_NOTE, "failed to init isr\n");
2033 hermon_hw_fini(state, cleanup);
2034 HERMON_ATTACH_MSG(state->hs_attach_buf,
2035 "hw_init_isrinit_fail");
2036 /* This case is not the degraded one */
2037 return (DDI_FAILURE);
2038 }
2039 cleanup = HERMON_DRV_CLEANUP_LEVEL16;
2040
2041 /* Setup the event queues */
2042 status = hermon_eq_init_all(state);
2043 if (status != DDI_SUCCESS) {
2044 cmn_err(CE_NOTE, "failed to init EQs\n");
2045 hermon_hw_fini(state, cleanup);
2046 HERMON_ATTACH_MSG(state->hs_attach_buf,
2047 "hw_init_eqinitall_fail");
2048 /* This case is not the degraded one */
2049 return (DDI_FAILURE);
2050 }
2051 cleanup = HERMON_DRV_CLEANUP_LEVEL17;
2052
2053
2054
2055 /* Reserve contexts for QP0 and QP1 */
2056 status = hermon_special_qp_contexts_reserve(state);
2057 if (status != DDI_SUCCESS) {
2058 cmn_err(CE_NOTE, "failed to init special QPs\n");
2059 hermon_hw_fini(state, cleanup);
2060 HERMON_ATTACH_MSG(state->hs_attach_buf,
2061 "hw_init_rsrv_sqp_fail");
2062 /* This case is not the degraded one */
2063 return (DDI_FAILURE);
2064 }
2065 cleanup = HERMON_DRV_CLEANUP_LEVEL18;
2066
2067 /* Initialize for multicast group handling */
2068 status = hermon_mcg_init(state);
2069 if (status != DDI_SUCCESS) {
2070 cmn_err(CE_NOTE, "failed to init multicast\n");
2071 hermon_hw_fini(state, cleanup);
2072 HERMON_ATTACH_MSG(state->hs_attach_buf,
2073 "hw_init_mcg_init_fail");
2074 /* This case is not the degraded one */
2075 return (DDI_FAILURE);
2076 }
2077 cleanup = HERMON_DRV_CLEANUP_LEVEL19;
2078
2079 /* Initialize the Hermon IB port(s) */
2080 status = hermon_hca_port_init(state);
2081 if (status != DDI_SUCCESS) {
2082 cmn_err(CE_NOTE, "failed to init HCA Port\n");
2083 hermon_hw_fini(state, cleanup);
2084 HERMON_ATTACH_MSG(state->hs_attach_buf,
2085 "hw_init_hca_port_init_fail");
2086 /* This case is not the degraded one */
2087 return (DDI_FAILURE);
2088 }
2089
2090 cleanup = HERMON_DRV_CLEANUP_ALL;
2091
2092 /* Determine NodeGUID and SystemImageGUID */
2093 status = hermon_getnodeinfo_cmd_post(state, HERMON_CMD_NOSLEEP_SPIN,
2094 &nodeinfo);
2095 if (status != HERMON_CMD_SUCCESS) {
2096 cmn_err(CE_NOTE, "GetNodeInfo command failed: %08x\n", status);
2097 hermon_hw_fini(state, cleanup);
2098 HERMON_ATTACH_MSG(state->hs_attach_buf,
2099 "hw_init_getnodeinfo_cmd_fail");
2100 /* This case is not the degraded one */
2101 return (DDI_FAILURE);
2102 }
2103
2104 /*
2105 * If the NodeGUID value was set in OBP properties, then we use that
2106 * value. But we still print a message if the value we queried from
2107 * firmware does not match this value.
2108 *
2109 * Otherwise if OBP value is not set then we use the value from
2110 * firmware unconditionally.
2111 */
2112 if (state->hs_cfg_profile->cp_nodeguid) {
2113 state->hs_nodeguid = state->hs_cfg_profile->cp_nodeguid;
2114 } else {
2115 state->hs_nodeguid = nodeinfo.NodeGUID;
2116 }
2117
2118 if (state->hs_nodeguid != nodeinfo.NodeGUID) {
2119 cmn_err(CE_NOTE, "!NodeGUID value queried from firmware "
2120 "does not match value set by device property");
2121 }
2122
2123 /*
2124 * If the SystemImageGUID value was set in OBP properties, then we use
2125 * that value. But we still print a message if the value we queried
2126 * from firmware does not match this value.
2127 *
2128 * Otherwise if OBP value is not set then we use the value from
2129 * firmware unconditionally.
2130 */
2131 if (state->hs_cfg_profile->cp_sysimgguid) {
2132 state->hs_sysimgguid = state->hs_cfg_profile->cp_sysimgguid;
2133 } else {
2134 state->hs_sysimgguid = nodeinfo.SystemImageGUID;
2135 }
2136
2137 if (state->hs_sysimgguid != nodeinfo.SystemImageGUID) {
2138 cmn_err(CE_NOTE, "!SystemImageGUID value queried from firmware "
2139 "does not match value set by device property");
2140 }
2141
2142 /* Get NodeDescription */
2143 status = hermon_getnodedesc_cmd_post(state, HERMON_CMD_NOSLEEP_SPIN,
2144 (sm_nodedesc_t *)&state->hs_nodedesc);
2145 if (status != HERMON_CMD_SUCCESS) {
2146 cmn_err(CE_CONT, "GetNodeDesc command failed: %08x\n", status);
2147 hermon_hw_fini(state, cleanup);
2148 HERMON_ATTACH_MSG(state->hs_attach_buf,
2149 "hw_init_getnodedesc_cmd_fail");
2150 /* This case is not the degraded one */
2151 return (DDI_FAILURE);
2152 }
2153
2154 return (DDI_SUCCESS);
2155 }
2156
2157
2158 /*
2159 * hermon_hw_fini()
2160 * Context: Only called from attach() and/or detach() path contexts
2161 */
2162 static void
hermon_hw_fini(hermon_state_t * state,hermon_drv_cleanup_level_t cleanup)2163 hermon_hw_fini(hermon_state_t *state, hermon_drv_cleanup_level_t cleanup)
2164 {
2165 uint_t num_ports;
2166 int i, status;
2167
2168
2169 /*
2170 * JBDB - We might not want to run these returns in all cases of
2171 * Bad News. We should still attempt to free all of the DMA memory
2172 * resources... This needs to be worked last, after all allocations
2173 * are implemented. For now, and possibly for later, this works.
2174 */
2175
2176 switch (cleanup) {
2177 /*
2178 * If we add more driver initialization steps that should be cleaned
2179 * up here, we need to ensure that HERMON_DRV_CLEANUP_ALL is still the
2180 * first entry (i.e. corresponds to the last init step).
2181 */
2182 case HERMON_DRV_CLEANUP_ALL:
2183 /* Shutdown the Hermon IB port(s) */
2184 num_ports = state->hs_cfg_profile->cp_num_ports;
2185 (void) hermon_hca_ports_shutdown(state, num_ports);
2186 /* FALLTHROUGH */
2187
2188 case HERMON_DRV_CLEANUP_LEVEL19:
2189 /* Teardown resources used for multicast group handling */
2190 hermon_mcg_fini(state);
2191 /* FALLTHROUGH */
2192
2193 case HERMON_DRV_CLEANUP_LEVEL18:
2194 /* Unreserve the special QP contexts */
2195 hermon_special_qp_contexts_unreserve(state);
2196 /* FALLTHROUGH */
2197
2198 case HERMON_DRV_CLEANUP_LEVEL17:
2199 /*
2200 * Attempt to teardown all event queues (EQ). If we fail
2201 * here then print a warning message and return. Something
2202 * (either in HW or SW) has gone seriously wrong.
2203 */
2204 status = hermon_eq_fini_all(state);
2205 if (status != DDI_SUCCESS) {
2206 HERMON_WARNING(state, "failed to teardown EQs");
2207 return;
2208 }
2209 /* FALLTHROUGH */
2210 case HERMON_DRV_CLEANUP_LEVEL16:
2211 /* Teardown Hermon interrupts */
2212 hermon_isr_fini(state);
2213 /* FALLTHROUGH */
2214
2215 case HERMON_DRV_CLEANUP_LEVEL15:
2216 status = hermon_intr_or_msi_fini(state);
2217 if (status != DDI_SUCCESS) {
2218 HERMON_WARNING(state, "failed to free intr/MSI");
2219 return;
2220 }
2221 /* FALLTHROUGH */
2222
2223 case HERMON_DRV_CLEANUP_LEVEL14:
2224 /* Free the resources for the Hermon internal UAR pages */
2225 hermon_internal_uarpg_fini(state);
2226 /* FALLTHROUGH */
2227
2228 case HERMON_DRV_CLEANUP_LEVEL13:
2229 /*
2230 * Free the PD that was used internally by Hermon software. If
2231 * we fail here then print a warning and return. Something
2232 * (probably software-related, but perhaps HW) has gone wrong.
2233 */
2234 status = hermon_pd_free(state, &state->hs_pdhdl_internal);
2235 if (status != DDI_SUCCESS) {
2236 HERMON_WARNING(state, "failed to free internal PD");
2237 return;
2238 }
2239 /* FALLTHROUGH */
2240
2241 case HERMON_DRV_CLEANUP_LEVEL12:
2242 /* Cleanup all the phase2 resources first */
2243 hermon_rsrc_fini(state, HERMON_RSRC_CLEANUP_ALL);
2244 /* FALLTHROUGH */
2245
2246 case HERMON_DRV_CLEANUP_LEVEL11:
2247 /* LEVEL11 is after INIT_HCA */
2248 /* FALLTHROUGH */
2249
2250
2251 case HERMON_DRV_CLEANUP_LEVEL10:
2252 /*
2253 * Unmap the ICM memory area with UNMAP_ICM command.
2254 */
2255 status = hermon_unmap_icm_cmd_post(state, NULL);
2256 if (status != DDI_SUCCESS) {
2257 cmn_err(CE_WARN,
2258 "hermon_hw_fini: failed to unmap ICM\n");
2259 }
2260
2261 /* Free the initial ICM DMA handles */
2262 hermon_icm_dma_fini(state);
2263
2264 /* Free the ICM table structures */
2265 hermon_icm_tables_fini(state);
2266
2267 /* Free the ICM table handles */
2268 kmem_free(state->hs_icm, HERMON_NUM_ICM_RESOURCES *
2269 sizeof (hermon_icm_table_t));
2270
2271 /* FALLTHROUGH */
2272
2273 case HERMON_DRV_CLEANUP_LEVEL9:
2274 /*
2275 * Unmap the ICM Aux memory area with UNMAP_ICM_AUX command.
2276 */
2277 status = hermon_unmap_icm_aux_cmd_post(state);
2278 if (status != HERMON_CMD_SUCCESS) {
2279 cmn_err(CE_NOTE,
2280 "hermon_hw_fini: failed to unmap ICMA\n");
2281 }
2282 /* FALLTHROUGH */
2283
2284 case HERMON_DRV_CLEANUP_LEVEL8:
2285 /*
2286 * Deallocate ICM Aux DMA memory.
2287 */
2288 hermon_dma_free(&state->hs_icma_dma);
2289 /* FALLTHROUGH */
2290
2291 case HERMON_DRV_CLEANUP_LEVEL7:
2292 if (state->hs_fm_uarhdl) {
2293 hermon_regs_map_free(state, &state->hs_fm_uarhdl);
2294 state->hs_fm_uarhdl = NULL;
2295 }
2296
2297 if (state->hs_reg_uarhdl) {
2298 ddi_regs_map_free(&state->hs_reg_uarhdl);
2299 state->hs_reg_uarhdl = NULL;
2300 }
2301
2302 if (state->hs_bf_offset != 0 && state->hs_reg_bfhdl) {
2303 ddi_regs_map_free(&state->hs_reg_bfhdl);
2304 state->hs_reg_bfhdl = NULL;
2305 }
2306
2307 for (i = 0; i < HERMON_MAX_PORTS; i++) {
2308 if (state->hs_pkey[i]) {
2309 kmem_free(state->hs_pkey[i], (1 <<
2310 state->hs_cfg_profile->cp_log_max_pkeytbl) *
2311 sizeof (ib_pkey_t));
2312 state->hs_pkey[i] = NULL;
2313 }
2314 if (state->hs_guid[i]) {
2315 kmem_free(state->hs_guid[i], (1 <<
2316 state->hs_cfg_profile->cp_log_max_gidtbl) *
2317 sizeof (ib_guid_t));
2318 state->hs_guid[i] = NULL;
2319 }
2320 }
2321 /* FALLTHROUGH */
2322
2323 case HERMON_DRV_CLEANUP_LEVEL6:
2324 /*
2325 * Unmap the firmware memory area with UNMAP_FA command.
2326 */
2327 status = hermon_unmap_fa_cmd_post(state);
2328
2329 if (status != HERMON_CMD_SUCCESS) {
2330 cmn_err(CE_NOTE,
2331 "hermon_hw_fini: failed to unmap FW\n");
2332 }
2333
2334 /*
2335 * Deallocate firmware DMA memory.
2336 */
2337 hermon_dma_free(&state->hs_fw_dma);
2338 /* FALLTHROUGH */
2339
2340 case HERMON_DRV_CLEANUP_LEVEL5:
2341 /* stop the poll thread */
2342 if (state->hs_fm_poll_thread) {
2343 ddi_periodic_delete(state->hs_fm_poll_thread);
2344 state->hs_fm_poll_thread = NULL;
2345 }
2346 /* FALLTHROUGH */
2347
2348 case HERMON_DRV_CLEANUP_LEVEL4:
2349 /* Then cleanup the phase1 resources */
2350 hermon_rsrc_fini(state, HERMON_RSRC_CLEANUP_PHASE1_COMPLETE);
2351 /* FALLTHROUGH */
2352
2353 case HERMON_DRV_CLEANUP_LEVEL3:
2354 /* Teardown any resources allocated for the config profile */
2355 hermon_cfg_profile_fini(state);
2356 /* FALLTHROUGH */
2357
2358 case HERMON_DRV_CLEANUP_LEVEL2:
2359 #ifdef HERMON_SUPPORTS_MSIX_BAR
2360 /*
2361 * unmap 3rd BAR, MSIX BAR
2362 */
2363 if (state->hs_reg_msihdl) {
2364 ddi_regs_map_free(&state->hs_reg_msihdl);
2365 state->hs_reg_msihdl = NULL;
2366 }
2367 /* FALLTHROUGH */
2368 #endif
2369 case HERMON_DRV_CLEANUP_LEVEL1:
2370 case HERMON_DRV_CLEANUP_LEVEL0:
2371 /*
2372 * LEVEL1 and LEVEL0 resources are freed in
2373 * hermon_drv_fini2().
2374 */
2375 break;
2376
2377 default:
2378 HERMON_WARNING(state, "unexpected driver cleanup level");
2379 return;
2380 }
2381 }
2382
2383
2384 /*
2385 * hermon_soft_state_init()
2386 * Context: Only called from attach() path context
2387 */
2388 static int
hermon_soft_state_init(hermon_state_t * state)2389 hermon_soft_state_init(hermon_state_t *state)
2390 {
2391 ibt_hca_attr_t *hca_attr;
2392 uint64_t maxval, val;
2393 ibt_hca_flags_t caps = IBT_HCA_NO_FLAGS;
2394 ibt_hca_flags2_t caps2 = IBT_HCA2_NO_FLAGS;
2395 int status;
2396 int max_send_wqe_bytes;
2397 int max_recv_wqe_bytes;
2398
2399 /*
2400 * The ibc_hca_info_t struct is passed to the IBTF. This is the
2401 * routine where we initialize it. Many of the init values come from
2402 * either configuration variables or successful queries of the Hermon
2403 * hardware abilities
2404 */
2405 state->hs_ibtfinfo.hca_ci_vers = IBCI_V4;
2406 state->hs_ibtfinfo.hca_handle = (ibc_hca_hdl_t)state;
2407 state->hs_ibtfinfo.hca_ops = &hermon_ibc_ops;
2408
2409 hca_attr = kmem_zalloc(sizeof (ibt_hca_attr_t), KM_SLEEP);
2410 state->hs_ibtfinfo.hca_attr = hca_attr;
2411
2412 hca_attr->hca_dip = state->hs_dip;
2413 hca_attr->hca_fw_major_version = state->hs_fw.fw_rev_major;
2414 hca_attr->hca_fw_minor_version = state->hs_fw.fw_rev_minor;
2415 hca_attr->hca_fw_micro_version = state->hs_fw.fw_rev_subminor;
2416
2417 /* CQ interrupt moderation maximums - each limited to 16 bits */
2418 hca_attr->hca_max_cq_mod_count = 0xFFFF;
2419 hca_attr->hca_max_cq_mod_usec = 0xFFFF;
2420 hca_attr->hca_max_cq_handlers = state->hs_intrmsi_allocd;
2421
2422
2423 /*
2424 * Determine HCA capabilities:
2425 * No default support for IBT_HCA_RD, IBT_HCA_RAW_MULTICAST,
2426 * IBT_HCA_ATOMICS_GLOBAL, IBT_HCA_RESIZE_CHAN, IBT_HCA_INIT_TYPE,
2427 * or IBT_HCA_SHUTDOWN_PORT
2428 * But IBT_HCA_AH_PORT_CHECK, IBT_HCA_SQD_RTS_PORT, IBT_HCA_SI_GUID,
2429 * IBT_HCA_RNR_NAK, IBT_HCA_CURRENT_QP_STATE, IBT_HCA_PORT_UP,
2430 * IBT_HCA_SRQ, IBT_HCA_RESIZE_SRQ and IBT_HCA_FMR are always
2431 * supported
2432 * All other features are conditionally supported, depending on the
2433 * status return by the Hermon HCA in QUERY_DEV_LIM.
2434 */
2435 if (state->hs_devlim.ud_multi) {
2436 caps |= IBT_HCA_UD_MULTICAST;
2437 }
2438 if (state->hs_devlim.atomic) {
2439 caps |= IBT_HCA_ATOMICS_HCA;
2440 }
2441 if (state->hs_devlim.apm) {
2442 caps |= IBT_HCA_AUTO_PATH_MIG;
2443 }
2444 if (state->hs_devlim.pkey_v) {
2445 caps |= IBT_HCA_PKEY_CNTR;
2446 }
2447 if (state->hs_devlim.qkey_v) {
2448 caps |= IBT_HCA_QKEY_CNTR;
2449 }
2450 if (state->hs_devlim.ipoib_cksm) {
2451 caps |= IBT_HCA_CKSUM_FULL;
2452 caps2 |= IBT_HCA2_IP_CLASS;
2453 }
2454 if (state->hs_devlim.mod_wr_srq) {
2455 caps |= IBT_HCA_RESIZE_SRQ;
2456 }
2457 if (state->hs_devlim.lif) {
2458 caps |= IBT_HCA_LOCAL_INVAL_FENCE;
2459 }
2460 if (state->hs_devlim.reserved_lkey) {
2461 caps2 |= IBT_HCA2_RES_LKEY;
2462 hca_attr->hca_reserved_lkey = state->hs_devlim.rsv_lkey;
2463 }
2464 if (state->hs_devlim.local_inv && state->hs_devlim.remote_inv &&
2465 state->hs_devlim.fast_reg_wr) { /* fw needs to be >= 2.7.000 */
2466 if ((state->hs_fw.fw_rev_major > 2) ||
2467 ((state->hs_fw.fw_rev_major == 2) &&
2468 (state->hs_fw.fw_rev_minor >= 7)))
2469 caps2 |= IBT_HCA2_MEM_MGT_EXT;
2470 }
2471 if (state->hs_devlim.log_max_rss_tbl_sz) {
2472 hca_attr->hca_rss_max_log2_table =
2473 state->hs_devlim.log_max_rss_tbl_sz;
2474 if (state->hs_devlim.rss_xor)
2475 caps2 |= IBT_HCA2_RSS_XOR_ALG;
2476 if (state->hs_devlim.rss_toep)
2477 caps2 |= IBT_HCA2_RSS_TPL_ALG;
2478 }
2479 if (state->hs_devlim.mps) {
2480 caps |= IBT_HCA_ZERO_BASED_VA;
2481 }
2482 if (state->hs_devlim.zb) {
2483 caps |= IBT_HCA_MULT_PAGE_SZ_MR;
2484 }
2485 caps |= (IBT_HCA_AH_PORT_CHECK | IBT_HCA_SQD_SQD_PORT |
2486 IBT_HCA_SI_GUID | IBT_HCA_RNR_NAK | IBT_HCA_CURRENT_QP_STATE |
2487 IBT_HCA_PORT_UP | IBT_HCA_RC_SRQ | IBT_HCA_UD_SRQ | IBT_HCA_FMR);
2488 caps2 |= IBT_HCA2_DMA_MR;
2489
2490 if (state->hs_devlim.log_max_gso_sz) {
2491 hca_attr->hca_max_lso_size =
2492 (1 << state->hs_devlim.log_max_gso_sz);
2493 /* 64 = ctrl & datagram seg, 4 = LSO seg, 16 = 1 SGL */
2494 hca_attr->hca_max_lso_hdr_size =
2495 state->hs_devlim.max_desc_sz_sq - (64 + 4 + 16);
2496 }
2497
2498 caps |= IBT_HCA_WQE_SIZE_INFO;
2499 max_send_wqe_bytes = state->hs_devlim.max_desc_sz_sq;
2500 max_recv_wqe_bytes = state->hs_devlim.max_desc_sz_rq;
2501 hca_attr->hca_ud_send_sgl_sz = (max_send_wqe_bytes / 16) - 4;
2502 hca_attr->hca_conn_send_sgl_sz = (max_send_wqe_bytes / 16) - 1;
2503 hca_attr->hca_conn_rdma_sgl_overhead = 1;
2504 hca_attr->hca_conn_rdma_write_sgl_sz = (max_send_wqe_bytes / 16) - 2;
2505 hca_attr->hca_conn_rdma_read_sgl_sz = (512 / 16) - 2; /* see PRM */
2506 hca_attr->hca_recv_sgl_sz = max_recv_wqe_bytes / 16;
2507
2508 /* We choose not to support "inline" unless it improves performance */
2509 hca_attr->hca_max_inline_size = 0;
2510 hca_attr->hca_ud_send_inline_sz = 0;
2511 hca_attr->hca_conn_send_inline_sz = 0;
2512 hca_attr->hca_conn_rdmaw_inline_overhead = 4;
2513
2514 #if defined(_ELF64)
2515 /* 32-bit kernels are too small for Fibre Channel over IB */
2516 if (state->hs_devlim.fcoib && (caps2 & IBT_HCA2_MEM_MGT_EXT)) {
2517 caps2 |= IBT_HCA2_FC;
2518 hca_attr->hca_rfci_max_log2_qp = 7; /* 128 per port */
2519 hca_attr->hca_fexch_max_log2_qp = 16; /* 64K per port */
2520 hca_attr->hca_fexch_max_log2_mem = 20; /* 1MB per MPT */
2521 }
2522 #endif
2523
2524 hca_attr->hca_flags = caps;
2525 hca_attr->hca_flags2 = caps2;
2526
2527 /*
2528 * Set hca_attr's IDs
2529 */
2530 hca_attr->hca_vendor_id = state->hs_vendor_id;
2531 hca_attr->hca_device_id = state->hs_device_id;
2532 hca_attr->hca_version_id = state->hs_revision_id;
2533
2534 /*
2535 * Determine number of available QPs and max QP size. Number of
2536 * available QPs is determined by subtracting the number of
2537 * "reserved QPs" (i.e. reserved for firmware use) from the
2538 * total number configured.
2539 */
2540 val = ((uint64_t)1 << state->hs_cfg_profile->cp_log_num_qp);
2541 hca_attr->hca_max_qp = val - ((uint64_t)1 <<
2542 state->hs_devlim.log_rsvd_qp);
2543 maxval = ((uint64_t)1 << state->hs_devlim.log_max_qp_sz);
2544 val = ((uint64_t)1 << state->hs_cfg_profile->cp_log_max_qp_sz);
2545 if (val > maxval) {
2546 kmem_free(hca_attr, sizeof (ibt_hca_attr_t));
2547 HERMON_ATTACH_MSG(state->hs_attach_buf,
2548 "soft_state_init_maxqpsz_toobig_fail");
2549 return (DDI_FAILURE);
2550 }
2551 /* we need to reduce this by the max space needed for headroom */
2552 hca_attr->hca_max_qp_sz = (uint_t)val - (HERMON_QP_OH_SIZE >>
2553 HERMON_QP_WQE_LOG_MINIMUM) - 1;
2554
2555 /*
2556 * Determine max scatter-gather size in WQEs. The HCA has split
2557 * the max sgl into rec'v Q and send Q values. Use the least.
2558 *
2559 * This is mainly useful for legacy clients. Smart clients
2560 * such as IPoIB will use the IBT_HCA_WQE_SIZE_INFO sgl info.
2561 */
2562 if (state->hs_devlim.max_sg_rq <= state->hs_devlim.max_sg_sq) {
2563 maxval = state->hs_devlim.max_sg_rq;
2564 } else {
2565 maxval = state->hs_devlim.max_sg_sq;
2566 }
2567 val = state->hs_cfg_profile->cp_wqe_max_sgl;
2568 if (val > maxval) {
2569 kmem_free(hca_attr, sizeof (ibt_hca_attr_t));
2570 HERMON_ATTACH_MSG(state->hs_attach_buf,
2571 "soft_state_init_toomanysgl_fail");
2572 return (DDI_FAILURE);
2573 }
2574 /* If the rounded value for max SGL is too large, cap it */
2575 if (state->hs_cfg_profile->cp_wqe_real_max_sgl > maxval) {
2576 state->hs_cfg_profile->cp_wqe_real_max_sgl = (uint32_t)maxval;
2577 val = maxval;
2578 } else {
2579 val = state->hs_cfg_profile->cp_wqe_real_max_sgl;
2580 }
2581
2582 hca_attr->hca_max_sgl = (uint_t)val;
2583 hca_attr->hca_max_rd_sgl = 0; /* zero because RD is unsupported */
2584
2585 /*
2586 * Determine number of available CQs and max CQ size. Number of
2587 * available CQs is determined by subtracting the number of
2588 * "reserved CQs" (i.e. reserved for firmware use) from the
2589 * total number configured.
2590 */
2591 val = ((uint64_t)1 << state->hs_cfg_profile->cp_log_num_cq);
2592 hca_attr->hca_max_cq = val - ((uint64_t)1 <<
2593 state->hs_devlim.log_rsvd_cq);
2594 maxval = ((uint64_t)1 << state->hs_devlim.log_max_cq_sz);
2595 val = ((uint64_t)1 << state->hs_cfg_profile->cp_log_max_cq_sz) - 1;
2596 if (val > maxval) {
2597 kmem_free(hca_attr, sizeof (ibt_hca_attr_t));
2598 HERMON_ATTACH_MSG(state->hs_attach_buf,
2599 "soft_state_init_maxcqsz_toobig_fail");
2600 return (DDI_FAILURE);
2601 }
2602 hca_attr->hca_max_cq_sz = (uint_t)val;
2603
2604 /*
2605 * Determine number of available SRQs and max SRQ size. Number of
2606 * available SRQs is determined by subtracting the number of
2607 * "reserved SRQs" (i.e. reserved for firmware use) from the
2608 * total number configured.
2609 */
2610 val = ((uint64_t)1 << state->hs_cfg_profile->cp_log_num_srq);
2611 hca_attr->hca_max_srqs = val - ((uint64_t)1 <<
2612 state->hs_devlim.log_rsvd_srq);
2613 maxval = ((uint64_t)1 << state->hs_devlim.log_max_srq_sz);
2614 val = ((uint64_t)1 << state->hs_cfg_profile->cp_log_max_srq_sz);
2615
2616 if (val > maxval) {
2617 kmem_free(hca_attr, sizeof (ibt_hca_attr_t));
2618 HERMON_ATTACH_MSG(state->hs_attach_buf,
2619 "soft_state_init_maxsrqsz_toobig_fail");
2620 return (DDI_FAILURE);
2621 }
2622 hca_attr->hca_max_srqs_sz = (uint_t)val;
2623
2624 val = hca_attr->hca_recv_sgl_sz - 1; /* SRQ has a list link */
2625 maxval = state->hs_devlim.max_sg_rq - 1;
2626 if (val > maxval) {
2627 kmem_free(hca_attr, sizeof (ibt_hca_attr_t));
2628 HERMON_ATTACH_MSG(state->hs_attach_buf,
2629 "soft_state_init_toomanysrqsgl_fail");
2630 return (DDI_FAILURE);
2631 }
2632 hca_attr->hca_max_srq_sgl = (uint_t)val;
2633
2634 /*
2635 * Determine supported HCA page sizes
2636 * XXX
2637 * For now we simply return the system pagesize as the only supported
2638 * pagesize
2639 */
2640 hca_attr->hca_page_sz = ((PAGESIZE == (1 << 13)) ? IBT_PAGE_8K :
2641 IBT_PAGE_4K);
2642
2643 /*
2644 * Determine number of available MemReg, MemWin, and their max size.
2645 * Number of available MRs and MWs is determined by subtracting
2646 * the number of "reserved MPTs" (i.e. reserved for firmware use)
2647 * from the total number configured for each.
2648 */
2649 val = ((uint64_t)1 << state->hs_cfg_profile->cp_log_num_dmpt);
2650 hca_attr->hca_max_memr = val - ((uint64_t)1 <<
2651 state->hs_devlim.log_rsvd_dmpt);
2652 hca_attr->hca_max_mem_win = state->hs_devlim.mem_win ? (val -
2653 ((uint64_t)1 << state->hs_devlim.log_rsvd_dmpt)) : 0;
2654 maxval = state->hs_devlim.log_max_mrw_sz;
2655 val = state->hs_cfg_profile->cp_log_max_mrw_sz;
2656 if (val > maxval) {
2657 kmem_free(hca_attr, sizeof (ibt_hca_attr_t));
2658 HERMON_ATTACH_MSG(state->hs_attach_buf,
2659 "soft_state_init_maxmrwsz_toobig_fail");
2660 return (DDI_FAILURE);
2661 }
2662 hca_attr->hca_max_memr_len = ((uint64_t)1 << val);
2663
2664 /* Determine RDMA/Atomic properties */
2665 val = ((uint64_t)1 << state->hs_cfg_profile->cp_log_num_rdb);
2666 hca_attr->hca_max_rsc = (uint_t)val;
2667 val = state->hs_cfg_profile->cp_hca_max_rdma_in_qp;
2668 hca_attr->hca_max_rdma_in_qp = (uint8_t)val;
2669 val = state->hs_cfg_profile->cp_hca_max_rdma_out_qp;
2670 hca_attr->hca_max_rdma_out_qp = (uint8_t)val;
2671 hca_attr->hca_max_rdma_in_ee = 0;
2672 hca_attr->hca_max_rdma_out_ee = 0;
2673
2674 /*
2675 * Determine maximum number of raw IPv6 and Ether QPs. Set to 0
2676 * because neither type of raw QP is supported
2677 */
2678 hca_attr->hca_max_ipv6_qp = 0;
2679 hca_attr->hca_max_ether_qp = 0;
2680
2681 /* Determine max number of MCGs and max QP-per-MCG */
2682 val = ((uint64_t)1 << state->hs_cfg_profile->cp_log_num_qp);
2683 hca_attr->hca_max_mcg_qps = (uint_t)val;
2684 val = ((uint64_t)1 << state->hs_cfg_profile->cp_log_num_mcg);
2685 hca_attr->hca_max_mcg = (uint_t)val;
2686 val = state->hs_cfg_profile->cp_num_qp_per_mcg;
2687 hca_attr->hca_max_qp_per_mcg = (uint_t)val;
2688
2689 /* Determine max number partitions (i.e. PKeys) */
2690 maxval = ((uint64_t)state->hs_cfg_profile->cp_num_ports <<
2691 state->hs_queryport.log_max_pkey);
2692 val = ((uint64_t)state->hs_cfg_profile->cp_num_ports <<
2693 state->hs_cfg_profile->cp_log_max_pkeytbl);
2694
2695 if (val > maxval) {
2696 kmem_free(hca_attr, sizeof (ibt_hca_attr_t));
2697 HERMON_ATTACH_MSG(state->hs_attach_buf,
2698 "soft_state_init_toomanypkey_fail");
2699 return (DDI_FAILURE);
2700 }
2701 hca_attr->hca_max_partitions = (uint16_t)val;
2702
2703 /* Determine number of ports */
2704 maxval = state->hs_devlim.num_ports;
2705 val = state->hs_cfg_profile->cp_num_ports;
2706 if ((val > maxval) || (val == 0)) {
2707 kmem_free(hca_attr, sizeof (ibt_hca_attr_t));
2708 HERMON_ATTACH_MSG(state->hs_attach_buf,
2709 "soft_state_init_toomanyports_fail");
2710 return (DDI_FAILURE);
2711 }
2712 hca_attr->hca_nports = (uint8_t)val;
2713
2714 /* Copy NodeGUID and SystemImageGUID from softstate */
2715 hca_attr->hca_node_guid = state->hs_nodeguid;
2716 hca_attr->hca_si_guid = state->hs_sysimgguid;
2717
2718 /*
2719 * Determine local ACK delay. Use the value suggested by the Hermon
2720 * hardware (from the QUERY_DEV_CAP command)
2721 */
2722 hca_attr->hca_local_ack_delay = state->hs_devlim.ca_ack_delay;
2723
2724 /* Determine max SGID table and PKey table sizes */
2725 val = ((uint64_t)1 << state->hs_cfg_profile->cp_log_max_gidtbl);
2726 hca_attr->hca_max_port_sgid_tbl_sz = (uint_t)val;
2727 val = ((uint64_t)1 << state->hs_cfg_profile->cp_log_max_pkeytbl);
2728 hca_attr->hca_max_port_pkey_tbl_sz = (uint16_t)val;
2729
2730 /* Determine max number of PDs */
2731 maxval = ((uint64_t)1 << state->hs_devlim.log_max_pd);
2732 val = ((uint64_t)1 << state->hs_cfg_profile->cp_log_num_pd);
2733 if (val > maxval) {
2734 kmem_free(hca_attr, sizeof (ibt_hca_attr_t));
2735 HERMON_ATTACH_MSG(state->hs_attach_buf,
2736 "soft_state_init_toomanypd_fail");
2737 return (DDI_FAILURE);
2738 }
2739 hca_attr->hca_max_pd = (uint_t)val;
2740
2741 /* Determine max number of Address Handles (NOT IN ARBEL or HERMON) */
2742 hca_attr->hca_max_ah = 0;
2743
2744 /* No RDDs or EECs (since Reliable Datagram is not supported) */
2745 hca_attr->hca_max_rdd = 0;
2746 hca_attr->hca_max_eec = 0;
2747
2748 /* Initialize lock for reserved UAR page access */
2749 mutex_init(&state->hs_uar_lock, NULL, MUTEX_DRIVER,
2750 DDI_INTR_PRI(state->hs_intrmsi_pri));
2751
2752 /* Initialize the flash fields */
2753 state->hs_fw_flashstarted = 0;
2754 mutex_init(&state->hs_fw_flashlock, NULL, MUTEX_DRIVER,
2755 DDI_INTR_PRI(state->hs_intrmsi_pri));
2756
2757 /* Initialize the lock for the info ioctl */
2758 mutex_init(&state->hs_info_lock, NULL, MUTEX_DRIVER,
2759 DDI_INTR_PRI(state->hs_intrmsi_pri));
2760
2761 /* Initialize the AVL tree for QP number support */
2762 hermon_qpn_avl_init(state);
2763
2764 /* Initialize the cq_sched info structure */
2765 status = hermon_cq_sched_init(state);
2766 if (status != DDI_SUCCESS) {
2767 hermon_qpn_avl_fini(state);
2768 mutex_destroy(&state->hs_info_lock);
2769 mutex_destroy(&state->hs_fw_flashlock);
2770 mutex_destroy(&state->hs_uar_lock);
2771 kmem_free(hca_attr, sizeof (ibt_hca_attr_t));
2772 HERMON_ATTACH_MSG(state->hs_attach_buf,
2773 "soft_state_init_cqsched_init_fail");
2774 return (DDI_FAILURE);
2775 }
2776
2777 /* Initialize the fcoib info structure */
2778 status = hermon_fcoib_init(state);
2779 if (status != DDI_SUCCESS) {
2780 hermon_cq_sched_fini(state);
2781 hermon_qpn_avl_fini(state);
2782 mutex_destroy(&state->hs_info_lock);
2783 mutex_destroy(&state->hs_fw_flashlock);
2784 mutex_destroy(&state->hs_uar_lock);
2785 kmem_free(hca_attr, sizeof (ibt_hca_attr_t));
2786 HERMON_ATTACH_MSG(state->hs_attach_buf,
2787 "soft_state_init_fcoibinit_fail");
2788 return (DDI_FAILURE);
2789 }
2790
2791 /* Initialize the kstat info structure */
2792 status = hermon_kstat_init(state);
2793 if (status != DDI_SUCCESS) {
2794 hermon_fcoib_fini(state);
2795 hermon_cq_sched_fini(state);
2796 hermon_qpn_avl_fini(state);
2797 mutex_destroy(&state->hs_info_lock);
2798 mutex_destroy(&state->hs_fw_flashlock);
2799 mutex_destroy(&state->hs_uar_lock);
2800 kmem_free(hca_attr, sizeof (ibt_hca_attr_t));
2801 HERMON_ATTACH_MSG(state->hs_attach_buf,
2802 "soft_state_init_kstatinit_fail");
2803 return (DDI_FAILURE);
2804 }
2805
2806 return (DDI_SUCCESS);
2807 }
2808
2809
2810 /*
2811 * hermon_soft_state_fini()
2812 * Context: Called only from detach() path context
2813 */
2814 static void
hermon_soft_state_fini(hermon_state_t * state)2815 hermon_soft_state_fini(hermon_state_t *state)
2816 {
2817
2818 /* Teardown the kstat info */
2819 hermon_kstat_fini(state);
2820
2821 /* Teardown the fcoib info */
2822 hermon_fcoib_fini(state);
2823
2824 /* Teardown the cq_sched info */
2825 hermon_cq_sched_fini(state);
2826
2827 /* Teardown the AVL tree for QP number support */
2828 hermon_qpn_avl_fini(state);
2829
2830 /* Free up info ioctl mutex */
2831 mutex_destroy(&state->hs_info_lock);
2832
2833 /* Free up flash mutex */
2834 mutex_destroy(&state->hs_fw_flashlock);
2835
2836 /* Free up the UAR page access mutex */
2837 mutex_destroy(&state->hs_uar_lock);
2838
2839 /* Free up the hca_attr struct */
2840 kmem_free(state->hs_ibtfinfo.hca_attr, sizeof (ibt_hca_attr_t));
2841
2842 }
2843
2844 /*
2845 * hermon_icm_config_setup()
2846 * Context: Only called from attach() path context
2847 */
2848 static int
hermon_icm_config_setup(hermon_state_t * state,hermon_hw_initqueryhca_t * inithca)2849 hermon_icm_config_setup(hermon_state_t *state,
2850 hermon_hw_initqueryhca_t *inithca)
2851 {
2852 hermon_hw_querydevlim_t *devlim;
2853 hermon_cfg_profile_t *cfg;
2854 hermon_icm_table_t *icm_p[HERMON_NUM_ICM_RESOURCES];
2855 hermon_icm_table_t *icm;
2856 hermon_icm_table_t *tmp;
2857 uint64_t icm_addr;
2858 uint64_t icm_size;
2859 int status, i, j;
2860
2861
2862 /* Bring in local devlims, cfg_profile and hs_icm table list */
2863 devlim = &state->hs_devlim;
2864 cfg = state->hs_cfg_profile;
2865 icm = state->hs_icm;
2866
2867 /*
2868 * Assign each ICM table's entry size from data in the devlims,
2869 * except for RDB and MCG sizes, which are not returned in devlims
2870 * but do have a fixed size, and the UAR context entry size, which
2871 * we determine. For this, we use the "cp_num_pgs_per_uce" value
2872 * from our hs_cfg_profile.
2873 */
2874 icm[HERMON_CMPT].object_size = devlim->cmpt_entry_sz;
2875 icm[HERMON_CMPT_QPC].object_size = devlim->cmpt_entry_sz;
2876 icm[HERMON_CMPT_SRQC].object_size = devlim->cmpt_entry_sz;
2877 icm[HERMON_CMPT_CQC].object_size = devlim->cmpt_entry_sz;
2878 icm[HERMON_CMPT_EQC].object_size = devlim->cmpt_entry_sz;
2879 icm[HERMON_MTT].object_size = devlim->mtt_entry_sz;
2880 icm[HERMON_DMPT].object_size = devlim->dmpt_entry_sz;
2881 icm[HERMON_QPC].object_size = devlim->qpc_entry_sz;
2882 icm[HERMON_CQC].object_size = devlim->cqc_entry_sz;
2883 icm[HERMON_SRQC].object_size = devlim->srq_entry_sz;
2884 icm[HERMON_EQC].object_size = devlim->eqc_entry_sz;
2885 icm[HERMON_RDB].object_size = devlim->rdmardc_entry_sz *
2886 cfg->cp_hca_max_rdma_in_qp;
2887 icm[HERMON_MCG].object_size = HERMON_MCGMEM_SZ(state);
2888 icm[HERMON_ALTC].object_size = devlim->altc_entry_sz;
2889 icm[HERMON_AUXC].object_size = devlim->aux_entry_sz;
2890
2891 /* Assign each ICM table's log2 number of entries */
2892 icm[HERMON_CMPT].log_num_entries = cfg->cp_log_num_cmpt;
2893 icm[HERMON_CMPT_QPC].log_num_entries = cfg->cp_log_num_qp;
2894 icm[HERMON_CMPT_SRQC].log_num_entries = cfg->cp_log_num_srq;
2895 icm[HERMON_CMPT_CQC].log_num_entries = cfg->cp_log_num_cq;
2896 icm[HERMON_CMPT_EQC].log_num_entries = HERMON_NUM_EQ_SHIFT;
2897 icm[HERMON_MTT].log_num_entries = cfg->cp_log_num_mtt;
2898 icm[HERMON_DMPT].log_num_entries = cfg->cp_log_num_dmpt;
2899 icm[HERMON_QPC].log_num_entries = cfg->cp_log_num_qp;
2900 icm[HERMON_SRQC].log_num_entries = cfg->cp_log_num_srq;
2901 icm[HERMON_CQC].log_num_entries = cfg->cp_log_num_cq;
2902 icm[HERMON_EQC].log_num_entries = HERMON_NUM_EQ_SHIFT;
2903 icm[HERMON_RDB].log_num_entries = cfg->cp_log_num_qp;
2904 icm[HERMON_MCG].log_num_entries = cfg->cp_log_num_mcg;
2905 icm[HERMON_ALTC].log_num_entries = cfg->cp_log_num_qp;
2906 icm[HERMON_AUXC].log_num_entries = cfg->cp_log_num_qp;
2907
2908 /* Initialize the ICM tables */
2909 hermon_icm_tables_init(state);
2910
2911 /*
2912 * ICM tables must be aligned on their size in the ICM address
2913 * space. So, here we order the tables from largest total table
2914 * size to the smallest. All tables are a power of 2 in size, so
2915 * this will ensure that all tables are aligned on their own size
2916 * without wasting space in the ICM.
2917 *
2918 * In order to easily set the ICM addresses without needing to
2919 * worry about the ordering of our table indices as relates to
2920 * the hermon_rsrc_type_t enum, we will use a list of pointers
2921 * representing the tables for the sort, then assign ICM addresses
2922 * below using it.
2923 */
2924 for (i = 0; i < HERMON_NUM_ICM_RESOURCES; i++) {
2925 icm_p[i] = &icm[i];
2926 }
2927 for (i = HERMON_NUM_ICM_RESOURCES; i > 0; i--) {
2928 switch (i) {
2929 case HERMON_CMPT_QPC:
2930 case HERMON_CMPT_SRQC:
2931 case HERMON_CMPT_CQC:
2932 case HERMON_CMPT_EQC:
2933 continue;
2934 }
2935 for (j = 1; j < i; j++) {
2936 if (icm_p[j]->table_size > icm_p[j - 1]->table_size) {
2937 tmp = icm_p[j];
2938 icm_p[j] = icm_p[j - 1];
2939 icm_p[j - 1] = tmp;
2940 }
2941 }
2942 }
2943
2944 /* Initialize the ICM address and ICM size */
2945 icm_addr = icm_size = 0;
2946
2947 /*
2948 * Set the ICM base address of each table, using our sorted
2949 * list of pointers from above.
2950 */
2951 for (i = 0; i < HERMON_NUM_ICM_RESOURCES; i++) {
2952 j = icm_p[i]->icm_type;
2953 switch (j) {
2954 case HERMON_CMPT_QPC:
2955 case HERMON_CMPT_SRQC:
2956 case HERMON_CMPT_CQC:
2957 case HERMON_CMPT_EQC:
2958 continue;
2959 }
2960 if (icm[j].table_size) {
2961 /*
2962 * Set the ICM base address in the table, save the
2963 * ICM offset in the rsrc pool and increment the
2964 * total ICM allocation.
2965 */
2966 icm[j].icm_baseaddr = icm_addr;
2967 if (hermon_verbose) {
2968 IBTF_DPRINTF_L2("ICMADDR", "rsrc %x @ %p"
2969 " size %llx", j, icm[j].icm_baseaddr,
2970 icm[j].table_size);
2971 }
2972 icm_size += icm[j].table_size;
2973 }
2974
2975 /* Verify that we don't exceed maximum ICM size */
2976 if (icm_size > devlim->max_icm_size) {
2977 /* free the ICM table memory resources */
2978 hermon_icm_tables_fini(state);
2979 cmn_err(CE_WARN, "ICM configuration exceeds maximum "
2980 "configuration: max (0x%lx) requested (0x%lx)\n",
2981 (ulong_t)devlim->max_icm_size, (ulong_t)icm_size);
2982 HERMON_ATTACH_MSG(state->hs_attach_buf,
2983 "icm_config_toobig_fail");
2984 return (DDI_FAILURE);
2985 }
2986
2987 /* assign address to the 4 pieces of the CMPT */
2988 if (j == HERMON_CMPT) {
2989 uint64_t cmpt_size = icm[j].table_size >> 2;
2990 #define init_cmpt_icm_baseaddr(rsrc, indx) \
2991 icm[rsrc].icm_baseaddr = icm_addr + (indx * cmpt_size);
2992 init_cmpt_icm_baseaddr(HERMON_CMPT_QPC, 0);
2993 init_cmpt_icm_baseaddr(HERMON_CMPT_SRQC, 1);
2994 init_cmpt_icm_baseaddr(HERMON_CMPT_CQC, 2);
2995 init_cmpt_icm_baseaddr(HERMON_CMPT_EQC, 3);
2996 }
2997
2998 /* Increment the ICM address for the next table */
2999 icm_addr += icm[j].table_size;
3000 }
3001
3002 /* Populate the structure for the INIT_HCA command */
3003 hermon_inithca_set(state, inithca);
3004
3005 /*
3006 * Prior to invoking INIT_HCA, we must have ICM memory in place
3007 * for the reserved objects in each table. We will allocate and map
3008 * this initial ICM memory here. Note that given the assignment
3009 * of span_size above, tables that are smaller or equal in total
3010 * size to the default span_size will be mapped in full.
3011 */
3012 status = hermon_icm_dma_init(state);
3013 if (status != DDI_SUCCESS) {
3014 /* free the ICM table memory resources */
3015 hermon_icm_tables_fini(state);
3016 HERMON_WARNING(state, "Failed to allocate initial ICM");
3017 HERMON_ATTACH_MSG(state->hs_attach_buf,
3018 "icm_config_dma_init_fail");
3019 return (DDI_FAILURE);
3020 }
3021
3022 return (DDI_SUCCESS);
3023 }
3024
3025 /*
3026 * hermon_inithca_set()
3027 * Context: Only called from attach() path context
3028 */
3029 static void
hermon_inithca_set(hermon_state_t * state,hermon_hw_initqueryhca_t * inithca)3030 hermon_inithca_set(hermon_state_t *state, hermon_hw_initqueryhca_t *inithca)
3031 {
3032 hermon_cfg_profile_t *cfg;
3033 hermon_icm_table_t *icm;
3034 int i;
3035
3036
3037 /* Populate the INIT_HCA structure */
3038 icm = state->hs_icm;
3039 cfg = state->hs_cfg_profile;
3040
3041 /* set version */
3042 inithca->version = 0x02; /* PRM 0.36 */
3043 /* set cacheline - log2 in 16-byte chunks */
3044 inithca->log2_cacheline = 0x2; /* optimized for 64 byte cache */
3045
3046 /* we need to update the inithca info with thie UAR info too */
3047 inithca->uar.log_max_uars = highbit(cfg->cp_log_num_uar);
3048 inithca->uar.uar_pg_sz = PAGESHIFT - HERMON_PAGESHIFT;
3049
3050 /* Set endianess */
3051 #ifdef _LITTLE_ENDIAN
3052 inithca->big_endian = 0;
3053 #else
3054 inithca->big_endian = 1;
3055 #endif
3056
3057 /* Port Checking is on by default */
3058 inithca->udav_port_chk = HERMON_UDAV_PORTCHK_ENABLED;
3059
3060 /* Enable IPoIB checksum */
3061 if (state->hs_devlim.ipoib_cksm)
3062 inithca->chsum_en = 1;
3063
3064 /* Set each ICM table's attributes */
3065 for (i = 0; i < HERMON_NUM_ICM_RESOURCES; i++) {
3066 switch (icm[i].icm_type) {
3067 case HERMON_CMPT:
3068 inithca->tpt.cmpt_baseaddr = icm[i].icm_baseaddr;
3069 break;
3070
3071 case HERMON_MTT:
3072 inithca->tpt.mtt_baseaddr = icm[i].icm_baseaddr;
3073 break;
3074
3075 case HERMON_DMPT:
3076 inithca->tpt.dmpt_baseaddr = icm[i].icm_baseaddr;
3077 inithca->tpt.log_dmpt_sz = icm[i].log_num_entries;
3078 inithca->tpt.pgfault_rnr_to = 0; /* just in case */
3079 break;
3080
3081 case HERMON_QPC:
3082 inithca->context.log_num_qp = icm[i].log_num_entries;
3083 inithca->context.qpc_baseaddr_h =
3084 icm[i].icm_baseaddr >> 32;
3085 inithca->context.qpc_baseaddr_l =
3086 (icm[i].icm_baseaddr & 0xFFFFFFFF) >> 5;
3087 break;
3088
3089 case HERMON_CQC:
3090 inithca->context.log_num_cq = icm[i].log_num_entries;
3091 inithca->context.cqc_baseaddr_h =
3092 icm[i].icm_baseaddr >> 32;
3093 inithca->context.cqc_baseaddr_l =
3094 (icm[i].icm_baseaddr & 0xFFFFFFFF) >> 5;
3095 break;
3096
3097 case HERMON_SRQC:
3098 inithca->context.log_num_srq = icm[i].log_num_entries;
3099 inithca->context.srqc_baseaddr_h =
3100 icm[i].icm_baseaddr >> 32;
3101 inithca->context.srqc_baseaddr_l =
3102 (icm[i].icm_baseaddr & 0xFFFFFFFF) >> 5;
3103 break;
3104
3105 case HERMON_EQC:
3106 inithca->context.log_num_eq = icm[i].log_num_entries;
3107 inithca->context.eqc_baseaddr_h =
3108 icm[i].icm_baseaddr >> 32;
3109 inithca->context.eqc_baseaddr_l =
3110 (icm[i].icm_baseaddr & 0xFFFFFFFF) >> 5;
3111 break;
3112
3113 case HERMON_RDB:
3114 inithca->context.rdmardc_baseaddr_h =
3115 icm[i].icm_baseaddr >> 32;
3116 inithca->context.rdmardc_baseaddr_l =
3117 (icm[i].icm_baseaddr & 0xFFFFFFFF) >> 5;
3118 inithca->context.log_num_rdmardc =
3119 cfg->cp_log_num_rdb - cfg->cp_log_num_qp;
3120 break;
3121
3122 case HERMON_MCG:
3123 inithca->multi.mc_baseaddr = icm[i].icm_baseaddr;
3124 inithca->multi.log_mc_tbl_sz = icm[i].log_num_entries;
3125 inithca->multi.log_mc_tbl_ent =
3126 highbit(HERMON_MCGMEM_SZ(state)) - 1;
3127 inithca->multi.log_mc_tbl_hash_sz =
3128 cfg->cp_log_num_mcg_hash;
3129 inithca->multi.mc_hash_fn = HERMON_MCG_DEFAULT_HASH_FN;
3130 break;
3131
3132 case HERMON_ALTC:
3133 inithca->context.altc_baseaddr = icm[i].icm_baseaddr;
3134 break;
3135
3136 case HERMON_AUXC:
3137 inithca->context.auxc_baseaddr = icm[i].icm_baseaddr;
3138 break;
3139
3140 default:
3141 break;
3142
3143 }
3144 }
3145
3146 }
3147
3148 /*
3149 * hermon_icm_tables_init()
3150 * Context: Only called from attach() path context
3151 *
3152 * Dynamic ICM breaks the various ICM tables into "span_size" chunks
3153 * to enable allocation of backing memory on demand. Arbel used a
3154 * fixed size ARBEL_ICM_SPAN_SIZE (initially was 512KB) as the
3155 * span_size for all ICM chunks. Hermon has other considerations,
3156 * so the span_size used differs from Arbel.
3157 *
3158 * The basic considerations for why Hermon differs are:
3159 *
3160 * 1) ICM memory is in units of HERMON pages.
3161 *
3162 * 2) The AUXC table is approximately 1 byte per QP.
3163 *
3164 * 3) ICM memory for AUXC, ALTC, and RDB is allocated when
3165 * the ICM memory for the corresponding QPC is allocated.
3166 *
3167 * 4) ICM memory for the CMPT corresponding to the various primary
3168 * resources (QPC, SRQC, CQC, and EQC) is allocated when the ICM
3169 * memory for the primary resource is allocated.
3170 *
3171 * One HERMON page (4KB) would typically map 4K QPs worth of AUXC.
3172 * So, the minimum chunk for the various QPC related ICM memory should
3173 * all be allocated to support the 4K QPs. Currently, this means the
3174 * amount of memory for the various QP chunks is:
3175 *
3176 * QPC 256*4K bytes
3177 * RDB 128*4K bytes
3178 * CMPT 64*4K bytes
3179 * ALTC 64*4K bytes
3180 * AUXC 1*4K bytes
3181 *
3182 * The span_size chosen for the QP resource is 4KB of AUXC entries,
3183 * or 1 HERMON_PAGESIZE worth, which is the minimum ICM mapping size.
3184 *
3185 * Other ICM resources can have their span_size be more arbitrary.
3186 * This is 4K (HERMON_ICM_SPAN), except for MTTs because they are tiny.
3187 */
3188
3189 /* macro to make the code below cleaner */
3190 #define init_dependent(rsrc, dep) \
3191 icm[dep].span = icm[rsrc].span; \
3192 icm[dep].num_spans = icm[rsrc].num_spans; \
3193 icm[dep].split_shift = icm[rsrc].split_shift; \
3194 icm[dep].span_mask = icm[rsrc].span_mask; \
3195 icm[dep].span_shift = icm[rsrc].span_shift; \
3196 icm[dep].rsrc_mask = icm[rsrc].rsrc_mask; \
3197 if (hermon_verbose) { \
3198 IBTF_DPRINTF_L2("hermon", "tables_init: " \
3199 "rsrc (0x%x) size (0x%lx) span (0x%x) " \
3200 "num_spans (0x%x)", dep, icm[dep].table_size, \
3201 icm[dep].span, icm[dep].num_spans); \
3202 IBTF_DPRINTF_L2("hermon", "tables_init: " \
3203 "span_shift (0x%x) split_shift (0x%x)", \
3204 icm[dep].span_shift, icm[dep].split_shift); \
3205 IBTF_DPRINTF_L2("hermon", "tables_init: " \
3206 "span_mask (0x%x) rsrc_mask (0x%x)", \
3207 icm[dep].span_mask, icm[dep].rsrc_mask); \
3208 }
3209
3210 static void
hermon_icm_tables_init(hermon_state_t * state)3211 hermon_icm_tables_init(hermon_state_t *state)
3212 {
3213 hermon_icm_table_t *icm;
3214 int i, k;
3215 uint32_t per_split;
3216
3217
3218 icm = state->hs_icm;
3219
3220 for (i = 0; i < HERMON_NUM_ICM_RESOURCES; i++) {
3221 icm[i].icm_type = i;
3222 icm[i].num_entries = 1 << icm[i].log_num_entries;
3223 icm[i].log_object_size = highbit(icm[i].object_size) - 1;
3224 icm[i].table_size = icm[i].num_entries <<
3225 icm[i].log_object_size;
3226
3227 /* deal with "dependent" resource types */
3228 switch (i) {
3229 case HERMON_AUXC:
3230 #ifdef HERMON_FW_WORKAROUND
3231 icm[i].table_size = 0x80000000ull;
3232 #endif
3233 /* FALLTHROUGH */
3234 case HERMON_CMPT_QPC:
3235 case HERMON_RDB:
3236 case HERMON_ALTC:
3237 init_dependent(HERMON_QPC, i);
3238 continue;
3239 case HERMON_CMPT_SRQC:
3240 init_dependent(HERMON_SRQC, i);
3241 continue;
3242 case HERMON_CMPT_CQC:
3243 init_dependent(HERMON_CQC, i);
3244 continue;
3245 case HERMON_CMPT_EQC:
3246 init_dependent(HERMON_EQC, i);
3247 continue;
3248 }
3249
3250 icm[i].span = HERMON_ICM_SPAN; /* default #rsrc's in 1 span */
3251 if (i == HERMON_MTT) /* Alloc enough MTTs to map 256MB */
3252 icm[i].span = HERMON_ICM_SPAN * 16;
3253 icm[i].num_spans = icm[i].num_entries / icm[i].span;
3254 if (icm[i].num_spans == 0) {
3255 icm[i].span = icm[i].num_entries;
3256 per_split = 1;
3257 icm[i].num_spans = icm[i].num_entries / icm[i].span;
3258 } else {
3259 per_split = icm[i].num_spans / HERMON_ICM_SPLIT;
3260 if (per_split == 0) {
3261 per_split = 1;
3262 }
3263 }
3264 if (hermon_verbose)
3265 IBTF_DPRINTF_L2("ICM", "rsrc %x span %x num_spans %x",
3266 i, icm[i].span, icm[i].num_spans);
3267
3268 /*
3269 * Ensure a minimum table size of an ICM page, and a
3270 * maximum span size of the ICM table size. This ensures
3271 * that we don't have less than an ICM page to map, which is
3272 * impossible, and that we will map an entire table at
3273 * once if it's total size is less than the span size.
3274 */
3275 icm[i].table_size = max(icm[i].table_size, HERMON_PAGESIZE);
3276
3277 icm[i].span_shift = 0;
3278 for (k = icm[i].span; k != 1; k >>= 1)
3279 icm[i].span_shift++;
3280 icm[i].split_shift = icm[i].span_shift;
3281 for (k = per_split; k != 1; k >>= 1)
3282 icm[i].split_shift++;
3283 icm[i].span_mask = (1 << icm[i].split_shift) -
3284 (1 << icm[i].span_shift);
3285 icm[i].rsrc_mask = (1 << icm[i].span_shift) - 1;
3286
3287
3288 /* Initialize the table lock */
3289 mutex_init(&icm[i].icm_table_lock, NULL, MUTEX_DRIVER,
3290 DDI_INTR_PRI(state->hs_intrmsi_pri));
3291 cv_init(&icm[i].icm_table_cv, NULL, CV_DRIVER, NULL);
3292
3293 if (hermon_verbose) {
3294 IBTF_DPRINTF_L2("hermon", "tables_init: "
3295 "rsrc (0x%x) size (0x%lx)", i, icm[i].table_size);
3296 IBTF_DPRINTF_L2("hermon", "tables_init: "
3297 "span (0x%x) num_spans (0x%x)",
3298 icm[i].span, icm[i].num_spans);
3299 IBTF_DPRINTF_L2("hermon", "tables_init: "
3300 "span_shift (0x%x) split_shift (0x%x)",
3301 icm[i].span_shift, icm[i].split_shift);
3302 IBTF_DPRINTF_L2("hermon", "tables_init: "
3303 "span_mask (0x%x) rsrc_mask (0x%x)",
3304 icm[i].span_mask, icm[i].rsrc_mask);
3305 }
3306 }
3307
3308 }
3309
3310 /*
3311 * hermon_icm_tables_fini()
3312 * Context: Only called from attach() path context
3313 *
3314 * Clean up all icm_tables. Free the bitmap and dma_info arrays.
3315 */
3316 static void
hermon_icm_tables_fini(hermon_state_t * state)3317 hermon_icm_tables_fini(hermon_state_t *state)
3318 {
3319 hermon_icm_table_t *icm;
3320 int nspans;
3321 int i, j;
3322
3323
3324 icm = state->hs_icm;
3325
3326 for (i = 0; i < HERMON_NUM_ICM_RESOURCES; i++) {
3327
3328 mutex_enter(&icm[i].icm_table_lock);
3329 nspans = icm[i].num_spans;
3330
3331 for (j = 0; j < HERMON_ICM_SPLIT; j++) {
3332 if (icm[i].icm_dma[j])
3333 /* Free the ICM DMA slots */
3334 kmem_free(icm[i].icm_dma[j],
3335 nspans * sizeof (hermon_dma_info_t));
3336
3337 if (icm[i].icm_bitmap[j])
3338 /* Free the table bitmap */
3339 kmem_free(icm[i].icm_bitmap[j],
3340 (nspans + 7) / 8);
3341 }
3342 /* Destroy the table lock */
3343 cv_destroy(&icm[i].icm_table_cv);
3344 mutex_exit(&icm[i].icm_table_lock);
3345 mutex_destroy(&icm[i].icm_table_lock);
3346 }
3347
3348 }
3349
3350 /*
3351 * hermon_icm_dma_init()
3352 * Context: Only called from attach() path context
3353 */
3354 static int
hermon_icm_dma_init(hermon_state_t * state)3355 hermon_icm_dma_init(hermon_state_t *state)
3356 {
3357 hermon_icm_table_t *icm;
3358 hermon_rsrc_type_t type;
3359 int status;
3360
3361
3362 /*
3363 * This routine will allocate initial ICM DMA resources for ICM
3364 * tables that have reserved ICM objects. This is the only routine
3365 * where we should have to allocate ICM outside of hermon_rsrc_alloc().
3366 * We need to allocate ICM here explicitly, rather than in
3367 * hermon_rsrc_alloc(), because we've not yet completed the resource
3368 * pool initialization. When the resource pools are initialized
3369 * (in hermon_rsrc_init_phase2(), see hermon_rsrc.c for more
3370 * information), resource preallocations will be invoked to match
3371 * the ICM allocations seen here. We will then be able to use the
3372 * normal allocation path. Note we don't need to set a refcnt on
3373 * these initial allocations because that will be done in the calls
3374 * to hermon_rsrc_alloc() from hermon_hw_entries_init() for the
3375 * "prealloc" objects (see hermon_rsrc.c for more information).
3376 */
3377 for (type = 0; type < HERMON_NUM_ICM_RESOURCES; type++) {
3378
3379 /* ICM for these is allocated within hermon_icm_alloc() */
3380 switch (type) {
3381 case HERMON_CMPT:
3382 case HERMON_CMPT_QPC:
3383 case HERMON_CMPT_SRQC:
3384 case HERMON_CMPT_CQC:
3385 case HERMON_CMPT_EQC:
3386 case HERMON_AUXC:
3387 case HERMON_ALTC:
3388 case HERMON_RDB:
3389 continue;
3390 }
3391
3392 icm = &state->hs_icm[type];
3393
3394 mutex_enter(&icm->icm_table_lock);
3395 status = hermon_icm_alloc(state, type, 0, 0);
3396 mutex_exit(&icm->icm_table_lock);
3397 if (status != DDI_SUCCESS) {
3398 while (type--) {
3399 icm = &state->hs_icm[type];
3400 mutex_enter(&icm->icm_table_lock);
3401 hermon_icm_free(state, type, 0, 0);
3402 mutex_exit(&icm->icm_table_lock);
3403 }
3404 return (DDI_FAILURE);
3405 }
3406
3407 if (hermon_verbose) {
3408 IBTF_DPRINTF_L2("hermon", "hermon_icm_dma_init: "
3409 "table (0x%x) index (0x%x) allocated", type, 0);
3410 }
3411 }
3412
3413 return (DDI_SUCCESS);
3414 }
3415
3416 /*
3417 * hermon_icm_dma_fini()
3418 * Context: Only called from attach() path context
3419 *
3420 * ICM has been completely unmapped. We just free the memory here.
3421 */
3422 static void
hermon_icm_dma_fini(hermon_state_t * state)3423 hermon_icm_dma_fini(hermon_state_t *state)
3424 {
3425 hermon_icm_table_t *icm;
3426 hermon_dma_info_t *dma_info;
3427 hermon_rsrc_type_t type;
3428 int index1, index2;
3429
3430
3431 for (type = 0; type < HERMON_NUM_ICM_RESOURCES; type++) {
3432 icm = &state->hs_icm[type];
3433 for (index1 = 0; index1 < HERMON_ICM_SPLIT; index1++) {
3434 dma_info = icm->icm_dma[index1];
3435 if (dma_info == NULL)
3436 continue;
3437 for (index2 = 0; index2 < icm->num_spans; index2++) {
3438 if (dma_info[index2].dma_hdl)
3439 hermon_dma_free(&dma_info[index2]);
3440 dma_info[index2].dma_hdl = NULL;
3441 }
3442 }
3443 }
3444
3445 }
3446
3447 /*
3448 * hermon_hca_port_init()
3449 * Context: Only called from attach() path context
3450 */
3451 static int
hermon_hca_port_init(hermon_state_t * state)3452 hermon_hca_port_init(hermon_state_t *state)
3453 {
3454 hermon_hw_set_port_t *portinits, *initport;
3455 hermon_cfg_profile_t *cfgprof;
3456&n