xref: /openbmc/linux/drivers/infiniband/core/sysfs.c (revision b830f94f)
1 /*
2  * Copyright (c) 2004, 2005 Topspin Communications.  All rights reserved.
3  * Copyright (c) 2005 Mellanox Technologies Ltd.  All rights reserved.
4  * Copyright (c) 2005 Sun Microsystems, Inc. All rights reserved.
5  *
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.
33  */
34 
35 #include "core_priv.h"
36 
37 #include <linux/slab.h>
38 #include <linux/stat.h>
39 #include <linux/string.h>
40 #include <linux/netdevice.h>
41 #include <linux/ethtool.h>
42 
43 #include <rdma/ib_mad.h>
44 #include <rdma/ib_pma.h>
45 #include <rdma/ib_cache.h>
46 #include <rdma/rdma_counter.h>
47 
48 struct ib_port;
49 
50 struct gid_attr_group {
51 	struct ib_port		*port;
52 	struct kobject		kobj;
53 	struct attribute_group	ndev;
54 	struct attribute_group	type;
55 };
56 struct ib_port {
57 	struct kobject         kobj;
58 	struct ib_device      *ibdev;
59 	struct gid_attr_group *gid_attr_group;
60 	struct attribute_group gid_group;
61 	struct attribute_group pkey_group;
62 	struct attribute_group *pma_table;
63 	struct attribute_group *hw_stats_ag;
64 	struct rdma_hw_stats   *hw_stats;
65 	u8                     port_num;
66 };
67 
68 struct port_attribute {
69 	struct attribute attr;
70 	ssize_t (*show)(struct ib_port *, struct port_attribute *, char *buf);
71 	ssize_t (*store)(struct ib_port *, struct port_attribute *,
72 			 const char *buf, size_t count);
73 };
74 
75 #define PORT_ATTR(_name, _mode, _show, _store) \
76 struct port_attribute port_attr_##_name = __ATTR(_name, _mode, _show, _store)
77 
78 #define PORT_ATTR_RO(_name) \
79 struct port_attribute port_attr_##_name = __ATTR_RO(_name)
80 
81 struct port_table_attribute {
82 	struct port_attribute	attr;
83 	char			name[8];
84 	int			index;
85 	__be16			attr_id;
86 };
87 
88 struct hw_stats_attribute {
89 	struct attribute	attr;
90 	ssize_t			(*show)(struct kobject *kobj,
91 					struct attribute *attr, char *buf);
92 	ssize_t			(*store)(struct kobject *kobj,
93 					 struct attribute *attr,
94 					 const char *buf,
95 					 size_t count);
96 	int			index;
97 	u8			port_num;
98 };
99 
100 static ssize_t port_attr_show(struct kobject *kobj,
101 			      struct attribute *attr, char *buf)
102 {
103 	struct port_attribute *port_attr =
104 		container_of(attr, struct port_attribute, attr);
105 	struct ib_port *p = container_of(kobj, struct ib_port, kobj);
106 
107 	if (!port_attr->show)
108 		return -EIO;
109 
110 	return port_attr->show(p, port_attr, buf);
111 }
112 
113 static ssize_t port_attr_store(struct kobject *kobj,
114 			       struct attribute *attr,
115 			       const char *buf, size_t count)
116 {
117 	struct port_attribute *port_attr =
118 		container_of(attr, struct port_attribute, attr);
119 	struct ib_port *p = container_of(kobj, struct ib_port, kobj);
120 
121 	if (!port_attr->store)
122 		return -EIO;
123 	return port_attr->store(p, port_attr, buf, count);
124 }
125 
126 static const struct sysfs_ops port_sysfs_ops = {
127 	.show	= port_attr_show,
128 	.store	= port_attr_store
129 };
130 
131 static ssize_t gid_attr_show(struct kobject *kobj,
132 			     struct attribute *attr, char *buf)
133 {
134 	struct port_attribute *port_attr =
135 		container_of(attr, struct port_attribute, attr);
136 	struct ib_port *p = container_of(kobj, struct gid_attr_group,
137 					 kobj)->port;
138 
139 	if (!port_attr->show)
140 		return -EIO;
141 
142 	return port_attr->show(p, port_attr, buf);
143 }
144 
145 static const struct sysfs_ops gid_attr_sysfs_ops = {
146 	.show = gid_attr_show
147 };
148 
149 static ssize_t state_show(struct ib_port *p, struct port_attribute *unused,
150 			  char *buf)
151 {
152 	struct ib_port_attr attr;
153 	ssize_t ret;
154 
155 	static const char *state_name[] = {
156 		[IB_PORT_NOP]		= "NOP",
157 		[IB_PORT_DOWN]		= "DOWN",
158 		[IB_PORT_INIT]		= "INIT",
159 		[IB_PORT_ARMED]		= "ARMED",
160 		[IB_PORT_ACTIVE]	= "ACTIVE",
161 		[IB_PORT_ACTIVE_DEFER]	= "ACTIVE_DEFER"
162 	};
163 
164 	ret = ib_query_port(p->ibdev, p->port_num, &attr);
165 	if (ret)
166 		return ret;
167 
168 	return sprintf(buf, "%d: %s\n", attr.state,
169 		       attr.state >= 0 && attr.state < ARRAY_SIZE(state_name) ?
170 		       state_name[attr.state] : "UNKNOWN");
171 }
172 
173 static ssize_t lid_show(struct ib_port *p, struct port_attribute *unused,
174 			char *buf)
175 {
176 	struct ib_port_attr attr;
177 	ssize_t ret;
178 
179 	ret = ib_query_port(p->ibdev, p->port_num, &attr);
180 	if (ret)
181 		return ret;
182 
183 	return sprintf(buf, "0x%x\n", attr.lid);
184 }
185 
186 static ssize_t lid_mask_count_show(struct ib_port *p,
187 				   struct port_attribute *unused,
188 				   char *buf)
189 {
190 	struct ib_port_attr attr;
191 	ssize_t ret;
192 
193 	ret = ib_query_port(p->ibdev, p->port_num, &attr);
194 	if (ret)
195 		return ret;
196 
197 	return sprintf(buf, "%d\n", attr.lmc);
198 }
199 
200 static ssize_t sm_lid_show(struct ib_port *p, struct port_attribute *unused,
201 			   char *buf)
202 {
203 	struct ib_port_attr attr;
204 	ssize_t ret;
205 
206 	ret = ib_query_port(p->ibdev, p->port_num, &attr);
207 	if (ret)
208 		return ret;
209 
210 	return sprintf(buf, "0x%x\n", attr.sm_lid);
211 }
212 
213 static ssize_t sm_sl_show(struct ib_port *p, struct port_attribute *unused,
214 			  char *buf)
215 {
216 	struct ib_port_attr attr;
217 	ssize_t ret;
218 
219 	ret = ib_query_port(p->ibdev, p->port_num, &attr);
220 	if (ret)
221 		return ret;
222 
223 	return sprintf(buf, "%d\n", attr.sm_sl);
224 }
225 
226 static ssize_t cap_mask_show(struct ib_port *p, struct port_attribute *unused,
227 			     char *buf)
228 {
229 	struct ib_port_attr attr;
230 	ssize_t ret;
231 
232 	ret = ib_query_port(p->ibdev, p->port_num, &attr);
233 	if (ret)
234 		return ret;
235 
236 	return sprintf(buf, "0x%08x\n", attr.port_cap_flags);
237 }
238 
239 static ssize_t rate_show(struct ib_port *p, struct port_attribute *unused,
240 			 char *buf)
241 {
242 	struct ib_port_attr attr;
243 	char *speed = "";
244 	int rate;		/* in deci-Gb/sec */
245 	ssize_t ret;
246 
247 	ret = ib_query_port(p->ibdev, p->port_num, &attr);
248 	if (ret)
249 		return ret;
250 
251 	switch (attr.active_speed) {
252 	case IB_SPEED_DDR:
253 		speed = " DDR";
254 		rate = 50;
255 		break;
256 	case IB_SPEED_QDR:
257 		speed = " QDR";
258 		rate = 100;
259 		break;
260 	case IB_SPEED_FDR10:
261 		speed = " FDR10";
262 		rate = 100;
263 		break;
264 	case IB_SPEED_FDR:
265 		speed = " FDR";
266 		rate = 140;
267 		break;
268 	case IB_SPEED_EDR:
269 		speed = " EDR";
270 		rate = 250;
271 		break;
272 	case IB_SPEED_HDR:
273 		speed = " HDR";
274 		rate = 500;
275 		break;
276 	case IB_SPEED_SDR:
277 	default:		/* default to SDR for invalid rates */
278 		speed = " SDR";
279 		rate = 25;
280 		break;
281 	}
282 
283 	rate *= ib_width_enum_to_int(attr.active_width);
284 	if (rate < 0)
285 		return -EINVAL;
286 
287 	return sprintf(buf, "%d%s Gb/sec (%dX%s)\n",
288 		       rate / 10, rate % 10 ? ".5" : "",
289 		       ib_width_enum_to_int(attr.active_width), speed);
290 }
291 
292 static ssize_t phys_state_show(struct ib_port *p, struct port_attribute *unused,
293 			       char *buf)
294 {
295 	struct ib_port_attr attr;
296 
297 	ssize_t ret;
298 
299 	ret = ib_query_port(p->ibdev, p->port_num, &attr);
300 	if (ret)
301 		return ret;
302 
303 	switch (attr.phys_state) {
304 	case 1:  return sprintf(buf, "1: Sleep\n");
305 	case 2:  return sprintf(buf, "2: Polling\n");
306 	case 3:  return sprintf(buf, "3: Disabled\n");
307 	case 4:  return sprintf(buf, "4: PortConfigurationTraining\n");
308 	case 5:  return sprintf(buf, "5: LinkUp\n");
309 	case 6:  return sprintf(buf, "6: LinkErrorRecovery\n");
310 	case 7:  return sprintf(buf, "7: Phy Test\n");
311 	default: return sprintf(buf, "%d: <unknown>\n", attr.phys_state);
312 	}
313 }
314 
315 static ssize_t link_layer_show(struct ib_port *p, struct port_attribute *unused,
316 			       char *buf)
317 {
318 	switch (rdma_port_get_link_layer(p->ibdev, p->port_num)) {
319 	case IB_LINK_LAYER_INFINIBAND:
320 		return sprintf(buf, "%s\n", "InfiniBand");
321 	case IB_LINK_LAYER_ETHERNET:
322 		return sprintf(buf, "%s\n", "Ethernet");
323 	default:
324 		return sprintf(buf, "%s\n", "Unknown");
325 	}
326 }
327 
328 static PORT_ATTR_RO(state);
329 static PORT_ATTR_RO(lid);
330 static PORT_ATTR_RO(lid_mask_count);
331 static PORT_ATTR_RO(sm_lid);
332 static PORT_ATTR_RO(sm_sl);
333 static PORT_ATTR_RO(cap_mask);
334 static PORT_ATTR_RO(rate);
335 static PORT_ATTR_RO(phys_state);
336 static PORT_ATTR_RO(link_layer);
337 
338 static struct attribute *port_default_attrs[] = {
339 	&port_attr_state.attr,
340 	&port_attr_lid.attr,
341 	&port_attr_lid_mask_count.attr,
342 	&port_attr_sm_lid.attr,
343 	&port_attr_sm_sl.attr,
344 	&port_attr_cap_mask.attr,
345 	&port_attr_rate.attr,
346 	&port_attr_phys_state.attr,
347 	&port_attr_link_layer.attr,
348 	NULL
349 };
350 
351 static size_t print_ndev(const struct ib_gid_attr *gid_attr, char *buf)
352 {
353 	struct net_device *ndev;
354 	size_t ret = -EINVAL;
355 
356 	rcu_read_lock();
357 	ndev = rcu_dereference(gid_attr->ndev);
358 	if (ndev)
359 		ret = sprintf(buf, "%s\n", ndev->name);
360 	rcu_read_unlock();
361 	return ret;
362 }
363 
364 static size_t print_gid_type(const struct ib_gid_attr *gid_attr, char *buf)
365 {
366 	return sprintf(buf, "%s\n", ib_cache_gid_type_str(gid_attr->gid_type));
367 }
368 
369 static ssize_t _show_port_gid_attr(
370 	struct ib_port *p, struct port_attribute *attr, char *buf,
371 	size_t (*print)(const struct ib_gid_attr *gid_attr, char *buf))
372 {
373 	struct port_table_attribute *tab_attr =
374 		container_of(attr, struct port_table_attribute, attr);
375 	const struct ib_gid_attr *gid_attr;
376 	ssize_t ret;
377 
378 	gid_attr = rdma_get_gid_attr(p->ibdev, p->port_num, tab_attr->index);
379 	if (IS_ERR(gid_attr))
380 		return PTR_ERR(gid_attr);
381 
382 	ret = print(gid_attr, buf);
383 	rdma_put_gid_attr(gid_attr);
384 	return ret;
385 }
386 
387 static ssize_t show_port_gid(struct ib_port *p, struct port_attribute *attr,
388 			     char *buf)
389 {
390 	struct port_table_attribute *tab_attr =
391 		container_of(attr, struct port_table_attribute, attr);
392 	const struct ib_gid_attr *gid_attr;
393 	ssize_t ret;
394 
395 	gid_attr = rdma_get_gid_attr(p->ibdev, p->port_num, tab_attr->index);
396 	if (IS_ERR(gid_attr)) {
397 		const union ib_gid zgid = {};
398 
399 		/* If reading GID fails, it is likely due to GID entry being
400 		 * empty (invalid) or reserved GID in the table.  User space
401 		 * expects to read GID table entries as long as it given index
402 		 * is within GID table size.  Administrative/debugging tool
403 		 * fails to query rest of the GID entries if it hits error
404 		 * while querying a GID of the given index.  To avoid user
405 		 * space throwing such error on fail to read gid, return zero
406 		 * GID as before. This maintains backward compatibility.
407 		 */
408 		return sprintf(buf, "%pI6\n", zgid.raw);
409 	}
410 
411 	ret = sprintf(buf, "%pI6\n", gid_attr->gid.raw);
412 	rdma_put_gid_attr(gid_attr);
413 	return ret;
414 }
415 
416 static ssize_t show_port_gid_attr_ndev(struct ib_port *p,
417 				       struct port_attribute *attr, char *buf)
418 {
419 	return _show_port_gid_attr(p, attr, buf, print_ndev);
420 }
421 
422 static ssize_t show_port_gid_attr_gid_type(struct ib_port *p,
423 					   struct port_attribute *attr,
424 					   char *buf)
425 {
426 	return _show_port_gid_attr(p, attr, buf, print_gid_type);
427 }
428 
429 static ssize_t show_port_pkey(struct ib_port *p, struct port_attribute *attr,
430 			      char *buf)
431 {
432 	struct port_table_attribute *tab_attr =
433 		container_of(attr, struct port_table_attribute, attr);
434 	u16 pkey;
435 	ssize_t ret;
436 
437 	ret = ib_query_pkey(p->ibdev, p->port_num, tab_attr->index, &pkey);
438 	if (ret)
439 		return ret;
440 
441 	return sprintf(buf, "0x%04x\n", pkey);
442 }
443 
444 #define PORT_PMA_ATTR(_name, _counter, _width, _offset)			\
445 struct port_table_attribute port_pma_attr_##_name = {			\
446 	.attr  = __ATTR(_name, S_IRUGO, show_pma_counter, NULL),	\
447 	.index = (_offset) | ((_width) << 16) | ((_counter) << 24),	\
448 	.attr_id = IB_PMA_PORT_COUNTERS ,				\
449 }
450 
451 #define PORT_PMA_ATTR_EXT(_name, _width, _offset)			\
452 struct port_table_attribute port_pma_attr_ext_##_name = {		\
453 	.attr  = __ATTR(_name, S_IRUGO, show_pma_counter, NULL),	\
454 	.index = (_offset) | ((_width) << 16),				\
455 	.attr_id = IB_PMA_PORT_COUNTERS_EXT ,				\
456 }
457 
458 /*
459  * Get a Perfmgmt MAD block of data.
460  * Returns error code or the number of bytes retrieved.
461  */
462 static int get_perf_mad(struct ib_device *dev, int port_num, __be16 attr,
463 		void *data, int offset, size_t size)
464 {
465 	struct ib_mad *in_mad;
466 	struct ib_mad *out_mad;
467 	size_t mad_size = sizeof(*out_mad);
468 	u16 out_mad_pkey_index = 0;
469 	ssize_t ret;
470 
471 	if (!dev->ops.process_mad)
472 		return -ENOSYS;
473 
474 	in_mad  = kzalloc(sizeof *in_mad, GFP_KERNEL);
475 	out_mad = kmalloc(sizeof *out_mad, GFP_KERNEL);
476 	if (!in_mad || !out_mad) {
477 		ret = -ENOMEM;
478 		goto out;
479 	}
480 
481 	in_mad->mad_hdr.base_version  = 1;
482 	in_mad->mad_hdr.mgmt_class    = IB_MGMT_CLASS_PERF_MGMT;
483 	in_mad->mad_hdr.class_version = 1;
484 	in_mad->mad_hdr.method        = IB_MGMT_METHOD_GET;
485 	in_mad->mad_hdr.attr_id       = attr;
486 
487 	if (attr != IB_PMA_CLASS_PORT_INFO)
488 		in_mad->data[41] = port_num;	/* PortSelect field */
489 
490 	if ((dev->ops.process_mad(dev, IB_MAD_IGNORE_MKEY,
491 				  port_num, NULL, NULL,
492 				  (const struct ib_mad_hdr *)in_mad, mad_size,
493 				  (struct ib_mad_hdr *)out_mad, &mad_size,
494 				  &out_mad_pkey_index) &
495 	     (IB_MAD_RESULT_SUCCESS | IB_MAD_RESULT_REPLY)) !=
496 	    (IB_MAD_RESULT_SUCCESS | IB_MAD_RESULT_REPLY)) {
497 		ret = -EINVAL;
498 		goto out;
499 	}
500 	memcpy(data, out_mad->data + offset, size);
501 	ret = size;
502 out:
503 	kfree(in_mad);
504 	kfree(out_mad);
505 	return ret;
506 }
507 
508 static ssize_t show_pma_counter(struct ib_port *p, struct port_attribute *attr,
509 				char *buf)
510 {
511 	struct port_table_attribute *tab_attr =
512 		container_of(attr, struct port_table_attribute, attr);
513 	int offset = tab_attr->index & 0xffff;
514 	int width  = (tab_attr->index >> 16) & 0xff;
515 	ssize_t ret;
516 	u8 data[8];
517 
518 	ret = get_perf_mad(p->ibdev, p->port_num, tab_attr->attr_id, &data,
519 			40 + offset / 8, sizeof(data));
520 	if (ret < 0)
521 		return ret;
522 
523 	switch (width) {
524 	case 4:
525 		ret = sprintf(buf, "%u\n", (*data >>
526 					    (4 - (offset % 8))) & 0xf);
527 		break;
528 	case 8:
529 		ret = sprintf(buf, "%u\n", *data);
530 		break;
531 	case 16:
532 		ret = sprintf(buf, "%u\n",
533 			      be16_to_cpup((__be16 *)data));
534 		break;
535 	case 32:
536 		ret = sprintf(buf, "%u\n",
537 			      be32_to_cpup((__be32 *)data));
538 		break;
539 	case 64:
540 		ret = sprintf(buf, "%llu\n",
541 				be64_to_cpup((__be64 *)data));
542 		break;
543 
544 	default:
545 		ret = 0;
546 	}
547 
548 	return ret;
549 }
550 
551 static PORT_PMA_ATTR(symbol_error		    ,  0, 16,  32);
552 static PORT_PMA_ATTR(link_error_recovery	    ,  1,  8,  48);
553 static PORT_PMA_ATTR(link_downed		    ,  2,  8,  56);
554 static PORT_PMA_ATTR(port_rcv_errors		    ,  3, 16,  64);
555 static PORT_PMA_ATTR(port_rcv_remote_physical_errors,  4, 16,  80);
556 static PORT_PMA_ATTR(port_rcv_switch_relay_errors   ,  5, 16,  96);
557 static PORT_PMA_ATTR(port_xmit_discards		    ,  6, 16, 112);
558 static PORT_PMA_ATTR(port_xmit_constraint_errors    ,  7,  8, 128);
559 static PORT_PMA_ATTR(port_rcv_constraint_errors	    ,  8,  8, 136);
560 static PORT_PMA_ATTR(local_link_integrity_errors    ,  9,  4, 152);
561 static PORT_PMA_ATTR(excessive_buffer_overrun_errors, 10,  4, 156);
562 static PORT_PMA_ATTR(VL15_dropped		    , 11, 16, 176);
563 static PORT_PMA_ATTR(port_xmit_data		    , 12, 32, 192);
564 static PORT_PMA_ATTR(port_rcv_data		    , 13, 32, 224);
565 static PORT_PMA_ATTR(port_xmit_packets		    , 14, 32, 256);
566 static PORT_PMA_ATTR(port_rcv_packets		    , 15, 32, 288);
567 static PORT_PMA_ATTR(port_xmit_wait		    ,  0, 32, 320);
568 
569 /*
570  * Counters added by extended set
571  */
572 static PORT_PMA_ATTR_EXT(port_xmit_data		    , 64,  64);
573 static PORT_PMA_ATTR_EXT(port_rcv_data		    , 64, 128);
574 static PORT_PMA_ATTR_EXT(port_xmit_packets	    , 64, 192);
575 static PORT_PMA_ATTR_EXT(port_rcv_packets	    , 64, 256);
576 static PORT_PMA_ATTR_EXT(unicast_xmit_packets	    , 64, 320);
577 static PORT_PMA_ATTR_EXT(unicast_rcv_packets	    , 64, 384);
578 static PORT_PMA_ATTR_EXT(multicast_xmit_packets	    , 64, 448);
579 static PORT_PMA_ATTR_EXT(multicast_rcv_packets	    , 64, 512);
580 
581 static struct attribute *pma_attrs[] = {
582 	&port_pma_attr_symbol_error.attr.attr,
583 	&port_pma_attr_link_error_recovery.attr.attr,
584 	&port_pma_attr_link_downed.attr.attr,
585 	&port_pma_attr_port_rcv_errors.attr.attr,
586 	&port_pma_attr_port_rcv_remote_physical_errors.attr.attr,
587 	&port_pma_attr_port_rcv_switch_relay_errors.attr.attr,
588 	&port_pma_attr_port_xmit_discards.attr.attr,
589 	&port_pma_attr_port_xmit_constraint_errors.attr.attr,
590 	&port_pma_attr_port_rcv_constraint_errors.attr.attr,
591 	&port_pma_attr_local_link_integrity_errors.attr.attr,
592 	&port_pma_attr_excessive_buffer_overrun_errors.attr.attr,
593 	&port_pma_attr_VL15_dropped.attr.attr,
594 	&port_pma_attr_port_xmit_data.attr.attr,
595 	&port_pma_attr_port_rcv_data.attr.attr,
596 	&port_pma_attr_port_xmit_packets.attr.attr,
597 	&port_pma_attr_port_rcv_packets.attr.attr,
598 	&port_pma_attr_port_xmit_wait.attr.attr,
599 	NULL
600 };
601 
602 static struct attribute *pma_attrs_ext[] = {
603 	&port_pma_attr_symbol_error.attr.attr,
604 	&port_pma_attr_link_error_recovery.attr.attr,
605 	&port_pma_attr_link_downed.attr.attr,
606 	&port_pma_attr_port_rcv_errors.attr.attr,
607 	&port_pma_attr_port_rcv_remote_physical_errors.attr.attr,
608 	&port_pma_attr_port_rcv_switch_relay_errors.attr.attr,
609 	&port_pma_attr_port_xmit_discards.attr.attr,
610 	&port_pma_attr_port_xmit_constraint_errors.attr.attr,
611 	&port_pma_attr_port_rcv_constraint_errors.attr.attr,
612 	&port_pma_attr_local_link_integrity_errors.attr.attr,
613 	&port_pma_attr_excessive_buffer_overrun_errors.attr.attr,
614 	&port_pma_attr_VL15_dropped.attr.attr,
615 	&port_pma_attr_ext_port_xmit_data.attr.attr,
616 	&port_pma_attr_ext_port_rcv_data.attr.attr,
617 	&port_pma_attr_ext_port_xmit_packets.attr.attr,
618 	&port_pma_attr_port_xmit_wait.attr.attr,
619 	&port_pma_attr_ext_port_rcv_packets.attr.attr,
620 	&port_pma_attr_ext_unicast_rcv_packets.attr.attr,
621 	&port_pma_attr_ext_unicast_xmit_packets.attr.attr,
622 	&port_pma_attr_ext_multicast_rcv_packets.attr.attr,
623 	&port_pma_attr_ext_multicast_xmit_packets.attr.attr,
624 	NULL
625 };
626 
627 static struct attribute *pma_attrs_noietf[] = {
628 	&port_pma_attr_symbol_error.attr.attr,
629 	&port_pma_attr_link_error_recovery.attr.attr,
630 	&port_pma_attr_link_downed.attr.attr,
631 	&port_pma_attr_port_rcv_errors.attr.attr,
632 	&port_pma_attr_port_rcv_remote_physical_errors.attr.attr,
633 	&port_pma_attr_port_rcv_switch_relay_errors.attr.attr,
634 	&port_pma_attr_port_xmit_discards.attr.attr,
635 	&port_pma_attr_port_xmit_constraint_errors.attr.attr,
636 	&port_pma_attr_port_rcv_constraint_errors.attr.attr,
637 	&port_pma_attr_local_link_integrity_errors.attr.attr,
638 	&port_pma_attr_excessive_buffer_overrun_errors.attr.attr,
639 	&port_pma_attr_VL15_dropped.attr.attr,
640 	&port_pma_attr_ext_port_xmit_data.attr.attr,
641 	&port_pma_attr_ext_port_rcv_data.attr.attr,
642 	&port_pma_attr_ext_port_xmit_packets.attr.attr,
643 	&port_pma_attr_ext_port_rcv_packets.attr.attr,
644 	&port_pma_attr_port_xmit_wait.attr.attr,
645 	NULL
646 };
647 
648 static struct attribute_group pma_group = {
649 	.name  = "counters",
650 	.attrs  = pma_attrs
651 };
652 
653 static struct attribute_group pma_group_ext = {
654 	.name  = "counters",
655 	.attrs  = pma_attrs_ext
656 };
657 
658 static struct attribute_group pma_group_noietf = {
659 	.name  = "counters",
660 	.attrs  = pma_attrs_noietf
661 };
662 
663 static void ib_port_release(struct kobject *kobj)
664 {
665 	struct ib_port *p = container_of(kobj, struct ib_port, kobj);
666 	struct attribute *a;
667 	int i;
668 
669 	if (p->gid_group.attrs) {
670 		for (i = 0; (a = p->gid_group.attrs[i]); ++i)
671 			kfree(a);
672 
673 		kfree(p->gid_group.attrs);
674 	}
675 
676 	if (p->pkey_group.attrs) {
677 		for (i = 0; (a = p->pkey_group.attrs[i]); ++i)
678 			kfree(a);
679 
680 		kfree(p->pkey_group.attrs);
681 	}
682 
683 	kfree(p);
684 }
685 
686 static void ib_port_gid_attr_release(struct kobject *kobj)
687 {
688 	struct gid_attr_group *g = container_of(kobj, struct gid_attr_group,
689 						kobj);
690 	struct attribute *a;
691 	int i;
692 
693 	if (g->ndev.attrs) {
694 		for (i = 0; (a = g->ndev.attrs[i]); ++i)
695 			kfree(a);
696 
697 		kfree(g->ndev.attrs);
698 	}
699 
700 	if (g->type.attrs) {
701 		for (i = 0; (a = g->type.attrs[i]); ++i)
702 			kfree(a);
703 
704 		kfree(g->type.attrs);
705 	}
706 
707 	kfree(g);
708 }
709 
710 static struct kobj_type port_type = {
711 	.release       = ib_port_release,
712 	.sysfs_ops     = &port_sysfs_ops,
713 	.default_attrs = port_default_attrs
714 };
715 
716 static struct kobj_type gid_attr_type = {
717 	.sysfs_ops      = &gid_attr_sysfs_ops,
718 	.release        = ib_port_gid_attr_release
719 };
720 
721 static struct attribute **
722 alloc_group_attrs(ssize_t (*show)(struct ib_port *,
723 				  struct port_attribute *, char *buf),
724 		  int len)
725 {
726 	struct attribute **tab_attr;
727 	struct port_table_attribute *element;
728 	int i;
729 
730 	tab_attr = kcalloc(1 + len, sizeof(struct attribute *), GFP_KERNEL);
731 	if (!tab_attr)
732 		return NULL;
733 
734 	for (i = 0; i < len; i++) {
735 		element = kzalloc(sizeof(struct port_table_attribute),
736 				  GFP_KERNEL);
737 		if (!element)
738 			goto err;
739 
740 		if (snprintf(element->name, sizeof(element->name),
741 			     "%d", i) >= sizeof(element->name)) {
742 			kfree(element);
743 			goto err;
744 		}
745 
746 		element->attr.attr.name  = element->name;
747 		element->attr.attr.mode  = S_IRUGO;
748 		element->attr.show       = show;
749 		element->index		 = i;
750 		sysfs_attr_init(&element->attr.attr);
751 
752 		tab_attr[i] = &element->attr.attr;
753 	}
754 
755 	return tab_attr;
756 
757 err:
758 	while (--i >= 0)
759 		kfree(tab_attr[i]);
760 	kfree(tab_attr);
761 	return NULL;
762 }
763 
764 /*
765  * Figure out which counter table to use depending on
766  * the device capabilities.
767  */
768 static struct attribute_group *get_counter_table(struct ib_device *dev,
769 						 int port_num)
770 {
771 	struct ib_class_port_info cpi;
772 
773 	if (get_perf_mad(dev, port_num, IB_PMA_CLASS_PORT_INFO,
774 				&cpi, 40, sizeof(cpi)) >= 0) {
775 		if (cpi.capability_mask & IB_PMA_CLASS_CAP_EXT_WIDTH)
776 			/* We have extended counters */
777 			return &pma_group_ext;
778 
779 		if (cpi.capability_mask & IB_PMA_CLASS_CAP_EXT_WIDTH_NOIETF)
780 			/* But not the IETF ones */
781 			return &pma_group_noietf;
782 	}
783 
784 	/* Fall back to normal counters */
785 	return &pma_group;
786 }
787 
788 static int update_hw_stats(struct ib_device *dev, struct rdma_hw_stats *stats,
789 			   u8 port_num, int index)
790 {
791 	int ret;
792 
793 	if (time_is_after_eq_jiffies(stats->timestamp + stats->lifespan))
794 		return 0;
795 	ret = dev->ops.get_hw_stats(dev, stats, port_num, index);
796 	if (ret < 0)
797 		return ret;
798 	if (ret == stats->num_counters)
799 		stats->timestamp = jiffies;
800 
801 	return 0;
802 }
803 
804 static ssize_t print_hw_stat(struct ib_device *dev, int port_num,
805 			     struct rdma_hw_stats *stats, int index, char *buf)
806 {
807 	u64 v = rdma_counter_get_hwstat_value(dev, port_num, index);
808 
809 	return sprintf(buf, "%llu\n", stats->value[index] + v);
810 }
811 
812 static ssize_t show_hw_stats(struct kobject *kobj, struct attribute *attr,
813 			     char *buf)
814 {
815 	struct ib_device *dev;
816 	struct ib_port *port;
817 	struct hw_stats_attribute *hsa;
818 	struct rdma_hw_stats *stats;
819 	int ret;
820 
821 	hsa = container_of(attr, struct hw_stats_attribute, attr);
822 	if (!hsa->port_num) {
823 		dev = container_of((struct device *)kobj,
824 				   struct ib_device, dev);
825 		stats = dev->hw_stats;
826 	} else {
827 		port = container_of(kobj, struct ib_port, kobj);
828 		dev = port->ibdev;
829 		stats = port->hw_stats;
830 	}
831 	mutex_lock(&stats->lock);
832 	ret = update_hw_stats(dev, stats, hsa->port_num, hsa->index);
833 	if (ret)
834 		goto unlock;
835 	ret = print_hw_stat(dev, hsa->port_num, stats, hsa->index, buf);
836 unlock:
837 	mutex_unlock(&stats->lock);
838 
839 	return ret;
840 }
841 
842 static ssize_t show_stats_lifespan(struct kobject *kobj,
843 				   struct attribute *attr,
844 				   char *buf)
845 {
846 	struct hw_stats_attribute *hsa;
847 	struct rdma_hw_stats *stats;
848 	int msecs;
849 
850 	hsa = container_of(attr, struct hw_stats_attribute, attr);
851 	if (!hsa->port_num) {
852 		struct ib_device *dev = container_of((struct device *)kobj,
853 						     struct ib_device, dev);
854 
855 		stats = dev->hw_stats;
856 	} else {
857 		struct ib_port *p = container_of(kobj, struct ib_port, kobj);
858 
859 		stats = p->hw_stats;
860 	}
861 
862 	mutex_lock(&stats->lock);
863 	msecs = jiffies_to_msecs(stats->lifespan);
864 	mutex_unlock(&stats->lock);
865 
866 	return sprintf(buf, "%d\n", msecs);
867 }
868 
869 static ssize_t set_stats_lifespan(struct kobject *kobj,
870 				  struct attribute *attr,
871 				  const char *buf, size_t count)
872 {
873 	struct hw_stats_attribute *hsa;
874 	struct rdma_hw_stats *stats;
875 	int msecs;
876 	int jiffies;
877 	int ret;
878 
879 	ret = kstrtoint(buf, 10, &msecs);
880 	if (ret)
881 		return ret;
882 	if (msecs < 0 || msecs > 10000)
883 		return -EINVAL;
884 	jiffies = msecs_to_jiffies(msecs);
885 	hsa = container_of(attr, struct hw_stats_attribute, attr);
886 	if (!hsa->port_num) {
887 		struct ib_device *dev = container_of((struct device *)kobj,
888 						     struct ib_device, dev);
889 
890 		stats = dev->hw_stats;
891 	} else {
892 		struct ib_port *p = container_of(kobj, struct ib_port, kobj);
893 
894 		stats = p->hw_stats;
895 	}
896 
897 	mutex_lock(&stats->lock);
898 	stats->lifespan = jiffies;
899 	mutex_unlock(&stats->lock);
900 
901 	return count;
902 }
903 
904 static void free_hsag(struct kobject *kobj, struct attribute_group *attr_group)
905 {
906 	struct attribute **attr;
907 
908 	sysfs_remove_group(kobj, attr_group);
909 
910 	for (attr = attr_group->attrs; *attr; attr++)
911 		kfree(*attr);
912 	kfree(attr_group);
913 }
914 
915 static struct attribute *alloc_hsa(int index, u8 port_num, const char *name)
916 {
917 	struct hw_stats_attribute *hsa;
918 
919 	hsa = kmalloc(sizeof(*hsa), GFP_KERNEL);
920 	if (!hsa)
921 		return NULL;
922 
923 	hsa->attr.name = (char *)name;
924 	hsa->attr.mode = S_IRUGO;
925 	hsa->show = show_hw_stats;
926 	hsa->store = NULL;
927 	hsa->index = index;
928 	hsa->port_num = port_num;
929 
930 	return &hsa->attr;
931 }
932 
933 static struct attribute *alloc_hsa_lifespan(char *name, u8 port_num)
934 {
935 	struct hw_stats_attribute *hsa;
936 
937 	hsa = kmalloc(sizeof(*hsa), GFP_KERNEL);
938 	if (!hsa)
939 		return NULL;
940 
941 	hsa->attr.name = name;
942 	hsa->attr.mode = S_IWUSR | S_IRUGO;
943 	hsa->show = show_stats_lifespan;
944 	hsa->store = set_stats_lifespan;
945 	hsa->index = 0;
946 	hsa->port_num = port_num;
947 
948 	return &hsa->attr;
949 }
950 
951 static void setup_hw_stats(struct ib_device *device, struct ib_port *port,
952 			   u8 port_num)
953 {
954 	struct attribute_group *hsag;
955 	struct rdma_hw_stats *stats;
956 	int i, ret;
957 
958 	stats = device->ops.alloc_hw_stats(device, port_num);
959 
960 	if (!stats)
961 		return;
962 
963 	if (!stats->names || stats->num_counters <= 0)
964 		goto err_free_stats;
965 
966 	/*
967 	 * Two extra attribue elements here, one for the lifespan entry and
968 	 * one to NULL terminate the list for the sysfs core code
969 	 */
970 	hsag = kzalloc(sizeof(*hsag) +
971 		       sizeof(void *) * (stats->num_counters + 2),
972 		       GFP_KERNEL);
973 	if (!hsag)
974 		goto err_free_stats;
975 
976 	ret = device->ops.get_hw_stats(device, stats, port_num,
977 				       stats->num_counters);
978 	if (ret != stats->num_counters)
979 		goto err_free_hsag;
980 
981 	stats->timestamp = jiffies;
982 
983 	hsag->name = "hw_counters";
984 	hsag->attrs = (void *)hsag + sizeof(*hsag);
985 
986 	for (i = 0; i < stats->num_counters; i++) {
987 		hsag->attrs[i] = alloc_hsa(i, port_num, stats->names[i]);
988 		if (!hsag->attrs[i])
989 			goto err;
990 		sysfs_attr_init(hsag->attrs[i]);
991 	}
992 
993 	mutex_init(&stats->lock);
994 	/* treat an error here as non-fatal */
995 	hsag->attrs[i] = alloc_hsa_lifespan("lifespan", port_num);
996 	if (hsag->attrs[i])
997 		sysfs_attr_init(hsag->attrs[i]);
998 
999 	if (port) {
1000 		struct kobject *kobj = &port->kobj;
1001 		ret = sysfs_create_group(kobj, hsag);
1002 		if (ret)
1003 			goto err;
1004 		port->hw_stats_ag = hsag;
1005 		port->hw_stats = stats;
1006 		if (device->port_data)
1007 			device->port_data[port_num].hw_stats = stats;
1008 	} else {
1009 		struct kobject *kobj = &device->dev.kobj;
1010 		ret = sysfs_create_group(kobj, hsag);
1011 		if (ret)
1012 			goto err;
1013 		device->hw_stats_ag = hsag;
1014 		device->hw_stats = stats;
1015 	}
1016 
1017 	return;
1018 
1019 err:
1020 	for (; i >= 0; i--)
1021 		kfree(hsag->attrs[i]);
1022 err_free_hsag:
1023 	kfree(hsag);
1024 err_free_stats:
1025 	kfree(stats);
1026 	return;
1027 }
1028 
1029 static int add_port(struct ib_core_device *coredev, int port_num)
1030 {
1031 	struct ib_device *device = rdma_device_to_ibdev(&coredev->dev);
1032 	bool is_full_dev = &device->coredev == coredev;
1033 	struct ib_port *p;
1034 	struct ib_port_attr attr;
1035 	int i;
1036 	int ret;
1037 
1038 	ret = ib_query_port(device, port_num, &attr);
1039 	if (ret)
1040 		return ret;
1041 
1042 	p = kzalloc(sizeof *p, GFP_KERNEL);
1043 	if (!p)
1044 		return -ENOMEM;
1045 
1046 	p->ibdev      = device;
1047 	p->port_num   = port_num;
1048 
1049 	ret = kobject_init_and_add(&p->kobj, &port_type,
1050 				   coredev->ports_kobj,
1051 				   "%d", port_num);
1052 	if (ret) {
1053 		kfree(p);
1054 		return ret;
1055 	}
1056 
1057 	p->gid_attr_group = kzalloc(sizeof(*p->gid_attr_group), GFP_KERNEL);
1058 	if (!p->gid_attr_group) {
1059 		ret = -ENOMEM;
1060 		goto err_put;
1061 	}
1062 
1063 	p->gid_attr_group->port = p;
1064 	ret = kobject_init_and_add(&p->gid_attr_group->kobj, &gid_attr_type,
1065 				   &p->kobj, "gid_attrs");
1066 	if (ret) {
1067 		kfree(p->gid_attr_group);
1068 		goto err_put;
1069 	}
1070 
1071 	if (device->ops.process_mad && is_full_dev) {
1072 		p->pma_table = get_counter_table(device, port_num);
1073 		ret = sysfs_create_group(&p->kobj, p->pma_table);
1074 		if (ret)
1075 			goto err_put_gid_attrs;
1076 	}
1077 
1078 	p->gid_group.name  = "gids";
1079 	p->gid_group.attrs = alloc_group_attrs(show_port_gid, attr.gid_tbl_len);
1080 	if (!p->gid_group.attrs) {
1081 		ret = -ENOMEM;
1082 		goto err_remove_pma;
1083 	}
1084 
1085 	ret = sysfs_create_group(&p->kobj, &p->gid_group);
1086 	if (ret)
1087 		goto err_free_gid;
1088 
1089 	p->gid_attr_group->ndev.name = "ndevs";
1090 	p->gid_attr_group->ndev.attrs = alloc_group_attrs(show_port_gid_attr_ndev,
1091 							  attr.gid_tbl_len);
1092 	if (!p->gid_attr_group->ndev.attrs) {
1093 		ret = -ENOMEM;
1094 		goto err_remove_gid;
1095 	}
1096 
1097 	ret = sysfs_create_group(&p->gid_attr_group->kobj,
1098 				 &p->gid_attr_group->ndev);
1099 	if (ret)
1100 		goto err_free_gid_ndev;
1101 
1102 	p->gid_attr_group->type.name = "types";
1103 	p->gid_attr_group->type.attrs = alloc_group_attrs(show_port_gid_attr_gid_type,
1104 							  attr.gid_tbl_len);
1105 	if (!p->gid_attr_group->type.attrs) {
1106 		ret = -ENOMEM;
1107 		goto err_remove_gid_ndev;
1108 	}
1109 
1110 	ret = sysfs_create_group(&p->gid_attr_group->kobj,
1111 				 &p->gid_attr_group->type);
1112 	if (ret)
1113 		goto err_free_gid_type;
1114 
1115 	p->pkey_group.name  = "pkeys";
1116 	p->pkey_group.attrs = alloc_group_attrs(show_port_pkey,
1117 						attr.pkey_tbl_len);
1118 	if (!p->pkey_group.attrs) {
1119 		ret = -ENOMEM;
1120 		goto err_remove_gid_type;
1121 	}
1122 
1123 	ret = sysfs_create_group(&p->kobj, &p->pkey_group);
1124 	if (ret)
1125 		goto err_free_pkey;
1126 
1127 	if (device->ops.init_port && is_full_dev) {
1128 		ret = device->ops.init_port(device, port_num, &p->kobj);
1129 		if (ret)
1130 			goto err_remove_pkey;
1131 	}
1132 
1133 	/*
1134 	 * If port == 0, it means hw_counters are per device and not per
1135 	 * port, so holder should be device. Therefore skip per port conunter
1136 	 * initialization.
1137 	 */
1138 	if (device->ops.alloc_hw_stats && port_num && is_full_dev)
1139 		setup_hw_stats(device, p, port_num);
1140 
1141 	list_add_tail(&p->kobj.entry, &coredev->port_list);
1142 
1143 	kobject_uevent(&p->kobj, KOBJ_ADD);
1144 	return 0;
1145 
1146 err_remove_pkey:
1147 	sysfs_remove_group(&p->kobj, &p->pkey_group);
1148 
1149 err_free_pkey:
1150 	for (i = 0; i < attr.pkey_tbl_len; ++i)
1151 		kfree(p->pkey_group.attrs[i]);
1152 
1153 	kfree(p->pkey_group.attrs);
1154 	p->pkey_group.attrs = NULL;
1155 
1156 err_remove_gid_type:
1157 	sysfs_remove_group(&p->gid_attr_group->kobj,
1158 			   &p->gid_attr_group->type);
1159 
1160 err_free_gid_type:
1161 	for (i = 0; i < attr.gid_tbl_len; ++i)
1162 		kfree(p->gid_attr_group->type.attrs[i]);
1163 
1164 	kfree(p->gid_attr_group->type.attrs);
1165 	p->gid_attr_group->type.attrs = NULL;
1166 
1167 err_remove_gid_ndev:
1168 	sysfs_remove_group(&p->gid_attr_group->kobj,
1169 			   &p->gid_attr_group->ndev);
1170 
1171 err_free_gid_ndev:
1172 	for (i = 0; i < attr.gid_tbl_len; ++i)
1173 		kfree(p->gid_attr_group->ndev.attrs[i]);
1174 
1175 	kfree(p->gid_attr_group->ndev.attrs);
1176 	p->gid_attr_group->ndev.attrs = NULL;
1177 
1178 err_remove_gid:
1179 	sysfs_remove_group(&p->kobj, &p->gid_group);
1180 
1181 err_free_gid:
1182 	for (i = 0; i < attr.gid_tbl_len; ++i)
1183 		kfree(p->gid_group.attrs[i]);
1184 
1185 	kfree(p->gid_group.attrs);
1186 	p->gid_group.attrs = NULL;
1187 
1188 err_remove_pma:
1189 	if (p->pma_table)
1190 		sysfs_remove_group(&p->kobj, p->pma_table);
1191 
1192 err_put_gid_attrs:
1193 	kobject_put(&p->gid_attr_group->kobj);
1194 
1195 err_put:
1196 	kobject_put(&p->kobj);
1197 	return ret;
1198 }
1199 
1200 static ssize_t node_type_show(struct device *device,
1201 			      struct device_attribute *attr, char *buf)
1202 {
1203 	struct ib_device *dev = rdma_device_to_ibdev(device);
1204 
1205 	switch (dev->node_type) {
1206 	case RDMA_NODE_IB_CA:	  return sprintf(buf, "%d: CA\n", dev->node_type);
1207 	case RDMA_NODE_RNIC:	  return sprintf(buf, "%d: RNIC\n", dev->node_type);
1208 	case RDMA_NODE_USNIC:	  return sprintf(buf, "%d: usNIC\n", dev->node_type);
1209 	case RDMA_NODE_USNIC_UDP: return sprintf(buf, "%d: usNIC UDP\n", dev->node_type);
1210 	case RDMA_NODE_UNSPECIFIED: return sprintf(buf, "%d: unspecified\n", dev->node_type);
1211 	case RDMA_NODE_IB_SWITCH: return sprintf(buf, "%d: switch\n", dev->node_type);
1212 	case RDMA_NODE_IB_ROUTER: return sprintf(buf, "%d: router\n", dev->node_type);
1213 	default:		  return sprintf(buf, "%d: <unknown>\n", dev->node_type);
1214 	}
1215 }
1216 static DEVICE_ATTR_RO(node_type);
1217 
1218 static ssize_t sys_image_guid_show(struct device *device,
1219 				   struct device_attribute *dev_attr, char *buf)
1220 {
1221 	struct ib_device *dev = rdma_device_to_ibdev(device);
1222 
1223 	return sprintf(buf, "%04x:%04x:%04x:%04x\n",
1224 		       be16_to_cpu(((__be16 *) &dev->attrs.sys_image_guid)[0]),
1225 		       be16_to_cpu(((__be16 *) &dev->attrs.sys_image_guid)[1]),
1226 		       be16_to_cpu(((__be16 *) &dev->attrs.sys_image_guid)[2]),
1227 		       be16_to_cpu(((__be16 *) &dev->attrs.sys_image_guid)[3]));
1228 }
1229 static DEVICE_ATTR_RO(sys_image_guid);
1230 
1231 static ssize_t node_guid_show(struct device *device,
1232 			      struct device_attribute *attr, char *buf)
1233 {
1234 	struct ib_device *dev = rdma_device_to_ibdev(device);
1235 
1236 	return sprintf(buf, "%04x:%04x:%04x:%04x\n",
1237 		       be16_to_cpu(((__be16 *) &dev->node_guid)[0]),
1238 		       be16_to_cpu(((__be16 *) &dev->node_guid)[1]),
1239 		       be16_to_cpu(((__be16 *) &dev->node_guid)[2]),
1240 		       be16_to_cpu(((__be16 *) &dev->node_guid)[3]));
1241 }
1242 static DEVICE_ATTR_RO(node_guid);
1243 
1244 static ssize_t node_desc_show(struct device *device,
1245 			      struct device_attribute *attr, char *buf)
1246 {
1247 	struct ib_device *dev = rdma_device_to_ibdev(device);
1248 
1249 	return sprintf(buf, "%.64s\n", dev->node_desc);
1250 }
1251 
1252 static ssize_t node_desc_store(struct device *device,
1253 			       struct device_attribute *attr,
1254 			       const char *buf, size_t count)
1255 {
1256 	struct ib_device *dev = rdma_device_to_ibdev(device);
1257 	struct ib_device_modify desc = {};
1258 	int ret;
1259 
1260 	if (!dev->ops.modify_device)
1261 		return -EIO;
1262 
1263 	memcpy(desc.node_desc, buf, min_t(int, count, IB_DEVICE_NODE_DESC_MAX));
1264 	ret = ib_modify_device(dev, IB_DEVICE_MODIFY_NODE_DESC, &desc);
1265 	if (ret)
1266 		return ret;
1267 
1268 	return count;
1269 }
1270 static DEVICE_ATTR_RW(node_desc);
1271 
1272 static ssize_t fw_ver_show(struct device *device, struct device_attribute *attr,
1273 			   char *buf)
1274 {
1275 	struct ib_device *dev = rdma_device_to_ibdev(device);
1276 
1277 	ib_get_device_fw_str(dev, buf);
1278 	strlcat(buf, "\n", IB_FW_VERSION_NAME_MAX);
1279 	return strlen(buf);
1280 }
1281 static DEVICE_ATTR_RO(fw_ver);
1282 
1283 static struct attribute *ib_dev_attrs[] = {
1284 	&dev_attr_node_type.attr,
1285 	&dev_attr_node_guid.attr,
1286 	&dev_attr_sys_image_guid.attr,
1287 	&dev_attr_fw_ver.attr,
1288 	&dev_attr_node_desc.attr,
1289 	NULL,
1290 };
1291 
1292 const struct attribute_group ib_dev_attr_group = {
1293 	.attrs = ib_dev_attrs,
1294 };
1295 
1296 void ib_free_port_attrs(struct ib_core_device *coredev)
1297 {
1298 	struct ib_device *device = rdma_device_to_ibdev(&coredev->dev);
1299 	bool is_full_dev = &device->coredev == coredev;
1300 	struct kobject *p, *t;
1301 
1302 	list_for_each_entry_safe(p, t, &coredev->port_list, entry) {
1303 		struct ib_port *port = container_of(p, struct ib_port, kobj);
1304 
1305 		list_del(&p->entry);
1306 		if (port->hw_stats_ag)
1307 			free_hsag(&port->kobj, port->hw_stats_ag);
1308 		kfree(port->hw_stats);
1309 		if (device->port_data && is_full_dev)
1310 			device->port_data[port->port_num].hw_stats = NULL;
1311 
1312 		if (port->pma_table)
1313 			sysfs_remove_group(p, port->pma_table);
1314 		sysfs_remove_group(p, &port->pkey_group);
1315 		sysfs_remove_group(p, &port->gid_group);
1316 		sysfs_remove_group(&port->gid_attr_group->kobj,
1317 				   &port->gid_attr_group->ndev);
1318 		sysfs_remove_group(&port->gid_attr_group->kobj,
1319 				   &port->gid_attr_group->type);
1320 		kobject_put(&port->gid_attr_group->kobj);
1321 		kobject_put(p);
1322 	}
1323 
1324 	kobject_put(coredev->ports_kobj);
1325 }
1326 
1327 int ib_setup_port_attrs(struct ib_core_device *coredev)
1328 {
1329 	struct ib_device *device = rdma_device_to_ibdev(&coredev->dev);
1330 	unsigned int port;
1331 	int ret;
1332 
1333 	coredev->ports_kobj = kobject_create_and_add("ports",
1334 						     &coredev->dev.kobj);
1335 	if (!coredev->ports_kobj)
1336 		return -ENOMEM;
1337 
1338 	rdma_for_each_port (device, port) {
1339 		ret = add_port(coredev, port);
1340 		if (ret)
1341 			goto err_put;
1342 	}
1343 
1344 	return 0;
1345 
1346 err_put:
1347 	ib_free_port_attrs(coredev);
1348 	return ret;
1349 }
1350 
1351 int ib_device_register_sysfs(struct ib_device *device)
1352 {
1353 	int ret;
1354 
1355 	ret = ib_setup_port_attrs(&device->coredev);
1356 	if (ret)
1357 		return ret;
1358 
1359 	if (device->ops.alloc_hw_stats)
1360 		setup_hw_stats(device, NULL, 0);
1361 
1362 	return 0;
1363 }
1364 
1365 void ib_device_unregister_sysfs(struct ib_device *device)
1366 {
1367 	if (device->hw_stats_ag)
1368 		free_hsag(&device->dev.kobj, device->hw_stats_ag);
1369 	kfree(device->hw_stats);
1370 
1371 	ib_free_port_attrs(&device->coredev);
1372 }
1373 
1374 /**
1375  * ib_port_register_module_stat - add module counters under relevant port
1376  *  of IB device.
1377  *
1378  * @device: IB device to add counters
1379  * @port_num: valid port number
1380  * @kobj: pointer to the kobject to initialize
1381  * @ktype: pointer to the ktype for this kobject.
1382  * @name: the name of the kobject
1383  */
1384 int ib_port_register_module_stat(struct ib_device *device, u8 port_num,
1385 				 struct kobject *kobj, struct kobj_type *ktype,
1386 				 const char *name)
1387 {
1388 	struct kobject *p, *t;
1389 	int ret;
1390 
1391 	list_for_each_entry_safe(p, t, &device->coredev.port_list, entry) {
1392 		struct ib_port *port = container_of(p, struct ib_port, kobj);
1393 
1394 		if (port->port_num != port_num)
1395 			continue;
1396 
1397 		ret = kobject_init_and_add(kobj, ktype, &port->kobj, "%s",
1398 					   name);
1399 		if (ret)
1400 			return ret;
1401 	}
1402 
1403 	return 0;
1404 }
1405 EXPORT_SYMBOL(ib_port_register_module_stat);
1406 
1407 /**
1408  * ib_port_unregister_module_stat - release module counters
1409  * @kobj: pointer to the kobject to release
1410  */
1411 void ib_port_unregister_module_stat(struct kobject *kobj)
1412 {
1413 	kobject_put(kobj);
1414 }
1415 EXPORT_SYMBOL(ib_port_unregister_module_stat);
1416