[PATCH] w1: Make w1 connector notifications depend on connector.
[linux-2.6/verdex.git] / drivers / s390 / net / qeth_sys.c
blob185a9cfbcbdc76cff6128a60f1be96fb4bf6d743
1 /*
3 * linux/drivers/s390/net/qeth_sys.c
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 <fpavlic@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 /*****************************************************************************/
24 /* */
25 /* /sys-fs stuff UNDER DEVELOPMENT !!! */
26 /* */
27 /*****************************************************************************/
28 //low/high watermark
30 static ssize_t
31 qeth_dev_state_show(struct device *dev, struct device_attribute *attr, char *buf)
33 struct qeth_card *card = dev->driver_data;
34 if (!card)
35 return -EINVAL;
37 switch (card->state) {
38 case CARD_STATE_DOWN:
39 return sprintf(buf, "DOWN\n");
40 case CARD_STATE_HARDSETUP:
41 return sprintf(buf, "HARDSETUP\n");
42 case CARD_STATE_SOFTSETUP:
43 return sprintf(buf, "SOFTSETUP\n");
44 case CARD_STATE_UP:
45 if (card->lan_online)
46 return sprintf(buf, "UP (LAN ONLINE)\n");
47 else
48 return sprintf(buf, "UP (LAN OFFLINE)\n");
49 case CARD_STATE_RECOVER:
50 return sprintf(buf, "RECOVER\n");
51 default:
52 return sprintf(buf, "UNKNOWN\n");
56 static DEVICE_ATTR(state, 0444, qeth_dev_state_show, NULL);
58 static ssize_t
59 qeth_dev_chpid_show(struct device *dev, struct device_attribute *attr, char *buf)
61 struct qeth_card *card = dev->driver_data;
62 if (!card)
63 return -EINVAL;
65 return sprintf(buf, "%02X\n", card->info.chpid);
68 static DEVICE_ATTR(chpid, 0444, qeth_dev_chpid_show, NULL);
70 static ssize_t
71 qeth_dev_if_name_show(struct device *dev, struct device_attribute *attr, char *buf)
73 struct qeth_card *card = dev->driver_data;
74 if (!card)
75 return -EINVAL;
76 return sprintf(buf, "%s\n", QETH_CARD_IFNAME(card));
79 static DEVICE_ATTR(if_name, 0444, qeth_dev_if_name_show, NULL);
81 static ssize_t
82 qeth_dev_card_type_show(struct device *dev, struct device_attribute *attr, char *buf)
84 struct qeth_card *card = dev->driver_data;
85 if (!card)
86 return -EINVAL;
88 return sprintf(buf, "%s\n", qeth_get_cardname_short(card));
91 static DEVICE_ATTR(card_type, 0444, qeth_dev_card_type_show, NULL);
93 static ssize_t
94 qeth_dev_portno_show(struct device *dev, struct device_attribute *attr, char *buf)
96 struct qeth_card *card = dev->driver_data;
97 if (!card)
98 return -EINVAL;
100 return sprintf(buf, "%i\n", card->info.portno);
103 static ssize_t
104 qeth_dev_portno_store(struct device *dev, struct device_attribute *attr, const char *buf, size_t count)
106 struct qeth_card *card = dev->driver_data;
107 char *tmp;
108 unsigned int portno;
110 if (!card)
111 return -EINVAL;
113 if ((card->state != CARD_STATE_DOWN) &&
114 (card->state != CARD_STATE_RECOVER))
115 return -EPERM;
117 portno = simple_strtoul(buf, &tmp, 16);
118 if (portno > MAX_PORTNO){
119 PRINT_WARN("portno 0x%X is out of range\n", portno);
120 return -EINVAL;
123 card->info.portno = portno;
124 return count;
127 static DEVICE_ATTR(portno, 0644, qeth_dev_portno_show, qeth_dev_portno_store);
129 static ssize_t
130 qeth_dev_portname_show(struct device *dev, struct device_attribute *attr, char *buf)
132 struct qeth_card *card = dev->driver_data;
133 char portname[9] = {0, };
135 if (!card)
136 return -EINVAL;
138 if (card->info.portname_required) {
139 memcpy(portname, card->info.portname + 1, 8);
140 EBCASC(portname, 8);
141 return sprintf(buf, "%s\n", portname);
142 } else
143 return sprintf(buf, "no portname required\n");
146 static ssize_t
147 qeth_dev_portname_store(struct device *dev, struct device_attribute *attr, const char *buf, size_t count)
149 struct qeth_card *card = dev->driver_data;
150 char *tmp;
151 int i;
153 if (!card)
154 return -EINVAL;
156 if ((card->state != CARD_STATE_DOWN) &&
157 (card->state != CARD_STATE_RECOVER))
158 return -EPERM;
160 tmp = strsep((char **) &buf, "\n");
161 if ((strlen(tmp) > 8) || (strlen(tmp) == 0))
162 return -EINVAL;
164 card->info.portname[0] = strlen(tmp);
165 /* for beauty reasons */
166 for (i = 1; i < 9; i++)
167 card->info.portname[i] = ' ';
168 strcpy(card->info.portname + 1, tmp);
169 ASCEBC(card->info.portname + 1, 8);
171 return count;
174 static DEVICE_ATTR(portname, 0644, qeth_dev_portname_show,
175 qeth_dev_portname_store);
177 static ssize_t
178 qeth_dev_checksum_show(struct device *dev, struct device_attribute *attr, char *buf)
180 struct qeth_card *card = dev->driver_data;
182 if (!card)
183 return -EINVAL;
185 return sprintf(buf, "%s checksumming\n", qeth_get_checksum_str(card));
188 static ssize_t
189 qeth_dev_checksum_store(struct device *dev, struct device_attribute *attr, const char *buf, size_t count)
191 struct qeth_card *card = dev->driver_data;
192 char *tmp;
194 if (!card)
195 return -EINVAL;
197 if ((card->state != CARD_STATE_DOWN) &&
198 (card->state != CARD_STATE_RECOVER))
199 return -EPERM;
201 tmp = strsep((char **) &buf, "\n");
202 if (!strcmp(tmp, "sw_checksumming"))
203 card->options.checksum_type = SW_CHECKSUMMING;
204 else if (!strcmp(tmp, "hw_checksumming"))
205 card->options.checksum_type = HW_CHECKSUMMING;
206 else if (!strcmp(tmp, "no_checksumming"))
207 card->options.checksum_type = NO_CHECKSUMMING;
208 else {
209 PRINT_WARN("Unknown checksumming type '%s'\n", tmp);
210 return -EINVAL;
212 return count;
215 static DEVICE_ATTR(checksumming, 0644, qeth_dev_checksum_show,
216 qeth_dev_checksum_store);
218 static ssize_t
219 qeth_dev_prioqing_show(struct device *dev, struct device_attribute *attr, char *buf)
221 struct qeth_card *card = dev->driver_data;
223 if (!card)
224 return -EINVAL;
226 switch (card->qdio.do_prio_queueing) {
227 case QETH_PRIO_Q_ING_PREC:
228 return sprintf(buf, "%s\n", "by precedence");
229 case QETH_PRIO_Q_ING_TOS:
230 return sprintf(buf, "%s\n", "by type of service");
231 default:
232 return sprintf(buf, "always queue %i\n",
233 card->qdio.default_out_queue);
237 static ssize_t
238 qeth_dev_prioqing_store(struct device *dev, struct device_attribute *attr, const char *buf, size_t count)
240 struct qeth_card *card = dev->driver_data;
241 char *tmp;
243 if (!card)
244 return -EINVAL;
246 if ((card->state != CARD_STATE_DOWN) &&
247 (card->state != CARD_STATE_RECOVER))
248 return -EPERM;
250 /* check if 1920 devices are supported ,
251 * if though we have to permit priority queueing
253 if (card->qdio.no_out_queues == 1) {
254 PRINT_WARN("Priority queueing disabled due "
255 "to hardware limitations!\n");
256 card->qdio.do_prio_queueing = QETH_PRIOQ_DEFAULT;
257 return -EPERM;
260 tmp = strsep((char **) &buf, "\n");
261 if (!strcmp(tmp, "prio_queueing_prec"))
262 card->qdio.do_prio_queueing = QETH_PRIO_Q_ING_PREC;
263 else if (!strcmp(tmp, "prio_queueing_tos"))
264 card->qdio.do_prio_queueing = QETH_PRIO_Q_ING_TOS;
265 else if (!strcmp(tmp, "no_prio_queueing:0")) {
266 card->qdio.do_prio_queueing = QETH_NO_PRIO_QUEUEING;
267 card->qdio.default_out_queue = 0;
268 } else if (!strcmp(tmp, "no_prio_queueing:1")) {
269 card->qdio.do_prio_queueing = QETH_NO_PRIO_QUEUEING;
270 card->qdio.default_out_queue = 1;
271 } else if (!strcmp(tmp, "no_prio_queueing:2")) {
272 card->qdio.do_prio_queueing = QETH_NO_PRIO_QUEUEING;
273 card->qdio.default_out_queue = 2;
274 } else if (!strcmp(tmp, "no_prio_queueing:3")) {
275 card->qdio.do_prio_queueing = QETH_NO_PRIO_QUEUEING;
276 card->qdio.default_out_queue = 3;
277 } else if (!strcmp(tmp, "no_prio_queueing")) {
278 card->qdio.do_prio_queueing = QETH_NO_PRIO_QUEUEING;
279 card->qdio.default_out_queue = QETH_DEFAULT_QUEUE;
280 } else {
281 PRINT_WARN("Unknown queueing type '%s'\n", tmp);
282 return -EINVAL;
284 return count;
287 static DEVICE_ATTR(priority_queueing, 0644, qeth_dev_prioqing_show,
288 qeth_dev_prioqing_store);
290 static ssize_t
291 qeth_dev_bufcnt_show(struct device *dev, struct device_attribute *attr, char *buf)
293 struct qeth_card *card = dev->driver_data;
295 if (!card)
296 return -EINVAL;
298 return sprintf(buf, "%i\n", card->qdio.in_buf_pool.buf_count);
301 static ssize_t
302 qeth_dev_bufcnt_store(struct device *dev, struct device_attribute *attr, const char *buf, size_t count)
304 struct qeth_card *card = dev->driver_data;
305 char *tmp;
306 int cnt, old_cnt;
307 int rc;
309 if (!card)
310 return -EINVAL;
312 if ((card->state != CARD_STATE_DOWN) &&
313 (card->state != CARD_STATE_RECOVER))
314 return -EPERM;
316 old_cnt = card->qdio.in_buf_pool.buf_count;
317 cnt = simple_strtoul(buf, &tmp, 10);
318 cnt = (cnt < QETH_IN_BUF_COUNT_MIN) ? QETH_IN_BUF_COUNT_MIN :
319 ((cnt > QETH_IN_BUF_COUNT_MAX) ? QETH_IN_BUF_COUNT_MAX : cnt);
320 if (old_cnt != cnt) {
321 if ((rc = qeth_realloc_buffer_pool(card, cnt)))
322 PRINT_WARN("Error (%d) while setting "
323 "buffer count.\n", rc);
325 return count;
328 static DEVICE_ATTR(buffer_count, 0644, qeth_dev_bufcnt_show,
329 qeth_dev_bufcnt_store);
331 static inline ssize_t
332 qeth_dev_route_show(struct qeth_card *card, struct qeth_routing_info *route,
333 char *buf)
335 switch (route->type) {
336 case PRIMARY_ROUTER:
337 return sprintf(buf, "%s\n", "primary router");
338 case SECONDARY_ROUTER:
339 return sprintf(buf, "%s\n", "secondary router");
340 case MULTICAST_ROUTER:
341 if (card->info.broadcast_capable == QETH_BROADCAST_WITHOUT_ECHO)
342 return sprintf(buf, "%s\n", "multicast router+");
343 else
344 return sprintf(buf, "%s\n", "multicast router");
345 case PRIMARY_CONNECTOR:
346 if (card->info.broadcast_capable == QETH_BROADCAST_WITHOUT_ECHO)
347 return sprintf(buf, "%s\n", "primary connector+");
348 else
349 return sprintf(buf, "%s\n", "primary connector");
350 case SECONDARY_CONNECTOR:
351 if (card->info.broadcast_capable == QETH_BROADCAST_WITHOUT_ECHO)
352 return sprintf(buf, "%s\n", "secondary connector+");
353 else
354 return sprintf(buf, "%s\n", "secondary connector");
355 default:
356 return sprintf(buf, "%s\n", "no");
360 static ssize_t
361 qeth_dev_route4_show(struct device *dev, struct device_attribute *attr, char *buf)
363 struct qeth_card *card = dev->driver_data;
365 if (!card)
366 return -EINVAL;
368 return qeth_dev_route_show(card, &card->options.route4, buf);
371 static inline ssize_t
372 qeth_dev_route_store(struct qeth_card *card, struct qeth_routing_info *route,
373 enum qeth_prot_versions prot, const char *buf, size_t count)
375 enum qeth_routing_types old_route_type = route->type;
376 char *tmp;
377 int rc;
379 tmp = strsep((char **) &buf, "\n");
381 if (!strcmp(tmp, "no_router")){
382 route->type = NO_ROUTER;
383 } else if (!strcmp(tmp, "primary_connector")) {
384 route->type = PRIMARY_CONNECTOR;
385 } else if (!strcmp(tmp, "secondary_connector")) {
386 route->type = SECONDARY_CONNECTOR;
387 } else if (!strcmp(tmp, "multicast_router")) {
388 route->type = MULTICAST_ROUTER;
389 } else if (!strcmp(tmp, "primary_router")) {
390 route->type = PRIMARY_ROUTER;
391 } else if (!strcmp(tmp, "secondary_router")) {
392 route->type = SECONDARY_ROUTER;
393 } else if (!strcmp(tmp, "multicast_router")) {
394 route->type = MULTICAST_ROUTER;
395 } else {
396 PRINT_WARN("Invalid routing type '%s'.\n", tmp);
397 return -EINVAL;
399 if (((card->state == CARD_STATE_SOFTSETUP) ||
400 (card->state == CARD_STATE_UP)) &&
401 (old_route_type != route->type)){
402 if (prot == QETH_PROT_IPV4)
403 rc = qeth_setrouting_v4(card);
404 else if (prot == QETH_PROT_IPV6)
405 rc = qeth_setrouting_v6(card);
407 return count;
410 static ssize_t
411 qeth_dev_route4_store(struct device *dev, struct device_attribute *attr, const char *buf, size_t count)
413 struct qeth_card *card = dev->driver_data;
415 if (!card)
416 return -EINVAL;
418 return qeth_dev_route_store(card, &card->options.route4,
419 QETH_PROT_IPV4, buf, count);
422 static DEVICE_ATTR(route4, 0644, qeth_dev_route4_show, qeth_dev_route4_store);
424 #ifdef CONFIG_QETH_IPV6
425 static ssize_t
426 qeth_dev_route6_show(struct device *dev, struct device_attribute *attr, char *buf)
428 struct qeth_card *card = dev->driver_data;
430 if (!card)
431 return -EINVAL;
433 if (!qeth_is_supported(card, IPA_IPV6))
434 return sprintf(buf, "%s\n", "n/a");
436 return qeth_dev_route_show(card, &card->options.route6, buf);
439 static ssize_t
440 qeth_dev_route6_store(struct device *dev, struct device_attribute *attr, const char *buf, size_t count)
442 struct qeth_card *card = dev->driver_data;
444 if (!card)
445 return -EINVAL;
447 if (!qeth_is_supported(card, IPA_IPV6)){
448 PRINT_WARN("IPv6 not supported for interface %s.\n"
449 "Routing status no changed.\n",
450 QETH_CARD_IFNAME(card));
451 return -ENOTSUPP;
454 return qeth_dev_route_store(card, &card->options.route6,
455 QETH_PROT_IPV6, buf, count);
458 static DEVICE_ATTR(route6, 0644, qeth_dev_route6_show, qeth_dev_route6_store);
459 #endif
461 static ssize_t
462 qeth_dev_add_hhlen_show(struct device *dev, struct device_attribute *attr, char *buf)
464 struct qeth_card *card = dev->driver_data;
466 if (!card)
467 return -EINVAL;
469 return sprintf(buf, "%i\n", card->options.add_hhlen);
472 static ssize_t
473 qeth_dev_add_hhlen_store(struct device *dev, struct device_attribute *attr, const char *buf, size_t count)
475 struct qeth_card *card = dev->driver_data;
476 char *tmp;
477 int i;
479 if (!card)
480 return -EINVAL;
482 if ((card->state != CARD_STATE_DOWN) &&
483 (card->state != CARD_STATE_RECOVER))
484 return -EPERM;
486 i = simple_strtoul(buf, &tmp, 10);
487 if ((i < 0) || (i > MAX_ADD_HHLEN)) {
488 PRINT_WARN("add_hhlen out of range\n");
489 return -EINVAL;
491 card->options.add_hhlen = i;
493 return count;
496 static DEVICE_ATTR(add_hhlen, 0644, qeth_dev_add_hhlen_show,
497 qeth_dev_add_hhlen_store);
499 static ssize_t
500 qeth_dev_fake_ll_show(struct device *dev, struct device_attribute *attr, char *buf)
502 struct qeth_card *card = dev->driver_data;
504 if (!card)
505 return -EINVAL;
507 return sprintf(buf, "%i\n", card->options.fake_ll? 1:0);
510 static ssize_t
511 qeth_dev_fake_ll_store(struct device *dev, struct device_attribute *attr, const char *buf, size_t count)
513 struct qeth_card *card = dev->driver_data;
514 char *tmp;
515 int i;
517 if (!card)
518 return -EINVAL;
520 if ((card->state != CARD_STATE_DOWN) &&
521 (card->state != CARD_STATE_RECOVER))
522 return -EPERM;
524 i = simple_strtoul(buf, &tmp, 16);
525 if ((i != 0) && (i != 1)) {
526 PRINT_WARN("fake_ll: write 0 or 1 to this file!\n");
527 return -EINVAL;
529 card->options.fake_ll = i;
530 return count;
533 static DEVICE_ATTR(fake_ll, 0644, qeth_dev_fake_ll_show,
534 qeth_dev_fake_ll_store);
536 static ssize_t
537 qeth_dev_fake_broadcast_show(struct device *dev, struct device_attribute *attr, char *buf)
539 struct qeth_card *card = dev->driver_data;
541 if (!card)
542 return -EINVAL;
544 return sprintf(buf, "%i\n", card->options.fake_broadcast? 1:0);
547 static ssize_t
548 qeth_dev_fake_broadcast_store(struct device *dev, struct device_attribute *attr, const char *buf, size_t count)
550 struct qeth_card *card = dev->driver_data;
551 char *tmp;
552 int i;
554 if (!card)
555 return -EINVAL;
557 if ((card->state != CARD_STATE_DOWN) &&
558 (card->state != CARD_STATE_RECOVER))
559 return -EPERM;
561 i = simple_strtoul(buf, &tmp, 16);
562 if ((i == 0) || (i == 1))
563 card->options.fake_broadcast = i;
564 else {
565 PRINT_WARN("fake_broadcast: write 0 or 1 to this file!\n");
566 return -EINVAL;
568 return count;
571 static DEVICE_ATTR(fake_broadcast, 0644, qeth_dev_fake_broadcast_show,
572 qeth_dev_fake_broadcast_store);
574 static ssize_t
575 qeth_dev_recover_store(struct device *dev, struct device_attribute *attr, const char *buf, size_t count)
577 struct qeth_card *card = dev->driver_data;
578 char *tmp;
579 int i;
581 if (!card)
582 return -EINVAL;
584 if (card->state != CARD_STATE_UP)
585 return -EPERM;
587 i = simple_strtoul(buf, &tmp, 16);
588 if (i == 1)
589 qeth_schedule_recovery(card);
591 return count;
594 static DEVICE_ATTR(recover, 0200, NULL, qeth_dev_recover_store);
596 static ssize_t
597 qeth_dev_broadcast_mode_show(struct device *dev, struct device_attribute *attr, char *buf)
599 struct qeth_card *card = dev->driver_data;
601 if (!card)
602 return -EINVAL;
604 if (!((card->info.link_type == QETH_LINK_TYPE_HSTR) ||
605 (card->info.link_type == QETH_LINK_TYPE_LANE_TR)))
606 return sprintf(buf, "n/a\n");
608 return sprintf(buf, "%s\n", (card->options.broadcast_mode ==
609 QETH_TR_BROADCAST_ALLRINGS)?
610 "all rings":"local");
613 static ssize_t
614 qeth_dev_broadcast_mode_store(struct device *dev, struct device_attribute *attr, const char *buf, size_t count)
616 struct qeth_card *card = dev->driver_data;
617 char *tmp;
619 if (!card)
620 return -EINVAL;
622 if ((card->state != CARD_STATE_DOWN) &&
623 (card->state != CARD_STATE_RECOVER))
624 return -EPERM;
626 if (!((card->info.link_type == QETH_LINK_TYPE_HSTR) ||
627 (card->info.link_type == QETH_LINK_TYPE_LANE_TR))){
628 PRINT_WARN("Device is not a tokenring device!\n");
629 return -EINVAL;
632 tmp = strsep((char **) &buf, "\n");
634 if (!strcmp(tmp, "local")){
635 card->options.broadcast_mode = QETH_TR_BROADCAST_LOCAL;
636 return count;
637 } else if (!strcmp(tmp, "all_rings")) {
638 card->options.broadcast_mode = QETH_TR_BROADCAST_ALLRINGS;
639 return count;
640 } else {
641 PRINT_WARN("broadcast_mode: invalid mode %s!\n",
642 tmp);
643 return -EINVAL;
645 return count;
648 static DEVICE_ATTR(broadcast_mode, 0644, qeth_dev_broadcast_mode_show,
649 qeth_dev_broadcast_mode_store);
651 static ssize_t
652 qeth_dev_canonical_macaddr_show(struct device *dev, struct device_attribute *attr, char *buf)
654 struct qeth_card *card = dev->driver_data;
656 if (!card)
657 return -EINVAL;
659 if (!((card->info.link_type == QETH_LINK_TYPE_HSTR) ||
660 (card->info.link_type == QETH_LINK_TYPE_LANE_TR)))
661 return sprintf(buf, "n/a\n");
663 return sprintf(buf, "%i\n", (card->options.macaddr_mode ==
664 QETH_TR_MACADDR_CANONICAL)? 1:0);
667 static ssize_t
668 qeth_dev_canonical_macaddr_store(struct device *dev, struct device_attribute *attr, const char *buf,
669 size_t count)
671 struct qeth_card *card = dev->driver_data;
672 char *tmp;
673 int i;
675 if (!card)
676 return -EINVAL;
678 if ((card->state != CARD_STATE_DOWN) &&
679 (card->state != CARD_STATE_RECOVER))
680 return -EPERM;
682 if (!((card->info.link_type == QETH_LINK_TYPE_HSTR) ||
683 (card->info.link_type == QETH_LINK_TYPE_LANE_TR))){
684 PRINT_WARN("Device is not a tokenring device!\n");
685 return -EINVAL;
688 i = simple_strtoul(buf, &tmp, 16);
689 if ((i == 0) || (i == 1))
690 card->options.macaddr_mode = i?
691 QETH_TR_MACADDR_CANONICAL :
692 QETH_TR_MACADDR_NONCANONICAL;
693 else {
694 PRINT_WARN("canonical_macaddr: write 0 or 1 to this file!\n");
695 return -EINVAL;
697 return count;
700 static DEVICE_ATTR(canonical_macaddr, 0644, qeth_dev_canonical_macaddr_show,
701 qeth_dev_canonical_macaddr_store);
703 static ssize_t
704 qeth_dev_layer2_show(struct device *dev, struct device_attribute *attr, char *buf)
706 struct qeth_card *card = dev->driver_data;
708 if (!card)
709 return -EINVAL;
711 return sprintf(buf, "%i\n", card->options.layer2 ? 1:0);
714 static ssize_t
715 qeth_dev_layer2_store(struct device *dev, struct device_attribute *attr, const char *buf, size_t count)
717 struct qeth_card *card = dev->driver_data;
718 char *tmp;
719 int i;
721 if (!card)
722 return -EINVAL;
723 if (card->info.type == QETH_CARD_TYPE_IQD) {
724 PRINT_WARN("Layer2 on Hipersockets is not supported! \n");
725 return -EPERM;
728 if (((card->state != CARD_STATE_DOWN) &&
729 (card->state != CARD_STATE_RECOVER)))
730 return -EPERM;
732 i = simple_strtoul(buf, &tmp, 16);
733 if ((i == 0) || (i == 1))
734 card->options.layer2 = i;
735 else {
736 PRINT_WARN("layer2: write 0 or 1 to this file!\n");
737 return -EINVAL;
739 return count;
742 static DEVICE_ATTR(layer2, 0644, qeth_dev_layer2_show,
743 qeth_dev_layer2_store);
745 static ssize_t
746 qeth_dev_large_send_show(struct device *dev, struct device_attribute *attr, char *buf)
748 struct qeth_card *card = dev->driver_data;
750 if (!card)
751 return -EINVAL;
753 switch (card->options.large_send) {
754 case QETH_LARGE_SEND_NO:
755 return sprintf(buf, "%s\n", "no");
756 case QETH_LARGE_SEND_EDDP:
757 return sprintf(buf, "%s\n", "EDDP");
758 case QETH_LARGE_SEND_TSO:
759 return sprintf(buf, "%s\n", "TSO");
760 default:
761 return sprintf(buf, "%s\n", "N/A");
765 static ssize_t
766 qeth_dev_large_send_store(struct device *dev, struct device_attribute *attr, const char *buf, size_t count)
768 struct qeth_card *card = dev->driver_data;
769 enum qeth_large_send_types type;
770 int rc = 0;
771 char *tmp;
773 if (!card)
774 return -EINVAL;
775 tmp = strsep((char **) &buf, "\n");
776 if (!strcmp(tmp, "no")){
777 type = QETH_LARGE_SEND_NO;
778 } else if (!strcmp(tmp, "EDDP")) {
779 type = QETH_LARGE_SEND_EDDP;
780 } else if (!strcmp(tmp, "TSO")) {
781 type = QETH_LARGE_SEND_TSO;
782 } else {
783 PRINT_WARN("large_send: invalid mode %s!\n", tmp);
784 return -EINVAL;
786 if (card->options.large_send == type)
787 return count;
788 if ((rc = qeth_set_large_send(card, type)))
789 return rc;
790 return count;
793 static DEVICE_ATTR(large_send, 0644, qeth_dev_large_send_show,
794 qeth_dev_large_send_store);
796 static ssize_t
797 qeth_dev_blkt_show(char *buf, struct qeth_card *card, int value )
800 if (!card)
801 return -EINVAL;
803 return sprintf(buf, "%i\n", value);
806 static ssize_t
807 qeth_dev_blkt_store(struct qeth_card *card, const char *buf, size_t count,
808 int *value, int max_value)
810 char *tmp;
811 int i;
813 if (!card)
814 return -EINVAL;
816 if ((card->state != CARD_STATE_DOWN) &&
817 (card->state != CARD_STATE_RECOVER))
818 return -EPERM;
820 i = simple_strtoul(buf, &tmp, 10);
821 if (i <= max_value) {
822 *value = i;
823 } else {
824 PRINT_WARN("blkt total time: write values between"
825 " 0 and %d to this file!\n", max_value);
826 return -EINVAL;
828 return count;
831 static ssize_t
832 qeth_dev_blkt_total_show(struct device *dev, struct device_attribute *attr, char *buf)
834 struct qeth_card *card = dev->driver_data;
836 return qeth_dev_blkt_show(buf, card, card->info.blkt.time_total);
840 static ssize_t
841 qeth_dev_blkt_total_store(struct device *dev, struct device_attribute *attr, const char *buf, size_t count)
843 struct qeth_card *card = dev->driver_data;
845 return qeth_dev_blkt_store(card, buf, count,
846 &card->info.blkt.time_total,1000);
851 static DEVICE_ATTR(total, 0644, qeth_dev_blkt_total_show,
852 qeth_dev_blkt_total_store);
854 static ssize_t
855 qeth_dev_blkt_inter_show(struct device *dev, struct device_attribute *attr, char *buf)
857 struct qeth_card *card = dev->driver_data;
859 return qeth_dev_blkt_show(buf, card, card->info.blkt.inter_packet);
863 static ssize_t
864 qeth_dev_blkt_inter_store(struct device *dev, struct device_attribute *attr, const char *buf, size_t count)
866 struct qeth_card *card = dev->driver_data;
868 return qeth_dev_blkt_store(card, buf, count,
869 &card->info.blkt.inter_packet,100);
872 static DEVICE_ATTR(inter, 0644, qeth_dev_blkt_inter_show,
873 qeth_dev_blkt_inter_store);
875 static ssize_t
876 qeth_dev_blkt_inter_jumbo_show(struct device *dev, struct device_attribute *attr, char *buf)
878 struct qeth_card *card = dev->driver_data;
880 return qeth_dev_blkt_show(buf, card,
881 card->info.blkt.inter_packet_jumbo);
885 static ssize_t
886 qeth_dev_blkt_inter_jumbo_store(struct device *dev, struct device_attribute *attr, const char *buf, size_t count)
888 struct qeth_card *card = dev->driver_data;
890 return qeth_dev_blkt_store(card, buf, count,
891 &card->info.blkt.inter_packet_jumbo,100);
894 static DEVICE_ATTR(inter_jumbo, 0644, qeth_dev_blkt_inter_jumbo_show,
895 qeth_dev_blkt_inter_jumbo_store);
897 static struct device_attribute * qeth_blkt_device_attrs[] = {
898 &dev_attr_total,
899 &dev_attr_inter,
900 &dev_attr_inter_jumbo,
901 NULL,
904 static struct attribute_group qeth_device_blkt_group = {
905 .name = "blkt",
906 .attrs = (struct attribute **)qeth_blkt_device_attrs,
909 static struct device_attribute * qeth_device_attrs[] = {
910 &dev_attr_state,
911 &dev_attr_chpid,
912 &dev_attr_if_name,
913 &dev_attr_card_type,
914 &dev_attr_portno,
915 &dev_attr_portname,
916 &dev_attr_checksumming,
917 &dev_attr_priority_queueing,
918 &dev_attr_buffer_count,
919 &dev_attr_route4,
920 #ifdef CONFIG_QETH_IPV6
921 &dev_attr_route6,
922 #endif
923 &dev_attr_add_hhlen,
924 &dev_attr_fake_ll,
925 &dev_attr_fake_broadcast,
926 &dev_attr_recover,
927 &dev_attr_broadcast_mode,
928 &dev_attr_canonical_macaddr,
929 &dev_attr_layer2,
930 &dev_attr_large_send,
931 NULL,
934 static struct attribute_group qeth_device_attr_group = {
935 .attrs = (struct attribute **)qeth_device_attrs,
938 static struct device_attribute * qeth_osn_device_attrs[] = {
939 &dev_attr_state,
940 &dev_attr_chpid,
941 &dev_attr_if_name,
942 &dev_attr_card_type,
943 &dev_attr_buffer_count,
944 &dev_attr_recover,
945 NULL,
948 static struct attribute_group qeth_osn_device_attr_group = {
949 .attrs = (struct attribute **)qeth_osn_device_attrs,
952 #define QETH_DEVICE_ATTR(_id,_name,_mode,_show,_store) \
953 struct device_attribute dev_attr_##_id = { \
954 .attr = {.name=__stringify(_name), .mode=_mode, .owner=THIS_MODULE },\
955 .show = _show, \
956 .store = _store, \
960 qeth_check_layer2(struct qeth_card *card)
962 if (card->options.layer2)
963 return -EPERM;
964 return 0;
968 static ssize_t
969 qeth_dev_ipato_enable_show(struct device *dev, struct device_attribute *attr, char *buf)
971 struct qeth_card *card = dev->driver_data;
973 if (!card)
974 return -EINVAL;
976 if (qeth_check_layer2(card))
977 return -EPERM;
978 return sprintf(buf, "%i\n", card->ipato.enabled? 1:0);
981 static ssize_t
982 qeth_dev_ipato_enable_store(struct device *dev, struct device_attribute *attr, const char *buf, size_t count)
984 struct qeth_card *card = dev->driver_data;
985 char *tmp;
987 if (!card)
988 return -EINVAL;
990 if ((card->state != CARD_STATE_DOWN) &&
991 (card->state != CARD_STATE_RECOVER))
992 return -EPERM;
994 if (qeth_check_layer2(card))
995 return -EPERM;
997 tmp = strsep((char **) &buf, "\n");
998 if (!strcmp(tmp, "toggle")){
999 card->ipato.enabled = (card->ipato.enabled)? 0 : 1;
1000 } else if (!strcmp(tmp, "1")){
1001 card->ipato.enabled = 1;
1002 } else if (!strcmp(tmp, "0")){
1003 card->ipato.enabled = 0;
1004 } else {
1005 PRINT_WARN("ipato_enable: write 0, 1 or 'toggle' to "
1006 "this file\n");
1007 return -EINVAL;
1009 return count;
1012 static QETH_DEVICE_ATTR(ipato_enable, enable, 0644,
1013 qeth_dev_ipato_enable_show,
1014 qeth_dev_ipato_enable_store);
1016 static ssize_t
1017 qeth_dev_ipato_invert4_show(struct device *dev, struct device_attribute *attr, char *buf)
1019 struct qeth_card *card = dev->driver_data;
1021 if (!card)
1022 return -EINVAL;
1024 if (qeth_check_layer2(card))
1025 return -EPERM;
1027 return sprintf(buf, "%i\n", card->ipato.invert4? 1:0);
1030 static ssize_t
1031 qeth_dev_ipato_invert4_store(struct device *dev, struct device_attribute *attr, const char *buf, size_t count)
1033 struct qeth_card *card = dev->driver_data;
1034 char *tmp;
1036 if (!card)
1037 return -EINVAL;
1039 if (qeth_check_layer2(card))
1040 return -EPERM;
1042 tmp = strsep((char **) &buf, "\n");
1043 if (!strcmp(tmp, "toggle")){
1044 card->ipato.invert4 = (card->ipato.invert4)? 0 : 1;
1045 } else if (!strcmp(tmp, "1")){
1046 card->ipato.invert4 = 1;
1047 } else if (!strcmp(tmp, "0")){
1048 card->ipato.invert4 = 0;
1049 } else {
1050 PRINT_WARN("ipato_invert4: write 0, 1 or 'toggle' to "
1051 "this file\n");
1052 return -EINVAL;
1054 return count;
1057 static QETH_DEVICE_ATTR(ipato_invert4, invert4, 0644,
1058 qeth_dev_ipato_invert4_show,
1059 qeth_dev_ipato_invert4_store);
1061 static inline ssize_t
1062 qeth_dev_ipato_add_show(char *buf, struct qeth_card *card,
1063 enum qeth_prot_versions proto)
1065 struct qeth_ipato_entry *ipatoe;
1066 unsigned long flags;
1067 char addr_str[40];
1068 int entry_len; /* length of 1 entry string, differs between v4 and v6 */
1069 int i = 0;
1071 if (qeth_check_layer2(card))
1072 return -EPERM;
1074 entry_len = (proto == QETH_PROT_IPV4)? 12 : 40;
1075 /* add strlen for "/<mask>\n" */
1076 entry_len += (proto == QETH_PROT_IPV4)? 5 : 6;
1077 spin_lock_irqsave(&card->ip_lock, flags);
1078 list_for_each_entry(ipatoe, &card->ipato.entries, entry){
1079 if (ipatoe->proto != proto)
1080 continue;
1081 /* String must not be longer than PAGE_SIZE. So we check if
1082 * string length gets near PAGE_SIZE. Then we can savely display
1083 * the next IPv6 address (worst case, compared to IPv4) */
1084 if ((PAGE_SIZE - i) <= entry_len)
1085 break;
1086 qeth_ipaddr_to_string(proto, ipatoe->addr, addr_str);
1087 i += snprintf(buf + i, PAGE_SIZE - i,
1088 "%s/%i\n", addr_str, ipatoe->mask_bits);
1090 spin_unlock_irqrestore(&card->ip_lock, flags);
1091 i += snprintf(buf + i, PAGE_SIZE - i, "\n");
1093 return i;
1096 static ssize_t
1097 qeth_dev_ipato_add4_show(struct device *dev, struct device_attribute *attr, char *buf)
1099 struct qeth_card *card = dev->driver_data;
1101 if (!card)
1102 return -EINVAL;
1104 return qeth_dev_ipato_add_show(buf, card, QETH_PROT_IPV4);
1107 static inline int
1108 qeth_parse_ipatoe(const char* buf, enum qeth_prot_versions proto,
1109 u8 *addr, int *mask_bits)
1111 const char *start, *end;
1112 char *tmp;
1113 char buffer[49] = {0, };
1115 start = buf;
1116 /* get address string */
1117 end = strchr(start, '/');
1118 if (!end || (end-start >= 49)){
1119 PRINT_WARN("Invalid format for ipato_addx/delx. "
1120 "Use <ip addr>/<mask bits>\n");
1121 return -EINVAL;
1123 strncpy(buffer, start, end - start);
1124 if (qeth_string_to_ipaddr(buffer, proto, addr)){
1125 PRINT_WARN("Invalid IP address format!\n");
1126 return -EINVAL;
1128 start = end + 1;
1129 *mask_bits = simple_strtoul(start, &tmp, 10);
1131 return 0;
1134 static inline ssize_t
1135 qeth_dev_ipato_add_store(const char *buf, size_t count,
1136 struct qeth_card *card, enum qeth_prot_versions proto)
1138 struct qeth_ipato_entry *ipatoe;
1139 u8 addr[16];
1140 int mask_bits;
1141 int rc;
1143 if (qeth_check_layer2(card))
1144 return -EPERM;
1145 if ((rc = qeth_parse_ipatoe(buf, proto, addr, &mask_bits)))
1146 return rc;
1148 if (!(ipatoe = kzalloc(sizeof(struct qeth_ipato_entry), GFP_KERNEL))){
1149 PRINT_WARN("No memory to allocate ipato entry\n");
1150 return -ENOMEM;
1152 ipatoe->proto = proto;
1153 memcpy(ipatoe->addr, addr, (proto == QETH_PROT_IPV4)? 4:16);
1154 ipatoe->mask_bits = mask_bits;
1156 if ((rc = qeth_add_ipato_entry(card, ipatoe))){
1157 kfree(ipatoe);
1158 return rc;
1161 return count;
1164 static ssize_t
1165 qeth_dev_ipato_add4_store(struct device *dev, struct device_attribute *attr, const char *buf, size_t count)
1167 struct qeth_card *card = dev->driver_data;
1169 if (!card)
1170 return -EINVAL;
1172 return qeth_dev_ipato_add_store(buf, count, card, QETH_PROT_IPV4);
1175 static QETH_DEVICE_ATTR(ipato_add4, add4, 0644,
1176 qeth_dev_ipato_add4_show,
1177 qeth_dev_ipato_add4_store);
1179 static inline ssize_t
1180 qeth_dev_ipato_del_store(const char *buf, size_t count,
1181 struct qeth_card *card, enum qeth_prot_versions proto)
1183 u8 addr[16];
1184 int mask_bits;
1185 int rc;
1187 if (qeth_check_layer2(card))
1188 return -EPERM;
1189 if ((rc = qeth_parse_ipatoe(buf, proto, addr, &mask_bits)))
1190 return rc;
1192 qeth_del_ipato_entry(card, proto, addr, mask_bits);
1194 return count;
1197 static ssize_t
1198 qeth_dev_ipato_del4_store(struct device *dev, struct device_attribute *attr, const char *buf, size_t count)
1200 struct qeth_card *card = dev->driver_data;
1202 if (!card)
1203 return -EINVAL;
1205 return qeth_dev_ipato_del_store(buf, count, card, QETH_PROT_IPV4);
1208 static QETH_DEVICE_ATTR(ipato_del4, del4, 0200, NULL,
1209 qeth_dev_ipato_del4_store);
1211 #ifdef CONFIG_QETH_IPV6
1212 static ssize_t
1213 qeth_dev_ipato_invert6_show(struct device *dev, struct device_attribute *attr, char *buf)
1215 struct qeth_card *card = dev->driver_data;
1217 if (!card)
1218 return -EINVAL;
1220 if (qeth_check_layer2(card))
1221 return -EPERM;
1223 return sprintf(buf, "%i\n", card->ipato.invert6? 1:0);
1226 static ssize_t
1227 qeth_dev_ipato_invert6_store(struct device *dev, struct device_attribute *attr, const char *buf, size_t count)
1229 struct qeth_card *card = dev->driver_data;
1230 char *tmp;
1232 if (!card)
1233 return -EINVAL;
1235 if (qeth_check_layer2(card))
1236 return -EPERM;
1238 tmp = strsep((char **) &buf, "\n");
1239 if (!strcmp(tmp, "toggle")){
1240 card->ipato.invert6 = (card->ipato.invert6)? 0 : 1;
1241 } else if (!strcmp(tmp, "1")){
1242 card->ipato.invert6 = 1;
1243 } else if (!strcmp(tmp, "0")){
1244 card->ipato.invert6 = 0;
1245 } else {
1246 PRINT_WARN("ipato_invert6: write 0, 1 or 'toggle' to "
1247 "this file\n");
1248 return -EINVAL;
1250 return count;
1253 static QETH_DEVICE_ATTR(ipato_invert6, invert6, 0644,
1254 qeth_dev_ipato_invert6_show,
1255 qeth_dev_ipato_invert6_store);
1258 static ssize_t
1259 qeth_dev_ipato_add6_show(struct device *dev, struct device_attribute *attr, char *buf)
1261 struct qeth_card *card = dev->driver_data;
1263 if (!card)
1264 return -EINVAL;
1266 return qeth_dev_ipato_add_show(buf, card, QETH_PROT_IPV6);
1269 static ssize_t
1270 qeth_dev_ipato_add6_store(struct device *dev, struct device_attribute *attr, const char *buf, size_t count)
1272 struct qeth_card *card = dev->driver_data;
1274 if (!card)
1275 return -EINVAL;
1277 return qeth_dev_ipato_add_store(buf, count, card, QETH_PROT_IPV6);
1280 static QETH_DEVICE_ATTR(ipato_add6, add6, 0644,
1281 qeth_dev_ipato_add6_show,
1282 qeth_dev_ipato_add6_store);
1284 static ssize_t
1285 qeth_dev_ipato_del6_store(struct device *dev, struct device_attribute *attr, const char *buf, size_t count)
1287 struct qeth_card *card = dev->driver_data;
1289 if (!card)
1290 return -EINVAL;
1292 return qeth_dev_ipato_del_store(buf, count, card, QETH_PROT_IPV6);
1295 static QETH_DEVICE_ATTR(ipato_del6, del6, 0200, NULL,
1296 qeth_dev_ipato_del6_store);
1297 #endif /* CONFIG_QETH_IPV6 */
1299 static struct device_attribute * qeth_ipato_device_attrs[] = {
1300 &dev_attr_ipato_enable,
1301 &dev_attr_ipato_invert4,
1302 &dev_attr_ipato_add4,
1303 &dev_attr_ipato_del4,
1304 #ifdef CONFIG_QETH_IPV6
1305 &dev_attr_ipato_invert6,
1306 &dev_attr_ipato_add6,
1307 &dev_attr_ipato_del6,
1308 #endif
1309 NULL,
1312 static struct attribute_group qeth_device_ipato_group = {
1313 .name = "ipa_takeover",
1314 .attrs = (struct attribute **)qeth_ipato_device_attrs,
1317 static inline ssize_t
1318 qeth_dev_vipa_add_show(char *buf, struct qeth_card *card,
1319 enum qeth_prot_versions proto)
1321 struct qeth_ipaddr *ipaddr;
1322 char addr_str[40];
1323 int entry_len; /* length of 1 entry string, differs between v4 and v6 */
1324 unsigned long flags;
1325 int i = 0;
1327 if (qeth_check_layer2(card))
1328 return -EPERM;
1330 entry_len = (proto == QETH_PROT_IPV4)? 12 : 40;
1331 entry_len += 2; /* \n + terminator */
1332 spin_lock_irqsave(&card->ip_lock, flags);
1333 list_for_each_entry(ipaddr, &card->ip_list, entry){
1334 if (ipaddr->proto != proto)
1335 continue;
1336 if (ipaddr->type != QETH_IP_TYPE_VIPA)
1337 continue;
1338 /* String must not be longer than PAGE_SIZE. So we check if
1339 * string length gets near PAGE_SIZE. Then we can savely display
1340 * the next IPv6 address (worst case, compared to IPv4) */
1341 if ((PAGE_SIZE - i) <= entry_len)
1342 break;
1343 qeth_ipaddr_to_string(proto, (const u8 *)&ipaddr->u, addr_str);
1344 i += snprintf(buf + i, PAGE_SIZE - i, "%s\n", addr_str);
1346 spin_unlock_irqrestore(&card->ip_lock, flags);
1347 i += snprintf(buf + i, PAGE_SIZE - i, "\n");
1349 return i;
1352 static ssize_t
1353 qeth_dev_vipa_add4_show(struct device *dev, struct device_attribute *attr, char *buf)
1355 struct qeth_card *card = dev->driver_data;
1357 if (!card)
1358 return -EINVAL;
1360 return qeth_dev_vipa_add_show(buf, card, QETH_PROT_IPV4);
1363 static inline int
1364 qeth_parse_vipae(const char* buf, enum qeth_prot_versions proto,
1365 u8 *addr)
1367 if (qeth_string_to_ipaddr(buf, proto, addr)){
1368 PRINT_WARN("Invalid IP address format!\n");
1369 return -EINVAL;
1371 return 0;
1374 static inline ssize_t
1375 qeth_dev_vipa_add_store(const char *buf, size_t count,
1376 struct qeth_card *card, enum qeth_prot_versions proto)
1378 u8 addr[16] = {0, };
1379 int rc;
1381 if (qeth_check_layer2(card))
1382 return -EPERM;
1383 if ((rc = qeth_parse_vipae(buf, proto, addr)))
1384 return rc;
1386 if ((rc = qeth_add_vipa(card, proto, addr)))
1387 return rc;
1389 return count;
1392 static ssize_t
1393 qeth_dev_vipa_add4_store(struct device *dev, struct device_attribute *attr, const char *buf, size_t count)
1395 struct qeth_card *card = dev->driver_data;
1397 if (!card)
1398 return -EINVAL;
1400 return qeth_dev_vipa_add_store(buf, count, card, QETH_PROT_IPV4);
1403 static QETH_DEVICE_ATTR(vipa_add4, add4, 0644,
1404 qeth_dev_vipa_add4_show,
1405 qeth_dev_vipa_add4_store);
1407 static inline ssize_t
1408 qeth_dev_vipa_del_store(const char *buf, size_t count,
1409 struct qeth_card *card, enum qeth_prot_versions proto)
1411 u8 addr[16];
1412 int rc;
1414 if (qeth_check_layer2(card))
1415 return -EPERM;
1416 if ((rc = qeth_parse_vipae(buf, proto, addr)))
1417 return rc;
1419 qeth_del_vipa(card, proto, addr);
1421 return count;
1424 static ssize_t
1425 qeth_dev_vipa_del4_store(struct device *dev, struct device_attribute *attr, const char *buf, size_t count)
1427 struct qeth_card *card = dev->driver_data;
1429 if (!card)
1430 return -EINVAL;
1432 return qeth_dev_vipa_del_store(buf, count, card, QETH_PROT_IPV4);
1435 static QETH_DEVICE_ATTR(vipa_del4, del4, 0200, NULL,
1436 qeth_dev_vipa_del4_store);
1438 #ifdef CONFIG_QETH_IPV6
1439 static ssize_t
1440 qeth_dev_vipa_add6_show(struct device *dev, struct device_attribute *attr, char *buf)
1442 struct qeth_card *card = dev->driver_data;
1444 if (!card)
1445 return -EINVAL;
1447 return qeth_dev_vipa_add_show(buf, card, QETH_PROT_IPV6);
1450 static ssize_t
1451 qeth_dev_vipa_add6_store(struct device *dev, struct device_attribute *attr, const char *buf, size_t count)
1453 struct qeth_card *card = dev->driver_data;
1455 if (!card)
1456 return -EINVAL;
1458 return qeth_dev_vipa_add_store(buf, count, card, QETH_PROT_IPV6);
1461 static QETH_DEVICE_ATTR(vipa_add6, add6, 0644,
1462 qeth_dev_vipa_add6_show,
1463 qeth_dev_vipa_add6_store);
1465 static ssize_t
1466 qeth_dev_vipa_del6_store(struct device *dev, struct device_attribute *attr, const char *buf, size_t count)
1468 struct qeth_card *card = dev->driver_data;
1470 if (!card)
1471 return -EINVAL;
1473 if (qeth_check_layer2(card))
1474 return -EPERM;
1476 return qeth_dev_vipa_del_store(buf, count, card, QETH_PROT_IPV6);
1479 static QETH_DEVICE_ATTR(vipa_del6, del6, 0200, NULL,
1480 qeth_dev_vipa_del6_store);
1481 #endif /* CONFIG_QETH_IPV6 */
1483 static struct device_attribute * qeth_vipa_device_attrs[] = {
1484 &dev_attr_vipa_add4,
1485 &dev_attr_vipa_del4,
1486 #ifdef CONFIG_QETH_IPV6
1487 &dev_attr_vipa_add6,
1488 &dev_attr_vipa_del6,
1489 #endif
1490 NULL,
1493 static struct attribute_group qeth_device_vipa_group = {
1494 .name = "vipa",
1495 .attrs = (struct attribute **)qeth_vipa_device_attrs,
1498 static inline ssize_t
1499 qeth_dev_rxip_add_show(char *buf, struct qeth_card *card,
1500 enum qeth_prot_versions proto)
1502 struct qeth_ipaddr *ipaddr;
1503 char addr_str[40];
1504 int entry_len; /* length of 1 entry string, differs between v4 and v6 */
1505 unsigned long flags;
1506 int i = 0;
1508 if (qeth_check_layer2(card))
1509 return -EPERM;
1511 entry_len = (proto == QETH_PROT_IPV4)? 12 : 40;
1512 entry_len += 2; /* \n + terminator */
1513 spin_lock_irqsave(&card->ip_lock, flags);
1514 list_for_each_entry(ipaddr, &card->ip_list, entry){
1515 if (ipaddr->proto != proto)
1516 continue;
1517 if (ipaddr->type != QETH_IP_TYPE_RXIP)
1518 continue;
1519 /* String must not be longer than PAGE_SIZE. So we check if
1520 * string length gets near PAGE_SIZE. Then we can savely display
1521 * the next IPv6 address (worst case, compared to IPv4) */
1522 if ((PAGE_SIZE - i) <= entry_len)
1523 break;
1524 qeth_ipaddr_to_string(proto, (const u8 *)&ipaddr->u, addr_str);
1525 i += snprintf(buf + i, PAGE_SIZE - i, "%s\n", addr_str);
1527 spin_unlock_irqrestore(&card->ip_lock, flags);
1528 i += snprintf(buf + i, PAGE_SIZE - i, "\n");
1530 return i;
1533 static ssize_t
1534 qeth_dev_rxip_add4_show(struct device *dev, struct device_attribute *attr, char *buf)
1536 struct qeth_card *card = dev->driver_data;
1538 if (!card)
1539 return -EINVAL;
1541 return qeth_dev_rxip_add_show(buf, card, QETH_PROT_IPV4);
1544 static inline int
1545 qeth_parse_rxipe(const char* buf, enum qeth_prot_versions proto,
1546 u8 *addr)
1548 if (qeth_string_to_ipaddr(buf, proto, addr)){
1549 PRINT_WARN("Invalid IP address format!\n");
1550 return -EINVAL;
1552 return 0;
1555 static inline ssize_t
1556 qeth_dev_rxip_add_store(const char *buf, size_t count,
1557 struct qeth_card *card, enum qeth_prot_versions proto)
1559 u8 addr[16] = {0, };
1560 int rc;
1562 if (qeth_check_layer2(card))
1563 return -EPERM;
1564 if ((rc = qeth_parse_rxipe(buf, proto, addr)))
1565 return rc;
1567 if ((rc = qeth_add_rxip(card, proto, addr)))
1568 return rc;
1570 return count;
1573 static ssize_t
1574 qeth_dev_rxip_add4_store(struct device *dev, struct device_attribute *attr, const char *buf, size_t count)
1576 struct qeth_card *card = dev->driver_data;
1578 if (!card)
1579 return -EINVAL;
1581 return qeth_dev_rxip_add_store(buf, count, card, QETH_PROT_IPV4);
1584 static QETH_DEVICE_ATTR(rxip_add4, add4, 0644,
1585 qeth_dev_rxip_add4_show,
1586 qeth_dev_rxip_add4_store);
1588 static inline ssize_t
1589 qeth_dev_rxip_del_store(const char *buf, size_t count,
1590 struct qeth_card *card, enum qeth_prot_versions proto)
1592 u8 addr[16];
1593 int rc;
1595 if (qeth_check_layer2(card))
1596 return -EPERM;
1597 if ((rc = qeth_parse_rxipe(buf, proto, addr)))
1598 return rc;
1600 qeth_del_rxip(card, proto, addr);
1602 return count;
1605 static ssize_t
1606 qeth_dev_rxip_del4_store(struct device *dev, struct device_attribute *attr, const char *buf, size_t count)
1608 struct qeth_card *card = dev->driver_data;
1610 if (!card)
1611 return -EINVAL;
1613 return qeth_dev_rxip_del_store(buf, count, card, QETH_PROT_IPV4);
1616 static QETH_DEVICE_ATTR(rxip_del4, del4, 0200, NULL,
1617 qeth_dev_rxip_del4_store);
1619 #ifdef CONFIG_QETH_IPV6
1620 static ssize_t
1621 qeth_dev_rxip_add6_show(struct device *dev, struct device_attribute *attr, char *buf)
1623 struct qeth_card *card = dev->driver_data;
1625 if (!card)
1626 return -EINVAL;
1628 return qeth_dev_rxip_add_show(buf, card, QETH_PROT_IPV6);
1631 static ssize_t
1632 qeth_dev_rxip_add6_store(struct device *dev, struct device_attribute *attr, const char *buf, size_t count)
1634 struct qeth_card *card = dev->driver_data;
1636 if (!card)
1637 return -EINVAL;
1639 return qeth_dev_rxip_add_store(buf, count, card, QETH_PROT_IPV6);
1642 static QETH_DEVICE_ATTR(rxip_add6, add6, 0644,
1643 qeth_dev_rxip_add6_show,
1644 qeth_dev_rxip_add6_store);
1646 static ssize_t
1647 qeth_dev_rxip_del6_store(struct device *dev, struct device_attribute *attr, const char *buf, size_t count)
1649 struct qeth_card *card = dev->driver_data;
1651 if (!card)
1652 return -EINVAL;
1654 return qeth_dev_rxip_del_store(buf, count, card, QETH_PROT_IPV6);
1657 static QETH_DEVICE_ATTR(rxip_del6, del6, 0200, NULL,
1658 qeth_dev_rxip_del6_store);
1659 #endif /* CONFIG_QETH_IPV6 */
1661 static struct device_attribute * qeth_rxip_device_attrs[] = {
1662 &dev_attr_rxip_add4,
1663 &dev_attr_rxip_del4,
1664 #ifdef CONFIG_QETH_IPV6
1665 &dev_attr_rxip_add6,
1666 &dev_attr_rxip_del6,
1667 #endif
1668 NULL,
1671 static struct attribute_group qeth_device_rxip_group = {
1672 .name = "rxip",
1673 .attrs = (struct attribute **)qeth_rxip_device_attrs,
1677 qeth_create_device_attributes(struct device *dev)
1679 int ret;
1680 struct qeth_card *card = dev->driver_data;
1682 if (card->info.type == QETH_CARD_TYPE_OSN)
1683 return sysfs_create_group(&dev->kobj,
1684 &qeth_osn_device_attr_group);
1686 if ((ret = sysfs_create_group(&dev->kobj, &qeth_device_attr_group)))
1687 return ret;
1688 if ((ret = sysfs_create_group(&dev->kobj, &qeth_device_ipato_group))){
1689 sysfs_remove_group(&dev->kobj, &qeth_device_attr_group);
1690 return ret;
1692 if ((ret = sysfs_create_group(&dev->kobj, &qeth_device_vipa_group))){
1693 sysfs_remove_group(&dev->kobj, &qeth_device_attr_group);
1694 sysfs_remove_group(&dev->kobj, &qeth_device_ipato_group);
1695 return ret;
1697 if ((ret = sysfs_create_group(&dev->kobj, &qeth_device_rxip_group))){
1698 sysfs_remove_group(&dev->kobj, &qeth_device_attr_group);
1699 sysfs_remove_group(&dev->kobj, &qeth_device_ipato_group);
1700 sysfs_remove_group(&dev->kobj, &qeth_device_vipa_group);
1702 if ((ret = sysfs_create_group(&dev->kobj, &qeth_device_blkt_group)))
1703 return ret;
1705 return ret;
1708 void
1709 qeth_remove_device_attributes(struct device *dev)
1711 struct qeth_card *card = dev->driver_data;
1713 if (card->info.type == QETH_CARD_TYPE_OSN)
1714 return sysfs_remove_group(&dev->kobj,
1715 &qeth_osn_device_attr_group);
1717 sysfs_remove_group(&dev->kobj, &qeth_device_attr_group);
1718 sysfs_remove_group(&dev->kobj, &qeth_device_ipato_group);
1719 sysfs_remove_group(&dev->kobj, &qeth_device_vipa_group);
1720 sysfs_remove_group(&dev->kobj, &qeth_device_rxip_group);
1721 sysfs_remove_group(&dev->kobj, &qeth_device_blkt_group);
1724 /**********************/
1725 /* DRIVER ATTRIBUTES */
1726 /**********************/
1727 static ssize_t
1728 qeth_driver_group_store(struct device_driver *ddrv, const char *buf,
1729 size_t count)
1731 const char *start, *end;
1732 char bus_ids[3][BUS_ID_SIZE], *argv[3];
1733 int i;
1734 int err;
1736 start = buf;
1737 for (i = 0; i < 3; i++) {
1738 static const char delim[] = { ',', ',', '\n' };
1739 int len;
1741 if (!(end = strchr(start, delim[i])))
1742 return -EINVAL;
1743 len = min_t(ptrdiff_t, BUS_ID_SIZE, end - start);
1744 strncpy(bus_ids[i], start, len);
1745 bus_ids[i][len] = '\0';
1746 start = end + 1;
1747 argv[i] = bus_ids[i];
1749 err = ccwgroup_create(qeth_root_dev, qeth_ccwgroup_driver.driver_id,
1750 &qeth_ccw_driver, 3, argv);
1751 if (err)
1752 return err;
1753 else
1754 return count;
1758 static DRIVER_ATTR(group, 0200, 0, qeth_driver_group_store);
1760 static ssize_t
1761 qeth_driver_notifier_register_store(struct device_driver *ddrv, const char *buf,
1762 size_t count)
1764 int rc;
1765 int signum;
1766 char *tmp, *tmp2;
1768 tmp = strsep((char **) &buf, "\n");
1769 if (!strncmp(tmp, "unregister", 10)){
1770 if ((rc = qeth_notifier_unregister(current)))
1771 return rc;
1772 return count;
1775 signum = simple_strtoul(tmp, &tmp2, 10);
1776 if ((signum < 0) || (signum > 32)){
1777 PRINT_WARN("Signal number %d is out of range\n", signum);
1778 return -EINVAL;
1780 if ((rc = qeth_notifier_register(current, signum)))
1781 return rc;
1783 return count;
1786 static DRIVER_ATTR(notifier_register, 0200, 0,
1787 qeth_driver_notifier_register_store);
1790 qeth_create_driver_attributes(void)
1792 int rc;
1794 if ((rc = driver_create_file(&qeth_ccwgroup_driver.driver,
1795 &driver_attr_group)))
1796 return rc;
1797 return driver_create_file(&qeth_ccwgroup_driver.driver,
1798 &driver_attr_notifier_register);
1801 void
1802 qeth_remove_driver_attributes(void)
1804 driver_remove_file(&qeth_ccwgroup_driver.driver,
1805 &driver_attr_group);
1806 driver_remove_file(&qeth_ccwgroup_driver.driver,
1807 &driver_attr_notifier_register);