blob: abc5ab581f8214540b11d3a9d8434a551273bb3d [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * Copyright (c) 2004, 2005 Topspin Communications. All rights reserved.
Roland Dreier2a1d9b72005-08-10 23:03:10 -07003 * Copyright (c) 2005 Mellanox Technologies Ltd. All rights reserved.
4 * Copyright (c) 2005 Sun Microsystems, Inc. All rights reserved.
Linus Torvalds1da177e2005-04-16 15:20:36 -07005 *
6 * This software is available to you under a choice of one of two
7 * licenses. You may choose to be licensed under the terms of the GNU
8 * General Public License (GPL) Version 2, available from the file
9 * COPYING in the main directory of this source tree, or the
10 * OpenIB.org BSD license below:
11 *
12 * Redistribution and use in source and binary forms, with or
13 * without modification, are permitted provided that the following
14 * conditions are met:
15 *
16 * - Redistributions of source code must retain the above
17 * copyright notice, this list of conditions and the following
18 * disclaimer.
19 *
20 * - Redistributions in binary form must reproduce the above
21 * copyright notice, this list of conditions and the following
22 * disclaimer in the documentation and/or other materials
23 * provided with the distribution.
24 *
25 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
26 * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
27 * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
28 * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS
29 * BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN
30 * ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
31 * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
32 * SOFTWARE.
Linus Torvalds1da177e2005-04-16 15:20:36 -070033 */
34
35#include "core_priv.h"
36
Tim Schmielau8c65b4a2005-11-07 00:59:43 -080037#include <linux/slab.h>
Paul Gortmakerfc87af72011-05-27 13:27:45 -040038#include <linux/stat.h>
Tim Schmielau8c65b4a2005-11-07 00:59:43 -080039#include <linux/string.h>
Matan Barak470be512015-12-23 14:56:49 +020040#include <linux/netdevice.h>
Ira Weiny41a6ae12016-06-15 02:22:07 -040041#include <linux/ethtool.h>
Tim Schmielau8c65b4a2005-11-07 00:59:43 -080042
Roland Dreiera4d61e82005-08-25 13:40:04 -070043#include <rdma/ib_mad.h>
Christoph Lameterb2788ce2015-12-21 08:20:28 -060044#include <rdma/ib_pma.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070045
Matan Barak470be512015-12-23 14:56:49 +020046struct ib_port;
47
48struct gid_attr_group {
49 struct ib_port *port;
50 struct kobject kobj;
51 struct attribute_group ndev;
52 struct attribute_group type;
53};
Linus Torvalds1da177e2005-04-16 15:20:36 -070054struct ib_port {
55 struct kobject kobj;
56 struct ib_device *ibdev;
Matan Barak470be512015-12-23 14:56:49 +020057 struct gid_attr_group *gid_attr_group;
Linus Torvalds1da177e2005-04-16 15:20:36 -070058 struct attribute_group gid_group;
Linus Torvalds1da177e2005-04-16 15:20:36 -070059 struct attribute_group pkey_group;
Christoph Lameter145d9c52015-12-21 08:20:29 -060060 struct attribute_group *pma_table;
Christoph Lameterb40f4752016-05-16 12:49:33 -050061 struct attribute_group *hw_stats_ag;
62 struct rdma_hw_stats *hw_stats;
63 u8 port_num;
Linus Torvalds1da177e2005-04-16 15:20:36 -070064};
65
66struct port_attribute {
67 struct attribute attr;
68 ssize_t (*show)(struct ib_port *, struct port_attribute *, char *buf);
69 ssize_t (*store)(struct ib_port *, struct port_attribute *,
70 const char *buf, size_t count);
71};
72
73#define PORT_ATTR(_name, _mode, _show, _store) \
74struct port_attribute port_attr_##_name = __ATTR(_name, _mode, _show, _store)
75
76#define PORT_ATTR_RO(_name) \
77struct port_attribute port_attr_##_name = __ATTR_RO(_name)
78
79struct port_table_attribute {
Dmitry Torokhovd48593b2005-04-29 00:58:46 -050080 struct port_attribute attr;
81 char name[8];
82 int index;
Ira Weiny65487fd2016-01-03 22:44:25 -050083 __be16 attr_id;
Linus Torvalds1da177e2005-04-16 15:20:36 -070084};
85
Christoph Lameterb40f4752016-05-16 12:49:33 -050086struct hw_stats_attribute {
87 struct attribute attr;
88 ssize_t (*show)(struct kobject *kobj,
89 struct attribute *attr, char *buf);
90 ssize_t (*store)(struct kobject *kobj,
91 struct attribute *attr,
92 const char *buf,
93 size_t count);
94 int index;
95 u8 port_num;
96};
97
Linus Torvalds1da177e2005-04-16 15:20:36 -070098static ssize_t port_attr_show(struct kobject *kobj,
99 struct attribute *attr, char *buf)
100{
101 struct port_attribute *port_attr =
102 container_of(attr, struct port_attribute, attr);
103 struct ib_port *p = container_of(kobj, struct ib_port, kobj);
104
105 if (!port_attr->show)
Dmitry Torokhov70f28172005-04-29 01:27:34 -0500106 return -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700107
108 return port_attr->show(p, port_attr, buf);
109}
110
Emese Revfy52cf25d2010-01-19 02:58:23 +0100111static const struct sysfs_ops port_sysfs_ops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700112 .show = port_attr_show
113};
114
Matan Barak470be512015-12-23 14:56:49 +0200115static ssize_t gid_attr_show(struct kobject *kobj,
116 struct attribute *attr, char *buf)
117{
118 struct port_attribute *port_attr =
119 container_of(attr, struct port_attribute, attr);
120 struct ib_port *p = container_of(kobj, struct gid_attr_group,
121 kobj)->port;
122
123 if (!port_attr->show)
124 return -EIO;
125
126 return port_attr->show(p, port_attr, buf);
127}
128
129static const struct sysfs_ops gid_attr_sysfs_ops = {
130 .show = gid_attr_show
131};
132
Linus Torvalds1da177e2005-04-16 15:20:36 -0700133static ssize_t state_show(struct ib_port *p, struct port_attribute *unused,
134 char *buf)
135{
136 struct ib_port_attr attr;
137 ssize_t ret;
138
139 static const char *state_name[] = {
140 [IB_PORT_NOP] = "NOP",
141 [IB_PORT_DOWN] = "DOWN",
142 [IB_PORT_INIT] = "INIT",
143 [IB_PORT_ARMED] = "ARMED",
144 [IB_PORT_ACTIVE] = "ACTIVE",
145 [IB_PORT_ACTIVE_DEFER] = "ACTIVE_DEFER"
146 };
147
148 ret = ib_query_port(p->ibdev, p->port_num, &attr);
149 if (ret)
150 return ret;
151
152 return sprintf(buf, "%d: %s\n", attr.state,
Roland Dreier048975a2006-03-20 10:08:25 -0800153 attr.state >= 0 && attr.state < ARRAY_SIZE(state_name) ?
Linus Torvalds1da177e2005-04-16 15:20:36 -0700154 state_name[attr.state] : "UNKNOWN");
155}
156
157static ssize_t lid_show(struct ib_port *p, struct port_attribute *unused,
158 char *buf)
159{
160 struct ib_port_attr attr;
161 ssize_t ret;
162
163 ret = ib_query_port(p->ibdev, p->port_num, &attr);
164 if (ret)
165 return ret;
166
167 return sprintf(buf, "0x%x\n", attr.lid);
168}
169
170static ssize_t lid_mask_count_show(struct ib_port *p,
171 struct port_attribute *unused,
172 char *buf)
173{
174 struct ib_port_attr attr;
175 ssize_t ret;
176
177 ret = ib_query_port(p->ibdev, p->port_num, &attr);
178 if (ret)
179 return ret;
180
181 return sprintf(buf, "%d\n", attr.lmc);
182}
183
184static ssize_t sm_lid_show(struct ib_port *p, struct port_attribute *unused,
185 char *buf)
186{
187 struct ib_port_attr attr;
188 ssize_t ret;
189
190 ret = ib_query_port(p->ibdev, p->port_num, &attr);
191 if (ret)
192 return ret;
193
194 return sprintf(buf, "0x%x\n", attr.sm_lid);
195}
196
197static ssize_t sm_sl_show(struct ib_port *p, struct port_attribute *unused,
198 char *buf)
199{
200 struct ib_port_attr attr;
201 ssize_t ret;
202
203 ret = ib_query_port(p->ibdev, p->port_num, &attr);
204 if (ret)
205 return ret;
206
207 return sprintf(buf, "%d\n", attr.sm_sl);
208}
209
210static ssize_t cap_mask_show(struct ib_port *p, struct port_attribute *unused,
211 char *buf)
212{
213 struct ib_port_attr attr;
214 ssize_t ret;
215
216 ret = ib_query_port(p->ibdev, p->port_num, &attr);
217 if (ret)
218 return ret;
219
220 return sprintf(buf, "0x%08x\n", attr.port_cap_flags);
221}
222
223static ssize_t rate_show(struct ib_port *p, struct port_attribute *unused,
224 char *buf)
225{
226 struct ib_port_attr attr;
227 char *speed = "";
Roland Dreier0559d8d2012-04-02 10:57:31 -0700228 int rate; /* in deci-Gb/sec */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700229 ssize_t ret;
230
231 ret = ib_query_port(p->ibdev, p->port_num, &attr);
232 if (ret)
233 return ret;
234
235 switch (attr.active_speed) {
Or Gerlitz2e966912012-02-28 18:49:50 +0200236 case IB_SPEED_DDR:
Marcel Apfelbaum71eeba12011-10-05 14:21:47 +0300237 speed = " DDR";
Roland Dreiere9319b02012-02-27 09:15:08 -0800238 rate = 50;
Marcel Apfelbaum71eeba12011-10-05 14:21:47 +0300239 break;
Or Gerlitz2e966912012-02-28 18:49:50 +0200240 case IB_SPEED_QDR:
Marcel Apfelbaum71eeba12011-10-05 14:21:47 +0300241 speed = " QDR";
Roland Dreiere9319b02012-02-27 09:15:08 -0800242 rate = 100;
Marcel Apfelbaum71eeba12011-10-05 14:21:47 +0300243 break;
Or Gerlitz2e966912012-02-28 18:49:50 +0200244 case IB_SPEED_FDR10:
Marcel Apfelbaum71eeba12011-10-05 14:21:47 +0300245 speed = " FDR10";
Roland Dreiere9319b02012-02-27 09:15:08 -0800246 rate = 100;
Marcel Apfelbaum71eeba12011-10-05 14:21:47 +0300247 break;
Or Gerlitz2e966912012-02-28 18:49:50 +0200248 case IB_SPEED_FDR:
Marcel Apfelbaum71eeba12011-10-05 14:21:47 +0300249 speed = " FDR";
Roland Dreiere9319b02012-02-27 09:15:08 -0800250 rate = 140;
Marcel Apfelbaum71eeba12011-10-05 14:21:47 +0300251 break;
Or Gerlitz2e966912012-02-28 18:49:50 +0200252 case IB_SPEED_EDR:
Marcel Apfelbaum71eeba12011-10-05 14:21:47 +0300253 speed = " EDR";
Roland Dreiere9319b02012-02-27 09:15:08 -0800254 rate = 250;
Marcel Apfelbaum71eeba12011-10-05 14:21:47 +0300255 break;
Noa Osherovich12113a32017-04-20 20:53:31 +0300256 case IB_SPEED_HDR:
257 speed = " HDR";
258 rate = 500;
259 break;
Roland Dreier0559d8d2012-04-02 10:57:31 -0700260 case IB_SPEED_SDR:
261 default: /* default to SDR for invalid rates */
262 rate = 25;
263 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700264 }
265
Marcel Apfelbaum71eeba12011-10-05 14:21:47 +0300266 rate *= ib_width_enum_to_int(attr.active_width);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700267 if (rate < 0)
268 return -EINVAL;
269
270 return sprintf(buf, "%d%s Gb/sec (%dX%s)\n",
Roland Dreiere9319b02012-02-27 09:15:08 -0800271 rate / 10, rate % 10 ? ".5" : "",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700272 ib_width_enum_to_int(attr.active_width), speed);
273}
274
275static ssize_t phys_state_show(struct ib_port *p, struct port_attribute *unused,
276 char *buf)
277{
278 struct ib_port_attr attr;
279
280 ssize_t ret;
281
282 ret = ib_query_port(p->ibdev, p->port_num, &attr);
283 if (ret)
284 return ret;
285
286 switch (attr.phys_state) {
287 case 1: return sprintf(buf, "1: Sleep\n");
288 case 2: return sprintf(buf, "2: Polling\n");
289 case 3: return sprintf(buf, "3: Disabled\n");
290 case 4: return sprintf(buf, "4: PortConfigurationTraining\n");
291 case 5: return sprintf(buf, "5: LinkUp\n");
292 case 6: return sprintf(buf, "6: LinkErrorRecovery\n");
293 case 7: return sprintf(buf, "7: Phy Test\n");
294 default: return sprintf(buf, "%d: <unknown>\n", attr.phys_state);
295 }
296}
297
Eli Cohen8ad330a2010-10-22 14:32:05 +0200298static ssize_t link_layer_show(struct ib_port *p, struct port_attribute *unused,
299 char *buf)
300{
301 switch (rdma_port_get_link_layer(p->ibdev, p->port_num)) {
302 case IB_LINK_LAYER_INFINIBAND:
303 return sprintf(buf, "%s\n", "InfiniBand");
304 case IB_LINK_LAYER_ETHERNET:
305 return sprintf(buf, "%s\n", "Ethernet");
306 default:
307 return sprintf(buf, "%s\n", "Unknown");
308 }
309}
310
Linus Torvalds1da177e2005-04-16 15:20:36 -0700311static PORT_ATTR_RO(state);
312static PORT_ATTR_RO(lid);
313static PORT_ATTR_RO(lid_mask_count);
314static PORT_ATTR_RO(sm_lid);
315static PORT_ATTR_RO(sm_sl);
316static PORT_ATTR_RO(cap_mask);
317static PORT_ATTR_RO(rate);
318static PORT_ATTR_RO(phys_state);
Eli Cohen8ad330a2010-10-22 14:32:05 +0200319static PORT_ATTR_RO(link_layer);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700320
321static struct attribute *port_default_attrs[] = {
322 &port_attr_state.attr,
323 &port_attr_lid.attr,
324 &port_attr_lid_mask_count.attr,
325 &port_attr_sm_lid.attr,
326 &port_attr_sm_sl.attr,
327 &port_attr_cap_mask.attr,
328 &port_attr_rate.attr,
329 &port_attr_phys_state.attr,
Eli Cohen8ad330a2010-10-22 14:32:05 +0200330 &port_attr_link_layer.attr,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700331 NULL
332};
333
Matan Barak470be512015-12-23 14:56:49 +0200334static size_t print_ndev(struct ib_gid_attr *gid_attr, char *buf)
335{
336 if (!gid_attr->ndev)
337 return -EINVAL;
338
339 return sprintf(buf, "%s\n", gid_attr->ndev->name);
340}
341
342static size_t print_gid_type(struct ib_gid_attr *gid_attr, char *buf)
343{
344 return sprintf(buf, "%s\n", ib_cache_gid_type_str(gid_attr->gid_type));
345}
346
347static ssize_t _show_port_gid_attr(struct ib_port *p,
348 struct port_attribute *attr,
349 char *buf,
350 size_t (*print)(struct ib_gid_attr *gid_attr,
351 char *buf))
352{
353 struct port_table_attribute *tab_attr =
354 container_of(attr, struct port_table_attribute, attr);
355 union ib_gid gid;
356 struct ib_gid_attr gid_attr = {};
357 ssize_t ret;
Matan Barak470be512015-12-23 14:56:49 +0200358
359 ret = ib_query_gid(p->ibdev, p->port_num, tab_attr->index, &gid,
360 &gid_attr);
361 if (ret)
362 goto err;
363
364 ret = print(&gid_attr, buf);
365
366err:
367 if (gid_attr.ndev)
368 dev_put(gid_attr.ndev);
Matan Barak470be512015-12-23 14:56:49 +0200369 return ret;
370}
371
Linus Torvalds1da177e2005-04-16 15:20:36 -0700372static ssize_t show_port_gid(struct ib_port *p, struct port_attribute *attr,
373 char *buf)
374{
375 struct port_table_attribute *tab_attr =
376 container_of(attr, struct port_table_attribute, attr);
377 union ib_gid gid;
378 ssize_t ret;
379
Matan Barak55ee3ab2015-10-15 18:38:45 +0300380 ret = ib_query_gid(p->ibdev, p->port_num, tab_attr->index, &gid, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700381 if (ret)
382 return ret;
383
Harvey Harrison5b095d9892008-10-29 12:52:50 -0700384 return sprintf(buf, "%pI6\n", gid.raw);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700385}
386
Matan Barak470be512015-12-23 14:56:49 +0200387static ssize_t show_port_gid_attr_ndev(struct ib_port *p,
388 struct port_attribute *attr, char *buf)
389{
390 return _show_port_gid_attr(p, attr, buf, print_ndev);
391}
392
393static ssize_t show_port_gid_attr_gid_type(struct ib_port *p,
394 struct port_attribute *attr,
395 char *buf)
396{
397 return _show_port_gid_attr(p, attr, buf, print_gid_type);
398}
399
Linus Torvalds1da177e2005-04-16 15:20:36 -0700400static ssize_t show_port_pkey(struct ib_port *p, struct port_attribute *attr,
401 char *buf)
402{
403 struct port_table_attribute *tab_attr =
404 container_of(attr, struct port_table_attribute, attr);
405 u16 pkey;
406 ssize_t ret;
407
408 ret = ib_query_pkey(p->ibdev, p->port_num, tab_attr->index, &pkey);
409 if (ret)
410 return ret;
411
412 return sprintf(buf, "0x%04x\n", pkey);
413}
414
415#define PORT_PMA_ATTR(_name, _counter, _width, _offset) \
416struct port_table_attribute port_pma_attr_##_name = { \
417 .attr = __ATTR(_name, S_IRUGO, show_pma_counter, NULL), \
Christoph Lameterb2788ce2015-12-21 08:20:28 -0600418 .index = (_offset) | ((_width) << 16) | ((_counter) << 24), \
419 .attr_id = IB_PMA_PORT_COUNTERS , \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700420}
421
Christoph Lameter145d9c52015-12-21 08:20:29 -0600422#define PORT_PMA_ATTR_EXT(_name, _width, _offset) \
423struct port_table_attribute port_pma_attr_ext_##_name = { \
424 .attr = __ATTR(_name, S_IRUGO, show_pma_counter, NULL), \
425 .index = (_offset) | ((_width) << 16), \
426 .attr_id = IB_PMA_PORT_COUNTERS_EXT , \
427}
428
Christoph Lameter35c4cbb2015-12-21 08:20:27 -0600429/*
430 * Get a Perfmgmt MAD block of data.
431 * Returns error code or the number of bytes retrieved.
432 */
Ira Weiny65487fd2016-01-03 22:44:25 -0500433static int get_perf_mad(struct ib_device *dev, int port_num, __be16 attr,
Christoph Lameter35c4cbb2015-12-21 08:20:27 -0600434 void *data, int offset, size_t size)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700435{
Christoph Lameter35c4cbb2015-12-21 08:20:27 -0600436 struct ib_mad *in_mad;
437 struct ib_mad *out_mad;
Ira Weiny4cd7c942015-06-06 14:38:31 -0400438 size_t mad_size = sizeof(*out_mad);
439 u16 out_mad_pkey_index = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700440 ssize_t ret;
441
Christoph Lameter35c4cbb2015-12-21 08:20:27 -0600442 if (!dev->process_mad)
443 return -ENOSYS;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700444
Roland Dreierde6eb662005-11-02 07:23:14 -0800445 in_mad = kzalloc(sizeof *in_mad, GFP_KERNEL);
Dotan Barak856c52a2007-07-10 16:55:57 +0300446 out_mad = kmalloc(sizeof *out_mad, GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700447 if (!in_mad || !out_mad) {
448 ret = -ENOMEM;
449 goto out;
450 }
451
Linus Torvalds1da177e2005-04-16 15:20:36 -0700452 in_mad->mad_hdr.base_version = 1;
453 in_mad->mad_hdr.mgmt_class = IB_MGMT_CLASS_PERF_MGMT;
454 in_mad->mad_hdr.class_version = 1;
455 in_mad->mad_hdr.method = IB_MGMT_METHOD_GET;
Christoph Lameter35c4cbb2015-12-21 08:20:27 -0600456 in_mad->mad_hdr.attr_id = attr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700457
Hal Rosenstock6e2a51a2015-12-29 05:43:43 -0500458 if (attr != IB_PMA_CLASS_PORT_INFO)
459 in_mad->data[41] = port_num; /* PortSelect field */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700460
Christoph Lameter35c4cbb2015-12-21 08:20:27 -0600461 if ((dev->process_mad(dev, IB_MAD_IGNORE_MKEY,
462 port_num, NULL, NULL,
Ira Weiny4cd7c942015-06-06 14:38:31 -0400463 (const struct ib_mad_hdr *)in_mad, mad_size,
464 (struct ib_mad_hdr *)out_mad, &mad_size,
465 &out_mad_pkey_index) &
Linus Torvalds1da177e2005-04-16 15:20:36 -0700466 (IB_MAD_RESULT_SUCCESS | IB_MAD_RESULT_REPLY)) !=
467 (IB_MAD_RESULT_SUCCESS | IB_MAD_RESULT_REPLY)) {
468 ret = -EINVAL;
469 goto out;
470 }
Christoph Lameter35c4cbb2015-12-21 08:20:27 -0600471 memcpy(data, out_mad->data + offset, size);
472 ret = size;
473out:
474 kfree(in_mad);
475 kfree(out_mad);
476 return ret;
477}
478
479static ssize_t show_pma_counter(struct ib_port *p, struct port_attribute *attr,
480 char *buf)
481{
482 struct port_table_attribute *tab_attr =
483 container_of(attr, struct port_table_attribute, attr);
484 int offset = tab_attr->index & 0xffff;
485 int width = (tab_attr->index >> 16) & 0xff;
486 ssize_t ret;
487 u8 data[8];
488
Christoph Lameterb2788ce2015-12-21 08:20:28 -0600489 ret = get_perf_mad(p->ibdev, p->port_num, tab_attr->attr_id, &data,
Christoph Lameter35c4cbb2015-12-21 08:20:27 -0600490 40 + offset / 8, sizeof(data));
491 if (ret < 0)
492 return sprintf(buf, "N/A (no PMA)\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700493
494 switch (width) {
495 case 4:
Christoph Lameter35c4cbb2015-12-21 08:20:27 -0600496 ret = sprintf(buf, "%u\n", (*data >>
Ralph Campbelld8b9f232006-05-09 10:50:28 -0700497 (4 - (offset % 8))) & 0xf);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700498 break;
499 case 8:
Christoph Lameter35c4cbb2015-12-21 08:20:27 -0600500 ret = sprintf(buf, "%u\n", *data);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700501 break;
502 case 16:
503 ret = sprintf(buf, "%u\n",
Christoph Lameter35c4cbb2015-12-21 08:20:27 -0600504 be16_to_cpup((__be16 *)data));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700505 break;
506 case 32:
507 ret = sprintf(buf, "%u\n",
Christoph Lameter35c4cbb2015-12-21 08:20:27 -0600508 be32_to_cpup((__be32 *)data));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700509 break;
Christoph Lameter145d9c52015-12-21 08:20:29 -0600510 case 64:
511 ret = sprintf(buf, "%llu\n",
512 be64_to_cpup((__be64 *)data));
513 break;
514
Linus Torvalds1da177e2005-04-16 15:20:36 -0700515 default:
516 ret = 0;
517 }
518
Linus Torvalds1da177e2005-04-16 15:20:36 -0700519 return ret;
520}
521
522static PORT_PMA_ATTR(symbol_error , 0, 16, 32);
523static PORT_PMA_ATTR(link_error_recovery , 1, 8, 48);
524static PORT_PMA_ATTR(link_downed , 2, 8, 56);
525static PORT_PMA_ATTR(port_rcv_errors , 3, 16, 64);
526static PORT_PMA_ATTR(port_rcv_remote_physical_errors, 4, 16, 80);
527static PORT_PMA_ATTR(port_rcv_switch_relay_errors , 5, 16, 96);
528static PORT_PMA_ATTR(port_xmit_discards , 6, 16, 112);
529static PORT_PMA_ATTR(port_xmit_constraint_errors , 7, 8, 128);
530static PORT_PMA_ATTR(port_rcv_constraint_errors , 8, 8, 136);
531static PORT_PMA_ATTR(local_link_integrity_errors , 9, 4, 152);
532static PORT_PMA_ATTR(excessive_buffer_overrun_errors, 10, 4, 156);
533static PORT_PMA_ATTR(VL15_dropped , 11, 16, 176);
534static PORT_PMA_ATTR(port_xmit_data , 12, 32, 192);
535static PORT_PMA_ATTR(port_rcv_data , 13, 32, 224);
536static PORT_PMA_ATTR(port_xmit_packets , 14, 32, 256);
537static PORT_PMA_ATTR(port_rcv_packets , 15, 32, 288);
Christoph Lameterc5a81d12016-07-08 10:27:42 -0500538static PORT_PMA_ATTR(port_xmit_wait , 0, 32, 320);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700539
Christoph Lameter145d9c52015-12-21 08:20:29 -0600540/*
541 * Counters added by extended set
542 */
543static PORT_PMA_ATTR_EXT(port_xmit_data , 64, 64);
544static PORT_PMA_ATTR_EXT(port_rcv_data , 64, 128);
545static PORT_PMA_ATTR_EXT(port_xmit_packets , 64, 192);
546static PORT_PMA_ATTR_EXT(port_rcv_packets , 64, 256);
547static PORT_PMA_ATTR_EXT(unicast_xmit_packets , 64, 320);
548static PORT_PMA_ATTR_EXT(unicast_rcv_packets , 64, 384);
549static PORT_PMA_ATTR_EXT(multicast_xmit_packets , 64, 448);
550static PORT_PMA_ATTR_EXT(multicast_rcv_packets , 64, 512);
551
Linus Torvalds1da177e2005-04-16 15:20:36 -0700552static struct attribute *pma_attrs[] = {
553 &port_pma_attr_symbol_error.attr.attr,
554 &port_pma_attr_link_error_recovery.attr.attr,
555 &port_pma_attr_link_downed.attr.attr,
556 &port_pma_attr_port_rcv_errors.attr.attr,
557 &port_pma_attr_port_rcv_remote_physical_errors.attr.attr,
558 &port_pma_attr_port_rcv_switch_relay_errors.attr.attr,
559 &port_pma_attr_port_xmit_discards.attr.attr,
560 &port_pma_attr_port_xmit_constraint_errors.attr.attr,
561 &port_pma_attr_port_rcv_constraint_errors.attr.attr,
562 &port_pma_attr_local_link_integrity_errors.attr.attr,
563 &port_pma_attr_excessive_buffer_overrun_errors.attr.attr,
564 &port_pma_attr_VL15_dropped.attr.attr,
565 &port_pma_attr_port_xmit_data.attr.attr,
566 &port_pma_attr_port_rcv_data.attr.attr,
567 &port_pma_attr_port_xmit_packets.attr.attr,
568 &port_pma_attr_port_rcv_packets.attr.attr,
Christoph Lameterc5a81d12016-07-08 10:27:42 -0500569 &port_pma_attr_port_xmit_wait.attr.attr,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700570 NULL
571};
572
Christoph Lameter145d9c52015-12-21 08:20:29 -0600573static struct attribute *pma_attrs_ext[] = {
574 &port_pma_attr_symbol_error.attr.attr,
575 &port_pma_attr_link_error_recovery.attr.attr,
576 &port_pma_attr_link_downed.attr.attr,
577 &port_pma_attr_port_rcv_errors.attr.attr,
578 &port_pma_attr_port_rcv_remote_physical_errors.attr.attr,
579 &port_pma_attr_port_rcv_switch_relay_errors.attr.attr,
580 &port_pma_attr_port_xmit_discards.attr.attr,
581 &port_pma_attr_port_xmit_constraint_errors.attr.attr,
582 &port_pma_attr_port_rcv_constraint_errors.attr.attr,
583 &port_pma_attr_local_link_integrity_errors.attr.attr,
584 &port_pma_attr_excessive_buffer_overrun_errors.attr.attr,
585 &port_pma_attr_VL15_dropped.attr.attr,
586 &port_pma_attr_ext_port_xmit_data.attr.attr,
587 &port_pma_attr_ext_port_rcv_data.attr.attr,
588 &port_pma_attr_ext_port_xmit_packets.attr.attr,
Christoph Lameterc5a81d12016-07-08 10:27:42 -0500589 &port_pma_attr_port_xmit_wait.attr.attr,
Christoph Lameter145d9c52015-12-21 08:20:29 -0600590 &port_pma_attr_ext_port_rcv_packets.attr.attr,
591 &port_pma_attr_ext_unicast_rcv_packets.attr.attr,
592 &port_pma_attr_ext_unicast_xmit_packets.attr.attr,
593 &port_pma_attr_ext_multicast_rcv_packets.attr.attr,
594 &port_pma_attr_ext_multicast_xmit_packets.attr.attr,
595 NULL
596};
597
598static struct attribute *pma_attrs_noietf[] = {
599 &port_pma_attr_symbol_error.attr.attr,
600 &port_pma_attr_link_error_recovery.attr.attr,
601 &port_pma_attr_link_downed.attr.attr,
602 &port_pma_attr_port_rcv_errors.attr.attr,
603 &port_pma_attr_port_rcv_remote_physical_errors.attr.attr,
604 &port_pma_attr_port_rcv_switch_relay_errors.attr.attr,
605 &port_pma_attr_port_xmit_discards.attr.attr,
606 &port_pma_attr_port_xmit_constraint_errors.attr.attr,
607 &port_pma_attr_port_rcv_constraint_errors.attr.attr,
608 &port_pma_attr_local_link_integrity_errors.attr.attr,
609 &port_pma_attr_excessive_buffer_overrun_errors.attr.attr,
610 &port_pma_attr_VL15_dropped.attr.attr,
611 &port_pma_attr_ext_port_xmit_data.attr.attr,
612 &port_pma_attr_ext_port_rcv_data.attr.attr,
613 &port_pma_attr_ext_port_xmit_packets.attr.attr,
614 &port_pma_attr_ext_port_rcv_packets.attr.attr,
Christoph Lameterc5a81d12016-07-08 10:27:42 -0500615 &port_pma_attr_port_xmit_wait.attr.attr,
Christoph Lameter145d9c52015-12-21 08:20:29 -0600616 NULL
617};
618
Linus Torvalds1da177e2005-04-16 15:20:36 -0700619static struct attribute_group pma_group = {
620 .name = "counters",
621 .attrs = pma_attrs
622};
623
Christoph Lameter145d9c52015-12-21 08:20:29 -0600624static struct attribute_group pma_group_ext = {
625 .name = "counters",
626 .attrs = pma_attrs_ext
627};
628
629static struct attribute_group pma_group_noietf = {
630 .name = "counters",
631 .attrs = pma_attrs_noietf
632};
633
Linus Torvalds1da177e2005-04-16 15:20:36 -0700634static void ib_port_release(struct kobject *kobj)
635{
636 struct ib_port *p = container_of(kobj, struct ib_port, kobj);
637 struct attribute *a;
638 int i;
639
Haggai Erancad6d022014-05-18 11:12:25 +0300640 if (p->gid_group.attrs) {
641 for (i = 0; (a = p->gid_group.attrs[i]); ++i)
642 kfree(a);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700643
Haggai Erancad6d022014-05-18 11:12:25 +0300644 kfree(p->gid_group.attrs);
645 }
Dmitry Torokhovd48593b2005-04-29 00:58:46 -0500646
Haggai Erancad6d022014-05-18 11:12:25 +0300647 if (p->pkey_group.attrs) {
648 for (i = 0; (a = p->pkey_group.attrs[i]); ++i)
649 kfree(a);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700650
Haggai Erancad6d022014-05-18 11:12:25 +0300651 kfree(p->pkey_group.attrs);
652 }
Dmitry Torokhovd48593b2005-04-29 00:58:46 -0500653
Linus Torvalds1da177e2005-04-16 15:20:36 -0700654 kfree(p);
655}
656
Matan Barak470be512015-12-23 14:56:49 +0200657static void ib_port_gid_attr_release(struct kobject *kobj)
658{
659 struct gid_attr_group *g = container_of(kobj, struct gid_attr_group,
660 kobj);
661 struct attribute *a;
662 int i;
663
664 if (g->ndev.attrs) {
665 for (i = 0; (a = g->ndev.attrs[i]); ++i)
666 kfree(a);
667
668 kfree(g->ndev.attrs);
669 }
670
671 if (g->type.attrs) {
672 for (i = 0; (a = g->type.attrs[i]); ++i)
673 kfree(a);
674
675 kfree(g->type.attrs);
676 }
677
678 kfree(g);
679}
680
Linus Torvalds1da177e2005-04-16 15:20:36 -0700681static struct kobj_type port_type = {
682 .release = ib_port_release,
683 .sysfs_ops = &port_sysfs_ops,
684 .default_attrs = port_default_attrs
685};
686
Matan Barak470be512015-12-23 14:56:49 +0200687static struct kobj_type gid_attr_type = {
688 .sysfs_ops = &gid_attr_sysfs_ops,
689 .release = ib_port_gid_attr_release
690};
691
Dmitry Torokhovd48593b2005-04-29 00:58:46 -0500692static struct attribute **
693alloc_group_attrs(ssize_t (*show)(struct ib_port *,
694 struct port_attribute *, char *buf),
695 int len)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700696{
Dmitry Torokhovd48593b2005-04-29 00:58:46 -0500697 struct attribute **tab_attr;
698 struct port_table_attribute *element;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700699 int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700700
Dmitry Torokhovd48593b2005-04-29 00:58:46 -0500701 tab_attr = kcalloc(1 + len, sizeof(struct attribute *), GFP_KERNEL);
702 if (!tab_attr)
703 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700704
Dmitry Torokhovd48593b2005-04-29 00:58:46 -0500705 for (i = 0; i < len; i++) {
Pekka Enberg82ca76b2005-09-06 15:18:35 -0700706 element = kzalloc(sizeof(struct port_table_attribute),
Dmitry Torokhovd48593b2005-04-29 00:58:46 -0500707 GFP_KERNEL);
708 if (!element)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700709 goto err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700710
Dmitry Torokhovd48593b2005-04-29 00:58:46 -0500711 if (snprintf(element->name, sizeof(element->name),
Roland Dreier048975a2006-03-20 10:08:25 -0800712 "%d", i) >= sizeof(element->name)) {
713 kfree(element);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700714 goto err;
Roland Dreier048975a2006-03-20 10:08:25 -0800715 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700716
Dmitry Torokhovd48593b2005-04-29 00:58:46 -0500717 element->attr.attr.name = element->name;
718 element->attr.attr.mode = S_IRUGO;
Dmitry Torokhovd48593b2005-04-29 00:58:46 -0500719 element->attr.show = show;
720 element->index = i;
Greg Kroah-Hartman21e3bde2010-03-15 14:01:25 -0700721 sysfs_attr_init(&element->attr.attr);
Dmitry Torokhovd48593b2005-04-29 00:58:46 -0500722
723 tab_attr[i] = &element->attr.attr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700724 }
725
Dmitry Torokhovd48593b2005-04-29 00:58:46 -0500726 return tab_attr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700727
728err:
Dmitry Torokhovd48593b2005-04-29 00:58:46 -0500729 while (--i >= 0)
730 kfree(tab_attr[i]);
731 kfree(tab_attr);
732 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700733}
734
Christoph Lameter145d9c52015-12-21 08:20:29 -0600735/*
736 * Figure out which counter table to use depending on
737 * the device capabilities.
738 */
Hal Rosenstock6e2a51a2015-12-29 05:43:43 -0500739static struct attribute_group *get_counter_table(struct ib_device *dev,
740 int port_num)
Christoph Lameter145d9c52015-12-21 08:20:29 -0600741{
742 struct ib_class_port_info cpi;
743
Hal Rosenstock6e2a51a2015-12-29 05:43:43 -0500744 if (get_perf_mad(dev, port_num, IB_PMA_CLASS_PORT_INFO,
Christoph Lameter145d9c52015-12-21 08:20:29 -0600745 &cpi, 40, sizeof(cpi)) >= 0) {
Eran Ben Elishaee50aea2016-02-11 10:24:42 +0200746 if (cpi.capability_mask & IB_PMA_CLASS_CAP_EXT_WIDTH)
Christoph Lameter145d9c52015-12-21 08:20:29 -0600747 /* We have extended counters */
748 return &pma_group_ext;
749
Eran Ben Elishaee50aea2016-02-11 10:24:42 +0200750 if (cpi.capability_mask & IB_PMA_CLASS_CAP_EXT_WIDTH_NOIETF)
Christoph Lameter145d9c52015-12-21 08:20:29 -0600751 /* But not the IETF ones */
752 return &pma_group_noietf;
753 }
754
755 /* Fall back to normal counters */
756 return &pma_group;
757}
758
Christoph Lameterb40f4752016-05-16 12:49:33 -0500759static int update_hw_stats(struct ib_device *dev, struct rdma_hw_stats *stats,
760 u8 port_num, int index)
761{
762 int ret;
763
764 if (time_is_after_eq_jiffies(stats->timestamp + stats->lifespan))
765 return 0;
766 ret = dev->get_hw_stats(dev, stats, port_num, index);
767 if (ret < 0)
768 return ret;
769 if (ret == stats->num_counters)
770 stats->timestamp = jiffies;
771
772 return 0;
773}
774
775static ssize_t print_hw_stat(struct rdma_hw_stats *stats, int index, char *buf)
776{
777 return sprintf(buf, "%llu\n", stats->value[index]);
778}
779
780static ssize_t show_hw_stats(struct kobject *kobj, struct attribute *attr,
781 char *buf)
782{
783 struct ib_device *dev;
784 struct ib_port *port;
785 struct hw_stats_attribute *hsa;
786 struct rdma_hw_stats *stats;
787 int ret;
788
789 hsa = container_of(attr, struct hw_stats_attribute, attr);
790 if (!hsa->port_num) {
791 dev = container_of((struct device *)kobj,
792 struct ib_device, dev);
793 stats = dev->hw_stats;
794 } else {
795 port = container_of(kobj, struct ib_port, kobj);
796 dev = port->ibdev;
797 stats = port->hw_stats;
798 }
799 ret = update_hw_stats(dev, stats, hsa->port_num, hsa->index);
800 if (ret)
801 return ret;
802 return print_hw_stat(stats, hsa->index, buf);
803}
804
805static ssize_t show_stats_lifespan(struct kobject *kobj,
806 struct attribute *attr,
807 char *buf)
808{
809 struct hw_stats_attribute *hsa;
810 int msecs;
811
812 hsa = container_of(attr, struct hw_stats_attribute, attr);
813 if (!hsa->port_num) {
814 struct ib_device *dev = container_of((struct device *)kobj,
815 struct ib_device, dev);
816 msecs = jiffies_to_msecs(dev->hw_stats->lifespan);
817 } else {
818 struct ib_port *p = container_of(kobj, struct ib_port, kobj);
819 msecs = jiffies_to_msecs(p->hw_stats->lifespan);
820 }
821 return sprintf(buf, "%d\n", msecs);
822}
823
824static ssize_t set_stats_lifespan(struct kobject *kobj,
825 struct attribute *attr,
826 const char *buf, size_t count)
827{
828 struct hw_stats_attribute *hsa;
829 int msecs;
830 int jiffies;
831 int ret;
832
833 ret = kstrtoint(buf, 10, &msecs);
834 if (ret)
835 return ret;
836 if (msecs < 0 || msecs > 10000)
837 return -EINVAL;
838 jiffies = msecs_to_jiffies(msecs);
839 hsa = container_of(attr, struct hw_stats_attribute, attr);
840 if (!hsa->port_num) {
841 struct ib_device *dev = container_of((struct device *)kobj,
842 struct ib_device, dev);
843 dev->hw_stats->lifespan = jiffies;
844 } else {
845 struct ib_port *p = container_of(kobj, struct ib_port, kobj);
846 p->hw_stats->lifespan = jiffies;
847 }
848 return count;
849}
850
851static void free_hsag(struct kobject *kobj, struct attribute_group *attr_group)
852{
853 struct attribute **attr;
854
855 sysfs_remove_group(kobj, attr_group);
856
857 for (attr = attr_group->attrs; *attr; attr++)
858 kfree(*attr);
859 kfree(attr_group);
860}
861
862static struct attribute *alloc_hsa(int index, u8 port_num, const char *name)
863{
864 struct hw_stats_attribute *hsa;
865
866 hsa = kmalloc(sizeof(*hsa), GFP_KERNEL);
867 if (!hsa)
868 return NULL;
869
870 hsa->attr.name = (char *)name;
871 hsa->attr.mode = S_IRUGO;
872 hsa->show = show_hw_stats;
873 hsa->store = NULL;
874 hsa->index = index;
875 hsa->port_num = port_num;
876
877 return &hsa->attr;
878}
879
880static struct attribute *alloc_hsa_lifespan(char *name, u8 port_num)
881{
882 struct hw_stats_attribute *hsa;
883
884 hsa = kmalloc(sizeof(*hsa), GFP_KERNEL);
885 if (!hsa)
886 return NULL;
887
888 hsa->attr.name = name;
889 hsa->attr.mode = S_IWUSR | S_IRUGO;
890 hsa->show = show_stats_lifespan;
891 hsa->store = set_stats_lifespan;
892 hsa->index = 0;
893 hsa->port_num = port_num;
894
895 return &hsa->attr;
896}
897
898static void setup_hw_stats(struct ib_device *device, struct ib_port *port,
899 u8 port_num)
900{
Doug Ledford495fbae2016-06-07 07:43:46 -0400901 struct attribute_group *hsag;
Christoph Lameterb40f4752016-05-16 12:49:33 -0500902 struct rdma_hw_stats *stats;
Doug Ledford495fbae2016-06-07 07:43:46 -0400903 int i, ret;
Christoph Lameterb40f4752016-05-16 12:49:33 -0500904
905 stats = device->alloc_hw_stats(device, port_num);
906
907 if (!stats)
908 return;
909
910 if (!stats->names || stats->num_counters <= 0)
Colin Ian King0147ebc2016-06-01 19:06:36 +0100911 goto err_free_stats;
Christoph Lameterb40f4752016-05-16 12:49:33 -0500912
Doug Ledford41aaa992016-06-06 19:52:55 -0400913 /*
914 * Two extra attribue elements here, one for the lifespan entry and
915 * one to NULL terminate the list for the sysfs core code
916 */
Christoph Lameterb40f4752016-05-16 12:49:33 -0500917 hsag = kzalloc(sizeof(*hsag) +
Doug Ledford41aaa992016-06-06 19:52:55 -0400918 sizeof(void *) * (stats->num_counters + 2),
Christoph Lameterb40f4752016-05-16 12:49:33 -0500919 GFP_KERNEL);
920 if (!hsag)
Colin Ian King0147ebc2016-06-01 19:06:36 +0100921 goto err_free_stats;
Christoph Lameterb40f4752016-05-16 12:49:33 -0500922
923 ret = device->get_hw_stats(device, stats, port_num,
924 stats->num_counters);
925 if (ret != stats->num_counters)
Doug Ledford495fbae2016-06-07 07:43:46 -0400926 goto err_free_hsag;
Christoph Lameterb40f4752016-05-16 12:49:33 -0500927
928 stats->timestamp = jiffies;
929
930 hsag->name = "hw_counters";
931 hsag->attrs = (void *)hsag + sizeof(*hsag);
932
933 for (i = 0; i < stats->num_counters; i++) {
934 hsag->attrs[i] = alloc_hsa(i, port_num, stats->names[i]);
935 if (!hsag->attrs[i])
936 goto err;
Mark Bloch8aec0132016-06-04 15:15:24 +0300937 sysfs_attr_init(hsag->attrs[i]);
Christoph Lameterb40f4752016-05-16 12:49:33 -0500938 }
939
940 /* treat an error here as non-fatal */
941 hsag->attrs[i] = alloc_hsa_lifespan("lifespan", port_num);
Mark Bloch8aec0132016-06-04 15:15:24 +0300942 if (hsag->attrs[i])
943 sysfs_attr_init(hsag->attrs[i]);
Christoph Lameterb40f4752016-05-16 12:49:33 -0500944
945 if (port) {
946 struct kobject *kobj = &port->kobj;
947 ret = sysfs_create_group(kobj, hsag);
948 if (ret)
949 goto err;
950 port->hw_stats_ag = hsag;
951 port->hw_stats = stats;
952 } else {
953 struct kobject *kobj = &device->dev.kobj;
954 ret = sysfs_create_group(kobj, hsag);
955 if (ret)
956 goto err;
957 device->hw_stats_ag = hsag;
958 device->hw_stats = stats;
959 }
960
961 return;
962
963err:
Christoph Lameterb40f4752016-05-16 12:49:33 -0500964 for (; i >= 0; i--)
965 kfree(hsag->attrs[i]);
Doug Ledford495fbae2016-06-07 07:43:46 -0400966err_free_hsag:
Christoph Lameterb40f4752016-05-16 12:49:33 -0500967 kfree(hsag);
Colin Ian King0147ebc2016-06-01 19:06:36 +0100968err_free_stats:
969 kfree(stats);
Christoph Lameterb40f4752016-05-16 12:49:33 -0500970 return;
971}
972
Ralph Campbell9a6edb62010-05-06 17:03:25 -0700973static int add_port(struct ib_device *device, int port_num,
974 int (*port_callback)(struct ib_device *,
975 u8, struct kobject *))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700976{
977 struct ib_port *p;
978 struct ib_port_attr attr;
979 int i;
980 int ret;
981
982 ret = ib_query_port(device, port_num, &attr);
983 if (ret)
984 return ret;
985
Roland Dreierde6eb662005-11-02 07:23:14 -0800986 p = kzalloc(sizeof *p, GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700987 if (!p)
988 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700989
990 p->ibdev = device;
991 p->port_num = port_num;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700992
Greg Kroah-Hartman35be0682007-12-17 15:54:39 -0400993 ret = kobject_init_and_add(&p->kobj, &port_type,
Haggai Eran373c0ea2014-05-18 11:12:24 +0300994 device->ports_parent,
Greg Kroah-Hartman35be0682007-12-17 15:54:39 -0400995 "%d", port_num);
Haggai Erancad6d022014-05-18 11:12:25 +0300996 if (ret) {
997 kfree(p);
998 return ret;
999 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001000
Matan Barak470be512015-12-23 14:56:49 +02001001 p->gid_attr_group = kzalloc(sizeof(*p->gid_attr_group), GFP_KERNEL);
1002 if (!p->gid_attr_group) {
1003 ret = -ENOMEM;
1004 goto err_put;
1005 }
1006
1007 p->gid_attr_group->port = p;
1008 ret = kobject_init_and_add(&p->gid_attr_group->kobj, &gid_attr_type,
1009 &p->kobj, "gid_attrs");
1010 if (ret) {
1011 kfree(p->gid_attr_group);
1012 goto err_put;
1013 }
1014
Hal Rosenstock6e2a51a2015-12-29 05:43:43 -05001015 p->pma_table = get_counter_table(device, port_num);
Christoph Lameter145d9c52015-12-21 08:20:29 -06001016 ret = sysfs_create_group(&p->kobj, p->pma_table);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001017 if (ret)
Matan Barak470be512015-12-23 14:56:49 +02001018 goto err_put_gid_attrs;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001019
Linus Torvalds1da177e2005-04-16 15:20:36 -07001020 p->gid_group.name = "gids";
Dmitry Torokhovd48593b2005-04-29 00:58:46 -05001021 p->gid_group.attrs = alloc_group_attrs(show_port_gid, attr.gid_tbl_len);
Wei Yongjun80b15042013-06-21 11:24:27 +08001022 if (!p->gid_group.attrs) {
1023 ret = -ENOMEM;
Dmitry Torokhovd48593b2005-04-29 00:58:46 -05001024 goto err_remove_pma;
Wei Yongjun80b15042013-06-21 11:24:27 +08001025 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001026
1027 ret = sysfs_create_group(&p->kobj, &p->gid_group);
1028 if (ret)
1029 goto err_free_gid;
1030
Matan Barak470be512015-12-23 14:56:49 +02001031 p->gid_attr_group->ndev.name = "ndevs";
1032 p->gid_attr_group->ndev.attrs = alloc_group_attrs(show_port_gid_attr_ndev,
1033 attr.gid_tbl_len);
1034 if (!p->gid_attr_group->ndev.attrs) {
1035 ret = -ENOMEM;
1036 goto err_remove_gid;
1037 }
1038
1039 ret = sysfs_create_group(&p->gid_attr_group->kobj,
1040 &p->gid_attr_group->ndev);
1041 if (ret)
1042 goto err_free_gid_ndev;
1043
1044 p->gid_attr_group->type.name = "types";
1045 p->gid_attr_group->type.attrs = alloc_group_attrs(show_port_gid_attr_gid_type,
1046 attr.gid_tbl_len);
1047 if (!p->gid_attr_group->type.attrs) {
1048 ret = -ENOMEM;
1049 goto err_remove_gid_ndev;
1050 }
1051
1052 ret = sysfs_create_group(&p->gid_attr_group->kobj,
1053 &p->gid_attr_group->type);
1054 if (ret)
1055 goto err_free_gid_type;
1056
Linus Torvalds1da177e2005-04-16 15:20:36 -07001057 p->pkey_group.name = "pkeys";
Dmitry Torokhovd48593b2005-04-29 00:58:46 -05001058 p->pkey_group.attrs = alloc_group_attrs(show_port_pkey,
1059 attr.pkey_tbl_len);
Wei Yongjun80b15042013-06-21 11:24:27 +08001060 if (!p->pkey_group.attrs) {
1061 ret = -ENOMEM;
Matan Barak470be512015-12-23 14:56:49 +02001062 goto err_remove_gid_type;
Wei Yongjun80b15042013-06-21 11:24:27 +08001063 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001064
1065 ret = sysfs_create_group(&p->kobj, &p->pkey_group);
1066 if (ret)
1067 goto err_free_pkey;
1068
Ralph Campbell9a6edb62010-05-06 17:03:25 -07001069 if (port_callback) {
1070 ret = port_callback(device, port_num, &p->kobj);
1071 if (ret)
1072 goto err_remove_pkey;
1073 }
1074
Christoph Lameterb40f4752016-05-16 12:49:33 -05001075 /*
1076 * If port == 0, it means we have only one port and the parent
1077 * device, not this port device, should be the holder of the
1078 * hw_counters
1079 */
1080 if (device->alloc_hw_stats && port_num)
1081 setup_hw_stats(device, p, port_num);
1082
Linus Torvalds1da177e2005-04-16 15:20:36 -07001083 list_add_tail(&p->kobj.entry, &device->port_list);
1084
Greg Kroah-Hartman35be0682007-12-17 15:54:39 -04001085 kobject_uevent(&p->kobj, KOBJ_ADD);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001086 return 0;
1087
Ralph Campbell9a6edb62010-05-06 17:03:25 -07001088err_remove_pkey:
1089 sysfs_remove_group(&p->kobj, &p->pkey_group);
1090
Linus Torvalds1da177e2005-04-16 15:20:36 -07001091err_free_pkey:
Dmitry Torokhovd48593b2005-04-29 00:58:46 -05001092 for (i = 0; i < attr.pkey_tbl_len; ++i)
1093 kfree(p->pkey_group.attrs[i]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001094
Dmitry Torokhovd48593b2005-04-29 00:58:46 -05001095 kfree(p->pkey_group.attrs);
Haggai Erancad6d022014-05-18 11:12:25 +03001096 p->pkey_group.attrs = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001097
Matan Barak470be512015-12-23 14:56:49 +02001098err_remove_gid_type:
1099 sysfs_remove_group(&p->gid_attr_group->kobj,
1100 &p->gid_attr_group->type);
1101
1102err_free_gid_type:
1103 for (i = 0; i < attr.gid_tbl_len; ++i)
1104 kfree(p->gid_attr_group->type.attrs[i]);
1105
1106 kfree(p->gid_attr_group->type.attrs);
1107 p->gid_attr_group->type.attrs = NULL;
1108
1109err_remove_gid_ndev:
1110 sysfs_remove_group(&p->gid_attr_group->kobj,
1111 &p->gid_attr_group->ndev);
1112
1113err_free_gid_ndev:
1114 for (i = 0; i < attr.gid_tbl_len; ++i)
1115 kfree(p->gid_attr_group->ndev.attrs[i]);
1116
1117 kfree(p->gid_attr_group->ndev.attrs);
1118 p->gid_attr_group->ndev.attrs = NULL;
1119
Linus Torvalds1da177e2005-04-16 15:20:36 -07001120err_remove_gid:
1121 sysfs_remove_group(&p->kobj, &p->gid_group);
1122
1123err_free_gid:
Dmitry Torokhovd48593b2005-04-29 00:58:46 -05001124 for (i = 0; i < attr.gid_tbl_len; ++i)
1125 kfree(p->gid_group.attrs[i]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001126
Dmitry Torokhovd48593b2005-04-29 00:58:46 -05001127 kfree(p->gid_group.attrs);
Haggai Erancad6d022014-05-18 11:12:25 +03001128 p->gid_group.attrs = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001129
1130err_remove_pma:
Christoph Lameter145d9c52015-12-21 08:20:29 -06001131 sysfs_remove_group(&p->kobj, p->pma_table);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001132
Matan Barak470be512015-12-23 14:56:49 +02001133err_put_gid_attrs:
1134 kobject_put(&p->gid_attr_group->kobj);
1135
Linus Torvalds1da177e2005-04-16 15:20:36 -07001136err_put:
Haggai Erancad6d022014-05-18 11:12:25 +03001137 kobject_put(&p->kobj);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001138 return ret;
1139}
1140
Tony Jonesf4e91eb2008-02-22 00:13:36 +01001141static ssize_t show_node_type(struct device *device,
1142 struct device_attribute *attr, char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001143{
Tony Jonesf4e91eb2008-02-22 00:13:36 +01001144 struct ib_device *dev = container_of(device, struct ib_device, dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001145
1146 switch (dev->node_type) {
Tom Tucker07ebafb2006-08-03 16:02:42 -05001147 case RDMA_NODE_IB_CA: return sprintf(buf, "%d: CA\n", dev->node_type);
1148 case RDMA_NODE_RNIC: return sprintf(buf, "%d: RNIC\n", dev->node_type);
Upinder Malhi \(umalhi\)180771a2013-09-10 03:36:59 +00001149 case RDMA_NODE_USNIC: return sprintf(buf, "%d: usNIC\n", dev->node_type);
Upinder Malhi5db57652014-01-15 17:02:36 -08001150 case RDMA_NODE_USNIC_UDP: return sprintf(buf, "%d: usNIC UDP\n", dev->node_type);
Tom Tucker07ebafb2006-08-03 16:02:42 -05001151 case RDMA_NODE_IB_SWITCH: return sprintf(buf, "%d: switch\n", dev->node_type);
1152 case RDMA_NODE_IB_ROUTER: return sprintf(buf, "%d: router\n", dev->node_type);
1153 default: return sprintf(buf, "%d: <unknown>\n", dev->node_type);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001154 }
1155}
1156
Tony Jonesf4e91eb2008-02-22 00:13:36 +01001157static ssize_t show_sys_image_guid(struct device *device,
1158 struct device_attribute *dev_attr, char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001159{
Tony Jonesf4e91eb2008-02-22 00:13:36 +01001160 struct ib_device *dev = container_of(device, struct ib_device, dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001161
1162 return sprintf(buf, "%04x:%04x:%04x:%04x\n",
Or Gerlitz86bee4c2015-12-18 10:59:45 +02001163 be16_to_cpu(((__be16 *) &dev->attrs.sys_image_guid)[0]),
1164 be16_to_cpu(((__be16 *) &dev->attrs.sys_image_guid)[1]),
1165 be16_to_cpu(((__be16 *) &dev->attrs.sys_image_guid)[2]),
1166 be16_to_cpu(((__be16 *) &dev->attrs.sys_image_guid)[3]));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001167}
1168
Tony Jonesf4e91eb2008-02-22 00:13:36 +01001169static ssize_t show_node_guid(struct device *device,
1170 struct device_attribute *attr, char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001171{
Tony Jonesf4e91eb2008-02-22 00:13:36 +01001172 struct ib_device *dev = container_of(device, struct ib_device, dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001173
Linus Torvalds1da177e2005-04-16 15:20:36 -07001174 return sprintf(buf, "%04x:%04x:%04x:%04x\n",
Sean Heftycf311cd2006-01-10 07:39:34 -08001175 be16_to_cpu(((__be16 *) &dev->node_guid)[0]),
1176 be16_to_cpu(((__be16 *) &dev->node_guid)[1]),
1177 be16_to_cpu(((__be16 *) &dev->node_guid)[2]),
1178 be16_to_cpu(((__be16 *) &dev->node_guid)[3]));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001179}
1180
Tony Jonesf4e91eb2008-02-22 00:13:36 +01001181static ssize_t show_node_desc(struct device *device,
1182 struct device_attribute *attr, char *buf)
Roland Dreierc5bcbbb2006-02-02 09:47:14 -08001183{
Tony Jonesf4e91eb2008-02-22 00:13:36 +01001184 struct ib_device *dev = container_of(device, struct ib_device, dev);
Roland Dreierc5bcbbb2006-02-02 09:47:14 -08001185
1186 return sprintf(buf, "%.64s\n", dev->node_desc);
1187}
1188
Tony Jonesf4e91eb2008-02-22 00:13:36 +01001189static ssize_t set_node_desc(struct device *device,
1190 struct device_attribute *attr,
1191 const char *buf, size_t count)
Roland Dreierc5bcbbb2006-02-02 09:47:14 -08001192{
Tony Jonesf4e91eb2008-02-22 00:13:36 +01001193 struct ib_device *dev = container_of(device, struct ib_device, dev);
Roland Dreierc5bcbbb2006-02-02 09:47:14 -08001194 struct ib_device_modify desc = {};
1195 int ret;
1196
1197 if (!dev->modify_device)
1198 return -EIO;
1199
Yuval Shaiabd99fde2016-08-25 10:57:07 -07001200 memcpy(desc.node_desc, buf, min_t(int, count, IB_DEVICE_NODE_DESC_MAX));
Roland Dreierc5bcbbb2006-02-02 09:47:14 -08001201 ret = ib_modify_device(dev, IB_DEVICE_MODIFY_NODE_DESC, &desc);
1202 if (ret)
1203 return ret;
1204
1205 return count;
1206}
1207
Ira Weiny41a6ae12016-06-15 02:22:07 -04001208static ssize_t show_fw_ver(struct device *device, struct device_attribute *attr,
1209 char *buf)
1210{
1211 struct ib_device *dev = container_of(device, struct ib_device, dev);
1212
Leon Romanovsky9abb0d12017-06-27 16:49:53 +03001213 ib_get_device_fw_str(dev, buf);
1214 strlcat(buf, "\n", IB_FW_VERSION_NAME_MAX);
Ira Weiny41a6ae12016-06-15 02:22:07 -04001215 return strlen(buf);
1216}
1217
Tony Jonesf4e91eb2008-02-22 00:13:36 +01001218static DEVICE_ATTR(node_type, S_IRUGO, show_node_type, NULL);
1219static DEVICE_ATTR(sys_image_guid, S_IRUGO, show_sys_image_guid, NULL);
1220static DEVICE_ATTR(node_guid, S_IRUGO, show_node_guid, NULL);
1221static DEVICE_ATTR(node_desc, S_IRUGO | S_IWUSR, show_node_desc, set_node_desc);
Ira Weiny41a6ae12016-06-15 02:22:07 -04001222static DEVICE_ATTR(fw_ver, S_IRUGO, show_fw_ver, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001223
Tony Jonesf4e91eb2008-02-22 00:13:36 +01001224static struct device_attribute *ib_class_attributes[] = {
1225 &dev_attr_node_type,
1226 &dev_attr_sys_image_guid,
1227 &dev_attr_node_guid,
Ira Weiny41a6ae12016-06-15 02:22:07 -04001228 &dev_attr_node_desc,
1229 &dev_attr_fw_ver,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001230};
1231
Haggai Eran584482a2014-05-18 11:12:26 +03001232static void free_port_list_attributes(struct ib_device *device)
1233{
1234 struct kobject *p, *t;
1235
1236 list_for_each_entry_safe(p, t, &device->port_list, entry) {
1237 struct ib_port *port = container_of(p, struct ib_port, kobj);
1238 list_del(&p->entry);
Christoph Lameterb40f4752016-05-16 12:49:33 -05001239 if (port->hw_stats) {
1240 kfree(port->hw_stats);
1241 free_hsag(&port->kobj, port->hw_stats_ag);
1242 }
Christoph Lameter145d9c52015-12-21 08:20:29 -06001243 sysfs_remove_group(p, port->pma_table);
Haggai Eran584482a2014-05-18 11:12:26 +03001244 sysfs_remove_group(p, &port->pkey_group);
1245 sysfs_remove_group(p, &port->gid_group);
Matan Barak470be512015-12-23 14:56:49 +02001246 sysfs_remove_group(&port->gid_attr_group->kobj,
1247 &port->gid_attr_group->ndev);
1248 sysfs_remove_group(&port->gid_attr_group->kobj,
1249 &port->gid_attr_group->type);
1250 kobject_put(&port->gid_attr_group->kobj);
Haggai Eran584482a2014-05-18 11:12:26 +03001251 kobject_put(p);
1252 }
1253
1254 kobject_put(device->ports_parent);
1255}
1256
Ralph Campbell9a6edb62010-05-06 17:03:25 -07001257int ib_device_register_sysfs(struct ib_device *device,
1258 int (*port_callback)(struct ib_device *,
1259 u8, struct kobject *))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001260{
Tony Jonesf4e91eb2008-02-22 00:13:36 +01001261 struct device *class_dev = &device->dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001262 int ret;
1263 int i;
1264
Bart Van Assche97a9ea82017-01-20 13:04:13 -08001265 WARN_ON_ONCE(!device->dev.parent);
Jason Gunthorpe55aeed02015-08-04 15:23:34 -06001266 ret = dev_set_name(class_dev, "%s", device->name);
1267 if (ret)
1268 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001269
Jason Gunthorpe55aeed02015-08-04 15:23:34 -06001270 ret = device_add(class_dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001271 if (ret)
1272 goto err;
1273
1274 for (i = 0; i < ARRAY_SIZE(ib_class_attributes); ++i) {
Tony Jonesf4e91eb2008-02-22 00:13:36 +01001275 ret = device_create_file(class_dev, ib_class_attributes[i]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001276 if (ret)
1277 goto err_unregister;
1278 }
1279
Greg Kroah-Hartman35be0682007-12-17 15:54:39 -04001280 device->ports_parent = kobject_create_and_add("ports",
Haggai Eran373c0ea2014-05-18 11:12:24 +03001281 &class_dev->kobj);
Li Zefanc7482b82008-02-15 10:24:49 +08001282 if (!device->ports_parent) {
1283 ret = -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001284 goto err_put;
Li Zefanc7482b82008-02-15 10:24:49 +08001285 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001286
Hal Rosenstock41390322015-06-29 09:57:00 -04001287 if (rdma_cap_ib_switch(device)) {
Ralph Campbell9a6edb62010-05-06 17:03:25 -07001288 ret = add_port(device, 0, port_callback);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001289 if (ret)
1290 goto err_put;
1291 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001292 for (i = 1; i <= device->phys_port_cnt; ++i) {
Ralph Campbell9a6edb62010-05-06 17:03:25 -07001293 ret = add_port(device, i, port_callback);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001294 if (ret)
1295 goto err_put;
1296 }
1297 }
1298
Christoph Lameterb40f4752016-05-16 12:49:33 -05001299 if (device->alloc_hw_stats)
1300 setup_hw_stats(device, NULL, 0);
Steve Wise7f624d02008-07-14 23:48:48 -07001301
Linus Torvalds1da177e2005-04-16 15:20:36 -07001302 return 0;
1303
1304err_put:
Haggai Eran584482a2014-05-18 11:12:26 +03001305 free_port_list_attributes(device);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001306
Linus Torvalds1da177e2005-04-16 15:20:36 -07001307err_unregister:
Jack Morgensteinb312be32017-03-19 10:55:57 +02001308 device_del(class_dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001309
1310err:
1311 return ret;
1312}
1313
1314void ib_device_unregister_sysfs(struct ib_device *device)
1315{
Haggai Eran584482a2014-05-18 11:12:26 +03001316 int i;
Roland Dreier9206dff2009-02-25 13:27:46 -08001317
Christoph Lameterb40f4752016-05-16 12:49:33 -05001318 /* Hold kobject until ib_dealloc_device() */
1319 kobject_get(&device->dev.kobj);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001320
Haggai Eran584482a2014-05-18 11:12:26 +03001321 free_port_list_attributes(device);
1322
Christoph Lameterb40f4752016-05-16 12:49:33 -05001323 if (device->hw_stats) {
1324 kfree(device->hw_stats);
1325 free_hsag(&device->dev.kobj, device->hw_stats_ag);
1326 }
1327
Haggai Eran584482a2014-05-18 11:12:26 +03001328 for (i = 0; i < ARRAY_SIZE(ib_class_attributes); ++i)
1329 device_remove_file(&device->dev, ib_class_attributes[i]);
1330
Tony Jonesf4e91eb2008-02-22 00:13:36 +01001331 device_unregister(&device->dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001332}