1 // SPDX-License-Identifier: GPL-2.0
3 * Copyright IBM Corp. 2004, 2007
10 This module exports functions to be used by CCS:
11 EXPORT_SYMBOL(ctc_mpc_alloc_channel);
12 EXPORT_SYMBOL(ctc_mpc_establish_connectivity);
13 EXPORT_SYMBOL(ctc_mpc_dealloc_ch);
14 EXPORT_SYMBOL(ctc_mpc_flow_control);
21 #define KMSG_COMPONENT "ctcm"
22 #define pr_fmt(fmt) KMSG_COMPONENT ": " fmt
24 #include <linux/module.h>
25 #include <linux/init.h>
26 #include <linux/kernel.h>
27 #include <linux/slab.h>
28 #include <linux/errno.h>
29 #include <linux/types.h>
30 #include <linux/interrupt.h>
31 #include <linux/timer.h>
32 #include <linux/sched.h>
34 #include <linux/signal.h>
35 #include <linux/string.h>
36 #include <linux/proc_fs.h>
39 #include <linux/if_arp.h>
40 #include <linux/tcp.h>
41 #include <linux/skbuff.h>
42 #include <linux/ctype.h>
43 #include <linux/netdevice.h>
46 #include <linux/io.h> /* instead of <asm/io.h> ok ? */
47 #include <asm/ccwdev.h>
48 #include <asm/ccwgroup.h>
49 #include <linux/bitops.h> /* instead of <asm/bitops.h> ok ? */
50 #include <linux/uaccess.h> /* instead of <asm/uaccess.h> ok ? */
51 #include <linux/wait.h>
52 #include <linux/moduleparam.h>
53 #include <asm/idals.h>
55 #include "ctcm_main.h"
57 #include "ctcm_fsms.h"
59 static const struct xid2 init_xid = {
60 .xid2_type_id = XID_FM2,
72 .xid2_option = XID2_0,
75 .xid2_dlc_type = XID2_READ_SIDE,
79 .xid2_buf_len = (MPC_BUFSIZE_DEFAULT - 35),
82 static const struct th_header thnorm = {
84 .th_ch_flag = TH_IS_XID,
85 .th_blk_flag = TH_DATA_IS_XID,
87 .th_seq_num = 0x00000000,
90 static const struct th_header thdummy = {
93 .th_blk_flag = TH_DATA_IS_XID,
95 .th_seq_num = 0x00000000,
99 * Definition of one MPC group
103 * Compatibility macros for busy handling
104 * of network devices.
107 static void ctcmpc_unpack_skb(struct channel *ch, struct sk_buff *pskb);
110 * MPC Group state machine actions (static prototypes)
112 static void mpc_action_nop(fsm_instance *fsm, int event, void *arg);
113 static void mpc_action_go_ready(fsm_instance *fsm, int event, void *arg);
114 static void mpc_action_go_inop(fsm_instance *fi, int event, void *arg);
115 static void mpc_action_timeout(fsm_instance *fi, int event, void *arg);
116 static int mpc_validate_xid(struct mpcg_info *mpcginfo);
117 static void mpc_action_yside_xid(fsm_instance *fsm, int event, void *arg);
118 static void mpc_action_doxid0(fsm_instance *fsm, int event, void *arg);
119 static void mpc_action_doxid7(fsm_instance *fsm, int event, void *arg);
120 static void mpc_action_xside_xid(fsm_instance *fsm, int event, void *arg);
121 static void mpc_action_rcvd_xid0(fsm_instance *fsm, int event, void *arg);
122 static void mpc_action_rcvd_xid7(fsm_instance *fsm, int event, void *arg);
125 /*-------------------------------------------------------------------*
126 * Dump buffer format *
128 *--------------------------------------------------------------------*/
129 void ctcmpc_dumpit(char *buf, int len)
131 __u32 ct, sw, rm, dup;
133 char tbuf[82], tdup[82];
136 char bhex[82], duphex[82];
145 for (ct = 0; ct < len; ct++, ptr++, rptr++) {
147 sprintf(addr, "%16.16llx", (__u64)rptr);
149 sprintf(boff, "%4.4X", (__u32)ct);
153 if ((sw == 4) || (sw == 12))
158 sprintf(tbuf, "%2.2llX", (__u64)*ptr);
162 if ((0 != isprint(*ptr)) && (*ptr >= 0x20))
172 if ((strcmp(duphex, bhex)) != 0) {
175 "Duplicate as above to %s", addr);
176 ctcm_pr_debug(" --- %s ---\n",
179 ctcm_pr_debug(" %s (+%s) : %s [%s]\n",
180 addr, boff, bhex, basc);
182 strcpy(duphex, bhex);
191 for ( ; rm > 0; rm--, sw++) {
192 if ((sw == 4) || (sw == 12))
200 sprintf(tdup, "Duplicate as above to %s", addr);
201 ctcm_pr_debug(" --- %s ---\n", tdup);
203 ctcm_pr_debug(" %s (+%s) : %s [%s]\n",
204 addr, boff, bhex, basc);
207 sprintf(tdup, "Duplicate as above to %s", addr);
208 ctcm_pr_debug(" --- %s ---\n", tdup);
211 ctcm_pr_debug(" %s (+%s) : %s [%s]\n",
212 addr, boff, bhex, basc);
218 } /* end of ctcmpc_dumpit */
223 * Dump header and first 16 bytes of an sk_buff for debugging purposes.
225 * skb The sk_buff to dump.
226 * offset Offset relative to skb-data, where to start the dump.
228 void ctcmpc_dump_skb(struct sk_buff *skb, int offset)
231 struct th_header *header;
240 header = (struct th_header *)p;
242 ctcm_pr_debug("dump:\n");
243 ctcm_pr_debug("skb len=%d \n", skb->len);
245 switch (header->th_ch_flag) {
250 if ((header->th_blk_flag == TH_DATA_IS_XID) &&
251 (header->th_is_xid == 0x01))
261 pheader = (struct pdu *)p;
262 ctcm_pr_debug("pdu->offset: %d hex: %04x\n",
263 pheader->pdu_offset, pheader->pdu_offset);
264 ctcm_pr_debug("pdu->flag : %02x\n", pheader->pdu_flag);
265 ctcm_pr_debug("pdu->proto : %02x\n", pheader->pdu_proto);
266 ctcm_pr_debug("pdu->seq : %02x\n", pheader->pdu_seq);
270 ctcm_pr_debug("th->seg : %02x\n", header->th_seg);
271 ctcm_pr_debug("th->ch : %02x\n", header->th_ch_flag);
272 ctcm_pr_debug("th->blk_flag: %02x\n", header->th_blk_flag);
273 ctcm_pr_debug("th->type : %s\n",
274 (header->th_is_xid) ? "DATA" : "XID");
275 ctcm_pr_debug("th->seqnum : %04x\n", header->th_seq_num);
281 ctcm_pr_debug("data: ");
282 for (i = 0; i < bl; i++)
283 ctcm_pr_debug("%02x%s", *p++, (i % 16) ? " " : "\n");
288 static struct net_device *ctcmpc_get_dev(int port_num)
291 struct net_device *dev;
292 struct ctcm_priv *priv;
294 sprintf(device, "%s%i", MPC_DEVICE_NAME, port_num);
296 dev = __dev_get_by_name(&init_net, device);
299 CTCM_DBF_TEXT_(MPC_ERROR, CTC_DBF_ERROR,
300 "%s: Device not found by name: %s",
301 CTCM_FUNTAIL, device);
306 CTCM_DBF_TEXT_(MPC_ERROR, CTC_DBF_ERROR,
307 "%s(%s): dev->ml_priv is NULL",
308 CTCM_FUNTAIL, device);
311 if (priv->mpcg == NULL) {
312 CTCM_DBF_TEXT_(MPC_ERROR, CTC_DBF_ERROR,
313 "%s(%s): priv->mpcg is NULL",
314 CTCM_FUNTAIL, device);
321 * ctc_mpc_alloc_channel
322 * (exported interface)
324 * Device Initialization :
325 * ACTPATH driven IO operations
327 int ctc_mpc_alloc_channel(int port_num, void (*callback)(int, int))
329 struct net_device *dev;
330 struct mpc_group *grp;
331 struct ctcm_priv *priv;
333 dev = ctcmpc_get_dev(port_num);
339 grp->allochanfunc = callback;
340 grp->port_num = port_num;
341 grp->port_persist = 1;
343 CTCM_DBF_TEXT_(MPC_SETUP, CTC_DBF_INFO,
345 CTCM_FUNTAIL, dev->name, fsm_getstate_str(grp->fsm));
347 switch (fsm_getstate(grp->fsm)) {
348 case MPCG_STATE_INOP:
349 /* Group is in the process of terminating */
350 grp->alloc_called = 1;
352 case MPCG_STATE_RESET:
353 /* MPC Group will transition to state */
354 /* MPCG_STATE_XID2INITW iff the minimum number */
355 /* of 1 read and 1 write channel have successfully*/
357 /*fsm_newstate(grp->fsm, MPCG_STATE_XID2INITW);*/
359 grp->send_qllc_disc = 1;
361 case MPCG_STATE_XID0IOWAIT:
362 fsm_deltimer(&grp->timer);
363 grp->outstanding_xid2 = 0;
364 grp->outstanding_xid7 = 0;
365 grp->outstanding_xid7_p2 = 0;
366 grp->saved_xid2 = NULL;
369 fsm_event(priv->fsm, DEV_EVENT_START, dev);
371 case MPCG_STATE_READY:
372 /* XID exchanges completed after PORT was activated */
373 /* Link station already active */
374 /* Maybe timing issue...retry callback */
375 grp->allocchan_callback_retries++;
376 if (grp->allocchan_callback_retries < 4) {
377 if (grp->allochanfunc)
378 grp->allochanfunc(grp->port_num,
379 grp->group_max_buflen);
381 /* there are problems...bail out */
382 /* there may be a state mismatch so restart */
383 fsm_event(grp->fsm, MPCG_EVENT_INOP, dev);
384 grp->allocchan_callback_retries = 0;
391 EXPORT_SYMBOL(ctc_mpc_alloc_channel);
394 * ctc_mpc_establish_connectivity
395 * (exported interface)
397 void ctc_mpc_establish_connectivity(int port_num,
398 void (*callback)(int, int, int))
400 struct net_device *dev;
401 struct mpc_group *grp;
402 struct ctcm_priv *priv;
403 struct channel *rch, *wch;
405 dev = ctcmpc_get_dev(port_num);
410 rch = priv->channel[CTCM_READ];
411 wch = priv->channel[CTCM_WRITE];
413 CTCM_DBF_TEXT_(MPC_SETUP, CTC_DBF_INFO,
415 CTCM_FUNTAIL, dev->name, fsm_getstate_str(grp->fsm));
417 grp->estconnfunc = callback;
418 grp->port_num = port_num;
420 switch (fsm_getstate(grp->fsm)) {
421 case MPCG_STATE_READY:
422 /* XID exchanges completed after PORT was activated */
423 /* Link station already active */
424 /* Maybe timing issue...retry callback */
425 fsm_deltimer(&grp->timer);
426 grp->estconn_callback_retries++;
427 if (grp->estconn_callback_retries < 4) {
428 if (grp->estconnfunc) {
429 grp->estconnfunc(grp->port_num, 0,
430 grp->group_max_buflen);
431 grp->estconnfunc = NULL;
434 /* there are problems...bail out */
435 fsm_event(grp->fsm, MPCG_EVENT_INOP, dev);
436 grp->estconn_callback_retries = 0;
439 case MPCG_STATE_INOP:
440 case MPCG_STATE_RESET:
441 /* MPC Group is not ready to start XID - min num of */
442 /* 1 read and 1 write channel have not been acquired*/
444 CTCM_DBF_TEXT_(MPC_ERROR, CTC_DBF_ERROR,
445 "%s(%s): REJECTED - inactive channels",
446 CTCM_FUNTAIL, dev->name);
447 if (grp->estconnfunc) {
448 grp->estconnfunc(grp->port_num, -1, 0);
449 grp->estconnfunc = NULL;
452 case MPCG_STATE_XID2INITW:
453 /* alloc channel was called but no XID exchange */
454 /* has occurred. initiate xside XID exchange */
455 /* make sure yside XID0 processing has not started */
457 if ((fsm_getstate(rch->fsm) > CH_XID0_PENDING) ||
458 (fsm_getstate(wch->fsm) > CH_XID0_PENDING)) {
459 CTCM_DBF_TEXT_(MPC_ERROR, CTC_DBF_ERROR,
460 "%s(%s): ABORT - PASSIVE XID",
461 CTCM_FUNTAIL, dev->name);
464 grp->send_qllc_disc = 1;
465 fsm_newstate(grp->fsm, MPCG_STATE_XID0IOWAIT);
466 fsm_deltimer(&grp->timer);
467 fsm_addtimer(&grp->timer, MPC_XID_TIMEOUT_VALUE,
468 MPCG_EVENT_TIMER, dev);
469 grp->outstanding_xid7 = 0;
470 grp->outstanding_xid7_p2 = 0;
471 grp->saved_xid2 = NULL;
472 if ((rch->in_mpcgroup) &&
473 (fsm_getstate(rch->fsm) == CH_XID0_PENDING))
474 fsm_event(grp->fsm, MPCG_EVENT_XID0DO, rch);
476 CTCM_DBF_TEXT_(MPC_ERROR, CTC_DBF_ERROR,
477 "%s(%s): RX-%s not ready for ACTIVE XID0",
478 CTCM_FUNTAIL, dev->name, rch->id);
479 if (grp->estconnfunc) {
480 grp->estconnfunc(grp->port_num, -1, 0);
481 grp->estconnfunc = NULL;
483 fsm_deltimer(&grp->timer);
486 if ((wch->in_mpcgroup) &&
487 (fsm_getstate(wch->fsm) == CH_XID0_PENDING))
488 fsm_event(grp->fsm, MPCG_EVENT_XID0DO, wch);
490 CTCM_DBF_TEXT_(MPC_ERROR, CTC_DBF_ERROR,
491 "%s(%s): WX-%s not ready for ACTIVE XID0",
492 CTCM_FUNTAIL, dev->name, wch->id);
493 if (grp->estconnfunc) {
494 grp->estconnfunc(grp->port_num, -1, 0);
495 grp->estconnfunc = NULL;
497 fsm_deltimer(&grp->timer);
501 case MPCG_STATE_XID0IOWAIT:
502 /* already in active XID negotiations */
508 CTCM_PR_DEBUG("Exit %s()\n", __func__);
511 EXPORT_SYMBOL(ctc_mpc_establish_connectivity);
515 * (exported interface)
517 void ctc_mpc_dealloc_ch(int port_num)
519 struct net_device *dev;
520 struct ctcm_priv *priv;
521 struct mpc_group *grp;
523 dev = ctcmpc_get_dev(port_num);
529 CTCM_DBF_TEXT_(MPC_SETUP, CTC_DBF_DEBUG,
530 "%s: %s: refcount = %d\n",
531 CTCM_FUNTAIL, dev->name, netdev_refcnt_read(dev));
533 fsm_deltimer(&priv->restart_timer);
534 grp->channels_terminating = 0;
535 fsm_deltimer(&grp->timer);
536 grp->allochanfunc = NULL;
537 grp->estconnfunc = NULL;
538 grp->port_persist = 0;
539 grp->send_qllc_disc = 0;
540 fsm_event(grp->fsm, MPCG_EVENT_INOP, dev);
545 EXPORT_SYMBOL(ctc_mpc_dealloc_ch);
548 * ctc_mpc_flow_control
549 * (exported interface)
551 void ctc_mpc_flow_control(int port_num, int flowc)
553 struct ctcm_priv *priv;
554 struct mpc_group *grp;
555 struct net_device *dev;
559 dev = ctcmpc_get_dev(port_num);
565 CTCM_DBF_TEXT_(MPC_TRACE, CTC_DBF_DEBUG,
566 "%s: %s: flowc = %d",
567 CTCM_FUNTAIL, dev->name, flowc);
569 rch = priv->channel[CTCM_READ];
571 mpcg_state = fsm_getstate(grp->fsm);
574 if (mpcg_state == MPCG_STATE_FLOWC)
576 if (mpcg_state == MPCG_STATE_READY) {
577 if (grp->flow_off_called == 1)
578 grp->flow_off_called = 0;
580 fsm_newstate(grp->fsm, MPCG_STATE_FLOWC);
585 if (mpcg_state == MPCG_STATE_FLOWC) {
586 fsm_newstate(grp->fsm, MPCG_STATE_READY);
587 /* ensure any data that has accumulated */
588 /* on the io_queue will now be sen t */
589 tasklet_schedule(&rch->ch_tasklet);
591 /* possible race condition */
592 if (mpcg_state == MPCG_STATE_READY) {
593 grp->flow_off_called = 1;
600 EXPORT_SYMBOL(ctc_mpc_flow_control);
602 static int mpc_send_qllc_discontact(struct net_device *);
605 * helper function of ctcmpc_unpack_skb
607 static void mpc_rcvd_sweep_resp(struct mpcg_info *mpcginfo)
609 struct channel *rch = mpcginfo->ch;
610 struct net_device *dev = rch->netdev;
611 struct ctcm_priv *priv = dev->ml_priv;
612 struct mpc_group *grp = priv->mpcg;
613 struct channel *ch = priv->channel[CTCM_WRITE];
615 CTCM_PR_DEBUG("%s: ch=0x%p id=%s\n", __func__, ch, ch->id);
616 CTCM_D3_DUMP((char *)mpcginfo->sweep, TH_SWEEP_LENGTH);
618 grp->sweep_rsp_pend_num--;
620 if ((grp->sweep_req_pend_num == 0) &&
621 (grp->sweep_rsp_pend_num == 0)) {
622 fsm_deltimer(&ch->sweep_timer);
624 rch->th_seq_num = 0x00;
625 ch->th_seq_num = 0x00;
626 ctcm_clear_busy_do(dev);
634 * helper function of mpc_rcvd_sweep_req
635 * which is a helper of ctcmpc_unpack_skb
637 static void ctcmpc_send_sweep_resp(struct channel *rch)
639 struct net_device *dev = rch->netdev;
640 struct ctcm_priv *priv = dev->ml_priv;
641 struct mpc_group *grp = priv->mpcg;
642 struct th_sweep *header;
643 struct sk_buff *sweep_skb;
644 struct channel *ch = priv->channel[CTCM_WRITE];
646 CTCM_PR_DEBUG("%s: ch=0x%p id=%s\n", __func__, rch, rch->id);
648 sweep_skb = __dev_alloc_skb(MPC_BUFSIZE_DEFAULT, GFP_ATOMIC | GFP_DMA);
649 if (sweep_skb == NULL) {
650 CTCM_DBF_TEXT_(MPC_ERROR, CTC_DBF_ERROR,
651 "%s(%s): sweep_skb allocation ERROR\n",
652 CTCM_FUNTAIL, rch->id);
656 header = skb_put_zero(sweep_skb, TH_SWEEP_LENGTH);
657 header->th.th_ch_flag = TH_SWEEP_RESP;
658 header->sw.th_last_seq = ch->th_seq_num;
660 netif_trans_update(dev);
661 skb_queue_tail(&ch->sweep_queue, sweep_skb);
663 fsm_addtimer(&ch->sweep_timer, 100, CTC_EVENT_RSWEEP_TIMER, ch);
669 ctcm_clear_busy_do(dev);
670 fsm_event(grp->fsm, MPCG_EVENT_INOP, dev);
676 * helper function of ctcmpc_unpack_skb
678 static void mpc_rcvd_sweep_req(struct mpcg_info *mpcginfo)
680 struct channel *rch = mpcginfo->ch;
681 struct net_device *dev = rch->netdev;
682 struct ctcm_priv *priv = dev->ml_priv;
683 struct mpc_group *grp = priv->mpcg;
684 struct channel *ch = priv->channel[CTCM_WRITE];
687 CTCM_DBF_TEXT_(MPC_TRACE, CTC_DBF_DEBUG,
688 " %s(): ch=0x%p id=%s\n", __func__, ch, ch->id);
690 if (grp->in_sweep == 0) {
692 ctcm_test_and_set_busy(dev);
693 grp->sweep_req_pend_num = grp->active_channels[CTCM_READ];
694 grp->sweep_rsp_pend_num = grp->active_channels[CTCM_READ];
697 CTCM_D3_DUMP((char *)mpcginfo->sweep, TH_SWEEP_LENGTH);
699 grp->sweep_req_pend_num--;
700 ctcmpc_send_sweep_resp(ch);
706 * MPC Group Station FSM definitions
708 static const char *mpcg_event_names[] = {
709 [MPCG_EVENT_INOP] = "INOP Condition",
710 [MPCG_EVENT_DISCONC] = "Discontact Received",
711 [MPCG_EVENT_XID0DO] = "Channel Active - Start XID",
712 [MPCG_EVENT_XID2] = "XID2 Received",
713 [MPCG_EVENT_XID2DONE] = "XID0 Complete",
714 [MPCG_EVENT_XID7DONE] = "XID7 Complete",
715 [MPCG_EVENT_TIMER] = "XID Setup Timer",
716 [MPCG_EVENT_DOIO] = "XID DoIO",
719 static const char *mpcg_state_names[] = {
720 [MPCG_STATE_RESET] = "Reset",
721 [MPCG_STATE_INOP] = "INOP",
722 [MPCG_STATE_XID2INITW] = "Passive XID- XID0 Pending Start",
723 [MPCG_STATE_XID2INITX] = "Passive XID- XID0 Pending Complete",
724 [MPCG_STATE_XID7INITW] = "Passive XID- XID7 Pending P1 Start",
725 [MPCG_STATE_XID7INITX] = "Passive XID- XID7 Pending P2 Complete",
726 [MPCG_STATE_XID0IOWAIT] = "Active XID- XID0 Pending Start",
727 [MPCG_STATE_XID0IOWAIX] = "Active XID- XID0 Pending Complete",
728 [MPCG_STATE_XID7INITI] = "Active XID- XID7 Pending Start",
729 [MPCG_STATE_XID7INITZ] = "Active XID- XID7 Pending Complete ",
730 [MPCG_STATE_XID7INITF] = "XID - XID7 Complete ",
731 [MPCG_STATE_FLOWC] = "FLOW CONTROL ON",
732 [MPCG_STATE_READY] = "READY",
736 * The MPC Group Station FSM
739 static const fsm_node mpcg_fsm[] = {
740 { MPCG_STATE_RESET, MPCG_EVENT_INOP, mpc_action_go_inop },
741 { MPCG_STATE_INOP, MPCG_EVENT_INOP, mpc_action_nop },
742 { MPCG_STATE_FLOWC, MPCG_EVENT_INOP, mpc_action_go_inop },
744 { MPCG_STATE_READY, MPCG_EVENT_DISCONC, mpc_action_discontact },
745 { MPCG_STATE_READY, MPCG_EVENT_INOP, mpc_action_go_inop },
747 { MPCG_STATE_XID2INITW, MPCG_EVENT_XID0DO, mpc_action_doxid0 },
748 { MPCG_STATE_XID2INITW, MPCG_EVENT_XID2, mpc_action_rcvd_xid0 },
749 { MPCG_STATE_XID2INITW, MPCG_EVENT_INOP, mpc_action_go_inop },
750 { MPCG_STATE_XID2INITW, MPCG_EVENT_TIMER, mpc_action_timeout },
751 { MPCG_STATE_XID2INITW, MPCG_EVENT_DOIO, mpc_action_yside_xid },
753 { MPCG_STATE_XID2INITX, MPCG_EVENT_XID0DO, mpc_action_doxid0 },
754 { MPCG_STATE_XID2INITX, MPCG_EVENT_XID2, mpc_action_rcvd_xid0 },
755 { MPCG_STATE_XID2INITX, MPCG_EVENT_INOP, mpc_action_go_inop },
756 { MPCG_STATE_XID2INITX, MPCG_EVENT_TIMER, mpc_action_timeout },
757 { MPCG_STATE_XID2INITX, MPCG_EVENT_DOIO, mpc_action_yside_xid },
759 { MPCG_STATE_XID7INITW, MPCG_EVENT_XID2DONE, mpc_action_doxid7 },
760 { MPCG_STATE_XID7INITW, MPCG_EVENT_DISCONC, mpc_action_discontact },
761 { MPCG_STATE_XID7INITW, MPCG_EVENT_XID2, mpc_action_rcvd_xid7 },
762 { MPCG_STATE_XID7INITW, MPCG_EVENT_INOP, mpc_action_go_inop },
763 { MPCG_STATE_XID7INITW, MPCG_EVENT_TIMER, mpc_action_timeout },
764 { MPCG_STATE_XID7INITW, MPCG_EVENT_XID7DONE, mpc_action_doxid7 },
765 { MPCG_STATE_XID7INITW, MPCG_EVENT_DOIO, mpc_action_yside_xid },
767 { MPCG_STATE_XID7INITX, MPCG_EVENT_DISCONC, mpc_action_discontact },
768 { MPCG_STATE_XID7INITX, MPCG_EVENT_XID2, mpc_action_rcvd_xid7 },
769 { MPCG_STATE_XID7INITX, MPCG_EVENT_INOP, mpc_action_go_inop },
770 { MPCG_STATE_XID7INITX, MPCG_EVENT_XID7DONE, mpc_action_doxid7 },
771 { MPCG_STATE_XID7INITX, MPCG_EVENT_TIMER, mpc_action_timeout },
772 { MPCG_STATE_XID7INITX, MPCG_EVENT_DOIO, mpc_action_yside_xid },
774 { MPCG_STATE_XID0IOWAIT, MPCG_EVENT_XID0DO, mpc_action_doxid0 },
775 { MPCG_STATE_XID0IOWAIT, MPCG_EVENT_DISCONC, mpc_action_discontact },
776 { MPCG_STATE_XID0IOWAIT, MPCG_EVENT_XID2, mpc_action_rcvd_xid0 },
777 { MPCG_STATE_XID0IOWAIT, MPCG_EVENT_INOP, mpc_action_go_inop },
778 { MPCG_STATE_XID0IOWAIT, MPCG_EVENT_TIMER, mpc_action_timeout },
779 { MPCG_STATE_XID0IOWAIT, MPCG_EVENT_DOIO, mpc_action_xside_xid },
781 { MPCG_STATE_XID0IOWAIX, MPCG_EVENT_XID0DO, mpc_action_doxid0 },
782 { MPCG_STATE_XID0IOWAIX, MPCG_EVENT_DISCONC, mpc_action_discontact },
783 { MPCG_STATE_XID0IOWAIX, MPCG_EVENT_XID2, mpc_action_rcvd_xid0 },
784 { MPCG_STATE_XID0IOWAIX, MPCG_EVENT_INOP, mpc_action_go_inop },
785 { MPCG_STATE_XID0IOWAIX, MPCG_EVENT_TIMER, mpc_action_timeout },
786 { MPCG_STATE_XID0IOWAIX, MPCG_EVENT_DOIO, mpc_action_xside_xid },
788 { MPCG_STATE_XID7INITI, MPCG_EVENT_XID2DONE, mpc_action_doxid7 },
789 { MPCG_STATE_XID7INITI, MPCG_EVENT_XID2, mpc_action_rcvd_xid7 },
790 { MPCG_STATE_XID7INITI, MPCG_EVENT_DISCONC, mpc_action_discontact },
791 { MPCG_STATE_XID7INITI, MPCG_EVENT_INOP, mpc_action_go_inop },
792 { MPCG_STATE_XID7INITI, MPCG_EVENT_TIMER, mpc_action_timeout },
793 { MPCG_STATE_XID7INITI, MPCG_EVENT_XID7DONE, mpc_action_doxid7 },
794 { MPCG_STATE_XID7INITI, MPCG_EVENT_DOIO, mpc_action_xside_xid },
796 { MPCG_STATE_XID7INITZ, MPCG_EVENT_XID2, mpc_action_rcvd_xid7 },
797 { MPCG_STATE_XID7INITZ, MPCG_EVENT_XID7DONE, mpc_action_doxid7 },
798 { MPCG_STATE_XID7INITZ, MPCG_EVENT_DISCONC, mpc_action_discontact },
799 { MPCG_STATE_XID7INITZ, MPCG_EVENT_INOP, mpc_action_go_inop },
800 { MPCG_STATE_XID7INITZ, MPCG_EVENT_TIMER, mpc_action_timeout },
801 { MPCG_STATE_XID7INITZ, MPCG_EVENT_DOIO, mpc_action_xside_xid },
803 { MPCG_STATE_XID7INITF, MPCG_EVENT_INOP, mpc_action_go_inop },
804 { MPCG_STATE_XID7INITF, MPCG_EVENT_XID7DONE, mpc_action_go_ready },
807 static int mpcg_fsm_len = ARRAY_SIZE(mpcg_fsm);
810 * MPC Group Station FSM action
811 * CTCM_PROTO_MPC only
813 static void mpc_action_go_ready(fsm_instance *fsm, int event, void *arg)
815 struct net_device *dev = arg;
816 struct ctcm_priv *priv = dev->ml_priv;
817 struct mpc_group *grp = priv->mpcg;
820 CTCM_DBF_TEXT_(MPC_ERROR, CTC_DBF_ERROR,
821 "%s(%s): No MPC group",
822 CTCM_FUNTAIL, dev->name);
826 fsm_deltimer(&grp->timer);
828 if (grp->saved_xid2->xid2_flag2 == 0x40) {
829 priv->xid->xid2_flag2 = 0x00;
830 if (grp->estconnfunc) {
831 grp->estconnfunc(grp->port_num, 1,
832 grp->group_max_buflen);
833 grp->estconnfunc = NULL;
834 } else if (grp->allochanfunc)
835 grp->send_qllc_disc = 1;
837 fsm_event(grp->fsm, MPCG_EVENT_INOP, dev);
838 CTCM_DBF_TEXT_(MPC_ERROR, CTC_DBF_ERROR,
840 CTCM_FUNTAIL, dev->name);
844 grp->port_persist = 1;
845 grp->out_of_sequence = 0;
846 grp->estconn_called = 0;
848 tasklet_hi_schedule(&grp->mpc_tasklet2);
854 * helper of ctcm_init_netdevice
855 * CTCM_PROTO_MPC only
857 void mpc_group_ready(unsigned long adev)
859 struct net_device *dev = (struct net_device *)adev;
860 struct ctcm_priv *priv = dev->ml_priv;
861 struct mpc_group *grp = priv->mpcg;
862 struct channel *ch = NULL;
865 CTCM_DBF_TEXT_(MPC_ERROR, CTC_DBF_ERROR,
866 "%s(%s): No MPC group",
867 CTCM_FUNTAIL, dev->name);
871 CTCM_DBF_TEXT_(MPC_SETUP, CTC_DBF_NOTICE,
872 "%s: %s: GROUP TRANSITIONED TO READY, maxbuf = %d\n",
873 CTCM_FUNTAIL, dev->name, grp->group_max_buflen);
875 fsm_newstate(grp->fsm, MPCG_STATE_READY);
877 /* Put up a read on the channel */
878 ch = priv->channel[CTCM_READ];
880 CTCM_PR_DBGDATA("ctcmpc: %s() ToDCM_pdu_seq= %08x\n" ,
881 __func__, ch->pdu_seq);
883 ctcmpc_chx_rxidle(ch->fsm, CTC_EVENT_START, ch);
884 /* Put the write channel in idle state */
885 ch = priv->channel[CTCM_WRITE];
886 if (ch->collect_len > 0) {
887 spin_lock(&ch->collect_lock);
888 ctcm_purge_skb_queue(&ch->collect_queue);
890 spin_unlock(&ch->collect_lock);
892 ctcm_chx_txidle(ch->fsm, CTC_EVENT_START, ch);
893 ctcm_clear_busy(dev);
895 if (grp->estconnfunc) {
896 grp->estconnfunc(grp->port_num, 0,
897 grp->group_max_buflen);
898 grp->estconnfunc = NULL;
899 } else if (grp->allochanfunc)
900 grp->allochanfunc(grp->port_num, grp->group_max_buflen);
902 grp->send_qllc_disc = 1;
903 grp->changed_side = 0;
910 * Increment the MPC Group Active Channel Counts
911 * helper of dev_action (called from channel fsm)
913 void mpc_channel_action(struct channel *ch, int direction, int action)
915 struct net_device *dev = ch->netdev;
916 struct ctcm_priv *priv = dev->ml_priv;
917 struct mpc_group *grp = priv->mpcg;
920 CTCM_DBF_TEXT_(MPC_ERROR, CTC_DBF_ERROR,
921 "%s(%s): No MPC group",
922 CTCM_FUNTAIL, dev->name);
926 CTCM_PR_DEBUG("enter %s: ch=0x%p id=%s\n", __func__, ch, ch->id);
928 CTCM_DBF_TEXT_(MPC_TRACE, CTC_DBF_NOTICE,
929 "%s: %i / Grp:%s total_channels=%i, active_channels: "
930 "read=%i, write=%i\n", __func__, action,
931 fsm_getstate_str(grp->fsm), grp->num_channel_paths,
932 grp->active_channels[CTCM_READ],
933 grp->active_channels[CTCM_WRITE]);
935 if ((action == MPC_CHANNEL_ADD) && (ch->in_mpcgroup == 0)) {
936 grp->num_channel_paths++;
937 grp->active_channels[direction]++;
938 grp->outstanding_xid2++;
941 if (ch->xid_skb != NULL)
942 dev_kfree_skb_any(ch->xid_skb);
944 ch->xid_skb = __dev_alloc_skb(MPC_BUFSIZE_DEFAULT,
945 GFP_ATOMIC | GFP_DMA);
946 if (ch->xid_skb == NULL) {
947 CTCM_DBF_TEXT_(MPC_ERROR, CTC_DBF_ERROR,
948 "%s(%s): Couldn't alloc ch xid_skb\n",
949 CTCM_FUNTAIL, dev->name);
950 fsm_event(grp->fsm, MPCG_EVENT_INOP, dev);
953 ch->xid_skb_data = ch->xid_skb->data;
954 ch->xid_th = (struct th_header *)ch->xid_skb->data;
955 skb_put(ch->xid_skb, TH_HEADER_LENGTH);
956 ch->xid = (struct xid2 *)skb_tail_pointer(ch->xid_skb);
957 skb_put(ch->xid_skb, XID2_LENGTH);
958 ch->xid_id = skb_tail_pointer(ch->xid_skb);
959 ch->xid_skb->data = ch->xid_skb_data;
960 skb_reset_tail_pointer(ch->xid_skb);
961 ch->xid_skb->len = 0;
963 skb_put_data(ch->xid_skb, grp->xid_skb->data,
966 ch->xid->xid2_dlc_type =
967 ((CHANNEL_DIRECTION(ch->flags) == CTCM_READ)
968 ? XID2_READ_SIDE : XID2_WRITE_SIDE);
970 if (CHANNEL_DIRECTION(ch->flags) == CTCM_WRITE)
971 ch->xid->xid2_buf_len = 0x00;
973 ch->xid_skb->data = ch->xid_skb_data;
974 skb_reset_tail_pointer(ch->xid_skb);
975 ch->xid_skb->len = 0;
977 fsm_newstate(ch->fsm, CH_XID0_PENDING);
979 if ((grp->active_channels[CTCM_READ] > 0) &&
980 (grp->active_channels[CTCM_WRITE] > 0) &&
981 (fsm_getstate(grp->fsm) < MPCG_STATE_XID2INITW)) {
982 fsm_newstate(grp->fsm, MPCG_STATE_XID2INITW);
983 CTCM_DBF_TEXT_(MPC_SETUP, CTC_DBF_NOTICE,
984 "%s: %s: MPC GROUP CHANNELS ACTIVE\n",
985 __func__, dev->name);
987 } else if ((action == MPC_CHANNEL_REMOVE) &&
988 (ch->in_mpcgroup == 1)) {
990 grp->num_channel_paths--;
991 grp->active_channels[direction]--;
993 if (ch->xid_skb != NULL)
994 dev_kfree_skb_any(ch->xid_skb);
997 if (grp->channels_terminating)
1000 if (((grp->active_channels[CTCM_READ] == 0) &&
1001 (grp->active_channels[CTCM_WRITE] > 0))
1002 || ((grp->active_channels[CTCM_WRITE] == 0) &&
1003 (grp->active_channels[CTCM_READ] > 0)))
1004 fsm_event(grp->fsm, MPCG_EVENT_INOP, dev);
1007 CTCM_DBF_TEXT_(MPC_TRACE, CTC_DBF_DEBUG,
1008 "exit %s: %i / Grp:%s total_channels=%i, active_channels: "
1009 "read=%i, write=%i\n", __func__, action,
1010 fsm_getstate_str(grp->fsm), grp->num_channel_paths,
1011 grp->active_channels[CTCM_READ],
1012 grp->active_channels[CTCM_WRITE]);
1014 CTCM_PR_DEBUG("exit %s: ch=0x%p id=%s\n", __func__, ch, ch->id);
1018 * Unpack a just received skb and hand it over to
1020 * special MPC version of unpack_skb.
1022 * ch The channel where this skb has been received.
1023 * pskb The received skb.
1025 static void ctcmpc_unpack_skb(struct channel *ch, struct sk_buff *pskb)
1027 struct net_device *dev = ch->netdev;
1028 struct ctcm_priv *priv = dev->ml_priv;
1029 struct mpc_group *grp = priv->mpcg;
1030 struct pdu *curr_pdu;
1031 struct mpcg_info *mpcginfo;
1032 struct th_header *header = NULL;
1033 struct th_sweep *sweep = NULL;
1034 int pdu_last_seen = 0;
1036 struct sk_buff *skb;
1040 CTCM_PR_DEBUG("ctcmpc enter: %s() %s cp:%i ch:%s\n",
1041 __func__, dev->name, smp_processor_id(), ch->id);
1043 header = (struct th_header *)pskb->data;
1044 if ((header->th_seg == 0) &&
1045 (header->th_ch_flag == 0) &&
1046 (header->th_blk_flag == 0) &&
1047 (header->th_seq_num == 0))
1048 /* nothing for us */ goto done;
1050 CTCM_PR_DBGDATA("%s: th_header\n", __func__);
1051 CTCM_D3_DUMP((char *)header, TH_HEADER_LENGTH);
1052 CTCM_PR_DBGDATA("%s: pskb len: %04x \n", __func__, pskb->len);
1055 pskb->ip_summed = CHECKSUM_UNNECESSARY;
1056 skb_pull(pskb, TH_HEADER_LENGTH);
1058 if (likely(header->th_ch_flag == TH_HAS_PDU)) {
1059 CTCM_PR_DBGDATA("%s: came into th_has_pdu\n", __func__);
1060 if ((fsm_getstate(grp->fsm) == MPCG_STATE_FLOWC) ||
1061 ((fsm_getstate(grp->fsm) == MPCG_STATE_READY) &&
1062 (header->th_seq_num != ch->th_seq_num + 1) &&
1063 (ch->th_seq_num != 0))) {
1064 /* This is NOT the next segment *
1065 * we are not the correct race winner *
1066 * go away and let someone else win *
1067 * BUT..this only applies if xid negot *
1070 grp->out_of_sequence += 1;
1071 __skb_push(pskb, TH_HEADER_LENGTH);
1072 skb_queue_tail(&ch->io_queue, pskb);
1073 CTCM_PR_DBGDATA("%s: th_seq_num expect:%08x "
1074 "got:%08x\n", __func__,
1075 ch->th_seq_num + 1, header->th_seq_num);
1079 grp->out_of_sequence = 0;
1080 ch->th_seq_num = header->th_seq_num;
1082 CTCM_PR_DBGDATA("ctcmpc: %s() FromVTAM_th_seq=%08x\n",
1083 __func__, ch->th_seq_num);
1085 if (unlikely(fsm_getstate(grp->fsm) != MPCG_STATE_READY))
1087 while ((pskb->len > 0) && !pdu_last_seen) {
1088 curr_pdu = (struct pdu *)pskb->data;
1090 CTCM_PR_DBGDATA("%s: pdu_header\n", __func__);
1091 CTCM_D3_DUMP((char *)pskb->data, PDU_HEADER_LENGTH);
1092 CTCM_PR_DBGDATA("%s: pskb len: %04x \n",
1093 __func__, pskb->len);
1095 skb_pull(pskb, PDU_HEADER_LENGTH);
1097 if (curr_pdu->pdu_flag & PDU_LAST)
1099 if (curr_pdu->pdu_flag & PDU_CNTL)
1100 pskb->protocol = htons(ETH_P_SNAP);
1102 pskb->protocol = htons(ETH_P_SNA_DIX);
1104 if ((pskb->len <= 0) || (pskb->len > ch->max_bufsize)) {
1105 CTCM_DBF_TEXT_(MPC_ERROR, CTC_DBF_ERROR,
1106 "%s(%s): Dropping packet with "
1108 CTCM_FUNTAIL, dev->name, pskb->len);
1110 priv->stats.rx_dropped++;
1111 priv->stats.rx_length_errors++;
1114 skb_reset_mac_header(pskb);
1115 new_len = curr_pdu->pdu_offset;
1116 CTCM_PR_DBGDATA("%s: new_len: %04x \n",
1118 if ((new_len == 0) || (new_len > pskb->len)) {
1119 /* should never happen */
1120 /* pskb len must be hosed...bail out */
1121 CTCM_DBF_TEXT_(MPC_ERROR, CTC_DBF_ERROR,
1122 "%s(%s): non valid pdu_offset: %04x",
1123 /* "data may be lost", */
1124 CTCM_FUNTAIL, dev->name, new_len);
1127 skb = __dev_alloc_skb(new_len+4, GFP_ATOMIC);
1130 CTCM_DBF_TEXT_(MPC_ERROR, CTC_DBF_ERROR,
1131 "%s(%s): MEMORY allocation error",
1132 CTCM_FUNTAIL, dev->name);
1133 priv->stats.rx_dropped++;
1134 fsm_event(grp->fsm, MPCG_EVENT_INOP, dev);
1137 skb_put_data(skb, pskb->data, new_len);
1139 skb_reset_mac_header(skb);
1140 skb->dev = pskb->dev;
1141 skb->protocol = pskb->protocol;
1142 skb->ip_summed = CHECKSUM_UNNECESSARY;
1143 *((__u32 *) skb_push(skb, 4)) = ch->pdu_seq;
1146 if (do_debug_data) {
1147 ctcm_pr_debug("%s: ToDCM_pdu_seq= %08x\n",
1148 __func__, ch->pdu_seq);
1149 ctcm_pr_debug("%s: skb:%0lx "
1150 "skb len: %d \n", __func__,
1151 (unsigned long)skb, skb->len);
1152 ctcm_pr_debug("%s: up to 32 bytes "
1153 "of pdu_data sent\n", __func__);
1154 ctcmpc_dump32((char *)skb->data, skb->len);
1158 sendrc = netif_rx(skb);
1159 priv->stats.rx_packets++;
1160 priv->stats.rx_bytes += skblen;
1161 skb_pull(pskb, new_len); /* point to next PDU */
1164 mpcginfo = kmalloc(sizeof(struct mpcg_info), GFP_ATOMIC);
1165 if (mpcginfo == NULL)
1169 mpcginfo->th = header;
1170 mpcginfo->skb = pskb;
1171 CTCM_PR_DEBUG("%s: Not PDU - may be control pkt\n",
1174 sweep = (struct th_sweep *)pskb->data;
1175 mpcginfo->sweep = sweep;
1176 if (header->th_ch_flag == TH_SWEEP_REQ)
1177 mpc_rcvd_sweep_req(mpcginfo);
1178 else if (header->th_ch_flag == TH_SWEEP_RESP)
1179 mpc_rcvd_sweep_resp(mpcginfo);
1180 else if (header->th_blk_flag == TH_DATA_IS_XID) {
1181 struct xid2 *thisxid = (struct xid2 *)pskb->data;
1182 skb_pull(pskb, XID2_LENGTH);
1183 mpcginfo->xid = thisxid;
1184 fsm_event(grp->fsm, MPCG_EVENT_XID2, mpcginfo);
1185 } else if (header->th_blk_flag == TH_DISCONTACT)
1186 fsm_event(grp->fsm, MPCG_EVENT_DISCONC, mpcginfo);
1187 else if (header->th_seq_num != 0) {
1188 CTCM_DBF_TEXT_(MPC_ERROR, CTC_DBF_ERROR,
1189 "%s(%s): control pkt expected\n",
1190 CTCM_FUNTAIL, dev->name);
1191 priv->stats.rx_dropped++;
1192 /* mpcginfo only used for non-data transfers */
1194 ctcmpc_dump_skb(pskb, -8);
1200 dev_kfree_skb_any(pskb);
1201 if (sendrc == NET_RX_DROP) {
1203 "The network backlog for %s is exceeded, "
1204 "package dropped\n", __func__);
1205 fsm_event(grp->fsm, MPCG_EVENT_INOP, dev);
1208 CTCM_PR_DEBUG("exit %s: %s: ch=0x%p id=%s\n",
1209 __func__, dev->name, ch, ch->id);
1213 * tasklet helper for mpc's skb unpacking.
1215 * ch The channel to work on.
1216 * Allow flow control back pressure to occur here.
1217 * Throttling back channel can result in excessive
1218 * channel inactivity and system deact of channel
1220 void ctcmpc_bh(unsigned long thischan)
1222 struct channel *ch = (struct channel *)thischan;
1223 struct sk_buff *skb;
1224 struct net_device *dev = ch->netdev;
1225 struct ctcm_priv *priv = dev->ml_priv;
1226 struct mpc_group *grp = priv->mpcg;
1228 CTCM_PR_DEBUG("%s cp:%i enter: %s() %s\n",
1229 dev->name, smp_processor_id(), __func__, ch->id);
1230 /* caller has requested driver to throttle back */
1231 while ((fsm_getstate(grp->fsm) != MPCG_STATE_FLOWC) &&
1232 (skb = skb_dequeue(&ch->io_queue))) {
1233 ctcmpc_unpack_skb(ch, skb);
1234 if (grp->out_of_sequence > 20) {
1235 /* assume data loss has occurred if */
1236 /* missing seq_num for extended */
1237 /* period of time */
1238 grp->out_of_sequence = 0;
1239 fsm_event(grp->fsm, MPCG_EVENT_INOP, dev);
1242 if (skb == skb_peek(&ch->io_queue))
1245 CTCM_PR_DEBUG("exit %s: %s: ch=0x%p id=%s\n",
1246 __func__, dev->name, ch, ch->id);
1251 * MPC Group Initializations
1253 struct mpc_group *ctcmpc_init_mpc_group(struct ctcm_priv *priv)
1255 struct mpc_group *grp;
1257 CTCM_DBF_TEXT_(MPC_SETUP, CTC_DBF_INFO,
1258 "Enter %s(%p)", CTCM_FUNTAIL, priv);
1260 grp = kzalloc(sizeof(struct mpc_group), GFP_KERNEL);
1264 grp->fsm = init_fsm("mpcg", mpcg_state_names, mpcg_event_names,
1265 MPCG_NR_STATES, MPCG_NR_EVENTS, mpcg_fsm,
1266 mpcg_fsm_len, GFP_KERNEL);
1267 if (grp->fsm == NULL) {
1272 fsm_newstate(grp->fsm, MPCG_STATE_RESET);
1273 fsm_settimer(grp->fsm, &grp->timer);
1276 __dev_alloc_skb(MPC_BUFSIZE_DEFAULT, GFP_ATOMIC | GFP_DMA);
1277 if (grp->xid_skb == NULL) {
1278 kfree_fsm(grp->fsm);
1282 /* base xid for all channels in group */
1283 grp->xid_skb_data = grp->xid_skb->data;
1284 grp->xid_th = (struct th_header *)grp->xid_skb->data;
1285 skb_put_data(grp->xid_skb, &thnorm, TH_HEADER_LENGTH);
1287 grp->xid = (struct xid2 *)skb_tail_pointer(grp->xid_skb);
1288 skb_put_data(grp->xid_skb, &init_xid, XID2_LENGTH);
1289 grp->xid->xid2_adj_id = jiffies | 0xfff00000;
1290 grp->xid->xid2_sender_id = jiffies;
1292 grp->xid_id = skb_tail_pointer(grp->xid_skb);
1293 skb_put_data(grp->xid_skb, "VTAM", 4);
1296 __dev_alloc_skb(MPC_BUFSIZE_DEFAULT, GFP_ATOMIC|GFP_DMA);
1297 if (grp->rcvd_xid_skb == NULL) {
1298 kfree_fsm(grp->fsm);
1299 dev_kfree_skb(grp->xid_skb);
1303 grp->rcvd_xid_data = grp->rcvd_xid_skb->data;
1304 grp->rcvd_xid_th = (struct th_header *)grp->rcvd_xid_skb->data;
1305 skb_put_data(grp->rcvd_xid_skb, &thnorm, TH_HEADER_LENGTH);
1306 grp->saved_xid2 = NULL;
1307 priv->xid = grp->xid;
1313 * The MPC Group Station FSM
1317 * MPC Group Station FSM actions
1318 * CTCM_PROTO_MPC only
1322 * NOP action for statemachines
1324 static void mpc_action_nop(fsm_instance *fi, int event, void *arg)
1329 * invoked when the device transitions to dev_stopped
1330 * MPC will stop each individual channel if a single XID failure
1331 * occurs, or will intitiate all channels be stopped if a GROUP
1332 * level failure occurs.
1334 static void mpc_action_go_inop(fsm_instance *fi, int event, void *arg)
1336 struct net_device *dev = arg;
1337 struct ctcm_priv *priv;
1338 struct mpc_group *grp;
1339 struct channel *wch;
1341 CTCM_PR_DEBUG("Enter %s: %s\n", __func__, dev->name);
1343 priv = dev->ml_priv;
1345 grp->flow_off_called = 0;
1346 fsm_deltimer(&grp->timer);
1347 if (grp->channels_terminating)
1350 grp->channels_terminating = 1;
1351 grp->saved_state = fsm_getstate(grp->fsm);
1352 fsm_newstate(grp->fsm, MPCG_STATE_INOP);
1353 if (grp->saved_state > MPCG_STATE_XID7INITF)
1354 CTCM_DBF_TEXT_(MPC_TRACE, CTC_DBF_NOTICE,
1355 "%s(%s): MPC GROUP INOPERATIVE",
1356 CTCM_FUNTAIL, dev->name);
1357 if ((grp->saved_state != MPCG_STATE_RESET) ||
1358 /* dealloc_channel has been called */
1359 (grp->port_persist == 0))
1360 fsm_deltimer(&priv->restart_timer);
1362 wch = priv->channel[CTCM_WRITE];
1364 switch (grp->saved_state) {
1365 case MPCG_STATE_RESET:
1366 case MPCG_STATE_INOP:
1367 case MPCG_STATE_XID2INITW:
1368 case MPCG_STATE_XID0IOWAIT:
1369 case MPCG_STATE_XID2INITX:
1370 case MPCG_STATE_XID7INITW:
1371 case MPCG_STATE_XID7INITX:
1372 case MPCG_STATE_XID0IOWAIX:
1373 case MPCG_STATE_XID7INITI:
1374 case MPCG_STATE_XID7INITZ:
1375 case MPCG_STATE_XID7INITF:
1377 case MPCG_STATE_FLOWC:
1378 case MPCG_STATE_READY:
1380 tasklet_hi_schedule(&wch->ch_disc_tasklet);
1383 grp->xid2_tgnum = 0;
1384 grp->group_max_buflen = 0; /*min of all received */
1385 grp->outstanding_xid2 = 0;
1386 grp->outstanding_xid7 = 0;
1387 grp->outstanding_xid7_p2 = 0;
1388 grp->saved_xid2 = NULL;
1390 grp->changed_side = 0;
1392 grp->rcvd_xid_skb->data = grp->rcvd_xid_data;
1393 skb_reset_tail_pointer(grp->rcvd_xid_skb);
1394 grp->rcvd_xid_skb->len = 0;
1395 grp->rcvd_xid_th = (struct th_header *)grp->rcvd_xid_skb->data;
1396 skb_put_data(grp->rcvd_xid_skb, &thnorm, TH_HEADER_LENGTH);
1398 if (grp->send_qllc_disc == 1) {
1399 grp->send_qllc_disc = 0;
1400 mpc_send_qllc_discontact(dev);
1403 /* DO NOT issue DEV_EVENT_STOP directly out of this code */
1404 /* This can result in INOP of VTAM PU due to halting of */
1405 /* outstanding IO which causes a sense to be returned */
1406 /* Only about 3 senses are allowed and then IOS/VTAM will*/
1407 /* become unreachable without manual intervention */
1408 if ((grp->port_persist == 1) || (grp->alloc_called)) {
1409 grp->alloc_called = 0;
1410 fsm_deltimer(&priv->restart_timer);
1411 fsm_addtimer(&priv->restart_timer, 500, DEV_EVENT_RESTART, dev);
1412 fsm_newstate(grp->fsm, MPCG_STATE_RESET);
1413 if (grp->saved_state > MPCG_STATE_XID7INITF)
1414 CTCM_DBF_TEXT_(MPC_TRACE, CTC_DBF_ALWAYS,
1415 "%s(%s): MPC GROUP RECOVERY SCHEDULED",
1416 CTCM_FUNTAIL, dev->name);
1418 fsm_deltimer(&priv->restart_timer);
1419 fsm_addtimer(&priv->restart_timer, 500, DEV_EVENT_STOP, dev);
1420 fsm_newstate(grp->fsm, MPCG_STATE_RESET);
1421 CTCM_DBF_TEXT_(MPC_TRACE, CTC_DBF_ALWAYS,
1422 "%s(%s): NO MPC GROUP RECOVERY ATTEMPTED",
1423 CTCM_FUNTAIL, dev->name);
1428 * Handle mpc group action timeout.
1429 * MPC Group Station FSM action
1430 * CTCM_PROTO_MPC only
1432 * fi An instance of an mpc_group fsm.
1433 * event The event, just happened.
1434 * arg Generic pointer, casted from net_device * upon call.
1436 static void mpc_action_timeout(fsm_instance *fi, int event, void *arg)
1438 struct net_device *dev = arg;
1439 struct ctcm_priv *priv;
1440 struct mpc_group *grp;
1441 struct channel *wch;
1442 struct channel *rch;
1444 priv = dev->ml_priv;
1446 wch = priv->channel[CTCM_WRITE];
1447 rch = priv->channel[CTCM_READ];
1449 switch (fsm_getstate(grp->fsm)) {
1450 case MPCG_STATE_XID2INITW:
1451 /* Unless there is outstanding IO on the */
1452 /* channel just return and wait for ATTN */
1453 /* interrupt to begin XID negotiations */
1454 if ((fsm_getstate(rch->fsm) == CH_XID0_PENDING) &&
1455 (fsm_getstate(wch->fsm) == CH_XID0_PENDING))
1459 fsm_event(grp->fsm, MPCG_EVENT_INOP, dev);
1462 CTCM_DBF_TEXT_(MPC_TRACE, CTC_DBF_DEBUG,
1464 CTCM_FUNTAIL, dev->name);
1469 * MPC Group Station FSM action
1470 * CTCM_PROTO_MPC only
1472 void mpc_action_discontact(fsm_instance *fi, int event, void *arg)
1474 struct mpcg_info *mpcginfo = arg;
1475 struct channel *ch = mpcginfo->ch;
1476 struct net_device *dev;
1477 struct ctcm_priv *priv;
1478 struct mpc_group *grp;
1483 priv = dev->ml_priv;
1485 CTCM_DBF_TEXT_(MPC_TRACE, CTC_DBF_NOTICE,
1487 CTCM_FUNTAIL, dev->name, ch->id);
1489 grp->send_qllc_disc = 1;
1490 fsm_event(grp->fsm, MPCG_EVENT_INOP, dev);
1499 * MPC Group Station - not part of FSM
1500 * CTCM_PROTO_MPC only
1501 * called from add_channel in ctcm_main.c
1503 void mpc_action_send_discontact(unsigned long thischan)
1506 struct channel *ch = (struct channel *)thischan;
1507 unsigned long saveflags = 0;
1509 spin_lock_irqsave(get_ccwdev_lock(ch->cdev), saveflags);
1510 rc = ccw_device_start(ch->cdev, &ch->ccw[15], 0, 0xff, 0);
1511 spin_unlock_irqrestore(get_ccwdev_lock(ch->cdev), saveflags);
1514 ctcm_ccw_check_rc(ch, rc, (char *)__func__);
1522 * helper function of mpc FSM
1523 * CTCM_PROTO_MPC only
1524 * mpc_action_rcvd_xid7
1526 static int mpc_validate_xid(struct mpcg_info *mpcginfo)
1528 struct channel *ch = mpcginfo->ch;
1529 struct net_device *dev = ch->netdev;
1530 struct ctcm_priv *priv = dev->ml_priv;
1531 struct mpc_group *grp = priv->mpcg;
1532 struct xid2 *xid = mpcginfo->xid;
1536 int len = TH_HEADER_LENGTH + PDU_HEADER_LENGTH;
1538 CTCM_PR_DEBUG("Enter %s: xid=%p\n", __func__, xid);
1542 /* XID REJECTED: xid == NULL */
1543 CTCM_DBF_TEXT_(MPC_ERROR, CTC_DBF_ERROR,
1544 "%s(%s): xid = NULL",
1545 CTCM_FUNTAIL, ch->id);
1549 CTCM_D3_DUMP((char *)xid, XID2_LENGTH);
1551 /*the received direction should be the opposite of ours */
1552 if (((CHANNEL_DIRECTION(ch->flags) == CTCM_READ) ? XID2_WRITE_SIDE :
1553 XID2_READ_SIDE) != xid->xid2_dlc_type) {
1555 /* XID REJECTED: r/w channel pairing mismatch */
1556 CTCM_DBF_TEXT_(MPC_ERROR, CTC_DBF_ERROR,
1557 "%s(%s): r/w channel pairing mismatch",
1558 CTCM_FUNTAIL, ch->id);
1562 if (xid->xid2_dlc_type == XID2_READ_SIDE) {
1563 CTCM_PR_DEBUG("%s: grpmaxbuf:%d xid2buflen:%d\n", __func__,
1564 grp->group_max_buflen, xid->xid2_buf_len);
1566 if (grp->group_max_buflen == 0 || grp->group_max_buflen >
1567 xid->xid2_buf_len - len)
1568 grp->group_max_buflen = xid->xid2_buf_len - len;
1571 if (grp->saved_xid2 == NULL) {
1573 (struct xid2 *)skb_tail_pointer(grp->rcvd_xid_skb);
1575 skb_put_data(grp->rcvd_xid_skb, xid, XID2_LENGTH);
1576 grp->rcvd_xid_skb->data = grp->rcvd_xid_data;
1578 skb_reset_tail_pointer(grp->rcvd_xid_skb);
1579 grp->rcvd_xid_skb->len = 0;
1581 /* convert two 32 bit numbers into 1 64 bit for id compare */
1582 our_id = (__u64)priv->xid->xid2_adj_id;
1583 our_id = our_id << 32;
1584 our_id = our_id + priv->xid->xid2_sender_id;
1585 their_id = (__u64)xid->xid2_adj_id;
1586 their_id = their_id << 32;
1587 their_id = their_id + xid->xid2_sender_id;
1588 /* lower id assume the xside role */
1589 if (our_id < their_id) {
1591 CTCM_DBF_TEXT_(MPC_TRACE, CTC_DBF_NOTICE,
1592 "%s(%s): WE HAVE LOW ID - TAKE XSIDE",
1593 CTCM_FUNTAIL, ch->id);
1596 CTCM_DBF_TEXT_(MPC_TRACE, CTC_DBF_NOTICE,
1597 "%s(%s): WE HAVE HIGH ID - TAKE YSIDE",
1598 CTCM_FUNTAIL, ch->id);
1602 if (xid->xid2_flag4 != grp->saved_xid2->xid2_flag4) {
1604 /* XID REJECTED: xid flag byte4 mismatch */
1605 CTCM_DBF_TEXT_(MPC_ERROR, CTC_DBF_ERROR,
1606 "%s(%s): xid flag byte4 mismatch",
1607 CTCM_FUNTAIL, ch->id);
1609 if (xid->xid2_flag2 == 0x40) {
1611 /* XID REJECTED - xid NOGOOD */
1612 CTCM_DBF_TEXT_(MPC_ERROR, CTC_DBF_ERROR,
1613 "%s(%s): xid NOGOOD",
1614 CTCM_FUNTAIL, ch->id);
1616 if (xid->xid2_adj_id != grp->saved_xid2->xid2_adj_id) {
1618 /* XID REJECTED - Adjacent Station ID Mismatch */
1619 CTCM_DBF_TEXT_(MPC_ERROR, CTC_DBF_ERROR,
1620 "%s(%s): Adjacent Station ID Mismatch",
1621 CTCM_FUNTAIL, ch->id);
1623 if (xid->xid2_sender_id != grp->saved_xid2->xid2_sender_id) {
1625 /* XID REJECTED - Sender Address Mismatch */
1626 CTCM_DBF_TEXT_(MPC_ERROR, CTC_DBF_ERROR,
1627 "%s(%s): Sender Address Mismatch",
1628 CTCM_FUNTAIL, ch->id);
1634 "The XID used in the MPC protocol is not valid, "
1636 priv->xid->xid2_flag2 = 0x40;
1637 grp->saved_xid2->xid2_flag2 = 0x40;
1644 * MPC Group Station FSM action
1645 * CTCM_PROTO_MPC only
1647 static void mpc_action_side_xid(fsm_instance *fsm, void *arg, int side)
1649 struct channel *ch = arg;
1652 unsigned long saveflags = 0; /* avoids compiler warning with
1653 spin_unlock_irqrestore */
1655 CTCM_PR_DEBUG("Enter %s: cp=%i ch=0x%p id=%s\n",
1656 __func__, smp_processor_id(), ch, ch->id);
1658 if (ctcm_checkalloc_buffer(ch))
1662 * skb data-buffer referencing:
1664 ch->trans_skb->data = ch->trans_skb_data;
1665 skb_reset_tail_pointer(ch->trans_skb);
1666 ch->trans_skb->len = 0;
1667 /* result of the previous 3 statements is NOT always
1668 * already set after ctcm_checkalloc_buffer
1669 * because of possible reuse of the trans_skb
1671 memset(ch->trans_skb->data, 0, 16);
1672 ch->rcvd_xid_th = (struct th_header *)ch->trans_skb_data;
1673 /* check is main purpose here: */
1674 skb_put(ch->trans_skb, TH_HEADER_LENGTH);
1675 ch->rcvd_xid = (struct xid2 *)skb_tail_pointer(ch->trans_skb);
1676 /* check is main purpose here: */
1677 skb_put(ch->trans_skb, XID2_LENGTH);
1678 ch->rcvd_xid_id = skb_tail_pointer(ch->trans_skb);
1679 /* cleanup back to startpoint */
1680 ch->trans_skb->data = ch->trans_skb_data;
1681 skb_reset_tail_pointer(ch->trans_skb);
1682 ch->trans_skb->len = 0;
1684 /* non-checking rewrite of above skb data-buffer referencing: */
1686 memset(ch->trans_skb->data, 0, 16);
1687 ch->rcvd_xid_th = (struct th_header *)ch->trans_skb_data;
1688 ch->rcvd_xid = (struct xid2 *)(ch->trans_skb_data + TH_HEADER_LENGTH);
1689 ch->rcvd_xid_id = ch->trans_skb_data + TH_HEADER_LENGTH + XID2_LENGTH;
1692 ch->ccw[8].flags = CCW_FLAG_SLI | CCW_FLAG_CC;
1693 ch->ccw[8].count = 0;
1694 ch->ccw[8].cda = 0x00;
1696 if (!(ch->xid_th && ch->xid && ch->xid_id))
1697 CTCM_DBF_TEXT_(MPC_TRACE, CTC_DBF_INFO,
1698 "%s(%s): xid_th=%p, xid=%p, xid_id=%p",
1699 CTCM_FUNTAIL, ch->id, ch->xid_th, ch->xid, ch->xid_id);
1701 if (side == XSIDE) {
1702 /* mpc_action_xside_xid */
1703 if (ch->xid_th == NULL)
1705 ch->ccw[9].cmd_code = CCW_CMD_WRITE;
1706 ch->ccw[9].flags = CCW_FLAG_SLI | CCW_FLAG_CC;
1707 ch->ccw[9].count = TH_HEADER_LENGTH;
1708 ch->ccw[9].cda = virt_to_phys(ch->xid_th);
1710 if (ch->xid == NULL)
1712 ch->ccw[10].cmd_code = CCW_CMD_WRITE;
1713 ch->ccw[10].flags = CCW_FLAG_SLI | CCW_FLAG_CC;
1714 ch->ccw[10].count = XID2_LENGTH;
1715 ch->ccw[10].cda = virt_to_phys(ch->xid);
1717 ch->ccw[11].cmd_code = CCW_CMD_READ;
1718 ch->ccw[11].flags = CCW_FLAG_SLI | CCW_FLAG_CC;
1719 ch->ccw[11].count = TH_HEADER_LENGTH;
1720 ch->ccw[11].cda = virt_to_phys(ch->rcvd_xid_th);
1722 ch->ccw[12].cmd_code = CCW_CMD_READ;
1723 ch->ccw[12].flags = CCW_FLAG_SLI | CCW_FLAG_CC;
1724 ch->ccw[12].count = XID2_LENGTH;
1725 ch->ccw[12].cda = virt_to_phys(ch->rcvd_xid);
1727 ch->ccw[13].cmd_code = CCW_CMD_READ;
1728 ch->ccw[13].cda = virt_to_phys(ch->rcvd_xid_id);
1730 } else { /* side == YSIDE : mpc_action_yside_xid */
1731 ch->ccw[9].cmd_code = CCW_CMD_READ;
1732 ch->ccw[9].flags = CCW_FLAG_SLI | CCW_FLAG_CC;
1733 ch->ccw[9].count = TH_HEADER_LENGTH;
1734 ch->ccw[9].cda = virt_to_phys(ch->rcvd_xid_th);
1736 ch->ccw[10].cmd_code = CCW_CMD_READ;
1737 ch->ccw[10].flags = CCW_FLAG_SLI | CCW_FLAG_CC;
1738 ch->ccw[10].count = XID2_LENGTH;
1739 ch->ccw[10].cda = virt_to_phys(ch->rcvd_xid);
1741 if (ch->xid_th == NULL)
1743 ch->ccw[11].cmd_code = CCW_CMD_WRITE;
1744 ch->ccw[11].flags = CCW_FLAG_SLI | CCW_FLAG_CC;
1745 ch->ccw[11].count = TH_HEADER_LENGTH;
1746 ch->ccw[11].cda = virt_to_phys(ch->xid_th);
1748 if (ch->xid == NULL)
1750 ch->ccw[12].cmd_code = CCW_CMD_WRITE;
1751 ch->ccw[12].flags = CCW_FLAG_SLI | CCW_FLAG_CC;
1752 ch->ccw[12].count = XID2_LENGTH;
1753 ch->ccw[12].cda = virt_to_phys(ch->xid);
1755 if (ch->xid_id == NULL)
1757 ch->ccw[13].cmd_code = CCW_CMD_WRITE;
1758 ch->ccw[13].cda = virt_to_phys(ch->xid_id);
1761 ch->ccw[13].flags = CCW_FLAG_SLI | CCW_FLAG_CC;
1762 ch->ccw[13].count = 4;
1764 ch->ccw[14].cmd_code = CCW_CMD_NOOP;
1765 ch->ccw[14].flags = CCW_FLAG_SLI;
1766 ch->ccw[14].count = 0;
1767 ch->ccw[14].cda = 0;
1769 CTCM_CCW_DUMP((char *)&ch->ccw[8], sizeof(struct ccw1) * 7);
1770 CTCM_D3_DUMP((char *)ch->xid_th, TH_HEADER_LENGTH);
1771 CTCM_D3_DUMP((char *)ch->xid, XID2_LENGTH);
1772 CTCM_D3_DUMP((char *)ch->xid_id, 4);
1774 if (!in_hardirq()) {
1775 /* Such conditional locking is a known problem for
1776 * sparse because its static undeterministic.
1777 * Warnings should be ignored here. */
1778 spin_lock_irqsave(get_ccwdev_lock(ch->cdev), saveflags);
1782 fsm_addtimer(&ch->timer, 5000 , CTC_EVENT_TIMER, ch);
1783 rc = ccw_device_start(ch->cdev, &ch->ccw[8], 0, 0xff, 0);
1785 if (gotlock) /* see remark above about conditional locking */
1786 spin_unlock_irqrestore(get_ccwdev_lock(ch->cdev), saveflags);
1789 ctcm_ccw_check_rc(ch, rc,
1790 (side == XSIDE) ? "x-side XID" : "y-side XID");
1794 CTCM_PR_DEBUG("Exit %s: ch=0x%p id=%s\n",
1795 __func__, ch, ch->id);
1801 * MPC Group Station FSM action
1802 * CTCM_PROTO_MPC only
1804 static void mpc_action_xside_xid(fsm_instance *fsm, int event, void *arg)
1806 mpc_action_side_xid(fsm, arg, XSIDE);
1810 * MPC Group Station FSM action
1811 * CTCM_PROTO_MPC only
1813 static void mpc_action_yside_xid(fsm_instance *fsm, int event, void *arg)
1815 mpc_action_side_xid(fsm, arg, YSIDE);
1819 * MPC Group Station FSM action
1820 * CTCM_PROTO_MPC only
1822 static void mpc_action_doxid0(fsm_instance *fsm, int event, void *arg)
1824 struct channel *ch = arg;
1825 struct net_device *dev = ch->netdev;
1826 struct ctcm_priv *priv = dev->ml_priv;
1827 struct mpc_group *grp = priv->mpcg;
1829 CTCM_PR_DEBUG("Enter %s: cp=%i ch=0x%p id=%s\n",
1830 __func__, smp_processor_id(), ch, ch->id);
1832 if (ch->xid == NULL) {
1833 CTCM_DBF_TEXT_(MPC_ERROR, CTC_DBF_ERROR,
1834 "%s(%s): ch->xid == NULL",
1835 CTCM_FUNTAIL, dev->name);
1839 fsm_newstate(ch->fsm, CH_XID0_INPROGRESS);
1841 ch->xid->xid2_option = XID2_0;
1843 switch (fsm_getstate(grp->fsm)) {
1844 case MPCG_STATE_XID2INITW:
1845 case MPCG_STATE_XID2INITX:
1846 ch->ccw[8].cmd_code = CCW_CMD_SENSE_CMD;
1848 case MPCG_STATE_XID0IOWAIT:
1849 case MPCG_STATE_XID0IOWAIX:
1850 ch->ccw[8].cmd_code = CCW_CMD_WRITE_CTL;
1854 fsm_event(grp->fsm, MPCG_EVENT_DOIO, ch);
1860 * MPC Group Station FSM action
1861 * CTCM_PROTO_MPC only
1863 static void mpc_action_doxid7(fsm_instance *fsm, int event, void *arg)
1865 struct net_device *dev = arg;
1866 struct ctcm_priv *priv = dev->ml_priv;
1867 struct mpc_group *grp = NULL;
1876 for (direction = CTCM_READ; direction <= CTCM_WRITE; direction++) {
1877 struct channel *ch = priv->channel[direction];
1878 struct xid2 *thisxid = ch->xid;
1879 ch->xid_skb->data = ch->xid_skb_data;
1880 skb_reset_tail_pointer(ch->xid_skb);
1881 ch->xid_skb->len = 0;
1882 thisxid->xid2_option = XID2_7;
1886 if (grp->outstanding_xid7_p2 > 0) {
1887 if (grp->roll == YSIDE) {
1888 if (fsm_getstate(ch->fsm) == CH_XID7_PENDING1) {
1889 fsm_newstate(ch->fsm, CH_XID7_PENDING2);
1890 ch->ccw[8].cmd_code = CCW_CMD_SENSE_CMD;
1891 skb_put_data(ch->xid_skb, &thdummy,
1895 } else if (fsm_getstate(ch->fsm) < CH_XID7_PENDING2) {
1896 fsm_newstate(ch->fsm, CH_XID7_PENDING2);
1897 ch->ccw[8].cmd_code = CCW_CMD_WRITE_CTL;
1898 skb_put_data(ch->xid_skb, &thnorm,
1904 if (grp->roll == YSIDE) {
1905 if (fsm_getstate(ch->fsm) < CH_XID7_PENDING4) {
1906 fsm_newstate(ch->fsm, CH_XID7_PENDING4);
1907 skb_put_data(ch->xid_skb, &thnorm,
1909 ch->ccw[8].cmd_code = CCW_CMD_WRITE_CTL;
1912 } else if (fsm_getstate(ch->fsm) == CH_XID7_PENDING3) {
1913 fsm_newstate(ch->fsm, CH_XID7_PENDING4);
1914 ch->ccw[8].cmd_code = CCW_CMD_SENSE_CMD;
1915 skb_put_data(ch->xid_skb, &thdummy,
1922 fsm_event(grp->fsm, MPCG_EVENT_DOIO, ch);
1929 * MPC Group Station FSM action
1930 * CTCM_PROTO_MPC only
1932 static void mpc_action_rcvd_xid0(fsm_instance *fsm, int event, void *arg)
1935 struct mpcg_info *mpcginfo = arg;
1936 struct channel *ch = mpcginfo->ch;
1937 struct net_device *dev = ch->netdev;
1938 struct ctcm_priv *priv = dev->ml_priv;
1939 struct mpc_group *grp = priv->mpcg;
1941 CTCM_PR_DEBUG("%s: ch-id:%s xid2:%i xid7:%i xidt_p2:%i \n",
1942 __func__, ch->id, grp->outstanding_xid2,
1943 grp->outstanding_xid7, grp->outstanding_xid7_p2);
1945 if (fsm_getstate(ch->fsm) < CH_XID7_PENDING)
1946 fsm_newstate(ch->fsm, CH_XID7_PENDING);
1948 grp->outstanding_xid2--;
1949 grp->outstanding_xid7++;
1950 grp->outstanding_xid7_p2++;
1952 /* must change state before validating xid to */
1953 /* properly handle interim interrupts received*/
1954 switch (fsm_getstate(grp->fsm)) {
1955 case MPCG_STATE_XID2INITW:
1956 fsm_newstate(grp->fsm, MPCG_STATE_XID2INITX);
1957 mpc_validate_xid(mpcginfo);
1959 case MPCG_STATE_XID0IOWAIT:
1960 fsm_newstate(grp->fsm, MPCG_STATE_XID0IOWAIX);
1961 mpc_validate_xid(mpcginfo);
1963 case MPCG_STATE_XID2INITX:
1964 if (grp->outstanding_xid2 == 0) {
1965 fsm_newstate(grp->fsm, MPCG_STATE_XID7INITW);
1966 mpc_validate_xid(mpcginfo);
1967 fsm_event(grp->fsm, MPCG_EVENT_XID2DONE, dev);
1970 case MPCG_STATE_XID0IOWAIX:
1971 if (grp->outstanding_xid2 == 0) {
1972 fsm_newstate(grp->fsm, MPCG_STATE_XID7INITI);
1973 mpc_validate_xid(mpcginfo);
1974 fsm_event(grp->fsm, MPCG_EVENT_XID2DONE, dev);
1979 CTCM_PR_DEBUG("ctcmpc:%s() %s xid2:%i xid7:%i xidt_p2:%i \n",
1980 __func__, ch->id, grp->outstanding_xid2,
1981 grp->outstanding_xid7, grp->outstanding_xid7_p2);
1982 CTCM_PR_DEBUG("ctcmpc:%s() %s grpstate: %s chanstate: %s \n",
1984 fsm_getstate_str(grp->fsm), fsm_getstate_str(ch->fsm));
1991 * MPC Group Station FSM action
1992 * CTCM_PROTO_MPC only
1994 static void mpc_action_rcvd_xid7(fsm_instance *fsm, int event, void *arg)
1996 struct mpcg_info *mpcginfo = arg;
1997 struct channel *ch = mpcginfo->ch;
1998 struct net_device *dev = ch->netdev;
1999 struct ctcm_priv *priv = dev->ml_priv;
2000 struct mpc_group *grp = priv->mpcg;
2002 CTCM_PR_DEBUG("Enter %s: cp=%i ch=0x%p id=%s\n",
2003 __func__, smp_processor_id(), ch, ch->id);
2004 CTCM_PR_DEBUG("%s: outstanding_xid7: %i, outstanding_xid7_p2: %i\n",
2005 __func__, grp->outstanding_xid7, grp->outstanding_xid7_p2);
2007 grp->outstanding_xid7--;
2008 ch->xid_skb->data = ch->xid_skb_data;
2009 skb_reset_tail_pointer(ch->xid_skb);
2010 ch->xid_skb->len = 0;
2012 switch (fsm_getstate(grp->fsm)) {
2013 case MPCG_STATE_XID7INITI:
2014 fsm_newstate(grp->fsm, MPCG_STATE_XID7INITZ);
2015 mpc_validate_xid(mpcginfo);
2017 case MPCG_STATE_XID7INITW:
2018 fsm_newstate(grp->fsm, MPCG_STATE_XID7INITX);
2019 mpc_validate_xid(mpcginfo);
2021 case MPCG_STATE_XID7INITZ:
2022 case MPCG_STATE_XID7INITX:
2023 if (grp->outstanding_xid7 == 0) {
2024 if (grp->outstanding_xid7_p2 > 0) {
2025 grp->outstanding_xid7 =
2026 grp->outstanding_xid7_p2;
2027 grp->outstanding_xid7_p2 = 0;
2029 fsm_newstate(grp->fsm, MPCG_STATE_XID7INITF);
2031 mpc_validate_xid(mpcginfo);
2032 fsm_event(grp->fsm, MPCG_EVENT_XID7DONE, dev);
2035 mpc_validate_xid(mpcginfo);
2042 * mpc_action helper of an MPC Group Station FSM action
2043 * CTCM_PROTO_MPC only
2045 static int mpc_send_qllc_discontact(struct net_device *dev)
2047 struct sk_buff *skb;
2048 struct qllc *qllcptr;
2049 struct ctcm_priv *priv = dev->ml_priv;
2050 struct mpc_group *grp = priv->mpcg;
2052 CTCM_PR_DEBUG("%s: GROUP STATE: %s\n",
2053 __func__, mpcg_state_names[grp->saved_state]);
2055 switch (grp->saved_state) {
2057 * establish conn callback function is
2058 * preferred method to report failure
2060 case MPCG_STATE_XID0IOWAIT:
2061 case MPCG_STATE_XID0IOWAIX:
2062 case MPCG_STATE_XID7INITI:
2063 case MPCG_STATE_XID7INITZ:
2064 case MPCG_STATE_XID2INITW:
2065 case MPCG_STATE_XID2INITX:
2066 case MPCG_STATE_XID7INITW:
2067 case MPCG_STATE_XID7INITX:
2068 if (grp->estconnfunc) {
2069 grp->estconnfunc(grp->port_num, -1, 0);
2070 grp->estconnfunc = NULL;
2074 case MPCG_STATE_FLOWC:
2075 case MPCG_STATE_READY:
2076 grp->send_qllc_disc = 2;
2078 skb = __dev_alloc_skb(sizeof(struct qllc), GFP_ATOMIC);
2080 CTCM_DBF_TEXT_(MPC_ERROR, CTC_DBF_ERROR,
2081 "%s(%s): skb allocation error",
2082 CTCM_FUNTAIL, dev->name);
2083 priv->stats.rx_dropped++;
2087 qllcptr = skb_put(skb, sizeof(struct qllc));
2088 qllcptr->qllc_address = 0xcc;
2089 qllcptr->qllc_commands = 0x03;
2091 if (skb_headroom(skb) < 4) {
2092 CTCM_DBF_TEXT_(MPC_ERROR, CTC_DBF_ERROR,
2093 "%s(%s): skb_headroom error",
2094 CTCM_FUNTAIL, dev->name);
2095 dev_kfree_skb_any(skb);
2099 *((__u32 *)skb_push(skb, 4)) =
2100 priv->channel[CTCM_READ]->pdu_seq;
2101 priv->channel[CTCM_READ]->pdu_seq++;
2102 CTCM_PR_DBGDATA("ctcmpc: %s ToDCM_pdu_seq= %08x\n",
2103 __func__, priv->channel[CTCM_READ]->pdu_seq);
2105 /* receipt of CC03 resets anticipated sequence number on
2107 priv->channel[CTCM_READ]->pdu_seq = 0x00;
2108 skb_reset_mac_header(skb);
2110 skb->protocol = htons(ETH_P_SNAP);
2111 skb->ip_summed = CHECKSUM_UNNECESSARY;
2113 CTCM_D3_DUMP(skb->data, (sizeof(struct qllc) + 4));
2124 /* --- This is the END my friend --- */