upgrade to linux 2.6.10-1.12_FC2
[linux-2.6.git] / drivers / s390 / net / qeth.h
1 #ifndef __QETH_H__
2 #define __QETH_H__
3
4 #include <linux/if.h>
5 #include <linux/if_arp.h>
6
7 #include <linux/if_tr.h>
8 #include <linux/trdevice.h>
9 #include <linux/etherdevice.h>
10 #include <linux/if_vlan.h>
11
12 #include <net/ipv6.h>
13 #include <linux/in6.h>
14 #include <net/if_inet6.h>
15 #include <net/addrconf.h>
16
17
18 #include <linux/bitops.h>
19
20 #include <asm/debug.h>
21 #include <asm/qdio.h>
22 #include <asm/ccwdev.h>
23 #include <asm/ccwgroup.h>
24
25 #include "qeth_mpc.h"
26
27 #define VERSION_QETH_H          "$Revision: 1.124 $"
28
29 #ifdef CONFIG_QETH_IPV6
30 #define QETH_VERSION_IPV6       ":IPv6"
31 #else
32 #define QETH_VERSION_IPV6       ""
33 #endif
34 #ifdef CONFIG_QETH_VLAN
35 #define QETH_VERSION_VLAN       ":VLAN"
36 #else
37 #define QETH_VERSION_VLAN       ""
38 #endif
39
40 /**
41  * Debug Facility stuff
42  */
43 #define QETH_DBF_SETUP_NAME "qeth_setup"
44 #define QETH_DBF_SETUP_LEN 8
45 #define QETH_DBF_SETUP_INDEX 3
46 #define QETH_DBF_SETUP_NR_AREAS 1
47 #define QETH_DBF_SETUP_LEVEL 5
48
49 #define QETH_DBF_MISC_NAME "qeth_misc"
50 #define QETH_DBF_MISC_LEN 128
51 #define QETH_DBF_MISC_INDEX 1
52 #define QETH_DBF_MISC_NR_AREAS 1
53 #define QETH_DBF_MISC_LEVEL 2
54
55 #define QETH_DBF_DATA_NAME "qeth_data"
56 #define QETH_DBF_DATA_LEN 96
57 #define QETH_DBF_DATA_INDEX 3
58 #define QETH_DBF_DATA_NR_AREAS 1
59 #define QETH_DBF_DATA_LEVEL 2
60
61 #define QETH_DBF_CONTROL_NAME "qeth_control"
62 #define QETH_DBF_CONTROL_LEN 256
63 #define QETH_DBF_CONTROL_INDEX 3
64 #define QETH_DBF_CONTROL_NR_AREAS 2
65 #define QETH_DBF_CONTROL_LEVEL 5
66
67 #define QETH_DBF_TRACE_NAME "qeth_trace"
68 #define QETH_DBF_TRACE_LEN 8
69 #define QETH_DBF_TRACE_INDEX 2
70 #define QETH_DBF_TRACE_NR_AREAS 2
71 #define QETH_DBF_TRACE_LEVEL 5
72
73 #define QETH_DBF_SENSE_NAME "qeth_sense"
74 #define QETH_DBF_SENSE_LEN 64
75 #define QETH_DBF_SENSE_INDEX 1
76 #define QETH_DBF_SENSE_NR_AREAS 1
77 #define QETH_DBF_SENSE_LEVEL 2
78
79 #define QETH_DBF_QERR_NAME "qeth_qerr"
80 #define QETH_DBF_QERR_LEN 8
81 #define QETH_DBF_QERR_INDEX 1
82 #define QETH_DBF_QERR_NR_AREAS 2
83 #define QETH_DBF_QERR_LEVEL 2
84
85 #define QETH_DBF_TEXT(name,level,text) \
86         do { \
87                 debug_text_event(qeth_dbf_##name,level,text); \
88         } while (0)
89
90 #define QETH_DBF_HEX(name,level,addr,len) \
91         do { \
92                 debug_event(qeth_dbf_##name,level,(void*)(addr),len); \
93         } while (0)
94
95 DECLARE_PER_CPU(char[256], qeth_dbf_txt_buf);
96
97 #define QETH_DBF_TEXT_(name,level,text...)                              \
98         do {                                                            \
99                 char* dbf_txt_buf = get_cpu_var(qeth_dbf_txt_buf);      \
100                 sprintf(dbf_txt_buf, text);                             \
101                 debug_text_event(qeth_dbf_##name,level,dbf_txt_buf);    \
102                 put_cpu_var(qeth_dbf_txt_buf);                          \
103         } while (0)
104
105 #define QETH_DBF_SPRINTF(name,level,text...) \
106         do { \
107                 debug_sprintf_event(qeth_dbf_trace, level, ##text ); \
108                 debug_sprintf_event(qeth_dbf_trace, level, text ); \
109         } while (0)
110
111 /**
112  * some more debug stuff
113  */
114 #define PRINTK_HEADER   "qeth: "
115
116 #define HEXDUMP16(importance,header,ptr) \
117 PRINT_##importance(header "%02x %02x %02x %02x  %02x %02x %02x %02x  " \
118                    "%02x %02x %02x %02x  %02x %02x %02x %02x\n", \
119                    *(((char*)ptr)),*(((char*)ptr)+1),*(((char*)ptr)+2), \
120                    *(((char*)ptr)+3),*(((char*)ptr)+4),*(((char*)ptr)+5), \
121                    *(((char*)ptr)+6),*(((char*)ptr)+7),*(((char*)ptr)+8), \
122                    *(((char*)ptr)+9),*(((char*)ptr)+10),*(((char*)ptr)+11), \
123                    *(((char*)ptr)+12),*(((char*)ptr)+13), \
124                    *(((char*)ptr)+14),*(((char*)ptr)+15)); \
125 PRINT_##importance(header "%02x %02x %02x %02x  %02x %02x %02x %02x  " \
126                    "%02x %02x %02x %02x  %02x %02x %02x %02x\n", \
127                    *(((char*)ptr)+16),*(((char*)ptr)+17), \
128                    *(((char*)ptr)+18),*(((char*)ptr)+19), \
129                    *(((char*)ptr)+20),*(((char*)ptr)+21), \
130                    *(((char*)ptr)+22),*(((char*)ptr)+23), \
131                    *(((char*)ptr)+24),*(((char*)ptr)+25), \
132                    *(((char*)ptr)+26),*(((char*)ptr)+27), \
133                    *(((char*)ptr)+28),*(((char*)ptr)+29), \
134                    *(((char*)ptr)+30),*(((char*)ptr)+31));
135
136 static inline void
137 qeth_hex_dump(unsigned char *buf, size_t len)
138 {
139         size_t i;
140
141         for (i = 0; i < len; i++) {
142                 if (i && !(i % 16))
143                         printk("\n");
144                 printk("%02x ", *(buf + i));
145         }
146         printk("\n");
147 }
148
149 #define SENSE_COMMAND_REJECT_BYTE 0
150 #define SENSE_COMMAND_REJECT_FLAG 0x80
151 #define SENSE_RESETTING_EVENT_BYTE 1
152 #define SENSE_RESETTING_EVENT_FLAG 0x80
153
154 #define atomic_swap(a,b) xchg((int *)a.counter, b)
155
156 /*
157  * Common IO related definitions
158  */
159 extern struct device *qeth_root_dev;
160 extern struct ccw_driver qeth_ccw_driver;
161 extern struct ccwgroup_driver qeth_ccwgroup_driver;
162
163 #define CARD_RDEV(card) card->read.ccwdev
164 #define CARD_WDEV(card) card->write.ccwdev
165 #define CARD_DDEV(card) card->data.ccwdev
166 #define CARD_BUS_ID(card) card->gdev->dev.bus_id
167 #define CARD_RDEV_ID(card) card->read.ccwdev->dev.bus_id
168 #define CARD_WDEV_ID(card) card->write.ccwdev->dev.bus_id
169 #define CARD_DDEV_ID(card) card->data.ccwdev->dev.bus_id
170 #define CHANNEL_ID(channel) channel->ccwdev->dev.bus_id
171
172 #define CARD_FROM_CDEV(cdev) (struct qeth_card *) \
173                 ((struct ccwgroup_device *)cdev->dev.driver_data)\
174                 ->dev.driver_data;
175
176 /**
177  * card stuff
178  */
179 #ifdef CONFIG_QETH_PERF_STATS
180 struct qeth_perf_stats {
181         unsigned int bufs_rec;
182         unsigned int bufs_sent;
183
184         unsigned int skbs_sent_pack;
185         unsigned int bufs_sent_pack;
186
187         unsigned int sc_dp_p;
188         unsigned int sc_p_dp;
189         /* qdio_input_handler: number of times called, time spent in */
190         __u64 inbound_start_time;
191         unsigned int inbound_cnt;
192         unsigned int inbound_time;
193         /* qeth_send_packet: number of times called, time spent in */
194         __u64 outbound_start_time;
195         unsigned int outbound_cnt;
196         unsigned int outbound_time;
197         /* qdio_output_handler: number of times called, time spent in */
198         __u64 outbound_handler_start_time;
199         unsigned int outbound_handler_cnt;
200         unsigned int outbound_handler_time;
201         /* number of calls to and time spent in do_QDIO for inbound queue */
202         __u64 inbound_do_qdio_start_time;
203         unsigned int inbound_do_qdio_cnt;
204         unsigned int inbound_do_qdio_time;
205         /* number of calls to and time spent in do_QDIO for outbound queues */
206         __u64 outbound_do_qdio_start_time;
207         unsigned int outbound_do_qdio_cnt;
208         unsigned int outbound_do_qdio_time;
209 };
210 #endif /* CONFIG_QETH_PERF_STATS */
211
212 /* Routing stuff */
213 struct qeth_routing_info {
214         enum qeth_routing_types type;
215 };
216
217 /* IPA stuff */
218 struct qeth_ipa_info {
219         __u32 supported_funcs;
220         __u32 enabled_funcs;
221 };
222
223 static inline int
224 qeth_is_ipa_supported(struct qeth_ipa_info *ipa, enum qeth_ipa_funcs func)
225 {
226         return (ipa->supported_funcs & func);
227 }
228
229 static inline int
230 qeth_is_ipa_enabled(struct qeth_ipa_info *ipa, enum qeth_ipa_funcs func)
231 {
232         return (ipa->supported_funcs & ipa->enabled_funcs & func);
233 }
234
235 #define qeth_adp_supported(c,f) \
236         qeth_is_ipa_supported(&c->options.adp, f)
237 #define qeth_adp_enabled(c,f) \
238         qeth_is_ipa_enabled(&c->options.adp, f)
239 #define qeth_is_supported(c,f) \
240         qeth_is_ipa_supported(&c->options.ipa4, f)
241 #define qeth_is_enabled(c,f) \
242         qeth_is_ipa_enabled(&c->options.ipa4, f)
243 #ifdef CONFIG_QETH_IPV6
244 #define qeth_is_supported6(c,f) \
245         qeth_is_ipa_supported(&c->options.ipa6, f)
246 #define qeth_is_enabled6(c,f) \
247         qeth_is_ipa_enabled(&c->options.ipa6, f)
248 #else /* CONFIG_QETH_IPV6 */
249 #define qeth_is_supported6(c,f) 0
250 #define qeth_is_enabled6(c,f) 0
251 #endif /* CONFIG_QETH_IPV6 */
252 #define qeth_is_ipafunc_supported(c,prot,f) \
253          (prot==QETH_PROT_IPV6)? qeth_is_supported6(c,f):qeth_is_supported(c,f)
254 #define qeth_is_ipafunc_enabled(c,prot,f) \
255          (prot==QETH_PROT_IPV6)? qeth_is_enabled6(c,f):qeth_is_enabled(c,f)
256
257
258 #define QETH_IDX_FUNC_LEVEL_OSAE_ENA_IPAT 0x0101
259 #define QETH_IDX_FUNC_LEVEL_OSAE_DIS_IPAT 0x0101
260 #define QETH_IDX_FUNC_LEVEL_IQD_ENA_IPAT 0x4108
261 #define QETH_IDX_FUNC_LEVEL_IQD_DIS_IPAT 0x5108
262
263 #define QETH_MODELLIST_ARRAY \
264         {{0x1731,0x01,0x1732,0x01,QETH_CARD_TYPE_OSAE,1, \
265         QETH_IDX_FUNC_LEVEL_OSAE_ENA_IPAT, \
266         QETH_IDX_FUNC_LEVEL_OSAE_DIS_IPAT, \
267         QETH_MAX_QUEUES,0}, \
268         {0x1731,0x05,0x1732,0x05,QETH_CARD_TYPE_IQD,0, \
269         QETH_IDX_FUNC_LEVEL_IQD_ENA_IPAT, \
270         QETH_IDX_FUNC_LEVEL_IQD_DIS_IPAT, \
271         QETH_MAX_QUEUES,0x103}, \
272         {0,0,0,0,0,0,0,0,0}}
273
274 #define QETH_REAL_CARD          1
275 #define QETH_VLAN_CARD          2
276 #define QETH_BUFSIZE            4096
277
278 /**
279  * some more defs
280  */
281 #define IF_NAME_LEN             16
282 #define QETH_TX_TIMEOUT         100 * HZ
283 #define QETH_HEADER_SIZE        32
284 #define MAX_PORTNO              15
285 #define QETH_FAKE_LL_LEN        ETH_HLEN
286 #define QETH_FAKE_LL_V6_ADDR_POS 24
287
288 /*IPv6 address autoconfiguration stuff*/
289 #define UNIQUE_ID_IF_CREATE_ADDR_FAILED 0xfffe
290 #define UNIQUE_ID_NOT_BY_CARD           0x10000
291
292 /*****************************************************************************/
293 /* QDIO queue and buffer handling                                            */
294 /*****************************************************************************/
295 #define QETH_MAX_QUEUES 4
296 #define QETH_IN_BUF_SIZE_DEFAULT 65536
297 #define QETH_IN_BUF_COUNT_DEFAULT 16
298 #define QETH_IN_BUF_COUNT_MIN 8
299 #define QETH_IN_BUF_COUNT_MAX 128
300 #define QETH_MAX_BUFFER_ELEMENTS(card) ((card)->qdio.in_buf_size >> 12)
301 #define QETH_IN_BUF_REQUEUE_THRESHOLD(card) \
302                 ((card)->qdio.in_buf_pool.buf_count / 2)
303
304 /* buffers we have to be behind before we get a PCI */
305 #define QETH_PCI_THRESHOLD_A(card) ((card)->qdio.in_buf_pool.buf_count+1)
306 /*enqueued free buffers left before we get a PCI*/
307 #define QETH_PCI_THRESHOLD_B(card) 0
308 /*not used unless the microcode gets patched*/
309 #define QETH_PCI_TIMER_VALUE(card) 3
310
311 #define QETH_MIN_INPUT_THRESHOLD 1
312 #define QETH_MAX_INPUT_THRESHOLD 500
313 #define QETH_MIN_OUTPUT_THRESHOLD 1
314 #define QETH_MAX_OUTPUT_THRESHOLD 300
315
316 /* priority queing */
317 #define QETH_PRIOQ_DEFAULT QETH_NO_PRIO_QUEUEING
318 #define QETH_DEFAULT_QUEUE    2
319 #define QETH_NO_PRIO_QUEUEING 0
320 #define QETH_PRIO_Q_ING_PREC  1
321 #define QETH_PRIO_Q_ING_TOS   2
322 #define IP_TOS_LOWDELAY 0x10
323 #define IP_TOS_HIGHTHROUGHPUT 0x08
324 #define IP_TOS_HIGHRELIABILITY 0x04
325 #define IP_TOS_NOTIMPORTANT 0x02
326
327 /* Packing */
328 #define QETH_LOW_WATERMARK_PACK  2
329 #define QETH_HIGH_WATERMARK_PACK 5
330 #define QETH_WATERMARK_PACK_FUZZ 1
331
332 #define QETH_IP_HEADER_SIZE 40
333
334 struct qeth_hdr_layer3 {
335         __u8  id;
336         __u8  flags;
337         __u16 inbound_checksum;
338         __u32 token;
339         __u16 length;
340         __u8  vlan_prio;
341         __u8  ext_flags;
342         __u16 vlan_id;
343         __u16 frame_offset;
344         __u8  dest_addr[16];
345 } __attribute__ ((packed));
346
347 struct qeth_hdr_layer2 {
348         __u8 id;
349         __u8 flags[3];
350         __u8 port_no;
351         __u8 hdr_length;
352         __u16 pkt_length;
353         __u16 seq_no;
354         __u16 vlan_id;
355         __u32 reserved;
356         __u8 reserved2[16];
357 } __attribute__ ((packed));
358
359 struct qeth_hdr {
360         union {
361                 struct qeth_hdr_layer2 l2;
362                 struct qeth_hdr_layer3 l3;
363         } hdr;
364 } __attribute__ ((packed));
365
366
367 /* flags for qeth_hdr.flags */
368 #define QETH_HDR_PASSTHRU 0x10
369 #define QETH_HDR_IPV6     0x80
370 #define QETH_HDR_CAST_MASK 0x07
371 enum qeth_cast_flags {
372         QETH_CAST_UNICAST   = 0x06,
373         QETH_CAST_MULTICAST = 0x04,
374         QETH_CAST_BROADCAST = 0x05,
375         QETH_CAST_ANYCAST   = 0x07,
376         QETH_CAST_NOCAST    = 0x00,
377 };
378
379 enum qeth_layer2_frame_flags {
380         QETH_LAYER2_FLAG_MULTICAST = 0x01,
381         QETH_LAYER2_FLAG_BROADCAST = 0x02,
382         QETH_LAYER2_FLAG_UNICAST   = 0x04,
383         QETH_LAYER2_FLAG_VLAN      = 0x10,
384 };
385
386 enum qeth_header_ids {
387         QETH_HEADER_TYPE_LAYER3 = 0x01,
388         QETH_HEADER_TYPE_LAYER2 = 0x02,
389 };
390 /* flags for qeth_hdr.ext_flags */
391 #define QETH_HDR_EXT_VLAN_FRAME       0x01
392 #define QETH_HDR_EXT_TOKEN_ID         0x02
393 #define QETH_HDR_EXT_INCLUDE_VLAN_TAG 0x04
394 #define QETH_HDR_EXT_SRC_MAC_ADDR     0x08
395 #define QETH_HDR_EXT_CSUM_HDR_REQ     0x10
396 #define QETH_HDR_EXT_CSUM_TRANSP_REQ  0x20
397
398 static inline int
399 qeth_is_last_sbale(struct qdio_buffer_element *sbale)
400 {
401         return (sbale->flags & SBAL_FLAGS_LAST_ENTRY);
402 }
403
404 enum qeth_qdio_buffer_states {
405         /*
406          * inbound: read out by driver; owned by hardware in order to be filled
407          * outbound: owned by driver in order to be filled
408          */
409         QETH_QDIO_BUF_EMPTY,
410         /*
411          * inbound: filled by hardware; owned by driver in order to be read out
412          * outbound: filled by driver; owned by hardware in order to be sent
413          */
414         QETH_QDIO_BUF_PRIMED,
415 };
416
417 enum qeth_qdio_info_states {
418         QETH_QDIO_UNINITIALIZED,
419         QETH_QDIO_ALLOCATED,
420         QETH_QDIO_ESTABLISHED,
421 };
422
423 struct qeth_buffer_pool_entry {
424         struct list_head list;
425         struct list_head init_list;
426         void *elements[QDIO_MAX_ELEMENTS_PER_BUFFER];
427 };
428
429 struct qeth_qdio_buffer_pool {
430         struct list_head entry_list;
431         int buf_count;
432 };
433
434 struct qeth_qdio_buffer {
435         struct qdio_buffer *buffer;
436         volatile enum qeth_qdio_buffer_states state;
437         /* the buffer pool entry currently associated to this buffer */
438         struct qeth_buffer_pool_entry *pool_entry;
439 };
440
441 struct qeth_qdio_q {
442         struct qdio_buffer qdio_bufs[QDIO_MAX_BUFFERS_PER_Q];
443         struct qeth_qdio_buffer bufs[QDIO_MAX_BUFFERS_PER_Q];
444         /*
445          * buf_to_init means "buffer must be initialized by driver and must
446          * be made available for hardware" -> state is set to EMPTY
447          */
448         volatile int next_buf_to_init;
449 } __attribute__ ((aligned(256)));
450
451 struct qeth_qdio_out_buffer {
452         struct qdio_buffer *buffer;
453         atomic_t state;
454         volatile int next_element_to_fill;
455         struct sk_buff_head skb_list;
456 };
457
458 struct qeth_card;
459
460 enum qeth_out_q_states {
461        QETH_OUT_Q_UNLOCKED,
462        QETH_OUT_Q_LOCKED,
463        QETH_OUT_Q_LOCKED_FLUSH,
464 };
465
466 struct qeth_qdio_out_q {
467         struct qdio_buffer qdio_bufs[QDIO_MAX_BUFFERS_PER_Q];
468         struct qeth_qdio_out_buffer bufs[QDIO_MAX_BUFFERS_PER_Q];
469         int queue_no;
470         struct qeth_card *card;
471         atomic_t state;
472         volatile int do_pack;
473         /*
474          * index of buffer to be filled by driver; state EMPTY or PACKING
475          */
476         volatile int next_buf_to_fill;
477         /*
478          * number of buffers that are currently filled (PRIMED)
479          * -> these buffers are hardware-owned
480          */
481         atomic_t used_buffers;
482         /* indicates whether PCI flag must be set (or if one is outstanding) */
483         atomic_t set_pci_flags_count;
484 } __attribute__ ((aligned(256)));
485
486 struct qeth_qdio_info {
487         volatile enum qeth_qdio_info_states state;
488         /* input */
489         struct qeth_qdio_q *in_q;
490         struct qeth_qdio_buffer_pool in_buf_pool;
491         struct qeth_qdio_buffer_pool init_pool;
492         int in_buf_size;
493
494         /* output */
495         int no_out_queues;
496         struct qeth_qdio_out_q **out_qs;
497
498         /* priority queueing */
499         int do_prio_queueing;
500         int default_out_queue;
501 };
502
503 enum qeth_send_errors {
504         QETH_SEND_ERROR_NONE,
505         QETH_SEND_ERROR_LINK_FAILURE,
506         QETH_SEND_ERROR_RETRY,
507         QETH_SEND_ERROR_KICK_IT,
508 };
509
510 #define QETH_ETH_MAC_V4      0x0100 /* like v4 */
511 #define QETH_ETH_MAC_V6      0x3333 /* like v6 */
512 /* tr mc mac is longer, but that will be enough to detect mc frames */
513 #define QETH_TR_MAC_NC       0xc000 /* non-canonical */
514 #define QETH_TR_MAC_C        0x0300 /* canonical */
515
516 #define DEFAULT_ADD_HHLEN 0
517 #define MAX_ADD_HHLEN 1024
518
519 /**
520  * buffer stuff for read channel
521  */
522 #define QETH_CMD_BUFFER_NO      8
523
524 /**
525  *  channel state machine
526  */
527 enum qeth_channel_states {
528         CH_STATE_UP,
529         CH_STATE_DOWN,
530         CH_STATE_ACTIVATING,
531         CH_STATE_HALTED,
532         CH_STATE_STOPPED,
533 };
534 /**
535  * card state machine
536  */
537 enum qeth_card_states {
538         CARD_STATE_DOWN,
539         CARD_STATE_HARDSETUP,
540         CARD_STATE_SOFTSETUP,
541         CARD_STATE_UP,
542         CARD_STATE_RECOVER,
543 };
544
545 /**
546  * Protocol versions
547  */
548 enum qeth_prot_versions {
549         QETH_PROT_SNA  = 0x0001,
550         QETH_PROT_IPV4 = 0x0004,
551         QETH_PROT_IPV6 = 0x0006,
552 };
553
554 enum qeth_ip_types {
555         QETH_IP_TYPE_NORMAL,
556         QETH_IP_TYPE_VIPA,
557         QETH_IP_TYPE_RXIP,
558         QETH_IP_TYPE_DEL_ALL_MC,
559 };
560
561 enum qeth_cmd_buffer_state {
562         BUF_STATE_FREE,
563         BUF_STATE_LOCKED,
564         BUF_STATE_PROCESSED,
565 };
566 /**
567  * IP address and multicast list
568  */
569 struct qeth_ipaddr {
570         struct list_head entry;
571         enum qeth_ip_types type;
572         enum qeth_ipa_setdelip_flags set_flags;
573         enum qeth_ipa_setdelip_flags del_flags;
574         int is_multicast;
575         volatile int users;
576         enum qeth_prot_versions proto;
577         unsigned char mac[OSA_ADDR_LEN];
578         union {
579                 struct {
580                         unsigned int addr;
581                         unsigned int mask;
582                 } a4;
583                 struct {
584                         struct in6_addr addr;
585                         unsigned int pfxlen;
586                 } a6;
587         } u;
588 };
589
590 struct qeth_ipato_entry {
591         struct list_head entry;
592         enum qeth_prot_versions proto;
593         char addr[16];
594         int mask_bits;
595 };
596
597 struct qeth_ipato {
598         int enabled;
599         int invert4;
600         int invert6;
601         struct list_head entries;
602 };
603
604 struct qeth_channel;
605
606 struct qeth_cmd_buffer {
607         enum qeth_cmd_buffer_state state;
608         struct qeth_channel *channel;
609         unsigned char *data;
610         int rc;
611         void (*callback) (struct qeth_channel *, struct qeth_cmd_buffer *);
612 };
613
614
615 /**
616  * definition of a qeth channel, used for read and write
617  */
618 struct qeth_channel {
619         enum qeth_channel_states state;
620         struct ccw1 ccw;
621         spinlock_t iob_lock;
622         wait_queue_head_t wait_q;
623         struct tasklet_struct irq_tasklet;
624         struct ccw_device *ccwdev;
625 /*command buffer for control data*/
626         struct qeth_cmd_buffer iob[QETH_CMD_BUFFER_NO];
627         atomic_t irq_pending;
628         volatile int io_buf_no;
629         volatile int buf_no;
630 };
631
632 /**
633  *  OSA card related definitions
634  */
635 struct qeth_token {
636         __u32 issuer_rm_w;
637         __u32 issuer_rm_r;
638         __u32 cm_filter_w;
639         __u32 cm_filter_r;
640         __u32 cm_connection_w;
641         __u32 cm_connection_r;
642         __u32 ulp_filter_w;
643         __u32 ulp_filter_r;
644         __u32 ulp_connection_w;
645         __u32 ulp_connection_r;
646 };
647
648 struct qeth_seqno {
649         __u32 trans_hdr;
650         __u32 pdu_hdr;
651         __u32 pdu_hdr_ack;
652         __u16 ipa;
653 };
654
655 struct qeth_reply {
656         struct list_head list;
657         wait_queue_head_t wait_q;
658         int (*callback)(struct qeth_card *,struct qeth_reply *,unsigned long);
659         u32 seqno;
660         unsigned long offset;
661         int received;
662         int rc;
663         void *param;
664         struct qeth_card *card;
665         atomic_t refcnt;
666 };
667
668 #define QETH_BROADCAST_WITH_ECHO    1
669 #define QETH_BROADCAST_WITHOUT_ECHO 2
670
671 struct qeth_card_info {
672         char if_name[IF_NAME_LEN];
673         unsigned short unit_addr2;
674         unsigned short cula;
675         unsigned short chpid;
676         __u16 func_level;
677         char mcl_level[QETH_MCL_LENGTH + 1];
678         int guestlan;
679         int layer2_mac_registered;
680         int portname_required;
681         int portno;
682         char portname[9];
683         enum qeth_card_types type;
684         enum qeth_link_types link_type;
685         int is_multicast_different;
686         int initial_mtu;
687         int max_mtu;
688         int broadcast_capable;
689         int unique_id;
690         __u32 csum_mask;
691 };
692
693 struct qeth_card_options {
694         struct qeth_routing_info route4;
695         struct qeth_ipa_info ipa4;
696         struct qeth_ipa_info adp; /*Adapter parameters*/
697 #ifdef CONFIG_QETH_IPV6
698         struct qeth_routing_info route6;
699         struct qeth_ipa_info ipa6;
700 #endif /* QETH_IPV6 */
701         enum qeth_checksum_types checksum_type;
702         int broadcast_mode;
703         int macaddr_mode;
704         int fake_broadcast;
705         int add_hhlen;
706         int fake_ll;
707         int layer2;
708 };
709
710 /*
711  * thread bits for qeth_card thread masks
712  */
713 enum qeth_threads {
714         QETH_SET_IP_THREAD  = 1,
715         QETH_RECOVER_THREAD = 2,
716 };
717
718 struct qeth_card {
719         struct list_head list;
720         enum qeth_card_states state;
721         int lan_online;
722         spinlock_t lock;
723 /*hardware and sysfs stuff*/
724         struct ccwgroup_device *gdev;
725         struct qeth_channel read;
726         struct qeth_channel write;
727         struct qeth_channel data;
728
729         struct net_device *dev;
730         struct net_device_stats stats;
731
732         struct qeth_card_info info;
733         struct qeth_token token;
734         struct qeth_seqno seqno;
735         struct qeth_card_options options;
736
737         wait_queue_head_t wait_q;
738 #ifdef CONFIG_QETH_VLAN
739         spinlock_t vlanlock;
740         struct vlan_group *vlangrp;
741 #endif
742         struct work_struct kernel_thread_starter;
743         spinlock_t thread_mask_lock;
744         volatile unsigned long thread_start_mask;
745         volatile unsigned long thread_allowed_mask;
746         volatile unsigned long thread_running_mask;
747         spinlock_t ip_lock;
748         struct list_head ip_list;
749         struct list_head *ip_tbd_list;
750         struct qeth_ipato ipato;
751         struct list_head cmd_waiter_list;
752         /* QDIO buffer handling */
753         struct qeth_qdio_info qdio;
754 #ifdef CONFIG_QETH_PERF_STATS
755         struct qeth_perf_stats perf_stats;
756 #endif /* CONFIG_QETH_PERF_STATS */
757         int use_hard_stop;
758 };
759
760 struct qeth_card_list_struct {
761         struct list_head list;
762         rwlock_t rwlock;
763 };
764
765 extern struct qeth_card_list_struct qeth_card_list;
766
767 /*notifier list */
768 struct qeth_notify_list_struct {
769         struct list_head list;
770         struct task_struct *task;
771         int signum;
772 };
773 extern spinlock_t qeth_notify_lock;
774 extern struct list_head qeth_notify_list;
775
776 /*some helper functions*/
777
778 inline static __u8
779 qeth_get_ipa_adp_type(enum qeth_link_types link_type)
780 {
781         switch (link_type) {
782         case QETH_LINK_TYPE_HSTR:
783                 return 2;
784         default:
785                 return 1;
786         }
787 }
788
789 inline static int
790 qeth_get_hlen(__u8 link_type)
791 {
792 #ifdef CONFIG_QETH_IPV6
793         switch (link_type) {
794         case QETH_LINK_TYPE_HSTR:
795         case QETH_LINK_TYPE_LANE_TR:
796                 return sizeof(struct qeth_hdr) + TR_HLEN;
797         default:
798 #ifdef CONFIG_QETH_VLAN
799                 return sizeof(struct qeth_hdr) + VLAN_ETH_HLEN;
800 #else
801                 return sizeof(struct qeth_hdr) + ETH_HLEN;
802 #endif
803         }
804 #else  /* CONFIG_QETH_IPV6 */
805 #ifdef CONFIG_QETH_VLAN
806         return sizeof(struct qeth_hdr) + VLAN_HLEN;
807 #else
808         return sizeof(struct qeth_hdr);
809 #endif
810 #endif /* CONFIG_QETH_IPV6 */
811 }
812
813 inline static unsigned short
814 qeth_get_netdev_flags(struct qeth_card *card)
815 {
816         if (card->options.layer2)
817                 return 0;
818         switch (card->info.type) {
819         case QETH_CARD_TYPE_IQD:
820                 return IFF_NOARP;
821 #ifdef CONFIG_QETH_IPV6
822         default:
823                 return 0;
824 #else
825         default:
826                 return IFF_NOARP;
827 #endif
828         }
829 }
830
831 inline static int
832 qeth_get_initial_mtu_for_card(struct qeth_card * card)
833 {
834         switch (card->info.type) {
835         case QETH_CARD_TYPE_UNKNOWN:
836                 return 1500;
837         case QETH_CARD_TYPE_IQD:
838                 return card->info.max_mtu;
839         case QETH_CARD_TYPE_OSAE:
840                 switch (card->info.link_type) {
841                 case QETH_LINK_TYPE_HSTR:
842                 case QETH_LINK_TYPE_LANE_TR:
843                         return 2000;
844                 default:
845                         return 1492;
846                 }
847         default:
848                 return 1500;
849         }
850 }
851
852 inline static int
853 qeth_get_max_mtu_for_card(int cardtype)
854 {
855         switch (cardtype) {
856         case QETH_CARD_TYPE_UNKNOWN:
857                 return 61440;
858         case QETH_CARD_TYPE_OSAE:
859                 return 61440;
860         case QETH_CARD_TYPE_IQD:
861                 return 57344;
862         default:
863                 return 1500;
864         }
865 }
866
867 inline static int
868 qeth_get_mtu_out_of_mpc(int cardtype)
869 {
870         switch (cardtype) {
871         case QETH_CARD_TYPE_IQD:
872                 return 1;
873         default:
874                 return 0;
875         }
876 }
877
878 inline static int
879 qeth_get_mtu_outof_framesize(int framesize)
880 {
881         switch (framesize) {
882         case 0x4000:
883                 return 8192;
884         case 0x6000:
885                 return 16384;
886         case 0xa000:
887                 return 32768;
888         case 0xffff:
889                 return 57344;
890         default:
891                 return 0;
892         }
893 }
894
895 inline static int
896 qeth_mtu_is_valid(struct qeth_card * card, int mtu)
897 {
898         switch (card->info.type) {
899         case QETH_CARD_TYPE_OSAE:
900                 return ((mtu >= 576) && (mtu <= 61440));
901         case QETH_CARD_TYPE_IQD:
902                 return ((mtu >= 576) &&
903                         (mtu <= card->info.max_mtu + 4096 - 32));
904         case QETH_CARD_TYPE_UNKNOWN:
905         default:
906                 return 1;
907         }
908 }
909
910 inline static int
911 qeth_get_arphdr_type(int cardtype, int linktype)
912 {
913         switch (cardtype) {
914         case QETH_CARD_TYPE_OSAE:
915                 switch (linktype) {
916                 case QETH_LINK_TYPE_LANE_TR:
917                 case QETH_LINK_TYPE_HSTR:
918                         return ARPHRD_IEEE802_TR;
919                 default:
920                         return ARPHRD_ETHER;
921                 }
922         case QETH_CARD_TYPE_IQD:
923         default:
924                 return ARPHRD_ETHER;
925         }
926 }
927
928 #ifdef CONFIG_QETH_PERF_STATS
929 inline static int
930 qeth_get_micros(void)
931 {
932         return (int) (get_clock() >> 12);
933 }
934 #endif
935
936 static inline int
937 qeth_get_qdio_q_format(struct qeth_card *card)
938 {
939         switch (card->info.type) {
940         case QETH_CARD_TYPE_IQD:
941                 return 2;
942         default:
943                 return 0;
944         }
945 }
946
947 static inline void
948 qeth_ipaddr4_to_string(const __u8 *addr, char *buf)
949 {
950         sprintf(buf, "%i.%i.%i.%i", addr[0], addr[1], addr[2], addr[3]);
951 }
952
953 static inline int
954 qeth_string_to_ipaddr4(const char *buf, __u8 *addr)
955 {
956         const char *start, *end;
957         char abuf[4];
958         char *tmp;
959         int len;
960         int i;
961
962         start = buf;
963         for (i = 0; i < 3; i++) {
964                 if (!(end = strchr(start, '.')))
965                         return -EINVAL;
966                 len = end - start;
967                 memset(abuf, 0, 4);
968                 strncpy(abuf, start, len);
969                 addr[i] = simple_strtoul(abuf, &tmp, 10);
970                 start = end + 1;
971         }
972         memset(abuf, 0, 4);
973         strcpy(abuf, start);
974         addr[3] = simple_strtoul(abuf, &tmp, 10);
975         return 0;
976 }
977
978 static inline void
979 qeth_ipaddr6_to_string(const __u8 *addr, char *buf)
980 {
981         sprintf(buf, "%02x%02x:%02x%02x:%02x%02x:%02x%02x"
982                      ":%02x%02x:%02x%02x:%02x%02x:%02x%02x",
983                      addr[0], addr[1], addr[2], addr[3],
984                      addr[4], addr[5], addr[6], addr[7],
985                      addr[8], addr[9], addr[10], addr[11],
986                      addr[12], addr[13], addr[14], addr[15]);
987 }
988
989 static inline int
990 qeth_string_to_ipaddr6(const char *buf, __u8 *addr)
991 {
992         const char *start, *end;
993         u16 *tmp_addr;
994         char abuf[5];
995         char *tmp;
996         int len;
997         int i;
998
999         tmp_addr = (u16 *)addr;
1000         start = buf;
1001         for (i = 0; i < 7; i++) {
1002                 if (!(end = strchr(start, ':')))
1003                         return -EINVAL;
1004                 len = end - start;
1005                 memset(abuf, 0, 5);
1006                 strncpy(abuf, start, len);
1007                 tmp_addr[i] = simple_strtoul(abuf, &tmp, 16);
1008                 start = end + 1;
1009         }
1010         memset(abuf, 0, 5);
1011         strcpy(abuf, start);
1012         tmp_addr[7] = simple_strtoul(abuf, &tmp, 16);
1013         return 0;
1014 }
1015
1016 static inline void
1017 qeth_ipaddr_to_string(enum qeth_prot_versions proto, const __u8 *addr,
1018                       char *buf)
1019 {
1020         if (proto == QETH_PROT_IPV4)
1021                 return qeth_ipaddr4_to_string(addr, buf);
1022         else if (proto == QETH_PROT_IPV6)
1023                 return qeth_ipaddr6_to_string(addr, buf);
1024 }
1025
1026 static inline int
1027 qeth_string_to_ipaddr(const char *buf, enum qeth_prot_versions proto,
1028                       __u8 *addr)
1029 {
1030         if (proto == QETH_PROT_IPV4)
1031                 return qeth_string_to_ipaddr4(buf, addr);
1032         else if (proto == QETH_PROT_IPV6)
1033                 return qeth_string_to_ipaddr6(buf, addr);
1034         else
1035                 return -EINVAL;
1036 }
1037
1038 extern int
1039 qeth_setrouting_v4(struct qeth_card *);
1040 extern int
1041 qeth_setrouting_v6(struct qeth_card *);
1042
1043 extern int
1044 qeth_add_ipato_entry(struct qeth_card *, struct qeth_ipato_entry *);
1045
1046 extern void
1047 qeth_del_ipato_entry(struct qeth_card *, enum qeth_prot_versions, u8 *, int);
1048
1049 extern int
1050 qeth_add_vipa(struct qeth_card *, enum qeth_prot_versions, const u8 *);
1051
1052 extern void
1053 qeth_del_vipa(struct qeth_card *, enum qeth_prot_versions, const u8 *);
1054
1055 extern int
1056 qeth_add_rxip(struct qeth_card *, enum qeth_prot_versions, const u8 *);
1057
1058 extern void
1059 qeth_del_rxip(struct qeth_card *, enum qeth_prot_versions, const u8 *);
1060
1061 extern int
1062 qeth_notifier_register(struct task_struct *, int );
1063
1064 extern int
1065 qeth_notifier_unregister(struct task_struct * );
1066
1067 extern void
1068 qeth_schedule_recovery(struct qeth_card *);
1069
1070 extern int
1071 qeth_realloc_buffer_pool(struct qeth_card *, int);
1072 #endif /* __QETH_H__ */