2 * Copyright (c) 2013, Cisco Systems, Inc. All rights reserved.
4 * This software is available to you under a choice of one of two
5 * licenses. You may choose to be licensed under the terms of the GNU
6 * General Public License (GPL) Version 2, available from the file
7 * COPYING in the main directory of this source tree, or the
10 * Redistribution and use in source and binary forms, with or
11 * without modification, are permitted provided that the following
14 * - Redistributions of source code must retain the above
15 * copyright notice, this list of conditions and the following
18 * - Redistributions in binary form must reproduce the above
19 * copyright notice, this list of conditions and the following
20 * disclaimer in the documentation and/or other materials
21 * provided with the distribution.
23 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
24 * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
25 * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
26 * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS
27 * BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN
28 * ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
29 * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
34 #include <linux/module.h>
35 #include <linux/init.h>
36 #include <linux/errno.h>
38 #include <rdma/ib_user_verbs.h>
39 #include <rdma/ib_addr.h>
41 #include "usnic_common_util.h"
43 #include "usnic_ib_qp_grp.h"
44 #include "usnic_vnic.h"
45 #include "usnic_ib_verbs.h"
46 #include "usnic_ib_sysfs.h"
47 #include "usnic_log.h"
49 static ssize_t
usnic_ib_show_board(struct device
*device
,
50 struct device_attribute
*attr
,
53 struct usnic_ib_dev
*us_ibdev
=
54 container_of(device
, struct usnic_ib_dev
, ib_dev
.dev
);
55 unsigned short subsystem_device_id
;
57 mutex_lock(&us_ibdev
->usdev_lock
);
58 subsystem_device_id
= us_ibdev
->pdev
->subsystem_device
;
59 mutex_unlock(&us_ibdev
->usdev_lock
);
61 return scnprintf(buf
, PAGE_SIZE
, "%hu\n", subsystem_device_id
);
65 * Report the configuration for this PF
68 usnic_ib_show_config(struct device
*device
, struct device_attribute
*attr
,
71 struct usnic_ib_dev
*us_ibdev
;
75 enum usnic_vnic_res_type res_type
;
77 us_ibdev
= container_of(device
, struct usnic_ib_dev
, ib_dev
.dev
);
79 /* Buffer space limit is 1 page */
83 mutex_lock(&us_ibdev
->usdev_lock
);
84 if (kref_read(&us_ibdev
->vf_cnt
) > 0) {
88 * bus name seems to come with annoying prefix.
89 * Remove it if it is predictable
91 busname
= us_ibdev
->pdev
->bus
->name
;
92 if (strncmp(busname
, "PCI Bus ", 8) == 0)
95 n
= scnprintf(ptr
, left
,
96 "%s: %s:%d.%d, %s, %pM, %u VFs\n Per VF:",
97 us_ibdev
->ib_dev
.name
,
99 PCI_SLOT(us_ibdev
->pdev
->devfn
),
100 PCI_FUNC(us_ibdev
->pdev
->devfn
),
101 netdev_name(us_ibdev
->netdev
),
102 us_ibdev
->ufdev
->mac
,
103 kref_read(&us_ibdev
->vf_cnt
));
104 UPDATE_PTR_LEFT(n
, ptr
, left
);
106 for (res_type
= USNIC_VNIC_RES_TYPE_EOL
;
107 res_type
< USNIC_VNIC_RES_TYPE_MAX
;
109 if (us_ibdev
->vf_res_cnt
[res_type
] == 0)
111 n
= scnprintf(ptr
, left
, " %d %s%s",
112 us_ibdev
->vf_res_cnt
[res_type
],
113 usnic_vnic_res_type_to_str(res_type
),
114 (res_type
< (USNIC_VNIC_RES_TYPE_MAX
- 1)) ?
116 UPDATE_PTR_LEFT(n
, ptr
, left
);
118 n
= scnprintf(ptr
, left
, "\n");
119 UPDATE_PTR_LEFT(n
, ptr
, left
);
121 n
= scnprintf(ptr
, left
, "%s: no VFs\n",
122 us_ibdev
->ib_dev
.name
);
123 UPDATE_PTR_LEFT(n
, ptr
, left
);
125 mutex_unlock(&us_ibdev
->usdev_lock
);
131 usnic_ib_show_iface(struct device
*device
, struct device_attribute
*attr
,
134 struct usnic_ib_dev
*us_ibdev
;
136 us_ibdev
= container_of(device
, struct usnic_ib_dev
, ib_dev
.dev
);
138 return scnprintf(buf
, PAGE_SIZE
, "%s\n",
139 netdev_name(us_ibdev
->netdev
));
143 usnic_ib_show_max_vf(struct device
*device
, struct device_attribute
*attr
,
146 struct usnic_ib_dev
*us_ibdev
;
148 us_ibdev
= container_of(device
, struct usnic_ib_dev
, ib_dev
.dev
);
150 return scnprintf(buf
, PAGE_SIZE
, "%u\n",
151 kref_read(&us_ibdev
->vf_cnt
));
155 usnic_ib_show_qp_per_vf(struct device
*device
, struct device_attribute
*attr
,
158 struct usnic_ib_dev
*us_ibdev
;
161 us_ibdev
= container_of(device
, struct usnic_ib_dev
, ib_dev
.dev
);
162 qp_per_vf
= max(us_ibdev
->vf_res_cnt
[USNIC_VNIC_RES_TYPE_WQ
],
163 us_ibdev
->vf_res_cnt
[USNIC_VNIC_RES_TYPE_RQ
]);
165 return scnprintf(buf
, PAGE_SIZE
,
170 usnic_ib_show_cq_per_vf(struct device
*device
, struct device_attribute
*attr
,
173 struct usnic_ib_dev
*us_ibdev
;
175 us_ibdev
= container_of(device
, struct usnic_ib_dev
, ib_dev
.dev
);
177 return scnprintf(buf
, PAGE_SIZE
, "%d\n",
178 us_ibdev
->vf_res_cnt
[USNIC_VNIC_RES_TYPE_CQ
]);
181 static DEVICE_ATTR(board_id
, S_IRUGO
, usnic_ib_show_board
, NULL
);
182 static DEVICE_ATTR(config
, S_IRUGO
, usnic_ib_show_config
, NULL
);
183 static DEVICE_ATTR(iface
, S_IRUGO
, usnic_ib_show_iface
, NULL
);
184 static DEVICE_ATTR(max_vf
, S_IRUGO
, usnic_ib_show_max_vf
, NULL
);
185 static DEVICE_ATTR(qp_per_vf
, S_IRUGO
, usnic_ib_show_qp_per_vf
, NULL
);
186 static DEVICE_ATTR(cq_per_vf
, S_IRUGO
, usnic_ib_show_cq_per_vf
, NULL
);
188 static struct device_attribute
*usnic_class_attributes
[] = {
197 struct qpn_attribute
{
198 struct attribute attr
;
199 ssize_t (*show
)(struct usnic_ib_qp_grp
*, char *buf
);
203 * Definitions for supporting QPN entries in sysfs
206 usnic_ib_qpn_attr_show(struct kobject
*kobj
, struct attribute
*attr
, char *buf
)
208 struct usnic_ib_qp_grp
*qp_grp
;
209 struct qpn_attribute
*qpn_attr
;
211 qp_grp
= container_of(kobj
, struct usnic_ib_qp_grp
, kobj
);
212 qpn_attr
= container_of(attr
, struct qpn_attribute
, attr
);
214 return qpn_attr
->show(qp_grp
, buf
);
217 static const struct sysfs_ops usnic_ib_qpn_sysfs_ops
= {
218 .show
= usnic_ib_qpn_attr_show
221 #define QPN_ATTR_RO(NAME) \
222 struct qpn_attribute qpn_attr_##NAME = __ATTR_RO(NAME)
224 static ssize_t
context_show(struct usnic_ib_qp_grp
*qp_grp
, char *buf
)
226 return scnprintf(buf
, PAGE_SIZE
, "0x%p\n", qp_grp
->ctx
);
229 static ssize_t
summary_show(struct usnic_ib_qp_grp
*qp_grp
, char *buf
)
234 struct usnic_vnic_res_chunk
*res_chunk
;
235 struct usnic_vnic_res
*vnic_res
;
240 n
= scnprintf(ptr
, left
,
241 "QPN: %d State: (%s) PID: %u VF Idx: %hu ",
243 usnic_ib_qp_grp_state_to_string(qp_grp
->state
),
245 usnic_vnic_get_index(qp_grp
->vf
->vnic
));
246 UPDATE_PTR_LEFT(n
, ptr
, left
);
248 for (i
= 0; qp_grp
->res_chunk_list
[i
]; i
++) {
249 res_chunk
= qp_grp
->res_chunk_list
[i
];
250 for (j
= 0; j
< res_chunk
->cnt
; j
++) {
251 vnic_res
= res_chunk
->res
[j
];
252 n
= scnprintf(ptr
, left
, "%s[%d] ",
253 usnic_vnic_res_type_to_str(vnic_res
->type
),
255 UPDATE_PTR_LEFT(n
, ptr
, left
);
259 n
= scnprintf(ptr
, left
, "\n");
260 UPDATE_PTR_LEFT(n
, ptr
, left
);
265 static QPN_ATTR_RO(context
);
266 static QPN_ATTR_RO(summary
);
268 static struct attribute
*usnic_ib_qpn_default_attrs
[] = {
269 &qpn_attr_context
.attr
,
270 &qpn_attr_summary
.attr
,
274 static struct kobj_type usnic_ib_qpn_type
= {
275 .sysfs_ops
= &usnic_ib_qpn_sysfs_ops
,
276 .default_attrs
= usnic_ib_qpn_default_attrs
279 int usnic_ib_sysfs_register_usdev(struct usnic_ib_dev
*us_ibdev
)
283 for (i
= 0; i
< ARRAY_SIZE(usnic_class_attributes
); ++i
) {
284 err
= device_create_file(&us_ibdev
->ib_dev
.dev
,
285 usnic_class_attributes
[i
]);
287 usnic_err("Failed to create device file %d for %s eith err %d",
288 i
, us_ibdev
->ib_dev
.name
, err
);
293 /* create kernel object for looking at individual QPs */
294 kobject_get(&us_ibdev
->ib_dev
.dev
.kobj
);
295 us_ibdev
->qpn_kobj
= kobject_create_and_add("qpn",
296 &us_ibdev
->ib_dev
.dev
.kobj
);
297 if (us_ibdev
->qpn_kobj
== NULL
) {
298 kobject_put(&us_ibdev
->ib_dev
.dev
.kobj
);
305 void usnic_ib_sysfs_unregister_usdev(struct usnic_ib_dev
*us_ibdev
)
308 for (i
= 0; i
< ARRAY_SIZE(usnic_class_attributes
); ++i
) {
309 device_remove_file(&us_ibdev
->ib_dev
.dev
,
310 usnic_class_attributes
[i
]);
313 kobject_put(us_ibdev
->qpn_kobj
);
316 void usnic_ib_sysfs_qpn_add(struct usnic_ib_qp_grp
*qp_grp
)
318 struct usnic_ib_dev
*us_ibdev
;
321 us_ibdev
= qp_grp
->vf
->pf
;
323 err
= kobject_init_and_add(&qp_grp
->kobj
, &usnic_ib_qpn_type
,
324 kobject_get(us_ibdev
->qpn_kobj
),
325 "%d", qp_grp
->grp_id
);
327 kobject_put(us_ibdev
->qpn_kobj
);
332 void usnic_ib_sysfs_qpn_remove(struct usnic_ib_qp_grp
*qp_grp
)
334 struct usnic_ib_dev
*us_ibdev
;
336 us_ibdev
= qp_grp
->vf
->pf
;
338 kobject_put(&qp_grp
->kobj
);
339 kobject_put(us_ibdev
->qpn_kobj
);