2 * drivers/s390/net/ctcm_mpc.c
4 * Copyright IBM Corp. 2004, 2007
11 This module exports functions to be used by CCS:
12 EXPORT_SYMBOL(ctc_mpc_alloc_channel);
13 EXPORT_SYMBOL(ctc_mpc_establish_connectivity);
14 EXPORT_SYMBOL(ctc_mpc_dealloc_ch);
15 EXPORT_SYMBOL(ctc_mpc_flow_control);
22 #define KMSG_COMPONENT "ctcm"
23 #define pr_fmt(fmt) KMSG_COMPONENT ": " fmt
25 #include <linux/module.h>
26 #include <linux/init.h>
27 #include <linux/kernel.h>
28 #include <linux/slab.h>
29 #include <linux/errno.h>
30 #include <linux/types.h>
31 #include <linux/interrupt.h>
32 #include <linux/timer.h>
33 #include <linux/sched.h>
35 #include <linux/signal.h>
36 #include <linux/string.h>
37 #include <linux/proc_fs.h>
40 #include <linux/if_arp.h>
41 #include <linux/tcp.h>
42 #include <linux/skbuff.h>
43 #include <linux/ctype.h>
44 #include <linux/netdevice.h>
47 #include <linux/io.h> /* instead of <asm/io.h> ok ? */
48 #include <asm/ccwdev.h>
49 #include <asm/ccwgroup.h>
50 #include <linux/bitops.h> /* instead of <asm/bitops.h> ok ? */
51 #include <linux/uaccess.h> /* instead of <asm/uaccess.h> ok ? */
52 #include <linux/wait.h>
53 #include <linux/moduleparam.h>
54 #include <asm/idals.h>
57 #include "ctcm_main.h"
58 #include "ctcm_fsms.h"
60 static const struct xid2 init_xid = {
61 .xid2_type_id = XID_FM2,
73 .xid2_option = XID2_0,
76 .xid2_dlc_type = XID2_READ_SIDE,
80 .xid2_buf_len = (MPC_BUFSIZE_DEFAULT - 35),
83 static const struct th_header thnorm = {
85 .th_ch_flag = TH_IS_XID,
86 .th_blk_flag = TH_DATA_IS_XID,
88 .th_seq_num = 0x00000000,
91 static const struct th_header thdummy = {
94 .th_blk_flag = TH_DATA_IS_XID,
96 .th_seq_num = 0x00000000,
100 * Definition of one MPC group
104 * Compatibility macros for busy handling
105 * of network devices.
108 static void ctcmpc_unpack_skb(struct channel *ch, struct sk_buff *pskb);
111 * MPC Group state machine actions (static prototypes)
113 static void mpc_action_nop(fsm_instance *fsm, int event, void *arg);
114 static void mpc_action_go_ready(fsm_instance *fsm, int event, void *arg);
115 static void mpc_action_go_inop(fsm_instance *fi, int event, void *arg);
116 static void mpc_action_timeout(fsm_instance *fi, int event, void *arg);
117 static int mpc_validate_xid(struct mpcg_info *mpcginfo);
118 static void mpc_action_yside_xid(fsm_instance *fsm, int event, void *arg);
119 static void mpc_action_doxid0(fsm_instance *fsm, int event, void *arg);
120 static void mpc_action_doxid7(fsm_instance *fsm, int event, void *arg);
121 static void mpc_action_xside_xid(fsm_instance *fsm, int event, void *arg);
122 static void mpc_action_rcvd_xid0(fsm_instance *fsm, int event, void *arg);
123 static void mpc_action_rcvd_xid7(fsm_instance *fsm, int event, void *arg);
126 /*-------------------------------------------------------------------*
127 * Dump buffer format *
129 *--------------------------------------------------------------------*/
130 void ctcmpc_dumpit(char *buf, int len)
132 __u32 ct, sw, rm, dup;
134 char tbuf[82], tdup[82];
135 #if (UTS_MACHINE == s390x)
141 char bhex[82], duphex[82];
150 for (ct = 0; ct < len; ct++, ptr++, rptr++) {
152 #if (UTS_MACHINE == s390x)
153 sprintf(addr, "%16.16lx", (__u64)rptr);
155 sprintf(addr, "%8.8X", (__u32)rptr);
158 sprintf(boff, "%4.4X", (__u32)ct);
162 if ((sw == 4) || (sw == 12))
167 #if (UTS_MACHINE == s390x)
168 sprintf(tbuf, "%2.2lX", (__u64)*ptr);
170 sprintf(tbuf, "%2.2X", (__u32)*ptr);
175 if ((0 != isprint(*ptr)) && (*ptr >= 0x20))
185 if ((strcmp(duphex, bhex)) != 0) {
188 "Duplicate as above to %s", addr);
189 ctcm_pr_debug(" --- %s ---\n",
192 ctcm_pr_debug(" %s (+%s) : %s [%s]\n",
193 addr, boff, bhex, basc);
195 strcpy(duphex, bhex);
204 for ( ; rm > 0; rm--, sw++) {
205 if ((sw == 4) || (sw == 12))
213 sprintf(tdup, "Duplicate as above to %s", addr);
214 ctcm_pr_debug(" --- %s ---\n", tdup);
216 ctcm_pr_debug(" %s (+%s) : %s [%s]\n",
217 addr, boff, bhex, basc);
220 sprintf(tdup, "Duplicate as above to %s", addr);
221 ctcm_pr_debug(" --- %s ---\n", tdup);
224 ctcm_pr_debug(" %s (+%s) : %s [%s]\n",
225 addr, boff, bhex, basc);
231 } /* end of ctcmpc_dumpit */
236 * Dump header and first 16 bytes of an sk_buff for debugging purposes.
238 * skb The sk_buff to dump.
239 * offset Offset relative to skb-data, where to start the dump.
241 void ctcmpc_dump_skb(struct sk_buff *skb, int offset)
244 struct th_header *header;
253 header = (struct th_header *)p;
255 ctcm_pr_debug("dump:\n");
256 ctcm_pr_debug("skb len=%d \n", skb->len);
258 switch (header->th_ch_flag) {
263 if ((header->th_blk_flag == TH_DATA_IS_XID) &&
264 (header->th_is_xid == 0x01))
274 pheader = (struct pdu *)p;
275 ctcm_pr_debug("pdu->offset: %d hex: %04x\n",
276 pheader->pdu_offset, pheader->pdu_offset);
277 ctcm_pr_debug("pdu->flag : %02x\n", pheader->pdu_flag);
278 ctcm_pr_debug("pdu->proto : %02x\n", pheader->pdu_proto);
279 ctcm_pr_debug("pdu->seq : %02x\n", pheader->pdu_seq);
283 ctcm_pr_debug("th->seg : %02x\n", header->th_seg);
284 ctcm_pr_debug("th->ch : %02x\n", header->th_ch_flag);
285 ctcm_pr_debug("th->blk_flag: %02x\n", header->th_blk_flag);
286 ctcm_pr_debug("th->type : %s\n",
287 (header->th_is_xid) ? "DATA" : "XID");
288 ctcm_pr_debug("th->seqnum : %04x\n", header->th_seq_num);
294 ctcm_pr_debug("data: ");
295 for (i = 0; i < bl; i++)
296 ctcm_pr_debug("%02x%s", *p++, (i % 16) ? " " : "\n");
301 static struct net_device *ctcmpc_get_dev(int port_num)
304 struct net_device *dev;
305 struct ctcm_priv *priv;
307 sprintf(device, "%s%i", MPC_DEVICE_NAME, port_num);
309 dev = __dev_get_by_name(&init_net, device);
312 CTCM_DBF_TEXT_(MPC_ERROR, CTC_DBF_ERROR,
313 "%s: Device not found by name: %s",
314 CTCM_FUNTAIL, device);
319 CTCM_DBF_TEXT_(MPC_ERROR, CTC_DBF_ERROR,
320 "%s(%s): dev->ml_priv is NULL",
321 CTCM_FUNTAIL, device);
324 if (priv->mpcg == NULL) {
325 CTCM_DBF_TEXT_(MPC_ERROR, CTC_DBF_ERROR,
326 "%s(%s): priv->mpcg is NULL",
327 CTCM_FUNTAIL, device);
334 * ctc_mpc_alloc_channel
335 * (exported interface)
337 * Device Initialization :
338 * ACTPATH driven IO operations
340 int ctc_mpc_alloc_channel(int port_num, void (*callback)(int, int))
342 struct net_device *dev;
343 struct mpc_group *grp;
344 struct ctcm_priv *priv;
346 dev = ctcmpc_get_dev(port_num);
352 grp->allochanfunc = callback;
353 grp->port_num = port_num;
354 grp->port_persist = 1;
356 CTCM_DBF_TEXT_(MPC_SETUP, CTC_DBF_INFO,
358 CTCM_FUNTAIL, dev->name, fsm_getstate_str(grp->fsm));
360 switch (fsm_getstate(grp->fsm)) {
361 case MPCG_STATE_INOP:
362 /* Group is in the process of terminating */
363 grp->alloc_called = 1;
365 case MPCG_STATE_RESET:
366 /* MPC Group will transition to state */
367 /* MPCG_STATE_XID2INITW iff the minimum number */
368 /* of 1 read and 1 write channel have successfully*/
370 /*fsm_newstate(grp->fsm, MPCG_STATE_XID2INITW);*/
372 grp->send_qllc_disc = 1;
373 case MPCG_STATE_XID0IOWAIT:
374 fsm_deltimer(&grp->timer);
375 grp->outstanding_xid2 = 0;
376 grp->outstanding_xid7 = 0;
377 grp->outstanding_xid7_p2 = 0;
378 grp->saved_xid2 = NULL;
381 fsm_event(priv->fsm, DEV_EVENT_START, dev);
383 case MPCG_STATE_READY:
384 /* XID exchanges completed after PORT was activated */
385 /* Link station already active */
386 /* Maybe timing issue...retry callback */
387 grp->allocchan_callback_retries++;
388 if (grp->allocchan_callback_retries < 4) {
389 if (grp->allochanfunc)
390 grp->allochanfunc(grp->port_num,
391 grp->group_max_buflen);
393 /* there are problems...bail out */
394 /* there may be a state mismatch so restart */
395 fsm_event(grp->fsm, MPCG_EVENT_INOP, dev);
396 grp->allocchan_callback_retries = 0;
403 EXPORT_SYMBOL(ctc_mpc_alloc_channel);
406 * ctc_mpc_establish_connectivity
407 * (exported interface)
409 void ctc_mpc_establish_connectivity(int port_num,
410 void (*callback)(int, int, int))
412 struct net_device *dev;
413 struct mpc_group *grp;
414 struct ctcm_priv *priv;
415 struct channel *rch, *wch;
417 dev = ctcmpc_get_dev(port_num);
422 rch = priv->channel[CTCM_READ];
423 wch = priv->channel[CTCM_WRITE];
425 CTCM_DBF_TEXT_(MPC_SETUP, CTC_DBF_INFO,
427 CTCM_FUNTAIL, dev->name, fsm_getstate_str(grp->fsm));
429 grp->estconnfunc = callback;
430 grp->port_num = port_num;
432 switch (fsm_getstate(grp->fsm)) {
433 case MPCG_STATE_READY:
434 /* XID exchanges completed after PORT was activated */
435 /* Link station already active */
436 /* Maybe timing issue...retry callback */
437 fsm_deltimer(&grp->timer);
438 grp->estconn_callback_retries++;
439 if (grp->estconn_callback_retries < 4) {
440 if (grp->estconnfunc) {
441 grp->estconnfunc(grp->port_num, 0,
442 grp->group_max_buflen);
443 grp->estconnfunc = NULL;
446 /* there are problems...bail out */
447 fsm_event(grp->fsm, MPCG_EVENT_INOP, dev);
448 grp->estconn_callback_retries = 0;
451 case MPCG_STATE_INOP:
452 case MPCG_STATE_RESET:
453 /* MPC Group is not ready to start XID - min num of */
454 /* 1 read and 1 write channel have not been acquired*/
456 CTCM_DBF_TEXT_(MPC_ERROR, CTC_DBF_ERROR,
457 "%s(%s): REJECTED - inactive channels",
458 CTCM_FUNTAIL, dev->name);
459 if (grp->estconnfunc) {
460 grp->estconnfunc(grp->port_num, -1, 0);
461 grp->estconnfunc = NULL;
464 case MPCG_STATE_XID2INITW:
465 /* alloc channel was called but no XID exchange */
466 /* has occurred. initiate xside XID exchange */
467 /* make sure yside XID0 processing has not started */
469 if ((fsm_getstate(rch->fsm) > CH_XID0_PENDING) ||
470 (fsm_getstate(wch->fsm) > CH_XID0_PENDING)) {
471 CTCM_DBF_TEXT_(MPC_ERROR, CTC_DBF_ERROR,
472 "%s(%s): ABORT - PASSIVE XID",
473 CTCM_FUNTAIL, dev->name);
476 grp->send_qllc_disc = 1;
477 fsm_newstate(grp->fsm, MPCG_STATE_XID0IOWAIT);
478 fsm_deltimer(&grp->timer);
479 fsm_addtimer(&grp->timer, MPC_XID_TIMEOUT_VALUE,
480 MPCG_EVENT_TIMER, dev);
481 grp->outstanding_xid7 = 0;
482 grp->outstanding_xid7_p2 = 0;
483 grp->saved_xid2 = NULL;
484 if ((rch->in_mpcgroup) &&
485 (fsm_getstate(rch->fsm) == CH_XID0_PENDING))
486 fsm_event(grp->fsm, MPCG_EVENT_XID0DO, rch);
488 CTCM_DBF_TEXT_(MPC_ERROR, CTC_DBF_ERROR,
489 "%s(%s): RX-%s not ready for ACTIVE XID0",
490 CTCM_FUNTAIL, dev->name, rch->id);
491 if (grp->estconnfunc) {
492 grp->estconnfunc(grp->port_num, -1, 0);
493 grp->estconnfunc = NULL;
495 fsm_deltimer(&grp->timer);
498 if ((wch->in_mpcgroup) &&
499 (fsm_getstate(wch->fsm) == CH_XID0_PENDING))
500 fsm_event(grp->fsm, MPCG_EVENT_XID0DO, wch);
502 CTCM_DBF_TEXT_(MPC_ERROR, CTC_DBF_ERROR,
503 "%s(%s): WX-%s not ready for ACTIVE XID0",
504 CTCM_FUNTAIL, dev->name, wch->id);
505 if (grp->estconnfunc) {
506 grp->estconnfunc(grp->port_num, -1, 0);
507 grp->estconnfunc = NULL;
509 fsm_deltimer(&grp->timer);
513 case MPCG_STATE_XID0IOWAIT:
514 /* already in active XID negotiations */
520 CTCM_PR_DEBUG("Exit %s()\n", __func__);
523 EXPORT_SYMBOL(ctc_mpc_establish_connectivity);
527 * (exported interface)
529 void ctc_mpc_dealloc_ch(int port_num)
531 struct net_device *dev;
532 struct ctcm_priv *priv;
533 struct mpc_group *grp;
535 dev = ctcmpc_get_dev(port_num);
541 CTCM_DBF_TEXT_(MPC_SETUP, CTC_DBF_DEBUG,
542 "%s: %s: refcount = %d\n",
543 CTCM_FUNTAIL, dev->name, netdev_refcnt_read(dev));
545 fsm_deltimer(&priv->restart_timer);
546 grp->channels_terminating = 0;
547 fsm_deltimer(&grp->timer);
548 grp->allochanfunc = NULL;
549 grp->estconnfunc = NULL;
550 grp->port_persist = 0;
551 grp->send_qllc_disc = 0;
552 fsm_event(grp->fsm, MPCG_EVENT_INOP, dev);
557 EXPORT_SYMBOL(ctc_mpc_dealloc_ch);
560 * ctc_mpc_flow_control
561 * (exported interface)
563 void ctc_mpc_flow_control(int port_num, int flowc)
565 struct ctcm_priv *priv;
566 struct mpc_group *grp;
567 struct net_device *dev;
571 dev = ctcmpc_get_dev(port_num);
577 CTCM_DBF_TEXT_(MPC_TRACE, CTC_DBF_DEBUG,
578 "%s: %s: flowc = %d",
579 CTCM_FUNTAIL, dev->name, flowc);
581 rch = priv->channel[CTCM_READ];
583 mpcg_state = fsm_getstate(grp->fsm);
586 if (mpcg_state == MPCG_STATE_FLOWC)
588 if (mpcg_state == MPCG_STATE_READY) {
589 if (grp->flow_off_called == 1)
590 grp->flow_off_called = 0;
592 fsm_newstate(grp->fsm, MPCG_STATE_FLOWC);
597 if (mpcg_state == MPCG_STATE_FLOWC) {
598 fsm_newstate(grp->fsm, MPCG_STATE_READY);
599 /* ensure any data that has accumulated */
600 /* on the io_queue will now be sen t */
601 tasklet_schedule(&rch->ch_tasklet);
603 /* possible race condition */
604 if (mpcg_state == MPCG_STATE_READY) {
605 grp->flow_off_called = 1;
612 EXPORT_SYMBOL(ctc_mpc_flow_control);
614 static int mpc_send_qllc_discontact(struct net_device *);
617 * helper function of ctcmpc_unpack_skb
619 static void mpc_rcvd_sweep_resp(struct mpcg_info *mpcginfo)
621 struct channel *rch = mpcginfo->ch;
622 struct net_device *dev = rch->netdev;
623 struct ctcm_priv *priv = dev->ml_priv;
624 struct mpc_group *grp = priv->mpcg;
625 struct channel *ch = priv->channel[CTCM_WRITE];
627 CTCM_PR_DEBUG("%s: ch=0x%p id=%s\n", __func__, ch, ch->id);
628 CTCM_D3_DUMP((char *)mpcginfo->sweep, TH_SWEEP_LENGTH);
630 grp->sweep_rsp_pend_num--;
632 if ((grp->sweep_req_pend_num == 0) &&
633 (grp->sweep_rsp_pend_num == 0)) {
634 fsm_deltimer(&ch->sweep_timer);
636 rch->th_seq_num = 0x00;
637 ch->th_seq_num = 0x00;
638 ctcm_clear_busy_do(dev);
648 * helper function of mpc_rcvd_sweep_req
649 * which is a helper of ctcmpc_unpack_skb
651 static void ctcmpc_send_sweep_resp(struct channel *rch)
653 struct net_device *dev = rch->netdev;
654 struct ctcm_priv *priv = dev->ml_priv;
655 struct mpc_group *grp = priv->mpcg;
656 struct th_sweep *header;
657 struct sk_buff *sweep_skb;
658 struct channel *ch = priv->channel[CTCM_WRITE];
660 CTCM_PR_DEBUG("%s: ch=0x%p id=%s\n", __func__, rch, rch->id);
662 sweep_skb = __dev_alloc_skb(MPC_BUFSIZE_DEFAULT, GFP_ATOMIC | GFP_DMA);
663 if (sweep_skb == NULL) {
664 CTCM_DBF_TEXT_(MPC_ERROR, CTC_DBF_ERROR,
665 "%s(%s): sweep_skb allocation ERROR\n",
666 CTCM_FUNTAIL, rch->id);
670 header = kmalloc(sizeof(struct th_sweep), gfp_type());
673 dev_kfree_skb_any(sweep_skb);
677 header->th.th_seg = 0x00 ;
678 header->th.th_ch_flag = TH_SWEEP_RESP;
679 header->th.th_blk_flag = 0x00;
680 header->th.th_is_xid = 0x00;
681 header->th.th_seq_num = 0x00;
682 header->sw.th_last_seq = ch->th_seq_num;
684 memcpy(skb_put(sweep_skb, TH_SWEEP_LENGTH), header, TH_SWEEP_LENGTH);
688 dev->trans_start = jiffies;
689 skb_queue_tail(&ch->sweep_queue, sweep_skb);
691 fsm_addtimer(&ch->sweep_timer, 100, CTC_EVENT_RSWEEP_TIMER, ch);
697 ctcm_clear_busy_do(dev);
698 fsm_event(grp->fsm, MPCG_EVENT_INOP, dev);
704 * helper function of ctcmpc_unpack_skb
706 static void mpc_rcvd_sweep_req(struct mpcg_info *mpcginfo)
708 struct channel *rch = mpcginfo->ch;
709 struct net_device *dev = rch->netdev;
710 struct ctcm_priv *priv = dev->ml_priv;
711 struct mpc_group *grp = priv->mpcg;
712 struct channel *ch = priv->channel[CTCM_WRITE];
715 CTCM_DBF_TEXT_(MPC_TRACE, CTC_DBF_DEBUG,
716 " %s(): ch=0x%p id=%s\n", __func__, ch, ch->id);
718 if (grp->in_sweep == 0) {
720 ctcm_test_and_set_busy(dev);
721 grp->sweep_req_pend_num = grp->active_channels[CTCM_READ];
722 grp->sweep_rsp_pend_num = grp->active_channels[CTCM_READ];
725 CTCM_D3_DUMP((char *)mpcginfo->sweep, TH_SWEEP_LENGTH);
727 grp->sweep_req_pend_num--;
728 ctcmpc_send_sweep_resp(ch);
734 * MPC Group Station FSM definitions
736 static const char *mpcg_event_names[] = {
737 [MPCG_EVENT_INOP] = "INOP Condition",
738 [MPCG_EVENT_DISCONC] = "Discontact Received",
739 [MPCG_EVENT_XID0DO] = "Channel Active - Start XID",
740 [MPCG_EVENT_XID2] = "XID2 Received",
741 [MPCG_EVENT_XID2DONE] = "XID0 Complete",
742 [MPCG_EVENT_XID7DONE] = "XID7 Complete",
743 [MPCG_EVENT_TIMER] = "XID Setup Timer",
744 [MPCG_EVENT_DOIO] = "XID DoIO",
747 static const char *mpcg_state_names[] = {
748 [MPCG_STATE_RESET] = "Reset",
749 [MPCG_STATE_INOP] = "INOP",
750 [MPCG_STATE_XID2INITW] = "Passive XID- XID0 Pending Start",
751 [MPCG_STATE_XID2INITX] = "Passive XID- XID0 Pending Complete",
752 [MPCG_STATE_XID7INITW] = "Passive XID- XID7 Pending P1 Start",
753 [MPCG_STATE_XID7INITX] = "Passive XID- XID7 Pending P2 Complete",
754 [MPCG_STATE_XID0IOWAIT] = "Active XID- XID0 Pending Start",
755 [MPCG_STATE_XID0IOWAIX] = "Active XID- XID0 Pending Complete",
756 [MPCG_STATE_XID7INITI] = "Active XID- XID7 Pending Start",
757 [MPCG_STATE_XID7INITZ] = "Active XID- XID7 Pending Complete ",
758 [MPCG_STATE_XID7INITF] = "XID - XID7 Complete ",
759 [MPCG_STATE_FLOWC] = "FLOW CONTROL ON",
760 [MPCG_STATE_READY] = "READY",
764 * The MPC Group Station FSM
767 static const fsm_node mpcg_fsm[] = {
768 { MPCG_STATE_RESET, MPCG_EVENT_INOP, mpc_action_go_inop },
769 { MPCG_STATE_INOP, MPCG_EVENT_INOP, mpc_action_nop },
770 { MPCG_STATE_FLOWC, MPCG_EVENT_INOP, mpc_action_go_inop },
772 { MPCG_STATE_READY, MPCG_EVENT_DISCONC, mpc_action_discontact },
773 { MPCG_STATE_READY, MPCG_EVENT_INOP, mpc_action_go_inop },
775 { MPCG_STATE_XID2INITW, MPCG_EVENT_XID0DO, mpc_action_doxid0 },
776 { MPCG_STATE_XID2INITW, MPCG_EVENT_XID2, mpc_action_rcvd_xid0 },
777 { MPCG_STATE_XID2INITW, MPCG_EVENT_INOP, mpc_action_go_inop },
778 { MPCG_STATE_XID2INITW, MPCG_EVENT_TIMER, mpc_action_timeout },
779 { MPCG_STATE_XID2INITW, MPCG_EVENT_DOIO, mpc_action_yside_xid },
781 { MPCG_STATE_XID2INITX, MPCG_EVENT_XID0DO, mpc_action_doxid0 },
782 { MPCG_STATE_XID2INITX, MPCG_EVENT_XID2, mpc_action_rcvd_xid0 },
783 { MPCG_STATE_XID2INITX, MPCG_EVENT_INOP, mpc_action_go_inop },
784 { MPCG_STATE_XID2INITX, MPCG_EVENT_TIMER, mpc_action_timeout },
785 { MPCG_STATE_XID2INITX, MPCG_EVENT_DOIO, mpc_action_yside_xid },
787 { MPCG_STATE_XID7INITW, MPCG_EVENT_XID2DONE, mpc_action_doxid7 },
788 { MPCG_STATE_XID7INITW, MPCG_EVENT_DISCONC, mpc_action_discontact },
789 { MPCG_STATE_XID7INITW, MPCG_EVENT_XID2, mpc_action_rcvd_xid7 },
790 { MPCG_STATE_XID7INITW, MPCG_EVENT_INOP, mpc_action_go_inop },
791 { MPCG_STATE_XID7INITW, MPCG_EVENT_TIMER, mpc_action_timeout },
792 { MPCG_STATE_XID7INITW, MPCG_EVENT_XID7DONE, mpc_action_doxid7 },
793 { MPCG_STATE_XID7INITW, MPCG_EVENT_DOIO, mpc_action_yside_xid },
795 { MPCG_STATE_XID7INITX, MPCG_EVENT_DISCONC, mpc_action_discontact },
796 { MPCG_STATE_XID7INITX, MPCG_EVENT_XID2, mpc_action_rcvd_xid7 },
797 { MPCG_STATE_XID7INITX, MPCG_EVENT_INOP, mpc_action_go_inop },
798 { MPCG_STATE_XID7INITX, MPCG_EVENT_XID7DONE, mpc_action_doxid7 },
799 { MPCG_STATE_XID7INITX, MPCG_EVENT_TIMER, mpc_action_timeout },
800 { MPCG_STATE_XID7INITX, MPCG_EVENT_DOIO, mpc_action_yside_xid },
802 { MPCG_STATE_XID0IOWAIT, MPCG_EVENT_XID0DO, mpc_action_doxid0 },
803 { MPCG_STATE_XID0IOWAIT, MPCG_EVENT_DISCONC, mpc_action_discontact },
804 { MPCG_STATE_XID0IOWAIT, MPCG_EVENT_XID2, mpc_action_rcvd_xid0 },
805 { MPCG_STATE_XID0IOWAIT, MPCG_EVENT_INOP, mpc_action_go_inop },
806 { MPCG_STATE_XID0IOWAIT, MPCG_EVENT_TIMER, mpc_action_timeout },
807 { MPCG_STATE_XID0IOWAIT, MPCG_EVENT_DOIO, mpc_action_xside_xid },
809 { MPCG_STATE_XID0IOWAIX, MPCG_EVENT_XID0DO, mpc_action_doxid0 },
810 { MPCG_STATE_XID0IOWAIX, MPCG_EVENT_DISCONC, mpc_action_discontact },
811 { MPCG_STATE_XID0IOWAIX, MPCG_EVENT_XID2, mpc_action_rcvd_xid0 },
812 { MPCG_STATE_XID0IOWAIX, MPCG_EVENT_INOP, mpc_action_go_inop },
813 { MPCG_STATE_XID0IOWAIX, MPCG_EVENT_TIMER, mpc_action_timeout },
814 { MPCG_STATE_XID0IOWAIX, MPCG_EVENT_DOIO, mpc_action_xside_xid },
816 { MPCG_STATE_XID7INITI, MPCG_EVENT_XID2DONE, mpc_action_doxid7 },
817 { MPCG_STATE_XID7INITI, MPCG_EVENT_XID2, mpc_action_rcvd_xid7 },
818 { MPCG_STATE_XID7INITI, MPCG_EVENT_DISCONC, mpc_action_discontact },
819 { MPCG_STATE_XID7INITI, MPCG_EVENT_INOP, mpc_action_go_inop },
820 { MPCG_STATE_XID7INITI, MPCG_EVENT_TIMER, mpc_action_timeout },
821 { MPCG_STATE_XID7INITI, MPCG_EVENT_XID7DONE, mpc_action_doxid7 },
822 { MPCG_STATE_XID7INITI, MPCG_EVENT_DOIO, mpc_action_xside_xid },
824 { MPCG_STATE_XID7INITZ, MPCG_EVENT_XID2, mpc_action_rcvd_xid7 },
825 { MPCG_STATE_XID7INITZ, MPCG_EVENT_XID7DONE, mpc_action_doxid7 },
826 { MPCG_STATE_XID7INITZ, MPCG_EVENT_DISCONC, mpc_action_discontact },
827 { MPCG_STATE_XID7INITZ, MPCG_EVENT_INOP, mpc_action_go_inop },
828 { MPCG_STATE_XID7INITZ, MPCG_EVENT_TIMER, mpc_action_timeout },
829 { MPCG_STATE_XID7INITZ, MPCG_EVENT_DOIO, mpc_action_xside_xid },
831 { MPCG_STATE_XID7INITF, MPCG_EVENT_INOP, mpc_action_go_inop },
832 { MPCG_STATE_XID7INITF, MPCG_EVENT_XID7DONE, mpc_action_go_ready },
835 static int mpcg_fsm_len = ARRAY_SIZE(mpcg_fsm);
838 * MPC Group Station FSM action
839 * CTCM_PROTO_MPC only
841 static void mpc_action_go_ready(fsm_instance *fsm, int event, void *arg)
843 struct net_device *dev = arg;
844 struct ctcm_priv *priv = dev->ml_priv;
845 struct mpc_group *grp = priv->mpcg;
848 CTCM_DBF_TEXT_(MPC_ERROR, CTC_DBF_ERROR,
849 "%s(%s): No MPC group",
850 CTCM_FUNTAIL, dev->name);
854 fsm_deltimer(&grp->timer);
856 if (grp->saved_xid2->xid2_flag2 == 0x40) {
857 priv->xid->xid2_flag2 = 0x00;
858 if (grp->estconnfunc) {
859 grp->estconnfunc(grp->port_num, 1,
860 grp->group_max_buflen);
861 grp->estconnfunc = NULL;
862 } else if (grp->allochanfunc)
863 grp->send_qllc_disc = 1;
865 fsm_event(grp->fsm, MPCG_EVENT_INOP, dev);
866 CTCM_DBF_TEXT_(MPC_ERROR, CTC_DBF_ERROR,
868 CTCM_FUNTAIL, dev->name);
872 grp->port_persist = 1;
873 grp->out_of_sequence = 0;
874 grp->estconn_called = 0;
876 tasklet_hi_schedule(&grp->mpc_tasklet2);
882 * helper of ctcm_init_netdevice
883 * CTCM_PROTO_MPC only
885 void mpc_group_ready(unsigned long adev)
887 struct net_device *dev = (struct net_device *)adev;
888 struct ctcm_priv *priv = dev->ml_priv;
889 struct mpc_group *grp = priv->mpcg;
890 struct channel *ch = NULL;
893 CTCM_DBF_TEXT_(MPC_ERROR, CTC_DBF_ERROR,
894 "%s(%s): No MPC group",
895 CTCM_FUNTAIL, dev->name);
899 CTCM_DBF_TEXT_(MPC_SETUP, CTC_DBF_NOTICE,
900 "%s: %s: GROUP TRANSITIONED TO READY, maxbuf = %d\n",
901 CTCM_FUNTAIL, dev->name, grp->group_max_buflen);
903 fsm_newstate(grp->fsm, MPCG_STATE_READY);
905 /* Put up a read on the channel */
906 ch = priv->channel[CTCM_READ];
908 CTCM_PR_DBGDATA("ctcmpc: %s() ToDCM_pdu_seq= %08x\n" ,
909 __func__, ch->pdu_seq);
911 ctcmpc_chx_rxidle(ch->fsm, CTC_EVENT_START, ch);
912 /* Put the write channel in idle state */
913 ch = priv->channel[CTCM_WRITE];
914 if (ch->collect_len > 0) {
915 spin_lock(&ch->collect_lock);
916 ctcm_purge_skb_queue(&ch->collect_queue);
918 spin_unlock(&ch->collect_lock);
920 ctcm_chx_txidle(ch->fsm, CTC_EVENT_START, ch);
921 ctcm_clear_busy(dev);
923 if (grp->estconnfunc) {
924 grp->estconnfunc(grp->port_num, 0,
925 grp->group_max_buflen);
926 grp->estconnfunc = NULL;
927 } else if (grp->allochanfunc)
928 grp->allochanfunc(grp->port_num, grp->group_max_buflen);
930 grp->send_qllc_disc = 1;
931 grp->changed_side = 0;
938 * Increment the MPC Group Active Channel Counts
939 * helper of dev_action (called from channel fsm)
941 void mpc_channel_action(struct channel *ch, int direction, int action)
943 struct net_device *dev = ch->netdev;
944 struct ctcm_priv *priv = dev->ml_priv;
945 struct mpc_group *grp = priv->mpcg;
948 CTCM_DBF_TEXT_(MPC_ERROR, CTC_DBF_ERROR,
949 "%s(%s): No MPC group",
950 CTCM_FUNTAIL, dev->name);
954 CTCM_PR_DEBUG("enter %s: ch=0x%p id=%s\n", __func__, ch, ch->id);
956 CTCM_DBF_TEXT_(MPC_TRACE, CTC_DBF_NOTICE,
957 "%s: %i / Grp:%s total_channels=%i, active_channels: "
958 "read=%i, write=%i\n", __func__, action,
959 fsm_getstate_str(grp->fsm), grp->num_channel_paths,
960 grp->active_channels[CTCM_READ],
961 grp->active_channels[CTCM_WRITE]);
963 if ((action == MPC_CHANNEL_ADD) && (ch->in_mpcgroup == 0)) {
964 grp->num_channel_paths++;
965 grp->active_channels[direction]++;
966 grp->outstanding_xid2++;
969 if (ch->xid_skb != NULL)
970 dev_kfree_skb_any(ch->xid_skb);
972 ch->xid_skb = __dev_alloc_skb(MPC_BUFSIZE_DEFAULT,
973 GFP_ATOMIC | GFP_DMA);
974 if (ch->xid_skb == NULL) {
975 CTCM_DBF_TEXT_(MPC_ERROR, CTC_DBF_ERROR,
976 "%s(%s): Couldn't alloc ch xid_skb\n",
977 CTCM_FUNTAIL, dev->name);
978 fsm_event(grp->fsm, MPCG_EVENT_INOP, dev);
981 ch->xid_skb_data = ch->xid_skb->data;
982 ch->xid_th = (struct th_header *)ch->xid_skb->data;
983 skb_put(ch->xid_skb, TH_HEADER_LENGTH);
984 ch->xid = (struct xid2 *)skb_tail_pointer(ch->xid_skb);
985 skb_put(ch->xid_skb, XID2_LENGTH);
986 ch->xid_id = skb_tail_pointer(ch->xid_skb);
987 ch->xid_skb->data = ch->xid_skb_data;
988 skb_reset_tail_pointer(ch->xid_skb);
989 ch->xid_skb->len = 0;
991 memcpy(skb_put(ch->xid_skb, grp->xid_skb->len),
995 ch->xid->xid2_dlc_type =
996 ((CHANNEL_DIRECTION(ch->flags) == CTCM_READ)
997 ? XID2_READ_SIDE : XID2_WRITE_SIDE);
999 if (CHANNEL_DIRECTION(ch->flags) == CTCM_WRITE)
1000 ch->xid->xid2_buf_len = 0x00;
1002 ch->xid_skb->data = ch->xid_skb_data;
1003 skb_reset_tail_pointer(ch->xid_skb);
1004 ch->xid_skb->len = 0;
1006 fsm_newstate(ch->fsm, CH_XID0_PENDING);
1008 if ((grp->active_channels[CTCM_READ] > 0) &&
1009 (grp->active_channels[CTCM_WRITE] > 0) &&
1010 (fsm_getstate(grp->fsm) < MPCG_STATE_XID2INITW)) {
1011 fsm_newstate(grp->fsm, MPCG_STATE_XID2INITW);
1012 CTCM_DBF_TEXT_(MPC_SETUP, CTC_DBF_NOTICE,
1013 "%s: %s: MPC GROUP CHANNELS ACTIVE\n",
1014 __func__, dev->name);
1016 } else if ((action == MPC_CHANNEL_REMOVE) &&
1017 (ch->in_mpcgroup == 1)) {
1018 ch->in_mpcgroup = 0;
1019 grp->num_channel_paths--;
1020 grp->active_channels[direction]--;
1022 if (ch->xid_skb != NULL)
1023 dev_kfree_skb_any(ch->xid_skb);
1026 if (grp->channels_terminating)
1029 if (((grp->active_channels[CTCM_READ] == 0) &&
1030 (grp->active_channels[CTCM_WRITE] > 0))
1031 || ((grp->active_channels[CTCM_WRITE] == 0) &&
1032 (grp->active_channels[CTCM_READ] > 0)))
1033 fsm_event(grp->fsm, MPCG_EVENT_INOP, dev);
1036 CTCM_DBF_TEXT_(MPC_TRACE, CTC_DBF_DEBUG,
1037 "exit %s: %i / Grp:%s total_channels=%i, active_channels: "
1038 "read=%i, write=%i\n", __func__, action,
1039 fsm_getstate_str(grp->fsm), grp->num_channel_paths,
1040 grp->active_channels[CTCM_READ],
1041 grp->active_channels[CTCM_WRITE]);
1043 CTCM_PR_DEBUG("exit %s: ch=0x%p id=%s\n", __func__, ch, ch->id);
1047 * Unpack a just received skb and hand it over to
1049 * special MPC version of unpack_skb.
1051 * ch The channel where this skb has been received.
1052 * pskb The received skb.
1054 static void ctcmpc_unpack_skb(struct channel *ch, struct sk_buff *pskb)
1056 struct net_device *dev = ch->netdev;
1057 struct ctcm_priv *priv = dev->ml_priv;
1058 struct mpc_group *grp = priv->mpcg;
1059 struct pdu *curr_pdu;
1060 struct mpcg_info *mpcginfo;
1061 struct th_header *header = NULL;
1062 struct th_sweep *sweep = NULL;
1063 int pdu_last_seen = 0;
1065 struct sk_buff *skb;
1069 CTCM_PR_DEBUG("ctcmpc enter: %s() %s cp:%i ch:%s\n",
1070 __func__, dev->name, smp_processor_id(), ch->id);
1072 header = (struct th_header *)pskb->data;
1073 if ((header->th_seg == 0) &&
1074 (header->th_ch_flag == 0) &&
1075 (header->th_blk_flag == 0) &&
1076 (header->th_seq_num == 0))
1077 /* nothing for us */ goto done;
1079 CTCM_PR_DBGDATA("%s: th_header\n", __func__);
1080 CTCM_D3_DUMP((char *)header, TH_HEADER_LENGTH);
1081 CTCM_PR_DBGDATA("%s: pskb len: %04x \n", __func__, pskb->len);
1084 pskb->ip_summed = CHECKSUM_UNNECESSARY;
1085 skb_pull(pskb, TH_HEADER_LENGTH);
1087 if (likely(header->th_ch_flag == TH_HAS_PDU)) {
1088 CTCM_PR_DBGDATA("%s: came into th_has_pdu\n", __func__);
1089 if ((fsm_getstate(grp->fsm) == MPCG_STATE_FLOWC) ||
1090 ((fsm_getstate(grp->fsm) == MPCG_STATE_READY) &&
1091 (header->th_seq_num != ch->th_seq_num + 1) &&
1092 (ch->th_seq_num != 0))) {
1093 /* This is NOT the next segment *
1094 * we are not the correct race winner *
1095 * go away and let someone else win *
1096 * BUT..this only applies if xid negot *
1099 grp->out_of_sequence += 1;
1100 __skb_push(pskb, TH_HEADER_LENGTH);
1101 skb_queue_tail(&ch->io_queue, pskb);
1102 CTCM_PR_DBGDATA("%s: th_seq_num expect:%08x "
1103 "got:%08x\n", __func__,
1104 ch->th_seq_num + 1, header->th_seq_num);
1108 grp->out_of_sequence = 0;
1109 ch->th_seq_num = header->th_seq_num;
1111 CTCM_PR_DBGDATA("ctcmpc: %s() FromVTAM_th_seq=%08x\n",
1112 __func__, ch->th_seq_num);
1114 if (unlikely(fsm_getstate(grp->fsm) != MPCG_STATE_READY))
1116 while ((pskb->len > 0) && !pdu_last_seen) {
1117 curr_pdu = (struct pdu *)pskb->data;
1119 CTCM_PR_DBGDATA("%s: pdu_header\n", __func__);
1120 CTCM_D3_DUMP((char *)pskb->data, PDU_HEADER_LENGTH);
1121 CTCM_PR_DBGDATA("%s: pskb len: %04x \n",
1122 __func__, pskb->len);
1124 skb_pull(pskb, PDU_HEADER_LENGTH);
1126 if (curr_pdu->pdu_flag & PDU_LAST)
1128 if (curr_pdu->pdu_flag & PDU_CNTL)
1129 pskb->protocol = htons(ETH_P_SNAP);
1131 pskb->protocol = htons(ETH_P_SNA_DIX);
1133 if ((pskb->len <= 0) || (pskb->len > ch->max_bufsize)) {
1134 CTCM_DBF_TEXT_(MPC_ERROR, CTC_DBF_ERROR,
1135 "%s(%s): Dropping packet with "
1137 CTCM_FUNTAIL, dev->name, pskb->len);
1139 priv->stats.rx_dropped++;
1140 priv->stats.rx_length_errors++;
1143 skb_reset_mac_header(pskb);
1144 new_len = curr_pdu->pdu_offset;
1145 CTCM_PR_DBGDATA("%s: new_len: %04x \n",
1147 if ((new_len == 0) || (new_len > pskb->len)) {
1148 /* should never happen */
1149 /* pskb len must be hosed...bail out */
1150 CTCM_DBF_TEXT_(MPC_ERROR, CTC_DBF_ERROR,
1151 "%s(%s): non valid pdu_offset: %04x",
1152 /* "data may be lost", */
1153 CTCM_FUNTAIL, dev->name, new_len);
1156 skb = __dev_alloc_skb(new_len+4, GFP_ATOMIC);
1159 CTCM_DBF_TEXT_(MPC_ERROR, CTC_DBF_ERROR,
1160 "%s(%s): MEMORY allocation error",
1161 CTCM_FUNTAIL, dev->name);
1162 priv->stats.rx_dropped++;
1163 fsm_event(grp->fsm, MPCG_EVENT_INOP, dev);
1166 memcpy(skb_put(skb, new_len), pskb->data, new_len);
1168 skb_reset_mac_header(skb);
1169 skb->dev = pskb->dev;
1170 skb->protocol = pskb->protocol;
1171 skb->ip_summed = CHECKSUM_UNNECESSARY;
1172 *((__u32 *) skb_push(skb, 4)) = ch->pdu_seq;
1175 if (do_debug_data) {
1176 ctcm_pr_debug("%s: ToDCM_pdu_seq= %08x\n",
1177 __func__, ch->pdu_seq);
1178 ctcm_pr_debug("%s: skb:%0lx "
1179 "skb len: %d \n", __func__,
1180 (unsigned long)skb, skb->len);
1181 ctcm_pr_debug("%s: up to 32 bytes "
1182 "of pdu_data sent\n", __func__);
1183 ctcmpc_dump32((char *)skb->data, skb->len);
1187 sendrc = netif_rx(skb);
1188 priv->stats.rx_packets++;
1189 priv->stats.rx_bytes += skblen;
1190 skb_pull(pskb, new_len); /* point to next PDU */
1193 mpcginfo = kmalloc(sizeof(struct mpcg_info), gfp_type());
1194 if (mpcginfo == NULL)
1198 mpcginfo->th = header;
1199 mpcginfo->skb = pskb;
1200 CTCM_PR_DEBUG("%s: Not PDU - may be control pkt\n",
1203 sweep = (struct th_sweep *)pskb->data;
1204 mpcginfo->sweep = sweep;
1205 if (header->th_ch_flag == TH_SWEEP_REQ)
1206 mpc_rcvd_sweep_req(mpcginfo);
1207 else if (header->th_ch_flag == TH_SWEEP_RESP)
1208 mpc_rcvd_sweep_resp(mpcginfo);
1209 else if (header->th_blk_flag == TH_DATA_IS_XID) {
1210 struct xid2 *thisxid = (struct xid2 *)pskb->data;
1211 skb_pull(pskb, XID2_LENGTH);
1212 mpcginfo->xid = thisxid;
1213 fsm_event(grp->fsm, MPCG_EVENT_XID2, mpcginfo);
1214 } else if (header->th_blk_flag == TH_DISCONTACT)
1215 fsm_event(grp->fsm, MPCG_EVENT_DISCONC, mpcginfo);
1216 else if (header->th_seq_num != 0) {
1217 CTCM_DBF_TEXT_(MPC_ERROR, CTC_DBF_ERROR,
1218 "%s(%s): control pkt expected\n",
1219 CTCM_FUNTAIL, dev->name);
1220 priv->stats.rx_dropped++;
1221 /* mpcginfo only used for non-data transfers */
1224 ctcmpc_dump_skb(pskb, -8);
1229 dev_kfree_skb_any(pskb);
1230 if (sendrc == NET_RX_DROP) {
1232 "The network backlog for %s is exceeded, "
1233 "package dropped\n", __func__);
1234 fsm_event(grp->fsm, MPCG_EVENT_INOP, dev);
1237 CTCM_PR_DEBUG("exit %s: %s: ch=0x%p id=%s\n",
1238 __func__, dev->name, ch, ch->id);
1242 * tasklet helper for mpc's skb unpacking.
1244 * ch The channel to work on.
1245 * Allow flow control back pressure to occur here.
1246 * Throttling back channel can result in excessive
1247 * channel inactivity and system deact of channel
1249 void ctcmpc_bh(unsigned long thischan)
1251 struct channel *ch = (struct channel *)thischan;
1252 struct sk_buff *skb;
1253 struct net_device *dev = ch->netdev;
1254 struct ctcm_priv *priv = dev->ml_priv;
1255 struct mpc_group *grp = priv->mpcg;
1257 CTCM_PR_DEBUG("%s cp:%i enter: %s() %s\n",
1258 dev->name, smp_processor_id(), __func__, ch->id);
1259 /* caller has requested driver to throttle back */
1260 while ((fsm_getstate(grp->fsm) != MPCG_STATE_FLOWC) &&
1261 (skb = skb_dequeue(&ch->io_queue))) {
1262 ctcmpc_unpack_skb(ch, skb);
1263 if (grp->out_of_sequence > 20) {
1264 /* assume data loss has occurred if */
1265 /* missing seq_num for extended */
1266 /* period of time */
1267 grp->out_of_sequence = 0;
1268 fsm_event(grp->fsm, MPCG_EVENT_INOP, dev);
1271 if (skb == skb_peek(&ch->io_queue))
1274 CTCM_PR_DEBUG("exit %s: %s: ch=0x%p id=%s\n",
1275 __func__, dev->name, ch, ch->id);
1280 * MPC Group Initializations
1282 struct mpc_group *ctcmpc_init_mpc_group(struct ctcm_priv *priv)
1284 struct mpc_group *grp;
1286 CTCM_DBF_TEXT_(MPC_SETUP, CTC_DBF_INFO,
1287 "Enter %s(%p)", CTCM_FUNTAIL, priv);
1289 grp = kzalloc(sizeof(struct mpc_group), GFP_KERNEL);
1293 grp->fsm = init_fsm("mpcg", mpcg_state_names, mpcg_event_names,
1294 MPCG_NR_STATES, MPCG_NR_EVENTS, mpcg_fsm,
1295 mpcg_fsm_len, GFP_KERNEL);
1296 if (grp->fsm == NULL) {
1301 fsm_newstate(grp->fsm, MPCG_STATE_RESET);
1302 fsm_settimer(grp->fsm, &grp->timer);
1305 __dev_alloc_skb(MPC_BUFSIZE_DEFAULT, GFP_ATOMIC | GFP_DMA);
1306 if (grp->xid_skb == NULL) {
1307 kfree_fsm(grp->fsm);
1311 /* base xid for all channels in group */
1312 grp->xid_skb_data = grp->xid_skb->data;
1313 grp->xid_th = (struct th_header *)grp->xid_skb->data;
1314 memcpy(skb_put(grp->xid_skb, TH_HEADER_LENGTH),
1315 &thnorm, TH_HEADER_LENGTH);
1317 grp->xid = (struct xid2 *)skb_tail_pointer(grp->xid_skb);
1318 memcpy(skb_put(grp->xid_skb, XID2_LENGTH), &init_xid, XID2_LENGTH);
1319 grp->xid->xid2_adj_id = jiffies | 0xfff00000;
1320 grp->xid->xid2_sender_id = jiffies;
1322 grp->xid_id = skb_tail_pointer(grp->xid_skb);
1323 memcpy(skb_put(grp->xid_skb, 4), "VTAM", 4);
1326 __dev_alloc_skb(MPC_BUFSIZE_DEFAULT, GFP_ATOMIC|GFP_DMA);
1327 if (grp->rcvd_xid_skb == NULL) {
1328 kfree_fsm(grp->fsm);
1329 dev_kfree_skb(grp->xid_skb);
1333 grp->rcvd_xid_data = grp->rcvd_xid_skb->data;
1334 grp->rcvd_xid_th = (struct th_header *)grp->rcvd_xid_skb->data;
1335 memcpy(skb_put(grp->rcvd_xid_skb, TH_HEADER_LENGTH),
1336 &thnorm, TH_HEADER_LENGTH);
1337 grp->saved_xid2 = NULL;
1338 priv->xid = grp->xid;
1344 * The MPC Group Station FSM
1348 * MPC Group Station FSM actions
1349 * CTCM_PROTO_MPC only
1353 * NOP action for statemachines
1355 static void mpc_action_nop(fsm_instance *fi, int event, void *arg)
1360 * invoked when the device transitions to dev_stopped
1361 * MPC will stop each individual channel if a single XID failure
1362 * occurs, or will intitiate all channels be stopped if a GROUP
1363 * level failure occurs.
1365 static void mpc_action_go_inop(fsm_instance *fi, int event, void *arg)
1367 struct net_device *dev = arg;
1368 struct ctcm_priv *priv;
1369 struct mpc_group *grp;
1370 struct channel *wch;
1372 BUG_ON(dev == NULL);
1373 CTCM_PR_DEBUG("Enter %s: %s\n", __func__, dev->name);
1375 priv = dev->ml_priv;
1377 grp->flow_off_called = 0;
1378 fsm_deltimer(&grp->timer);
1379 if (grp->channels_terminating)
1382 grp->channels_terminating = 1;
1383 grp->saved_state = fsm_getstate(grp->fsm);
1384 fsm_newstate(grp->fsm, MPCG_STATE_INOP);
1385 if (grp->saved_state > MPCG_STATE_XID7INITF)
1386 CTCM_DBF_TEXT_(MPC_TRACE, CTC_DBF_NOTICE,
1387 "%s(%s): MPC GROUP INOPERATIVE",
1388 CTCM_FUNTAIL, dev->name);
1389 if ((grp->saved_state != MPCG_STATE_RESET) ||
1390 /* dealloc_channel has been called */
1391 (grp->port_persist == 0))
1392 fsm_deltimer(&priv->restart_timer);
1394 wch = priv->channel[CTCM_WRITE];
1396 switch (grp->saved_state) {
1397 case MPCG_STATE_RESET:
1398 case MPCG_STATE_INOP:
1399 case MPCG_STATE_XID2INITW:
1400 case MPCG_STATE_XID0IOWAIT:
1401 case MPCG_STATE_XID2INITX:
1402 case MPCG_STATE_XID7INITW:
1403 case MPCG_STATE_XID7INITX:
1404 case MPCG_STATE_XID0IOWAIX:
1405 case MPCG_STATE_XID7INITI:
1406 case MPCG_STATE_XID7INITZ:
1407 case MPCG_STATE_XID7INITF:
1409 case MPCG_STATE_FLOWC:
1410 case MPCG_STATE_READY:
1412 tasklet_hi_schedule(&wch->ch_disc_tasklet);
1415 grp->xid2_tgnum = 0;
1416 grp->group_max_buflen = 0; /*min of all received */
1417 grp->outstanding_xid2 = 0;
1418 grp->outstanding_xid7 = 0;
1419 grp->outstanding_xid7_p2 = 0;
1420 grp->saved_xid2 = NULL;
1422 grp->changed_side = 0;
1424 grp->rcvd_xid_skb->data = grp->rcvd_xid_data;
1425 skb_reset_tail_pointer(grp->rcvd_xid_skb);
1426 grp->rcvd_xid_skb->len = 0;
1427 grp->rcvd_xid_th = (struct th_header *)grp->rcvd_xid_skb->data;
1428 memcpy(skb_put(grp->rcvd_xid_skb, TH_HEADER_LENGTH), &thnorm,
1431 if (grp->send_qllc_disc == 1) {
1432 grp->send_qllc_disc = 0;
1433 mpc_send_qllc_discontact(dev);
1436 /* DO NOT issue DEV_EVENT_STOP directly out of this code */
1437 /* This can result in INOP of VTAM PU due to halting of */
1438 /* outstanding IO which causes a sense to be returned */
1439 /* Only about 3 senses are allowed and then IOS/VTAM will*/
1440 /* become unreachable without manual intervention */
1441 if ((grp->port_persist == 1) || (grp->alloc_called)) {
1442 grp->alloc_called = 0;
1443 fsm_deltimer(&priv->restart_timer);
1444 fsm_addtimer(&priv->restart_timer, 500, DEV_EVENT_RESTART, dev);
1445 fsm_newstate(grp->fsm, MPCG_STATE_RESET);
1446 if (grp->saved_state > MPCG_STATE_XID7INITF)
1447 CTCM_DBF_TEXT_(MPC_TRACE, CTC_DBF_ALWAYS,
1448 "%s(%s): MPC GROUP RECOVERY SCHEDULED",
1449 CTCM_FUNTAIL, dev->name);
1451 fsm_deltimer(&priv->restart_timer);
1452 fsm_addtimer(&priv->restart_timer, 500, DEV_EVENT_STOP, dev);
1453 fsm_newstate(grp->fsm, MPCG_STATE_RESET);
1454 CTCM_DBF_TEXT_(MPC_TRACE, CTC_DBF_ALWAYS,
1455 "%s(%s): NO MPC GROUP RECOVERY ATTEMPTED",
1456 CTCM_FUNTAIL, dev->name);
1461 * Handle mpc group action timeout.
1462 * MPC Group Station FSM action
1463 * CTCM_PROTO_MPC only
1465 * fi An instance of an mpc_group fsm.
1466 * event The event, just happened.
1467 * arg Generic pointer, casted from net_device * upon call.
1469 static void mpc_action_timeout(fsm_instance *fi, int event, void *arg)
1471 struct net_device *dev = arg;
1472 struct ctcm_priv *priv;
1473 struct mpc_group *grp;
1474 struct channel *wch;
1475 struct channel *rch;
1477 BUG_ON(dev == NULL);
1479 priv = dev->ml_priv;
1481 wch = priv->channel[CTCM_WRITE];
1482 rch = priv->channel[CTCM_READ];
1484 switch (fsm_getstate(grp->fsm)) {
1485 case MPCG_STATE_XID2INITW:
1486 /* Unless there is outstanding IO on the */
1487 /* channel just return and wait for ATTN */
1488 /* interrupt to begin XID negotiations */
1489 if ((fsm_getstate(rch->fsm) == CH_XID0_PENDING) &&
1490 (fsm_getstate(wch->fsm) == CH_XID0_PENDING))
1493 fsm_event(grp->fsm, MPCG_EVENT_INOP, dev);
1496 CTCM_DBF_TEXT_(MPC_TRACE, CTC_DBF_DEBUG,
1498 CTCM_FUNTAIL, dev->name);
1503 * MPC Group Station FSM action
1504 * CTCM_PROTO_MPC only
1506 void mpc_action_discontact(fsm_instance *fi, int event, void *arg)
1508 struct mpcg_info *mpcginfo = arg;
1509 struct channel *ch = mpcginfo->ch;
1510 struct net_device *dev;
1511 struct ctcm_priv *priv;
1512 struct mpc_group *grp;
1517 priv = dev->ml_priv;
1519 CTCM_DBF_TEXT_(MPC_TRACE, CTC_DBF_NOTICE,
1521 CTCM_FUNTAIL, dev->name, ch->id);
1523 grp->send_qllc_disc = 1;
1524 fsm_event(grp->fsm, MPCG_EVENT_INOP, dev);
1533 * MPC Group Station - not part of FSM
1534 * CTCM_PROTO_MPC only
1535 * called from add_channel in ctcm_main.c
1537 void mpc_action_send_discontact(unsigned long thischan)
1540 struct channel *ch = (struct channel *)thischan;
1541 unsigned long saveflags = 0;
1543 spin_lock_irqsave(get_ccwdev_lock(ch->cdev), saveflags);
1544 rc = ccw_device_start(ch->cdev, &ch->ccw[15],
1545 (unsigned long)ch, 0xff, 0);
1546 spin_unlock_irqrestore(get_ccwdev_lock(ch->cdev), saveflags);
1549 ctcm_ccw_check_rc(ch, rc, (char *)__func__);
1557 * helper function of mpc FSM
1558 * CTCM_PROTO_MPC only
1559 * mpc_action_rcvd_xid7
1561 static int mpc_validate_xid(struct mpcg_info *mpcginfo)
1563 struct channel *ch = mpcginfo->ch;
1564 struct net_device *dev = ch->netdev;
1565 struct ctcm_priv *priv = dev->ml_priv;
1566 struct mpc_group *grp = priv->mpcg;
1567 struct xid2 *xid = mpcginfo->xid;
1571 int len = TH_HEADER_LENGTH + PDU_HEADER_LENGTH;
1573 CTCM_PR_DEBUG("Enter %s: xid=%p\n", __func__, xid);
1577 /* XID REJECTED: xid == NULL */
1578 CTCM_DBF_TEXT_(MPC_ERROR, CTC_DBF_ERROR,
1579 "%s(%s): xid = NULL",
1580 CTCM_FUNTAIL, ch->id);
1584 CTCM_D3_DUMP((char *)xid, XID2_LENGTH);
1586 /*the received direction should be the opposite of ours */
1587 if (((CHANNEL_DIRECTION(ch->flags) == CTCM_READ) ? XID2_WRITE_SIDE :
1588 XID2_READ_SIDE) != xid->xid2_dlc_type) {
1590 /* XID REJECTED: r/w channel pairing mismatch */
1591 CTCM_DBF_TEXT_(MPC_ERROR, CTC_DBF_ERROR,
1592 "%s(%s): r/w channel pairing mismatch",
1593 CTCM_FUNTAIL, ch->id);
1597 if (xid->xid2_dlc_type == XID2_READ_SIDE) {
1598 CTCM_PR_DEBUG("%s: grpmaxbuf:%d xid2buflen:%d\n", __func__,
1599 grp->group_max_buflen, xid->xid2_buf_len);
1601 if (grp->group_max_buflen == 0 || grp->group_max_buflen >
1602 xid->xid2_buf_len - len)
1603 grp->group_max_buflen = xid->xid2_buf_len - len;
1606 if (grp->saved_xid2 == NULL) {
1608 (struct xid2 *)skb_tail_pointer(grp->rcvd_xid_skb);
1610 memcpy(skb_put(grp->rcvd_xid_skb,
1611 XID2_LENGTH), xid, XID2_LENGTH);
1612 grp->rcvd_xid_skb->data = grp->rcvd_xid_data;
1614 skb_reset_tail_pointer(grp->rcvd_xid_skb);
1615 grp->rcvd_xid_skb->len = 0;
1617 /* convert two 32 bit numbers into 1 64 bit for id compare */
1618 our_id = (__u64)priv->xid->xid2_adj_id;
1619 our_id = our_id << 32;
1620 our_id = our_id + priv->xid->xid2_sender_id;
1621 their_id = (__u64)xid->xid2_adj_id;
1622 their_id = their_id << 32;
1623 their_id = their_id + xid->xid2_sender_id;
1624 /* lower id assume the xside role */
1625 if (our_id < their_id) {
1627 CTCM_DBF_TEXT_(MPC_TRACE, CTC_DBF_NOTICE,
1628 "%s(%s): WE HAVE LOW ID - TAKE XSIDE",
1629 CTCM_FUNTAIL, ch->id);
1632 CTCM_DBF_TEXT_(MPC_TRACE, CTC_DBF_NOTICE,
1633 "%s(%s): WE HAVE HIGH ID - TAKE YSIDE",
1634 CTCM_FUNTAIL, ch->id);
1638 if (xid->xid2_flag4 != grp->saved_xid2->xid2_flag4) {
1640 /* XID REJECTED: xid flag byte4 mismatch */
1641 CTCM_DBF_TEXT_(MPC_ERROR, CTC_DBF_ERROR,
1642 "%s(%s): xid flag byte4 mismatch",
1643 CTCM_FUNTAIL, ch->id);
1645 if (xid->xid2_flag2 == 0x40) {
1647 /* XID REJECTED - xid NOGOOD */
1648 CTCM_DBF_TEXT_(MPC_ERROR, CTC_DBF_ERROR,
1649 "%s(%s): xid NOGOOD",
1650 CTCM_FUNTAIL, ch->id);
1652 if (xid->xid2_adj_id != grp->saved_xid2->xid2_adj_id) {
1654 /* XID REJECTED - Adjacent Station ID Mismatch */
1655 CTCM_DBF_TEXT_(MPC_ERROR, CTC_DBF_ERROR,
1656 "%s(%s): Adjacent Station ID Mismatch",
1657 CTCM_FUNTAIL, ch->id);
1659 if (xid->xid2_sender_id != grp->saved_xid2->xid2_sender_id) {
1661 /* XID REJECTED - Sender Address Mismatch */
1662 CTCM_DBF_TEXT_(MPC_ERROR, CTC_DBF_ERROR,
1663 "%s(%s): Sender Address Mismatch",
1664 CTCM_FUNTAIL, ch->id);
1670 "The XID used in the MPC protocol is not valid, "
1672 priv->xid->xid2_flag2 = 0x40;
1673 grp->saved_xid2->xid2_flag2 = 0x40;
1680 * MPC Group Station FSM action
1681 * CTCM_PROTO_MPC only
1683 static void mpc_action_side_xid(fsm_instance *fsm, void *arg, int side)
1685 struct channel *ch = arg;
1688 unsigned long saveflags = 0; /* avoids compiler warning with
1689 spin_unlock_irqrestore */
1691 CTCM_PR_DEBUG("Enter %s: cp=%i ch=0x%p id=%s\n",
1692 __func__, smp_processor_id(), ch, ch->id);
1694 if (ctcm_checkalloc_buffer(ch))
1698 * skb data-buffer referencing:
1700 ch->trans_skb->data = ch->trans_skb_data;
1701 skb_reset_tail_pointer(ch->trans_skb);
1702 ch->trans_skb->len = 0;
1703 /* result of the previous 3 statements is NOT always
1704 * already set after ctcm_checkalloc_buffer
1705 * because of possible reuse of the trans_skb
1707 memset(ch->trans_skb->data, 0, 16);
1708 ch->rcvd_xid_th = (struct th_header *)ch->trans_skb_data;
1709 /* check is main purpose here: */
1710 skb_put(ch->trans_skb, TH_HEADER_LENGTH);
1711 ch->rcvd_xid = (struct xid2 *)skb_tail_pointer(ch->trans_skb);
1712 /* check is main purpose here: */
1713 skb_put(ch->trans_skb, XID2_LENGTH);
1714 ch->rcvd_xid_id = skb_tail_pointer(ch->trans_skb);
1715 /* cleanup back to startpoint */
1716 ch->trans_skb->data = ch->trans_skb_data;
1717 skb_reset_tail_pointer(ch->trans_skb);
1718 ch->trans_skb->len = 0;
1720 /* non-checking rewrite of above skb data-buffer referencing: */
1722 memset(ch->trans_skb->data, 0, 16);
1723 ch->rcvd_xid_th = (struct th_header *)ch->trans_skb_data;
1724 ch->rcvd_xid = (struct xid2 *)(ch->trans_skb_data + TH_HEADER_LENGTH);
1725 ch->rcvd_xid_id = ch->trans_skb_data + TH_HEADER_LENGTH + XID2_LENGTH;
1728 ch->ccw[8].flags = CCW_FLAG_SLI | CCW_FLAG_CC;
1729 ch->ccw[8].count = 0;
1730 ch->ccw[8].cda = 0x00;
1732 if (!(ch->xid_th && ch->xid && ch->xid_id))
1733 CTCM_DBF_TEXT_(MPC_TRACE, CTC_DBF_INFO,
1734 "%s(%s): xid_th=%p, xid=%p, xid_id=%p",
1735 CTCM_FUNTAIL, ch->id, ch->xid_th, ch->xid, ch->xid_id);
1737 if (side == XSIDE) {
1738 /* mpc_action_xside_xid */
1739 if (ch->xid_th == NULL)
1741 ch->ccw[9].cmd_code = CCW_CMD_WRITE;
1742 ch->ccw[9].flags = CCW_FLAG_SLI | CCW_FLAG_CC;
1743 ch->ccw[9].count = TH_HEADER_LENGTH;
1744 ch->ccw[9].cda = virt_to_phys(ch->xid_th);
1746 if (ch->xid == NULL)
1748 ch->ccw[10].cmd_code = CCW_CMD_WRITE;
1749 ch->ccw[10].flags = CCW_FLAG_SLI | CCW_FLAG_CC;
1750 ch->ccw[10].count = XID2_LENGTH;
1751 ch->ccw[10].cda = virt_to_phys(ch->xid);
1753 ch->ccw[11].cmd_code = CCW_CMD_READ;
1754 ch->ccw[11].flags = CCW_FLAG_SLI | CCW_FLAG_CC;
1755 ch->ccw[11].count = TH_HEADER_LENGTH;
1756 ch->ccw[11].cda = virt_to_phys(ch->rcvd_xid_th);
1758 ch->ccw[12].cmd_code = CCW_CMD_READ;
1759 ch->ccw[12].flags = CCW_FLAG_SLI | CCW_FLAG_CC;
1760 ch->ccw[12].count = XID2_LENGTH;
1761 ch->ccw[12].cda = virt_to_phys(ch->rcvd_xid);
1763 ch->ccw[13].cmd_code = CCW_CMD_READ;
1764 ch->ccw[13].cda = virt_to_phys(ch->rcvd_xid_id);
1766 } else { /* side == YSIDE : mpc_action_yside_xid */
1767 ch->ccw[9].cmd_code = CCW_CMD_READ;
1768 ch->ccw[9].flags = CCW_FLAG_SLI | CCW_FLAG_CC;
1769 ch->ccw[9].count = TH_HEADER_LENGTH;
1770 ch->ccw[9].cda = virt_to_phys(ch->rcvd_xid_th);
1772 ch->ccw[10].cmd_code = CCW_CMD_READ;
1773 ch->ccw[10].flags = CCW_FLAG_SLI | CCW_FLAG_CC;
1774 ch->ccw[10].count = XID2_LENGTH;
1775 ch->ccw[10].cda = virt_to_phys(ch->rcvd_xid);
1777 if (ch->xid_th == NULL)
1779 ch->ccw[11].cmd_code = CCW_CMD_WRITE;
1780 ch->ccw[11].flags = CCW_FLAG_SLI | CCW_FLAG_CC;
1781 ch->ccw[11].count = TH_HEADER_LENGTH;
1782 ch->ccw[11].cda = virt_to_phys(ch->xid_th);
1784 if (ch->xid == NULL)
1786 ch->ccw[12].cmd_code = CCW_CMD_WRITE;
1787 ch->ccw[12].flags = CCW_FLAG_SLI | CCW_FLAG_CC;
1788 ch->ccw[12].count = XID2_LENGTH;
1789 ch->ccw[12].cda = virt_to_phys(ch->xid);
1791 if (ch->xid_id == NULL)
1793 ch->ccw[13].cmd_code = CCW_CMD_WRITE;
1794 ch->ccw[13].cda = virt_to_phys(ch->xid_id);
1797 ch->ccw[13].flags = CCW_FLAG_SLI | CCW_FLAG_CC;
1798 ch->ccw[13].count = 4;
1800 ch->ccw[14].cmd_code = CCW_CMD_NOOP;
1801 ch->ccw[14].flags = CCW_FLAG_SLI;
1802 ch->ccw[14].count = 0;
1803 ch->ccw[14].cda = 0;
1805 CTCM_CCW_DUMP((char *)&ch->ccw[8], sizeof(struct ccw1) * 7);
1806 CTCM_D3_DUMP((char *)ch->xid_th, TH_HEADER_LENGTH);
1807 CTCM_D3_DUMP((char *)ch->xid, XID2_LENGTH);
1808 CTCM_D3_DUMP((char *)ch->xid_id, 4);
1811 /* Such conditional locking is a known problem for
1812 * sparse because its static undeterministic.
1813 * Warnings should be ignored here. */
1814 spin_lock_irqsave(get_ccwdev_lock(ch->cdev), saveflags);
1818 fsm_addtimer(&ch->timer, 5000 , CTC_EVENT_TIMER, ch);
1819 rc = ccw_device_start(ch->cdev, &ch->ccw[8],
1820 (unsigned long)ch, 0xff, 0);
1822 if (gotlock) /* see remark above about conditional locking */
1823 spin_unlock_irqrestore(get_ccwdev_lock(ch->cdev), saveflags);
1826 ctcm_ccw_check_rc(ch, rc,
1827 (side == XSIDE) ? "x-side XID" : "y-side XID");
1831 CTCM_PR_DEBUG("Exit %s: ch=0x%p id=%s\n",
1832 __func__, ch, ch->id);
1838 * MPC Group Station FSM action
1839 * CTCM_PROTO_MPC only
1841 static void mpc_action_xside_xid(fsm_instance *fsm, int event, void *arg)
1843 mpc_action_side_xid(fsm, arg, XSIDE);
1847 * MPC Group Station FSM action
1848 * CTCM_PROTO_MPC only
1850 static void mpc_action_yside_xid(fsm_instance *fsm, int event, void *arg)
1852 mpc_action_side_xid(fsm, arg, YSIDE);
1856 * MPC Group Station FSM action
1857 * CTCM_PROTO_MPC only
1859 static void mpc_action_doxid0(fsm_instance *fsm, int event, void *arg)
1861 struct channel *ch = arg;
1862 struct net_device *dev = ch->netdev;
1863 struct ctcm_priv *priv = dev->ml_priv;
1864 struct mpc_group *grp = priv->mpcg;
1866 CTCM_PR_DEBUG("Enter %s: cp=%i ch=0x%p id=%s\n",
1867 __func__, smp_processor_id(), ch, ch->id);
1869 if (ch->xid == NULL) {
1870 CTCM_DBF_TEXT_(MPC_ERROR, CTC_DBF_ERROR,
1871 "%s(%s): ch->xid == NULL",
1872 CTCM_FUNTAIL, dev->name);
1876 fsm_newstate(ch->fsm, CH_XID0_INPROGRESS);
1878 ch->xid->xid2_option = XID2_0;
1880 switch (fsm_getstate(grp->fsm)) {
1881 case MPCG_STATE_XID2INITW:
1882 case MPCG_STATE_XID2INITX:
1883 ch->ccw[8].cmd_code = CCW_CMD_SENSE_CMD;
1885 case MPCG_STATE_XID0IOWAIT:
1886 case MPCG_STATE_XID0IOWAIX:
1887 ch->ccw[8].cmd_code = CCW_CMD_WRITE_CTL;
1891 fsm_event(grp->fsm, MPCG_EVENT_DOIO, ch);
1897 * MPC Group Station FSM action
1898 * CTCM_PROTO_MPC only
1900 static void mpc_action_doxid7(fsm_instance *fsm, int event, void *arg)
1902 struct net_device *dev = arg;
1903 struct ctcm_priv *priv = dev->ml_priv;
1904 struct mpc_group *grp = NULL;
1913 for (direction = CTCM_READ; direction <= CTCM_WRITE; direction++) {
1914 struct channel *ch = priv->channel[direction];
1915 struct xid2 *thisxid = ch->xid;
1916 ch->xid_skb->data = ch->xid_skb_data;
1917 skb_reset_tail_pointer(ch->xid_skb);
1918 ch->xid_skb->len = 0;
1919 thisxid->xid2_option = XID2_7;
1923 if (grp->outstanding_xid7_p2 > 0) {
1924 if (grp->roll == YSIDE) {
1925 if (fsm_getstate(ch->fsm) == CH_XID7_PENDING1) {
1926 fsm_newstate(ch->fsm, CH_XID7_PENDING2);
1927 ch->ccw[8].cmd_code = CCW_CMD_SENSE_CMD;
1928 memcpy(skb_put(ch->xid_skb,
1930 &thdummy, TH_HEADER_LENGTH);
1933 } else if (fsm_getstate(ch->fsm) < CH_XID7_PENDING2) {
1934 fsm_newstate(ch->fsm, CH_XID7_PENDING2);
1935 ch->ccw[8].cmd_code = CCW_CMD_WRITE_CTL;
1936 memcpy(skb_put(ch->xid_skb,
1938 &thnorm, TH_HEADER_LENGTH);
1943 if (grp->roll == YSIDE) {
1944 if (fsm_getstate(ch->fsm) < CH_XID7_PENDING4) {
1945 fsm_newstate(ch->fsm, CH_XID7_PENDING4);
1946 memcpy(skb_put(ch->xid_skb,
1948 &thnorm, TH_HEADER_LENGTH);
1949 ch->ccw[8].cmd_code = CCW_CMD_WRITE_CTL;
1952 } else if (fsm_getstate(ch->fsm) == CH_XID7_PENDING3) {
1953 fsm_newstate(ch->fsm, CH_XID7_PENDING4);
1954 ch->ccw[8].cmd_code = CCW_CMD_SENSE_CMD;
1955 memcpy(skb_put(ch->xid_skb, TH_HEADER_LENGTH),
1956 &thdummy, TH_HEADER_LENGTH);
1962 fsm_event(grp->fsm, MPCG_EVENT_DOIO, ch);
1969 * MPC Group Station FSM action
1970 * CTCM_PROTO_MPC only
1972 static void mpc_action_rcvd_xid0(fsm_instance *fsm, int event, void *arg)
1975 struct mpcg_info *mpcginfo = arg;
1976 struct channel *ch = mpcginfo->ch;
1977 struct net_device *dev = ch->netdev;
1978 struct ctcm_priv *priv = dev->ml_priv;
1979 struct mpc_group *grp = priv->mpcg;
1981 CTCM_PR_DEBUG("%s: ch-id:%s xid2:%i xid7:%i xidt_p2:%i \n",
1982 __func__, ch->id, grp->outstanding_xid2,
1983 grp->outstanding_xid7, grp->outstanding_xid7_p2);
1985 if (fsm_getstate(ch->fsm) < CH_XID7_PENDING)
1986 fsm_newstate(ch->fsm, CH_XID7_PENDING);
1988 grp->outstanding_xid2--;
1989 grp->outstanding_xid7++;
1990 grp->outstanding_xid7_p2++;
1992 /* must change state before validating xid to */
1993 /* properly handle interim interrupts received*/
1994 switch (fsm_getstate(grp->fsm)) {
1995 case MPCG_STATE_XID2INITW:
1996 fsm_newstate(grp->fsm, MPCG_STATE_XID2INITX);
1997 mpc_validate_xid(mpcginfo);
1999 case MPCG_STATE_XID0IOWAIT:
2000 fsm_newstate(grp->fsm, MPCG_STATE_XID0IOWAIX);
2001 mpc_validate_xid(mpcginfo);
2003 case MPCG_STATE_XID2INITX:
2004 if (grp->outstanding_xid2 == 0) {
2005 fsm_newstate(grp->fsm, MPCG_STATE_XID7INITW);
2006 mpc_validate_xid(mpcginfo);
2007 fsm_event(grp->fsm, MPCG_EVENT_XID2DONE, dev);
2010 case MPCG_STATE_XID0IOWAIX:
2011 if (grp->outstanding_xid2 == 0) {
2012 fsm_newstate(grp->fsm, MPCG_STATE_XID7INITI);
2013 mpc_validate_xid(mpcginfo);
2014 fsm_event(grp->fsm, MPCG_EVENT_XID2DONE, dev);
2020 CTCM_PR_DEBUG("ctcmpc:%s() %s xid2:%i xid7:%i xidt_p2:%i \n",
2021 __func__, ch->id, grp->outstanding_xid2,
2022 grp->outstanding_xid7, grp->outstanding_xid7_p2);
2023 CTCM_PR_DEBUG("ctcmpc:%s() %s grpstate: %s chanstate: %s \n",
2025 fsm_getstate_str(grp->fsm), fsm_getstate_str(ch->fsm));
2032 * MPC Group Station FSM action
2033 * CTCM_PROTO_MPC only
2035 static void mpc_action_rcvd_xid7(fsm_instance *fsm, int event, void *arg)
2037 struct mpcg_info *mpcginfo = arg;
2038 struct channel *ch = mpcginfo->ch;
2039 struct net_device *dev = ch->netdev;
2040 struct ctcm_priv *priv = dev->ml_priv;
2041 struct mpc_group *grp = priv->mpcg;
2043 CTCM_PR_DEBUG("Enter %s: cp=%i ch=0x%p id=%s\n",
2044 __func__, smp_processor_id(), ch, ch->id);
2045 CTCM_PR_DEBUG("%s: outstanding_xid7: %i, outstanding_xid7_p2: %i\n",
2046 __func__, grp->outstanding_xid7, grp->outstanding_xid7_p2);
2048 grp->outstanding_xid7--;
2049 ch->xid_skb->data = ch->xid_skb_data;
2050 skb_reset_tail_pointer(ch->xid_skb);
2051 ch->xid_skb->len = 0;
2053 switch (fsm_getstate(grp->fsm)) {
2054 case MPCG_STATE_XID7INITI:
2055 fsm_newstate(grp->fsm, MPCG_STATE_XID7INITZ);
2056 mpc_validate_xid(mpcginfo);
2058 case MPCG_STATE_XID7INITW:
2059 fsm_newstate(grp->fsm, MPCG_STATE_XID7INITX);
2060 mpc_validate_xid(mpcginfo);
2062 case MPCG_STATE_XID7INITZ:
2063 case MPCG_STATE_XID7INITX:
2064 if (grp->outstanding_xid7 == 0) {
2065 if (grp->outstanding_xid7_p2 > 0) {
2066 grp->outstanding_xid7 =
2067 grp->outstanding_xid7_p2;
2068 grp->outstanding_xid7_p2 = 0;
2070 fsm_newstate(grp->fsm, MPCG_STATE_XID7INITF);
2072 mpc_validate_xid(mpcginfo);
2073 fsm_event(grp->fsm, MPCG_EVENT_XID7DONE, dev);
2076 mpc_validate_xid(mpcginfo);
2084 * mpc_action helper of an MPC Group Station FSM action
2085 * CTCM_PROTO_MPC only
2087 static int mpc_send_qllc_discontact(struct net_device *dev)
2090 struct sk_buff *skb;
2091 struct qllc *qllcptr;
2092 struct ctcm_priv *priv = dev->ml_priv;
2093 struct mpc_group *grp = priv->mpcg;
2095 CTCM_PR_DEBUG("%s: GROUP STATE: %s\n",
2096 __func__, mpcg_state_names[grp->saved_state]);
2098 switch (grp->saved_state) {
2100 * establish conn callback function is
2101 * preferred method to report failure
2103 case MPCG_STATE_XID0IOWAIT:
2104 case MPCG_STATE_XID0IOWAIX:
2105 case MPCG_STATE_XID7INITI:
2106 case MPCG_STATE_XID7INITZ:
2107 case MPCG_STATE_XID2INITW:
2108 case MPCG_STATE_XID2INITX:
2109 case MPCG_STATE_XID7INITW:
2110 case MPCG_STATE_XID7INITX:
2111 if (grp->estconnfunc) {
2112 grp->estconnfunc(grp->port_num, -1, 0);
2113 grp->estconnfunc = NULL;
2116 case MPCG_STATE_FLOWC:
2117 case MPCG_STATE_READY:
2118 grp->send_qllc_disc = 2;
2119 new_len = sizeof(struct qllc);
2120 qllcptr = kzalloc(new_len, gfp_type() | GFP_DMA);
2121 if (qllcptr == NULL) {
2122 CTCM_DBF_TEXT_(MPC_ERROR, CTC_DBF_ERROR,
2123 "%s(%s): qllcptr allocation error",
2124 CTCM_FUNTAIL, dev->name);
2128 qllcptr->qllc_address = 0xcc;
2129 qllcptr->qllc_commands = 0x03;
2131 skb = __dev_alloc_skb(new_len, GFP_ATOMIC);
2134 CTCM_DBF_TEXT_(MPC_ERROR, CTC_DBF_ERROR,
2135 "%s(%s): skb allocation error",
2136 CTCM_FUNTAIL, dev->name);
2137 priv->stats.rx_dropped++;
2142 memcpy(skb_put(skb, new_len), qllcptr, new_len);
2145 if (skb_headroom(skb) < 4) {
2146 CTCM_DBF_TEXT_(MPC_ERROR, CTC_DBF_ERROR,
2147 "%s(%s): skb_headroom error",
2148 CTCM_FUNTAIL, dev->name);
2149 dev_kfree_skb_any(skb);
2153 *((__u32 *)skb_push(skb, 4)) =
2154 priv->channel[CTCM_READ]->pdu_seq;
2155 priv->channel[CTCM_READ]->pdu_seq++;
2156 CTCM_PR_DBGDATA("ctcmpc: %s ToDCM_pdu_seq= %08x\n",
2157 __func__, priv->channel[CTCM_READ]->pdu_seq);
2159 /* receipt of CC03 resets anticipated sequence number on
2161 priv->channel[CTCM_READ]->pdu_seq = 0x00;
2162 skb_reset_mac_header(skb);
2164 skb->protocol = htons(ETH_P_SNAP);
2165 skb->ip_summed = CHECKSUM_UNNECESSARY;
2167 CTCM_D3_DUMP(skb->data, (sizeof(struct qllc) + 4));
2178 /* --- This is the END my friend --- */