Loading...
1// SPDX-License-Identifier: GPL-2.0 OR BSD-3-Clause
2/*
3 * Copyright(c) 2015-2017 Intel Corporation.
4 */
5
6#include <linux/ctype.h>
7#include <rdma/ib_sysfs.h>
8
9#include "hfi.h"
10#include "mad.h"
11#include "trace.h"
12
13static struct hfi1_pportdata *hfi1_get_pportdata_kobj(struct kobject *kobj)
14{
15 u32 port_num;
16 struct ib_device *ibdev = ib_port_sysfs_get_ibdev_kobj(kobj, &port_num);
17 struct hfi1_devdata *dd = dd_from_ibdev(ibdev);
18
19 return &dd->pport[port_num - 1];
20}
21
22/*
23 * Start of per-port congestion control structures and support code
24 */
25
26/*
27 * Congestion control table size followed by table entries
28 */
29static ssize_t cc_table_bin_read(struct file *filp, struct kobject *kobj,
30 struct bin_attribute *bin_attr, char *buf,
31 loff_t pos, size_t count)
32{
33 int ret;
34 struct hfi1_pportdata *ppd = hfi1_get_pportdata_kobj(kobj);
35 struct cc_state *cc_state;
36
37 ret = ppd->total_cct_entry * sizeof(struct ib_cc_table_entry_shadow)
38 + sizeof(__be16);
39
40 if (pos > ret)
41 return -EINVAL;
42
43 if (count > ret - pos)
44 count = ret - pos;
45
46 if (!count)
47 return count;
48
49 rcu_read_lock();
50 cc_state = get_cc_state(ppd);
51 if (!cc_state) {
52 rcu_read_unlock();
53 return -EINVAL;
54 }
55 memcpy(buf, (void *)&cc_state->cct + pos, count);
56 rcu_read_unlock();
57
58 return count;
59}
60static BIN_ATTR_RO(cc_table_bin, PAGE_SIZE);
61
62/*
63 * Congestion settings: port control, control map and an array of 16
64 * entries for the congestion entries - increase, timer, event log
65 * trigger threshold and the minimum injection rate delay.
66 */
67static ssize_t cc_setting_bin_read(struct file *filp, struct kobject *kobj,
68 struct bin_attribute *bin_attr,
69 char *buf, loff_t pos, size_t count)
70{
71 struct hfi1_pportdata *ppd = hfi1_get_pportdata_kobj(kobj);
72 int ret;
73 struct cc_state *cc_state;
74
75 ret = sizeof(struct opa_congestion_setting_attr_shadow);
76
77 if (pos > ret)
78 return -EINVAL;
79 if (count > ret - pos)
80 count = ret - pos;
81
82 if (!count)
83 return count;
84
85 rcu_read_lock();
86 cc_state = get_cc_state(ppd);
87 if (!cc_state) {
88 rcu_read_unlock();
89 return -EINVAL;
90 }
91 memcpy(buf, (void *)&cc_state->cong_setting + pos, count);
92 rcu_read_unlock();
93
94 return count;
95}
96static BIN_ATTR_RO(cc_setting_bin, PAGE_SIZE);
97
98static struct bin_attribute *port_cc_bin_attributes[] = {
99 &bin_attr_cc_setting_bin,
100 &bin_attr_cc_table_bin,
101 NULL
102};
103
104static ssize_t cc_prescan_show(struct ib_device *ibdev, u32 port_num,
105 struct ib_port_attribute *attr, char *buf)
106{
107 struct hfi1_devdata *dd = dd_from_ibdev(ibdev);
108 struct hfi1_pportdata *ppd = &dd->pport[port_num - 1];
109
110 return sysfs_emit(buf, "%s\n", ppd->cc_prescan ? "on" : "off");
111}
112
113static ssize_t cc_prescan_store(struct ib_device *ibdev, u32 port_num,
114 struct ib_port_attribute *attr, const char *buf,
115 size_t count)
116{
117 struct hfi1_devdata *dd = dd_from_ibdev(ibdev);
118 struct hfi1_pportdata *ppd = &dd->pport[port_num - 1];
119
120 if (!memcmp(buf, "on", 2))
121 ppd->cc_prescan = true;
122 else if (!memcmp(buf, "off", 3))
123 ppd->cc_prescan = false;
124
125 return count;
126}
127static IB_PORT_ATTR_ADMIN_RW(cc_prescan);
128
129static struct attribute *port_cc_attributes[] = {
130 &ib_port_attr_cc_prescan.attr,
131 NULL
132};
133
134static const struct attribute_group port_cc_group = {
135 .name = "CCMgtA",
136 .attrs = port_cc_attributes,
137 .bin_attrs = port_cc_bin_attributes,
138};
139
140/* Start sc2vl */
141struct hfi1_sc2vl_attr {
142 struct ib_port_attribute attr;
143 int sc;
144};
145
146static ssize_t sc2vl_attr_show(struct ib_device *ibdev, u32 port_num,
147 struct ib_port_attribute *attr, char *buf)
148{
149 struct hfi1_sc2vl_attr *sattr =
150 container_of(attr, struct hfi1_sc2vl_attr, attr);
151 struct hfi1_devdata *dd = dd_from_ibdev(ibdev);
152
153 return sysfs_emit(buf, "%u\n", *((u8 *)dd->sc2vl + sattr->sc));
154}
155
156#define HFI1_SC2VL_ATTR(N) \
157 static struct hfi1_sc2vl_attr hfi1_sc2vl_attr_##N = { \
158 .attr = __ATTR(N, 0444, sc2vl_attr_show, NULL), \
159 .sc = N, \
160 }
161
162HFI1_SC2VL_ATTR(0);
163HFI1_SC2VL_ATTR(1);
164HFI1_SC2VL_ATTR(2);
165HFI1_SC2VL_ATTR(3);
166HFI1_SC2VL_ATTR(4);
167HFI1_SC2VL_ATTR(5);
168HFI1_SC2VL_ATTR(6);
169HFI1_SC2VL_ATTR(7);
170HFI1_SC2VL_ATTR(8);
171HFI1_SC2VL_ATTR(9);
172HFI1_SC2VL_ATTR(10);
173HFI1_SC2VL_ATTR(11);
174HFI1_SC2VL_ATTR(12);
175HFI1_SC2VL_ATTR(13);
176HFI1_SC2VL_ATTR(14);
177HFI1_SC2VL_ATTR(15);
178HFI1_SC2VL_ATTR(16);
179HFI1_SC2VL_ATTR(17);
180HFI1_SC2VL_ATTR(18);
181HFI1_SC2VL_ATTR(19);
182HFI1_SC2VL_ATTR(20);
183HFI1_SC2VL_ATTR(21);
184HFI1_SC2VL_ATTR(22);
185HFI1_SC2VL_ATTR(23);
186HFI1_SC2VL_ATTR(24);
187HFI1_SC2VL_ATTR(25);
188HFI1_SC2VL_ATTR(26);
189HFI1_SC2VL_ATTR(27);
190HFI1_SC2VL_ATTR(28);
191HFI1_SC2VL_ATTR(29);
192HFI1_SC2VL_ATTR(30);
193HFI1_SC2VL_ATTR(31);
194
195static struct attribute *port_sc2vl_attributes[] = {
196 &hfi1_sc2vl_attr_0.attr.attr,
197 &hfi1_sc2vl_attr_1.attr.attr,
198 &hfi1_sc2vl_attr_2.attr.attr,
199 &hfi1_sc2vl_attr_3.attr.attr,
200 &hfi1_sc2vl_attr_4.attr.attr,
201 &hfi1_sc2vl_attr_5.attr.attr,
202 &hfi1_sc2vl_attr_6.attr.attr,
203 &hfi1_sc2vl_attr_7.attr.attr,
204 &hfi1_sc2vl_attr_8.attr.attr,
205 &hfi1_sc2vl_attr_9.attr.attr,
206 &hfi1_sc2vl_attr_10.attr.attr,
207 &hfi1_sc2vl_attr_11.attr.attr,
208 &hfi1_sc2vl_attr_12.attr.attr,
209 &hfi1_sc2vl_attr_13.attr.attr,
210 &hfi1_sc2vl_attr_14.attr.attr,
211 &hfi1_sc2vl_attr_15.attr.attr,
212 &hfi1_sc2vl_attr_16.attr.attr,
213 &hfi1_sc2vl_attr_17.attr.attr,
214 &hfi1_sc2vl_attr_18.attr.attr,
215 &hfi1_sc2vl_attr_19.attr.attr,
216 &hfi1_sc2vl_attr_20.attr.attr,
217 &hfi1_sc2vl_attr_21.attr.attr,
218 &hfi1_sc2vl_attr_22.attr.attr,
219 &hfi1_sc2vl_attr_23.attr.attr,
220 &hfi1_sc2vl_attr_24.attr.attr,
221 &hfi1_sc2vl_attr_25.attr.attr,
222 &hfi1_sc2vl_attr_26.attr.attr,
223 &hfi1_sc2vl_attr_27.attr.attr,
224 &hfi1_sc2vl_attr_28.attr.attr,
225 &hfi1_sc2vl_attr_29.attr.attr,
226 &hfi1_sc2vl_attr_30.attr.attr,
227 &hfi1_sc2vl_attr_31.attr.attr,
228 NULL
229};
230
231static const struct attribute_group port_sc2vl_group = {
232 .name = "sc2vl",
233 .attrs = port_sc2vl_attributes,
234};
235/* End sc2vl */
236
237/* Start sl2sc */
238struct hfi1_sl2sc_attr {
239 struct ib_port_attribute attr;
240 int sl;
241};
242
243static ssize_t sl2sc_attr_show(struct ib_device *ibdev, u32 port_num,
244 struct ib_port_attribute *attr, char *buf)
245{
246 struct hfi1_sl2sc_attr *sattr =
247 container_of(attr, struct hfi1_sl2sc_attr, attr);
248 struct hfi1_devdata *dd = dd_from_ibdev(ibdev);
249 struct hfi1_ibport *ibp = &dd->pport[port_num - 1].ibport_data;
250
251 return sysfs_emit(buf, "%u\n", ibp->sl_to_sc[sattr->sl]);
252}
253
254#define HFI1_SL2SC_ATTR(N) \
255 static struct hfi1_sl2sc_attr hfi1_sl2sc_attr_##N = { \
256 .attr = __ATTR(N, 0444, sl2sc_attr_show, NULL), .sl = N \
257 }
258
259HFI1_SL2SC_ATTR(0);
260HFI1_SL2SC_ATTR(1);
261HFI1_SL2SC_ATTR(2);
262HFI1_SL2SC_ATTR(3);
263HFI1_SL2SC_ATTR(4);
264HFI1_SL2SC_ATTR(5);
265HFI1_SL2SC_ATTR(6);
266HFI1_SL2SC_ATTR(7);
267HFI1_SL2SC_ATTR(8);
268HFI1_SL2SC_ATTR(9);
269HFI1_SL2SC_ATTR(10);
270HFI1_SL2SC_ATTR(11);
271HFI1_SL2SC_ATTR(12);
272HFI1_SL2SC_ATTR(13);
273HFI1_SL2SC_ATTR(14);
274HFI1_SL2SC_ATTR(15);
275HFI1_SL2SC_ATTR(16);
276HFI1_SL2SC_ATTR(17);
277HFI1_SL2SC_ATTR(18);
278HFI1_SL2SC_ATTR(19);
279HFI1_SL2SC_ATTR(20);
280HFI1_SL2SC_ATTR(21);
281HFI1_SL2SC_ATTR(22);
282HFI1_SL2SC_ATTR(23);
283HFI1_SL2SC_ATTR(24);
284HFI1_SL2SC_ATTR(25);
285HFI1_SL2SC_ATTR(26);
286HFI1_SL2SC_ATTR(27);
287HFI1_SL2SC_ATTR(28);
288HFI1_SL2SC_ATTR(29);
289HFI1_SL2SC_ATTR(30);
290HFI1_SL2SC_ATTR(31);
291
292static struct attribute *port_sl2sc_attributes[] = {
293 &hfi1_sl2sc_attr_0.attr.attr,
294 &hfi1_sl2sc_attr_1.attr.attr,
295 &hfi1_sl2sc_attr_2.attr.attr,
296 &hfi1_sl2sc_attr_3.attr.attr,
297 &hfi1_sl2sc_attr_4.attr.attr,
298 &hfi1_sl2sc_attr_5.attr.attr,
299 &hfi1_sl2sc_attr_6.attr.attr,
300 &hfi1_sl2sc_attr_7.attr.attr,
301 &hfi1_sl2sc_attr_8.attr.attr,
302 &hfi1_sl2sc_attr_9.attr.attr,
303 &hfi1_sl2sc_attr_10.attr.attr,
304 &hfi1_sl2sc_attr_11.attr.attr,
305 &hfi1_sl2sc_attr_12.attr.attr,
306 &hfi1_sl2sc_attr_13.attr.attr,
307 &hfi1_sl2sc_attr_14.attr.attr,
308 &hfi1_sl2sc_attr_15.attr.attr,
309 &hfi1_sl2sc_attr_16.attr.attr,
310 &hfi1_sl2sc_attr_17.attr.attr,
311 &hfi1_sl2sc_attr_18.attr.attr,
312 &hfi1_sl2sc_attr_19.attr.attr,
313 &hfi1_sl2sc_attr_20.attr.attr,
314 &hfi1_sl2sc_attr_21.attr.attr,
315 &hfi1_sl2sc_attr_22.attr.attr,
316 &hfi1_sl2sc_attr_23.attr.attr,
317 &hfi1_sl2sc_attr_24.attr.attr,
318 &hfi1_sl2sc_attr_25.attr.attr,
319 &hfi1_sl2sc_attr_26.attr.attr,
320 &hfi1_sl2sc_attr_27.attr.attr,
321 &hfi1_sl2sc_attr_28.attr.attr,
322 &hfi1_sl2sc_attr_29.attr.attr,
323 &hfi1_sl2sc_attr_30.attr.attr,
324 &hfi1_sl2sc_attr_31.attr.attr,
325 NULL
326};
327
328static const struct attribute_group port_sl2sc_group = {
329 .name = "sl2sc",
330 .attrs = port_sl2sc_attributes,
331};
332
333/* End sl2sc */
334
335/* Start vl2mtu */
336
337struct hfi1_vl2mtu_attr {
338 struct ib_port_attribute attr;
339 int vl;
340};
341
342static ssize_t vl2mtu_attr_show(struct ib_device *ibdev, u32 port_num,
343 struct ib_port_attribute *attr, char *buf)
344{
345 struct hfi1_vl2mtu_attr *vlattr =
346 container_of(attr, struct hfi1_vl2mtu_attr, attr);
347 struct hfi1_devdata *dd = dd_from_ibdev(ibdev);
348
349 return sysfs_emit(buf, "%u\n", dd->vld[vlattr->vl].mtu);
350}
351
352#define HFI1_VL2MTU_ATTR(N) \
353 static struct hfi1_vl2mtu_attr hfi1_vl2mtu_attr_##N = { \
354 .attr = __ATTR(N, 0444, vl2mtu_attr_show, NULL), \
355 .vl = N, \
356 }
357
358HFI1_VL2MTU_ATTR(0);
359HFI1_VL2MTU_ATTR(1);
360HFI1_VL2MTU_ATTR(2);
361HFI1_VL2MTU_ATTR(3);
362HFI1_VL2MTU_ATTR(4);
363HFI1_VL2MTU_ATTR(5);
364HFI1_VL2MTU_ATTR(6);
365HFI1_VL2MTU_ATTR(7);
366HFI1_VL2MTU_ATTR(8);
367HFI1_VL2MTU_ATTR(9);
368HFI1_VL2MTU_ATTR(10);
369HFI1_VL2MTU_ATTR(11);
370HFI1_VL2MTU_ATTR(12);
371HFI1_VL2MTU_ATTR(13);
372HFI1_VL2MTU_ATTR(14);
373HFI1_VL2MTU_ATTR(15);
374
375static struct attribute *port_vl2mtu_attributes[] = {
376 &hfi1_vl2mtu_attr_0.attr.attr,
377 &hfi1_vl2mtu_attr_1.attr.attr,
378 &hfi1_vl2mtu_attr_2.attr.attr,
379 &hfi1_vl2mtu_attr_3.attr.attr,
380 &hfi1_vl2mtu_attr_4.attr.attr,
381 &hfi1_vl2mtu_attr_5.attr.attr,
382 &hfi1_vl2mtu_attr_6.attr.attr,
383 &hfi1_vl2mtu_attr_7.attr.attr,
384 &hfi1_vl2mtu_attr_8.attr.attr,
385 &hfi1_vl2mtu_attr_9.attr.attr,
386 &hfi1_vl2mtu_attr_10.attr.attr,
387 &hfi1_vl2mtu_attr_11.attr.attr,
388 &hfi1_vl2mtu_attr_12.attr.attr,
389 &hfi1_vl2mtu_attr_13.attr.attr,
390 &hfi1_vl2mtu_attr_14.attr.attr,
391 &hfi1_vl2mtu_attr_15.attr.attr,
392 NULL
393};
394
395static const struct attribute_group port_vl2mtu_group = {
396 .name = "vl2mtu",
397 .attrs = port_vl2mtu_attributes,
398};
399
400/* end of per-port file structures and support code */
401
402/*
403 * Start of per-unit (or driver, in some cases, but replicated
404 * per unit) functions (these get a device *)
405 */
406static ssize_t hw_rev_show(struct device *device, struct device_attribute *attr,
407 char *buf)
408{
409 struct hfi1_ibdev *dev =
410 rdma_device_to_drv_device(device, struct hfi1_ibdev, rdi.ibdev);
411
412 return sysfs_emit(buf, "%x\n", dd_from_dev(dev)->minrev);
413}
414static DEVICE_ATTR_RO(hw_rev);
415
416static ssize_t board_id_show(struct device *device,
417 struct device_attribute *attr, char *buf)
418{
419 struct hfi1_ibdev *dev =
420 rdma_device_to_drv_device(device, struct hfi1_ibdev, rdi.ibdev);
421 struct hfi1_devdata *dd = dd_from_dev(dev);
422
423 if (!dd->boardname)
424 return -EINVAL;
425
426 return sysfs_emit(buf, "%s\n", dd->boardname);
427}
428static DEVICE_ATTR_RO(board_id);
429
430static ssize_t boardversion_show(struct device *device,
431 struct device_attribute *attr, char *buf)
432{
433 struct hfi1_ibdev *dev =
434 rdma_device_to_drv_device(device, struct hfi1_ibdev, rdi.ibdev);
435 struct hfi1_devdata *dd = dd_from_dev(dev);
436
437 /* The string printed here is already newline-terminated. */
438 return sysfs_emit(buf, "%s", dd->boardversion);
439}
440static DEVICE_ATTR_RO(boardversion);
441
442static ssize_t nctxts_show(struct device *device,
443 struct device_attribute *attr, char *buf)
444{
445 struct hfi1_ibdev *dev =
446 rdma_device_to_drv_device(device, struct hfi1_ibdev, rdi.ibdev);
447 struct hfi1_devdata *dd = dd_from_dev(dev);
448
449 /*
450 * Return the smaller of send and receive contexts.
451 * Normally, user level applications would require both a send
452 * and a receive context, so returning the smaller of the two counts
453 * give a more accurate picture of total contexts available.
454 */
455 return sysfs_emit(buf, "%u\n",
456 min(dd->num_user_contexts,
457 (u32)dd->sc_sizes[SC_USER].count));
458}
459static DEVICE_ATTR_RO(nctxts);
460
461static ssize_t nfreectxts_show(struct device *device,
462 struct device_attribute *attr, char *buf)
463{
464 struct hfi1_ibdev *dev =
465 rdma_device_to_drv_device(device, struct hfi1_ibdev, rdi.ibdev);
466 struct hfi1_devdata *dd = dd_from_dev(dev);
467
468 /* Return the number of free user ports (contexts) available. */
469 return sysfs_emit(buf, "%u\n", dd->freectxts);
470}
471static DEVICE_ATTR_RO(nfreectxts);
472
473static ssize_t serial_show(struct device *device,
474 struct device_attribute *attr, char *buf)
475{
476 struct hfi1_ibdev *dev =
477 rdma_device_to_drv_device(device, struct hfi1_ibdev, rdi.ibdev);
478 struct hfi1_devdata *dd = dd_from_dev(dev);
479
480 /* dd->serial is already newline terminated in chip.c */
481 return sysfs_emit(buf, "%s", dd->serial);
482}
483static DEVICE_ATTR_RO(serial);
484
485static ssize_t chip_reset_store(struct device *device,
486 struct device_attribute *attr, const char *buf,
487 size_t count)
488{
489 struct hfi1_ibdev *dev =
490 rdma_device_to_drv_device(device, struct hfi1_ibdev, rdi.ibdev);
491 struct hfi1_devdata *dd = dd_from_dev(dev);
492 int ret;
493
494 if (count < 5 || memcmp(buf, "reset", 5) || !dd->diag_client) {
495 ret = -EINVAL;
496 goto bail;
497 }
498
499 ret = hfi1_reset_device(dd->unit);
500bail:
501 return ret < 0 ? ret : count;
502}
503static DEVICE_ATTR_WO(chip_reset);
504
505/*
506 * Convert the reported temperature from an integer (reported in
507 * units of 0.25C) to a floating point number.
508 */
509#define temp_d(t) ((t) >> 2)
510#define temp_f(t) (((t)&0x3) * 25u)
511
512/*
513 * Dump tempsense values, in decimal, to ease shell-scripts.
514 */
515static ssize_t tempsense_show(struct device *device,
516 struct device_attribute *attr, char *buf)
517{
518 struct hfi1_ibdev *dev =
519 rdma_device_to_drv_device(device, struct hfi1_ibdev, rdi.ibdev);
520 struct hfi1_devdata *dd = dd_from_dev(dev);
521 struct hfi1_temp temp;
522 int ret;
523
524 ret = hfi1_tempsense_rd(dd, &temp);
525 if (ret)
526 return ret;
527
528 return sysfs_emit(buf, "%u.%02u %u.%02u %u.%02u %u.%02u %u %u %u\n",
529 temp_d(temp.curr), temp_f(temp.curr),
530 temp_d(temp.lo_lim), temp_f(temp.lo_lim),
531 temp_d(temp.hi_lim), temp_f(temp.hi_lim),
532 temp_d(temp.crit_lim), temp_f(temp.crit_lim),
533 temp.triggers & 0x1,
534 temp.triggers & 0x2,
535 temp.triggers & 0x4);
536}
537static DEVICE_ATTR_RO(tempsense);
538
539/*
540 * end of per-unit (or driver, in some cases, but replicated
541 * per unit) functions
542 */
543
544/* start of per-unit file structures and support code */
545static struct attribute *hfi1_attributes[] = {
546 &dev_attr_hw_rev.attr,
547 &dev_attr_board_id.attr,
548 &dev_attr_nctxts.attr,
549 &dev_attr_nfreectxts.attr,
550 &dev_attr_serial.attr,
551 &dev_attr_boardversion.attr,
552 &dev_attr_tempsense.attr,
553 &dev_attr_chip_reset.attr,
554 NULL,
555};
556
557const struct attribute_group ib_hfi1_attr_group = {
558 .attrs = hfi1_attributes,
559};
560
561const struct attribute_group *hfi1_attr_port_groups[] = {
562 &port_cc_group,
563 &port_sc2vl_group,
564 &port_sl2sc_group,
565 &port_vl2mtu_group,
566 NULL,
567};
568
569struct sde_attribute {
570 struct attribute attr;
571 ssize_t (*show)(struct sdma_engine *sde, char *buf);
572 ssize_t (*store)(struct sdma_engine *sde, const char *buf, size_t cnt);
573};
574
575static ssize_t sde_show(struct kobject *kobj, struct attribute *attr, char *buf)
576{
577 struct sde_attribute *sde_attr =
578 container_of(attr, struct sde_attribute, attr);
579 struct sdma_engine *sde =
580 container_of(kobj, struct sdma_engine, kobj);
581
582 if (!sde_attr->show)
583 return -EINVAL;
584
585 return sde_attr->show(sde, buf);
586}
587
588static ssize_t sde_store(struct kobject *kobj, struct attribute *attr,
589 const char *buf, size_t count)
590{
591 struct sde_attribute *sde_attr =
592 container_of(attr, struct sde_attribute, attr);
593 struct sdma_engine *sde =
594 container_of(kobj, struct sdma_engine, kobj);
595
596 if (!capable(CAP_SYS_ADMIN))
597 return -EPERM;
598
599 if (!sde_attr->store)
600 return -EINVAL;
601
602 return sde_attr->store(sde, buf, count);
603}
604
605static const struct sysfs_ops sde_sysfs_ops = {
606 .show = sde_show,
607 .store = sde_store,
608};
609
610static struct kobj_type sde_ktype = {
611 .sysfs_ops = &sde_sysfs_ops,
612};
613
614#define SDE_ATTR(_name, _mode, _show, _store) \
615 struct sde_attribute sde_attr_##_name = \
616 __ATTR(_name, _mode, _show, _store)
617
618static ssize_t sde_show_cpu_to_sde_map(struct sdma_engine *sde, char *buf)
619{
620 return sdma_get_cpu_to_sde_map(sde, buf);
621}
622
623static ssize_t sde_store_cpu_to_sde_map(struct sdma_engine *sde,
624 const char *buf, size_t count)
625{
626 return sdma_set_cpu_to_sde_map(sde, buf, count);
627}
628
629static ssize_t sde_show_vl(struct sdma_engine *sde, char *buf)
630{
631 int vl;
632
633 vl = sdma_engine_get_vl(sde);
634 if (vl < 0)
635 return vl;
636
637 return sysfs_emit(buf, "%d\n", vl);
638}
639
640static SDE_ATTR(cpu_list, S_IWUSR | S_IRUGO,
641 sde_show_cpu_to_sde_map,
642 sde_store_cpu_to_sde_map);
643static SDE_ATTR(vl, S_IRUGO, sde_show_vl, NULL);
644
645static struct sde_attribute *sde_attribs[] = {
646 &sde_attr_cpu_list,
647 &sde_attr_vl
648};
649
650/*
651 * Register and create our files in /sys/class/infiniband.
652 */
653int hfi1_verbs_register_sysfs(struct hfi1_devdata *dd)
654{
655 struct ib_device *dev = &dd->verbs_dev.rdi.ibdev;
656 struct device *class_dev = &dev->dev;
657 int i, j, ret;
658
659 for (i = 0; i < dd->num_sdma; i++) {
660 ret = kobject_init_and_add(&dd->per_sdma[i].kobj,
661 &sde_ktype, &class_dev->kobj,
662 "sdma%d", i);
663 if (ret)
664 goto bail;
665
666 for (j = 0; j < ARRAY_SIZE(sde_attribs); j++) {
667 ret = sysfs_create_file(&dd->per_sdma[i].kobj,
668 &sde_attribs[j]->attr);
669 if (ret)
670 goto bail;
671 }
672 }
673
674 return 0;
675bail:
676 /*
677 * The function kobject_put() will call kobject_del() if the kobject
678 * has been added successfully. The sysfs files created under the
679 * kobject directory will also be removed during the process.
680 */
681 for (; i >= 0; i--)
682 kobject_put(&dd->per_sdma[i].kobj);
683
684 return ret;
685}
686
687/*
688 * Unregister and remove our files in /sys/class/infiniband.
689 */
690void hfi1_verbs_unregister_sysfs(struct hfi1_devdata *dd)
691{
692 int i;
693
694 /* Unwind operations in hfi1_verbs_register_sysfs() */
695 for (i = 0; i < dd->num_sdma; i++)
696 kobject_put(&dd->per_sdma[i].kobj);
697}
1/*
2 * Copyright(c) 2015-2017 Intel Corporation.
3 *
4 * This file is provided under a dual BSD/GPLv2 license. When using or
5 * redistributing this file, you may do so under either license.
6 *
7 * GPL LICENSE SUMMARY
8 *
9 * This program is free software; you can redistribute it and/or modify
10 * it under the terms of version 2 of the GNU General Public License as
11 * published by the Free Software Foundation.
12 *
13 * This program is distributed in the hope that it will be useful, but
14 * WITHOUT ANY WARRANTY; without even the implied warranty of
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
16 * General Public License for more details.
17 *
18 * BSD LICENSE
19 *
20 * Redistribution and use in source and binary forms, with or without
21 * modification, are permitted provided that the following conditions
22 * are met:
23 *
24 * - Redistributions of source code must retain the above copyright
25 * notice, this list of conditions and the following disclaimer.
26 * - Redistributions in binary form must reproduce the above copyright
27 * notice, this list of conditions and the following disclaimer in
28 * the documentation and/or other materials provided with the
29 * distribution.
30 * - Neither the name of Intel Corporation nor the names of its
31 * contributors may be used to endorse or promote products derived
32 * from this software without specific prior written permission.
33 *
34 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
35 * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
36 * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
37 * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
38 * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
39 * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
40 * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
41 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
42 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
43 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
44 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
45 *
46 */
47#include <linux/ctype.h>
48#include <rdma/ib_sysfs.h>
49
50#include "hfi.h"
51#include "mad.h"
52#include "trace.h"
53
54static struct hfi1_pportdata *hfi1_get_pportdata_kobj(struct kobject *kobj)
55{
56 u32 port_num;
57 struct ib_device *ibdev = ib_port_sysfs_get_ibdev_kobj(kobj, &port_num);
58 struct hfi1_devdata *dd = dd_from_ibdev(ibdev);
59
60 return &dd->pport[port_num - 1];
61}
62
63/*
64 * Start of per-port congestion control structures and support code
65 */
66
67/*
68 * Congestion control table size followed by table entries
69 */
70static ssize_t cc_table_bin_read(struct file *filp, struct kobject *kobj,
71 struct bin_attribute *bin_attr, char *buf,
72 loff_t pos, size_t count)
73{
74 int ret;
75 struct hfi1_pportdata *ppd = hfi1_get_pportdata_kobj(kobj);
76 struct cc_state *cc_state;
77
78 ret = ppd->total_cct_entry * sizeof(struct ib_cc_table_entry_shadow)
79 + sizeof(__be16);
80
81 if (pos > ret)
82 return -EINVAL;
83
84 if (count > ret - pos)
85 count = ret - pos;
86
87 if (!count)
88 return count;
89
90 rcu_read_lock();
91 cc_state = get_cc_state(ppd);
92 if (!cc_state) {
93 rcu_read_unlock();
94 return -EINVAL;
95 }
96 memcpy(buf, (void *)&cc_state->cct + pos, count);
97 rcu_read_unlock();
98
99 return count;
100}
101static BIN_ATTR_RO(cc_table_bin, PAGE_SIZE);
102
103/*
104 * Congestion settings: port control, control map and an array of 16
105 * entries for the congestion entries - increase, timer, event log
106 * trigger threshold and the minimum injection rate delay.
107 */
108static ssize_t cc_setting_bin_read(struct file *filp, struct kobject *kobj,
109 struct bin_attribute *bin_attr,
110 char *buf, loff_t pos, size_t count)
111{
112 struct hfi1_pportdata *ppd = hfi1_get_pportdata_kobj(kobj);
113 int ret;
114 struct cc_state *cc_state;
115
116 ret = sizeof(struct opa_congestion_setting_attr_shadow);
117
118 if (pos > ret)
119 return -EINVAL;
120 if (count > ret - pos)
121 count = ret - pos;
122
123 if (!count)
124 return count;
125
126 rcu_read_lock();
127 cc_state = get_cc_state(ppd);
128 if (!cc_state) {
129 rcu_read_unlock();
130 return -EINVAL;
131 }
132 memcpy(buf, (void *)&cc_state->cong_setting + pos, count);
133 rcu_read_unlock();
134
135 return count;
136}
137static BIN_ATTR_RO(cc_setting_bin, PAGE_SIZE);
138
139static struct bin_attribute *port_cc_bin_attributes[] = {
140 &bin_attr_cc_setting_bin,
141 &bin_attr_cc_table_bin,
142 NULL
143};
144
145static ssize_t cc_prescan_show(struct ib_device *ibdev, u32 port_num,
146 struct ib_port_attribute *attr, char *buf)
147{
148 struct hfi1_devdata *dd = dd_from_ibdev(ibdev);
149 struct hfi1_pportdata *ppd = &dd->pport[port_num - 1];
150
151 return sysfs_emit(buf, "%s\n", ppd->cc_prescan ? "on" : "off");
152}
153
154static ssize_t cc_prescan_store(struct ib_device *ibdev, u32 port_num,
155 struct ib_port_attribute *attr, const char *buf,
156 size_t count)
157{
158 struct hfi1_devdata *dd = dd_from_ibdev(ibdev);
159 struct hfi1_pportdata *ppd = &dd->pport[port_num - 1];
160
161 if (!memcmp(buf, "on", 2))
162 ppd->cc_prescan = true;
163 else if (!memcmp(buf, "off", 3))
164 ppd->cc_prescan = false;
165
166 return count;
167}
168static IB_PORT_ATTR_ADMIN_RW(cc_prescan);
169
170static struct attribute *port_cc_attributes[] = {
171 &ib_port_attr_cc_prescan.attr,
172 NULL
173};
174
175static const struct attribute_group port_cc_group = {
176 .name = "CCMgtA",
177 .attrs = port_cc_attributes,
178 .bin_attrs = port_cc_bin_attributes,
179};
180
181/* Start sc2vl */
182struct hfi1_sc2vl_attr {
183 struct ib_port_attribute attr;
184 int sc;
185};
186
187static ssize_t sc2vl_attr_show(struct ib_device *ibdev, u32 port_num,
188 struct ib_port_attribute *attr, char *buf)
189{
190 struct hfi1_sc2vl_attr *sattr =
191 container_of(attr, struct hfi1_sc2vl_attr, attr);
192 struct hfi1_devdata *dd = dd_from_ibdev(ibdev);
193
194 return sysfs_emit(buf, "%u\n", *((u8 *)dd->sc2vl + sattr->sc));
195}
196
197#define HFI1_SC2VL_ATTR(N) \
198 static struct hfi1_sc2vl_attr hfi1_sc2vl_attr_##N = { \
199 .attr = __ATTR(N, 0444, sc2vl_attr_show, NULL), \
200 .sc = N, \
201 }
202
203HFI1_SC2VL_ATTR(0);
204HFI1_SC2VL_ATTR(1);
205HFI1_SC2VL_ATTR(2);
206HFI1_SC2VL_ATTR(3);
207HFI1_SC2VL_ATTR(4);
208HFI1_SC2VL_ATTR(5);
209HFI1_SC2VL_ATTR(6);
210HFI1_SC2VL_ATTR(7);
211HFI1_SC2VL_ATTR(8);
212HFI1_SC2VL_ATTR(9);
213HFI1_SC2VL_ATTR(10);
214HFI1_SC2VL_ATTR(11);
215HFI1_SC2VL_ATTR(12);
216HFI1_SC2VL_ATTR(13);
217HFI1_SC2VL_ATTR(14);
218HFI1_SC2VL_ATTR(15);
219HFI1_SC2VL_ATTR(16);
220HFI1_SC2VL_ATTR(17);
221HFI1_SC2VL_ATTR(18);
222HFI1_SC2VL_ATTR(19);
223HFI1_SC2VL_ATTR(20);
224HFI1_SC2VL_ATTR(21);
225HFI1_SC2VL_ATTR(22);
226HFI1_SC2VL_ATTR(23);
227HFI1_SC2VL_ATTR(24);
228HFI1_SC2VL_ATTR(25);
229HFI1_SC2VL_ATTR(26);
230HFI1_SC2VL_ATTR(27);
231HFI1_SC2VL_ATTR(28);
232HFI1_SC2VL_ATTR(29);
233HFI1_SC2VL_ATTR(30);
234HFI1_SC2VL_ATTR(31);
235
236static struct attribute *port_sc2vl_attributes[] = {
237 &hfi1_sc2vl_attr_0.attr.attr,
238 &hfi1_sc2vl_attr_1.attr.attr,
239 &hfi1_sc2vl_attr_2.attr.attr,
240 &hfi1_sc2vl_attr_3.attr.attr,
241 &hfi1_sc2vl_attr_4.attr.attr,
242 &hfi1_sc2vl_attr_5.attr.attr,
243 &hfi1_sc2vl_attr_6.attr.attr,
244 &hfi1_sc2vl_attr_7.attr.attr,
245 &hfi1_sc2vl_attr_8.attr.attr,
246 &hfi1_sc2vl_attr_9.attr.attr,
247 &hfi1_sc2vl_attr_10.attr.attr,
248 &hfi1_sc2vl_attr_11.attr.attr,
249 &hfi1_sc2vl_attr_12.attr.attr,
250 &hfi1_sc2vl_attr_13.attr.attr,
251 &hfi1_sc2vl_attr_14.attr.attr,
252 &hfi1_sc2vl_attr_15.attr.attr,
253 &hfi1_sc2vl_attr_16.attr.attr,
254 &hfi1_sc2vl_attr_17.attr.attr,
255 &hfi1_sc2vl_attr_18.attr.attr,
256 &hfi1_sc2vl_attr_19.attr.attr,
257 &hfi1_sc2vl_attr_20.attr.attr,
258 &hfi1_sc2vl_attr_21.attr.attr,
259 &hfi1_sc2vl_attr_22.attr.attr,
260 &hfi1_sc2vl_attr_23.attr.attr,
261 &hfi1_sc2vl_attr_24.attr.attr,
262 &hfi1_sc2vl_attr_25.attr.attr,
263 &hfi1_sc2vl_attr_26.attr.attr,
264 &hfi1_sc2vl_attr_27.attr.attr,
265 &hfi1_sc2vl_attr_28.attr.attr,
266 &hfi1_sc2vl_attr_29.attr.attr,
267 &hfi1_sc2vl_attr_30.attr.attr,
268 &hfi1_sc2vl_attr_31.attr.attr,
269 NULL
270};
271
272static const struct attribute_group port_sc2vl_group = {
273 .name = "sc2vl",
274 .attrs = port_sc2vl_attributes,
275};
276/* End sc2vl */
277
278/* Start sl2sc */
279struct hfi1_sl2sc_attr {
280 struct ib_port_attribute attr;
281 int sl;
282};
283
284static ssize_t sl2sc_attr_show(struct ib_device *ibdev, u32 port_num,
285 struct ib_port_attribute *attr, char *buf)
286{
287 struct hfi1_sl2sc_attr *sattr =
288 container_of(attr, struct hfi1_sl2sc_attr, attr);
289 struct hfi1_devdata *dd = dd_from_ibdev(ibdev);
290 struct hfi1_ibport *ibp = &dd->pport[port_num - 1].ibport_data;
291
292 return sysfs_emit(buf, "%u\n", ibp->sl_to_sc[sattr->sl]);
293}
294
295#define HFI1_SL2SC_ATTR(N) \
296 static struct hfi1_sl2sc_attr hfi1_sl2sc_attr_##N = { \
297 .attr = __ATTR(N, 0444, sl2sc_attr_show, NULL), .sl = N \
298 }
299
300HFI1_SL2SC_ATTR(0);
301HFI1_SL2SC_ATTR(1);
302HFI1_SL2SC_ATTR(2);
303HFI1_SL2SC_ATTR(3);
304HFI1_SL2SC_ATTR(4);
305HFI1_SL2SC_ATTR(5);
306HFI1_SL2SC_ATTR(6);
307HFI1_SL2SC_ATTR(7);
308HFI1_SL2SC_ATTR(8);
309HFI1_SL2SC_ATTR(9);
310HFI1_SL2SC_ATTR(10);
311HFI1_SL2SC_ATTR(11);
312HFI1_SL2SC_ATTR(12);
313HFI1_SL2SC_ATTR(13);
314HFI1_SL2SC_ATTR(14);
315HFI1_SL2SC_ATTR(15);
316HFI1_SL2SC_ATTR(16);
317HFI1_SL2SC_ATTR(17);
318HFI1_SL2SC_ATTR(18);
319HFI1_SL2SC_ATTR(19);
320HFI1_SL2SC_ATTR(20);
321HFI1_SL2SC_ATTR(21);
322HFI1_SL2SC_ATTR(22);
323HFI1_SL2SC_ATTR(23);
324HFI1_SL2SC_ATTR(24);
325HFI1_SL2SC_ATTR(25);
326HFI1_SL2SC_ATTR(26);
327HFI1_SL2SC_ATTR(27);
328HFI1_SL2SC_ATTR(28);
329HFI1_SL2SC_ATTR(29);
330HFI1_SL2SC_ATTR(30);
331HFI1_SL2SC_ATTR(31);
332
333static struct attribute *port_sl2sc_attributes[] = {
334 &hfi1_sl2sc_attr_0.attr.attr,
335 &hfi1_sl2sc_attr_1.attr.attr,
336 &hfi1_sl2sc_attr_2.attr.attr,
337 &hfi1_sl2sc_attr_3.attr.attr,
338 &hfi1_sl2sc_attr_4.attr.attr,
339 &hfi1_sl2sc_attr_5.attr.attr,
340 &hfi1_sl2sc_attr_6.attr.attr,
341 &hfi1_sl2sc_attr_7.attr.attr,
342 &hfi1_sl2sc_attr_8.attr.attr,
343 &hfi1_sl2sc_attr_9.attr.attr,
344 &hfi1_sl2sc_attr_10.attr.attr,
345 &hfi1_sl2sc_attr_11.attr.attr,
346 &hfi1_sl2sc_attr_12.attr.attr,
347 &hfi1_sl2sc_attr_13.attr.attr,
348 &hfi1_sl2sc_attr_14.attr.attr,
349 &hfi1_sl2sc_attr_15.attr.attr,
350 &hfi1_sl2sc_attr_16.attr.attr,
351 &hfi1_sl2sc_attr_17.attr.attr,
352 &hfi1_sl2sc_attr_18.attr.attr,
353 &hfi1_sl2sc_attr_19.attr.attr,
354 &hfi1_sl2sc_attr_20.attr.attr,
355 &hfi1_sl2sc_attr_21.attr.attr,
356 &hfi1_sl2sc_attr_22.attr.attr,
357 &hfi1_sl2sc_attr_23.attr.attr,
358 &hfi1_sl2sc_attr_24.attr.attr,
359 &hfi1_sl2sc_attr_25.attr.attr,
360 &hfi1_sl2sc_attr_26.attr.attr,
361 &hfi1_sl2sc_attr_27.attr.attr,
362 &hfi1_sl2sc_attr_28.attr.attr,
363 &hfi1_sl2sc_attr_29.attr.attr,
364 &hfi1_sl2sc_attr_30.attr.attr,
365 &hfi1_sl2sc_attr_31.attr.attr,
366 NULL
367};
368
369static const struct attribute_group port_sl2sc_group = {
370 .name = "sl2sc",
371 .attrs = port_sl2sc_attributes,
372};
373
374/* End sl2sc */
375
376/* Start vl2mtu */
377
378struct hfi1_vl2mtu_attr {
379 struct ib_port_attribute attr;
380 int vl;
381};
382
383static ssize_t vl2mtu_attr_show(struct ib_device *ibdev, u32 port_num,
384 struct ib_port_attribute *attr, char *buf)
385{
386 struct hfi1_vl2mtu_attr *vlattr =
387 container_of(attr, struct hfi1_vl2mtu_attr, attr);
388 struct hfi1_devdata *dd = dd_from_ibdev(ibdev);
389
390 return sysfs_emit(buf, "%u\n", dd->vld[vlattr->vl].mtu);
391}
392
393#define HFI1_VL2MTU_ATTR(N) \
394 static struct hfi1_vl2mtu_attr hfi1_vl2mtu_attr_##N = { \
395 .attr = __ATTR(N, 0444, vl2mtu_attr_show, NULL), \
396 .vl = N, \
397 }
398
399HFI1_VL2MTU_ATTR(0);
400HFI1_VL2MTU_ATTR(1);
401HFI1_VL2MTU_ATTR(2);
402HFI1_VL2MTU_ATTR(3);
403HFI1_VL2MTU_ATTR(4);
404HFI1_VL2MTU_ATTR(5);
405HFI1_VL2MTU_ATTR(6);
406HFI1_VL2MTU_ATTR(7);
407HFI1_VL2MTU_ATTR(8);
408HFI1_VL2MTU_ATTR(9);
409HFI1_VL2MTU_ATTR(10);
410HFI1_VL2MTU_ATTR(11);
411HFI1_VL2MTU_ATTR(12);
412HFI1_VL2MTU_ATTR(13);
413HFI1_VL2MTU_ATTR(14);
414HFI1_VL2MTU_ATTR(15);
415
416static struct attribute *port_vl2mtu_attributes[] = {
417 &hfi1_vl2mtu_attr_0.attr.attr,
418 &hfi1_vl2mtu_attr_1.attr.attr,
419 &hfi1_vl2mtu_attr_2.attr.attr,
420 &hfi1_vl2mtu_attr_3.attr.attr,
421 &hfi1_vl2mtu_attr_4.attr.attr,
422 &hfi1_vl2mtu_attr_5.attr.attr,
423 &hfi1_vl2mtu_attr_6.attr.attr,
424 &hfi1_vl2mtu_attr_7.attr.attr,
425 &hfi1_vl2mtu_attr_8.attr.attr,
426 &hfi1_vl2mtu_attr_9.attr.attr,
427 &hfi1_vl2mtu_attr_10.attr.attr,
428 &hfi1_vl2mtu_attr_11.attr.attr,
429 &hfi1_vl2mtu_attr_12.attr.attr,
430 &hfi1_vl2mtu_attr_13.attr.attr,
431 &hfi1_vl2mtu_attr_14.attr.attr,
432 &hfi1_vl2mtu_attr_15.attr.attr,
433 NULL
434};
435
436static const struct attribute_group port_vl2mtu_group = {
437 .name = "vl2mtu",
438 .attrs = port_vl2mtu_attributes,
439};
440
441/* end of per-port file structures and support code */
442
443/*
444 * Start of per-unit (or driver, in some cases, but replicated
445 * per unit) functions (these get a device *)
446 */
447static ssize_t hw_rev_show(struct device *device, struct device_attribute *attr,
448 char *buf)
449{
450 struct hfi1_ibdev *dev =
451 rdma_device_to_drv_device(device, struct hfi1_ibdev, rdi.ibdev);
452
453 return sysfs_emit(buf, "%x\n", dd_from_dev(dev)->minrev);
454}
455static DEVICE_ATTR_RO(hw_rev);
456
457static ssize_t board_id_show(struct device *device,
458 struct device_attribute *attr, char *buf)
459{
460 struct hfi1_ibdev *dev =
461 rdma_device_to_drv_device(device, struct hfi1_ibdev, rdi.ibdev);
462 struct hfi1_devdata *dd = dd_from_dev(dev);
463
464 if (!dd->boardname)
465 return -EINVAL;
466
467 return sysfs_emit(buf, "%s\n", dd->boardname);
468}
469static DEVICE_ATTR_RO(board_id);
470
471static ssize_t boardversion_show(struct device *device,
472 struct device_attribute *attr, char *buf)
473{
474 struct hfi1_ibdev *dev =
475 rdma_device_to_drv_device(device, struct hfi1_ibdev, rdi.ibdev);
476 struct hfi1_devdata *dd = dd_from_dev(dev);
477
478 /* The string printed here is already newline-terminated. */
479 return sysfs_emit(buf, "%s", dd->boardversion);
480}
481static DEVICE_ATTR_RO(boardversion);
482
483static ssize_t nctxts_show(struct device *device,
484 struct device_attribute *attr, char *buf)
485{
486 struct hfi1_ibdev *dev =
487 rdma_device_to_drv_device(device, struct hfi1_ibdev, rdi.ibdev);
488 struct hfi1_devdata *dd = dd_from_dev(dev);
489
490 /*
491 * Return the smaller of send and receive contexts.
492 * Normally, user level applications would require both a send
493 * and a receive context, so returning the smaller of the two counts
494 * give a more accurate picture of total contexts available.
495 */
496 return sysfs_emit(buf, "%u\n",
497 min(dd->num_user_contexts,
498 (u32)dd->sc_sizes[SC_USER].count));
499}
500static DEVICE_ATTR_RO(nctxts);
501
502static ssize_t nfreectxts_show(struct device *device,
503 struct device_attribute *attr, char *buf)
504{
505 struct hfi1_ibdev *dev =
506 rdma_device_to_drv_device(device, struct hfi1_ibdev, rdi.ibdev);
507 struct hfi1_devdata *dd = dd_from_dev(dev);
508
509 /* Return the number of free user ports (contexts) available. */
510 return sysfs_emit(buf, "%u\n", dd->freectxts);
511}
512static DEVICE_ATTR_RO(nfreectxts);
513
514static ssize_t serial_show(struct device *device,
515 struct device_attribute *attr, char *buf)
516{
517 struct hfi1_ibdev *dev =
518 rdma_device_to_drv_device(device, struct hfi1_ibdev, rdi.ibdev);
519 struct hfi1_devdata *dd = dd_from_dev(dev);
520
521 /* dd->serial is already newline terminated in chip.c */
522 return sysfs_emit(buf, "%s", dd->serial);
523}
524static DEVICE_ATTR_RO(serial);
525
526static ssize_t chip_reset_store(struct device *device,
527 struct device_attribute *attr, const char *buf,
528 size_t count)
529{
530 struct hfi1_ibdev *dev =
531 rdma_device_to_drv_device(device, struct hfi1_ibdev, rdi.ibdev);
532 struct hfi1_devdata *dd = dd_from_dev(dev);
533 int ret;
534
535 if (count < 5 || memcmp(buf, "reset", 5) || !dd->diag_client) {
536 ret = -EINVAL;
537 goto bail;
538 }
539
540 ret = hfi1_reset_device(dd->unit);
541bail:
542 return ret < 0 ? ret : count;
543}
544static DEVICE_ATTR_WO(chip_reset);
545
546/*
547 * Convert the reported temperature from an integer (reported in
548 * units of 0.25C) to a floating point number.
549 */
550#define temp_d(t) ((t) >> 2)
551#define temp_f(t) (((t)&0x3) * 25u)
552
553/*
554 * Dump tempsense values, in decimal, to ease shell-scripts.
555 */
556static ssize_t tempsense_show(struct device *device,
557 struct device_attribute *attr, char *buf)
558{
559 struct hfi1_ibdev *dev =
560 rdma_device_to_drv_device(device, struct hfi1_ibdev, rdi.ibdev);
561 struct hfi1_devdata *dd = dd_from_dev(dev);
562 struct hfi1_temp temp;
563 int ret;
564
565 ret = hfi1_tempsense_rd(dd, &temp);
566 if (ret)
567 return ret;
568
569 return sysfs_emit(buf, "%u.%02u %u.%02u %u.%02u %u.%02u %u %u %u\n",
570 temp_d(temp.curr), temp_f(temp.curr),
571 temp_d(temp.lo_lim), temp_f(temp.lo_lim),
572 temp_d(temp.hi_lim), temp_f(temp.hi_lim),
573 temp_d(temp.crit_lim), temp_f(temp.crit_lim),
574 temp.triggers & 0x1,
575 temp.triggers & 0x2,
576 temp.triggers & 0x4);
577}
578static DEVICE_ATTR_RO(tempsense);
579
580/*
581 * end of per-unit (or driver, in some cases, but replicated
582 * per unit) functions
583 */
584
585/* start of per-unit file structures and support code */
586static struct attribute *hfi1_attributes[] = {
587 &dev_attr_hw_rev.attr,
588 &dev_attr_board_id.attr,
589 &dev_attr_nctxts.attr,
590 &dev_attr_nfreectxts.attr,
591 &dev_attr_serial.attr,
592 &dev_attr_boardversion.attr,
593 &dev_attr_tempsense.attr,
594 &dev_attr_chip_reset.attr,
595 NULL,
596};
597
598const struct attribute_group ib_hfi1_attr_group = {
599 .attrs = hfi1_attributes,
600};
601
602const struct attribute_group *hfi1_attr_port_groups[] = {
603 &port_cc_group,
604 &port_sc2vl_group,
605 &port_sl2sc_group,
606 &port_vl2mtu_group,
607 NULL,
608};
609
610struct sde_attribute {
611 struct attribute attr;
612 ssize_t (*show)(struct sdma_engine *sde, char *buf);
613 ssize_t (*store)(struct sdma_engine *sde, const char *buf, size_t cnt);
614};
615
616static ssize_t sde_show(struct kobject *kobj, struct attribute *attr, char *buf)
617{
618 struct sde_attribute *sde_attr =
619 container_of(attr, struct sde_attribute, attr);
620 struct sdma_engine *sde =
621 container_of(kobj, struct sdma_engine, kobj);
622
623 if (!sde_attr->show)
624 return -EINVAL;
625
626 return sde_attr->show(sde, buf);
627}
628
629static ssize_t sde_store(struct kobject *kobj, struct attribute *attr,
630 const char *buf, size_t count)
631{
632 struct sde_attribute *sde_attr =
633 container_of(attr, struct sde_attribute, attr);
634 struct sdma_engine *sde =
635 container_of(kobj, struct sdma_engine, kobj);
636
637 if (!capable(CAP_SYS_ADMIN))
638 return -EPERM;
639
640 if (!sde_attr->store)
641 return -EINVAL;
642
643 return sde_attr->store(sde, buf, count);
644}
645
646static const struct sysfs_ops sde_sysfs_ops = {
647 .show = sde_show,
648 .store = sde_store,
649};
650
651static struct kobj_type sde_ktype = {
652 .sysfs_ops = &sde_sysfs_ops,
653};
654
655#define SDE_ATTR(_name, _mode, _show, _store) \
656 struct sde_attribute sde_attr_##_name = \
657 __ATTR(_name, _mode, _show, _store)
658
659static ssize_t sde_show_cpu_to_sde_map(struct sdma_engine *sde, char *buf)
660{
661 return sdma_get_cpu_to_sde_map(sde, buf);
662}
663
664static ssize_t sde_store_cpu_to_sde_map(struct sdma_engine *sde,
665 const char *buf, size_t count)
666{
667 return sdma_set_cpu_to_sde_map(sde, buf, count);
668}
669
670static ssize_t sde_show_vl(struct sdma_engine *sde, char *buf)
671{
672 int vl;
673
674 vl = sdma_engine_get_vl(sde);
675 if (vl < 0)
676 return vl;
677
678 return sysfs_emit(buf, "%d\n", vl);
679}
680
681static SDE_ATTR(cpu_list, S_IWUSR | S_IRUGO,
682 sde_show_cpu_to_sde_map,
683 sde_store_cpu_to_sde_map);
684static SDE_ATTR(vl, S_IRUGO, sde_show_vl, NULL);
685
686static struct sde_attribute *sde_attribs[] = {
687 &sde_attr_cpu_list,
688 &sde_attr_vl
689};
690
691/*
692 * Register and create our files in /sys/class/infiniband.
693 */
694int hfi1_verbs_register_sysfs(struct hfi1_devdata *dd)
695{
696 struct ib_device *dev = &dd->verbs_dev.rdi.ibdev;
697 struct device *class_dev = &dev->dev;
698 int i, j, ret;
699
700 for (i = 0; i < dd->num_sdma; i++) {
701 ret = kobject_init_and_add(&dd->per_sdma[i].kobj,
702 &sde_ktype, &class_dev->kobj,
703 "sdma%d", i);
704 if (ret)
705 goto bail;
706
707 for (j = 0; j < ARRAY_SIZE(sde_attribs); j++) {
708 ret = sysfs_create_file(&dd->per_sdma[i].kobj,
709 &sde_attribs[j]->attr);
710 if (ret)
711 goto bail;
712 }
713 }
714
715 return 0;
716bail:
717 /*
718 * The function kobject_put() will call kobject_del() if the kobject
719 * has been added successfully. The sysfs files created under the
720 * kobject directory will also be removed during the process.
721 */
722 for (; i >= 0; i--)
723 kobject_put(&dd->per_sdma[i].kobj);
724
725 return ret;
726}
727
728/*
729 * Unregister and remove our files in /sys/class/infiniband.
730 */
731void hfi1_verbs_unregister_sysfs(struct hfi1_devdata *dd)
732{
733 int i;
734
735 /* Unwind operations in hfi1_verbs_register_sysfs() */
736 for (i = 0; i < dd->num_sdma; i++)
737 kobject_put(&dd->per_sdma[i].kobj);
738}