|
@@ -43,6 +43,7 @@
|
|
|
#ifdef CONFIG_PPC_64K_PAGES
|
|
|
#include <linux/slab.h>
|
|
|
#endif
|
|
|
+
|
|
|
#include "ehca_classes.h"
|
|
|
#include "ehca_iverbs.h"
|
|
|
#include "ehca_mrmw.h"
|
|
@@ -66,6 +67,7 @@ int ehca_poll_all_eqs = 1;
|
|
|
int ehca_static_rate = -1;
|
|
|
int ehca_scaling_code = 0;
|
|
|
int ehca_mr_largepage = 1;
|
|
|
+int ehca_lock_hcalls = -1;
|
|
|
|
|
|
module_param_named(open_aqp1, ehca_open_aqp1, int, S_IRUGO);
|
|
|
module_param_named(debug_level, ehca_debug_level, int, S_IRUGO);
|
|
@@ -77,6 +79,7 @@ module_param_named(poll_all_eqs, ehca_poll_all_eqs, int, S_IRUGO);
|
|
|
module_param_named(static_rate, ehca_static_rate, int, S_IRUGO);
|
|
|
module_param_named(scaling_code, ehca_scaling_code, int, S_IRUGO);
|
|
|
module_param_named(mr_largepage, ehca_mr_largepage, int, S_IRUGO);
|
|
|
+module_param_named(lock_hcalls, ehca_lock_hcalls, bool, S_IRUGO);
|
|
|
|
|
|
MODULE_PARM_DESC(open_aqp1,
|
|
|
"AQP1 on startup (0: no (default), 1: yes)");
|
|
@@ -102,6 +105,9 @@ MODULE_PARM_DESC(scaling_code,
|
|
|
MODULE_PARM_DESC(mr_largepage,
|
|
|
"use large page for MR (0: use PAGE_SIZE (default), "
|
|
|
"1: use large page depending on MR size");
|
|
|
+MODULE_PARM_DESC(lock_hcalls,
|
|
|
+ "serialize all hCalls made by the driver "
|
|
|
+ "(default: autodetect)");
|
|
|
|
|
|
DEFINE_RWLOCK(ehca_qp_idr_lock);
|
|
|
DEFINE_RWLOCK(ehca_cq_idr_lock);
|
|
@@ -258,6 +264,7 @@ static struct cap_descr {
|
|
|
{ HCA_CAP_UD_LL_QP, "HCA_CAP_UD_LL_QP" },
|
|
|
{ HCA_CAP_RESIZE_MR, "HCA_CAP_RESIZE_MR" },
|
|
|
{ HCA_CAP_MINI_QP, "HCA_CAP_MINI_QP" },
|
|
|
+ { HCA_CAP_H_ALLOC_RES_SYNC, "HCA_CAP_H_ALLOC_RES_SYNC" },
|
|
|
};
|
|
|
|
|
|
static int ehca_sense_attributes(struct ehca_shca *shca)
|
|
@@ -333,6 +340,12 @@ static int ehca_sense_attributes(struct ehca_shca *shca)
|
|
|
if (EHCA_BMASK_GET(hca_cap_descr[i].mask, shca->hca_cap))
|
|
|
ehca_gen_dbg(" %s", hca_cap_descr[i].descr);
|
|
|
|
|
|
+ /* Autodetect hCall locking -- the "H_ALLOC_RESOURCE synced" flag is
|
|
|
+ * a firmware property, so it's valid across all adapters
|
|
|
+ */
|
|
|
+ if (ehca_lock_hcalls == -1)
|
|
|
+ ehca_lock_hcalls = !(shca->hca_cap & HCA_CAP_H_ALLOC_RES_SYNC);
|
|
|
+
|
|
|
/* translate supported MR page sizes; always support 4K */
|
|
|
shca->hca_cap_mr_pgsize = EHCA_PAGESIZE;
|
|
|
if (ehca_mr_largepage) { /* support extra sizes only if enabled */
|