Linux-2.6.12-rc2
[linux-2.6/linux-acpi-2.6/ibm-acpi-2.6.git] / drivers / s390 / net / qeth_sys.c
blob24034839821112cf06ae12eb6190af90a9225124
1 /*
3 * linux/drivers/s390/net/qeth_sys.c ($Revision: 1.51 $)
5 * Linux on zSeries OSA Express and HiperSockets support
6 * This file contains code related to sysfs.
8 * Copyright 2000,2003 IBM Corporation
10 * Author(s): Thomas Spatzier <tspat@de.ibm.com>
11 * Frank Pavlic <pavlic@de.ibm.com>
14 #include <linux/list.h>
15 #include <linux/rwsem.h>
17 #include <asm/ebcdic.h>
19 #include "qeth.h"
20 #include "qeth_mpc.h"
21 #include "qeth_fs.h"
23 const char *VERSION_QETH_SYS_C = "$Revision: 1.51 $";
25 /*****************************************************************************/
26 /* */
27 /* /sys-fs stuff UNDER DEVELOPMENT !!! */
28 /* */
29 /*****************************************************************************/
30 //low/high watermark
32 static ssize_t
33 qeth_dev_state_show(struct device *dev, char *buf)
35 struct qeth_card *card = dev->driver_data;
36 if (!card)
37 return -EINVAL;
39 switch (card->state) {
40 case CARD_STATE_DOWN:
41 return sprintf(buf, "DOWN\n");
42 case CARD_STATE_HARDSETUP:
43 return sprintf(buf, "HARDSETUP\n");
44 case CARD_STATE_SOFTSETUP:
45 return sprintf(buf, "SOFTSETUP\n");
46 case CARD_STATE_UP:
47 if (card->lan_online)
48 return sprintf(buf, "UP (LAN ONLINE)\n");
49 else
50 return sprintf(buf, "UP (LAN OFFLINE)\n");
51 case CARD_STATE_RECOVER:
52 return sprintf(buf, "RECOVER\n");
53 default:
54 return sprintf(buf, "UNKNOWN\n");
58 static DEVICE_ATTR(state, 0444, qeth_dev_state_show, NULL);
60 static ssize_t
61 qeth_dev_chpid_show(struct device *dev, char *buf)
63 struct qeth_card *card = dev->driver_data;
64 if (!card)
65 return -EINVAL;
67 return sprintf(buf, "%02X\n", card->info.chpid);
70 static DEVICE_ATTR(chpid, 0444, qeth_dev_chpid_show, NULL);
72 static ssize_t
73 qeth_dev_if_name_show(struct device *dev, char *buf)
75 struct qeth_card *card = dev->driver_data;
76 if (!card)
77 return -EINVAL;
78 return sprintf(buf, "%s\n", QETH_CARD_IFNAME(card));
81 static DEVICE_ATTR(if_name, 0444, qeth_dev_if_name_show, NULL);
83 static ssize_t
84 qeth_dev_card_type_show(struct device *dev, char *buf)
86 struct qeth_card *card = dev->driver_data;
87 if (!card)
88 return -EINVAL;
90 return sprintf(buf, "%s\n", qeth_get_cardname_short(card));
93 static DEVICE_ATTR(card_type, 0444, qeth_dev_card_type_show, NULL);
95 static ssize_t
96 qeth_dev_portno_show(struct device *dev, char *buf)
98 struct qeth_card *card = dev->driver_data;
99 if (!card)
100 return -EINVAL;
102 return sprintf(buf, "%i\n", card->info.portno);
105 static ssize_t
106 qeth_dev_portno_store(struct device *dev, const char *buf, size_t count)
108 struct qeth_card *card = dev->driver_data;
109 char *tmp;
110 unsigned int portno;
112 if (!card)
113 return -EINVAL;
115 if ((card->state != CARD_STATE_DOWN) &&
116 (card->state != CARD_STATE_RECOVER))
117 return -EPERM;
119 portno = simple_strtoul(buf, &tmp, 16);
120 if ((portno < 0) || (portno > MAX_PORTNO)){
121 PRINT_WARN("portno 0x%X is out of range\n", portno);
122 return -EINVAL;
125 card->info.portno = portno;
126 return count;
129 static DEVICE_ATTR(portno, 0644, qeth_dev_portno_show, qeth_dev_portno_store);
131 static ssize_t
132 qeth_dev_portname_show(struct device *dev, char *buf)
134 struct qeth_card *card = dev->driver_data;
135 char portname[9] = {0, };
137 if (!card)
138 return -EINVAL;
140 if (card->info.portname_required) {
141 memcpy(portname, card->info.portname + 1, 8);
142 EBCASC(portname, 8);
143 return sprintf(buf, "%s\n", portname);
144 } else
145 return sprintf(buf, "no portname required\n");
148 static ssize_t
149 qeth_dev_portname_store(struct device *dev, const char *buf, size_t count)
151 struct qeth_card *card = dev->driver_data;
152 char *tmp;
153 int i;
155 if (!card)
156 return -EINVAL;
158 if ((card->state != CARD_STATE_DOWN) &&
159 (card->state != CARD_STATE_RECOVER))
160 return -EPERM;
162 tmp = strsep((char **) &buf, "\n");
163 if ((strlen(tmp) > 8) || (strlen(tmp) < 2))
164 return -EINVAL;
166 card->info.portname[0] = strlen(tmp);
167 /* for beauty reasons */
168 for (i = 1; i < 9; i++)
169 card->info.portname[i] = ' ';
170 strcpy(card->info.portname + 1, tmp);
171 ASCEBC(card->info.portname + 1, 8);
173 return count;
176 static DEVICE_ATTR(portname, 0644, qeth_dev_portname_show,
177 qeth_dev_portname_store);
179 static ssize_t
180 qeth_dev_checksum_show(struct device *dev, char *buf)
182 struct qeth_card *card = dev->driver_data;
184 if (!card)
185 return -EINVAL;
187 return sprintf(buf, "%s checksumming\n", qeth_get_checksum_str(card));
190 static ssize_t
191 qeth_dev_checksum_store(struct device *dev, const char *buf, size_t count)
193 struct qeth_card *card = dev->driver_data;
194 char *tmp;
196 if (!card)
197 return -EINVAL;
199 if ((card->state != CARD_STATE_DOWN) &&
200 (card->state != CARD_STATE_RECOVER))
201 return -EPERM;
203 tmp = strsep((char **) &buf, "\n");
204 if (!strcmp(tmp, "sw_checksumming"))
205 card->options.checksum_type = SW_CHECKSUMMING;
206 else if (!strcmp(tmp, "hw_checksumming"))
207 card->options.checksum_type = HW_CHECKSUMMING;
208 else if (!strcmp(tmp, "no_checksumming"))
209 card->options.checksum_type = NO_CHECKSUMMING;
210 else {
211 PRINT_WARN("Unknown checksumming type '%s'\n", tmp);
212 return -EINVAL;
214 return count;
217 static DEVICE_ATTR(checksumming, 0644, qeth_dev_checksum_show,
218 qeth_dev_checksum_store);
220 static ssize_t
221 qeth_dev_prioqing_show(struct device *dev, char *buf)
223 struct qeth_card *card = dev->driver_data;
225 if (!card)
226 return -EINVAL;
228 switch (card->qdio.do_prio_queueing) {
229 case QETH_PRIO_Q_ING_PREC:
230 return sprintf(buf, "%s\n", "by precedence");
231 case QETH_PRIO_Q_ING_TOS:
232 return sprintf(buf, "%s\n", "by type of service");
233 default:
234 return sprintf(buf, "always queue %i\n",
235 card->qdio.default_out_queue);
239 static ssize_t
240 qeth_dev_prioqing_store(struct device *dev, const char *buf, size_t count)
242 struct qeth_card *card = dev->driver_data;
243 char *tmp;
245 if (!card)
246 return -EINVAL;
248 if ((card->state != CARD_STATE_DOWN) &&
249 (card->state != CARD_STATE_RECOVER))
250 return -EPERM;
252 /* check if 1920 devices are supported ,
253 * if though we have to permit priority queueing
255 if (card->qdio.no_out_queues == 1) {
256 PRINT_WARN("Priority queueing disabled due "
257 "to hardware limitations!\n");
258 card->qdio.do_prio_queueing = QETH_PRIOQ_DEFAULT;
259 return -EPERM;
262 tmp = strsep((char **) &buf, "\n");
263 if (!strcmp(tmp, "prio_queueing_prec"))
264 card->qdio.do_prio_queueing = QETH_PRIO_Q_ING_PREC;
265 else if (!strcmp(tmp, "prio_queueing_tos"))
266 card->qdio.do_prio_queueing = QETH_PRIO_Q_ING_TOS;
267 else if (!strcmp(tmp, "no_prio_queueing:0")) {
268 card->qdio.do_prio_queueing = QETH_NO_PRIO_QUEUEING;
269 card->qdio.default_out_queue = 0;
270 } else if (!strcmp(tmp, "no_prio_queueing:1")) {
271 card->qdio.do_prio_queueing = QETH_NO_PRIO_QUEUEING;
272 card->qdio.default_out_queue = 1;
273 } else if (!strcmp(tmp, "no_prio_queueing:2")) {
274 card->qdio.do_prio_queueing = QETH_NO_PRIO_QUEUEING;
275 card->qdio.default_out_queue = 2;
276 } else if (!strcmp(tmp, "no_prio_queueing:3")) {
277 card->qdio.do_prio_queueing = QETH_NO_PRIO_QUEUEING;
278 card->qdio.default_out_queue = 3;
279 } else if (!strcmp(tmp, "no_prio_queueing")) {
280 card->qdio.do_prio_queueing = QETH_NO_PRIO_QUEUEING;
281 card->qdio.default_out_queue = QETH_DEFAULT_QUEUE;
282 } else {
283 PRINT_WARN("Unknown queueing type '%s'\n", tmp);
284 return -EINVAL;
286 return count;
289 static DEVICE_ATTR(priority_queueing, 0644, qeth_dev_prioqing_show,
290 qeth_dev_prioqing_store);
292 static ssize_t
293 qeth_dev_bufcnt_show(struct device *dev, char *buf)
295 struct qeth_card *card = dev->driver_data;
297 if (!card)
298 return -EINVAL;
300 return sprintf(buf, "%i\n", card->qdio.in_buf_pool.buf_count);
303 static ssize_t
304 qeth_dev_bufcnt_store(struct device *dev, const char *buf, size_t count)
306 struct qeth_card *card = dev->driver_data;
307 char *tmp;
308 int cnt, old_cnt;
309 int rc;
311 if (!card)
312 return -EINVAL;
314 if ((card->state != CARD_STATE_DOWN) &&
315 (card->state != CARD_STATE_RECOVER))
316 return -EPERM;
318 old_cnt = card->qdio.in_buf_pool.buf_count;
319 cnt = simple_strtoul(buf, &tmp, 10);
320 cnt = (cnt < QETH_IN_BUF_COUNT_MIN) ? QETH_IN_BUF_COUNT_MIN :
321 ((cnt > QETH_IN_BUF_COUNT_MAX) ? QETH_IN_BUF_COUNT_MAX : cnt);
322 if (old_cnt != cnt) {
323 if ((rc = qeth_realloc_buffer_pool(card, cnt)))
324 PRINT_WARN("Error (%d) while setting "
325 "buffer count.\n", rc);
327 return count;
330 static DEVICE_ATTR(buffer_count, 0644, qeth_dev_bufcnt_show,
331 qeth_dev_bufcnt_store);
333 static inline ssize_t
334 qeth_dev_route_show(struct qeth_card *card, struct qeth_routing_info *route,
335 char *buf)
337 switch (route->type) {
338 case PRIMARY_ROUTER:
339 return sprintf(buf, "%s\n", "primary router");
340 case SECONDARY_ROUTER:
341 return sprintf(buf, "%s\n", "secondary router");
342 case MULTICAST_ROUTER:
343 if (card->info.broadcast_capable == QETH_BROADCAST_WITHOUT_ECHO)
344 return sprintf(buf, "%s\n", "multicast router+");
345 else
346 return sprintf(buf, "%s\n", "multicast router");
347 case PRIMARY_CONNECTOR:
348 if (card->info.broadcast_capable == QETH_BROADCAST_WITHOUT_ECHO)
349 return sprintf(buf, "%s\n", "primary connector+");
350 else
351 return sprintf(buf, "%s\n", "primary connector");
352 case SECONDARY_CONNECTOR:
353 if (card->info.broadcast_capable == QETH_BROADCAST_WITHOUT_ECHO)
354 return sprintf(buf, "%s\n", "secondary connector+");
355 else
356 return sprintf(buf, "%s\n", "secondary connector");
357 default:
358 return sprintf(buf, "%s\n", "no");
362 static ssize_t
363 qeth_dev_route4_show(struct device *dev, char *buf)
365 struct qeth_card *card = dev->driver_data;
367 if (!card)
368 return -EINVAL;
370 return qeth_dev_route_show(card, &card->options.route4, buf);
373 static inline ssize_t
374 qeth_dev_route_store(struct qeth_card *card, struct qeth_routing_info *route,
375 enum qeth_prot_versions prot, const char *buf, size_t count)
377 enum qeth_routing_types old_route_type = route->type;
378 char *tmp;
379 int rc;
381 tmp = strsep((char **) &buf, "\n");
383 if (!strcmp(tmp, "no_router")){
384 route->type = NO_ROUTER;
385 } else if (!strcmp(tmp, "primary_connector")) {
386 route->type = PRIMARY_CONNECTOR;
387 } else if (!strcmp(tmp, "secondary_connector")) {
388 route->type = SECONDARY_CONNECTOR;
389 } else if (!strcmp(tmp, "multicast_router")) {
390 route->type = MULTICAST_ROUTER;
391 } else if (!strcmp(tmp, "primary_router")) {
392 route->type = PRIMARY_ROUTER;
393 } else if (!strcmp(tmp, "secondary_router")) {
394 route->type = SECONDARY_ROUTER;
395 } else if (!strcmp(tmp, "multicast_router")) {
396 route->type = MULTICAST_ROUTER;
397 } else {
398 PRINT_WARN("Invalid routing type '%s'.\n", tmp);
399 return -EINVAL;
401 if (((card->state == CARD_STATE_SOFTSETUP) ||
402 (card->state == CARD_STATE_UP)) &&
403 (old_route_type != route->type)){
404 if (prot == QETH_PROT_IPV4)
405 rc = qeth_setrouting_v4(card);
406 else if (prot == QETH_PROT_IPV6)
407 rc = qeth_setrouting_v6(card);
409 return count;
412 static ssize_t
413 qeth_dev_route4_store(struct device *dev, const char *buf, size_t count)
415 struct qeth_card *card = dev->driver_data;
417 if (!card)
418 return -EINVAL;
420 return qeth_dev_route_store(card, &card->options.route4,
421 QETH_PROT_IPV4, buf, count);
424 static DEVICE_ATTR(route4, 0644, qeth_dev_route4_show, qeth_dev_route4_store);
426 #ifdef CONFIG_QETH_IPV6
427 static ssize_t
428 qeth_dev_route6_show(struct device *dev, char *buf)
430 struct qeth_card *card = dev->driver_data;
432 if (!card)
433 return -EINVAL;
435 if (!qeth_is_supported(card, IPA_IPV6))
436 return sprintf(buf, "%s\n", "n/a");
438 return qeth_dev_route_show(card, &card->options.route6, buf);
441 static ssize_t
442 qeth_dev_route6_store(struct device *dev, const char *buf, size_t count)
444 struct qeth_card *card = dev->driver_data;
446 if (!card)
447 return -EINVAL;
449 if (!qeth_is_supported(card, IPA_IPV6)){
450 PRINT_WARN("IPv6 not supported for interface %s.\n"
451 "Routing status no changed.\n",
452 QETH_CARD_IFNAME(card));
453 return -ENOTSUPP;
456 return qeth_dev_route_store(card, &card->options.route6,
457 QETH_PROT_IPV6, buf, count);
460 static DEVICE_ATTR(route6, 0644, qeth_dev_route6_show, qeth_dev_route6_store);
461 #endif
463 static ssize_t
464 qeth_dev_add_hhlen_show(struct device *dev, char *buf)
466 struct qeth_card *card = dev->driver_data;
468 if (!card)
469 return -EINVAL;
471 return sprintf(buf, "%i\n", card->options.add_hhlen);
474 static ssize_t
475 qeth_dev_add_hhlen_store(struct device *dev, const char *buf, size_t count)
477 struct qeth_card *card = dev->driver_data;
478 char *tmp;
479 int i;
481 if (!card)
482 return -EINVAL;
484 if ((card->state != CARD_STATE_DOWN) &&
485 (card->state != CARD_STATE_RECOVER))
486 return -EPERM;
488 i = simple_strtoul(buf, &tmp, 10);
489 if ((i < 0) || (i > MAX_ADD_HHLEN)) {
490 PRINT_WARN("add_hhlen out of range\n");
491 return -EINVAL;
493 card->options.add_hhlen = i;
495 return count;
498 static DEVICE_ATTR(add_hhlen, 0644, qeth_dev_add_hhlen_show,
499 qeth_dev_add_hhlen_store);
501 static ssize_t
502 qeth_dev_fake_ll_show(struct device *dev, char *buf)
504 struct qeth_card *card = dev->driver_data;
506 if (!card)
507 return -EINVAL;
509 return sprintf(buf, "%i\n", card->options.fake_ll? 1:0);
512 static ssize_t
513 qeth_dev_fake_ll_store(struct device *dev, const char *buf, size_t count)
515 struct qeth_card *card = dev->driver_data;
516 char *tmp;
517 int i;
519 if (!card)
520 return -EINVAL;
522 if ((card->state != CARD_STATE_DOWN) &&
523 (card->state != CARD_STATE_RECOVER))
524 return -EPERM;
526 i = simple_strtoul(buf, &tmp, 16);
527 if ((i != 0) && (i != 1)) {
528 PRINT_WARN("fake_ll: write 0 or 1 to this file!\n");
529 return -EINVAL;
531 card->options.fake_ll = i;
532 return count;
535 static DEVICE_ATTR(fake_ll, 0644, qeth_dev_fake_ll_show,
536 qeth_dev_fake_ll_store);
538 static ssize_t
539 qeth_dev_fake_broadcast_show(struct device *dev, char *buf)
541 struct qeth_card *card = dev->driver_data;
543 if (!card)
544 return -EINVAL;
546 return sprintf(buf, "%i\n", card->options.fake_broadcast? 1:0);
549 static ssize_t
550 qeth_dev_fake_broadcast_store(struct device *dev, const char *buf, size_t count)
552 struct qeth_card *card = dev->driver_data;
553 char *tmp;
554 int i;
556 if (!card)
557 return -EINVAL;
559 if ((card->state != CARD_STATE_DOWN) &&
560 (card->state != CARD_STATE_RECOVER))
561 return -EPERM;
563 i = simple_strtoul(buf, &tmp, 16);
564 if ((i == 0) || (i == 1))
565 card->options.fake_broadcast = i;
566 else {
567 PRINT_WARN("fake_broadcast: write 0 or 1 to this file!\n");
568 return -EINVAL;
570 return count;
573 static DEVICE_ATTR(fake_broadcast, 0644, qeth_dev_fake_broadcast_show,
574 qeth_dev_fake_broadcast_store);
576 static ssize_t
577 qeth_dev_recover_store(struct device *dev, const char *buf, size_t count)
579 struct qeth_card *card = dev->driver_data;
580 char *tmp;
581 int i;
583 if (!card)
584 return -EINVAL;
586 if (card->state != CARD_STATE_UP)
587 return -EPERM;
589 i = simple_strtoul(buf, &tmp, 16);
590 if (i == 1)
591 qeth_schedule_recovery(card);
593 return count;
596 static DEVICE_ATTR(recover, 0200, NULL, qeth_dev_recover_store);
598 static ssize_t
599 qeth_dev_broadcast_mode_show(struct device *dev, char *buf)
601 struct qeth_card *card = dev->driver_data;
603 if (!card)
604 return -EINVAL;
606 if (!((card->info.link_type == QETH_LINK_TYPE_HSTR) ||
607 (card->info.link_type == QETH_LINK_TYPE_LANE_TR)))
608 return sprintf(buf, "n/a\n");
610 return sprintf(buf, "%s\n", (card->options.broadcast_mode ==
611 QETH_TR_BROADCAST_ALLRINGS)?
612 "all rings":"local");
615 static ssize_t
616 qeth_dev_broadcast_mode_store(struct device *dev, const char *buf, size_t count)
618 struct qeth_card *card = dev->driver_data;
619 char *tmp;
621 if (!card)
622 return -EINVAL;
624 if ((card->state != CARD_STATE_DOWN) &&
625 (card->state != CARD_STATE_RECOVER))
626 return -EPERM;
628 if (!((card->info.link_type == QETH_LINK_TYPE_HSTR) ||
629 (card->info.link_type == QETH_LINK_TYPE_LANE_TR))){
630 PRINT_WARN("Device is not a tokenring device!\n");
631 return -EINVAL;
634 tmp = strsep((char **) &buf, "\n");
636 if (!strcmp(tmp, "local")){
637 card->options.broadcast_mode = QETH_TR_BROADCAST_LOCAL;
638 return count;
639 } else if (!strcmp(tmp, "all_rings")) {
640 card->options.broadcast_mode = QETH_TR_BROADCAST_ALLRINGS;
641 return count;
642 } else {
643 PRINT_WARN("broadcast_mode: invalid mode %s!\n",
644 tmp);
645 return -EINVAL;
647 return count;
650 static DEVICE_ATTR(broadcast_mode, 0644, qeth_dev_broadcast_mode_show,
651 qeth_dev_broadcast_mode_store);
653 static ssize_t
654 qeth_dev_canonical_macaddr_show(struct device *dev, char *buf)
656 struct qeth_card *card = dev->driver_data;
658 if (!card)
659 return -EINVAL;
661 if (!((card->info.link_type == QETH_LINK_TYPE_HSTR) ||
662 (card->info.link_type == QETH_LINK_TYPE_LANE_TR)))
663 return sprintf(buf, "n/a\n");
665 return sprintf(buf, "%i\n", (card->options.macaddr_mode ==
666 QETH_TR_MACADDR_CANONICAL)? 1:0);
669 static ssize_t
670 qeth_dev_canonical_macaddr_store(struct device *dev, const char *buf,
671 size_t count)
673 struct qeth_card *card = dev->driver_data;
674 char *tmp;
675 int i;
677 if (!card)
678 return -EINVAL;
680 if ((card->state != CARD_STATE_DOWN) &&
681 (card->state != CARD_STATE_RECOVER))
682 return -EPERM;
684 if (!((card->info.link_type == QETH_LINK_TYPE_HSTR) ||
685 (card->info.link_type == QETH_LINK_TYPE_LANE_TR))){
686 PRINT_WARN("Device is not a tokenring device!\n");
687 return -EINVAL;
690 i = simple_strtoul(buf, &tmp, 16);
691 if ((i == 0) || (i == 1))
692 card->options.macaddr_mode = i?
693 QETH_TR_MACADDR_CANONICAL :
694 QETH_TR_MACADDR_NONCANONICAL;
695 else {
696 PRINT_WARN("canonical_macaddr: write 0 or 1 to this file!\n");
697 return -EINVAL;
699 return count;
702 static DEVICE_ATTR(canonical_macaddr, 0644, qeth_dev_canonical_macaddr_show,
703 qeth_dev_canonical_macaddr_store);
705 static ssize_t
706 qeth_dev_layer2_show(struct device *dev, char *buf)
708 struct qeth_card *card = dev->driver_data;
710 if (!card)
711 return -EINVAL;
713 return sprintf(buf, "%i\n", card->options.layer2 ? 1:0);
716 static ssize_t
717 qeth_dev_layer2_store(struct device *dev, const char *buf, size_t count)
719 struct qeth_card *card = dev->driver_data;
720 char *tmp;
721 int i;
723 if (!card)
724 return -EINVAL;
726 if (((card->state != CARD_STATE_DOWN) &&
727 (card->state != CARD_STATE_RECOVER)) ||
728 (card->info.type != QETH_CARD_TYPE_OSAE))
729 return -EPERM;
731 i = simple_strtoul(buf, &tmp, 16);
732 if ((i == 0) || (i == 1))
733 card->options.layer2 = i;
734 else {
735 PRINT_WARN("layer2: write 0 or 1 to this file!\n");
736 return -EINVAL;
738 return count;
741 static DEVICE_ATTR(layer2, 0644, qeth_dev_layer2_show,
742 qeth_dev_layer2_store);
744 static ssize_t
745 qeth_dev_large_send_show(struct device *dev, char *buf)
747 struct qeth_card *card = dev->driver_data;
749 if (!card)
750 return -EINVAL;
752 switch (card->options.large_send) {
753 case QETH_LARGE_SEND_NO:
754 return sprintf(buf, "%s\n", "no");
755 case QETH_LARGE_SEND_EDDP:
756 return sprintf(buf, "%s\n", "EDDP");
757 case QETH_LARGE_SEND_TSO:
758 return sprintf(buf, "%s\n", "TSO");
759 default:
760 return sprintf(buf, "%s\n", "N/A");
764 static ssize_t
765 qeth_dev_large_send_store(struct device *dev, const char *buf, size_t count)
767 struct qeth_card *card = dev->driver_data;
768 enum qeth_large_send_types type;
769 int rc = 0;
770 char *tmp;
772 if (!card)
773 return -EINVAL;
775 tmp = strsep((char **) &buf, "\n");
777 if (!strcmp(tmp, "no")){
778 type = QETH_LARGE_SEND_NO;
779 } else if (!strcmp(tmp, "EDDP")) {
780 type = QETH_LARGE_SEND_EDDP;
781 } else if (!strcmp(tmp, "TSO")) {
782 type = QETH_LARGE_SEND_TSO;
783 } else {
784 PRINT_WARN("large_send: invalid mode %s!\n", tmp);
785 return -EINVAL;
787 if (card->options.large_send == type)
788 return count;
789 card->options.large_send = type;
790 if ((rc = qeth_set_large_send(card)))
791 return rc;
793 return count;
796 static DEVICE_ATTR(large_send, 0644, qeth_dev_large_send_show,
797 qeth_dev_large_send_store);
799 static ssize_t
800 qeth_dev_blkt_show(char *buf, struct qeth_card *card, int value )
803 if (!card)
804 return -EINVAL;
806 return sprintf(buf, "%i\n", value);
809 static ssize_t
810 qeth_dev_blkt_store(struct qeth_card *card, const char *buf, size_t count,
811 int *value, int max_value)
813 char *tmp;
814 int i;
816 if (!card)
817 return -EINVAL;
819 if ((card->state != CARD_STATE_DOWN) &&
820 (card->state != CARD_STATE_RECOVER))
821 return -EPERM;
823 i = simple_strtoul(buf, &tmp, 10);
824 if (i <= max_value) {
825 *value = i;
826 } else {
827 PRINT_WARN("blkt total time: write values between"
828 " 0 and %d to this file!\n", max_value);
829 return -EINVAL;
831 return count;
834 static ssize_t
835 qeth_dev_blkt_total_show(struct device *dev, char *buf)
837 struct qeth_card *card = dev->driver_data;
839 return qeth_dev_blkt_show(buf, card, card->info.blkt.time_total);
843 static ssize_t
844 qeth_dev_blkt_total_store(struct device *dev, const char *buf, size_t count)
846 struct qeth_card *card = dev->driver_data;
848 return qeth_dev_blkt_store(card, buf, count,
849 &card->info.blkt.time_total,1000);
854 static DEVICE_ATTR(total, 0644, qeth_dev_blkt_total_show,
855 qeth_dev_blkt_total_store);
857 static ssize_t
858 qeth_dev_blkt_inter_show(struct device *dev, char *buf)
860 struct qeth_card *card = dev->driver_data;
862 return qeth_dev_blkt_show(buf, card, card->info.blkt.inter_packet);
866 static ssize_t
867 qeth_dev_blkt_inter_store(struct device *dev, const char *buf, size_t count)
869 struct qeth_card *card = dev->driver_data;
871 return qeth_dev_blkt_store(card, buf, count,
872 &card->info.blkt.inter_packet,100);
875 static DEVICE_ATTR(inter, 0644, qeth_dev_blkt_inter_show,
876 qeth_dev_blkt_inter_store);
878 static ssize_t
879 qeth_dev_blkt_inter_jumbo_show(struct device *dev, char *buf)
881 struct qeth_card *card = dev->driver_data;
883 return qeth_dev_blkt_show(buf, card,
884 card->info.blkt.inter_packet_jumbo);
888 static ssize_t
889 qeth_dev_blkt_inter_jumbo_store(struct device *dev, const char *buf, size_t count)
891 struct qeth_card *card = dev->driver_data;
893 return qeth_dev_blkt_store(card, buf, count,
894 &card->info.blkt.inter_packet_jumbo,100);
897 static DEVICE_ATTR(inter_jumbo, 0644, qeth_dev_blkt_inter_jumbo_show,
898 qeth_dev_blkt_inter_jumbo_store);
900 static struct device_attribute * qeth_blkt_device_attrs[] = {
901 &dev_attr_total,
902 &dev_attr_inter,
903 &dev_attr_inter_jumbo,
904 NULL,
907 static struct attribute_group qeth_device_blkt_group = {
908 .name = "blkt",
909 .attrs = (struct attribute **)qeth_blkt_device_attrs,
912 static struct device_attribute * qeth_device_attrs[] = {
913 &dev_attr_state,
914 &dev_attr_chpid,
915 &dev_attr_if_name,
916 &dev_attr_card_type,
917 &dev_attr_portno,
918 &dev_attr_portname,
919 &dev_attr_checksumming,
920 &dev_attr_priority_queueing,
921 &dev_attr_buffer_count,
922 &dev_attr_route4,
923 #ifdef CONFIG_QETH_IPV6
924 &dev_attr_route6,
925 #endif
926 &dev_attr_add_hhlen,
927 &dev_attr_fake_ll,
928 &dev_attr_fake_broadcast,
929 &dev_attr_recover,
930 &dev_attr_broadcast_mode,
931 &dev_attr_canonical_macaddr,
932 &dev_attr_layer2,
933 &dev_attr_large_send,
934 NULL,
937 static struct attribute_group qeth_device_attr_group = {
938 .attrs = (struct attribute **)qeth_device_attrs,
942 #define QETH_DEVICE_ATTR(_id,_name,_mode,_show,_store) \
943 struct device_attribute dev_attr_##_id = { \
944 .attr = {.name=__stringify(_name), .mode=_mode, .owner=THIS_MODULE },\
945 .show = _show, \
946 .store = _store, \
950 qeth_check_layer2(struct qeth_card *card)
952 if (card->options.layer2)
953 return -EPERM;
954 return 0;
958 static ssize_t
959 qeth_dev_ipato_enable_show(struct device *dev, char *buf)
961 struct qeth_card *card = dev->driver_data;
963 if (!card)
964 return -EINVAL;
966 if (qeth_check_layer2(card))
967 return -EPERM;
968 return sprintf(buf, "%i\n", card->ipato.enabled? 1:0);
971 static ssize_t
972 qeth_dev_ipato_enable_store(struct device *dev, const char *buf, size_t count)
974 struct qeth_card *card = dev->driver_data;
975 char *tmp;
977 if (!card)
978 return -EINVAL;
980 if ((card->state != CARD_STATE_DOWN) &&
981 (card->state != CARD_STATE_RECOVER))
982 return -EPERM;
984 if (qeth_check_layer2(card))
985 return -EPERM;
987 tmp = strsep((char **) &buf, "\n");
988 if (!strcmp(tmp, "toggle")){
989 card->ipato.enabled = (card->ipato.enabled)? 0 : 1;
990 } else if (!strcmp(tmp, "1")){
991 card->ipato.enabled = 1;
992 } else if (!strcmp(tmp, "0")){
993 card->ipato.enabled = 0;
994 } else {
995 PRINT_WARN("ipato_enable: write 0, 1 or 'toggle' to "
996 "this file\n");
997 return -EINVAL;
999 return count;
1002 static QETH_DEVICE_ATTR(ipato_enable, enable, 0644,
1003 qeth_dev_ipato_enable_show,
1004 qeth_dev_ipato_enable_store);
1006 static ssize_t
1007 qeth_dev_ipato_invert4_show(struct device *dev, char *buf)
1009 struct qeth_card *card = dev->driver_data;
1011 if (!card)
1012 return -EINVAL;
1014 if (qeth_check_layer2(card))
1015 return -EPERM;
1017 return sprintf(buf, "%i\n", card->ipato.invert4? 1:0);
1020 static ssize_t
1021 qeth_dev_ipato_invert4_store(struct device *dev, const char *buf, size_t count)
1023 struct qeth_card *card = dev->driver_data;
1024 char *tmp;
1026 if (!card)
1027 return -EINVAL;
1029 if (qeth_check_layer2(card))
1030 return -EPERM;
1032 tmp = strsep((char **) &buf, "\n");
1033 if (!strcmp(tmp, "toggle")){
1034 card->ipato.invert4 = (card->ipato.invert4)? 0 : 1;
1035 } else if (!strcmp(tmp, "1")){
1036 card->ipato.invert4 = 1;
1037 } else if (!strcmp(tmp, "0")){
1038 card->ipato.invert4 = 0;
1039 } else {
1040 PRINT_WARN("ipato_invert4: write 0, 1 or 'toggle' to "
1041 "this file\n");
1042 return -EINVAL;
1044 return count;
1047 static QETH_DEVICE_ATTR(ipato_invert4, invert4, 0644,
1048 qeth_dev_ipato_invert4_show,
1049 qeth_dev_ipato_invert4_store);
1051 static inline ssize_t
1052 qeth_dev_ipato_add_show(char *buf, struct qeth_card *card,
1053 enum qeth_prot_versions proto)
1055 struct qeth_ipato_entry *ipatoe;
1056 unsigned long flags;
1057 char addr_str[40];
1058 int entry_len; /* length of 1 entry string, differs between v4 and v6 */
1059 int i = 0;
1061 if (qeth_check_layer2(card))
1062 return -EPERM;
1064 entry_len = (proto == QETH_PROT_IPV4)? 12 : 40;
1065 /* add strlen for "/<mask>\n" */
1066 entry_len += (proto == QETH_PROT_IPV4)? 5 : 6;
1067 spin_lock_irqsave(&card->ip_lock, flags);
1068 list_for_each_entry(ipatoe, &card->ipato.entries, entry){
1069 if (ipatoe->proto != proto)
1070 continue;
1071 /* String must not be longer than PAGE_SIZE. So we check if
1072 * string length gets near PAGE_SIZE. Then we can savely display
1073 * the next IPv6 address (worst case, compared to IPv4) */
1074 if ((PAGE_SIZE - i) <= entry_len)
1075 break;
1076 qeth_ipaddr_to_string(proto, ipatoe->addr, addr_str);
1077 i += snprintf(buf + i, PAGE_SIZE - i,
1078 "%s/%i\n", addr_str, ipatoe->mask_bits);
1080 spin_unlock_irqrestore(&card->ip_lock, flags);
1081 i += snprintf(buf + i, PAGE_SIZE - i, "\n");
1083 return i;
1086 static ssize_t
1087 qeth_dev_ipato_add4_show(struct device *dev, char *buf)
1089 struct qeth_card *card = dev->driver_data;
1091 if (!card)
1092 return -EINVAL;
1094 return qeth_dev_ipato_add_show(buf, card, QETH_PROT_IPV4);
1097 static inline int
1098 qeth_parse_ipatoe(const char* buf, enum qeth_prot_versions proto,
1099 u8 *addr, int *mask_bits)
1101 const char *start, *end;
1102 char *tmp;
1103 char buffer[49] = {0, };
1105 start = buf;
1106 /* get address string */
1107 end = strchr(start, '/');
1108 if (!end){
1109 PRINT_WARN("Invalid format for ipato_addx/delx. "
1110 "Use <ip addr>/<mask bits>\n");
1111 return -EINVAL;
1113 strncpy(buffer, start, end - start);
1114 if (qeth_string_to_ipaddr(buffer, proto, addr)){
1115 PRINT_WARN("Invalid IP address format!\n");
1116 return -EINVAL;
1118 start = end + 1;
1119 *mask_bits = simple_strtoul(start, &tmp, 10);
1121 return 0;
1124 static inline ssize_t
1125 qeth_dev_ipato_add_store(const char *buf, size_t count,
1126 struct qeth_card *card, enum qeth_prot_versions proto)
1128 struct qeth_ipato_entry *ipatoe;
1129 u8 addr[16];
1130 int mask_bits;
1131 int rc;
1133 if (qeth_check_layer2(card))
1134 return -EPERM;
1135 if ((rc = qeth_parse_ipatoe(buf, proto, addr, &mask_bits)))
1136 return rc;
1138 if (!(ipatoe = kmalloc(sizeof(struct qeth_ipato_entry), GFP_KERNEL))){
1139 PRINT_WARN("No memory to allocate ipato entry\n");
1140 return -ENOMEM;
1142 memset(ipatoe, 0, sizeof(struct qeth_ipato_entry));
1143 ipatoe->proto = proto;
1144 memcpy(ipatoe->addr, addr, (proto == QETH_PROT_IPV4)? 4:16);
1145 ipatoe->mask_bits = mask_bits;
1147 if ((rc = qeth_add_ipato_entry(card, ipatoe))){
1148 kfree(ipatoe);
1149 return rc;
1152 return count;
1155 static ssize_t
1156 qeth_dev_ipato_add4_store(struct device *dev, const char *buf, size_t count)
1158 struct qeth_card *card = dev->driver_data;
1160 if (!card)
1161 return -EINVAL;
1163 return qeth_dev_ipato_add_store(buf, count, card, QETH_PROT_IPV4);
1166 static QETH_DEVICE_ATTR(ipato_add4, add4, 0644,
1167 qeth_dev_ipato_add4_show,
1168 qeth_dev_ipato_add4_store);
1170 static inline ssize_t
1171 qeth_dev_ipato_del_store(const char *buf, size_t count,
1172 struct qeth_card *card, enum qeth_prot_versions proto)
1174 u8 addr[16];
1175 int mask_bits;
1176 int rc;
1178 if (qeth_check_layer2(card))
1179 return -EPERM;
1180 if ((rc = qeth_parse_ipatoe(buf, proto, addr, &mask_bits)))
1181 return rc;
1183 qeth_del_ipato_entry(card, proto, addr, mask_bits);
1185 return count;
1188 static ssize_t
1189 qeth_dev_ipato_del4_store(struct device *dev, const char *buf, size_t count)
1191 struct qeth_card *card = dev->driver_data;
1193 if (!card)
1194 return -EINVAL;
1196 return qeth_dev_ipato_del_store(buf, count, card, QETH_PROT_IPV4);
1199 static QETH_DEVICE_ATTR(ipato_del4, del4, 0200, NULL,
1200 qeth_dev_ipato_del4_store);
1202 #ifdef CONFIG_QETH_IPV6
1203 static ssize_t
1204 qeth_dev_ipato_invert6_show(struct device *dev, char *buf)
1206 struct qeth_card *card = dev->driver_data;
1208 if (!card)
1209 return -EINVAL;
1211 if (qeth_check_layer2(card))
1212 return -EPERM;
1214 return sprintf(buf, "%i\n", card->ipato.invert6? 1:0);
1217 static ssize_t
1218 qeth_dev_ipato_invert6_store(struct device *dev, const char *buf, size_t count)
1220 struct qeth_card *card = dev->driver_data;
1221 char *tmp;
1223 if (!card)
1224 return -EINVAL;
1226 if (qeth_check_layer2(card))
1227 return -EPERM;
1229 tmp = strsep((char **) &buf, "\n");
1230 if (!strcmp(tmp, "toggle")){
1231 card->ipato.invert6 = (card->ipato.invert6)? 0 : 1;
1232 } else if (!strcmp(tmp, "1")){
1233 card->ipato.invert6 = 1;
1234 } else if (!strcmp(tmp, "0")){
1235 card->ipato.invert6 = 0;
1236 } else {
1237 PRINT_WARN("ipato_invert6: write 0, 1 or 'toggle' to "
1238 "this file\n");
1239 return -EINVAL;
1241 return count;
1244 static QETH_DEVICE_ATTR(ipato_invert6, invert6, 0644,
1245 qeth_dev_ipato_invert6_show,
1246 qeth_dev_ipato_invert6_store);
1249 static ssize_t
1250 qeth_dev_ipato_add6_show(struct device *dev, char *buf)
1252 struct qeth_card *card = dev->driver_data;
1254 if (!card)
1255 return -EINVAL;
1257 return qeth_dev_ipato_add_show(buf, card, QETH_PROT_IPV6);
1260 static ssize_t
1261 qeth_dev_ipato_add6_store(struct device *dev, const char *buf, size_t count)
1263 struct qeth_card *card = dev->driver_data;
1265 if (!card)
1266 return -EINVAL;
1268 return qeth_dev_ipato_add_store(buf, count, card, QETH_PROT_IPV6);
1271 static QETH_DEVICE_ATTR(ipato_add6, add6, 0644,
1272 qeth_dev_ipato_add6_show,
1273 qeth_dev_ipato_add6_store);
1275 static ssize_t
1276 qeth_dev_ipato_del6_store(struct device *dev, const char *buf, size_t count)
1278 struct qeth_card *card = dev->driver_data;
1280 if (!card)
1281 return -EINVAL;
1283 return qeth_dev_ipato_del_store(buf, count, card, QETH_PROT_IPV6);
1286 static QETH_DEVICE_ATTR(ipato_del6, del6, 0200, NULL,
1287 qeth_dev_ipato_del6_store);
1288 #endif /* CONFIG_QETH_IPV6 */
1290 static struct device_attribute * qeth_ipato_device_attrs[] = {
1291 &dev_attr_ipato_enable,
1292 &dev_attr_ipato_invert4,
1293 &dev_attr_ipato_add4,
1294 &dev_attr_ipato_del4,
1295 #ifdef CONFIG_QETH_IPV6
1296 &dev_attr_ipato_invert6,
1297 &dev_attr_ipato_add6,
1298 &dev_attr_ipato_del6,
1299 #endif
1300 NULL,
1303 static struct attribute_group qeth_device_ipato_group = {
1304 .name = "ipa_takeover",
1305 .attrs = (struct attribute **)qeth_ipato_device_attrs,
1308 static inline ssize_t
1309 qeth_dev_vipa_add_show(char *buf, struct qeth_card *card,
1310 enum qeth_prot_versions proto)
1312 struct qeth_ipaddr *ipaddr;
1313 char addr_str[40];
1314 int entry_len; /* length of 1 entry string, differs between v4 and v6 */
1315 unsigned long flags;
1316 int i = 0;
1318 if (qeth_check_layer2(card))
1319 return -EPERM;
1321 entry_len = (proto == QETH_PROT_IPV4)? 12 : 40;
1322 entry_len += 2; /* \n + terminator */
1323 spin_lock_irqsave(&card->ip_lock, flags);
1324 list_for_each_entry(ipaddr, &card->ip_list, entry){
1325 if (ipaddr->proto != proto)
1326 continue;
1327 if (ipaddr->type != QETH_IP_TYPE_VIPA)
1328 continue;
1329 /* String must not be longer than PAGE_SIZE. So we check if
1330 * string length gets near PAGE_SIZE. Then we can savely display
1331 * the next IPv6 address (worst case, compared to IPv4) */
1332 if ((PAGE_SIZE - i) <= entry_len)
1333 break;
1334 qeth_ipaddr_to_string(proto, (const u8 *)&ipaddr->u, addr_str);
1335 i += snprintf(buf + i, PAGE_SIZE - i, "%s\n", addr_str);
1337 spin_unlock_irqrestore(&card->ip_lock, flags);
1338 i += snprintf(buf + i, PAGE_SIZE - i, "\n");
1340 return i;
1343 static ssize_t
1344 qeth_dev_vipa_add4_show(struct device *dev, char *buf)
1346 struct qeth_card *card = dev->driver_data;
1348 if (!card)
1349 return -EINVAL;
1351 return qeth_dev_vipa_add_show(buf, card, QETH_PROT_IPV4);
1354 static inline int
1355 qeth_parse_vipae(const char* buf, enum qeth_prot_versions proto,
1356 u8 *addr)
1358 if (qeth_string_to_ipaddr(buf, proto, addr)){
1359 PRINT_WARN("Invalid IP address format!\n");
1360 return -EINVAL;
1362 return 0;
1365 static inline ssize_t
1366 qeth_dev_vipa_add_store(const char *buf, size_t count,
1367 struct qeth_card *card, enum qeth_prot_versions proto)
1369 u8 addr[16] = {0, };
1370 int rc;
1372 if (qeth_check_layer2(card))
1373 return -EPERM;
1374 if ((rc = qeth_parse_vipae(buf, proto, addr)))
1375 return rc;
1377 if ((rc = qeth_add_vipa(card, proto, addr)))
1378 return rc;
1380 return count;
1383 static ssize_t
1384 qeth_dev_vipa_add4_store(struct device *dev, const char *buf, size_t count)
1386 struct qeth_card *card = dev->driver_data;
1388 if (!card)
1389 return -EINVAL;
1391 return qeth_dev_vipa_add_store(buf, count, card, QETH_PROT_IPV4);
1394 static QETH_DEVICE_ATTR(vipa_add4, add4, 0644,
1395 qeth_dev_vipa_add4_show,
1396 qeth_dev_vipa_add4_store);
1398 static inline ssize_t
1399 qeth_dev_vipa_del_store(const char *buf, size_t count,
1400 struct qeth_card *card, enum qeth_prot_versions proto)
1402 u8 addr[16];
1403 int rc;
1405 if (qeth_check_layer2(card))
1406 return -EPERM;
1407 if ((rc = qeth_parse_vipae(buf, proto, addr)))
1408 return rc;
1410 qeth_del_vipa(card, proto, addr);
1412 return count;
1415 static ssize_t
1416 qeth_dev_vipa_del4_store(struct device *dev, const char *buf, size_t count)
1418 struct qeth_card *card = dev->driver_data;
1420 if (!card)
1421 return -EINVAL;
1423 return qeth_dev_vipa_del_store(buf, count, card, QETH_PROT_IPV4);
1426 static QETH_DEVICE_ATTR(vipa_del4, del4, 0200, NULL,
1427 qeth_dev_vipa_del4_store);
1429 #ifdef CONFIG_QETH_IPV6
1430 static ssize_t
1431 qeth_dev_vipa_add6_show(struct device *dev, char *buf)
1433 struct qeth_card *card = dev->driver_data;
1435 if (!card)
1436 return -EINVAL;
1438 return qeth_dev_vipa_add_show(buf, card, QETH_PROT_IPV6);
1441 static ssize_t
1442 qeth_dev_vipa_add6_store(struct device *dev, const char *buf, size_t count)
1444 struct qeth_card *card = dev->driver_data;
1446 if (!card)
1447 return -EINVAL;
1449 return qeth_dev_vipa_add_store(buf, count, card, QETH_PROT_IPV6);
1452 static QETH_DEVICE_ATTR(vipa_add6, add6, 0644,
1453 qeth_dev_vipa_add6_show,
1454 qeth_dev_vipa_add6_store);
1456 static ssize_t
1457 qeth_dev_vipa_del6_store(struct device *dev, const char *buf, size_t count)
1459 struct qeth_card *card = dev->driver_data;
1461 if (!card)
1462 return -EINVAL;
1464 if (qeth_check_layer2(card))
1465 return -EPERM;
1467 return qeth_dev_vipa_del_store(buf, count, card, QETH_PROT_IPV6);
1470 static QETH_DEVICE_ATTR(vipa_del6, del6, 0200, NULL,
1471 qeth_dev_vipa_del6_store);
1472 #endif /* CONFIG_QETH_IPV6 */
1474 static struct device_attribute * qeth_vipa_device_attrs[] = {
1475 &dev_attr_vipa_add4,
1476 &dev_attr_vipa_del4,
1477 #ifdef CONFIG_QETH_IPV6
1478 &dev_attr_vipa_add6,
1479 &dev_attr_vipa_del6,
1480 #endif
1481 NULL,
1484 static struct attribute_group qeth_device_vipa_group = {
1485 .name = "vipa",
1486 .attrs = (struct attribute **)qeth_vipa_device_attrs,
1489 static inline ssize_t
1490 qeth_dev_rxip_add_show(char *buf, struct qeth_card *card,
1491 enum qeth_prot_versions proto)
1493 struct qeth_ipaddr *ipaddr;
1494 char addr_str[40];
1495 int entry_len; /* length of 1 entry string, differs between v4 and v6 */
1496 unsigned long flags;
1497 int i = 0;
1499 if (qeth_check_layer2(card))
1500 return -EPERM;
1502 entry_len = (proto == QETH_PROT_IPV4)? 12 : 40;
1503 entry_len += 2; /* \n + terminator */
1504 spin_lock_irqsave(&card->ip_lock, flags);
1505 list_for_each_entry(ipaddr, &card->ip_list, entry){
1506 if (ipaddr->proto != proto)
1507 continue;
1508 if (ipaddr->type != QETH_IP_TYPE_RXIP)
1509 continue;
1510 /* String must not be longer than PAGE_SIZE. So we check if
1511 * string length gets near PAGE_SIZE. Then we can savely display
1512 * the next IPv6 address (worst case, compared to IPv4) */
1513 if ((PAGE_SIZE - i) <= entry_len)
1514 break;
1515 qeth_ipaddr_to_string(proto, (const u8 *)&ipaddr->u, addr_str);
1516 i += snprintf(buf + i, PAGE_SIZE - i, "%s\n", addr_str);
1518 spin_unlock_irqrestore(&card->ip_lock, flags);
1519 i += snprintf(buf + i, PAGE_SIZE - i, "\n");
1521 return i;
1524 static ssize_t
1525 qeth_dev_rxip_add4_show(struct device *dev, char *buf)
1527 struct qeth_card *card = dev->driver_data;
1529 if (!card)
1530 return -EINVAL;
1532 return qeth_dev_rxip_add_show(buf, card, QETH_PROT_IPV4);
1535 static inline int
1536 qeth_parse_rxipe(const char* buf, enum qeth_prot_versions proto,
1537 u8 *addr)
1539 if (qeth_string_to_ipaddr(buf, proto, addr)){
1540 PRINT_WARN("Invalid IP address format!\n");
1541 return -EINVAL;
1543 return 0;
1546 static inline ssize_t
1547 qeth_dev_rxip_add_store(const char *buf, size_t count,
1548 struct qeth_card *card, enum qeth_prot_versions proto)
1550 u8 addr[16] = {0, };
1551 int rc;
1553 if (qeth_check_layer2(card))
1554 return -EPERM;
1555 if ((rc = qeth_parse_rxipe(buf, proto, addr)))
1556 return rc;
1558 if ((rc = qeth_add_rxip(card, proto, addr)))
1559 return rc;
1561 return count;
1564 static ssize_t
1565 qeth_dev_rxip_add4_store(struct device *dev, const char *buf, size_t count)
1567 struct qeth_card *card = dev->driver_data;
1569 if (!card)
1570 return -EINVAL;
1572 return qeth_dev_rxip_add_store(buf, count, card, QETH_PROT_IPV4);
1575 static QETH_DEVICE_ATTR(rxip_add4, add4, 0644,
1576 qeth_dev_rxip_add4_show,
1577 qeth_dev_rxip_add4_store);
1579 static inline ssize_t
1580 qeth_dev_rxip_del_store(const char *buf, size_t count,
1581 struct qeth_card *card, enum qeth_prot_versions proto)
1583 u8 addr[16];
1584 int rc;
1586 if (qeth_check_layer2(card))
1587 return -EPERM;
1588 if ((rc = qeth_parse_rxipe(buf, proto, addr)))
1589 return rc;
1591 qeth_del_rxip(card, proto, addr);
1593 return count;
1596 static ssize_t
1597 qeth_dev_rxip_del4_store(struct device *dev, const char *buf, size_t count)
1599 struct qeth_card *card = dev->driver_data;
1601 if (!card)
1602 return -EINVAL;
1604 return qeth_dev_rxip_del_store(buf, count, card, QETH_PROT_IPV4);
1607 static QETH_DEVICE_ATTR(rxip_del4, del4, 0200, NULL,
1608 qeth_dev_rxip_del4_store);
1610 #ifdef CONFIG_QETH_IPV6
1611 static ssize_t
1612 qeth_dev_rxip_add6_show(struct device *dev, char *buf)
1614 struct qeth_card *card = dev->driver_data;
1616 if (!card)
1617 return -EINVAL;
1619 return qeth_dev_rxip_add_show(buf, card, QETH_PROT_IPV6);
1622 static ssize_t
1623 qeth_dev_rxip_add6_store(struct device *dev, const char *buf, size_t count)
1625 struct qeth_card *card = dev->driver_data;
1627 if (!card)
1628 return -EINVAL;
1630 return qeth_dev_rxip_add_store(buf, count, card, QETH_PROT_IPV6);
1633 static QETH_DEVICE_ATTR(rxip_add6, add6, 0644,
1634 qeth_dev_rxip_add6_show,
1635 qeth_dev_rxip_add6_store);
1637 static ssize_t
1638 qeth_dev_rxip_del6_store(struct device *dev, const char *buf, size_t count)
1640 struct qeth_card *card = dev->driver_data;
1642 if (!card)
1643 return -EINVAL;
1645 return qeth_dev_rxip_del_store(buf, count, card, QETH_PROT_IPV6);
1648 static QETH_DEVICE_ATTR(rxip_del6, del6, 0200, NULL,
1649 qeth_dev_rxip_del6_store);
1650 #endif /* CONFIG_QETH_IPV6 */
1652 static struct device_attribute * qeth_rxip_device_attrs[] = {
1653 &dev_attr_rxip_add4,
1654 &dev_attr_rxip_del4,
1655 #ifdef CONFIG_QETH_IPV6
1656 &dev_attr_rxip_add6,
1657 &dev_attr_rxip_del6,
1658 #endif
1659 NULL,
1662 static struct attribute_group qeth_device_rxip_group = {
1663 .name = "rxip",
1664 .attrs = (struct attribute **)qeth_rxip_device_attrs,
1668 qeth_create_device_attributes(struct device *dev)
1670 int ret;
1672 if ((ret = sysfs_create_group(&dev->kobj, &qeth_device_attr_group)))
1673 return ret;
1674 if ((ret = sysfs_create_group(&dev->kobj, &qeth_device_ipato_group))){
1675 sysfs_remove_group(&dev->kobj, &qeth_device_attr_group);
1676 return ret;
1678 if ((ret = sysfs_create_group(&dev->kobj, &qeth_device_vipa_group))){
1679 sysfs_remove_group(&dev->kobj, &qeth_device_attr_group);
1680 sysfs_remove_group(&dev->kobj, &qeth_device_ipato_group);
1681 return ret;
1683 if ((ret = sysfs_create_group(&dev->kobj, &qeth_device_rxip_group))){
1684 sysfs_remove_group(&dev->kobj, &qeth_device_attr_group);
1685 sysfs_remove_group(&dev->kobj, &qeth_device_ipato_group);
1686 sysfs_remove_group(&dev->kobj, &qeth_device_vipa_group);
1688 if ((ret = sysfs_create_group(&dev->kobj, &qeth_device_blkt_group)))
1689 return ret;
1691 return ret;
1694 void
1695 qeth_remove_device_attributes(struct device *dev)
1697 sysfs_remove_group(&dev->kobj, &qeth_device_attr_group);
1698 sysfs_remove_group(&dev->kobj, &qeth_device_ipato_group);
1699 sysfs_remove_group(&dev->kobj, &qeth_device_vipa_group);
1700 sysfs_remove_group(&dev->kobj, &qeth_device_rxip_group);
1701 sysfs_remove_group(&dev->kobj, &qeth_device_blkt_group);
1704 /**********************/
1705 /* DRIVER ATTRIBUTES */
1706 /**********************/
1707 static ssize_t
1708 qeth_driver_group_store(struct device_driver *ddrv, const char *buf,
1709 size_t count)
1711 const char *start, *end;
1712 char bus_ids[3][BUS_ID_SIZE], *argv[3];
1713 int i;
1714 int err;
1716 start = buf;
1717 for (i = 0; i < 3; i++) {
1718 static const char delim[] = { ',', ',', '\n' };
1719 int len;
1721 if (!(end = strchr(start, delim[i])))
1722 return -EINVAL;
1723 len = min_t(ptrdiff_t, BUS_ID_SIZE, end - start);
1724 strncpy(bus_ids[i], start, len);
1725 bus_ids[i][len] = '\0';
1726 start = end + 1;
1727 argv[i] = bus_ids[i];
1729 err = ccwgroup_create(qeth_root_dev, qeth_ccwgroup_driver.driver_id,
1730 &qeth_ccw_driver, 3, argv);
1731 if (err)
1732 return err;
1733 else
1734 return count;
1738 static DRIVER_ATTR(group, 0200, 0, qeth_driver_group_store);
1740 static ssize_t
1741 qeth_driver_notifier_register_store(struct device_driver *ddrv, const char *buf,
1742 size_t count)
1744 int rc;
1745 int signum;
1746 char *tmp, *tmp2;
1748 tmp = strsep((char **) &buf, "\n");
1749 if (!strncmp(tmp, "unregister", 10)){
1750 if ((rc = qeth_notifier_unregister(current)))
1751 return rc;
1752 return count;
1755 signum = simple_strtoul(tmp, &tmp2, 10);
1756 if ((signum < 0) || (signum > 32)){
1757 PRINT_WARN("Signal number %d is out of range\n", signum);
1758 return -EINVAL;
1760 if ((rc = qeth_notifier_register(current, signum)))
1761 return rc;
1763 return count;
1766 static DRIVER_ATTR(notifier_register, 0200, 0,
1767 qeth_driver_notifier_register_store);
1770 qeth_create_driver_attributes(void)
1772 int rc;
1774 if ((rc = driver_create_file(&qeth_ccwgroup_driver.driver,
1775 &driver_attr_group)))
1776 return rc;
1777 return driver_create_file(&qeth_ccwgroup_driver.driver,
1778 &driver_attr_notifier_register);
1781 void
1782 qeth_remove_driver_attributes(void)
1784 driver_remove_file(&qeth_ccwgroup_driver.driver,
1785 &driver_attr_group);
1786 driver_remove_file(&qeth_ccwgroup_driver.driver,
1787 &driver_attr_notifier_register);