1 /* SPDX-License-Identifier: GPL-2.0 */
3 * Copyright IBM Corp. 2001, 2007
4 * Authors: Fritz Elfert (felfert@millenux.com)
5 * Peter Tiedemann (ptiedem@de.ibm.com)
11 #include <asm/ccwdev.h>
12 #include <asm/ccwgroup.h>
14 #include <linux/skbuff.h>
15 #include <linux/netdevice.h>
18 #include "ctcm_dbug.h"
21 #define CTC_DRIVER_NAME "ctcm"
22 #define CTC_DEVICE_NAME "ctc"
23 #define MPC_DEVICE_NAME "mpc"
24 #define CTC_DEVICE_GENE CTC_DEVICE_NAME "%d"
25 #define MPC_DEVICE_GENE MPC_DEVICE_NAME "%d"
27 #define CHANNEL_FLAGS_READ 0
28 #define CHANNEL_FLAGS_WRITE 1
29 #define CHANNEL_FLAGS_INUSE 2
30 #define CHANNEL_FLAGS_BUFSIZE_CHANGED 4
31 #define CHANNEL_FLAGS_FAILED 8
32 #define CHANNEL_FLAGS_WAITIRQ 16
33 #define CHANNEL_FLAGS_RWMASK 1
34 #define CHANNEL_DIRECTION(f) (f & CHANNEL_FLAGS_RWMASK)
36 #define LOG_FLAG_ILLEGALPKT 1
37 #define LOG_FLAG_ILLEGALSIZE 2
38 #define LOG_FLAG_OVERRUN 4
39 #define LOG_FLAG_NOMEM 8
41 #define ctcm_pr_debug(fmt, arg...) printk(KERN_DEBUG fmt, ##arg)
43 #define CTCM_PR_DEBUG(fmt, arg...) \
46 printk(KERN_DEBUG fmt, ##arg); \
49 #define CTCM_PR_DBGDATA(fmt, arg...) \
52 printk(KERN_DEBUG fmt, ##arg); \
55 #define CTCM_D3_DUMP(buf, len) \
58 ctcmpc_dumpit(buf, len); \
61 #define CTCM_CCW_DUMP(buf, len) \
64 ctcmpc_dumpit(buf, len); \
68 * Enum for classifying detected devices
70 enum ctcm_channel_types
{
71 /* Device is not a channel */
72 ctcm_channel_type_none
,
74 /* Device is a CTC/A */
75 ctcm_channel_type_parallel
,
77 /* Device is a FICON channel */
78 ctcm_channel_type_ficon
,
80 /* Device is a ESCON channel */
81 ctcm_channel_type_escon
85 * CCW commands, used in this driver.
87 #define CCW_CMD_WRITE 0x01
88 #define CCW_CMD_READ 0x02
89 #define CCW_CMD_NOOP 0x03
90 #define CCW_CMD_TIC 0x08
91 #define CCW_CMD_SENSE_CMD 0x14
92 #define CCW_CMD_WRITE_CTL 0x17
93 #define CCW_CMD_SET_EXTENDED 0xc3
94 #define CCW_CMD_PREPARE 0xe3
96 #define CTCM_PROTO_S390 0
97 #define CTCM_PROTO_LINUX 1
98 #define CTCM_PROTO_LINUX_TTY 2
99 #define CTCM_PROTO_OS390 3
100 #define CTCM_PROTO_MPC 4
101 #define CTCM_PROTO_MAX 4
103 #define CTCM_BUFSIZE_LIMIT 65535
104 #define CTCM_BUFSIZE_DEFAULT 32768
105 #define MPC_BUFSIZE_DEFAULT CTCM_BUFSIZE_LIMIT
107 #define CTCM_TIME_1_SEC 1000
108 #define CTCM_TIME_5_SEC 5000
109 #define CTCM_TIME_10_SEC 10000
111 #define CTCM_INITIAL_BLOCKLEN 2
116 #define CTCM_ID_SIZE 20+3
118 struct ctcm_profile
{
119 unsigned long maxmulti
;
120 unsigned long maxcqueue
;
121 unsigned long doios_single
;
122 unsigned long doios_multi
;
124 unsigned long tx_time
;
125 unsigned long send_stamp
;
129 * Definition of one channel
132 struct channel
*next
;
133 char id
[CTCM_ID_SIZE
];
134 struct ccw_device
*cdev
;
136 * Type of this channel.
137 * CTC/A or Escon for valid channels.
139 enum ctcm_channel_types type
;
141 * Misc. flags. See CHANNEL_FLAGS_... below
144 __u16 protocol
; /* protocol of this channel (4 = MPC) */
146 * I/O and irq related stuff
154 struct sk_buff
*trans_skb
; /* transmit/receive buffer */
155 struct sk_buff_head io_queue
; /* universal I/O queue */
156 struct tasklet_struct ch_tasklet
; /* MPC ONLY */
158 * TX queue for collecting skb's during busy.
160 struct sk_buff_head collect_queue
;
162 * Amount of data in collect_queue.
166 * spinlock for collect_queue and collect_len
168 spinlock_t collect_lock
;
170 * Timer for detecting unresposive
174 /* MPC ONLY section begin */
175 __u32 th_seq_num
; /* SNA TH seq number */
178 struct sk_buff
*xid_skb
;
180 struct th_header
*xid_th
;
183 struct th_header
*rcvd_xid_th
;
184 struct xid2
*rcvd_xid
;
187 fsm_timer sweep_timer
;
188 struct sk_buff_head sweep_queue
;
189 struct th_header
*discontact_th
;
190 struct tasklet_struct ch_disc_tasklet
;
191 /* MPC ONLY section end */
193 int retry
; /* retry counter for misc. operations */
194 fsm_instance
*fsm
; /* finite state machine of this channel */
195 struct net_device
*netdev
; /* corresponding net_device */
196 struct ctcm_profile prof
;
197 __u8
*trans_skb_data
;
199 __u8 sense_rc
; /* last unit check sense code report control */
203 struct net_device_stats stats
;
206 /* The MPC group struct of this interface */
207 struct mpc_group
*mpcg
; /* MPC only */
208 struct xid2
*xid
; /* MPC only */
210 /* The finite state machine of this interface */
213 /* The protocol of this device */
216 /* Timer for restarting after I/O Errors */
217 fsm_timer restart_timer
;
219 int buffer_size
; /* ctc only */
221 struct channel
*channel
[2];
224 int ctcm_open(struct net_device
*dev
);
225 int ctcm_close(struct net_device
*dev
);
227 extern const struct attribute_group
*ctcm_attr_groups
[];
230 * Compatibility macros for busy handling
231 * of network devices.
233 static inline void ctcm_clear_busy_do(struct net_device
*dev
)
235 clear_bit(0, &(((struct ctcm_priv
*)dev
->ml_priv
)->tbusy
));
236 netif_wake_queue(dev
);
239 static inline void ctcm_clear_busy(struct net_device
*dev
)
241 struct mpc_group
*grp
;
242 grp
= ((struct ctcm_priv
*)dev
->ml_priv
)->mpcg
;
244 if (!(grp
&& grp
->in_sweep
))
245 ctcm_clear_busy_do(dev
);
249 static inline int ctcm_test_and_set_busy(struct net_device
*dev
)
251 netif_stop_queue(dev
);
252 return test_and_set_bit(0,
253 &(((struct ctcm_priv
*)dev
->ml_priv
)->tbusy
));
257 extern struct channel
*channels
;
259 void ctcm_unpack_skb(struct channel
*ch
, struct sk_buff
*pskb
);
262 * Functions related to setup and device detection.
265 static inline int ctcm_less_than(char *id1
, char *id2
)
267 unsigned long dev1
, dev2
;
272 dev1
= simple_strtoul(id1
, &id1
, 16);
273 dev2
= simple_strtoul(id2
, &id2
, 16);
275 return (dev1
< dev2
);
278 int ctcm_ch_alloc_buffer(struct channel
*ch
);
280 static inline int ctcm_checkalloc_buffer(struct channel
*ch
)
282 if (ch
->trans_skb
== NULL
)
283 return ctcm_ch_alloc_buffer(ch
);
284 if (ch
->flags
& CHANNEL_FLAGS_BUFSIZE_CHANGED
) {
285 dev_kfree_skb(ch
->trans_skb
);
286 return ctcm_ch_alloc_buffer(ch
);
291 struct mpc_group
*ctcmpc_init_mpc_group(struct ctcm_priv
*priv
);
293 /* test if protocol attribute (of struct ctcm_priv or struct channel)
294 * has MPC protocol setting. Type is not checked
296 #define IS_MPC(p) ((p)->protocol == CTCM_PROTO_MPC)
298 /* test if struct ctcm_priv of struct net_device has MPC protocol setting */
299 #define IS_MPCDEV(dev) IS_MPC((struct ctcm_priv *)dev->ml_priv)
301 static inline gfp_t
gfp_type(void)
303 return in_interrupt() ? GFP_ATOMIC
: GFP_KERNEL
;
307 * Definition of our link level header.
314 #define LL_HEADER_LENGTH (sizeof(struct ll_header))