2 * Copyright (c) 2006 QLogic, Inc. 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/pci.h>
37 #include "ipath_kernel.h"
38 #include "ipath_common.h"
41 * ipath_parse_ushort - parse an unsigned short value in an arbitrary base
42 * @str: the string containing the number
43 * @valp: where to put the result
45 * returns the number of bytes consumed, or negative value on error
47 int ipath_parse_ushort(const char *str
, unsigned short *valp
)
53 if (!isdigit(str
[0])) {
58 val
= simple_strtoul(str
, &end
, 0);
75 static ssize_t
show_version(struct device_driver
*dev
, char *buf
)
77 /* The string printed here is already newline-terminated. */
78 return scnprintf(buf
, PAGE_SIZE
, "%s", ib_ipath_version
);
81 static ssize_t
show_num_units(struct device_driver
*dev
, char *buf
)
83 return scnprintf(buf
, PAGE_SIZE
, "%d\n",
84 ipath_count_units(NULL
, NULL
, NULL
));
87 static ssize_t
show_status(struct device
*dev
,
88 struct device_attribute
*attr
,
91 struct ipath_devdata
*dd
= dev_get_drvdata(dev
);
94 if (!dd
->ipath_statusp
) {
99 ret
= scnprintf(buf
, PAGE_SIZE
, "0x%llx\n",
100 (unsigned long long) *(dd
->ipath_statusp
));
106 static const char *ipath_status_str
[] = {
110 "", /* This used to be the old "OIB_SMA" status. */
111 "", /* This used to be the old "SMA" status. */
116 "Fatal_Hardware_Error",
120 static ssize_t
show_status_str(struct device
*dev
,
121 struct device_attribute
*attr
,
124 struct ipath_devdata
*dd
= dev_get_drvdata(dev
);
129 if (!dd
->ipath_statusp
) {
134 s
= *(dd
->ipath_statusp
);
136 for (any
= i
= 0; s
&& ipath_status_str
[i
]; i
++) {
138 if (any
&& strlcat(buf
, " ", PAGE_SIZE
) >=
142 if (strlcat(buf
, ipath_status_str
[i
],
143 PAGE_SIZE
) >= PAGE_SIZE
)
150 strlcat(buf
, "\n", PAGE_SIZE
);
158 static ssize_t
show_boardversion(struct device
*dev
,
159 struct device_attribute
*attr
,
162 struct ipath_devdata
*dd
= dev_get_drvdata(dev
);
163 /* The string printed here is already newline-terminated. */
164 return scnprintf(buf
, PAGE_SIZE
, "%s", dd
->ipath_boardversion
);
167 static ssize_t
show_lid(struct device
*dev
,
168 struct device_attribute
*attr
,
171 struct ipath_devdata
*dd
= dev_get_drvdata(dev
);
173 return scnprintf(buf
, PAGE_SIZE
, "0x%x\n", dd
->ipath_lid
);
176 static ssize_t
store_lid(struct device
*dev
,
177 struct device_attribute
*attr
,
181 struct ipath_devdata
*dd
= dev_get_drvdata(dev
);
185 ret
= ipath_parse_ushort(buf
, &lid
);
189 if (lid
== 0 || lid
>= IPATH_MULTICAST_LID_BASE
) {
194 ipath_set_lid(dd
, lid
, 0);
198 ipath_dev_err(dd
, "attempt to set invalid LID 0x%x\n", lid
);
203 static ssize_t
show_mlid(struct device
*dev
,
204 struct device_attribute
*attr
,
207 struct ipath_devdata
*dd
= dev_get_drvdata(dev
);
209 return scnprintf(buf
, PAGE_SIZE
, "0x%x\n", dd
->ipath_mlid
);
212 static ssize_t
store_mlid(struct device
*dev
,
213 struct device_attribute
*attr
,
217 struct ipath_devdata
*dd
= dev_get_drvdata(dev
);
221 ret
= ipath_parse_ushort(buf
, &mlid
);
222 if (ret
< 0 || mlid
< IPATH_MULTICAST_LID_BASE
)
225 dd
->ipath_mlid
= mlid
;
229 ipath_dev_err(dd
, "attempt to set invalid MLID\n");
234 static ssize_t
show_guid(struct device
*dev
,
235 struct device_attribute
*attr
,
238 struct ipath_devdata
*dd
= dev_get_drvdata(dev
);
241 guid
= (u8
*) & (dd
->ipath_guid
);
243 return scnprintf(buf
, PAGE_SIZE
,
244 "%02x:%02x:%02x:%02x:%02x:%02x:%02x:%02x\n",
245 guid
[0], guid
[1], guid
[2], guid
[3],
246 guid
[4], guid
[5], guid
[6], guid
[7]);
249 static ssize_t
store_guid(struct device
*dev
,
250 struct device_attribute
*attr
,
254 struct ipath_devdata
*dd
= dev_get_drvdata(dev
);
256 unsigned short guid
[8];
261 if (sscanf(buf
, "%hx:%hx:%hx:%hx:%hx:%hx:%hx:%hx",
262 &guid
[0], &guid
[1], &guid
[2], &guid
[3],
263 &guid
[4], &guid
[5], &guid
[6], &guid
[7]) != 8)
266 ng
= (u8
*) &new_guid
;
268 for (i
= 0; i
< 8; i
++) {
277 dd
->ipath_guid
= new_guid
;
284 ipath_dev_err(dd
, "attempt to set invalid GUID\n");
291 static ssize_t
show_nguid(struct device
*dev
,
292 struct device_attribute
*attr
,
295 struct ipath_devdata
*dd
= dev_get_drvdata(dev
);
297 return scnprintf(buf
, PAGE_SIZE
, "%u\n", dd
->ipath_nguid
);
300 static ssize_t
show_nports(struct device
*dev
,
301 struct device_attribute
*attr
,
304 struct ipath_devdata
*dd
= dev_get_drvdata(dev
);
306 /* Return the number of user ports available. */
307 return scnprintf(buf
, PAGE_SIZE
, "%u\n", dd
->ipath_cfgports
- 1);
310 static ssize_t
show_serial(struct device
*dev
,
311 struct device_attribute
*attr
,
314 struct ipath_devdata
*dd
= dev_get_drvdata(dev
);
316 buf
[sizeof dd
->ipath_serial
] = '\0';
317 memcpy(buf
, dd
->ipath_serial
, sizeof dd
->ipath_serial
);
322 static ssize_t
show_unit(struct device
*dev
,
323 struct device_attribute
*attr
,
326 struct ipath_devdata
*dd
= dev_get_drvdata(dev
);
328 return scnprintf(buf
, PAGE_SIZE
, "%u\n", dd
->ipath_unit
);
331 #define DEVICE_COUNTER(name, attr) \
332 static ssize_t show_counter_##name(struct device *dev, \
333 struct device_attribute *attr, \
336 struct ipath_devdata *dd = dev_get_drvdata(dev); \
338 buf, PAGE_SIZE, "%llu\n", (unsigned long long) \
340 dd, offsetof(struct infinipath_counters, \
341 attr) / sizeof(u64))); \
343 static DEVICE_ATTR(name, S_IRUGO, show_counter_##name, NULL);
345 DEVICE_COUNTER(ib_link_downeds
, IBLinkDownedCnt
);
346 DEVICE_COUNTER(ib_link_err_recoveries
, IBLinkErrRecoveryCnt
);
347 DEVICE_COUNTER(ib_status_changes
, IBStatusChangeCnt
);
348 DEVICE_COUNTER(ib_symbol_errs
, IBSymbolErrCnt
);
349 DEVICE_COUNTER(lb_flow_stalls
, LBFlowStallCnt
);
350 DEVICE_COUNTER(lb_ints
, LBIntCnt
);
351 DEVICE_COUNTER(rx_bad_formats
, RxBadFormatCnt
);
352 DEVICE_COUNTER(rx_buf_ovfls
, RxBufOvflCnt
);
353 DEVICE_COUNTER(rx_data_pkts
, RxDataPktCnt
);
354 DEVICE_COUNTER(rx_dropped_pkts
, RxDroppedPktCnt
);
355 DEVICE_COUNTER(rx_dwords
, RxDwordCnt
);
356 DEVICE_COUNTER(rx_ebps
, RxEBPCnt
);
357 DEVICE_COUNTER(rx_flow_ctrl_errs
, RxFlowCtrlErrCnt
);
358 DEVICE_COUNTER(rx_flow_pkts
, RxFlowPktCnt
);
359 DEVICE_COUNTER(rx_icrc_errs
, RxICRCErrCnt
);
360 DEVICE_COUNTER(rx_len_errs
, RxLenErrCnt
);
361 DEVICE_COUNTER(rx_link_problems
, RxLinkProblemCnt
);
362 DEVICE_COUNTER(rx_lpcrc_errs
, RxLPCRCErrCnt
);
363 DEVICE_COUNTER(rx_max_min_len_errs
, RxMaxMinLenErrCnt
);
364 DEVICE_COUNTER(rx_p0_hdr_egr_ovfls
, RxP0HdrEgrOvflCnt
);
365 DEVICE_COUNTER(rx_p1_hdr_egr_ovfls
, RxP1HdrEgrOvflCnt
);
366 DEVICE_COUNTER(rx_p2_hdr_egr_ovfls
, RxP2HdrEgrOvflCnt
);
367 DEVICE_COUNTER(rx_p3_hdr_egr_ovfls
, RxP3HdrEgrOvflCnt
);
368 DEVICE_COUNTER(rx_p4_hdr_egr_ovfls
, RxP4HdrEgrOvflCnt
);
369 DEVICE_COUNTER(rx_p5_hdr_egr_ovfls
, RxP5HdrEgrOvflCnt
);
370 DEVICE_COUNTER(rx_p6_hdr_egr_ovfls
, RxP6HdrEgrOvflCnt
);
371 DEVICE_COUNTER(rx_p7_hdr_egr_ovfls
, RxP7HdrEgrOvflCnt
);
372 DEVICE_COUNTER(rx_p8_hdr_egr_ovfls
, RxP8HdrEgrOvflCnt
);
373 DEVICE_COUNTER(rx_pkey_mismatches
, RxPKeyMismatchCnt
);
374 DEVICE_COUNTER(rx_tid_full_errs
, RxTIDFullErrCnt
);
375 DEVICE_COUNTER(rx_tid_valid_errs
, RxTIDValidErrCnt
);
376 DEVICE_COUNTER(rx_vcrc_errs
, RxVCRCErrCnt
);
377 DEVICE_COUNTER(tx_data_pkts
, TxDataPktCnt
);
378 DEVICE_COUNTER(tx_dropped_pkts
, TxDroppedPktCnt
);
379 DEVICE_COUNTER(tx_dwords
, TxDwordCnt
);
380 DEVICE_COUNTER(tx_flow_pkts
, TxFlowPktCnt
);
381 DEVICE_COUNTER(tx_flow_stalls
, TxFlowStallCnt
);
382 DEVICE_COUNTER(tx_len_errs
, TxLenErrCnt
);
383 DEVICE_COUNTER(tx_max_min_len_errs
, TxMaxMinLenErrCnt
);
384 DEVICE_COUNTER(tx_underruns
, TxUnderrunCnt
);
385 DEVICE_COUNTER(tx_unsup_vl_errs
, TxUnsupVLErrCnt
);
387 static struct attribute
*dev_counter_attributes
[] = {
388 &dev_attr_ib_link_downeds
.attr
,
389 &dev_attr_ib_link_err_recoveries
.attr
,
390 &dev_attr_ib_status_changes
.attr
,
391 &dev_attr_ib_symbol_errs
.attr
,
392 &dev_attr_lb_flow_stalls
.attr
,
393 &dev_attr_lb_ints
.attr
,
394 &dev_attr_rx_bad_formats
.attr
,
395 &dev_attr_rx_buf_ovfls
.attr
,
396 &dev_attr_rx_data_pkts
.attr
,
397 &dev_attr_rx_dropped_pkts
.attr
,
398 &dev_attr_rx_dwords
.attr
,
399 &dev_attr_rx_ebps
.attr
,
400 &dev_attr_rx_flow_ctrl_errs
.attr
,
401 &dev_attr_rx_flow_pkts
.attr
,
402 &dev_attr_rx_icrc_errs
.attr
,
403 &dev_attr_rx_len_errs
.attr
,
404 &dev_attr_rx_link_problems
.attr
,
405 &dev_attr_rx_lpcrc_errs
.attr
,
406 &dev_attr_rx_max_min_len_errs
.attr
,
407 &dev_attr_rx_p0_hdr_egr_ovfls
.attr
,
408 &dev_attr_rx_p1_hdr_egr_ovfls
.attr
,
409 &dev_attr_rx_p2_hdr_egr_ovfls
.attr
,
410 &dev_attr_rx_p3_hdr_egr_ovfls
.attr
,
411 &dev_attr_rx_p4_hdr_egr_ovfls
.attr
,
412 &dev_attr_rx_p5_hdr_egr_ovfls
.attr
,
413 &dev_attr_rx_p6_hdr_egr_ovfls
.attr
,
414 &dev_attr_rx_p7_hdr_egr_ovfls
.attr
,
415 &dev_attr_rx_p8_hdr_egr_ovfls
.attr
,
416 &dev_attr_rx_pkey_mismatches
.attr
,
417 &dev_attr_rx_tid_full_errs
.attr
,
418 &dev_attr_rx_tid_valid_errs
.attr
,
419 &dev_attr_rx_vcrc_errs
.attr
,
420 &dev_attr_tx_data_pkts
.attr
,
421 &dev_attr_tx_dropped_pkts
.attr
,
422 &dev_attr_tx_dwords
.attr
,
423 &dev_attr_tx_flow_pkts
.attr
,
424 &dev_attr_tx_flow_stalls
.attr
,
425 &dev_attr_tx_len_errs
.attr
,
426 &dev_attr_tx_max_min_len_errs
.attr
,
427 &dev_attr_tx_underruns
.attr
,
428 &dev_attr_tx_unsup_vl_errs
.attr
,
432 static struct attribute_group dev_counter_attr_group
= {
434 .attrs
= dev_counter_attributes
437 static ssize_t
store_reset(struct device
*dev
,
438 struct device_attribute
*attr
,
442 struct ipath_devdata
*dd
= dev_get_drvdata(dev
);
445 if (count
< 5 || memcmp(buf
, "reset", 5)) {
450 if (dd
->ipath_flags
& IPATH_DISABLED
) {
452 * post-reset init would re-enable interrupts, etc.
453 * so don't allow reset on disabled devices. Not
454 * perfect error, but about the best choice.
456 dev_info(dev
,"Unit %d is disabled, can't reset\n",
460 ret
= ipath_reset_device(dd
->ipath_unit
);
462 return ret
<0 ? ret
: count
;
465 static ssize_t
store_link_state(struct device
*dev
,
466 struct device_attribute
*attr
,
470 struct ipath_devdata
*dd
= dev_get_drvdata(dev
);
474 ret
= ipath_parse_ushort(buf
, &state
);
478 r
= ipath_set_linkstate(dd
, state
);
486 ipath_dev_err(dd
, "attempt to set invalid link state\n");
491 static ssize_t
show_mtu(struct device
*dev
,
492 struct device_attribute
*attr
,
495 struct ipath_devdata
*dd
= dev_get_drvdata(dev
);
496 return scnprintf(buf
, PAGE_SIZE
, "%u\n", dd
->ipath_ibmtu
);
499 static ssize_t
store_mtu(struct device
*dev
,
500 struct device_attribute
*attr
,
504 struct ipath_devdata
*dd
= dev_get_drvdata(dev
);
509 ret
= ipath_parse_ushort(buf
, &mtu
);
513 r
= ipath_set_mtu(dd
, mtu
);
519 ipath_dev_err(dd
, "attempt to set invalid MTU\n");
524 static ssize_t
show_enabled(struct device
*dev
,
525 struct device_attribute
*attr
,
528 struct ipath_devdata
*dd
= dev_get_drvdata(dev
);
529 return scnprintf(buf
, PAGE_SIZE
, "%u\n",
530 (dd
->ipath_flags
& IPATH_DISABLED
) ? 0 : 1);
533 static ssize_t
store_enabled(struct device
*dev
,
534 struct device_attribute
*attr
,
538 struct ipath_devdata
*dd
= dev_get_drvdata(dev
);
542 ret
= ipath_parse_ushort(buf
, &enable
);
544 ipath_dev_err(dd
, "attempt to use non-numeric on enable\n");
549 if (!(dd
->ipath_flags
& IPATH_DISABLED
))
552 dev_info(dev
, "Enabling unit %d\n", dd
->ipath_unit
);
553 /* same as post-reset */
554 ret
= ipath_init_chip(dd
, 1);
556 ipath_dev_err(dd
, "Failed to enable unit %d\n",
559 dd
->ipath_flags
&= ~IPATH_DISABLED
;
560 *dd
->ipath_statusp
&= ~IPATH_STATUS_ADMIN_DISABLED
;
563 else if (!(dd
->ipath_flags
& IPATH_DISABLED
)) {
564 dev_info(dev
, "Disabling unit %d\n", dd
->ipath_unit
);
565 ipath_shutdown_device(dd
);
566 dd
->ipath_flags
|= IPATH_DISABLED
;
567 *dd
->ipath_statusp
|= IPATH_STATUS_ADMIN_DISABLED
;
574 static ssize_t
store_rx_pol_inv(struct device
*dev
,
575 struct device_attribute
*attr
,
579 struct ipath_devdata
*dd
= dev_get_drvdata(dev
);
583 ret
= ipath_parse_ushort(buf
, &val
);
587 r
= ipath_set_rx_pol_inv(dd
, val
);
595 ipath_dev_err(dd
, "attempt to set invalid Rx Polarity invert\n");
601 static DRIVER_ATTR(num_units
, S_IRUGO
, show_num_units
, NULL
);
602 static DRIVER_ATTR(version
, S_IRUGO
, show_version
, NULL
);
604 static struct attribute
*driver_attributes
[] = {
605 &driver_attr_num_units
.attr
,
606 &driver_attr_version
.attr
,
610 static struct attribute_group driver_attr_group
= {
611 .attrs
= driver_attributes
614 static DEVICE_ATTR(guid
, S_IWUSR
| S_IRUGO
, show_guid
, store_guid
);
615 static DEVICE_ATTR(lid
, S_IWUSR
| S_IRUGO
, show_lid
, store_lid
);
616 static DEVICE_ATTR(link_state
, S_IWUSR
, NULL
, store_link_state
);
617 static DEVICE_ATTR(mlid
, S_IWUSR
| S_IRUGO
, show_mlid
, store_mlid
);
618 static DEVICE_ATTR(mtu
, S_IWUSR
| S_IRUGO
, show_mtu
, store_mtu
);
619 static DEVICE_ATTR(enabled
, S_IWUSR
| S_IRUGO
, show_enabled
, store_enabled
);
620 static DEVICE_ATTR(nguid
, S_IRUGO
, show_nguid
, NULL
);
621 static DEVICE_ATTR(nports
, S_IRUGO
, show_nports
, NULL
);
622 static DEVICE_ATTR(reset
, S_IWUSR
, NULL
, store_reset
);
623 static DEVICE_ATTR(serial
, S_IRUGO
, show_serial
, NULL
);
624 static DEVICE_ATTR(status
, S_IRUGO
, show_status
, NULL
);
625 static DEVICE_ATTR(status_str
, S_IRUGO
, show_status_str
, NULL
);
626 static DEVICE_ATTR(boardversion
, S_IRUGO
, show_boardversion
, NULL
);
627 static DEVICE_ATTR(unit
, S_IRUGO
, show_unit
, NULL
);
628 static DEVICE_ATTR(rx_pol_inv
, S_IWUSR
, NULL
, store_rx_pol_inv
);
630 static struct attribute
*dev_attributes
[] = {
633 &dev_attr_link_state
.attr
,
636 &dev_attr_nguid
.attr
,
637 &dev_attr_nports
.attr
,
638 &dev_attr_serial
.attr
,
639 &dev_attr_status
.attr
,
640 &dev_attr_status_str
.attr
,
641 &dev_attr_boardversion
.attr
,
643 &dev_attr_enabled
.attr
,
644 &dev_attr_rx_pol_inv
.attr
,
648 static struct attribute_group dev_attr_group
= {
649 .attrs
= dev_attributes
653 * ipath_expose_reset - create a device reset file
654 * @dev: the device structure
656 * Only expose a file that lets us reset the device after someone
657 * enters diag mode. A device reset is quite likely to crash the
658 * machine entirely, so we don't want to normally make it
661 * Called with ipath_mutex held.
663 int ipath_expose_reset(struct device
*dev
)
669 ret
= device_create_file(dev
, &dev_attr_reset
);
678 int ipath_driver_create_group(struct device_driver
*drv
)
682 ret
= sysfs_create_group(&drv
->kobj
, &driver_attr_group
);
687 void ipath_driver_remove_group(struct device_driver
*drv
)
689 sysfs_remove_group(&drv
->kobj
, &driver_attr_group
);
692 int ipath_device_create_group(struct device
*dev
, struct ipath_devdata
*dd
)
697 ret
= sysfs_create_group(&dev
->kobj
, &dev_attr_group
);
701 ret
= sysfs_create_group(&dev
->kobj
, &dev_counter_attr_group
);
705 snprintf(unit
, sizeof(unit
), "%02d", dd
->ipath_unit
);
706 ret
= sysfs_create_link(&dev
->driver
->kobj
, &dev
->kobj
, unit
);
710 sysfs_remove_group(&dev
->kobj
, &dev_counter_attr_group
);
712 sysfs_remove_group(&dev
->kobj
, &dev_attr_group
);
717 void ipath_device_remove_group(struct device
*dev
, struct ipath_devdata
*dd
)
721 snprintf(unit
, sizeof(unit
), "%02d", dd
->ipath_unit
);
722 sysfs_remove_link(&dev
->driver
->kobj
, unit
);
724 sysfs_remove_group(&dev
->kobj
, &dev_counter_attr_group
);
725 sysfs_remove_group(&dev
->kobj
, &dev_attr_group
);
727 device_remove_file(dev
, &dev_attr_reset
);