2 * drivers/s390/net/ctcm_fsms.c
4 * Copyright IBM Corp. 2001, 2007
5 * Authors: Fritz Elfert (felfert@millenux.com)
6 * Peter Tiedemann (ptiedem@de.ibm.com)
8 * Belinda Thompson (belindat@us.ibm.com)
9 * Andy Richter (richtera@us.ibm.com)
16 #include <linux/module.h>
17 #include <linux/init.h>
18 #include <linux/kernel.h>
19 #include <linux/slab.h>
20 #include <linux/errno.h>
21 #include <linux/types.h>
22 #include <linux/interrupt.h>
23 #include <linux/timer.h>
24 #include <linux/bitops.h>
26 #include <linux/signal.h>
27 #include <linux/string.h>
30 #include <linux/if_arp.h>
31 #include <linux/tcp.h>
32 #include <linux/skbuff.h>
33 #include <linux/ctype.h>
37 #include <asm/ccwdev.h>
38 #include <asm/ccwgroup.h>
39 #include <linux/uaccess.h>
41 #include <asm/idals.h>
46 #include "ctcm_dbug.h"
47 #include "ctcm_main.h"
48 #include "ctcm_fsms.h"
50 const char *dev_state_names
[] = {
51 [DEV_STATE_STOPPED
] = "Stopped",
52 [DEV_STATE_STARTWAIT_RXTX
] = "StartWait RXTX",
53 [DEV_STATE_STARTWAIT_RX
] = "StartWait RX",
54 [DEV_STATE_STARTWAIT_TX
] = "StartWait TX",
55 [DEV_STATE_STOPWAIT_RXTX
] = "StopWait RXTX",
56 [DEV_STATE_STOPWAIT_RX
] = "StopWait RX",
57 [DEV_STATE_STOPWAIT_TX
] = "StopWait TX",
58 [DEV_STATE_RUNNING
] = "Running",
61 const char *dev_event_names
[] = {
62 [DEV_EVENT_START
] = "Start",
63 [DEV_EVENT_STOP
] = "Stop",
64 [DEV_EVENT_RXUP
] = "RX up",
65 [DEV_EVENT_TXUP
] = "TX up",
66 [DEV_EVENT_RXDOWN
] = "RX down",
67 [DEV_EVENT_TXDOWN
] = "TX down",
68 [DEV_EVENT_RESTART
] = "Restart",
71 const char *ctc_ch_event_names
[] = {
72 [CTC_EVENT_IO_SUCCESS
] = "ccw_device success",
73 [CTC_EVENT_IO_EBUSY
] = "ccw_device busy",
74 [CTC_EVENT_IO_ENODEV
] = "ccw_device enodev",
75 [CTC_EVENT_IO_UNKNOWN
] = "ccw_device unknown",
76 [CTC_EVENT_ATTNBUSY
] = "Status ATTN & BUSY",
77 [CTC_EVENT_ATTN
] = "Status ATTN",
78 [CTC_EVENT_BUSY
] = "Status BUSY",
79 [CTC_EVENT_UC_RCRESET
] = "Unit check remote reset",
80 [CTC_EVENT_UC_RSRESET
] = "Unit check remote system reset",
81 [CTC_EVENT_UC_TXTIMEOUT
] = "Unit check TX timeout",
82 [CTC_EVENT_UC_TXPARITY
] = "Unit check TX parity",
83 [CTC_EVENT_UC_HWFAIL
] = "Unit check Hardware failure",
84 [CTC_EVENT_UC_RXPARITY
] = "Unit check RX parity",
85 [CTC_EVENT_UC_ZERO
] = "Unit check ZERO",
86 [CTC_EVENT_UC_UNKNOWN
] = "Unit check Unknown",
87 [CTC_EVENT_SC_UNKNOWN
] = "SubChannel check Unknown",
88 [CTC_EVENT_MC_FAIL
] = "Machine check failure",
89 [CTC_EVENT_MC_GOOD
] = "Machine check operational",
90 [CTC_EVENT_IRQ
] = "IRQ normal",
91 [CTC_EVENT_FINSTAT
] = "IRQ final",
92 [CTC_EVENT_TIMER
] = "Timer",
93 [CTC_EVENT_START
] = "Start",
94 [CTC_EVENT_STOP
] = "Stop",
96 * additional MPC events
98 [CTC_EVENT_SEND_XID
] = "XID Exchange",
99 [CTC_EVENT_RSWEEP_TIMER
] = "MPC Group Sweep Timer",
102 const char *ctc_ch_state_names
[] = {
103 [CTC_STATE_IDLE
] = "Idle",
104 [CTC_STATE_STOPPED
] = "Stopped",
105 [CTC_STATE_STARTWAIT
] = "StartWait",
106 [CTC_STATE_STARTRETRY
] = "StartRetry",
107 [CTC_STATE_SETUPWAIT
] = "SetupWait",
108 [CTC_STATE_RXINIT
] = "RX init",
109 [CTC_STATE_TXINIT
] = "TX init",
110 [CTC_STATE_RX
] = "RX",
111 [CTC_STATE_TX
] = "TX",
112 [CTC_STATE_RXIDLE
] = "RX idle",
113 [CTC_STATE_TXIDLE
] = "TX idle",
114 [CTC_STATE_RXERR
] = "RX error",
115 [CTC_STATE_TXERR
] = "TX error",
116 [CTC_STATE_TERM
] = "Terminating",
117 [CTC_STATE_DTERM
] = "Restarting",
118 [CTC_STATE_NOTOP
] = "Not operational",
120 * additional MPC states
122 [CH_XID0_PENDING
] = "Pending XID0 Start",
123 [CH_XID0_INPROGRESS
] = "In XID0 Negotiations ",
124 [CH_XID7_PENDING
] = "Pending XID7 P1 Start",
125 [CH_XID7_PENDING1
] = "Active XID7 P1 Exchange ",
126 [CH_XID7_PENDING2
] = "Pending XID7 P2 Start ",
127 [CH_XID7_PENDING3
] = "Active XID7 P2 Exchange ",
128 [CH_XID7_PENDING4
] = "XID7 Complete - Pending READY ",
131 static void ctcm_action_nop(fsm_instance
*fi
, int event
, void *arg
);
134 * ----- static ctcm actions for channel statemachine -----
137 static void chx_txdone(fsm_instance
*fi
, int event
, void *arg
);
138 static void chx_rx(fsm_instance
*fi
, int event
, void *arg
);
139 static void chx_rxidle(fsm_instance
*fi
, int event
, void *arg
);
140 static void chx_firstio(fsm_instance
*fi
, int event
, void *arg
);
141 static void ctcm_chx_setmode(fsm_instance
*fi
, int event
, void *arg
);
142 static void ctcm_chx_start(fsm_instance
*fi
, int event
, void *arg
);
143 static void ctcm_chx_haltio(fsm_instance
*fi
, int event
, void *arg
);
144 static void ctcm_chx_stopped(fsm_instance
*fi
, int event
, void *arg
);
145 static void ctcm_chx_stop(fsm_instance
*fi
, int event
, void *arg
);
146 static void ctcm_chx_fail(fsm_instance
*fi
, int event
, void *arg
);
147 static void ctcm_chx_setuperr(fsm_instance
*fi
, int event
, void *arg
);
148 static void ctcm_chx_restart(fsm_instance
*fi
, int event
, void *arg
);
149 static void ctcm_chx_rxiniterr(fsm_instance
*fi
, int event
, void *arg
);
150 static void ctcm_chx_rxinitfail(fsm_instance
*fi
, int event
, void *arg
);
151 static void ctcm_chx_rxdisc(fsm_instance
*fi
, int event
, void *arg
);
152 static void ctcm_chx_txiniterr(fsm_instance
*fi
, int event
, void *arg
);
153 static void ctcm_chx_txretry(fsm_instance
*fi
, int event
, void *arg
);
154 static void ctcm_chx_iofatal(fsm_instance
*fi
, int event
, void *arg
);
157 * ----- static ctcmpc actions for ctcmpc channel statemachine -----
160 static void ctcmpc_chx_txdone(fsm_instance
*fi
, int event
, void *arg
);
161 static void ctcmpc_chx_rx(fsm_instance
*fi
, int event
, void *arg
);
162 static void ctcmpc_chx_firstio(fsm_instance
*fi
, int event
, void *arg
);
164 static void ctcm_chx_setmode(fsm_instance *fi, int event, void *arg);
165 static void ctcm_chx_start(fsm_instance *fi, int event, void *arg);
166 static void ctcm_chx_haltio(fsm_instance *fi, int event, void *arg);
167 static void ctcm_chx_stopped(fsm_instance *fi, int event, void *arg);
168 static void ctcm_chx_stop(fsm_instance *fi, int event, void *arg);
169 static void ctcm_chx_fail(fsm_instance *fi, int event, void *arg);
170 static void ctcm_chx_setuperr(fsm_instance *fi, int event, void *arg);
171 static void ctcm_chx_restart(fsm_instance *fi, int event, void *arg);
172 static void ctcm_chx_rxiniterr(fsm_instance *fi, int event, void *arg);
173 static void ctcm_chx_rxinitfail(fsm_instance *fi, int event, void *arg);
174 static void ctcm_chx_rxdisc(fsm_instance *fi, int event, void *arg);
175 static void ctcm_chx_txiniterr(fsm_instance *fi, int event, void *arg);
176 static void ctcm_chx_txretry(fsm_instance *fi, int event, void *arg);
177 static void ctcm_chx_iofatal(fsm_instance *fi, int event, void *arg);
179 static void ctcmpc_chx_attn(fsm_instance
*fsm
, int event
, void *arg
);
180 static void ctcmpc_chx_attnbusy(fsm_instance
*, int, void *);
181 static void ctcmpc_chx_resend(fsm_instance
*, int, void *);
182 static void ctcmpc_chx_send_sweep(fsm_instance
*fsm
, int event
, void *arg
);
185 * Check return code of a preceeding ccw_device call, halt_IO etc...
187 * ch : The channel, the error belongs to.
188 * Returns the error code (!= 0) to inspect.
190 void ctcm_ccw_check_rc(struct channel
*ch
, int rc
, char *msg
)
192 CTCM_DBF_TEXT_(ERROR
, CTC_DBF_ERROR
,
193 "ccw error %s (%s): %04x\n", ch
->id
, msg
, rc
);
196 ctcm_pr_warn("%s (%s): Busy !\n", ch
->id
, msg
);
197 fsm_event(ch
->fsm
, CTC_EVENT_IO_EBUSY
, ch
);
200 ctcm_pr_emerg("%s (%s): Invalid device called for IO\n",
202 fsm_event(ch
->fsm
, CTC_EVENT_IO_ENODEV
, ch
);
205 ctcm_pr_emerg("%s (%s): Unknown error in do_IO %04x\n",
207 fsm_event(ch
->fsm
, CTC_EVENT_IO_UNKNOWN
, ch
);
211 void ctcm_purge_skb_queue(struct sk_buff_head
*q
)
215 CTCM_DBF_TEXT(TRACE
, 3, __FUNCTION__
);
217 while ((skb
= skb_dequeue(q
))) {
218 atomic_dec(&skb
->users
);
219 dev_kfree_skb_any(skb
);
224 * NOP action for statemachines
226 static void ctcm_action_nop(fsm_instance
*fi
, int event
, void *arg
)
231 * Actions for channel - statemachines.
235 * Normal data has been send. Free the corresponding
236 * skb (it's in io_queue), reset dev->tbusy and
237 * revert to idle state.
239 * fi An instance of a channel statemachine.
240 * event The event, just happened.
241 * arg Generic pointer, casted from channel * upon call.
243 static void chx_txdone(fsm_instance
*fi
, int event
, void *arg
)
245 struct channel
*ch
= arg
;
246 struct net_device
*dev
= ch
->netdev
;
247 struct ctcm_priv
*priv
= dev
->priv
;
251 unsigned long duration
;
252 struct timespec done_stamp
= current_kernel_time(); /* xtime */
255 (done_stamp
.tv_sec
- ch
->prof
.send_stamp
.tv_sec
) * 1000000 +
256 (done_stamp
.tv_nsec
- ch
->prof
.send_stamp
.tv_nsec
) / 1000;
257 if (duration
> ch
->prof
.tx_time
)
258 ch
->prof
.tx_time
= duration
;
260 if (ch
->irb
->scsw
.count
!= 0)
261 ctcm_pr_debug("%s: TX not complete, remaining %d bytes\n",
262 dev
->name
, ch
->irb
->scsw
.count
);
263 fsm_deltimer(&ch
->timer
);
264 while ((skb
= skb_dequeue(&ch
->io_queue
))) {
265 priv
->stats
.tx_packets
++;
266 priv
->stats
.tx_bytes
+= skb
->len
- LL_HEADER_LENGTH
;
268 priv
->stats
.tx_bytes
+= 2;
271 atomic_dec(&skb
->users
);
272 dev_kfree_skb_irq(skb
);
274 spin_lock(&ch
->collect_lock
);
275 clear_normalized_cda(&ch
->ccw
[4]);
276 if (ch
->collect_len
> 0) {
279 if (ctcm_checkalloc_buffer(ch
)) {
280 spin_unlock(&ch
->collect_lock
);
283 ch
->trans_skb
->data
= ch
->trans_skb_data
;
284 skb_reset_tail_pointer(ch
->trans_skb
);
285 ch
->trans_skb
->len
= 0;
286 if (ch
->prof
.maxmulti
< (ch
->collect_len
+ 2))
287 ch
->prof
.maxmulti
= ch
->collect_len
+ 2;
288 if (ch
->prof
.maxcqueue
< skb_queue_len(&ch
->collect_queue
))
289 ch
->prof
.maxcqueue
= skb_queue_len(&ch
->collect_queue
);
290 *((__u16
*)skb_put(ch
->trans_skb
, 2)) = ch
->collect_len
+ 2;
292 while ((skb
= skb_dequeue(&ch
->collect_queue
))) {
293 skb_copy_from_linear_data(skb
,
294 skb_put(ch
->trans_skb
, skb
->len
), skb
->len
);
295 priv
->stats
.tx_packets
++;
296 priv
->stats
.tx_bytes
+= skb
->len
- LL_HEADER_LENGTH
;
297 atomic_dec(&skb
->users
);
298 dev_kfree_skb_irq(skb
);
302 spin_unlock(&ch
->collect_lock
);
303 ch
->ccw
[1].count
= ch
->trans_skb
->len
;
304 fsm_addtimer(&ch
->timer
, CTCM_TIME_5_SEC
, CTC_EVENT_TIMER
, ch
);
305 ch
->prof
.send_stamp
= current_kernel_time(); /* xtime */
306 rc
= ccw_device_start(ch
->cdev
, &ch
->ccw
[0],
307 (unsigned long)ch
, 0xff, 0);
308 ch
->prof
.doios_multi
++;
310 priv
->stats
.tx_dropped
+= i
;
311 priv
->stats
.tx_errors
+= i
;
312 fsm_deltimer(&ch
->timer
);
313 ctcm_ccw_check_rc(ch
, rc
, "chained TX");
316 spin_unlock(&ch
->collect_lock
);
317 fsm_newstate(fi
, CTC_STATE_TXIDLE
);
319 ctcm_clear_busy_do(dev
);
323 * Initial data is sent.
324 * Notify device statemachine that we are up and
327 * fi An instance of a channel statemachine.
328 * event The event, just happened.
329 * arg Generic pointer, casted from channel * upon call.
331 void ctcm_chx_txidle(fsm_instance
*fi
, int event
, void *arg
)
333 struct channel
*ch
= arg
;
334 struct net_device
*dev
= ch
->netdev
;
335 struct ctcm_priv
*priv
= dev
->priv
;
337 CTCM_DBF_TEXT(TRACE
, 6, __FUNCTION__
);
338 fsm_deltimer(&ch
->timer
);
339 fsm_newstate(fi
, CTC_STATE_TXIDLE
);
340 fsm_event(priv
->fsm
, DEV_EVENT_TXUP
, ch
->netdev
);
344 * Got normal data, check for sanity, queue it up, allocate new buffer
345 * trigger bottom half, and initiate next read.
347 * fi An instance of a channel statemachine.
348 * event The event, just happened.
349 * arg Generic pointer, casted from channel * upon call.
351 static void chx_rx(fsm_instance
*fi
, int event
, void *arg
)
353 struct channel
*ch
= arg
;
354 struct net_device
*dev
= ch
->netdev
;
355 struct ctcm_priv
*priv
= dev
->priv
;
356 int len
= ch
->max_bufsize
- ch
->irb
->scsw
.count
;
357 struct sk_buff
*skb
= ch
->trans_skb
;
358 __u16 block_len
= *((__u16
*)skb
->data
);
362 fsm_deltimer(&ch
->timer
);
364 ctcm_pr_debug("%s: got packet with length %d < 8\n",
366 priv
->stats
.rx_dropped
++;
367 priv
->stats
.rx_length_errors
++;
370 if (len
> ch
->max_bufsize
) {
371 ctcm_pr_debug("%s: got packet with length %d > %d\n",
372 dev
->name
, len
, ch
->max_bufsize
);
373 priv
->stats
.rx_dropped
++;
374 priv
->stats
.rx_length_errors
++;
379 * VM TCP seems to have a bug sending 2 trailing bytes of garbage.
381 switch (ch
->protocol
) {
382 case CTCM_PROTO_S390
:
383 case CTCM_PROTO_OS390
:
384 check_len
= block_len
+ 2;
387 check_len
= block_len
;
390 if ((len
< block_len
) || (len
> check_len
)) {
391 ctcm_pr_debug("%s: got block length %d != rx length %d\n",
392 dev
->name
, block_len
, len
);
394 ctcmpc_dump_skb(skb
, 0);
396 *((__u16
*)skb
->data
) = len
;
397 priv
->stats
.rx_dropped
++;
398 priv
->stats
.rx_length_errors
++;
403 *((__u16
*)skb
->data
) = block_len
;
404 ctcm_unpack_skb(ch
, skb
);
407 skb
->data
= ch
->trans_skb_data
;
408 skb_reset_tail_pointer(skb
);
410 if (ctcm_checkalloc_buffer(ch
))
412 ch
->ccw
[1].count
= ch
->max_bufsize
;
413 rc
= ccw_device_start(ch
->cdev
, &ch
->ccw
[0],
414 (unsigned long)ch
, 0xff, 0);
416 ctcm_ccw_check_rc(ch
, rc
, "normal RX");
420 * Initialize connection by sending a __u16 of value 0.
422 * fi An instance of a channel statemachine.
423 * event The event, just happened.
424 * arg Generic pointer, casted from channel * upon call.
426 static void chx_firstio(fsm_instance
*fi
, int event
, void *arg
)
428 struct channel
*ch
= arg
;
431 CTCM_DBF_TEXT(TRACE
, 6, __FUNCTION__
);
433 if (fsm_getstate(fi
) == CTC_STATE_TXIDLE
)
434 ctcm_pr_debug("%s: remote side issued READ?, init.\n", ch
->id
);
435 fsm_deltimer(&ch
->timer
);
436 if (ctcm_checkalloc_buffer(ch
))
438 if ((fsm_getstate(fi
) == CTC_STATE_SETUPWAIT
) &&
439 (ch
->protocol
== CTCM_PROTO_OS390
)) {
440 /* OS/390 resp. z/OS */
441 if (CHANNEL_DIRECTION(ch
->flags
) == READ
) {
442 *((__u16
*)ch
->trans_skb
->data
) = CTCM_INITIAL_BLOCKLEN
;
443 fsm_addtimer(&ch
->timer
, CTCM_TIME_5_SEC
,
444 CTC_EVENT_TIMER
, ch
);
445 chx_rxidle(fi
, event
, arg
);
447 struct net_device
*dev
= ch
->netdev
;
448 struct ctcm_priv
*priv
= dev
->priv
;
449 fsm_newstate(fi
, CTC_STATE_TXIDLE
);
450 fsm_event(priv
->fsm
, DEV_EVENT_TXUP
, dev
);
456 * Don't setup a timer for receiving the initial RX frame
457 * if in compatibility mode, since VM TCP delays the initial
458 * frame until it has some data to send.
460 if ((CHANNEL_DIRECTION(ch
->flags
) == WRITE
) ||
461 (ch
->protocol
!= CTCM_PROTO_S390
))
462 fsm_addtimer(&ch
->timer
, CTCM_TIME_5_SEC
, CTC_EVENT_TIMER
, ch
);
464 *((__u16
*)ch
->trans_skb
->data
) = CTCM_INITIAL_BLOCKLEN
;
465 ch
->ccw
[1].count
= 2; /* Transfer only length */
467 fsm_newstate(fi
, (CHANNEL_DIRECTION(ch
->flags
) == READ
)
468 ? CTC_STATE_RXINIT
: CTC_STATE_TXINIT
);
469 rc
= ccw_device_start(ch
->cdev
, &ch
->ccw
[0],
470 (unsigned long)ch
, 0xff, 0);
472 fsm_deltimer(&ch
->timer
);
473 fsm_newstate(fi
, CTC_STATE_SETUPWAIT
);
474 ctcm_ccw_check_rc(ch
, rc
, "init IO");
477 * If in compatibility mode since we don't setup a timer, we
478 * also signal RX channel up immediately. This enables us
479 * to send packets early which in turn usually triggers some
480 * reply from VM TCP which brings up the RX channel to it's
483 if ((CHANNEL_DIRECTION(ch
->flags
) == READ
) &&
484 (ch
->protocol
== CTCM_PROTO_S390
)) {
485 struct net_device
*dev
= ch
->netdev
;
486 struct ctcm_priv
*priv
= dev
->priv
;
487 fsm_event(priv
->fsm
, DEV_EVENT_RXUP
, dev
);
492 * Got initial data, check it. If OK,
493 * notify device statemachine that we are up and
496 * fi An instance of a channel statemachine.
497 * event The event, just happened.
498 * arg Generic pointer, casted from channel * upon call.
500 static void chx_rxidle(fsm_instance
*fi
, int event
, void *arg
)
502 struct channel
*ch
= arg
;
503 struct net_device
*dev
= ch
->netdev
;
504 struct ctcm_priv
*priv
= dev
->priv
;
508 CTCM_DBF_TEXT(TRACE
, 6, __FUNCTION__
);
509 fsm_deltimer(&ch
->timer
);
510 buflen
= *((__u16
*)ch
->trans_skb
->data
);
512 ctcm_pr_debug("%s: Initial RX count %d\n", dev
->name
, buflen
);
514 if (buflen
>= CTCM_INITIAL_BLOCKLEN
) {
515 if (ctcm_checkalloc_buffer(ch
))
517 ch
->ccw
[1].count
= ch
->max_bufsize
;
518 fsm_newstate(fi
, CTC_STATE_RXIDLE
);
519 rc
= ccw_device_start(ch
->cdev
, &ch
->ccw
[0],
520 (unsigned long)ch
, 0xff, 0);
522 fsm_newstate(fi
, CTC_STATE_RXINIT
);
523 ctcm_ccw_check_rc(ch
, rc
, "initial RX");
525 fsm_event(priv
->fsm
, DEV_EVENT_RXUP
, dev
);
528 ctcm_pr_debug("%s: Initial RX count %d not %d\n",
529 dev
->name
, buflen
, CTCM_INITIAL_BLOCKLEN
);
530 chx_firstio(fi
, event
, arg
);
535 * Set channel into extended mode.
537 * fi An instance of a channel statemachine.
538 * event The event, just happened.
539 * arg Generic pointer, casted from channel * upon call.
541 static void ctcm_chx_setmode(fsm_instance
*fi
, int event
, void *arg
)
543 struct channel
*ch
= arg
;
545 unsigned long saveflags
= 0;
546 int timeout
= CTCM_TIME_5_SEC
;
548 fsm_deltimer(&ch
->timer
);
552 ctcm_pr_debug("ctcm enter: %s(): cp=%i ch=0x%p id=%s\n",
553 __FUNCTION__
, smp_processor_id(), ch
, ch
->id
);
555 fsm_addtimer(&ch
->timer
, timeout
, CTC_EVENT_TIMER
, ch
);
556 fsm_newstate(fi
, CTC_STATE_SETUPWAIT
);
557 if (do_debug_ccw
&& IS_MPC(ch
))
558 ctcmpc_dumpit((char *)&ch
->ccw
[6], sizeof(struct ccw1
) * 2);
560 if (event
== CTC_EVENT_TIMER
) /* only for timer not yet locked */
561 spin_lock_irqsave(get_ccwdev_lock(ch
->cdev
), saveflags
);
562 /* Such conditional locking is undeterministic in
563 * static view. => ignore sparse warnings here. */
565 rc
= ccw_device_start(ch
->cdev
, &ch
->ccw
[6],
566 (unsigned long)ch
, 0xff, 0);
567 if (event
== CTC_EVENT_TIMER
) /* see above comments */
568 spin_unlock_irqrestore(get_ccwdev_lock(ch
->cdev
), saveflags
);
570 fsm_deltimer(&ch
->timer
);
571 fsm_newstate(fi
, CTC_STATE_STARTWAIT
);
572 ctcm_ccw_check_rc(ch
, rc
, "set Mode");
580 * fi An instance of a channel statemachine.
581 * event The event, just happened.
582 * arg Generic pointer, casted from channel * upon call.
584 static void ctcm_chx_start(fsm_instance
*fi
, int event
, void *arg
)
586 struct channel
*ch
= arg
;
588 struct net_device
*dev
;
589 unsigned long saveflags
;
591 CTCM_DBF_TEXT(TRACE
, 5, __FUNCTION__
);
593 ctcm_pr_warn("chx_start ch=NULL\n");
596 if (ch
->netdev
== NULL
) {
597 ctcm_pr_warn("chx_start dev=NULL, id=%s\n", ch
->id
);
603 ctcm_pr_debug("%s: %s channel start\n", dev
->name
,
604 (CHANNEL_DIRECTION(ch
->flags
) == READ
) ? "RX" : "TX");
606 if (ch
->trans_skb
!= NULL
) {
607 clear_normalized_cda(&ch
->ccw
[1]);
608 dev_kfree_skb(ch
->trans_skb
);
609 ch
->trans_skb
= NULL
;
611 if (CHANNEL_DIRECTION(ch
->flags
) == READ
) {
612 ch
->ccw
[1].cmd_code
= CCW_CMD_READ
;
613 ch
->ccw
[1].flags
= CCW_FLAG_SLI
;
614 ch
->ccw
[1].count
= 0;
616 ch
->ccw
[1].cmd_code
= CCW_CMD_WRITE
;
617 ch
->ccw
[1].flags
= CCW_FLAG_SLI
| CCW_FLAG_CC
;
618 ch
->ccw
[1].count
= 0;
620 if (ctcm_checkalloc_buffer(ch
)) {
621 ctcm_pr_notice("%s: %s trans_skb allocation delayed "
622 "until first transfer\n", dev
->name
,
623 (CHANNEL_DIRECTION(ch
->flags
) == READ
) ? "RX" : "TX");
626 ch
->ccw
[0].cmd_code
= CCW_CMD_PREPARE
;
627 ch
->ccw
[0].flags
= CCW_FLAG_SLI
| CCW_FLAG_CC
;
628 ch
->ccw
[0].count
= 0;
630 ch
->ccw
[2].cmd_code
= CCW_CMD_NOOP
; /* jointed CE + DE */
631 ch
->ccw
[2].flags
= CCW_FLAG_SLI
;
632 ch
->ccw
[2].count
= 0;
634 memcpy(&ch
->ccw
[3], &ch
->ccw
[0], sizeof(struct ccw1
) * 3);
636 ch
->ccw
[4].flags
&= ~CCW_FLAG_IDA
;
638 fsm_newstate(fi
, CTC_STATE_STARTWAIT
);
639 fsm_addtimer(&ch
->timer
, 1000, CTC_EVENT_TIMER
, ch
);
640 spin_lock_irqsave(get_ccwdev_lock(ch
->cdev
), saveflags
);
641 rc
= ccw_device_halt(ch
->cdev
, (unsigned long)ch
);
642 spin_unlock_irqrestore(get_ccwdev_lock(ch
->cdev
), saveflags
);
645 fsm_deltimer(&ch
->timer
);
646 ctcm_ccw_check_rc(ch
, rc
, "initial HaltIO");
651 * Shutdown a channel.
653 * fi An instance of a channel statemachine.
654 * event The event, just happened.
655 * arg Generic pointer, casted from channel * upon call.
657 static void ctcm_chx_haltio(fsm_instance
*fi
, int event
, void *arg
)
659 struct channel
*ch
= arg
;
660 unsigned long saveflags
= 0;
664 CTCM_DBF_TEXT(TRACE
, 2, __FUNCTION__
);
665 fsm_deltimer(&ch
->timer
);
667 fsm_deltimer(&ch
->sweep_timer
);
669 fsm_addtimer(&ch
->timer
, CTCM_TIME_5_SEC
, CTC_EVENT_TIMER
, ch
);
671 if (event
== CTC_EVENT_STOP
) /* only for STOP not yet locked */
672 spin_lock_irqsave(get_ccwdev_lock(ch
->cdev
), saveflags
);
673 /* Such conditional locking is undeterministic in
674 * static view. => ignore sparse warnings here. */
675 oldstate
= fsm_getstate(fi
);
676 fsm_newstate(fi
, CTC_STATE_TERM
);
677 rc
= ccw_device_halt(ch
->cdev
, (unsigned long)ch
);
679 if (event
== CTC_EVENT_STOP
)
680 spin_unlock_irqrestore(get_ccwdev_lock(ch
->cdev
), saveflags
);
681 /* see remark above about conditional locking */
683 if (rc
!= 0 && rc
!= -EBUSY
) {
684 fsm_deltimer(&ch
->timer
);
685 if (event
!= CTC_EVENT_STOP
) {
686 fsm_newstate(fi
, oldstate
);
687 ctcm_ccw_check_rc(ch
, rc
, (char *)__FUNCTION__
);
693 * Cleanup helper for chx_fail and chx_stopped
694 * cleanup channels queue and notify interface statemachine.
696 * fi An instance of a channel statemachine.
697 * state The next state (depending on caller).
698 * ch The channel to operate on.
700 static void ctcm_chx_cleanup(fsm_instance
*fi
, int state
,
703 struct net_device
*dev
= ch
->netdev
;
704 struct ctcm_priv
*priv
= dev
->priv
;
706 CTCM_DBF_TEXT(TRACE
, 3, __FUNCTION__
);
708 fsm_deltimer(&ch
->timer
);
710 fsm_deltimer(&ch
->sweep_timer
);
712 fsm_newstate(fi
, state
);
713 if (state
== CTC_STATE_STOPPED
&& ch
->trans_skb
!= NULL
) {
714 clear_normalized_cda(&ch
->ccw
[1]);
715 dev_kfree_skb_any(ch
->trans_skb
);
716 ch
->trans_skb
= NULL
;
720 ch
->th_seq_num
= 0x00;
721 if (CHANNEL_DIRECTION(ch
->flags
) == READ
) {
722 skb_queue_purge(&ch
->io_queue
);
723 fsm_event(priv
->fsm
, DEV_EVENT_RXDOWN
, dev
);
725 ctcm_purge_skb_queue(&ch
->io_queue
);
727 ctcm_purge_skb_queue(&ch
->sweep_queue
);
728 spin_lock(&ch
->collect_lock
);
729 ctcm_purge_skb_queue(&ch
->collect_queue
);
731 spin_unlock(&ch
->collect_lock
);
732 fsm_event(priv
->fsm
, DEV_EVENT_TXDOWN
, dev
);
737 * A channel has successfully been halted.
738 * Cleanup it's queue and notify interface statemachine.
740 * fi An instance of a channel statemachine.
741 * event The event, just happened.
742 * arg Generic pointer, casted from channel * upon call.
744 static void ctcm_chx_stopped(fsm_instance
*fi
, int event
, void *arg
)
746 CTCM_DBF_TEXT(TRACE
, 3, __FUNCTION__
);
747 ctcm_chx_cleanup(fi
, CTC_STATE_STOPPED
, arg
);
751 * A stop command from device statemachine arrived and we are in
752 * not operational mode. Set state to stopped.
754 * fi An instance of a channel statemachine.
755 * event The event, just happened.
756 * arg Generic pointer, casted from channel * upon call.
758 static void ctcm_chx_stop(fsm_instance
*fi
, int event
, void *arg
)
760 fsm_newstate(fi
, CTC_STATE_STOPPED
);
764 * A machine check for no path, not operational status or gone device has
766 * Cleanup queue and notify interface statemachine.
768 * fi An instance of a channel statemachine.
769 * event The event, just happened.
770 * arg Generic pointer, casted from channel * upon call.
772 static void ctcm_chx_fail(fsm_instance
*fi
, int event
, void *arg
)
774 CTCM_DBF_TEXT(TRACE
, 3, __FUNCTION__
);
775 ctcm_chx_cleanup(fi
, CTC_STATE_NOTOP
, arg
);
779 * Handle error during setup of channel.
781 * fi An instance of a channel statemachine.
782 * event The event, just happened.
783 * arg Generic pointer, casted from channel * upon call.
785 static void ctcm_chx_setuperr(fsm_instance
*fi
, int event
, void *arg
)
787 struct channel
*ch
= arg
;
788 struct net_device
*dev
= ch
->netdev
;
789 struct ctcm_priv
*priv
= dev
->priv
;
792 * Special case: Got UC_RCRESET on setmode.
793 * This means that remote side isn't setup. In this case
794 * simply retry after some 10 secs...
796 if ((fsm_getstate(fi
) == CTC_STATE_SETUPWAIT
) &&
797 ((event
== CTC_EVENT_UC_RCRESET
) ||
798 (event
== CTC_EVENT_UC_RSRESET
))) {
799 fsm_newstate(fi
, CTC_STATE_STARTRETRY
);
800 fsm_deltimer(&ch
->timer
);
801 fsm_addtimer(&ch
->timer
, CTCM_TIME_5_SEC
, CTC_EVENT_TIMER
, ch
);
802 if (!IS_MPC(ch
) && (CHANNEL_DIRECTION(ch
->flags
) == READ
)) {
803 int rc
= ccw_device_halt(ch
->cdev
, (unsigned long)ch
);
805 ctcm_ccw_check_rc(ch
, rc
,
806 "HaltIO in chx_setuperr");
811 CTCM_DBF_TEXT_(ERROR
, CTC_DBF_CRIT
,
812 "%s : %s error during %s channel setup state=%s\n",
813 dev
->name
, ctc_ch_event_names
[event
],
814 (CHANNEL_DIRECTION(ch
->flags
) == READ
) ? "RX" : "TX",
815 fsm_getstate_str(fi
));
817 if (CHANNEL_DIRECTION(ch
->flags
) == READ
) {
818 fsm_newstate(fi
, CTC_STATE_RXERR
);
819 fsm_event(priv
->fsm
, DEV_EVENT_RXDOWN
, dev
);
821 fsm_newstate(fi
, CTC_STATE_TXERR
);
822 fsm_event(priv
->fsm
, DEV_EVENT_TXDOWN
, dev
);
827 * Restart a channel after an error.
829 * fi An instance of a channel statemachine.
830 * event The event, just happened.
831 * arg Generic pointer, casted from channel * upon call.
833 static void ctcm_chx_restart(fsm_instance
*fi
, int event
, void *arg
)
835 struct channel
*ch
= arg
;
836 struct net_device
*dev
= ch
->netdev
;
837 unsigned long saveflags
= 0;
841 CTCM_DBF_TEXT(TRACE
, CTC_DBF_NOTICE
, __FUNCTION__
);
842 fsm_deltimer(&ch
->timer
);
843 ctcm_pr_debug("%s: %s channel restart\n", dev
->name
,
844 (CHANNEL_DIRECTION(ch
->flags
) == READ
) ? "RX" : "TX");
845 fsm_addtimer(&ch
->timer
, CTCM_TIME_5_SEC
, CTC_EVENT_TIMER
, ch
);
846 oldstate
= fsm_getstate(fi
);
847 fsm_newstate(fi
, CTC_STATE_STARTWAIT
);
848 if (event
== CTC_EVENT_TIMER
) /* only for timer not yet locked */
849 spin_lock_irqsave(get_ccwdev_lock(ch
->cdev
), saveflags
);
850 /* Such conditional locking is a known problem for
851 * sparse because its undeterministic in static view.
852 * Warnings should be ignored here. */
853 rc
= ccw_device_halt(ch
->cdev
, (unsigned long)ch
);
854 if (event
== CTC_EVENT_TIMER
)
855 spin_unlock_irqrestore(get_ccwdev_lock(ch
->cdev
), saveflags
);
858 fsm_deltimer(&ch
->timer
);
859 fsm_newstate(fi
, oldstate
);
861 ctcm_ccw_check_rc(ch
, rc
, "HaltIO in ctcm_chx_restart");
866 * Handle error during RX initial handshake (exchange of
867 * 0-length block header)
869 * fi An instance of a channel statemachine.
870 * event The event, just happened.
871 * arg Generic pointer, casted from channel * upon call.
873 static void ctcm_chx_rxiniterr(fsm_instance
*fi
, int event
, void *arg
)
875 struct channel
*ch
= arg
;
876 struct net_device
*dev
= ch
->netdev
;
877 struct ctcm_priv
*priv
= dev
->priv
;
879 CTCM_DBF_TEXT(SETUP
, 3, __FUNCTION__
);
880 if (event
== CTC_EVENT_TIMER
) {
882 /* TODO : check if MPC deletes timer somewhere */
883 fsm_deltimer(&ch
->timer
);
884 ctcm_pr_debug("%s: Timeout during RX init handshake\n",
887 ctcm_chx_restart(fi
, event
, arg
);
889 fsm_newstate(fi
, CTC_STATE_RXERR
);
890 fsm_event(priv
->fsm
, DEV_EVENT_RXDOWN
, dev
);
893 ctcm_pr_warn("%s: Error during RX init handshake\n", dev
->name
);
897 * Notify device statemachine if we gave up initialization
900 * fi An instance of a channel statemachine.
901 * event The event, just happened.
902 * arg Generic pointer, casted from channel * upon call.
904 static void ctcm_chx_rxinitfail(fsm_instance
*fi
, int event
, void *arg
)
906 struct channel
*ch
= arg
;
907 struct net_device
*dev
= ch
->netdev
;
908 struct ctcm_priv
*priv
= dev
->priv
;
910 CTCM_DBF_TEXT(SETUP
, 3, __FUNCTION__
);
911 fsm_newstate(fi
, CTC_STATE_RXERR
);
912 ctcm_pr_warn("%s: RX busy. Initialization failed\n", dev
->name
);
913 fsm_event(priv
->fsm
, DEV_EVENT_RXDOWN
, dev
);
917 * Handle RX Unit check remote reset (remote disconnected)
919 * fi An instance of a channel statemachine.
920 * event The event, just happened.
921 * arg Generic pointer, casted from channel * upon call.
923 static void ctcm_chx_rxdisc(fsm_instance
*fi
, int event
, void *arg
)
925 struct channel
*ch
= arg
;
927 struct net_device
*dev
= ch
->netdev
;
928 struct ctcm_priv
*priv
= dev
->priv
;
930 CTCM_DBF_DEV_NAME(TRACE
, dev
, "Got remote disconnect, re-initializing");
931 fsm_deltimer(&ch
->timer
);
933 ctcm_pr_debug("%s: Got remote disconnect, "
934 "re-initializing ...\n", dev
->name
);
936 * Notify device statemachine
938 fsm_event(priv
->fsm
, DEV_EVENT_RXDOWN
, dev
);
939 fsm_event(priv
->fsm
, DEV_EVENT_TXDOWN
, dev
);
941 fsm_newstate(fi
, CTC_STATE_DTERM
);
942 ch2
= priv
->channel
[WRITE
];
943 fsm_newstate(ch2
->fsm
, CTC_STATE_DTERM
);
945 ccw_device_halt(ch
->cdev
, (unsigned long)ch
);
946 ccw_device_halt(ch2
->cdev
, (unsigned long)ch2
);
950 * Handle error during TX channel initialization.
952 * fi An instance of a channel statemachine.
953 * event The event, just happened.
954 * arg Generic pointer, casted from channel * upon call.
956 static void ctcm_chx_txiniterr(fsm_instance
*fi
, int event
, void *arg
)
958 struct channel
*ch
= arg
;
959 struct net_device
*dev
= ch
->netdev
;
960 struct ctcm_priv
*priv
= dev
->priv
;
962 if (event
== CTC_EVENT_TIMER
) {
963 fsm_deltimer(&ch
->timer
);
964 CTCM_DBF_DEV_NAME(ERROR
, dev
,
965 "Timeout during TX init handshake");
967 ctcm_chx_restart(fi
, event
, arg
);
969 fsm_newstate(fi
, CTC_STATE_TXERR
);
970 fsm_event(priv
->fsm
, DEV_EVENT_TXDOWN
, dev
);
973 CTCM_DBF_TEXT_(ERROR
, CTC_DBF_ERROR
,
974 "%s : %s error during channel setup state=%s",
975 dev
->name
, ctc_ch_event_names
[event
],
976 fsm_getstate_str(fi
));
978 ctcm_pr_warn("%s: Error during TX init handshake\n", dev
->name
);
983 * Handle TX timeout by retrying operation.
985 * fi An instance of a channel statemachine.
986 * event The event, just happened.
987 * arg Generic pointer, casted from channel * upon call.
989 static void ctcm_chx_txretry(fsm_instance
*fi
, int event
, void *arg
)
991 struct channel
*ch
= arg
;
992 struct net_device
*dev
= ch
->netdev
;
993 struct ctcm_priv
*priv
= dev
->priv
;
997 ctcm_pr_debug("ctcmpc enter: %s(): cp=%i ch=0x%p id=%s\n",
998 __FUNCTION__
, smp_processor_id(), ch
, ch
->id
);
1000 fsm_deltimer(&ch
->timer
);
1001 if (ch
->retry
++ > 3) {
1002 struct mpc_group
*gptr
= priv
->mpcg
;
1003 ctcm_pr_debug("%s: TX retry failed, restarting channel\n",
1005 fsm_event(priv
->fsm
, DEV_EVENT_TXDOWN
, dev
);
1006 /* call restart if not MPC or if MPC and mpcg fsm is ready.
1007 use gptr as mpc indicator */
1008 if (!(gptr
&& (fsm_getstate(gptr
->fsm
) != MPCG_STATE_READY
)))
1009 ctcm_chx_restart(fi
, event
, arg
);
1013 ctcm_pr_debug("%s: TX retry %d\n", dev
->name
, ch
->retry
);
1014 skb
= skb_peek(&ch
->io_queue
);
1017 unsigned long saveflags
= 0;
1018 clear_normalized_cda(&ch
->ccw
[4]);
1019 ch
->ccw
[4].count
= skb
->len
;
1020 if (set_normalized_cda(&ch
->ccw
[4], skb
->data
)) {
1021 ctcm_pr_debug("%s: IDAL alloc failed, chan restart\n",
1023 fsm_event(priv
->fsm
, DEV_EVENT_TXDOWN
, dev
);
1024 ctcm_chx_restart(fi
, event
, arg
);
1027 fsm_addtimer(&ch
->timer
, 1000, CTC_EVENT_TIMER
, ch
);
1028 if (event
== CTC_EVENT_TIMER
) /* for TIMER not yet locked */
1029 spin_lock_irqsave(get_ccwdev_lock(ch
->cdev
), saveflags
);
1030 /* Such conditional locking is a known problem for
1031 * sparse because its undeterministic in static view.
1032 * Warnings should be ignored here. */
1034 ctcmpc_dumpit((char *)&ch
->ccw
[3],
1035 sizeof(struct ccw1
) * 3);
1037 rc
= ccw_device_start(ch
->cdev
, &ch
->ccw
[3],
1038 (unsigned long)ch
, 0xff, 0);
1039 if (event
== CTC_EVENT_TIMER
)
1040 spin_unlock_irqrestore(get_ccwdev_lock(ch
->cdev
),
1043 fsm_deltimer(&ch
->timer
);
1044 ctcm_ccw_check_rc(ch
, rc
, "TX in chx_txretry");
1045 ctcm_purge_skb_queue(&ch
->io_queue
);
1053 * Handle fatal errors during an I/O command.
1055 * fi An instance of a channel statemachine.
1056 * event The event, just happened.
1057 * arg Generic pointer, casted from channel * upon call.
1059 static void ctcm_chx_iofatal(fsm_instance
*fi
, int event
, void *arg
)
1061 struct channel
*ch
= arg
;
1062 struct net_device
*dev
= ch
->netdev
;
1063 struct ctcm_priv
*priv
= dev
->priv
;
1065 CTCM_DBF_TEXT(TRACE
, 3, __FUNCTION__
);
1066 fsm_deltimer(&ch
->timer
);
1067 ctcm_pr_warn("%s %s : unrecoverable channel error\n",
1068 CTC_DRIVER_NAME
, dev
->name
);
1070 priv
->stats
.tx_dropped
++;
1071 priv
->stats
.tx_errors
++;
1074 if (CHANNEL_DIRECTION(ch
->flags
) == READ
) {
1075 ctcm_pr_debug("%s: RX I/O error\n", dev
->name
);
1076 fsm_newstate(fi
, CTC_STATE_RXERR
);
1077 fsm_event(priv
->fsm
, DEV_EVENT_RXDOWN
, dev
);
1079 ctcm_pr_debug("%s: TX I/O error\n", dev
->name
);
1080 fsm_newstate(fi
, CTC_STATE_TXERR
);
1081 fsm_event(priv
->fsm
, DEV_EVENT_TXDOWN
, dev
);
1086 * The ctcm statemachine for a channel.
1088 const fsm_node ch_fsm
[] = {
1089 { CTC_STATE_STOPPED
, CTC_EVENT_STOP
, ctcm_action_nop
},
1090 { CTC_STATE_STOPPED
, CTC_EVENT_START
, ctcm_chx_start
},
1091 { CTC_STATE_STOPPED
, CTC_EVENT_FINSTAT
, ctcm_action_nop
},
1092 { CTC_STATE_STOPPED
, CTC_EVENT_MC_FAIL
, ctcm_action_nop
},
1094 { CTC_STATE_NOTOP
, CTC_EVENT_STOP
, ctcm_chx_stop
},
1095 { CTC_STATE_NOTOP
, CTC_EVENT_START
, ctcm_action_nop
},
1096 { CTC_STATE_NOTOP
, CTC_EVENT_FINSTAT
, ctcm_action_nop
},
1097 { CTC_STATE_NOTOP
, CTC_EVENT_MC_FAIL
, ctcm_action_nop
},
1098 { CTC_STATE_NOTOP
, CTC_EVENT_MC_GOOD
, ctcm_chx_start
},
1100 { CTC_STATE_STARTWAIT
, CTC_EVENT_STOP
, ctcm_chx_haltio
},
1101 { CTC_STATE_STARTWAIT
, CTC_EVENT_START
, ctcm_action_nop
},
1102 { CTC_STATE_STARTWAIT
, CTC_EVENT_FINSTAT
, ctcm_chx_setmode
},
1103 { CTC_STATE_STARTWAIT
, CTC_EVENT_TIMER
, ctcm_chx_setuperr
},
1104 { CTC_STATE_STARTWAIT
, CTC_EVENT_IO_ENODEV
, ctcm_chx_iofatal
},
1105 { CTC_STATE_STARTWAIT
, CTC_EVENT_MC_FAIL
, ctcm_chx_fail
},
1107 { CTC_STATE_STARTRETRY
, CTC_EVENT_STOP
, ctcm_chx_haltio
},
1108 { CTC_STATE_STARTRETRY
, CTC_EVENT_TIMER
, ctcm_chx_setmode
},
1109 { CTC_STATE_STARTRETRY
, CTC_EVENT_FINSTAT
, ctcm_action_nop
},
1110 { CTC_STATE_STARTRETRY
, CTC_EVENT_MC_FAIL
, ctcm_chx_fail
},
1112 { CTC_STATE_SETUPWAIT
, CTC_EVENT_STOP
, ctcm_chx_haltio
},
1113 { CTC_STATE_SETUPWAIT
, CTC_EVENT_START
, ctcm_action_nop
},
1114 { CTC_STATE_SETUPWAIT
, CTC_EVENT_FINSTAT
, chx_firstio
},
1115 { CTC_STATE_SETUPWAIT
, CTC_EVENT_UC_RCRESET
, ctcm_chx_setuperr
},
1116 { CTC_STATE_SETUPWAIT
, CTC_EVENT_UC_RSRESET
, ctcm_chx_setuperr
},
1117 { CTC_STATE_SETUPWAIT
, CTC_EVENT_TIMER
, ctcm_chx_setmode
},
1118 { CTC_STATE_SETUPWAIT
, CTC_EVENT_IO_ENODEV
, ctcm_chx_iofatal
},
1119 { CTC_STATE_SETUPWAIT
, CTC_EVENT_MC_FAIL
, ctcm_chx_fail
},
1121 { CTC_STATE_RXINIT
, CTC_EVENT_STOP
, ctcm_chx_haltio
},
1122 { CTC_STATE_RXINIT
, CTC_EVENT_START
, ctcm_action_nop
},
1123 { CTC_STATE_RXINIT
, CTC_EVENT_FINSTAT
, chx_rxidle
},
1124 { CTC_STATE_RXINIT
, CTC_EVENT_UC_RCRESET
, ctcm_chx_rxiniterr
},
1125 { CTC_STATE_RXINIT
, CTC_EVENT_UC_RSRESET
, ctcm_chx_rxiniterr
},
1126 { CTC_STATE_RXINIT
, CTC_EVENT_TIMER
, ctcm_chx_rxiniterr
},
1127 { CTC_STATE_RXINIT
, CTC_EVENT_ATTNBUSY
, ctcm_chx_rxinitfail
},
1128 { CTC_STATE_RXINIT
, CTC_EVENT_IO_ENODEV
, ctcm_chx_iofatal
},
1129 { CTC_STATE_RXINIT
, CTC_EVENT_UC_ZERO
, chx_firstio
},
1130 { CTC_STATE_RXINIT
, CTC_EVENT_MC_FAIL
, ctcm_chx_fail
},
1132 { CTC_STATE_RXIDLE
, CTC_EVENT_STOP
, ctcm_chx_haltio
},
1133 { CTC_STATE_RXIDLE
, CTC_EVENT_START
, ctcm_action_nop
},
1134 { CTC_STATE_RXIDLE
, CTC_EVENT_FINSTAT
, chx_rx
},
1135 { CTC_STATE_RXIDLE
, CTC_EVENT_UC_RCRESET
, ctcm_chx_rxdisc
},
1136 { CTC_STATE_RXIDLE
, CTC_EVENT_IO_ENODEV
, ctcm_chx_iofatal
},
1137 { CTC_STATE_RXIDLE
, CTC_EVENT_MC_FAIL
, ctcm_chx_fail
},
1138 { CTC_STATE_RXIDLE
, CTC_EVENT_UC_ZERO
, chx_rx
},
1140 { CTC_STATE_TXINIT
, CTC_EVENT_STOP
, ctcm_chx_haltio
},
1141 { CTC_STATE_TXINIT
, CTC_EVENT_START
, ctcm_action_nop
},
1142 { CTC_STATE_TXINIT
, CTC_EVENT_FINSTAT
, ctcm_chx_txidle
},
1143 { CTC_STATE_TXINIT
, CTC_EVENT_UC_RCRESET
, ctcm_chx_txiniterr
},
1144 { CTC_STATE_TXINIT
, CTC_EVENT_UC_RSRESET
, ctcm_chx_txiniterr
},
1145 { CTC_STATE_TXINIT
, CTC_EVENT_TIMER
, ctcm_chx_txiniterr
},
1146 { CTC_STATE_TXINIT
, CTC_EVENT_IO_ENODEV
, ctcm_chx_iofatal
},
1147 { CTC_STATE_TXINIT
, CTC_EVENT_MC_FAIL
, ctcm_chx_fail
},
1149 { CTC_STATE_TXIDLE
, CTC_EVENT_STOP
, ctcm_chx_haltio
},
1150 { CTC_STATE_TXIDLE
, CTC_EVENT_START
, ctcm_action_nop
},
1151 { CTC_STATE_TXIDLE
, CTC_EVENT_FINSTAT
, chx_firstio
},
1152 { CTC_STATE_TXIDLE
, CTC_EVENT_UC_RCRESET
, ctcm_action_nop
},
1153 { CTC_STATE_TXIDLE
, CTC_EVENT_UC_RSRESET
, ctcm_action_nop
},
1154 { CTC_STATE_TXIDLE
, CTC_EVENT_IO_ENODEV
, ctcm_chx_iofatal
},
1155 { CTC_STATE_TXIDLE
, CTC_EVENT_MC_FAIL
, ctcm_chx_fail
},
1157 { CTC_STATE_TERM
, CTC_EVENT_STOP
, ctcm_action_nop
},
1158 { CTC_STATE_TERM
, CTC_EVENT_START
, ctcm_chx_restart
},
1159 { CTC_STATE_TERM
, CTC_EVENT_FINSTAT
, ctcm_chx_stopped
},
1160 { CTC_STATE_TERM
, CTC_EVENT_UC_RCRESET
, ctcm_action_nop
},
1161 { CTC_STATE_TERM
, CTC_EVENT_UC_RSRESET
, ctcm_action_nop
},
1162 { CTC_STATE_TERM
, CTC_EVENT_MC_FAIL
, ctcm_chx_fail
},
1164 { CTC_STATE_DTERM
, CTC_EVENT_STOP
, ctcm_chx_haltio
},
1165 { CTC_STATE_DTERM
, CTC_EVENT_START
, ctcm_chx_restart
},
1166 { CTC_STATE_DTERM
, CTC_EVENT_FINSTAT
, ctcm_chx_setmode
},
1167 { CTC_STATE_DTERM
, CTC_EVENT_UC_RCRESET
, ctcm_action_nop
},
1168 { CTC_STATE_DTERM
, CTC_EVENT_UC_RSRESET
, ctcm_action_nop
},
1169 { CTC_STATE_DTERM
, CTC_EVENT_MC_FAIL
, ctcm_chx_fail
},
1171 { CTC_STATE_TX
, CTC_EVENT_STOP
, ctcm_chx_haltio
},
1172 { CTC_STATE_TX
, CTC_EVENT_START
, ctcm_action_nop
},
1173 { CTC_STATE_TX
, CTC_EVENT_FINSTAT
, chx_txdone
},
1174 { CTC_STATE_TX
, CTC_EVENT_UC_RCRESET
, ctcm_chx_txretry
},
1175 { CTC_STATE_TX
, CTC_EVENT_UC_RSRESET
, ctcm_chx_txretry
},
1176 { CTC_STATE_TX
, CTC_EVENT_TIMER
, ctcm_chx_txretry
},
1177 { CTC_STATE_TX
, CTC_EVENT_IO_ENODEV
, ctcm_chx_iofatal
},
1178 { CTC_STATE_TX
, CTC_EVENT_MC_FAIL
, ctcm_chx_fail
},
1180 { CTC_STATE_RXERR
, CTC_EVENT_STOP
, ctcm_chx_haltio
},
1181 { CTC_STATE_TXERR
, CTC_EVENT_STOP
, ctcm_chx_haltio
},
1182 { CTC_STATE_TXERR
, CTC_EVENT_MC_FAIL
, ctcm_chx_fail
},
1183 { CTC_STATE_RXERR
, CTC_EVENT_MC_FAIL
, ctcm_chx_fail
},
1186 int ch_fsm_len
= ARRAY_SIZE(ch_fsm
);
1189 * MPC actions for mpc channel statemachine
1190 * handling of MPC protocol requires extra
1191 * statemachine and actions which are prefixed ctcmpc_ .
1192 * The ctc_ch_states and ctc_ch_state_names,
1193 * ctc_ch_events and ctc_ch_event_names share the ctcm definitions
1194 * which are expanded by some elements.
1198 * Actions for mpc channel statemachine.
1202 * Normal data has been send. Free the corresponding
1203 * skb (it's in io_queue), reset dev->tbusy and
1204 * revert to idle state.
1206 * fi An instance of a channel statemachine.
1207 * event The event, just happened.
1208 * arg Generic pointer, casted from channel * upon call.
1210 static void ctcmpc_chx_txdone(fsm_instance
*fi
, int event
, void *arg
)
1212 struct channel
*ch
= arg
;
1213 struct net_device
*dev
= ch
->netdev
;
1214 struct ctcm_priv
*priv
= dev
->priv
;
1215 struct mpc_group
*grp
= priv
->mpcg
;
1216 struct sk_buff
*skb
;
1219 struct timespec done_stamp
;
1221 unsigned long duration
;
1222 struct sk_buff
*peekskb
;
1224 struct th_header
*header
;
1225 struct pdu
*p_header
;
1228 ctcm_pr_debug("%s cp:%i enter: %s()\n",
1229 dev
->name
, smp_processor_id(), __FUNCTION__
);
1231 done_stamp
= current_kernel_time(); /* xtime */
1232 duration
= (done_stamp
.tv_sec
- ch
->prof
.send_stamp
.tv_sec
) * 1000000
1233 + (done_stamp
.tv_nsec
- ch
->prof
.send_stamp
.tv_nsec
) / 1000;
1234 if (duration
> ch
->prof
.tx_time
)
1235 ch
->prof
.tx_time
= duration
;
1237 if (ch
->irb
->scsw
.count
!= 0)
1238 ctcm_pr_debug("%s: TX not complete, remaining %d bytes\n",
1239 dev
->name
, ch
->irb
->scsw
.count
);
1240 fsm_deltimer(&ch
->timer
);
1241 while ((skb
= skb_dequeue(&ch
->io_queue
))) {
1242 priv
->stats
.tx_packets
++;
1243 priv
->stats
.tx_bytes
+= skb
->len
- TH_HEADER_LENGTH
;
1245 priv
->stats
.tx_bytes
+= 2;
1248 atomic_dec(&skb
->users
);
1249 dev_kfree_skb_irq(skb
);
1251 spin_lock(&ch
->collect_lock
);
1252 clear_normalized_cda(&ch
->ccw
[4]);
1254 if ((ch
->collect_len
<= 0) || (grp
->in_sweep
!= 0)) {
1255 spin_unlock(&ch
->collect_lock
);
1256 fsm_newstate(fi
, CTC_STATE_TXIDLE
);
1260 if (ctcm_checkalloc_buffer(ch
)) {
1261 spin_unlock(&ch
->collect_lock
);
1264 ch
->trans_skb
->data
= ch
->trans_skb_data
;
1265 skb_reset_tail_pointer(ch
->trans_skb
);
1266 ch
->trans_skb
->len
= 0;
1267 if (ch
->prof
.maxmulti
< (ch
->collect_len
+ TH_HEADER_LENGTH
))
1268 ch
->prof
.maxmulti
= ch
->collect_len
+ TH_HEADER_LENGTH
;
1269 if (ch
->prof
.maxcqueue
< skb_queue_len(&ch
->collect_queue
))
1270 ch
->prof
.maxcqueue
= skb_queue_len(&ch
->collect_queue
);
1274 ctcm_pr_debug("ctcmpc: %s() building "
1275 "trans_skb from collect_q \n", __FUNCTION__
);
1277 data_space
= grp
->group_max_buflen
- TH_HEADER_LENGTH
;
1280 ctcm_pr_debug("ctcmpc: %s() building trans_skb from collect_q"
1281 " data_space:%04x\n", __FUNCTION__
, data_space
);
1283 while ((skb
= skb_dequeue(&ch
->collect_queue
))) {
1284 memcpy(skb_put(ch
->trans_skb
, skb
->len
), skb
->data
, skb
->len
);
1285 p_header
= (struct pdu
*)
1286 (skb_tail_pointer(ch
->trans_skb
) - skb
->len
);
1287 p_header
->pdu_flag
= 0x00;
1288 if (skb
->protocol
== ntohs(ETH_P_SNAP
))
1289 p_header
->pdu_flag
|= 0x60;
1291 p_header
->pdu_flag
|= 0x20;
1293 if (do_debug_data
) {
1294 ctcm_pr_debug("ctcmpc: %s()trans_skb len:%04x \n",
1295 __FUNCTION__
, ch
->trans_skb
->len
);
1296 ctcm_pr_debug("ctcmpc: %s() pdu header and data"
1297 " for up to 32 bytes sent to vtam\n",
1299 ctcmpc_dumpit((char *)p_header
,
1300 min_t(int, skb
->len
, 32));
1302 ch
->collect_len
-= skb
->len
;
1303 data_space
-= skb
->len
;
1304 priv
->stats
.tx_packets
++;
1305 priv
->stats
.tx_bytes
+= skb
->len
;
1306 atomic_dec(&skb
->users
);
1307 dev_kfree_skb_any(skb
);
1308 peekskb
= skb_peek(&ch
->collect_queue
);
1309 if (peekskb
->len
> data_space
)
1313 /* p_header points to the last one we handled */
1315 p_header
->pdu_flag
|= PDU_LAST
; /*Say it's the last one*/
1316 header
= kzalloc(TH_HEADER_LENGTH
, gfp_type());
1319 printk(KERN_WARNING
"ctcmpc: OUT OF MEMORY IN %s()"
1320 ": Data Lost \n", __FUNCTION__
);
1321 spin_unlock(&ch
->collect_lock
);
1322 fsm_event(priv
->mpcg
->fsm
, MPCG_EVENT_INOP
, dev
);
1326 header
->th_ch_flag
= TH_HAS_PDU
; /* Normal data */
1328 header
->th_seq_num
= ch
->th_seq_num
;
1331 ctcm_pr_debug("%s: ToVTAM_th_seq= %08x\n" ,
1332 __FUNCTION__
, ch
->th_seq_num
);
1334 memcpy(skb_push(ch
->trans_skb
, TH_HEADER_LENGTH
), header
,
1335 TH_HEADER_LENGTH
); /* put the TH on the packet */
1339 if (do_debug_data
) {
1340 ctcm_pr_debug("ctcmpc: %s()trans_skb len:%04x \n",
1341 __FUNCTION__
, ch
->trans_skb
->len
);
1343 ctcm_pr_debug("ctcmpc: %s() up-to-50 bytes of trans_skb "
1344 "data to vtam from collect_q\n", __FUNCTION__
);
1345 ctcmpc_dumpit((char *)ch
->trans_skb
->data
,
1346 min_t(int, ch
->trans_skb
->len
, 50));
1349 spin_unlock(&ch
->collect_lock
);
1350 clear_normalized_cda(&ch
->ccw
[1]);
1351 if (set_normalized_cda(&ch
->ccw
[1], ch
->trans_skb
->data
)) {
1352 dev_kfree_skb_any(ch
->trans_skb
);
1353 ch
->trans_skb
= NULL
;
1355 "ctcmpc: %s()CCW failure - data lost\n",
1357 fsm_event(priv
->mpcg
->fsm
, MPCG_EVENT_INOP
, dev
);
1360 ch
->ccw
[1].count
= ch
->trans_skb
->len
;
1361 fsm_addtimer(&ch
->timer
, CTCM_TIME_5_SEC
, CTC_EVENT_TIMER
, ch
);
1362 ch
->prof
.send_stamp
= current_kernel_time(); /* xtime */
1364 ctcmpc_dumpit((char *)&ch
->ccw
[0], sizeof(struct ccw1
) * 3);
1365 rc
= ccw_device_start(ch
->cdev
, &ch
->ccw
[0],
1366 (unsigned long)ch
, 0xff, 0);
1367 ch
->prof
.doios_multi
++;
1369 priv
->stats
.tx_dropped
+= i
;
1370 priv
->stats
.tx_errors
+= i
;
1371 fsm_deltimer(&ch
->timer
);
1372 ctcm_ccw_check_rc(ch
, rc
, "chained TX");
1375 ctcm_clear_busy(dev
);
1376 ctcm_pr_debug("ctcmpc exit: %s %s()\n", dev
->name
, __FUNCTION__
);
1381 * Got normal data, check for sanity, queue it up, allocate new buffer
1382 * trigger bottom half, and initiate next read.
1384 * fi An instance of a channel statemachine.
1385 * event The event, just happened.
1386 * arg Generic pointer, casted from channel * upon call.
1388 static void ctcmpc_chx_rx(fsm_instance
*fi
, int event
, void *arg
)
1390 struct channel
*ch
= arg
;
1391 struct net_device
*dev
= ch
->netdev
;
1392 struct ctcm_priv
*priv
= dev
->priv
;
1393 struct mpc_group
*grp
= priv
->mpcg
;
1394 struct sk_buff
*skb
= ch
->trans_skb
;
1395 struct sk_buff
*new_skb
;
1396 unsigned long saveflags
= 0; /* avoids compiler warning */
1397 int len
= ch
->max_bufsize
- ch
->irb
->scsw
.count
;
1399 if (do_debug_data
) {
1400 CTCM_DBF_TEXT_(TRACE
, CTC_DBF_DEBUG
, "mpc_ch_rx %s cp:%i %s\n",
1401 dev
->name
, smp_processor_id(), ch
->id
);
1402 CTCM_DBF_TEXT_(TRACE
, CTC_DBF_DEBUG
, "mpc_ch_rx: maxbuf: %04x "
1403 "len: %04x\n", ch
->max_bufsize
, len
);
1405 fsm_deltimer(&ch
->timer
);
1408 ctcm_pr_debug("ctcmpc exit: %s() TRANS_SKB = NULL \n",
1413 if (len
< TH_HEADER_LENGTH
) {
1414 ctcm_pr_info("%s: got packet with invalid length %d\n",
1416 priv
->stats
.rx_dropped
++;
1417 priv
->stats
.rx_length_errors
++;
1419 /* must have valid th header or game over */
1420 __u32 block_len
= len
;
1421 len
= TH_HEADER_LENGTH
+ XID2_LENGTH
+ 4;
1422 new_skb
= __dev_alloc_skb(ch
->max_bufsize
, GFP_ATOMIC
);
1424 if (new_skb
== NULL
) {
1425 printk(KERN_INFO
"ctcmpc:%s() NEW_SKB = NULL\n",
1427 printk(KERN_WARNING
"ctcmpc: %s() MEMORY ALLOC FAILED"
1428 " - DATA LOST - MPC FAILED\n",
1430 fsm_event(priv
->mpcg
->fsm
, MPCG_EVENT_INOP
, dev
);
1433 switch (fsm_getstate(grp
->fsm
)) {
1434 case MPCG_STATE_RESET
:
1435 case MPCG_STATE_INOP
:
1436 dev_kfree_skb_any(new_skb
);
1438 case MPCG_STATE_FLOWC
:
1439 case MPCG_STATE_READY
:
1440 memcpy(skb_put(new_skb
, block_len
),
1441 skb
->data
, block_len
);
1442 skb_queue_tail(&ch
->io_queue
, new_skb
);
1443 tasklet_schedule(&ch
->ch_tasklet
);
1446 memcpy(skb_put(new_skb
, len
), skb
->data
, len
);
1447 skb_queue_tail(&ch
->io_queue
, new_skb
);
1448 tasklet_hi_schedule(&ch
->ch_tasklet
);
1454 switch (fsm_getstate(grp
->fsm
)) {
1456 case MPCG_STATE_FLOWC
:
1457 case MPCG_STATE_READY
:
1458 if (ctcm_checkalloc_buffer(ch
))
1460 ch
->trans_skb
->data
= ch
->trans_skb_data
;
1461 skb_reset_tail_pointer(ch
->trans_skb
);
1462 ch
->trans_skb
->len
= 0;
1463 ch
->ccw
[1].count
= ch
->max_bufsize
;
1465 ctcmpc_dumpit((char *)&ch
->ccw
[0],
1466 sizeof(struct ccw1
) * 3);
1470 get_ccwdev_lock(ch
->cdev
), saveflags
);
1471 rc
= ccw_device_start(ch
->cdev
, &ch
->ccw
[0],
1472 (unsigned long)ch
, 0xff, 0);
1473 if (dolock
) /* see remark about conditional locking */
1474 spin_unlock_irqrestore(
1475 get_ccwdev_lock(ch
->cdev
), saveflags
);
1477 ctcm_ccw_check_rc(ch
, rc
, "normal RX");
1483 ctcm_pr_debug("ctcmpc exit : %s %s(): ch=0x%p id=%s\n",
1484 dev
->name
, __FUNCTION__
, ch
, ch
->id
);
1489 * Initialize connection by sending a __u16 of value 0.
1491 * fi An instance of a channel statemachine.
1492 * event The event, just happened.
1493 * arg Generic pointer, casted from channel * upon call.
1495 static void ctcmpc_chx_firstio(fsm_instance
*fi
, int event
, void *arg
)
1497 struct channel
*ch
= arg
;
1498 struct net_device
*dev
= ch
->netdev
;
1499 struct ctcm_priv
*priv
= dev
->priv
;
1502 struct mpc_group
*gptr
= priv
->mpcg
;
1503 ctcm_pr_debug("ctcmpc enter: %s(): ch=0x%p id=%s\n",
1504 __FUNCTION__
, ch
, ch
->id
);
1505 ctcm_pr_debug("%s() %s chstate:%i grpstate:%i chprotocol:%i\n",
1506 __FUNCTION__
, ch
->id
, fsm_getstate(fi
),
1507 fsm_getstate(gptr
->fsm
), ch
->protocol
);
1509 if (fsm_getstate(fi
) == CTC_STATE_TXIDLE
)
1510 MPC_DBF_DEV_NAME(TRACE
, dev
, "remote side issued READ? ");
1512 fsm_deltimer(&ch
->timer
);
1513 if (ctcm_checkalloc_buffer(ch
))
1516 switch (fsm_getstate(fi
)) {
1517 case CTC_STATE_STARTRETRY
:
1518 case CTC_STATE_SETUPWAIT
:
1519 if (CHANNEL_DIRECTION(ch
->flags
) == READ
) {
1520 ctcmpc_chx_rxidle(fi
, event
, arg
);
1522 fsm_newstate(fi
, CTC_STATE_TXIDLE
);
1523 fsm_event(priv
->fsm
, DEV_EVENT_TXUP
, dev
);
1530 fsm_newstate(fi
, (CHANNEL_DIRECTION(ch
->flags
) == READ
)
1531 ? CTC_STATE_RXINIT
: CTC_STATE_TXINIT
);
1535 ctcm_pr_debug("ctcmpc exit : %s(): ch=0x%p id=%s\n",
1536 __FUNCTION__
, ch
, ch
->id
);
1541 * Got initial data, check it. If OK,
1542 * notify device statemachine that we are up and
1545 * fi An instance of a channel statemachine.
1546 * event The event, just happened.
1547 * arg Generic pointer, casted from channel * upon call.
1549 void ctcmpc_chx_rxidle(fsm_instance
*fi
, int event
, void *arg
)
1551 struct channel
*ch
= arg
;
1552 struct net_device
*dev
= ch
->netdev
;
1553 struct ctcm_priv
*priv
= dev
->priv
;
1554 struct mpc_group
*grp
= priv
->mpcg
;
1556 unsigned long saveflags
= 0; /* avoids compiler warning */
1558 fsm_deltimer(&ch
->timer
);
1559 ctcm_pr_debug("%s cp:%i enter: %s()\n",
1560 dev
->name
, smp_processor_id(), __FUNCTION__
);
1562 ctcm_pr_debug("%s() %s chstate:%i grpstate:%i\n",
1563 __FUNCTION__
, ch
->id
,
1564 fsm_getstate(fi
), fsm_getstate(grp
->fsm
));
1566 fsm_newstate(fi
, CTC_STATE_RXIDLE
);
1567 /* XID processing complete */
1569 switch (fsm_getstate(grp
->fsm
)) {
1570 case MPCG_STATE_FLOWC
:
1571 case MPCG_STATE_READY
:
1572 if (ctcm_checkalloc_buffer(ch
))
1574 ch
->trans_skb
->data
= ch
->trans_skb_data
;
1575 skb_reset_tail_pointer(ch
->trans_skb
);
1576 ch
->trans_skb
->len
= 0;
1577 ch
->ccw
[1].count
= ch
->max_bufsize
;
1579 ctcmpc_dumpit((char *)&ch
->ccw
[0],
1580 sizeof(struct ccw1
) * 3);
1581 if (event
== CTC_EVENT_START
)
1582 /* see remark about conditional locking */
1583 spin_lock_irqsave(get_ccwdev_lock(ch
->cdev
), saveflags
);
1584 rc
= ccw_device_start(ch
->cdev
, &ch
->ccw
[0],
1585 (unsigned long)ch
, 0xff, 0);
1586 if (event
== CTC_EVENT_START
)
1587 spin_unlock_irqrestore(
1588 get_ccwdev_lock(ch
->cdev
), saveflags
);
1590 fsm_newstate(fi
, CTC_STATE_RXINIT
);
1591 ctcm_ccw_check_rc(ch
, rc
, "initial RX");
1599 fsm_event(priv
->fsm
, DEV_EVENT_RXUP
, dev
);
1602 ctcm_pr_debug("ctcmpc exit: %s %s()\n",
1603 dev
->name
, __FUNCTION__
);
1608 * ctcmpc channel FSM action
1609 * called from several points in ctcmpc_ch_fsm
1612 static void ctcmpc_chx_attn(fsm_instance
*fsm
, int event
, void *arg
)
1614 struct channel
*ch
= arg
;
1615 struct net_device
*dev
= ch
->netdev
;
1616 struct ctcm_priv
*priv
= dev
->priv
;
1617 struct mpc_group
*grp
= priv
->mpcg
;
1620 ctcm_pr_debug("ctcmpc enter: %s(): cp=%i ch=0x%p id=%s"
1621 "GrpState:%s ChState:%s\n",
1622 __FUNCTION__
, smp_processor_id(), ch
, ch
->id
,
1623 fsm_getstate_str(grp
->fsm
),
1624 fsm_getstate_str(ch
->fsm
));
1627 switch (fsm_getstate(grp
->fsm
)) {
1628 case MPCG_STATE_XID2INITW
:
1629 /* ok..start yside xid exchanges */
1630 if (!ch
->in_mpcgroup
)
1632 if (fsm_getstate(ch
->fsm
) == CH_XID0_PENDING
) {
1633 fsm_deltimer(&grp
->timer
);
1634 fsm_addtimer(&grp
->timer
,
1635 MPC_XID_TIMEOUT_VALUE
,
1636 MPCG_EVENT_TIMER
, dev
);
1637 fsm_event(grp
->fsm
, MPCG_EVENT_XID0DO
, ch
);
1639 } else if (fsm_getstate(ch
->fsm
) < CH_XID7_PENDING1
)
1640 /* attn rcvd before xid0 processed via bh */
1641 fsm_newstate(ch
->fsm
, CH_XID7_PENDING1
);
1643 case MPCG_STATE_XID2INITX
:
1644 case MPCG_STATE_XID0IOWAIT
:
1645 case MPCG_STATE_XID0IOWAIX
:
1646 /* attn rcvd before xid0 processed on ch
1647 but mid-xid0 processing for group */
1648 if (fsm_getstate(ch
->fsm
) < CH_XID7_PENDING1
)
1649 fsm_newstate(ch
->fsm
, CH_XID7_PENDING1
);
1651 case MPCG_STATE_XID7INITW
:
1652 case MPCG_STATE_XID7INITX
:
1653 case MPCG_STATE_XID7INITI
:
1654 case MPCG_STATE_XID7INITZ
:
1655 switch (fsm_getstate(ch
->fsm
)) {
1656 case CH_XID7_PENDING
:
1657 fsm_newstate(ch
->fsm
, CH_XID7_PENDING1
);
1659 case CH_XID7_PENDING2
:
1660 fsm_newstate(ch
->fsm
, CH_XID7_PENDING3
);
1663 fsm_event(grp
->fsm
, MPCG_EVENT_XID7DONE
, dev
);
1668 ctcm_pr_debug("ctcmpc exit : %s(): cp=%i ch=0x%p id=%s\n",
1669 __FUNCTION__
, smp_processor_id(), ch
, ch
->id
);
1675 * ctcmpc channel FSM action
1676 * called from one point in ctcmpc_ch_fsm
1679 static void ctcmpc_chx_attnbusy(fsm_instance
*fsm
, int event
, void *arg
)
1681 struct channel
*ch
= arg
;
1682 struct net_device
*dev
= ch
->netdev
;
1683 struct ctcm_priv
*priv
= dev
->priv
;
1684 struct mpc_group
*grp
= priv
->mpcg
;
1686 ctcm_pr_debug("ctcmpc enter: %s %s() %s \nGrpState:%s ChState:%s\n",
1688 __FUNCTION__
, ch
->id
,
1689 fsm_getstate_str(grp
->fsm
),
1690 fsm_getstate_str(ch
->fsm
));
1692 fsm_deltimer(&ch
->timer
);
1694 switch (fsm_getstate(grp
->fsm
)) {
1695 case MPCG_STATE_XID0IOWAIT
:
1696 /* vtam wants to be primary.start yside xid exchanges*/
1697 /* only receive one attn-busy at a time so must not */
1698 /* change state each time */
1699 grp
->changed_side
= 1;
1700 fsm_newstate(grp
->fsm
, MPCG_STATE_XID2INITW
);
1702 case MPCG_STATE_XID2INITW
:
1703 if (grp
->changed_side
== 1) {
1704 grp
->changed_side
= 2;
1707 /* process began via call to establish_conn */
1708 /* so must report failure instead of reverting */
1709 /* back to ready-for-xid passive state */
1710 if (grp
->estconnfunc
)
1712 /* this attnbusy is NOT the result of xside xid */
1713 /* collisions so yside must have been triggered */
1714 /* by an ATTN that was not intended to start XID */
1715 /* processing. Revert back to ready-for-xid and */
1716 /* wait for ATTN interrupt to signal xid start */
1717 if (fsm_getstate(ch
->fsm
) == CH_XID0_INPROGRESS
) {
1718 fsm_newstate(ch
->fsm
, CH_XID0_PENDING
) ;
1719 fsm_deltimer(&grp
->timer
);
1722 fsm_event(grp
->fsm
, MPCG_EVENT_INOP
, dev
);
1724 case MPCG_STATE_XID2INITX
:
1725 /* XID2 was received before ATTN Busy for second
1726 channel.Send yside xid for second channel.
1728 if (grp
->changed_side
== 1) {
1729 grp
->changed_side
= 2;
1732 case MPCG_STATE_XID0IOWAIX
:
1733 case MPCG_STATE_XID7INITW
:
1734 case MPCG_STATE_XID7INITX
:
1735 case MPCG_STATE_XID7INITI
:
1736 case MPCG_STATE_XID7INITZ
:
1738 /* multiple attn-busy indicates too out-of-sync */
1739 /* and they are certainly not being received as part */
1740 /* of valid mpc group negotiations.. */
1741 fsm_event(grp
->fsm
, MPCG_EVENT_INOP
, dev
);
1745 if (grp
->changed_side
== 1) {
1746 fsm_deltimer(&grp
->timer
);
1747 fsm_addtimer(&grp
->timer
, MPC_XID_TIMEOUT_VALUE
,
1748 MPCG_EVENT_TIMER
, dev
);
1750 if (ch
->in_mpcgroup
)
1751 fsm_event(grp
->fsm
, MPCG_EVENT_XID0DO
, ch
);
1753 printk(KERN_WARNING
"ctcmpc: %s() Not all channels have"
1754 " been added to group\n", __FUNCTION__
);
1758 ctcm_pr_debug("ctcmpc exit : %s()%s ch=0x%p id=%s\n",
1759 __FUNCTION__
, dev
->name
, ch
, ch
->id
);
1766 * ctcmpc channel FSM action
1767 * called from several points in ctcmpc_ch_fsm
1770 static void ctcmpc_chx_resend(fsm_instance
*fsm
, int event
, void *arg
)
1772 struct channel
*ch
= arg
;
1773 struct net_device
*dev
= ch
->netdev
;
1774 struct ctcm_priv
*priv
= dev
->priv
;
1775 struct mpc_group
*grp
= priv
->mpcg
;
1777 ctcm_pr_debug("ctcmpc enter: %s %s() %s \nGrpState:%s ChState:%s\n",
1778 dev
->name
, __FUNCTION__
, ch
->id
,
1779 fsm_getstate_str(grp
->fsm
),
1780 fsm_getstate_str(ch
->fsm
));
1782 fsm_event(grp
->fsm
, MPCG_EVENT_XID0DO
, ch
);
1788 * ctcmpc channel FSM action
1789 * called from several points in ctcmpc_ch_fsm
1792 static void ctcmpc_chx_send_sweep(fsm_instance
*fsm
, int event
, void *arg
)
1794 struct channel
*ach
= arg
;
1795 struct net_device
*dev
= ach
->netdev
;
1796 struct ctcm_priv
*priv
= dev
->priv
;
1797 struct mpc_group
*grp
= priv
->mpcg
;
1798 struct channel
*wch
= priv
->channel
[WRITE
];
1799 struct channel
*rch
= priv
->channel
[READ
];
1800 struct sk_buff
*skb
;
1801 struct th_sweep
*header
;
1803 unsigned long saveflags
= 0;
1806 ctcm_pr_debug("ctcmpc enter: %s(): cp=%i ch=0x%p id=%s\n",
1807 __FUNCTION__
, smp_processor_id(), ach
, ach
->id
);
1809 if (grp
->in_sweep
== 0)
1812 if (do_debug_data
) {
1813 ctcm_pr_debug("ctcmpc: %s() 1: ToVTAM_th_seq= %08x\n" ,
1814 __FUNCTION__
, wch
->th_seq_num
);
1815 ctcm_pr_debug("ctcmpc: %s() 1: FromVTAM_th_seq= %08x\n" ,
1816 __FUNCTION__
, rch
->th_seq_num
);
1819 if (fsm_getstate(wch
->fsm
) != CTC_STATE_TXIDLE
) {
1820 /* give the previous IO time to complete */
1821 fsm_addtimer(&wch
->sweep_timer
,
1822 200, CTC_EVENT_RSWEEP_TIMER
, wch
);
1826 skb
= skb_dequeue(&wch
->sweep_queue
);
1830 if (set_normalized_cda(&wch
->ccw
[4], skb
->data
)) {
1832 ctcm_clear_busy_do(dev
);
1833 dev_kfree_skb_any(skb
);
1834 fsm_event(grp
->fsm
, MPCG_EVENT_INOP
, dev
);
1837 atomic_inc(&skb
->users
);
1838 skb_queue_tail(&wch
->io_queue
, skb
);
1841 /* send out the sweep */
1842 wch
->ccw
[4].count
= skb
->len
;
1844 header
= (struct th_sweep
*)skb
->data
;
1845 switch (header
->th
.th_ch_flag
) {
1847 grp
->sweep_req_pend_num
--;
1850 grp
->sweep_rsp_pend_num
--;
1854 header
->sw
.th_last_seq
= wch
->th_seq_num
;
1857 ctcmpc_dumpit((char *)&wch
->ccw
[3], sizeof(struct ccw1
) * 3);
1859 ctcm_pr_debug("ctcmpc: %s() sweep packet\n", __FUNCTION__
);
1860 ctcmpc_dumpit((char *)header
, TH_SWEEP_LENGTH
);
1862 fsm_addtimer(&wch
->timer
, CTCM_TIME_5_SEC
, CTC_EVENT_TIMER
, wch
);
1863 fsm_newstate(wch
->fsm
, CTC_STATE_TX
);
1865 spin_lock_irqsave(get_ccwdev_lock(wch
->cdev
), saveflags
);
1866 wch
->prof
.send_stamp
= current_kernel_time(); /* xtime */
1867 rc
= ccw_device_start(wch
->cdev
, &wch
->ccw
[3],
1868 (unsigned long) wch
, 0xff, 0);
1869 spin_unlock_irqrestore(get_ccwdev_lock(wch
->cdev
), saveflags
);
1871 if ((grp
->sweep_req_pend_num
== 0) &&
1872 (grp
->sweep_rsp_pend_num
== 0)) {
1874 rch
->th_seq_num
= 0x00;
1875 wch
->th_seq_num
= 0x00;
1876 ctcm_clear_busy_do(dev
);
1879 if (do_debug_data
) {
1880 ctcm_pr_debug("ctcmpc: %s()2: ToVTAM_th_seq= %08x\n" ,
1881 __FUNCTION__
, wch
->th_seq_num
);
1882 ctcm_pr_debug("ctcmpc: %s()2: FromVTAM_th_seq= %08x\n" ,
1883 __FUNCTION__
, rch
->th_seq_num
);
1887 ctcm_ccw_check_rc(wch
, rc
, "send sweep");
1891 ctcm_pr_debug("ctcmpc exit: %s() %s\n", __FUNCTION__
, ach
->id
);
1897 * The ctcmpc statemachine for a channel.
1900 const fsm_node ctcmpc_ch_fsm
[] = {
1901 { CTC_STATE_STOPPED
, CTC_EVENT_STOP
, ctcm_action_nop
},
1902 { CTC_STATE_STOPPED
, CTC_EVENT_START
, ctcm_chx_start
},
1903 { CTC_STATE_STOPPED
, CTC_EVENT_IO_ENODEV
, ctcm_chx_iofatal
},
1904 { CTC_STATE_STOPPED
, CTC_EVENT_FINSTAT
, ctcm_action_nop
},
1905 { CTC_STATE_STOPPED
, CTC_EVENT_MC_FAIL
, ctcm_action_nop
},
1907 { CTC_STATE_NOTOP
, CTC_EVENT_STOP
, ctcm_chx_stop
},
1908 { CTC_STATE_NOTOP
, CTC_EVENT_START
, ctcm_action_nop
},
1909 { CTC_STATE_NOTOP
, CTC_EVENT_FINSTAT
, ctcm_action_nop
},
1910 { CTC_STATE_NOTOP
, CTC_EVENT_MC_FAIL
, ctcm_action_nop
},
1911 { CTC_STATE_NOTOP
, CTC_EVENT_MC_GOOD
, ctcm_chx_start
},
1912 { CTC_STATE_NOTOP
, CTC_EVENT_UC_RCRESET
, ctcm_chx_stop
},
1913 { CTC_STATE_NOTOP
, CTC_EVENT_UC_RSRESET
, ctcm_chx_stop
},
1914 { CTC_STATE_NOTOP
, CTC_EVENT_IO_ENODEV
, ctcm_chx_iofatal
},
1916 { CTC_STATE_STARTWAIT
, CTC_EVENT_STOP
, ctcm_chx_haltio
},
1917 { CTC_STATE_STARTWAIT
, CTC_EVENT_START
, ctcm_action_nop
},
1918 { CTC_STATE_STARTWAIT
, CTC_EVENT_FINSTAT
, ctcm_chx_setmode
},
1919 { CTC_STATE_STARTWAIT
, CTC_EVENT_TIMER
, ctcm_chx_setuperr
},
1920 { CTC_STATE_STARTWAIT
, CTC_EVENT_IO_ENODEV
, ctcm_chx_iofatal
},
1921 { CTC_STATE_STARTWAIT
, CTC_EVENT_MC_FAIL
, ctcm_chx_fail
},
1923 { CTC_STATE_STARTRETRY
, CTC_EVENT_STOP
, ctcm_chx_haltio
},
1924 { CTC_STATE_STARTRETRY
, CTC_EVENT_TIMER
, ctcm_chx_setmode
},
1925 { CTC_STATE_STARTRETRY
, CTC_EVENT_FINSTAT
, ctcm_chx_setmode
},
1926 { CTC_STATE_STARTRETRY
, CTC_EVENT_MC_FAIL
, ctcm_chx_fail
},
1927 { CTC_STATE_STARTRETRY
, CTC_EVENT_IO_ENODEV
, ctcm_chx_iofatal
},
1929 { CTC_STATE_SETUPWAIT
, CTC_EVENT_STOP
, ctcm_chx_haltio
},
1930 { CTC_STATE_SETUPWAIT
, CTC_EVENT_START
, ctcm_action_nop
},
1931 { CTC_STATE_SETUPWAIT
, CTC_EVENT_FINSTAT
, ctcmpc_chx_firstio
},
1932 { CTC_STATE_SETUPWAIT
, CTC_EVENT_UC_RCRESET
, ctcm_chx_setuperr
},
1933 { CTC_STATE_SETUPWAIT
, CTC_EVENT_UC_RSRESET
, ctcm_chx_setuperr
},
1934 { CTC_STATE_SETUPWAIT
, CTC_EVENT_TIMER
, ctcm_chx_setmode
},
1935 { CTC_STATE_SETUPWAIT
, CTC_EVENT_IO_ENODEV
, ctcm_chx_iofatal
},
1936 { CTC_STATE_SETUPWAIT
, CTC_EVENT_MC_FAIL
, ctcm_chx_fail
},
1938 { CTC_STATE_RXINIT
, CTC_EVENT_STOP
, ctcm_chx_haltio
},
1939 { CTC_STATE_RXINIT
, CTC_EVENT_START
, ctcm_action_nop
},
1940 { CTC_STATE_RXINIT
, CTC_EVENT_FINSTAT
, ctcmpc_chx_rxidle
},
1941 { CTC_STATE_RXINIT
, CTC_EVENT_UC_RCRESET
, ctcm_chx_rxiniterr
},
1942 { CTC_STATE_RXINIT
, CTC_EVENT_UC_RSRESET
, ctcm_chx_rxiniterr
},
1943 { CTC_STATE_RXINIT
, CTC_EVENT_TIMER
, ctcm_chx_rxiniterr
},
1944 { CTC_STATE_RXINIT
, CTC_EVENT_ATTNBUSY
, ctcm_chx_rxinitfail
},
1945 { CTC_STATE_RXINIT
, CTC_EVENT_IO_ENODEV
, ctcm_chx_iofatal
},
1946 { CTC_STATE_RXINIT
, CTC_EVENT_UC_ZERO
, ctcmpc_chx_firstio
},
1947 { CTC_STATE_RXINIT
, CTC_EVENT_MC_FAIL
, ctcm_chx_fail
},
1949 { CH_XID0_PENDING
, CTC_EVENT_FINSTAT
, ctcm_action_nop
},
1950 { CH_XID0_PENDING
, CTC_EVENT_ATTN
, ctcmpc_chx_attn
},
1951 { CH_XID0_PENDING
, CTC_EVENT_STOP
, ctcm_chx_haltio
},
1952 { CH_XID0_PENDING
, CTC_EVENT_START
, ctcm_action_nop
},
1953 { CH_XID0_PENDING
, CTC_EVENT_IO_ENODEV
, ctcm_chx_iofatal
},
1954 { CH_XID0_PENDING
, CTC_EVENT_MC_FAIL
, ctcm_chx_fail
},
1955 { CH_XID0_PENDING
, CTC_EVENT_UC_RCRESET
, ctcm_chx_setuperr
},
1956 { CH_XID0_PENDING
, CTC_EVENT_UC_RSRESET
, ctcm_chx_setuperr
},
1957 { CH_XID0_PENDING
, CTC_EVENT_UC_RSRESET
, ctcm_chx_setuperr
},
1958 { CH_XID0_PENDING
, CTC_EVENT_ATTNBUSY
, ctcm_chx_iofatal
},
1960 { CH_XID0_INPROGRESS
, CTC_EVENT_FINSTAT
, ctcmpc_chx_rx
},
1961 { CH_XID0_INPROGRESS
, CTC_EVENT_ATTN
, ctcmpc_chx_attn
},
1962 { CH_XID0_INPROGRESS
, CTC_EVENT_STOP
, ctcm_chx_haltio
},
1963 { CH_XID0_INPROGRESS
, CTC_EVENT_START
, ctcm_action_nop
},
1964 { CH_XID0_INPROGRESS
, CTC_EVENT_IO_ENODEV
, ctcm_chx_iofatal
},
1965 { CH_XID0_INPROGRESS
, CTC_EVENT_MC_FAIL
, ctcm_chx_fail
},
1966 { CH_XID0_INPROGRESS
, CTC_EVENT_UC_ZERO
, ctcmpc_chx_rx
},
1967 { CH_XID0_INPROGRESS
, CTC_EVENT_UC_RCRESET
, ctcm_chx_setuperr
},
1968 { CH_XID0_INPROGRESS
, CTC_EVENT_ATTNBUSY
, ctcmpc_chx_attnbusy
},
1969 { CH_XID0_INPROGRESS
, CTC_EVENT_TIMER
, ctcmpc_chx_resend
},
1970 { CH_XID0_INPROGRESS
, CTC_EVENT_IO_EBUSY
, ctcm_chx_fail
},
1972 { CH_XID7_PENDING
, CTC_EVENT_FINSTAT
, ctcmpc_chx_rx
},
1973 { CH_XID7_PENDING
, CTC_EVENT_ATTN
, ctcmpc_chx_attn
},
1974 { CH_XID7_PENDING
, CTC_EVENT_STOP
, ctcm_chx_haltio
},
1975 { CH_XID7_PENDING
, CTC_EVENT_START
, ctcm_action_nop
},
1976 { CH_XID7_PENDING
, CTC_EVENT_IO_ENODEV
, ctcm_chx_iofatal
},
1977 { CH_XID7_PENDING
, CTC_EVENT_MC_FAIL
, ctcm_chx_fail
},
1978 { CH_XID7_PENDING
, CTC_EVENT_UC_ZERO
, ctcmpc_chx_rx
},
1979 { CH_XID7_PENDING
, CTC_EVENT_UC_RCRESET
, ctcm_chx_setuperr
},
1980 { CH_XID7_PENDING
, CTC_EVENT_UC_RSRESET
, ctcm_chx_setuperr
},
1981 { CH_XID7_PENDING
, CTC_EVENT_UC_RSRESET
, ctcm_chx_setuperr
},
1982 { CH_XID7_PENDING
, CTC_EVENT_ATTNBUSY
, ctcm_chx_iofatal
},
1983 { CH_XID7_PENDING
, CTC_EVENT_TIMER
, ctcmpc_chx_resend
},
1984 { CH_XID7_PENDING
, CTC_EVENT_IO_EBUSY
, ctcm_chx_fail
},
1986 { CH_XID7_PENDING1
, CTC_EVENT_FINSTAT
, ctcmpc_chx_rx
},
1987 { CH_XID7_PENDING1
, CTC_EVENT_ATTN
, ctcmpc_chx_attn
},
1988 { CH_XID7_PENDING1
, CTC_EVENT_STOP
, ctcm_chx_haltio
},
1989 { CH_XID7_PENDING1
, CTC_EVENT_START
, ctcm_action_nop
},
1990 { CH_XID7_PENDING1
, CTC_EVENT_IO_ENODEV
, ctcm_chx_iofatal
},
1991 { CH_XID7_PENDING1
, CTC_EVENT_MC_FAIL
, ctcm_chx_fail
},
1992 { CH_XID7_PENDING1
, CTC_EVENT_UC_ZERO
, ctcmpc_chx_rx
},
1993 { CH_XID7_PENDING1
, CTC_EVENT_UC_RCRESET
, ctcm_chx_setuperr
},
1994 { CH_XID7_PENDING1
, CTC_EVENT_UC_RSRESET
, ctcm_chx_setuperr
},
1995 { CH_XID7_PENDING1
, CTC_EVENT_ATTNBUSY
, ctcm_chx_iofatal
},
1996 { CH_XID7_PENDING1
, CTC_EVENT_TIMER
, ctcmpc_chx_resend
},
1997 { CH_XID7_PENDING1
, CTC_EVENT_IO_EBUSY
, ctcm_chx_fail
},
1999 { CH_XID7_PENDING2
, CTC_EVENT_FINSTAT
, ctcmpc_chx_rx
},
2000 { CH_XID7_PENDING2
, CTC_EVENT_ATTN
, ctcmpc_chx_attn
},
2001 { CH_XID7_PENDING2
, CTC_EVENT_STOP
, ctcm_chx_haltio
},
2002 { CH_XID7_PENDING2
, CTC_EVENT_START
, ctcm_action_nop
},
2003 { CH_XID7_PENDING2
, CTC_EVENT_IO_ENODEV
, ctcm_chx_iofatal
},
2004 { CH_XID7_PENDING2
, CTC_EVENT_MC_FAIL
, ctcm_chx_fail
},
2005 { CH_XID7_PENDING2
, CTC_EVENT_UC_ZERO
, ctcmpc_chx_rx
},
2006 { CH_XID7_PENDING2
, CTC_EVENT_UC_RCRESET
, ctcm_chx_setuperr
},
2007 { CH_XID7_PENDING2
, CTC_EVENT_UC_RSRESET
, ctcm_chx_setuperr
},
2008 { CH_XID7_PENDING2
, CTC_EVENT_ATTNBUSY
, ctcm_chx_iofatal
},
2009 { CH_XID7_PENDING2
, CTC_EVENT_TIMER
, ctcmpc_chx_resend
},
2010 { CH_XID7_PENDING2
, CTC_EVENT_IO_EBUSY
, ctcm_chx_fail
},
2012 { CH_XID7_PENDING3
, CTC_EVENT_FINSTAT
, ctcmpc_chx_rx
},
2013 { CH_XID7_PENDING3
, CTC_EVENT_ATTN
, ctcmpc_chx_attn
},
2014 { CH_XID7_PENDING3
, CTC_EVENT_STOP
, ctcm_chx_haltio
},
2015 { CH_XID7_PENDING3
, CTC_EVENT_START
, ctcm_action_nop
},
2016 { CH_XID7_PENDING3
, CTC_EVENT_IO_ENODEV
, ctcm_chx_iofatal
},
2017 { CH_XID7_PENDING3
, CTC_EVENT_MC_FAIL
, ctcm_chx_fail
},
2018 { CH_XID7_PENDING3
, CTC_EVENT_UC_ZERO
, ctcmpc_chx_rx
},
2019 { CH_XID7_PENDING3
, CTC_EVENT_UC_RCRESET
, ctcm_chx_setuperr
},
2020 { CH_XID7_PENDING3
, CTC_EVENT_UC_RSRESET
, ctcm_chx_setuperr
},
2021 { CH_XID7_PENDING3
, CTC_EVENT_ATTNBUSY
, ctcm_chx_iofatal
},
2022 { CH_XID7_PENDING3
, CTC_EVENT_TIMER
, ctcmpc_chx_resend
},
2023 { CH_XID7_PENDING3
, CTC_EVENT_IO_EBUSY
, ctcm_chx_fail
},
2025 { CH_XID7_PENDING4
, CTC_EVENT_FINSTAT
, ctcmpc_chx_rx
},
2026 { CH_XID7_PENDING4
, CTC_EVENT_ATTN
, ctcmpc_chx_attn
},
2027 { CH_XID7_PENDING4
, CTC_EVENT_STOP
, ctcm_chx_haltio
},
2028 { CH_XID7_PENDING4
, CTC_EVENT_START
, ctcm_action_nop
},
2029 { CH_XID7_PENDING4
, CTC_EVENT_IO_ENODEV
, ctcm_chx_iofatal
},
2030 { CH_XID7_PENDING4
, CTC_EVENT_MC_FAIL
, ctcm_chx_fail
},
2031 { CH_XID7_PENDING4
, CTC_EVENT_UC_ZERO
, ctcmpc_chx_rx
},
2032 { CH_XID7_PENDING4
, CTC_EVENT_UC_RCRESET
, ctcm_chx_setuperr
},
2033 { CH_XID7_PENDING4
, CTC_EVENT_UC_RSRESET
, ctcm_chx_setuperr
},
2034 { CH_XID7_PENDING4
, CTC_EVENT_ATTNBUSY
, ctcm_chx_iofatal
},
2035 { CH_XID7_PENDING4
, CTC_EVENT_TIMER
, ctcmpc_chx_resend
},
2036 { CH_XID7_PENDING4
, CTC_EVENT_IO_EBUSY
, ctcm_chx_fail
},
2038 { CTC_STATE_RXIDLE
, CTC_EVENT_STOP
, ctcm_chx_haltio
},
2039 { CTC_STATE_RXIDLE
, CTC_EVENT_START
, ctcm_action_nop
},
2040 { CTC_STATE_RXIDLE
, CTC_EVENT_FINSTAT
, ctcmpc_chx_rx
},
2041 { CTC_STATE_RXIDLE
, CTC_EVENT_UC_RCRESET
, ctcm_chx_rxdisc
},
2042 { CTC_STATE_RXIDLE
, CTC_EVENT_UC_RSRESET
, ctcm_chx_fail
},
2043 { CTC_STATE_RXIDLE
, CTC_EVENT_IO_ENODEV
, ctcm_chx_iofatal
},
2044 { CTC_STATE_RXIDLE
, CTC_EVENT_MC_FAIL
, ctcm_chx_fail
},
2045 { CTC_STATE_RXIDLE
, CTC_EVENT_UC_ZERO
, ctcmpc_chx_rx
},
2047 { CTC_STATE_TXINIT
, CTC_EVENT_STOP
, ctcm_chx_haltio
},
2048 { CTC_STATE_TXINIT
, CTC_EVENT_START
, ctcm_action_nop
},
2049 { CTC_STATE_TXINIT
, CTC_EVENT_FINSTAT
, ctcm_chx_txidle
},
2050 { CTC_STATE_TXINIT
, CTC_EVENT_UC_RCRESET
, ctcm_chx_txiniterr
},
2051 { CTC_STATE_TXINIT
, CTC_EVENT_UC_RSRESET
, ctcm_chx_txiniterr
},
2052 { CTC_STATE_TXINIT
, CTC_EVENT_TIMER
, ctcm_chx_txiniterr
},
2053 { CTC_STATE_TXINIT
, CTC_EVENT_IO_ENODEV
, ctcm_chx_iofatal
},
2054 { CTC_STATE_TXINIT
, CTC_EVENT_MC_FAIL
, ctcm_chx_fail
},
2055 { CTC_STATE_TXINIT
, CTC_EVENT_RSWEEP_TIMER
, ctcmpc_chx_send_sweep
},
2057 { CTC_STATE_TXIDLE
, CTC_EVENT_STOP
, ctcm_chx_haltio
},
2058 { CTC_STATE_TXIDLE
, CTC_EVENT_START
, ctcm_action_nop
},
2059 { CTC_STATE_TXIDLE
, CTC_EVENT_FINSTAT
, ctcmpc_chx_firstio
},
2060 { CTC_STATE_TXIDLE
, CTC_EVENT_UC_RCRESET
, ctcm_chx_fail
},
2061 { CTC_STATE_TXIDLE
, CTC_EVENT_UC_RSRESET
, ctcm_chx_fail
},
2062 { CTC_STATE_TXIDLE
, CTC_EVENT_IO_ENODEV
, ctcm_chx_iofatal
},
2063 { CTC_STATE_TXIDLE
, CTC_EVENT_MC_FAIL
, ctcm_chx_fail
},
2064 { CTC_STATE_TXIDLE
, CTC_EVENT_RSWEEP_TIMER
, ctcmpc_chx_send_sweep
},
2066 { CTC_STATE_TERM
, CTC_EVENT_STOP
, ctcm_action_nop
},
2067 { CTC_STATE_TERM
, CTC_EVENT_START
, ctcm_chx_restart
},
2068 { CTC_STATE_TERM
, CTC_EVENT_FINSTAT
, ctcm_chx_stopped
},
2069 { CTC_STATE_TERM
, CTC_EVENT_UC_RCRESET
, ctcm_action_nop
},
2070 { CTC_STATE_TERM
, CTC_EVENT_UC_RSRESET
, ctcm_action_nop
},
2071 { CTC_STATE_TERM
, CTC_EVENT_MC_FAIL
, ctcm_chx_fail
},
2072 { CTC_STATE_TERM
, CTC_EVENT_IO_EBUSY
, ctcm_chx_fail
},
2073 { CTC_STATE_TERM
, CTC_EVENT_IO_ENODEV
, ctcm_chx_iofatal
},
2075 { CTC_STATE_DTERM
, CTC_EVENT_STOP
, ctcm_chx_haltio
},
2076 { CTC_STATE_DTERM
, CTC_EVENT_START
, ctcm_chx_restart
},
2077 { CTC_STATE_DTERM
, CTC_EVENT_FINSTAT
, ctcm_chx_setmode
},
2078 { CTC_STATE_DTERM
, CTC_EVENT_UC_RCRESET
, ctcm_action_nop
},
2079 { CTC_STATE_DTERM
, CTC_EVENT_UC_RSRESET
, ctcm_action_nop
},
2080 { CTC_STATE_DTERM
, CTC_EVENT_MC_FAIL
, ctcm_chx_fail
},
2081 { CTC_STATE_DTERM
, CTC_EVENT_IO_ENODEV
, ctcm_chx_iofatal
},
2083 { CTC_STATE_TX
, CTC_EVENT_STOP
, ctcm_chx_haltio
},
2084 { CTC_STATE_TX
, CTC_EVENT_START
, ctcm_action_nop
},
2085 { CTC_STATE_TX
, CTC_EVENT_FINSTAT
, ctcmpc_chx_txdone
},
2086 { CTC_STATE_TX
, CTC_EVENT_UC_RCRESET
, ctcm_chx_fail
},
2087 { CTC_STATE_TX
, CTC_EVENT_UC_RSRESET
, ctcm_chx_fail
},
2088 { CTC_STATE_TX
, CTC_EVENT_TIMER
, ctcm_chx_txretry
},
2089 { CTC_STATE_TX
, CTC_EVENT_IO_ENODEV
, ctcm_chx_iofatal
},
2090 { CTC_STATE_TX
, CTC_EVENT_MC_FAIL
, ctcm_chx_fail
},
2091 { CTC_STATE_TX
, CTC_EVENT_RSWEEP_TIMER
, ctcmpc_chx_send_sweep
},
2092 { CTC_STATE_TX
, CTC_EVENT_IO_EBUSY
, ctcm_chx_fail
},
2094 { CTC_STATE_RXERR
, CTC_EVENT_STOP
, ctcm_chx_haltio
},
2095 { CTC_STATE_TXERR
, CTC_EVENT_STOP
, ctcm_chx_haltio
},
2096 { CTC_STATE_TXERR
, CTC_EVENT_IO_ENODEV
, ctcm_chx_iofatal
},
2097 { CTC_STATE_TXERR
, CTC_EVENT_MC_FAIL
, ctcm_chx_fail
},
2098 { CTC_STATE_RXERR
, CTC_EVENT_MC_FAIL
, ctcm_chx_fail
},
2101 int mpc_ch_fsm_len
= ARRAY_SIZE(ctcmpc_ch_fsm
);
2104 * Actions for interface - statemachine.
2108 * Startup channels by sending CTC_EVENT_START to each channel.
2110 * fi An instance of an interface statemachine.
2111 * event The event, just happened.
2112 * arg Generic pointer, casted from struct net_device * upon call.
2114 static void dev_action_start(fsm_instance
*fi
, int event
, void *arg
)
2116 struct net_device
*dev
= arg
;
2117 struct ctcm_priv
*priv
= dev
->priv
;
2120 CTCMY_DBF_DEV_NAME(SETUP
, dev
, "");
2122 fsm_deltimer(&priv
->restart_timer
);
2123 fsm_newstate(fi
, DEV_STATE_STARTWAIT_RXTX
);
2125 priv
->mpcg
->channels_terminating
= 0;
2126 for (direction
= READ
; direction
<= WRITE
; direction
++) {
2127 struct channel
*ch
= priv
->channel
[direction
];
2128 fsm_event(ch
->fsm
, CTC_EVENT_START
, ch
);
2133 * Shutdown channels by sending CTC_EVENT_STOP to each channel.
2135 * fi An instance of an interface statemachine.
2136 * event The event, just happened.
2137 * arg Generic pointer, casted from struct net_device * upon call.
2139 static void dev_action_stop(fsm_instance
*fi
, int event
, void *arg
)
2142 struct net_device
*dev
= arg
;
2143 struct ctcm_priv
*priv
= dev
->priv
;
2145 CTCMY_DBF_DEV_NAME(SETUP
, dev
, "");
2147 fsm_newstate(fi
, DEV_STATE_STOPWAIT_RXTX
);
2148 for (direction
= READ
; direction
<= WRITE
; direction
++) {
2149 struct channel
*ch
= priv
->channel
[direction
];
2150 fsm_event(ch
->fsm
, CTC_EVENT_STOP
, ch
);
2151 ch
->th_seq_num
= 0x00;
2153 ctcm_pr_debug("ctcm: %s() CH_th_seq= %08x\n",
2154 __FUNCTION__
, ch
->th_seq_num
);
2157 fsm_newstate(priv
->mpcg
->fsm
, MPCG_STATE_RESET
);
2160 static void dev_action_restart(fsm_instance
*fi
, int event
, void *arg
)
2163 struct net_device
*dev
= arg
;
2164 struct ctcm_priv
*priv
= dev
->priv
;
2166 CTCMY_DBF_DEV_NAME(TRACE
, dev
, "");
2169 ctcm_pr_info("ctcm: %s Restarting Device and "
2170 "MPC Group in 5 seconds\n",
2172 restart_timer
= CTCM_TIME_1_SEC
;
2174 ctcm_pr_info("%s: Restarting\n", dev
->name
);
2175 restart_timer
= CTCM_TIME_5_SEC
;
2178 dev_action_stop(fi
, event
, arg
);
2179 fsm_event(priv
->fsm
, DEV_EVENT_STOP
, dev
);
2181 fsm_newstate(priv
->mpcg
->fsm
, MPCG_STATE_RESET
);
2183 /* going back into start sequence too quickly can */
2184 /* result in the other side becoming unreachable due */
2185 /* to sense reported when IO is aborted */
2186 fsm_addtimer(&priv
->restart_timer
, restart_timer
,
2187 DEV_EVENT_START
, dev
);
2191 * Called from channel statemachine
2192 * when a channel is up and running.
2194 * fi An instance of an interface statemachine.
2195 * event The event, just happened.
2196 * arg Generic pointer, casted from struct net_device * upon call.
2198 static void dev_action_chup(fsm_instance
*fi
, int event
, void *arg
)
2200 struct net_device
*dev
= arg
;
2201 struct ctcm_priv
*priv
= dev
->priv
;
2203 CTCMY_DBF_DEV_NAME(SETUP
, dev
, "");
2205 switch (fsm_getstate(fi
)) {
2206 case DEV_STATE_STARTWAIT_RXTX
:
2207 if (event
== DEV_EVENT_RXUP
)
2208 fsm_newstate(fi
, DEV_STATE_STARTWAIT_TX
);
2210 fsm_newstate(fi
, DEV_STATE_STARTWAIT_RX
);
2212 case DEV_STATE_STARTWAIT_RX
:
2213 if (event
== DEV_EVENT_RXUP
) {
2214 fsm_newstate(fi
, DEV_STATE_RUNNING
);
2215 ctcm_pr_info("%s: connected with remote side\n",
2217 ctcm_clear_busy(dev
);
2220 case DEV_STATE_STARTWAIT_TX
:
2221 if (event
== DEV_EVENT_TXUP
) {
2222 fsm_newstate(fi
, DEV_STATE_RUNNING
);
2223 ctcm_pr_info("%s: connected with remote side\n",
2225 ctcm_clear_busy(dev
);
2228 case DEV_STATE_STOPWAIT_TX
:
2229 if (event
== DEV_EVENT_RXUP
)
2230 fsm_newstate(fi
, DEV_STATE_STOPWAIT_RXTX
);
2232 case DEV_STATE_STOPWAIT_RX
:
2233 if (event
== DEV_EVENT_TXUP
)
2234 fsm_newstate(fi
, DEV_STATE_STOPWAIT_RXTX
);
2239 if (event
== DEV_EVENT_RXUP
)
2240 mpc_channel_action(priv
->channel
[READ
],
2241 READ
, MPC_CHANNEL_ADD
);
2243 mpc_channel_action(priv
->channel
[WRITE
],
2244 WRITE
, MPC_CHANNEL_ADD
);
2249 * Called from device statemachine
2250 * when a channel has been shutdown.
2252 * fi An instance of an interface statemachine.
2253 * event The event, just happened.
2254 * arg Generic pointer, casted from struct net_device * upon call.
2256 static void dev_action_chdown(fsm_instance
*fi
, int event
, void *arg
)
2259 struct net_device
*dev
= arg
;
2260 struct ctcm_priv
*priv
= dev
->priv
;
2262 CTCMY_DBF_DEV_NAME(SETUP
, dev
, "");
2264 switch (fsm_getstate(fi
)) {
2265 case DEV_STATE_RUNNING
:
2266 if (event
== DEV_EVENT_TXDOWN
)
2267 fsm_newstate(fi
, DEV_STATE_STARTWAIT_TX
);
2269 fsm_newstate(fi
, DEV_STATE_STARTWAIT_RX
);
2271 case DEV_STATE_STARTWAIT_RX
:
2272 if (event
== DEV_EVENT_TXDOWN
)
2273 fsm_newstate(fi
, DEV_STATE_STARTWAIT_RXTX
);
2275 case DEV_STATE_STARTWAIT_TX
:
2276 if (event
== DEV_EVENT_RXDOWN
)
2277 fsm_newstate(fi
, DEV_STATE_STARTWAIT_RXTX
);
2279 case DEV_STATE_STOPWAIT_RXTX
:
2280 if (event
== DEV_EVENT_TXDOWN
)
2281 fsm_newstate(fi
, DEV_STATE_STOPWAIT_RX
);
2283 fsm_newstate(fi
, DEV_STATE_STOPWAIT_TX
);
2285 case DEV_STATE_STOPWAIT_RX
:
2286 if (event
== DEV_EVENT_RXDOWN
)
2287 fsm_newstate(fi
, DEV_STATE_STOPPED
);
2289 case DEV_STATE_STOPWAIT_TX
:
2290 if (event
== DEV_EVENT_TXDOWN
)
2291 fsm_newstate(fi
, DEV_STATE_STOPPED
);
2295 if (event
== DEV_EVENT_RXDOWN
)
2296 mpc_channel_action(priv
->channel
[READ
],
2297 READ
, MPC_CHANNEL_REMOVE
);
2299 mpc_channel_action(priv
->channel
[WRITE
],
2300 WRITE
, MPC_CHANNEL_REMOVE
);
2304 const fsm_node dev_fsm
[] = {
2305 { DEV_STATE_STOPPED
, DEV_EVENT_START
, dev_action_start
},
2306 { DEV_STATE_STOPWAIT_RXTX
, DEV_EVENT_START
, dev_action_start
},
2307 { DEV_STATE_STOPWAIT_RXTX
, DEV_EVENT_RXDOWN
, dev_action_chdown
},
2308 { DEV_STATE_STOPWAIT_RXTX
, DEV_EVENT_TXDOWN
, dev_action_chdown
},
2309 { DEV_STATE_STOPWAIT_RXTX
, DEV_EVENT_RESTART
, dev_action_restart
},
2310 { DEV_STATE_STOPWAIT_RX
, DEV_EVENT_START
, dev_action_start
},
2311 { DEV_STATE_STOPWAIT_RX
, DEV_EVENT_RXUP
, dev_action_chup
},
2312 { DEV_STATE_STOPWAIT_RX
, DEV_EVENT_TXUP
, dev_action_chup
},
2313 { DEV_STATE_STOPWAIT_RX
, DEV_EVENT_RXDOWN
, dev_action_chdown
},
2314 { DEV_STATE_STOPWAIT_RX
, DEV_EVENT_RESTART
, dev_action_restart
},
2315 { DEV_STATE_STOPWAIT_TX
, DEV_EVENT_START
, dev_action_start
},
2316 { DEV_STATE_STOPWAIT_TX
, DEV_EVENT_RXUP
, dev_action_chup
},
2317 { DEV_STATE_STOPWAIT_TX
, DEV_EVENT_TXUP
, dev_action_chup
},
2318 { DEV_STATE_STOPWAIT_TX
, DEV_EVENT_TXDOWN
, dev_action_chdown
},
2319 { DEV_STATE_STOPWAIT_TX
, DEV_EVENT_RESTART
, dev_action_restart
},
2320 { DEV_STATE_STARTWAIT_RXTX
, DEV_EVENT_STOP
, dev_action_stop
},
2321 { DEV_STATE_STARTWAIT_RXTX
, DEV_EVENT_RXUP
, dev_action_chup
},
2322 { DEV_STATE_STARTWAIT_RXTX
, DEV_EVENT_TXUP
, dev_action_chup
},
2323 { DEV_STATE_STARTWAIT_RXTX
, DEV_EVENT_RXDOWN
, dev_action_chdown
},
2324 { DEV_STATE_STARTWAIT_RXTX
, DEV_EVENT_TXDOWN
, dev_action_chdown
},
2325 { DEV_STATE_STARTWAIT_RXTX
, DEV_EVENT_RESTART
, dev_action_restart
},
2326 { DEV_STATE_STARTWAIT_TX
, DEV_EVENT_STOP
, dev_action_stop
},
2327 { DEV_STATE_STARTWAIT_TX
, DEV_EVENT_RXUP
, dev_action_chup
},
2328 { DEV_STATE_STARTWAIT_TX
, DEV_EVENT_TXUP
, dev_action_chup
},
2329 { DEV_STATE_STARTWAIT_TX
, DEV_EVENT_RXDOWN
, dev_action_chdown
},
2330 { DEV_STATE_STARTWAIT_TX
, DEV_EVENT_RESTART
, dev_action_restart
},
2331 { DEV_STATE_STARTWAIT_RX
, DEV_EVENT_STOP
, dev_action_stop
},
2332 { DEV_STATE_STARTWAIT_RX
, DEV_EVENT_RXUP
, dev_action_chup
},
2333 { DEV_STATE_STARTWAIT_RX
, DEV_EVENT_TXUP
, dev_action_chup
},
2334 { DEV_STATE_STARTWAIT_RX
, DEV_EVENT_TXDOWN
, dev_action_chdown
},
2335 { DEV_STATE_STARTWAIT_RX
, DEV_EVENT_RESTART
, dev_action_restart
},
2336 { DEV_STATE_RUNNING
, DEV_EVENT_STOP
, dev_action_stop
},
2337 { DEV_STATE_RUNNING
, DEV_EVENT_RXDOWN
, dev_action_chdown
},
2338 { DEV_STATE_RUNNING
, DEV_EVENT_TXDOWN
, dev_action_chdown
},
2339 { DEV_STATE_RUNNING
, DEV_EVENT_TXUP
, ctcm_action_nop
},
2340 { DEV_STATE_RUNNING
, DEV_EVENT_RXUP
, ctcm_action_nop
},
2341 { DEV_STATE_RUNNING
, DEV_EVENT_RESTART
, dev_action_restart
},
2344 int dev_fsm_len
= ARRAY_SIZE(dev_fsm
);
2346 /* --- This is the END my friend --- */