]> CyberLeo.Net >> Repos - FreeBSD/releng/9.2.git/blob - sys/ofed/drivers/infiniband/core/sysfs.c
- Copy stable/9 to releng/9.2 as part of the 9.2-RELEASE cycle.
[FreeBSD/releng/9.2.git] / sys / ofed / drivers / infiniband / core / sysfs.c
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/string.h>
39
40 #include <rdma/ib_mad.h>
41
42 struct ib_port {
43         struct kobject         kobj;
44         struct ib_device      *ibdev;
45         struct attribute_group gid_group;
46         struct attribute_group pkey_group;
47         u8                     port_num;
48 };
49
50 struct port_attribute {
51         struct attribute attr;
52         ssize_t (*show)(struct ib_port *, struct port_attribute *, char *buf);
53         ssize_t (*store)(struct ib_port *, struct port_attribute *,
54                          const char *buf, size_t count);
55 };
56
57 #define PORT_ATTR(_name, _mode, _show, _store) \
58 struct port_attribute port_attr_##_name = __ATTR(_name, _mode, _show, _store)
59
60 #define PORT_ATTR_RO(_name) \
61 struct port_attribute port_attr_##_name = __ATTR_RO(_name)
62
63 struct port_table_attribute {
64         struct port_attribute   attr;
65         char                    name[8];
66         int                     index;
67 };
68
69 static ssize_t port_attr_show(struct kobject *kobj,
70                               struct attribute *attr, char *buf)
71 {
72         struct port_attribute *port_attr =
73                 container_of(attr, struct port_attribute, attr);
74         struct ib_port *p = container_of(kobj, struct ib_port, kobj);
75
76         if (!port_attr->show)
77                 return -EIO;
78
79         return port_attr->show(p, port_attr, buf);
80 }
81
82 static const struct sysfs_ops port_sysfs_ops = {
83         .show = port_attr_show
84 };
85
86 static ssize_t state_show(struct ib_port *p, struct port_attribute *unused,
87                           char *buf)
88 {
89         struct ib_port_attr attr;
90         ssize_t ret;
91
92         static const char *state_name[] = {
93                 [IB_PORT_NOP]           = "NOP",
94                 [IB_PORT_DOWN]          = "DOWN",
95                 [IB_PORT_INIT]          = "INIT",
96                 [IB_PORT_ARMED]         = "ARMED",
97                 [IB_PORT_ACTIVE]        = "ACTIVE",
98                 [IB_PORT_ACTIVE_DEFER]  = "ACTIVE_DEFER"
99         };
100
101         ret = ib_query_port(p->ibdev, p->port_num, &attr);
102         if (ret)
103                 return ret;
104
105         return sprintf(buf, "%d: %s\n", attr.state,
106                        attr.state >= 0 && attr.state < ARRAY_SIZE(state_name) ?
107                        state_name[attr.state] : "UNKNOWN");
108 }
109
110 static ssize_t lid_show(struct ib_port *p, struct port_attribute *unused,
111                         char *buf)
112 {
113         struct ib_port_attr attr;
114         ssize_t ret;
115
116         ret = ib_query_port(p->ibdev, p->port_num, &attr);
117         if (ret)
118                 return ret;
119
120         return sprintf(buf, "0x%x\n", attr.lid);
121 }
122
123 static ssize_t lid_mask_count_show(struct ib_port *p,
124                                    struct port_attribute *unused,
125                                    char *buf)
126 {
127         struct ib_port_attr attr;
128         ssize_t ret;
129
130         ret = ib_query_port(p->ibdev, p->port_num, &attr);
131         if (ret)
132                 return ret;
133
134         return sprintf(buf, "%d\n", attr.lmc);
135 }
136
137 static ssize_t sm_lid_show(struct ib_port *p, struct port_attribute *unused,
138                            char *buf)
139 {
140         struct ib_port_attr attr;
141         ssize_t ret;
142
143         ret = ib_query_port(p->ibdev, p->port_num, &attr);
144         if (ret)
145                 return ret;
146
147         return sprintf(buf, "0x%x\n", attr.sm_lid);
148 }
149
150 static ssize_t sm_sl_show(struct ib_port *p, struct port_attribute *unused,
151                           char *buf)
152 {
153         struct ib_port_attr attr;
154         ssize_t ret;
155
156         ret = ib_query_port(p->ibdev, p->port_num, &attr);
157         if (ret)
158                 return ret;
159
160         return sprintf(buf, "%d\n", attr.sm_sl);
161 }
162
163 static ssize_t cap_mask_show(struct ib_port *p, struct port_attribute *unused,
164                              char *buf)
165 {
166         struct ib_port_attr attr;
167         ssize_t ret;
168
169         ret = ib_query_port(p->ibdev, p->port_num, &attr);
170         if (ret)
171                 return ret;
172
173         return sprintf(buf, "0x%08x\n", attr.port_cap_flags);
174 }
175
176 static ssize_t rate_show(struct ib_port *p, struct port_attribute *unused,
177                          char *buf)
178 {
179         struct ib_port_attr attr;
180         char *speed = "";
181         int rate;
182         ssize_t ret;
183
184         ret = ib_query_port(p->ibdev, p->port_num, &attr);
185         if (ret)
186                 return ret;
187
188         switch (attr.active_speed) {
189         case 2: speed = " DDR"; break;
190         case 4: speed = " QDR"; break;
191         }
192
193         rate = 25 * ib_width_enum_to_int(attr.active_width) * attr.active_speed;
194         if (rate < 0)
195                 return -EINVAL;
196
197         return sprintf(buf, "%d%s Gb/sec (%dX%s)\n",
198                        rate / 10, rate % 10 ? ".5" : "",
199                        ib_width_enum_to_int(attr.active_width), speed);
200 }
201
202 static ssize_t phys_state_show(struct ib_port *p, struct port_attribute *unused,
203                                char *buf)
204 {
205         struct ib_port_attr attr;
206
207         ssize_t ret;
208
209         ret = ib_query_port(p->ibdev, p->port_num, &attr);
210         if (ret)
211                 return ret;
212
213         switch (attr.phys_state) {
214         case 1:  return sprintf(buf, "1: Sleep\n");
215         case 2:  return sprintf(buf, "2: Polling\n");
216         case 3:  return sprintf(buf, "3: Disabled\n");
217         case 4:  return sprintf(buf, "4: PortConfigurationTraining\n");
218         case 5:  return sprintf(buf, "5: LinkUp\n");
219         case 6:  return sprintf(buf, "6: LinkErrorRecovery\n");
220         case 7:  return sprintf(buf, "7: Phy Test\n");
221         default: return sprintf(buf, "%d: <unknown>\n", attr.phys_state);
222         }
223 }
224
225 static ssize_t link_layer_show(struct ib_port *p, struct port_attribute *unused,
226                                char *buf)
227 {
228         switch (rdma_port_get_link_layer(p->ibdev, p->port_num)) {
229         case IB_LINK_LAYER_INFINIBAND:
230                 return sprintf(buf, "%s\n", "IB");
231         case IB_LINK_LAYER_ETHERNET:
232                 return sprintf(buf, "%s\n", "Ethernet");
233         default:
234                 return sprintf(buf, "%s\n", "Unknown");
235         }
236 }
237
238 static PORT_ATTR_RO(state);
239 static PORT_ATTR_RO(lid);
240 static PORT_ATTR_RO(lid_mask_count);
241 static PORT_ATTR_RO(sm_lid);
242 static PORT_ATTR_RO(sm_sl);
243 static PORT_ATTR_RO(cap_mask);
244 static PORT_ATTR_RO(rate);
245 static PORT_ATTR_RO(phys_state);
246 static PORT_ATTR_RO(link_layer);
247
248 static struct attribute *port_default_attrs[] = {
249         &port_attr_state.attr,
250         &port_attr_lid.attr,
251         &port_attr_lid_mask_count.attr,
252         &port_attr_sm_lid.attr,
253         &port_attr_sm_sl.attr,
254         &port_attr_cap_mask.attr,
255         &port_attr_rate.attr,
256         &port_attr_phys_state.attr,
257         &port_attr_link_layer.attr,
258         NULL
259 };
260
261 static ssize_t show_port_gid(struct ib_port *p, struct port_attribute *attr,
262                              char *buf)
263 {
264         struct port_table_attribute *tab_attr =
265                 container_of(attr, struct port_table_attribute, attr);
266         union ib_gid gid;
267         ssize_t ret;
268         u16 *raw;
269
270         ret = ib_query_gid(p->ibdev, p->port_num, tab_attr->index, &gid);
271         if (ret)
272                 return ret;
273
274         raw = (u16 *)gid.raw;
275         return sprintf(buf, "%.4x:%.4x:%.4x:%.4x:%.4x:%.4x:%.4x:%.4x\n",
276             htons(raw[0]), htons(raw[1]), htons(raw[2]), htons(raw[3]),
277             htons(raw[4]), htons(raw[5]), htons(raw[6]), htons(raw[7]));
278 }
279
280 static ssize_t show_port_pkey(struct ib_port *p, struct port_attribute *attr,
281                               char *buf)
282 {
283         struct port_table_attribute *tab_attr =
284                 container_of(attr, struct port_table_attribute, attr);
285         u16 pkey;
286         ssize_t ret;
287
288         ret = ib_query_pkey(p->ibdev, p->port_num, tab_attr->index, &pkey);
289         if (ret)
290                 return ret;
291
292         return sprintf(buf, "0x%04x\n", pkey);
293 }
294
295 #define PORT_PMA_ATTR(_name, _counter, _width, _offset)                 \
296 struct port_table_attribute port_pma_attr_##_name = {                   \
297         .attr  = __ATTR(_name, S_IRUGO, show_pma_counter, NULL),        \
298         .index = (_offset) | ((_width) << 16) | ((_counter) << 24)      \
299 }
300
301 static ssize_t show_pma_counter(struct ib_port *p, struct port_attribute *attr,
302                                 char *buf)
303 {
304         struct port_table_attribute *tab_attr =
305                 container_of(attr, struct port_table_attribute, attr);
306         int offset = tab_attr->index & 0xffff;
307         int width  = (tab_attr->index >> 16) & 0xff;
308         struct ib_mad *in_mad  = NULL;
309         struct ib_mad *out_mad = NULL;
310         ssize_t ret;
311
312         if (!p->ibdev->process_mad)
313                 return sprintf(buf, "N/A (no PMA)\n");
314
315         in_mad  = kzalloc(sizeof *in_mad, GFP_KERNEL);
316         out_mad = kmalloc(sizeof *out_mad, GFP_KERNEL);
317         if (!in_mad || !out_mad) {
318                 ret = -ENOMEM;
319                 goto out;
320         }
321
322         in_mad->mad_hdr.base_version  = 1;
323         in_mad->mad_hdr.mgmt_class    = IB_MGMT_CLASS_PERF_MGMT;
324         in_mad->mad_hdr.class_version = 1;
325         in_mad->mad_hdr.method        = IB_MGMT_METHOD_GET;
326         in_mad->mad_hdr.attr_id       = cpu_to_be16(0x12); /* PortCounters */
327
328         in_mad->data[41] = p->port_num; /* PortSelect field */
329
330         if ((p->ibdev->process_mad(p->ibdev, IB_MAD_IGNORE_MKEY,
331                  p->port_num, NULL, NULL, in_mad, out_mad) &
332              (IB_MAD_RESULT_SUCCESS | IB_MAD_RESULT_REPLY)) !=
333             (IB_MAD_RESULT_SUCCESS | IB_MAD_RESULT_REPLY)) {
334                 ret = -EINVAL;
335                 goto out;
336         }
337
338         switch (width) {
339         case 4:
340                 ret = sprintf(buf, "%u\n", (out_mad->data[40 + offset / 8] >>
341                                             (4 - (offset % 8))) & 0xf);
342                 break;
343         case 8:
344                 ret = sprintf(buf, "%u\n", out_mad->data[40 + offset / 8]);
345                 break;
346         case 16:
347                 ret = sprintf(buf, "%u\n",
348                               be16_to_cpup((__be16 *)(out_mad->data + 40 + offset / 8)));
349                 break;
350         case 32:
351                 ret = sprintf(buf, "%u\n",
352                               be32_to_cpup((__be32 *)(out_mad->data + 40 + offset / 8)));
353                 break;
354         default:
355                 ret = 0;
356         }
357
358 out:
359         kfree(in_mad);
360         kfree(out_mad);
361
362         return ret;
363 }
364
365 static PORT_PMA_ATTR(symbol_error                   ,  0, 16,  32);
366 static PORT_PMA_ATTR(link_error_recovery            ,  1,  8,  48);
367 static PORT_PMA_ATTR(link_downed                    ,  2,  8,  56);
368 static PORT_PMA_ATTR(port_rcv_errors                ,  3, 16,  64);
369 static PORT_PMA_ATTR(port_rcv_remote_physical_errors,  4, 16,  80);
370 static PORT_PMA_ATTR(port_rcv_switch_relay_errors   ,  5, 16,  96);
371 static PORT_PMA_ATTR(port_xmit_discards             ,  6, 16, 112);
372 static PORT_PMA_ATTR(port_xmit_constraint_errors    ,  7,  8, 128);
373 static PORT_PMA_ATTR(port_rcv_constraint_errors     ,  8,  8, 136);
374 static PORT_PMA_ATTR(local_link_integrity_errors    ,  9,  4, 152);
375 static PORT_PMA_ATTR(excessive_buffer_overrun_errors, 10,  4, 156);
376 static PORT_PMA_ATTR(VL15_dropped                   , 11, 16, 176);
377 static PORT_PMA_ATTR(port_xmit_data                 , 12, 32, 192);
378 static PORT_PMA_ATTR(port_rcv_data                  , 13, 32, 224);
379 static PORT_PMA_ATTR(port_xmit_packets              , 14, 32, 256);
380 static PORT_PMA_ATTR(port_rcv_packets               , 15, 32, 288);
381 /*
382  * There is no bit allocated for port_xmit_wait in the CounterSelect field
383  * (IB spec). However, since this bit is ignored when reading
384  * (show_pma_counter), the _counter field of port_xmit_wait can be set to zero.
385  */
386 static PORT_PMA_ATTR(port_xmit_wait                 ,  0, 32, 320);
387
388 static struct attribute *pma_attrs[] = {
389         &port_pma_attr_symbol_error.attr.attr,
390         &port_pma_attr_link_error_recovery.attr.attr,
391         &port_pma_attr_link_downed.attr.attr,
392         &port_pma_attr_port_rcv_errors.attr.attr,
393         &port_pma_attr_port_rcv_remote_physical_errors.attr.attr,
394         &port_pma_attr_port_rcv_switch_relay_errors.attr.attr,
395         &port_pma_attr_port_xmit_discards.attr.attr,
396         &port_pma_attr_port_xmit_constraint_errors.attr.attr,
397         &port_pma_attr_port_rcv_constraint_errors.attr.attr,
398         &port_pma_attr_local_link_integrity_errors.attr.attr,
399         &port_pma_attr_excessive_buffer_overrun_errors.attr.attr,
400         &port_pma_attr_VL15_dropped.attr.attr,
401         &port_pma_attr_port_xmit_data.attr.attr,
402         &port_pma_attr_port_rcv_data.attr.attr,
403         &port_pma_attr_port_xmit_packets.attr.attr,
404         &port_pma_attr_port_rcv_packets.attr.attr,
405         &port_pma_attr_port_xmit_wait.attr.attr,
406         NULL
407 };
408
409 static struct attribute_group pma_group = {
410         .name  = "counters",
411         .attrs  = pma_attrs
412 };
413
414 static void ib_port_release(struct kobject *kobj)
415 {
416         struct ib_port *p = container_of(kobj, struct ib_port, kobj);
417         struct attribute *a;
418         int i;
419
420         for (i = 0; (a = p->gid_group.attrs[i]); ++i)
421                 kfree(a);
422
423         kfree(p->gid_group.attrs);
424
425         for (i = 0; (a = p->pkey_group.attrs[i]); ++i)
426                 kfree(a);
427
428         kfree(p->pkey_group.attrs);
429
430         kfree(p);
431 }
432
433 static struct kobj_type port_type = {
434         .release       = ib_port_release,
435         .sysfs_ops     = &port_sysfs_ops,
436         .default_attrs = port_default_attrs
437 };
438
439 static void ib_device_release(struct device *device)
440 {
441         struct ib_device *dev = container_of(device, struct ib_device, dev);
442
443         kfree(dev);
444 }
445
446 #ifdef __linux__
447 /* BSD supports this through devfs(5) and devd(8). */
448 static int ib_device_uevent(struct device *device,
449                             struct kobj_uevent_env *env)
450 {
451         struct ib_device *dev = container_of(device, struct ib_device, dev);
452
453         if (add_uevent_var(env, "NAME=%s", dev->name))
454                 return -ENOMEM;
455
456         /*
457          * It would be nice to pass the node GUID with the event...
458          */
459
460         return 0;
461 }
462 #endif
463
464 static struct attribute **
465 alloc_group_attrs(ssize_t (*show)(struct ib_port *,
466                                   struct port_attribute *, char *buf),
467                   int len)
468 {
469         struct attribute **tab_attr;
470         struct port_table_attribute *element;
471         int i;
472
473         tab_attr = kcalloc(1 + len, sizeof(struct attribute *), GFP_KERNEL);
474         if (!tab_attr)
475                 return NULL;
476
477         for (i = 0; i < len; i++) {
478                 element = kzalloc(sizeof(struct port_table_attribute),
479                                   GFP_KERNEL);
480                 if (!element)
481                         goto err;
482
483                 if (snprintf(element->name, sizeof(element->name),
484                              "%d", i) >= sizeof(element->name)) {
485                         kfree(element);
486                         goto err;
487                 }
488
489                 element->attr.attr.name  = element->name;
490                 element->attr.attr.mode  = S_IRUGO;
491                 element->attr.show       = show;
492                 element->index           = i;
493
494                 tab_attr[i] = &element->attr.attr;
495         }
496
497         return tab_attr;
498
499 err:
500         while (--i >= 0)
501                 kfree(tab_attr[i]);
502         kfree(tab_attr);
503         return NULL;
504 }
505
506 static int add_port(struct ib_device *device, int port_num)
507 {
508         struct ib_port *p;
509         struct ib_port_attr attr;
510         int i;
511         int ret;
512
513         ret = ib_query_port(device, port_num, &attr);
514         if (ret)
515                 return ret;
516
517         p = kzalloc(sizeof *p, GFP_KERNEL);
518         if (!p)
519                 return -ENOMEM;
520
521         p->ibdev      = device;
522         p->port_num   = port_num;
523
524         ret = kobject_init_and_add(&p->kobj, &port_type,
525                                    device->ports_parent,
526                                    "%d", port_num);
527         if (ret)
528                 goto err_put;
529
530         ret = sysfs_create_group(&p->kobj, &pma_group);
531         if (ret)
532                 goto err_put;
533
534         p->gid_group.name  = "gids";
535         p->gid_group.attrs = alloc_group_attrs(show_port_gid, attr.gid_tbl_len);
536         if (!p->gid_group.attrs)
537                 goto err_remove_pma;
538
539         ret = sysfs_create_group(&p->kobj, &p->gid_group);
540         if (ret)
541                 goto err_free_gid;
542
543         p->pkey_group.name  = "pkeys";
544         p->pkey_group.attrs = alloc_group_attrs(show_port_pkey,
545                                                 attr.pkey_tbl_len);
546         if (!p->pkey_group.attrs)
547                 goto err_remove_gid;
548
549         ret = sysfs_create_group(&p->kobj, &p->pkey_group);
550         if (ret)
551                 goto err_free_pkey;
552
553         list_add_tail(&p->kobj.entry, &device->port_list);
554
555 #ifdef __linux__
556         kobject_uevent(&p->kobj, KOBJ_ADD);
557 #endif
558         return 0;
559
560 err_free_pkey:
561         for (i = 0; i < attr.pkey_tbl_len; ++i)
562                 kfree(p->pkey_group.attrs[i]);
563
564         kfree(p->pkey_group.attrs);
565
566 err_remove_gid:
567         sysfs_remove_group(&p->kobj, &p->gid_group);
568
569 err_free_gid:
570         for (i = 0; i < attr.gid_tbl_len; ++i)
571                 kfree(p->gid_group.attrs[i]);
572
573         kfree(p->gid_group.attrs);
574
575 err_remove_pma:
576         sysfs_remove_group(&p->kobj, &pma_group);
577
578 err_put:
579         kobject_put(device->ports_parent);
580         kfree(p);
581         return ret;
582 }
583
584 static ssize_t show_node_type(struct device *device,
585                               struct device_attribute *attr, char *buf)
586 {
587         struct ib_device *dev = container_of(device, struct ib_device, dev);
588
589         switch (dev->node_type) {
590         case RDMA_NODE_IB_CA:     return sprintf(buf, "%d: CA\n", dev->node_type);
591         case RDMA_NODE_RNIC:      return sprintf(buf, "%d: RNIC\n", dev->node_type);
592         case RDMA_NODE_IB_SWITCH: return sprintf(buf, "%d: switch\n", dev->node_type);
593         case RDMA_NODE_IB_ROUTER: return sprintf(buf, "%d: router\n", dev->node_type);
594         default:                  return sprintf(buf, "%d: <unknown>\n", dev->node_type);
595         }
596 }
597
598 static ssize_t show_sys_image_guid(struct device *device,
599                                    struct device_attribute *dev_attr, char *buf)
600 {
601         struct ib_device *dev = container_of(device, struct ib_device, dev);
602         struct ib_device_attr attr;
603         ssize_t ret;
604
605         ret = ib_query_device(dev, &attr);
606         if (ret)
607                 return ret;
608
609         return sprintf(buf, "%04x:%04x:%04x:%04x\n",
610                        be16_to_cpu(((__be16 *) &attr.sys_image_guid)[0]),
611                        be16_to_cpu(((__be16 *) &attr.sys_image_guid)[1]),
612                        be16_to_cpu(((__be16 *) &attr.sys_image_guid)[2]),
613                        be16_to_cpu(((__be16 *) &attr.sys_image_guid)[3]));
614 }
615
616 static ssize_t show_node_guid(struct device *device,
617                               struct device_attribute *attr, char *buf)
618 {
619         struct ib_device *dev = container_of(device, struct ib_device, dev);
620
621         return sprintf(buf, "%04x:%04x:%04x:%04x\n",
622                        be16_to_cpu(((__be16 *) &dev->node_guid)[0]),
623                        be16_to_cpu(((__be16 *) &dev->node_guid)[1]),
624                        be16_to_cpu(((__be16 *) &dev->node_guid)[2]),
625                        be16_to_cpu(((__be16 *) &dev->node_guid)[3]));
626 }
627
628 static ssize_t show_node_desc(struct device *device,
629                               struct device_attribute *attr, char *buf)
630 {
631         struct ib_device *dev = container_of(device, struct ib_device, dev);
632
633         return sprintf(buf, "%.64s\n", dev->node_desc);
634 }
635
636 static ssize_t set_node_desc(struct device *device,
637                              struct device_attribute *attr,
638                              const char *buf, size_t count)
639 {
640         struct ib_device *dev = container_of(device, struct ib_device, dev);
641         struct ib_device_modify desc = {};
642         int ret;
643
644         if (!dev->modify_device)
645                 return -EIO;
646
647         memcpy(desc.node_desc, buf, min_t(int, count, 64));
648         ret = ib_modify_device(dev, IB_DEVICE_MODIFY_NODE_DESC, &desc);
649         if (ret)
650                 return ret;
651
652         return count;
653 }
654
655 static DEVICE_ATTR(node_type, S_IRUGO, show_node_type, NULL);
656 static DEVICE_ATTR(sys_image_guid, S_IRUGO, show_sys_image_guid, NULL);
657 static DEVICE_ATTR(node_guid, S_IRUGO, show_node_guid, NULL);
658 static DEVICE_ATTR(node_desc, S_IRUGO | S_IWUSR, show_node_desc, set_node_desc);
659
660 static struct device_attribute *ib_class_attributes[] = {
661         &dev_attr_node_type,
662         &dev_attr_sys_image_guid,
663         &dev_attr_node_guid,
664         &dev_attr_node_desc
665 };
666
667 static struct class ib_class = {
668         .name    = "infiniband",
669         .dev_release = ib_device_release,
670 #ifdef __linux__
671         .dev_uevent = ib_device_uevent,
672 #endif
673 };
674
675 /* Show a given an attribute in the statistics group */
676 static ssize_t show_protocol_stat(const struct device *device,
677                             struct device_attribute *attr, char *buf,
678                             unsigned offset)
679 {
680         struct ib_device *dev = container_of(__DECONST(struct device *, device), struct ib_device, dev);
681         union rdma_protocol_stats stats;
682         ssize_t ret;
683
684         ret = dev->get_protocol_stats(dev, &stats);
685         if (ret)
686                 return ret;
687
688         return sprintf(buf, "%llu\n",
689                        (unsigned long long) ((u64 *) &stats)[offset]);
690 }
691
692 /* generate a read-only iwarp statistics attribute */
693 #define IW_STATS_ENTRY(name)                                            \
694 static ssize_t show_##name(struct device *device,                       \
695                            struct device_attribute *attr, char *buf)    \
696 {                                                                       \
697         return show_protocol_stat(device, attr, buf,                    \
698                                   offsetof(struct iw_protocol_stats, name) / \
699                                   sizeof (u64));                        \
700 }                                                                       \
701 static DEVICE_ATTR(name, S_IRUGO, show_##name, NULL)
702
703 IW_STATS_ENTRY(ipInReceives);
704 IW_STATS_ENTRY(ipInHdrErrors);
705 IW_STATS_ENTRY(ipInTooBigErrors);
706 IW_STATS_ENTRY(ipInNoRoutes);
707 IW_STATS_ENTRY(ipInAddrErrors);
708 IW_STATS_ENTRY(ipInUnknownProtos);
709 IW_STATS_ENTRY(ipInTruncatedPkts);
710 IW_STATS_ENTRY(ipInDiscards);
711 IW_STATS_ENTRY(ipInDelivers);
712 IW_STATS_ENTRY(ipOutForwDatagrams);
713 IW_STATS_ENTRY(ipOutRequests);
714 IW_STATS_ENTRY(ipOutDiscards);
715 IW_STATS_ENTRY(ipOutNoRoutes);
716 IW_STATS_ENTRY(ipReasmTimeout);
717 IW_STATS_ENTRY(ipReasmReqds);
718 IW_STATS_ENTRY(ipReasmOKs);
719 IW_STATS_ENTRY(ipReasmFails);
720 IW_STATS_ENTRY(ipFragOKs);
721 IW_STATS_ENTRY(ipFragFails);
722 IW_STATS_ENTRY(ipFragCreates);
723 IW_STATS_ENTRY(ipInMcastPkts);
724 IW_STATS_ENTRY(ipOutMcastPkts);
725 IW_STATS_ENTRY(ipInBcastPkts);
726 IW_STATS_ENTRY(ipOutBcastPkts);
727 IW_STATS_ENTRY(tcpRtoAlgorithm);
728 IW_STATS_ENTRY(tcpRtoMin);
729 IW_STATS_ENTRY(tcpRtoMax);
730 IW_STATS_ENTRY(tcpMaxConn);
731 IW_STATS_ENTRY(tcpActiveOpens);
732 IW_STATS_ENTRY(tcpPassiveOpens);
733 IW_STATS_ENTRY(tcpAttemptFails);
734 IW_STATS_ENTRY(tcpEstabResets);
735 IW_STATS_ENTRY(tcpCurrEstab);
736 IW_STATS_ENTRY(tcpInSegs);
737 IW_STATS_ENTRY(tcpOutSegs);
738 IW_STATS_ENTRY(tcpRetransSegs);
739 IW_STATS_ENTRY(tcpInErrs);
740 IW_STATS_ENTRY(tcpOutRsts);
741
742 static struct attribute *iw_proto_stats_attrs[] = {
743         &dev_attr_ipInReceives.attr,
744         &dev_attr_ipInHdrErrors.attr,
745         &dev_attr_ipInTooBigErrors.attr,
746         &dev_attr_ipInNoRoutes.attr,
747         &dev_attr_ipInAddrErrors.attr,
748         &dev_attr_ipInUnknownProtos.attr,
749         &dev_attr_ipInTruncatedPkts.attr,
750         &dev_attr_ipInDiscards.attr,
751         &dev_attr_ipInDelivers.attr,
752         &dev_attr_ipOutForwDatagrams.attr,
753         &dev_attr_ipOutRequests.attr,
754         &dev_attr_ipOutDiscards.attr,
755         &dev_attr_ipOutNoRoutes.attr,
756         &dev_attr_ipReasmTimeout.attr,
757         &dev_attr_ipReasmReqds.attr,
758         &dev_attr_ipReasmOKs.attr,
759         &dev_attr_ipReasmFails.attr,
760         &dev_attr_ipFragOKs.attr,
761         &dev_attr_ipFragFails.attr,
762         &dev_attr_ipFragCreates.attr,
763         &dev_attr_ipInMcastPkts.attr,
764         &dev_attr_ipOutMcastPkts.attr,
765         &dev_attr_ipInBcastPkts.attr,
766         &dev_attr_ipOutBcastPkts.attr,
767         &dev_attr_tcpRtoAlgorithm.attr,
768         &dev_attr_tcpRtoMin.attr,
769         &dev_attr_tcpRtoMax.attr,
770         &dev_attr_tcpMaxConn.attr,
771         &dev_attr_tcpActiveOpens.attr,
772         &dev_attr_tcpPassiveOpens.attr,
773         &dev_attr_tcpAttemptFails.attr,
774         &dev_attr_tcpEstabResets.attr,
775         &dev_attr_tcpCurrEstab.attr,
776         &dev_attr_tcpInSegs.attr,
777         &dev_attr_tcpOutSegs.attr,
778         &dev_attr_tcpRetransSegs.attr,
779         &dev_attr_tcpInErrs.attr,
780         &dev_attr_tcpOutRsts.attr,
781         NULL
782 };
783
784 static struct attribute_group iw_stats_group = {
785         .name   = "proto_stats",
786         .attrs  = iw_proto_stats_attrs,
787 };
788
789 int ib_device_register_sysfs(struct ib_device *device)
790 {
791         struct device *class_dev = &device->dev;
792         int ret;
793         int i;
794
795         class_dev->class      = &ib_class;
796         class_dev->driver_data = device;
797         class_dev->parent     = device->dma_device;
798         dev_set_name(class_dev, device->name);
799
800         INIT_LIST_HEAD(&device->port_list);
801
802         ret = device_register(class_dev);
803         if (ret)
804                 goto err;
805
806         for (i = 0; i < ARRAY_SIZE(ib_class_attributes); ++i) {
807                 ret = device_create_file(class_dev, ib_class_attributes[i]);
808                 if (ret)
809                         goto err_unregister;
810         }
811
812         device->ports_parent = kobject_create_and_add("ports",
813                                                       &class_dev->kobj);
814         if (!device->ports_parent) {
815                 ret = -ENOMEM;
816                 goto err_put;
817         }
818
819         if (device->node_type == RDMA_NODE_IB_SWITCH) {
820                 ret = add_port(device, 0);
821                 if (ret)
822                         goto err_put;
823         } else {
824                 for (i = 1; i <= device->phys_port_cnt; ++i) {
825                         ret = add_port(device, i);
826                         if (ret)
827                                 goto err_put;
828                 }
829         }
830
831         if (device->node_type == RDMA_NODE_RNIC && device->get_protocol_stats) {
832                 ret = sysfs_create_group(&class_dev->kobj, &iw_stats_group);
833                 if (ret)
834                         goto err_put;
835         }
836
837         return 0;
838
839 err_put:
840         {
841                 struct kobject *p, *t;
842                 struct ib_port *port;
843
844                 list_for_each_entry_safe(p, t, &device->port_list, entry) {
845                         list_del(&p->entry);
846                         port = container_of(p, struct ib_port, kobj);
847                         sysfs_remove_group(p, &pma_group);
848                         sysfs_remove_group(p, &port->pkey_group);
849                         sysfs_remove_group(p, &port->gid_group);
850                         kobject_put(p);
851                 }
852         }
853
854         kobject_put(&class_dev->kobj);
855
856 err_unregister:
857         device_unregister(class_dev);
858
859 err:
860         return ret;
861 }
862
863 void ib_device_unregister_sysfs(struct ib_device *device)
864 {
865         struct kobject *p, *t;
866         struct ib_port *port;
867
868         /* Hold kobject until ib_dealloc_device() */
869         kobject_get(&device->dev.kobj);
870
871         list_for_each_entry_safe(p, t, &device->port_list, entry) {
872                 list_del(&p->entry);
873                 port = container_of(p, struct ib_port, kobj);
874                 sysfs_remove_group(p, &pma_group);
875                 sysfs_remove_group(p, &port->pkey_group);
876                 sysfs_remove_group(p, &port->gid_group);
877                 kobject_put(p);
878         }
879
880         kobject_put(device->ports_parent);
881         device_unregister(&device->dev);
882 }
883
884 int ib_sysfs_setup(void)
885 {
886         return class_register(&ib_class);
887 }
888
889 void ib_sysfs_cleanup(void)
890 {
891         class_unregister(&ib_class);
892 }
893
894 int ib_sysfs_create_port_files(struct ib_device *device,
895                                int (*create)(struct ib_device *dev, u8 port_num,
896                                              struct kobject *kobj))
897 {
898         struct kobject *p;
899         struct ib_port *port;
900         int ret = 0;
901
902         list_for_each_entry(p, &device->port_list, entry) {
903                 port = container_of(p, struct ib_port, kobj);
904                 ret = create(device, port->port_num, &port->kobj);
905                 if (ret)
906                         break;
907         }
908
909         return ret;
910 }
911 EXPORT_SYMBOL(ib_sysfs_create_port_files);