2 * Copyright (c) 2006, 2007, 2008 QLogic Corporation. All rights reserved.
3 * Copyright (c) 2006 PathScale, Inc. All rights reserved.
5 * This software is available to you under a choice of one of two
6 * licenses. You may choose to be licensed under the terms of the GNU
7 * General Public License (GPL) Version 2, available from the file
8 * COPYING in the main directory of this source tree, or the
9 * OpenIB.org BSD license below:
11 * Redistribution and use in source and binary forms, with or
12 * without modification, are permitted provided that the following
15 * - Redistributions of source code must retain the above
16 * copyright notice, this list of conditions and the following
19 * - Redistributions in binary form must reproduce the above
20 * copyright notice, this list of conditions and the following
21 * disclaimer in the documentation and/or other materials
22 * provided with the distribution.
24 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
25 * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
26 * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
27 * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS
28 * BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN
29 * ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
30 * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
34 #include <linux/ctype.h>
35 #include <linux/stat.h>
37 #include "ipath_kernel.h"
38 #include "ipath_verbs.h"
39 #include "ipath_common.h"
42 * ipath_parse_ushort - parse an unsigned short value in an arbitrary base
43 * @str: the string containing the number
44 * @valp: where to put the result
46 * returns the number of bytes consumed, or negative value on error
48 int ipath_parse_ushort(const char *str
, unsigned short *valp
)
54 if (!isdigit(str
[0])) {
59 val
= simple_strtoul(str
, &end
, 0);
76 static ssize_t
show_version(struct device_driver
*dev
, char *buf
)
78 /* The string printed here is already newline-terminated. */
79 return scnprintf(buf
, PAGE_SIZE
, "%s", ib_ipath_version
);
82 static ssize_t
show_num_units(struct device_driver
*dev
, char *buf
)
84 return scnprintf(buf
, PAGE_SIZE
, "%d\n",
85 ipath_count_units(NULL
, NULL
, NULL
));
88 static ssize_t
show_status(struct device
*dev
,
89 struct device_attribute
*attr
,
92 struct ipath_devdata
*dd
= dev_get_drvdata(dev
);
95 if (!dd
->ipath_statusp
) {
100 ret
= scnprintf(buf
, PAGE_SIZE
, "0x%llx\n",
101 (unsigned long long) *(dd
->ipath_statusp
));
107 static const char *ipath_status_str
[] = {
111 "", /* This used to be the old "OIB_SMA" status. */
112 "", /* This used to be the old "SMA" status. */
117 "Fatal_Hardware_Error",
121 static ssize_t
show_status_str(struct device
*dev
,
122 struct device_attribute
*attr
,
125 struct ipath_devdata
*dd
= dev_get_drvdata(dev
);
130 if (!dd
->ipath_statusp
) {
135 s
= *(dd
->ipath_statusp
);
137 for (any
= i
= 0; s
&& ipath_status_str
[i
]; i
++) {
139 if (any
&& strlcat(buf
, " ", PAGE_SIZE
) >=
143 if (strlcat(buf
, ipath_status_str
[i
],
144 PAGE_SIZE
) >= PAGE_SIZE
)
151 strlcat(buf
, "\n", PAGE_SIZE
);
159 static ssize_t
show_boardversion(struct device
*dev
,
160 struct device_attribute
*attr
,
163 struct ipath_devdata
*dd
= dev_get_drvdata(dev
);
164 /* The string printed here is already newline-terminated. */
165 return scnprintf(buf
, PAGE_SIZE
, "%s", dd
->ipath_boardversion
);
168 static ssize_t
show_localbus_info(struct device
*dev
,
169 struct device_attribute
*attr
,
172 struct ipath_devdata
*dd
= dev_get_drvdata(dev
);
173 /* The string printed here is already newline-terminated. */
174 return scnprintf(buf
, PAGE_SIZE
, "%s", dd
->ipath_lbus_info
);
177 static ssize_t
show_lmc(struct device
*dev
,
178 struct device_attribute
*attr
,
181 struct ipath_devdata
*dd
= dev_get_drvdata(dev
);
183 return scnprintf(buf
, PAGE_SIZE
, "%u\n", dd
->ipath_lmc
);
186 static ssize_t
store_lmc(struct device
*dev
,
187 struct device_attribute
*attr
,
191 struct ipath_devdata
*dd
= dev_get_drvdata(dev
);
195 ret
= ipath_parse_ushort(buf
, &lmc
);
204 ipath_set_lid(dd
, dd
->ipath_lid
, lmc
);
208 ipath_dev_err(dd
, "attempt to set invalid LMC %u\n", lmc
);
213 static ssize_t
show_lid(struct device
*dev
,
214 struct device_attribute
*attr
,
217 struct ipath_devdata
*dd
= dev_get_drvdata(dev
);
219 return scnprintf(buf
, PAGE_SIZE
, "0x%x\n", dd
->ipath_lid
);
222 static ssize_t
store_lid(struct device
*dev
,
223 struct device_attribute
*attr
,
227 struct ipath_devdata
*dd
= dev_get_drvdata(dev
);
231 ret
= ipath_parse_ushort(buf
, &lid
);
235 if (lid
== 0 || lid
>= IPATH_MULTICAST_LID_BASE
) {
240 ipath_set_lid(dd
, lid
, dd
->ipath_lmc
);
244 ipath_dev_err(dd
, "attempt to set invalid LID 0x%x\n", lid
);
249 static ssize_t
show_mlid(struct device
*dev
,
250 struct device_attribute
*attr
,
253 struct ipath_devdata
*dd
= dev_get_drvdata(dev
);
255 return scnprintf(buf
, PAGE_SIZE
, "0x%x\n", dd
->ipath_mlid
);
258 static ssize_t
store_mlid(struct device
*dev
,
259 struct device_attribute
*attr
,
263 struct ipath_devdata
*dd
= dev_get_drvdata(dev
);
267 ret
= ipath_parse_ushort(buf
, &mlid
);
268 if (ret
< 0 || mlid
< IPATH_MULTICAST_LID_BASE
)
271 dd
->ipath_mlid
= mlid
;
275 ipath_dev_err(dd
, "attempt to set invalid MLID\n");
280 static ssize_t
show_guid(struct device
*dev
,
281 struct device_attribute
*attr
,
284 struct ipath_devdata
*dd
= dev_get_drvdata(dev
);
287 guid
= (u8
*) & (dd
->ipath_guid
);
289 return scnprintf(buf
, PAGE_SIZE
,
290 "%02x:%02x:%02x:%02x:%02x:%02x:%02x:%02x\n",
291 guid
[0], guid
[1], guid
[2], guid
[3],
292 guid
[4], guid
[5], guid
[6], guid
[7]);
295 static ssize_t
store_guid(struct device
*dev
,
296 struct device_attribute
*attr
,
300 struct ipath_devdata
*dd
= dev_get_drvdata(dev
);
302 unsigned short guid
[8];
307 if (sscanf(buf
, "%hx:%hx:%hx:%hx:%hx:%hx:%hx:%hx",
308 &guid
[0], &guid
[1], &guid
[2], &guid
[3],
309 &guid
[4], &guid
[5], &guid
[6], &guid
[7]) != 8)
312 ng
= (u8
*) &new_guid
;
314 for (i
= 0; i
< 8; i
++) {
323 dd
->ipath_guid
= new_guid
;
326 dd
->verbs_dev
->ibdev
.node_guid
= new_guid
;
332 ipath_dev_err(dd
, "attempt to set invalid GUID\n");
339 static ssize_t
show_nguid(struct device
*dev
,
340 struct device_attribute
*attr
,
343 struct ipath_devdata
*dd
= dev_get_drvdata(dev
);
345 return scnprintf(buf
, PAGE_SIZE
, "%u\n", dd
->ipath_nguid
);
348 static ssize_t
show_nports(struct device
*dev
,
349 struct device_attribute
*attr
,
352 struct ipath_devdata
*dd
= dev_get_drvdata(dev
);
354 /* Return the number of user ports available. */
355 return scnprintf(buf
, PAGE_SIZE
, "%u\n", dd
->ipath_cfgports
- 1);
358 static ssize_t
show_serial(struct device
*dev
,
359 struct device_attribute
*attr
,
362 struct ipath_devdata
*dd
= dev_get_drvdata(dev
);
364 buf
[sizeof dd
->ipath_serial
] = '\0';
365 memcpy(buf
, dd
->ipath_serial
, sizeof dd
->ipath_serial
);
370 static ssize_t
show_unit(struct device
*dev
,
371 struct device_attribute
*attr
,
374 struct ipath_devdata
*dd
= dev_get_drvdata(dev
);
376 return scnprintf(buf
, PAGE_SIZE
, "%u\n", dd
->ipath_unit
);
379 static ssize_t
show_jint_max_packets(struct device
*dev
,
380 struct device_attribute
*attr
,
383 struct ipath_devdata
*dd
= dev_get_drvdata(dev
);
385 return scnprintf(buf
, PAGE_SIZE
, "%hu\n", dd
->ipath_jint_max_packets
);
388 static ssize_t
store_jint_max_packets(struct device
*dev
,
389 struct device_attribute
*attr
,
393 struct ipath_devdata
*dd
= dev_get_drvdata(dev
);
397 ret
= ipath_parse_ushort(buf
, &v
);
399 ipath_dev_err(dd
, "invalid jint_max_packets.\n");
401 dd
->ipath_f_config_jint(dd
, dd
->ipath_jint_idle_ticks
, v
);
406 static ssize_t
show_jint_idle_ticks(struct device
*dev
,
407 struct device_attribute
*attr
,
410 struct ipath_devdata
*dd
= dev_get_drvdata(dev
);
412 return scnprintf(buf
, PAGE_SIZE
, "%hu\n", dd
->ipath_jint_idle_ticks
);
415 static ssize_t
store_jint_idle_ticks(struct device
*dev
,
416 struct device_attribute
*attr
,
420 struct ipath_devdata
*dd
= dev_get_drvdata(dev
);
424 ret
= ipath_parse_ushort(buf
, &v
);
426 ipath_dev_err(dd
, "invalid jint_idle_ticks.\n");
428 dd
->ipath_f_config_jint(dd
, v
, dd
->ipath_jint_max_packets
);
433 #define DEVICE_COUNTER(name, attr) \
434 static ssize_t show_counter_##name(struct device *dev, \
435 struct device_attribute *attr, \
438 struct ipath_devdata *dd = dev_get_drvdata(dev); \
440 buf, PAGE_SIZE, "%llu\n", (unsigned long long) \
442 dd, offsetof(struct infinipath_counters, \
443 attr) / sizeof(u64))); \
445 static DEVICE_ATTR(name, S_IRUGO, show_counter_##name, NULL);
447 DEVICE_COUNTER(ib_link_downeds
, IBLinkDownedCnt
);
448 DEVICE_COUNTER(ib_link_err_recoveries
, IBLinkErrRecoveryCnt
);
449 DEVICE_COUNTER(ib_status_changes
, IBStatusChangeCnt
);
450 DEVICE_COUNTER(ib_symbol_errs
, IBSymbolErrCnt
);
451 DEVICE_COUNTER(lb_flow_stalls
, LBFlowStallCnt
);
452 DEVICE_COUNTER(lb_ints
, LBIntCnt
);
453 DEVICE_COUNTER(rx_bad_formats
, RxBadFormatCnt
);
454 DEVICE_COUNTER(rx_buf_ovfls
, RxBufOvflCnt
);
455 DEVICE_COUNTER(rx_data_pkts
, RxDataPktCnt
);
456 DEVICE_COUNTER(rx_dropped_pkts
, RxDroppedPktCnt
);
457 DEVICE_COUNTER(rx_dwords
, RxDwordCnt
);
458 DEVICE_COUNTER(rx_ebps
, RxEBPCnt
);
459 DEVICE_COUNTER(rx_flow_ctrl_errs
, RxFlowCtrlErrCnt
);
460 DEVICE_COUNTER(rx_flow_pkts
, RxFlowPktCnt
);
461 DEVICE_COUNTER(rx_icrc_errs
, RxICRCErrCnt
);
462 DEVICE_COUNTER(rx_len_errs
, RxLenErrCnt
);
463 DEVICE_COUNTER(rx_link_problems
, RxLinkProblemCnt
);
464 DEVICE_COUNTER(rx_lpcrc_errs
, RxLPCRCErrCnt
);
465 DEVICE_COUNTER(rx_max_min_len_errs
, RxMaxMinLenErrCnt
);
466 DEVICE_COUNTER(rx_p0_hdr_egr_ovfls
, RxP0HdrEgrOvflCnt
);
467 DEVICE_COUNTER(rx_p1_hdr_egr_ovfls
, RxP1HdrEgrOvflCnt
);
468 DEVICE_COUNTER(rx_p2_hdr_egr_ovfls
, RxP2HdrEgrOvflCnt
);
469 DEVICE_COUNTER(rx_p3_hdr_egr_ovfls
, RxP3HdrEgrOvflCnt
);
470 DEVICE_COUNTER(rx_p4_hdr_egr_ovfls
, RxP4HdrEgrOvflCnt
);
471 DEVICE_COUNTER(rx_p5_hdr_egr_ovfls
, RxP5HdrEgrOvflCnt
);
472 DEVICE_COUNTER(rx_p6_hdr_egr_ovfls
, RxP6HdrEgrOvflCnt
);
473 DEVICE_COUNTER(rx_p7_hdr_egr_ovfls
, RxP7HdrEgrOvflCnt
);
474 DEVICE_COUNTER(rx_p8_hdr_egr_ovfls
, RxP8HdrEgrOvflCnt
);
475 DEVICE_COUNTER(rx_pkey_mismatches
, RxPKeyMismatchCnt
);
476 DEVICE_COUNTER(rx_tid_full_errs
, RxTIDFullErrCnt
);
477 DEVICE_COUNTER(rx_tid_valid_errs
, RxTIDValidErrCnt
);
478 DEVICE_COUNTER(rx_vcrc_errs
, RxVCRCErrCnt
);
479 DEVICE_COUNTER(tx_data_pkts
, TxDataPktCnt
);
480 DEVICE_COUNTER(tx_dropped_pkts
, TxDroppedPktCnt
);
481 DEVICE_COUNTER(tx_dwords
, TxDwordCnt
);
482 DEVICE_COUNTER(tx_flow_pkts
, TxFlowPktCnt
);
483 DEVICE_COUNTER(tx_flow_stalls
, TxFlowStallCnt
);
484 DEVICE_COUNTER(tx_len_errs
, TxLenErrCnt
);
485 DEVICE_COUNTER(tx_max_min_len_errs
, TxMaxMinLenErrCnt
);
486 DEVICE_COUNTER(tx_underruns
, TxUnderrunCnt
);
487 DEVICE_COUNTER(tx_unsup_vl_errs
, TxUnsupVLErrCnt
);
489 static struct attribute
*dev_counter_attributes
[] = {
490 &dev_attr_ib_link_downeds
.attr
,
491 &dev_attr_ib_link_err_recoveries
.attr
,
492 &dev_attr_ib_status_changes
.attr
,
493 &dev_attr_ib_symbol_errs
.attr
,
494 &dev_attr_lb_flow_stalls
.attr
,
495 &dev_attr_lb_ints
.attr
,
496 &dev_attr_rx_bad_formats
.attr
,
497 &dev_attr_rx_buf_ovfls
.attr
,
498 &dev_attr_rx_data_pkts
.attr
,
499 &dev_attr_rx_dropped_pkts
.attr
,
500 &dev_attr_rx_dwords
.attr
,
501 &dev_attr_rx_ebps
.attr
,
502 &dev_attr_rx_flow_ctrl_errs
.attr
,
503 &dev_attr_rx_flow_pkts
.attr
,
504 &dev_attr_rx_icrc_errs
.attr
,
505 &dev_attr_rx_len_errs
.attr
,
506 &dev_attr_rx_link_problems
.attr
,
507 &dev_attr_rx_lpcrc_errs
.attr
,
508 &dev_attr_rx_max_min_len_errs
.attr
,
509 &dev_attr_rx_p0_hdr_egr_ovfls
.attr
,
510 &dev_attr_rx_p1_hdr_egr_ovfls
.attr
,
511 &dev_attr_rx_p2_hdr_egr_ovfls
.attr
,
512 &dev_attr_rx_p3_hdr_egr_ovfls
.attr
,
513 &dev_attr_rx_p4_hdr_egr_ovfls
.attr
,
514 &dev_attr_rx_p5_hdr_egr_ovfls
.attr
,
515 &dev_attr_rx_p6_hdr_egr_ovfls
.attr
,
516 &dev_attr_rx_p7_hdr_egr_ovfls
.attr
,
517 &dev_attr_rx_p8_hdr_egr_ovfls
.attr
,
518 &dev_attr_rx_pkey_mismatches
.attr
,
519 &dev_attr_rx_tid_full_errs
.attr
,
520 &dev_attr_rx_tid_valid_errs
.attr
,
521 &dev_attr_rx_vcrc_errs
.attr
,
522 &dev_attr_tx_data_pkts
.attr
,
523 &dev_attr_tx_dropped_pkts
.attr
,
524 &dev_attr_tx_dwords
.attr
,
525 &dev_attr_tx_flow_pkts
.attr
,
526 &dev_attr_tx_flow_stalls
.attr
,
527 &dev_attr_tx_len_errs
.attr
,
528 &dev_attr_tx_max_min_len_errs
.attr
,
529 &dev_attr_tx_underruns
.attr
,
530 &dev_attr_tx_unsup_vl_errs
.attr
,
534 static struct attribute_group dev_counter_attr_group
= {
536 .attrs
= dev_counter_attributes
539 static ssize_t
store_reset(struct device
*dev
,
540 struct device_attribute
*attr
,
544 struct ipath_devdata
*dd
= dev_get_drvdata(dev
);
547 if (count
< 5 || memcmp(buf
, "reset", 5)) {
552 if (dd
->ipath_flags
& IPATH_DISABLED
) {
554 * post-reset init would re-enable interrupts, etc.
555 * so don't allow reset on disabled devices. Not
556 * perfect error, but about the best choice.
558 dev_info(dev
,"Unit %d is disabled, can't reset\n",
563 ret
= ipath_reset_device(dd
->ipath_unit
);
565 return ret
<0 ? ret
: count
;
568 static ssize_t
store_link_state(struct device
*dev
,
569 struct device_attribute
*attr
,
573 struct ipath_devdata
*dd
= dev_get_drvdata(dev
);
577 ret
= ipath_parse_ushort(buf
, &state
);
581 r
= ipath_set_linkstate(dd
, state
);
589 ipath_dev_err(dd
, "attempt to set invalid link state\n");
594 static ssize_t
show_mtu(struct device
*dev
,
595 struct device_attribute
*attr
,
598 struct ipath_devdata
*dd
= dev_get_drvdata(dev
);
599 return scnprintf(buf
, PAGE_SIZE
, "%u\n", dd
->ipath_ibmtu
);
602 static ssize_t
store_mtu(struct device
*dev
,
603 struct device_attribute
*attr
,
607 struct ipath_devdata
*dd
= dev_get_drvdata(dev
);
612 ret
= ipath_parse_ushort(buf
, &mtu
);
616 r
= ipath_set_mtu(dd
, mtu
);
622 ipath_dev_err(dd
, "attempt to set invalid MTU\n");
627 static ssize_t
show_enabled(struct device
*dev
,
628 struct device_attribute
*attr
,
631 struct ipath_devdata
*dd
= dev_get_drvdata(dev
);
632 return scnprintf(buf
, PAGE_SIZE
, "%u\n",
633 (dd
->ipath_flags
& IPATH_DISABLED
) ? 0 : 1);
636 static ssize_t
store_enabled(struct device
*dev
,
637 struct device_attribute
*attr
,
641 struct ipath_devdata
*dd
= dev_get_drvdata(dev
);
645 ret
= ipath_parse_ushort(buf
, &enable
);
647 ipath_dev_err(dd
, "attempt to use non-numeric on enable\n");
652 if (!(dd
->ipath_flags
& IPATH_DISABLED
))
655 dev_info(dev
, "Enabling unit %d\n", dd
->ipath_unit
);
656 /* same as post-reset */
657 ret
= ipath_init_chip(dd
, 1);
659 ipath_dev_err(dd
, "Failed to enable unit %d\n",
662 dd
->ipath_flags
&= ~IPATH_DISABLED
;
663 *dd
->ipath_statusp
&= ~IPATH_STATUS_ADMIN_DISABLED
;
666 else if (!(dd
->ipath_flags
& IPATH_DISABLED
)) {
667 dev_info(dev
, "Disabling unit %d\n", dd
->ipath_unit
);
668 ipath_shutdown_device(dd
);
669 dd
->ipath_flags
|= IPATH_DISABLED
;
670 *dd
->ipath_statusp
|= IPATH_STATUS_ADMIN_DISABLED
;
677 static ssize_t
store_rx_pol_inv(struct device
*dev
,
678 struct device_attribute
*attr
,
682 struct ipath_devdata
*dd
= dev_get_drvdata(dev
);
686 ret
= ipath_parse_ushort(buf
, &val
);
690 r
= ipath_set_rx_pol_inv(dd
, val
);
698 ipath_dev_err(dd
, "attempt to set invalid Rx Polarity invert\n");
703 static ssize_t
store_led_override(struct device
*dev
,
704 struct device_attribute
*attr
,
708 struct ipath_devdata
*dd
= dev_get_drvdata(dev
);
712 ret
= ipath_parse_ushort(buf
, &val
);
714 ipath_set_led_override(dd
, val
);
716 ipath_dev_err(dd
, "attempt to set invalid LED override\n");
720 static ssize_t
show_logged_errs(struct device
*dev
,
721 struct device_attribute
*attr
,
724 struct ipath_devdata
*dd
= dev_get_drvdata(dev
);
727 /* force consistency with actual EEPROM */
728 if (ipath_update_eeprom_log(dd
) != 0)
732 for (idx
= 0; idx
< IPATH_EEP_LOG_CNT
; ++idx
) {
733 count
+= scnprintf(buf
+ count
, PAGE_SIZE
- count
, "%d%c",
734 dd
->ipath_eep_st_errs
[idx
],
735 idx
== (IPATH_EEP_LOG_CNT
- 1) ? '\n' : ' ');
742 * New sysfs entries to control various IB config. These all turn into
743 * accesses via ipath_f_get/set_ib_cfg.
745 * Get/Set heartbeat enable. Or of 1=enabled, 2=auto
747 static ssize_t
show_hrtbt_enb(struct device
*dev
,
748 struct device_attribute
*attr
,
751 struct ipath_devdata
*dd
= dev_get_drvdata(dev
);
754 ret
= dd
->ipath_f_get_ib_cfg(dd
, IPATH_IB_CFG_HRTBT
);
756 ret
= scnprintf(buf
, PAGE_SIZE
, "%d\n", ret
);
760 static ssize_t
store_hrtbt_enb(struct device
*dev
,
761 struct device_attribute
*attr
,
765 struct ipath_devdata
*dd
= dev_get_drvdata(dev
);
769 ret
= ipath_parse_ushort(buf
, &val
);
770 if (ret
>= 0 && val
> 3)
773 ipath_dev_err(dd
, "attempt to set invalid Heartbeat enable\n");
778 * Set the "intentional" heartbeat enable per either of
779 * "Enable" and "Auto", as these are normally set together.
780 * This bit is consulted when leaving loopback mode,
781 * because entering loopback mode overrides it and automatically
782 * disables heartbeat.
784 r
= dd
->ipath_f_set_ib_cfg(dd
, IPATH_IB_CFG_HRTBT
, val
);
787 else if (val
== IPATH_IB_HRTBT_OFF
)
788 dd
->ipath_flags
|= IPATH_NO_HRTBT
;
790 dd
->ipath_flags
&= ~IPATH_NO_HRTBT
;
797 * Get/Set Link-widths enabled. Or of 1=1x, 2=4x (this is human/IB centric,
798 * _not_ the particular encoding of any given chip)
800 static ssize_t
show_lwid_enb(struct device
*dev
,
801 struct device_attribute
*attr
,
804 struct ipath_devdata
*dd
= dev_get_drvdata(dev
);
807 ret
= dd
->ipath_f_get_ib_cfg(dd
, IPATH_IB_CFG_LWID_ENB
);
809 ret
= scnprintf(buf
, PAGE_SIZE
, "%d\n", ret
);
813 static ssize_t
store_lwid_enb(struct device
*dev
,
814 struct device_attribute
*attr
,
818 struct ipath_devdata
*dd
= dev_get_drvdata(dev
);
822 ret
= ipath_parse_ushort(buf
, &val
);
823 if (ret
>= 0 && (val
== 0 || val
> 3))
827 "attempt to set invalid Link Width (enable)\n");
831 r
= dd
->ipath_f_set_ib_cfg(dd
, IPATH_IB_CFG_LWID_ENB
, val
);
839 /* Get current link width */
840 static ssize_t
show_lwid(struct device
*dev
,
841 struct device_attribute
*attr
,
845 struct ipath_devdata
*dd
= dev_get_drvdata(dev
);
848 ret
= dd
->ipath_f_get_ib_cfg(dd
, IPATH_IB_CFG_LWID
);
850 ret
= scnprintf(buf
, PAGE_SIZE
, "%d\n", ret
);
855 * Get/Set Link-speeds enabled. Or of 1=SDR 2=DDR.
857 static ssize_t
show_spd_enb(struct device
*dev
,
858 struct device_attribute
*attr
,
861 struct ipath_devdata
*dd
= dev_get_drvdata(dev
);
864 ret
= dd
->ipath_f_get_ib_cfg(dd
, IPATH_IB_CFG_SPD_ENB
);
866 ret
= scnprintf(buf
, PAGE_SIZE
, "%d\n", ret
);
870 static ssize_t
store_spd_enb(struct device
*dev
,
871 struct device_attribute
*attr
,
875 struct ipath_devdata
*dd
= dev_get_drvdata(dev
);
879 ret
= ipath_parse_ushort(buf
, &val
);
880 if (ret
>= 0 && (val
== 0 || val
> (IPATH_IB_SDR
| IPATH_IB_DDR
)))
884 "attempt to set invalid Link Speed (enable)\n");
888 r
= dd
->ipath_f_set_ib_cfg(dd
, IPATH_IB_CFG_SPD_ENB
, val
);
896 /* Get current link speed */
897 static ssize_t
show_spd(struct device
*dev
,
898 struct device_attribute
*attr
,
901 struct ipath_devdata
*dd
= dev_get_drvdata(dev
);
904 ret
= dd
->ipath_f_get_ib_cfg(dd
, IPATH_IB_CFG_SPD
);
906 ret
= scnprintf(buf
, PAGE_SIZE
, "%d\n", ret
);
911 * Get/Set RX polarity-invert enable. 0=no, 1=yes.
913 static ssize_t
show_rx_polinv_enb(struct device
*dev
,
914 struct device_attribute
*attr
,
917 struct ipath_devdata
*dd
= dev_get_drvdata(dev
);
920 ret
= dd
->ipath_f_get_ib_cfg(dd
, IPATH_IB_CFG_RXPOL_ENB
);
922 ret
= scnprintf(buf
, PAGE_SIZE
, "%d\n", ret
);
926 static ssize_t
store_rx_polinv_enb(struct device
*dev
,
927 struct device_attribute
*attr
,
931 struct ipath_devdata
*dd
= dev_get_drvdata(dev
);
935 ret
= ipath_parse_ushort(buf
, &val
);
936 if (ret
>= 0 && val
> 1) {
938 "attempt to set invalid Rx Polarity (enable)\n");
943 r
= dd
->ipath_f_set_ib_cfg(dd
, IPATH_IB_CFG_RXPOL_ENB
, val
);
952 * Get/Set RX lane-reversal enable. 0=no, 1=yes.
954 static ssize_t
show_lanerev_enb(struct device
*dev
,
955 struct device_attribute
*attr
,
958 struct ipath_devdata
*dd
= dev_get_drvdata(dev
);
961 ret
= dd
->ipath_f_get_ib_cfg(dd
, IPATH_IB_CFG_LREV_ENB
);
963 ret
= scnprintf(buf
, PAGE_SIZE
, "%d\n", ret
);
967 static ssize_t
store_lanerev_enb(struct device
*dev
,
968 struct device_attribute
*attr
,
972 struct ipath_devdata
*dd
= dev_get_drvdata(dev
);
976 ret
= ipath_parse_ushort(buf
, &val
);
977 if (ret
>= 0 && val
> 1) {
980 "attempt to set invalid Lane reversal (enable)\n");
984 r
= dd
->ipath_f_set_ib_cfg(dd
, IPATH_IB_CFG_LREV_ENB
, val
);
992 static DRIVER_ATTR(num_units
, S_IRUGO
, show_num_units
, NULL
);
993 static DRIVER_ATTR(version
, S_IRUGO
, show_version
, NULL
);
995 static struct attribute
*driver_attributes
[] = {
996 &driver_attr_num_units
.attr
,
997 &driver_attr_version
.attr
,
1001 static struct attribute_group driver_attr_group
= {
1002 .attrs
= driver_attributes
1005 static ssize_t
store_tempsense(struct device
*dev
,
1006 struct device_attribute
*attr
,
1010 struct ipath_devdata
*dd
= dev_get_drvdata(dev
);
1014 ret
= ipath_parse_ushort(buf
, &val
);
1016 ipath_dev_err(dd
, "attempt to set invalid tempsense config\n");
1019 /* If anything but the highest limit, enable T_CRIT_A "interrupt" */
1020 stat
= ipath_tempsense_write(dd
, 9, (val
== 0x7f7f) ? 0x80 : 0);
1022 ipath_dev_err(dd
, "Unable to set tempsense config\n");
1026 stat
= ipath_tempsense_write(dd
, 0xB, (u8
) (val
& 0xFF));
1028 ipath_dev_err(dd
, "Unable to set local Tcrit\n");
1032 stat
= ipath_tempsense_write(dd
, 0xD, (u8
) (val
>> 8));
1034 ipath_dev_err(dd
, "Unable to set remote Tcrit\n");
1044 * dump tempsense regs. in decimal, to ease shell-scripts.
1046 static ssize_t
show_tempsense(struct device
*dev
,
1047 struct device_attribute
*attr
,
1050 struct ipath_devdata
*dd
= dev_get_drvdata(dev
);
1056 for (idx
= 0; idx
< 8; ++idx
) {
1059 ret
= ipath_tempsense_read(dd
, idx
);
1065 ret
= scnprintf(buf
, PAGE_SIZE
, "%d %d %02X %02X %d %d\n",
1066 *(signed char *)(regvals
),
1067 *(signed char *)(regvals
+ 1),
1068 regvals
[2], regvals
[3],
1069 *(signed char *)(regvals
+ 5),
1070 *(signed char *)(regvals
+ 7));
1074 const struct attribute_group
*ipath_driver_attr_groups
[] = {
1079 static DEVICE_ATTR(guid
, S_IWUSR
| S_IRUGO
, show_guid
, store_guid
);
1080 static DEVICE_ATTR(lmc
, S_IWUSR
| S_IRUGO
, show_lmc
, store_lmc
);
1081 static DEVICE_ATTR(lid
, S_IWUSR
| S_IRUGO
, show_lid
, store_lid
);
1082 static DEVICE_ATTR(link_state
, S_IWUSR
, NULL
, store_link_state
);
1083 static DEVICE_ATTR(mlid
, S_IWUSR
| S_IRUGO
, show_mlid
, store_mlid
);
1084 static DEVICE_ATTR(mtu
, S_IWUSR
| S_IRUGO
, show_mtu
, store_mtu
);
1085 static DEVICE_ATTR(enabled
, S_IWUSR
| S_IRUGO
, show_enabled
, store_enabled
);
1086 static DEVICE_ATTR(nguid
, S_IRUGO
, show_nguid
, NULL
);
1087 static DEVICE_ATTR(nports
, S_IRUGO
, show_nports
, NULL
);
1088 static DEVICE_ATTR(reset
, S_IWUSR
, NULL
, store_reset
);
1089 static DEVICE_ATTR(serial
, S_IRUGO
, show_serial
, NULL
);
1090 static DEVICE_ATTR(status
, S_IRUGO
, show_status
, NULL
);
1091 static DEVICE_ATTR(status_str
, S_IRUGO
, show_status_str
, NULL
);
1092 static DEVICE_ATTR(boardversion
, S_IRUGO
, show_boardversion
, NULL
);
1093 static DEVICE_ATTR(unit
, S_IRUGO
, show_unit
, NULL
);
1094 static DEVICE_ATTR(rx_pol_inv
, S_IWUSR
, NULL
, store_rx_pol_inv
);
1095 static DEVICE_ATTR(led_override
, S_IWUSR
, NULL
, store_led_override
);
1096 static DEVICE_ATTR(logged_errors
, S_IRUGO
, show_logged_errs
, NULL
);
1097 static DEVICE_ATTR(localbus_info
, S_IRUGO
, show_localbus_info
, NULL
);
1098 static DEVICE_ATTR(jint_max_packets
, S_IWUSR
| S_IRUGO
,
1099 show_jint_max_packets
, store_jint_max_packets
);
1100 static DEVICE_ATTR(jint_idle_ticks
, S_IWUSR
| S_IRUGO
,
1101 show_jint_idle_ticks
, store_jint_idle_ticks
);
1102 static DEVICE_ATTR(tempsense
, S_IWUSR
| S_IRUGO
,
1103 show_tempsense
, store_tempsense
);
1105 static struct attribute
*dev_attributes
[] = {
1106 &dev_attr_guid
.attr
,
1109 &dev_attr_link_state
.attr
,
1110 &dev_attr_mlid
.attr
,
1112 &dev_attr_nguid
.attr
,
1113 &dev_attr_nports
.attr
,
1114 &dev_attr_serial
.attr
,
1115 &dev_attr_status
.attr
,
1116 &dev_attr_status_str
.attr
,
1117 &dev_attr_boardversion
.attr
,
1118 &dev_attr_unit
.attr
,
1119 &dev_attr_enabled
.attr
,
1120 &dev_attr_rx_pol_inv
.attr
,
1121 &dev_attr_led_override
.attr
,
1122 &dev_attr_logged_errors
.attr
,
1123 &dev_attr_tempsense
.attr
,
1124 &dev_attr_localbus_info
.attr
,
1128 static struct attribute_group dev_attr_group
= {
1129 .attrs
= dev_attributes
1132 static DEVICE_ATTR(hrtbt_enable
, S_IWUSR
| S_IRUGO
, show_hrtbt_enb
,
1134 static DEVICE_ATTR(link_width_enable
, S_IWUSR
| S_IRUGO
, show_lwid_enb
,
1136 static DEVICE_ATTR(link_width
, S_IRUGO
, show_lwid
, NULL
);
1137 static DEVICE_ATTR(link_speed_enable
, S_IWUSR
| S_IRUGO
, show_spd_enb
,
1139 static DEVICE_ATTR(link_speed
, S_IRUGO
, show_spd
, NULL
);
1140 static DEVICE_ATTR(rx_pol_inv_enable
, S_IWUSR
| S_IRUGO
, show_rx_polinv_enb
,
1141 store_rx_polinv_enb
);
1142 static DEVICE_ATTR(rx_lane_rev_enable
, S_IWUSR
| S_IRUGO
, show_lanerev_enb
,
1145 static struct attribute
*dev_ibcfg_attributes
[] = {
1146 &dev_attr_hrtbt_enable
.attr
,
1147 &dev_attr_link_width_enable
.attr
,
1148 &dev_attr_link_width
.attr
,
1149 &dev_attr_link_speed_enable
.attr
,
1150 &dev_attr_link_speed
.attr
,
1151 &dev_attr_rx_pol_inv_enable
.attr
,
1152 &dev_attr_rx_lane_rev_enable
.attr
,
1156 static struct attribute_group dev_ibcfg_attr_group
= {
1157 .attrs
= dev_ibcfg_attributes
1161 * ipath_expose_reset - create a device reset file
1162 * @dev: the device structure
1164 * Only expose a file that lets us reset the device after someone
1165 * enters diag mode. A device reset is quite likely to crash the
1166 * machine entirely, so we don't want to normally make it
1169 * Called with ipath_mutex held.
1171 int ipath_expose_reset(struct device
*dev
)
1177 ret
= device_create_file(dev
, &dev_attr_reset
);
1186 int ipath_device_create_group(struct device
*dev
, struct ipath_devdata
*dd
)
1190 ret
= sysfs_create_group(&dev
->kobj
, &dev_attr_group
);
1194 ret
= sysfs_create_group(&dev
->kobj
, &dev_counter_attr_group
);
1198 if (dd
->ipath_flags
& IPATH_HAS_MULT_IB_SPEED
) {
1199 ret
= device_create_file(dev
, &dev_attr_jint_idle_ticks
);
1202 ret
= device_create_file(dev
, &dev_attr_jint_max_packets
);
1206 ret
= sysfs_create_group(&dev
->kobj
, &dev_ibcfg_attr_group
);
1214 device_remove_file(dev
, &dev_attr_jint_max_packets
);
1216 device_remove_file(dev
, &dev_attr_jint_idle_ticks
);
1218 sysfs_remove_group(&dev
->kobj
, &dev_counter_attr_group
);
1220 sysfs_remove_group(&dev
->kobj
, &dev_attr_group
);
1225 void ipath_device_remove_group(struct device
*dev
, struct ipath_devdata
*dd
)
1227 sysfs_remove_group(&dev
->kobj
, &dev_counter_attr_group
);
1229 if (dd
->ipath_flags
& IPATH_HAS_MULT_IB_SPEED
) {
1230 sysfs_remove_group(&dev
->kobj
, &dev_ibcfg_attr_group
);
1231 device_remove_file(dev
, &dev_attr_jint_idle_ticks
);
1232 device_remove_file(dev
, &dev_attr_jint_max_packets
);
1235 sysfs_remove_group(&dev
->kobj
, &dev_attr_group
);
1237 device_remove_file(dev
, &dev_attr_reset
);