2 * CTC / ESCON network driver
4 * Copyright (C) 2001 IBM Deutschland Entwicklung GmbH, IBM Corporation
5 * Author(s): Fritz Elfert (elfert@de.ibm.com, felfert@millenux.com)
6 Peter Tiedemann (ptiedem@de.ibm.com)
10 * - Principles of Operation (IBM doc#: SA22-7201-06)
11 * - Common IO/-Device Commands and Self Description (IBM doc#: SA22-7204-02)
12 * - Common IO/-Device Commands and Self Description (IBM doc#: SN22-5535)
13 * - ESCON Channel-to-Channel Adapter (IBM doc#: SA22-7203-00)
14 * - ESCON I/O Interface (IBM doc#: SA22-7202-029
16 * This program is free software; you can redistribute it and/or modify
17 * it under the terms of the GNU General Public License as published by
18 * the Free Software Foundation; either version 2, or (at your option)
21 * This program is distributed in the hope that it will be useful,
22 * but WITHOUT ANY WARRANTY; without even the implied warranty of
23 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
24 * GNU General Public License for more details.
26 * You should have received a copy of the GNU General Public License
27 * along with this program; if not, write to the Free Software
28 * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
35 #include <asm/ccwdev.h>
36 #include <asm/ccwgroup.h>
38 #include <linux/skbuff.h>
39 #include <linux/netdevice.h>
46 * CCW commands, used in this driver.
48 #define CCW_CMD_WRITE 0x01
49 #define CCW_CMD_READ 0x02
50 #define CCW_CMD_SET_EXTENDED 0xc3
51 #define CCW_CMD_PREPARE 0xe3
53 #define CTC_PROTO_S390 0
54 #define CTC_PROTO_LINUX 1
55 #define CTC_PROTO_OS390 3
57 #define CTC_BUFSIZE_LIMIT 65535
58 #define CTC_BUFSIZE_DEFAULT 32768
60 #define CTC_TIMEOUT_5SEC 5000
62 #define CTC_INITIAL_BLOCKLEN 2
67 #define CTC_ID_SIZE BUS_ID_SIZE+3
71 unsigned long maxmulti;
72 unsigned long maxcqueue;
73 unsigned long doios_single;
74 unsigned long doios_multi;
76 unsigned long tx_time;
77 struct timespec send_stamp;
81 * Definition of one channel
86 * Pointer to next channel in list.
90 struct ccw_device *cdev;
93 * Type of this channel.
94 * CTC/A or Escon for valid channels.
96 enum channel_types type;
99 * Misc. flags. See CHANNEL_FLAGS_... below
104 * The protocol of this channel
109 * I/O and irq related stuff
120 * Transmit/Receive buffer.
122 struct sk_buff *trans_skb;
125 * Universal I/O queue.
127 struct sk_buff_head io_queue;
130 * TX queue for collecting skb's during busy.
132 struct sk_buff_head collect_queue;
135 * Amount of data in collect_queue.
140 * spinlock for collect_queue and collect_len
142 spinlock_t collect_lock;
145 * Timer for detecting unresposive
151 * Retry counter for misc. operations.
156 * The finite state machine of this channel
161 * The corresponding net_device this channel
164 struct net_device *netdev;
166 struct ctc_profile prof;
168 unsigned char *trans_skb_data;
173 #define CHANNEL_FLAGS_READ 0
174 #define CHANNEL_FLAGS_WRITE 1
175 #define CHANNEL_FLAGS_INUSE 2
176 #define CHANNEL_FLAGS_BUFSIZE_CHANGED 4
177 #define CHANNEL_FLAGS_FAILED 8
178 #define CHANNEL_FLAGS_WAITIRQ 16
179 #define CHANNEL_FLAGS_RWMASK 1
180 #define CHANNEL_DIRECTION(f) (f & CHANNEL_FLAGS_RWMASK)
182 #define LOG_FLAG_ILLEGALPKT 1
183 #define LOG_FLAG_ILLEGALSIZE 2
184 #define LOG_FLAG_OVERRUN 4
185 #define LOG_FLAG_NOMEM 8
187 #define CTC_LOGLEVEL_INFO 1
188 #define CTC_LOGLEVEL_NOTICE 2
189 #define CTC_LOGLEVEL_WARN 4
190 #define CTC_LOGLEVEL_EMERG 8
191 #define CTC_LOGLEVEL_ERR 16
192 #define CTC_LOGLEVEL_DEBUG 32
193 #define CTC_LOGLEVEL_CRIT 64
195 #define CTC_LOGLEVEL_DEFAULT \
196 (CTC_LOGLEVEL_INFO | CTC_LOGLEVEL_NOTICE | CTC_LOGLEVEL_WARN | CTC_LOGLEVEL_CRIT)
198 #define CTC_LOGLEVEL_MAX ((CTC_LOGLEVEL_CRIT<<1)-1)
200 #define ctc_pr_debug(fmt, arg...) \
201 do { if (loglevel & CTC_LOGLEVEL_DEBUG) printk(KERN_DEBUG fmt,##arg); } while (0)
203 #define ctc_pr_info(fmt, arg...) \
204 do { if (loglevel & CTC_LOGLEVEL_INFO) printk(KERN_INFO fmt,##arg); } while (0)
206 #define ctc_pr_notice(fmt, arg...) \
207 do { if (loglevel & CTC_LOGLEVEL_NOTICE) printk(KERN_NOTICE fmt,##arg); } while (0)
209 #define ctc_pr_warn(fmt, arg...) \
210 do { if (loglevel & CTC_LOGLEVEL_WARN) printk(KERN_WARNING fmt,##arg); } while (0)
212 #define ctc_pr_emerg(fmt, arg...) \
213 do { if (loglevel & CTC_LOGLEVEL_EMERG) printk(KERN_EMERG fmt,##arg); } while (0)
215 #define ctc_pr_err(fmt, arg...) \
216 do { if (loglevel & CTC_LOGLEVEL_ERR) printk(KERN_ERR fmt,##arg); } while (0)
218 #define ctc_pr_crit(fmt, arg...) \
219 do { if (loglevel & CTC_LOGLEVEL_CRIT) printk(KERN_CRIT fmt,##arg); } while (0)
222 struct net_device_stats stats;
225 * The finite state machine of this interface.
229 * The protocol of this device
233 * Timer for restarting after I/O Errors
235 fsm_timer restart_timer;
239 struct channel *channel[2];
243 * Definition of our link level header.
250 #define LL_HEADER_LENGTH (sizeof(struct ll_header))
253 * Compatibility macros for busy handling
254 * of network devices.
256 static __inline__ void
257 ctc_clear_busy(struct net_device * dev)
259 clear_bit(0, &(((struct ctc_priv *) dev->priv)->tbusy));
260 netif_wake_queue(dev);
263 static __inline__ int
264 ctc_test_and_set_busy(struct net_device * dev)
266 netif_stop_queue(dev);
267 return test_and_set_bit(0, &((struct ctc_priv *) dev->priv)->tbusy);